Skip to content

Instantly share code, notes, and snippets.

@rootulp
Created July 30, 2025 21:03
Show Gist options
  • Save rootulp/255d24c19ace5dee750905c8ab90b201 to your computer and use it in GitHub Desktop.
Save rootulp/255d24c19ace5dee750905c8ab90b201 to your computer and use it in GitHub Desktop.
Hermes config to bridge between Mocha and Neutron
[global]
log_level = 'info'
[mode]
[mode.clients]
enabled = true
refresh = true
misbehaviour = true
[mode.connections]
enabled = true
[mode.channels]
enabled = true
[mode.packets]
enabled = true
clear_interval = 100
clear_on_start = true
tx_confirmation = true
[telemetry]
enabled = true
host = '127.0.0.1'
port = 3001
# [[chains]]
# id = 'ibc-0'
# type = 'CosmosSdk'
# rpc_addr = 'http://localhost:27030'
# grpc_addr = 'http://localhost:27032'
# event_source = { mode = 'push', url = 'ws://localhost:27030/websocket', batch_delay = '200ms' }
# rpc_timeout = '15s'
# trusted_node = true
# account_prefix = 'cosmos'
# key_name = 'wallet'
# store_prefix = 'ibc'
# gas_price = { price = 0.001, denom = 'stake' }
# gas_multiplier = 1.2
# default_gas = 1000000
# max_gas = 10000000
# max_msg_num = 30
# max_tx_size = 2097152
# clock_drift = '5s'
# max_block_time = '30s'
# trusting_period = '14days'
# trust_threshold = { numerator = '2', denominator = '3' }
# [chains.packet_filter]
# policy = 'allow'
# list = [
# ['ica*', '*'],
# ['transfer', 'channel-0'],
# ]
# [[chains]]
# id = 'ibc-1'
# type = 'CosmosSdk'
# rpc_addr = 'http://localhost:27040'
# grpc_addr = 'http://localhost:27042'
# event_source = { mode = 'push', url = 'ws://localhost:27040/websocket', batch_delay = '200ms' }
# rpc_timeout = '15s'
# trusted_node = true
# account_prefix = 'cosmos'
# key_name = 'wallet'
# store_prefix = 'ibc'
# gas_price = { price = 0.001, denom = 'stake' }
# gas_multiplier = 1.2
# default_gas = 1000000
# max_gas = 10000000
# max_msg_num = 30
# max_tx_size = 2097152
# clock_drift = '5s'
# max_block_time = '30s'
# trusting_period = '14days'
# trust_threshold = { numerator = '2', denominator = '3' }
# [chains.packet_filter]
# policy = 'allow'
# list = [
# ['ica*', '*'],
# ['transfer', 'channel-0'],
# ]
# [[chains]]
# id = 'test'
# type = 'CosmosSdk'
# rpc_addr = 'http://localhost:26657'
# grpc_addr = 'http://localhost:9090'
# event_source = { mode = 'push', url = 'ws://localhost:26657/websocket', batch_delay = '200ms' }
# rpc_timeout = '15s'
# trusted_node = true
# account_prefix = 'celestia'
# key_name = 'wallet'
# store_prefix = 'ibc'
# gas_price = { price = 0.1, denom = 'utia' }
# gas_multiplier = 1.2
# default_gas = 1000000
# max_gas = 10000000
# max_msg_num = 30
# max_tx_size = 2097152
# clock_drift = '5s'
# max_block_time = '30s'
# trusting_period = '14days'
# trust_threshold = { numerator = '2', denominator = '3' }
[[chains]]
id = 'mocha-4'
type = 'CosmosSdk'
rpc_addr = 'https://rpc-1.testnet.celestia.nodes.guru'
grpc_addr = 'http://grpc-1.testnet.celestia.nodes.guru:10790'
event_source = { mode = 'push', url = 'wss://rpc-1.testnet.celestia.nodes.guru/websocket', batch_delay = '200ms' }
rpc_timeout = '15s'
trusted_node = true
account_prefix = 'celestia'
key_name = 'wallet'
store_prefix = 'ibc'
gas_price = { price = 0.1, denom = 'utia' }
gas_multiplier = 2.0
default_gas = 2000000
max_gas = 20000000
max_msg_num = 30
max_tx_size = 2097152
clock_drift = '5s'
max_block_time = '75s'
trusting_period = '14days'
trust_threshold = { numerator = '2', denominator = '3' }
[[chains]]
id = 'pion-1'
type = 'CosmosSdk'
rpc_addr = 'https://neutron-testnet-rpc.polkachu.com'
grpc_addr = 'http://neutron-testnet-grpc.polkachu.com:19190'
event_source = { mode = 'push', url = 'wss://neutron-testnet-rpc.polkachu.com/websocket', batch_delay = '200ms' }
rpc_timeout = '15s'
trusted_node = true
account_prefix = 'neutron'
key_name = 'wallet'
store_prefix = 'ibc'
gas_price = { price = 0.1, denom = 'untrn' }
gas_multiplier = 2.0
default_gas = 2000000
max_gas = 20000000
max_msg_num = 30
max_tx_size = 2097152
clock_drift = '5s'
max_block_time = '30s'
trusting_period = '14days'
trust_threshold = { numerator = '2', denominator = '3' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment