Skip to content

Instantly share code, notes, and snippets.

@karzak
Created March 9, 2022 01:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karzak/388d96200b8827be4545e4e425df3b5f to your computer and use it in GitHub Desktop.
Save karzak/388d96200b8827be4545e4e425df3b5f to your computer and use it in GitHub Desktop.
example config.yaml for hermes relayer between kava <> terra
[global]
log_level = 'info'
[mode]
[mode.clients]
enabled = true
refresh = true
misbehaviour = false
[mode.connections]
enabled = false
[mode.channels]
enabled = false
[mode.packets]
enabled = true
clear_interval = 100
clear_on_start = true
tx_confirmation = true
[rest]
enabled = true
host = '127.0.0.1'
port = 3000
[telemetry]
enabled = true
host = '127.0.0.1'
port = 3001
[[chains]]
id = 'kava-9'
rpc_addr = 'https://...'
grpc_addr = 'https://...'
websocket_addr = 'wss://...'
rpc_timeout = '30s'
account_prefix = 'kava'
key_name = '<KEY_NAME>'
store_prefix = 'ibc'
max_gas = 2000000
gas_price = { price = 0.001, denom = 'ukava' }
gas_adjustment = 0.1
clock_drift = '5s'
trusting_period = '1209600s'
trust_threshold = { numerator = '1', denominator = '3' }
[[chains]]
id = 'columbus-5'
rpc_addr = 'https://...'
grpc_addr = 'https://...'
websocket_addr = 'wss://...'
rpc_timeout = '120s'
account_prefix = 'terra'
key_name = '<KEY_NAME>'
store_prefix = 'ibc'
max_gas = 2000000
gas_price = { price = 0.16, denom = 'uusd' }
gas_adjustment = 0.1
clock_drift = '5s'
trusting_period = '1209600s'
trust_threshold = { numerator = '1', denominator = '3' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment