Update instructions after implementing network add feature in deploy app #23

Merged
nabarun merged 1 commits from ng-fix-deploy-wallet into main 2025-06-17 10:06:53 +00:00
2 changed files with 11 additions and 47 deletions

View File

@ -23,39 +23,3 @@
## Multisig App
- Usage guide is available at [multisig-usage.md](./playbooks/cosmos-multisig-app/multisig-usage.md)
## Configure Wallet for Mainnet
- To use <https://deploy.laconic.com>, you need to add `laconic-mainnet` network in your wallet
- Go to <https://wallet.laconic.com>
- If the wallet has not been initialized, click on `Create Wallet` and create a new wallet
- Click on `Add Network` and filling in required details:
```bash
# Set network type
Network Type: COSMOS
# Chain ID of the network
Chain ID: laconic-mainnet
# Name of the network
Network Name: Laconic Mainnet
# RPC endpoint of the mainnet node
New RPC URL: https://laconicd-mainnet.laconic.com
# Coin type
Coin Type: 118
# Address prefix
Address Prefix: laconic
# Native denom and gas price
Native denom: alnt
Gas Price: 0.001
```
- Refresh <https://deploy.laconic.com> after adding the network to wallet

View File

@ -22,8 +22,8 @@ Instructions to reset / update the deployments
# testnet-onboarding-app source
cd ~/cerc/laconic-wallet-web
# Pull latest changes
git pull
# Fetch from remote
git fetch
# Checkout to the latest tag (https://git.vdb.to/LaconicNetwork/laconic-wallet-web/tags)
git checkout <tag>
@ -317,6 +317,14 @@ Instructions to reset / update the deployments
* Source repo: <https://git.vdb.to/cerc-io/snowballtools-base>
* Merge the following PRs in order to deploy frontend app with mainnet configuration
* <https://git.vdb.to/cerc-io/snowballtools-base/pulls/59>
* <https://git.vdb.to/cerc-io/snowballtools-base/pulls/58>
NOTE: Follow steps below if CI deployment doesn't work (cancel CI before following steps below)
### Prerequisites
* Node.js
@ -373,12 +381,6 @@ Instructions to reset / update the deployments
Note: The `userKey` account should own the authority `laconic-deploy`
* Update the `deploy-frontend.sh` script to use mainnet chain id:
```bash
sed -i 's/laconic-testnet-2/laconic-mainnet/g' ./deploy-frontend.sh
```
### Run
* Run frontend deployment script:
@ -387,8 +389,6 @@ Instructions to reset / update the deployments
./deploy-frontend.sh
```
Follow deployment logs on the deployer UI
Follow deployment logs on the [deployer UI](https://webapp-deployer-ui.apps.vaasl.io/)
* On a successful deployment, the frontend can be viewed at <https://deploy.laconic.com>
* **NOTE**: Update the CI and deployment scripts in deployer app once mainnet is launched ([PR](https://git.vdb.to/cerc-io/snowballtools-base/pulls/58))