-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathconfig.json
48 lines (48 loc) · 1.23 KB
/
config.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
{
"log_format": "text",
"secret": "invalid",
"bypass_secret": "helloworld",
"max_request_polls": 7,
"chains": [
{
"id": "union-devnet-1",
"bech32_prefix": "union",
"memo": "drip drop greetings from union faucet",
"ws_url": "ws://localhost:26657/websocket",
"grpc_url": "http://localhost:9090",
"gas_config": {
"gas_price": "1.0",
"gas_denom": "muno",
"gas_multiplier": "1.1",
"max_gas": 40000000
},
"signer": "0xaa820fa947beb242032a41b6dc9a8b9c37d8f5fbcda0966b1ec80335b10a7d6f",
"coins": [
{
"denom": "muno",
"amount": 13370
}
]
},
{
"id": "stargaze-devnet-1",
"bech32_prefix": "stars",
"memo": "drip drop greetings from union faucet on stargaze",
"ws_url": "ws://localhost:26757/websocket",
"grpc_url": "http://localhost:9190",
"gas_config": {
"gas_price": "1.0",
"gas_denom": "ustars",
"gas_multiplier": "1.1",
"max_gas": 40000000
},
"signer": "0xaa820fa947beb242032a41b6dc9a8b9c37d8f5fbcda0966b1ec80335b10a7d6f",
"coins": [
{
"denom": "ustars",
"amount": 13370
}
]
}
]
}