Update multisig app for multichain support (#31)

Part of https://www.notion.so/Laconic-Mainnet-Plan-1eca6b22d47280569cd0d1e6d711d949

Reviewed-on: #31
Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
This commit is contained in:
Nabarun 2025-07-10 10:46:05 +00:00 committed by nabarun
parent d91ed4280f
commit 4de3300a7e
2 changed files with 6 additions and 2 deletions

View File

@ -25,7 +25,7 @@
- name: Clone cosmos-multisig-ui repo
shell: |
laconic-so fetch-stack git.vdb.to/cerc-io/cosmos-multisig-ui@v0.1.2 --pull
laconic-so fetch-stack git.vdb.to/cerc-io/cosmos-multisig-ui@v0.1.3 --pull
- name: Build container image
shell: |
@ -76,6 +76,7 @@
USE_HOST_NETWORK={{ use_host_network }}
DGRAPH_DOMAIN={{ dgraph_domain }}
CHAIN_CONFIG_PATH="{{data_directory}}/{{ multisig_deployment_dir }}/config/cosmos-multisig-ui/network.json"
NEXT_PUBLIC_REGISTRY_ENABLED_CHAINS={{ next_public_registry_enabled_chains }}
mode: '0644'
- name: Copy network.json to remote server

View File

@ -1,5 +1,8 @@
# Set to true if the application supports multiple chains
next_public_multichain: false
next_public_multichain: true
# Array of enabled chain names for the registry
next_public_registry_enabled_chains: '["cosmoshub","sei"]'
# The name of the blockchain registry
next_public_registry_name: "laconic-mainnet"