Skip to content

Instantly share code, notes, and snippets.

@clemensgg
Created October 19, 2023 08:36
Show Gist options
  • Save clemensgg/977d55b5477bd7b974ef2a468a06fcf1 to your computer and use it in GitHub Desktop.
Save clemensgg/977d55b5477bd7b974ef2a468a06fcf1 to your computer and use it in GitHub Desktop.
hermes syncchain config
[[chains]]
id = "noble-1"
rpc_addr = "..."
grpc_addr = "..."
#event_source = { mode = 'pull', interval = '500ms' }
event_source = { mode = 'push', url = '...', batch_delay = '1ms' }
trusted_node = true
ccv_consumer_chain = false
rpc_timeout = "10s"
account_prefix = "noble"
key_name = "syncchain"
store_prefix = "ibc"
default_gas = 2000000
max_gas = 10000000
max_msg_num = 20
max_tx_size = 2097152
gas_multiplier = 1.1
clock_drift = "15s"
max_block_time = "8s"
trusting_period = "336h"
memo_prefix = "relayed by CryptoCrew Validators"
[chains.address_type]
derivation = "cosmos"
[chains.gas_price]
price = 0.011
denom = "uusdc"
[chains.trust_threshold]
numerator = "1"
denominator = "3"
[chains.packet_filter]
policy = "allow"
list = [
['transfer','channel-3'], # juno-1
['transfer','channel-11'], # stargaze-1
]
[[chains]]
id = "juno-1"
rpc_addr = "..."
grpc_addr = "..."
#event_source = { mode = 'pull', interval = '500ms' }
event_source = { mode = 'push', url = '...', batch_delay = '1ms' }
trusted_node = true
ccv_consumer_chain = false
rpc_timeout = "10s"
account_prefix = "juno"
key_name = "syncchain"
store_prefix = "ibc"
default_gas = 1000000
max_gas = 9000000
gas_multiplier = 1.2
max_msg_num = 25
max_tx_size = 1800000
clock_drift = "15s"
max_block_time = "10s"
trusting_period = "448h"
memo_prefix = "relayed by CryptoCrew Validators"
[chains.address_type]
derivation = "cosmos"
[chains.gas_price]
price = 0.076
denom = "ujuno"
[chains.trust_threshold]
numerator = "1"
denominator = "3"
[chains.packet_filter]
policy = "allow"
list = [
['transfer','channel-29'], # akashnet-2
['transfer','channel-20'], # stargaze-1
['transfer','channel-224'], # noble-1
['transfer','channel-374'], # syncchaindevnet
]
[[chains]]
id = "stargaze-1"
rpc_addr = "..."
grpc_addr = "..."
#event_source = { mode = 'pull', interval = '500ms' }
event_source = { mode = 'push', url = '...', batch_delay = '1ms' }
trusted_node = true
ccv_consumer_chain = false
rpc_timeout = "10s"
account_prefix = "stars"
key_name = "syncchain"
store_prefix = "ibc"
default_gas = 2000000
max_gas = 10000000
max_msg_num = 20
max_tx_size = 2097152
gas_multiplier = 1.1
clock_drift = "15s"
max_block_time = "8s"
trusting_period = "10days"
memo_prefix = "relayed by CryptoCrew Validators"
[chains.address_type]
derivation = "cosmos"
[chains.gas_price]
price = 1
denom = "ustars"
[chains.trust_threshold]
numerator = "1"
denominator = "3"
[chains.packet_filter]
policy = "allow"
list = [
['transfer','channel-5'], # juno-1
['transfer','channel-204'], # noble-1
['transfer','channel-226'], # syncchaindevnet
]
[[chains]]
id = "akashnet-2"
rpc_addr = "..."
grpc_addr = "..."
#event_source = { mode = 'pull', interval = '500ms' }
event_source = { mode = 'push', url = '...', batch_delay = '1ms' }
trusted_node = true
ccv_consumer_chain = false
rpc_timeout = "10s"
account_prefix = "akash"
key_name = "syncchain"
store_prefix = "ibc"
default_gas = 2000000
max_gas = 9000000
gas_multiplier = 1.1
max_msg_num = 25
max_tx_size = 180000
clock_drift = "15s"
max_block_time = "10s"
trusting_period = "336h"
memo_prefix = "relayed by CryptoCrew Validators"
[chains.address_type]
derivation = "cosmos"
[chains.gas_price]
price = 0.026
denom = "uakt"
[chains.trust_threshold]
numerator = "1"
denominator = "3"
[chains.packet_filter]
policy = "allow"
list = [
['transfer','channel-35'], # juno-1
]
[[chains]]
id = "sync-devnet-f666006f"
rpc_addr = "..."
grpc_addr = "..."
#event_source = { mode = 'pull', interval = '500ms' }
event_source = { mode = 'push', url = '...', batch_delay = '1ms' }
trusted_node = true
ccv_consumer_chain = false
rpc_timeout = "10s"
account_prefix = "sync"
key_name = "syncchain"
store_prefix = "ibc"
default_gas = 2000000
max_gas = 9000000
gas_multiplier = 1.1
max_msg_num = 25
max_tx_size = 180000
clock_drift = "15s"
max_block_time = "10s"
trusting_period = "336h"
memo_prefix = "relayed by CryptoCrew Validators"
[chains.address_type]
derivation = "cosmos"
[chains.gas_price]
price = 0.0
denom = "usync"
[chains.trust_threshold]
numerator = "1"
denominator = "3"
[chains.packet_filter]
policy = "allow"
list = [
['transfer','channel-2'], # stargaze-1
['transfer','channel-3'], # juno-1
]
[global]
log_level = "debug"
[rest]
enabled = true
host = "0.0.0.0"
port = 9900
[telemetry]
enabled = true
host = "0.0.0.0"
port = 9901
[mode.clients]
enabled = false
refresh = false
misbehaviour = false
[mode.connections]
enabled = false
[mode.channels]
enabled = false
[mode.packets]
enabled = true
clear_interval = 50
clear_on_start = true
tx_confirmation = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment