LogoLogo
  • Introduction
  • Quick Start
    • Developing Cross Chain Dapps
      • Standard Relayer
      • Specialized Relayer
    • Tutorials
      • Hello Wormhole
        • Hello Wormhole Explained
        • Beyond Hello Wormhole
      • Hello Token
      • CCTP
        • USDC Transfers With Connect SDK
      • Simple Relayer
        • Advanced Relayer Example
    • Demos
    • Wormhole Connect: Bridging Made Easy
  • Explore Wormhole
    • Architecture
    • Security
    • Core Contracts
    • Guardians
    • VAAs
    • Relayers
    • Spy
    • Gateway
      • Onboarding
  • Reference
    • Constants Reference
    • Development Environment
      • Tilt
      • Tooling
    • Blockchain Platforms
      • Algorand
      • Aptos
      • CosmWasm
      • EVM
        • Relayer
      • Near
      • Solana
      • Sui
    • API Docs
      • Wormholescan API
    • SDK Docs
      • Legacy SDK
    • CLI Docs
    • Glossary
  • Wormhole Connect
    • Overview
    • Routes
    • Features
    • Configuration
  • Native Token Transfers
    • Overview
      • System Components
      • Deployment Models
    • Deployment
      • Installation
      • Deploy to EVM
      • Deploy to Solana
      • Post Deployment
    • Configuration
      • Rate Limiting
      • Access Control
    • Security
    • Custom Transceivers
    • Architecture
      • EVM Message Lifecycle
      • Solana Message Lifecycle
  • Queries
    • Overview
    • Getting Started
    • FAQs
  • MultiGov
    • Overview
    • Getting Started
    • Deployment
      • Configuration
    • Upgrading
    • Architecture
    • Guides
    • FAQs
  • External Links
    • Explorer
    • Ecosystem
    • Guardian Dashboard
    • Portal Bridge Docs
    • Discord
    • Twitter
    • Github
Powered by GitBook
On this page
  • Wormhole Gateway Onboarding Instructions
  • Step 1. Propose Adding Your Chain to the Wormhole Guardians
  • Step 2. Join the Wormhole Discord
  • Step 3. Establish an IBC Connection
  • Step 4. [Optional] UI Integration with Wormhole Connect
  • Step 5. Add bridged assets to the Cosmos Chain Registry and other relevant wallet and frontend registries
  • IBC Relayer Allowlist Request Template
  • Wormhole Gateway IBC Relayer Config

Was this helpful?

Edit on GitHub
  1. Explore Wormhole
  2. Gateway

Onboarding

Last updated 1 year ago

Was this helpful?

Wormhole Gateway Onboarding Instructions

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.

See here for more details on Gateway:

Step 1. Propose Adding Your Chain to the Wormhole Guardians

  1. Open a new GitHub governance discussion under Wormhole Gateway by filling out the Cosmos Chain Governance Proposal Template - .

  2. Allow 96 hours for discussion and governance vote.

Step 2. Join the Wormhole Discord

  1. Join the wormhole discord ().

  2. Ping the moderator, Susu (susu.wormhole), to get added to the #guardian-cosmos channel.

Step 3. Establish an IBC Connection

  1. Allowlist your IBC relayer(s) on Wormhole Gateway

    1. The IBC relayer should generate an address via the wormchaind CLI - .

    2. Fill out the .

    3. Post the request in the #guardian-cosmos channel.

  2. Establish the IBC connection.

    1. Please ensure that the trusting_period and trust_threshold parameters are set to the safest values. E.g. trust_threshold should be 2/3 and trusting_period should be 2/3 the unbonding period of your chain.

    2. See an example IBC relayer config for Wormhole Gateway .

    3. Please see docs 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 .

  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.

Step 4. [Optional] UI Integration with Wormhole Connect

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.

Step 5. Add bridged assets to the Cosmos Chain Registry and other relevant wallet and frontend registries

  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.

🎉 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.

IBC Relayer Allowlist Request Template

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!

Wormhole Gateway IBC Relayer Config

[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

is a seamless way to embed bridging directly to your app with 3 lines of code. is fast, customizable, and brings all the functionality and utility of Wormhole right into your own application.

Add your Cosmos chain ID to the Wormhole SDK:

Add your Cosmos chain to Wormhole Connect:

Example PR adding Wormhole assets to Osmosis Mintscan ().

Wormhole Connect
Integrating Connect
[sdk/js] Add Kujira chain id by M-Picco · Pull Request #3381 · wormhole-foundation/wormhole (github.com)
Add kujira chain by M-Picco · Pull Request #1009 · wormhole-foundation/wormhole-connect (github.com)
example
The Gateway to Cosmos
here
link
here
here
cosmos chain registry
IBC relayer allowlist request template
below