Created
March 9, 2022 01:16
-
-
Save karzak/388d96200b8827be4545e4e425df3b5f to your computer and use it in GitHub Desktop.
example config.yaml for hermes relayer between kava <> terra
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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