-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathConfigRelayer04.toml
More file actions
107 lines (96 loc) · 2.3 KB
/
ConfigRelayer04.toml
File metadata and controls
107 lines (96 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[global]
log_level = 'info'
[mode]
[mode.clients]
enabled = true
refresh = true
misbehaviour = false
[mode.connections]
enabled = true
[mode.channels]
enabled = true
[mode.packets]
enabled = true
clear_interval = 50
clear_on_start = false
#filter = true
tx_confirmation = true
[telemetry]
enabled = true
host = 'X.X.X.X'
port = 3001
[[chains]]
id = 'neutron-1'
rpc_addr = 'http://127.0.0.1:28657'
grpc_addr = 'http://127.0.0.1:9290'
event_source = { mode = 'pull', interval = '200ms' }
rpc_timeout = '30s'
account_prefix = 'neutron'
key_name = 'neutron'
store_prefix = 'ibc'
max_tx_size = 180000
max_gas = 5000000
gas_price = { price = 0.075, denom = 'untrn' }
gas_multiplier = 1.2
clock_drift = '15s'
max_block_time = '30s'
trusting_period = '14days'
trust_threshold = { numerator = '1', denominator = '3' }
memo_prefix = 'Inter Blockchain Services Relayer'
ccv_consumer_chain = true
[chains.packet_filter]
policy = 'allow'
list = [
['transfer', 'channel-44'], # nolus
['icahost', 'channel-*'], # ICA
]
[[chains]]
id = 'osmosis-1'
rpc_addr = 'http://127.0.0.1:26657'
grpc_addr = 'tcp://127.0.0.1:9090'
event_source = { mode = 'pull', interval = '200ms' }
rpc_timeout = '15s'
account_prefix = 'osmo'
key_name = 'osmosis'
store_prefix = 'ibc'
max_gas = 25000000
max_msg_num = 10
gas_price = { price = 0.025 , denom = 'uosmo' }
gas_price_multiplier = 1.1
max_gas_price = 0.6
gas_multiplier = 1.1
clock_drift = '10s'
max_block_time = '30s'
trusting_period = '9days'
trust_threshold = { numerator = '1', denominator = '3' }
memo_prefix = 'Inter Blockchain Services Relayer'
[chains.packet_filter]
policy = 'allow'
list = [
['icahost', 'channel-*'], # ICA
['transfer', 'channel-783'], # Nolus
]
[[chains]]
id = 'pirin-1'
type = 'CosmosSdk'
rpc_addr = 'http://127.0.0.1:29657'
grpc_addr = 'tcp://127.0.0.1:9490'
event_source = { mode = 'pull', interval = '200ms' }
rpc_timeout = '15s'
account_prefix = 'nolus'
key_name = 'nolus'
store_prefix = 'ibc'
max_gas = 15000000
max_msg_num = 5
gas_price = { price = 0.0025 , denom = 'unls' }
gas_multiplier = 1.5
clock_drift = '20s'
trusting_period = '1209600s'
trust_threshold = { numerator = '1', denominator = '3' }
memo_prefix = 'Inter Blockchain Services Relayer'
[chains.packet_filter]
policy = 'allow'
list = [
['transfer', '*'], #
['icacontroller-*', 'channel-*'], ## ICA
]