Comment on page
Onboarding
This page is for any Cosmos chain developer that wants to enable bridging from Gateway, a Wormhole Cosmos chain that leverages the Wormhole Guardian network for easy bridging from Ethereum to Cosmos.
- 1.Open a new GitHub governance discussion under Wormhole Gateway by filling out the Cosmos Chain Governance Proposal Template - here.
- 2.Allow 96 hours for discussion and governance vote.
- 1.
- 2.Ping the moderator, Susu (
susu.wormhole
), to get added to the#guardian-cosmos
channel.
- 1.Allowlist your IBC relayer(s) on Wormhole Gateway
- 1.
- 2.
- 3.Post the request in the
#guardian-cosmos
channel.
- 2.Establish the IBC connection.
- 1.Please ensure that the
trusting_period
andtrust_threshold
parameters are set to the safest values. E.g.trust_threshold
should be 2/3 andtrusting_period
should be 2/3 the unbonding period of your chain. - 2.
- 3.Please see docs here on how to set up your own Wormhole Gateway node to connect your IBC relayer to. Or, you can see available public nodes on the cosmos chain registry.
- 3.Share the IBC connection details in the
#guardian-cosmos
channel along with a request to the Wormhole Contributors to prepare governance for the IBC connection.- 1.Allow 48 hours for governance vote on accepting this IBC channel.
Wormhole Connect is a seamless way to embed bridging directly to your app with 3 lines of code. Integrating Connect is fast, customizable, and brings all the functionality and utility of Wormhole right into your own application.
Please refer to these reference PRs to add your Cosmos chain into Wormhole Connect. Your PRs will need to be reviewed and merged by Wormhole Core Contributors.
- 1.Add your Cosmos chain ID to the Wormhole SDK: [sdk/js] Add Kujira chain id by M-Picco · Pull Request #3381 · wormhole-foundation/wormhole (github.com)
- 2.Add your Cosmos chain to Wormhole Connect: Add kujira chain by M-Picco · Pull Request #1009 · wormhole-foundation/wormhole-connect (github.com)
- 1.Permissionlessly attest the assets you would like to bridge into your chain (if not already attested) to Wormhole Gateway.
- 2.Raise relevant PRs to ensure that explorers, wallets, and other UIs recognize the Wormhole assets when they are bridged to your chain.
- 1.
🎉 Congratulations! You’ve successfully connected your Cosmos chain to Gateway. If you have any questions or concerns, please reach out to Susu on the Wormhole Discord.
Hey @Guardians! Thank you for passing governance to support **[Cosmos Chain]** via Wormhole Gateway. We are very excited to integrate with Wormhole!
We will be using **[Relayer Provider]** as our IBC relayer to support the connection to Wormhole Gateway. Their address is **[Wormhole Gateway address].**
Could one of the Guardians please allowlist this address so that it can submit transactions to Wormhole Gateway?
We understand that if this address misbehaves, the sponsoring Guardian can remove it from the allowlist at any time, which would effectively shut down IBC bridging to/from our chain and Gateway.
Thank you!
[global]
log_level = "info"
[mode.clients]
enabled = true
refresh = true
misbehaviour = false
[mode.connections]
enabled = false
[mode.channels]
enabled = false
[mode.packets]
enabled = true
clear_interval = 50
clear_on_start = true
tx_confirmation = true
auto_register_counterparty_payee = false
[rest]
enabled = true
host = "127.0.0.1"
port = 3000
[telemetry]
enabled = true
host = "127.0.0.1"
port = 3001
[telemetry.buckets.latency_submitted]
start = 500
end = 20000
buckets = 10
[telemetry.buckets.latency_confirmed]
start = 1000
end = 30000
buckets = 10
[[chains]]
id = "wormchain"
type = "CosmosSdk"
rpc_addr = "..."
grpc_addr = "..."
rpc_timeout = "10s"
trusted_node = true
account_prefix = "wormhole"
key_name = "default"
key_store_type = "Test"
store_prefix = "ibc"
default_gas = 1000000
max_gas = 9000000
gas_multiplier = 1.2
max_msg_num = 30
max_tx_size = 180000
max_grpc_decoding_size = 33554432
clock_drift = "5s"
max_block_time = "30s"
ccv_consumer_chain = false
memo_prefix = ""
sequential_batch_tx = false
trusting_period = '14days'
[chains.event_source]
mode = "push"
url = "..."
batch_delay = "500ms"
[chains.trust_threshold]
numerator = "2"
denominator = "3"
[chains.gas_price]
price = 0.0
denom = "utest"
[chains.packet_filter]
policy = 'allow'
list = [
['transfer', 'channel-3'], # osmosis transfer
]
[chains.address_type]
derivation = "cosmos
Last modified 1mo ago