Releases: BitCannaGlobal/WeedWallet
Releases · BitCannaGlobal/WeedWallet
WeedWallet v3.1.0
What's Changed
- Upgrade from v47 to v50
- Updated CosmJS libs to work with CosmosBFT v0.38 & Cosmos-SDK v0.50
- Add version checker to survive API break changes
- Fix governance API breaking (title, description)
- Create Docker file
- Create Docker-Compose file with different profiles attending different chain-id
- Default port is now 3000
- New doc created to reflect the docker-compose profiles
Main PRs
- Fixes for SDK v0.50 & CometBFT v0.38 by @RaulBernal in #178
- Devnet 1 v50 by @RaulBernal in #179
- Update favicon by @El-Jay-Crypto in #180
- Upgrade v50 by @RaulBernal in #182
Instructions with Docker-composer
Docker-composer allows you to run the three different configurations for each chain (bitcanna-1, devnet-1 & devnet-6) using the same Docker Image. Alternatively you can run a simple Docker Image to raise a MainNET Wallet.
Bitcanna-1 MainNET
Docker-compose
docker-compose --profile bitcanna-1 up -d
Run Docker Hub image
Alternatively you can run a simple Docker Image to raise a MainNET Wallet.
docker run -d -p 4200:3000 --name wallet-mainnet bernalraul/webwallet:mainnet
Logs check:
docker container logs wallet-mainnet
Stop and remove data
docker-compose --profile bitcanna-1 down
Create the systemd file:
As the container has always the same name, we can start & stop & restart it
cat <<'EOF' >>wallet-mainnet.service
[Unit]
Description=wallet-mainnet container
Requires=docker.service
After=docker.service
[Service]
Restart=always
ExecStart=/usr/bin/docker start -a wallet-mainnet
ExecStop=/usr/bin/docker stop -t 2 wallet-mainnet
[Install]
WantedBy=default.target
EOF
BitCanna Devnet-1 (same for Devnet-6 replacing by that name)
It is the same Image but the App is rebuilt with DEVNET-1 config. Only with Docker-composer
Docker-compose
docker-compose --profile devnet-1 up -d
Logs check:
docker container logs wallet-devnet
Stop and remove data
docker-compose --profile devnet-1 down
Create the systemd file:
As the container has always the same name, we can start & stop & restart it
cat <<'EOF' >>wallet-devnet-1.service
[Unit]
Description=wallet-devnet-1 container
Requires=docker.service
After=docker.service
[Service]
Restart=always
ExecStart=/usr/bin/docker start -a wallet-devnet-1
ExecStop=/usr/bin/docker stop -t 2 wallet-devnet-1
[Install]
WantedBy=default.target
EOF
Full Changelog: v3.0.2...v3.1.0
v3.0.2-devnet-1
What's Changed
- Update [id].vue by @El-Jay-Crypto in #171
- Apply carmenBold font style by @RaulBernal in #174
- Fix fonts at TX waiting & TX confirmation forms by @RaulBernal in #175
New Contributors
- @El-Jay-Crypto made their first contribution in #171
- @RaulBernal made their first contribution in #174
Run Docker Hub image
docker run -d -p 4200:4200 --name wallet-devnet-1 bernalraul/weedwallet:devnet-1
Full Changelog: v3.0.1...v3.0.2-devnet-1
v3.0.2
What's Changed
- Update [id].vue by @El-Jay-Crypto in #171
- Apply carmenBold font style by @RaulBernal in #174
- Fix fonts at TX waiting & TX confirmation forms by @RaulBernal in #175
New Contributors
- @El-Jay-Crypto made their first contribution in #171
- @RaulBernal made their first contribution in #174
Run Docker Hub image
docker run -d -p 4200:4200 --name wallet-mainnet bernalraul/weedwallet:mainnet
Logs check:
docker container logs wallet-mainnet
Create the systemd file:
cat <<'EOF' >>wallet-mainnet.service
[Unit]
Description=wallet-mainnet container
Requires=docker.service
After=docker.service
[Service]
Restart=always
ExecStart=/usr/bin/docker start -a wallet-mainnet
ExecStop=/usr/bin/docker stop -t 2 wallet-mainnet
[Install]
WantedBy=default.target
EOF
Move it, enable in the init and start it
sudo mv wallet-mainnet.service /lib/systemd/system/
docker stop -t 2 wallet-mainnet && sudo systemctl enable wallet-mainnet
sudo systemctl start wallet-mainnet && sudo journalctl -fu wallet-mainnet -o cat
Full Changelog: v3.0.1...v3.0.2
v3.0.1
2.0.0
Main release
What's Changed
- Bump to v1.0.2 by @atmoner in #1
- Bump to v1.0.3 by @atmoner in #25
- Bump to v1.0.4 by @atmoner in #26
- Deposit v1 message by @atmoner in #40
- Bump to v1.0.5 by @atmoner in #44
- Bump to v1.0.6 by @atmoner in #46
- Bump version 1.0.7 by @atmoner in #55
- Bump version 1.0.8 by @atmoner in #56
- Bump version 1.0.9 by @atmoner in #57
- Bump version 1.0.10 by @atmoner in #119
- Bump version 1.0.11 by @atmoner in #125
New Contributors
Full Changelog: https://github.com/BitCannaGlobal/WeedWallet/commits/v2.0.0