-
Notifications
You must be signed in to change notification settings - Fork 12
/
config.example.json
56 lines (56 loc) · 1.36 KB
/
config.example.json
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
{
"$schema": "./config.schema.json",
"port": 7010,
"metricPort": 70001,
"logLevel": "info",
"chains": [
{
"bech32Prefix": "init",
"chainId": "chain-1",
"gasPrice": "0.15gas",
"restUri": "https://rest.chain-1.com",
"rpcUri": "https://rpc.chain-1.com",
"wallets": [
{
"key": {
"type": "raw",
"privateKey": "123..."
},
"maxHandlePacket": 10,
"startHeight": 0 // if empty start from the latest height
},
{
"key": {
"type": "mnemonic",
"privateKey": "repair family apology column ..."
},
"maxHandlePacket": 10,
"packetFilter": {
"connections": [{ "connectionId": "conneciton-1" }]
}
}
],
"feeFilter": {
"recvFee": [{ "denom": "gas", "amount": 100 }],
"timeoutFee": [{ "denom": "gas", "amount": 200 }],
"ackFee": [{ "denom": "gas", "amount": 300 }]
}
},
{
"bech32Prefix": "init",
"chainId": "chain-2",
"gasPrice": "0umin",
"restUri": "https://rest.chain-2.com",
"rpcUri": "https://rpc.chain-2.com",
"wallets": [
{
"key": {
"type": "raw",
"privateKey": "123..."
},
"maxHandlePacket": 10
}
]
}
]
}