Add domain port mappings for multisig app

This commit is contained in:
Shreerang Kale 2025-06-14 17:11:52 +05:30
parent e76389b47b
commit 09fca1f36f
4 changed files with 9 additions and 3 deletions

View File

@ -15,4 +15,7 @@ Open port for TMKMS:
# Console app deployment already exists, point new domain to following port # Console app deployment already exists, point new domain to following port
https://console-mainnet.laconic.com -> 4001 https://console-mainnet.laconic.com -> 4001
# Cosmos Multisig App
https://multisig.laconic.com -> 7000
``` ```

View File

@ -307,6 +307,8 @@
laconic-so deployment --dir $DATA_DIRECTORY/$MAINNET_DEPLOYMENT_DIR logs laconicd -f laconic-so deployment --dir $DATA_DIRECTORY/$MAINNET_DEPLOYMENT_DIR logs laconicd -f
``` ```
NOTE: The node takes a long time to start syncing blocks `~30 seconds`
- Verify that validator and TMKMS pubkeys match: - Verify that validator and TMKMS pubkeys match:
- Get validator pubkey on chain - Get validator pubkey on chain

View File

@ -194,7 +194,7 @@
laconic-so deployment --dir $DATA_DIRECTORY/$MAINNET_DEPLOYMENT_DIR logs laconicd -f laconic-so deployment --dir $DATA_DIRECTORY/$MAINNET_DEPLOYMENT_DIR logs laconicd -f
``` ```
NOTE: The node takes a long time to start syncing blocks `~40 seconds`. NOTE: The node takes a long time to start syncing blocks `~30 seconds`
- Get the public key of your node: - Get the public key of your node:

View File

@ -8,6 +8,7 @@ This playbook sets up the Cosmos Multisig application for managing multisig wall
- [ansible](../README.md#ansible-installation) - [ansible](../README.md#ansible-installation)
- If running playbook to setup deployment on remote machine, the following need to be installed in remote: - If running playbook to setup deployment on remote machine, the following need to be installed in remote:
- [laconic-so](https://github.com/cerc-io/stack-orchestrator/?tab=readme-ov-file#install) - [laconic-so](https://github.com/cerc-io/stack-orchestrator/?tab=readme-ov-file#install)
- Check [domain port mappings](./domain-port-mappings.md) to ensure that required domain is pointing to correct port
## Configuration ## Configuration
@ -55,7 +56,7 @@ This playbook sets up the Cosmos Multisig application for managing multisig wall
ansible-playbook -v -i ~/cerc/laconicd-stack/playbooks/cosmos-multisig-app/hosts.ini ~/cerc/laconicd-stack/playbooks/cosmos-multisig-app/cosmos-multisig-app-start.yml --limit local ansible-playbook -v -i ~/cerc/laconicd-stack/playbooks/cosmos-multisig-app/hosts.ini ~/cerc/laconicd-stack/playbooks/cosmos-multisig-app/cosmos-multisig-app-start.yml --limit local
``` ```
- Access the app at <http://localhost:7000/laconic-mainnet> - Access the app at <https://multisig.laconic.com/laconic-mainnet>
### Remote Setup ### Remote Setup
@ -81,7 +82,7 @@ This playbook sets up the Cosmos Multisig application for managing multisig wall
ansible-playbook -v -i ~/cerc/laconicd-stack/playbooks/cosmos-multisig-app/hosts.ini ~/cerc/laconicd-stack/playbooks/cosmos-multisig-app/cosmos-multisig-app-start.yml --limit remote_host ansible-playbook -v -i ~/cerc/laconicd-stack/playbooks/cosmos-multisig-app/hosts.ini ~/cerc/laconicd-stack/playbooks/cosmos-multisig-app/cosmos-multisig-app-start.yml --limit remote_host
``` ```
- Access the app at <http://your.remote.host:7000/laconic-mainnet> - Access the app at <https://multisig.laconic.com/laconic-mainnet>
## Check Status ## Check Status