-
Notifications
You must be signed in to change notification settings - Fork 1
/
chain.schema.json
58 lines (58 loc) · 1.32 KB
/
chain.schema.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
57
58
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"title": "Chain",
"type": "object",
"required": [
"chain_id",
"is_testnet",
"chain_name",
"chain_type"
],
"properties": {
"$schema": {
"type": "string",
"minLength": 1,
"pattern": "^(\\.\\./)+chain\\.schema\\.json$"
},
"chain_id": {
"type": "string",
"minLength": 1,
"pattern": "[a-z0-9-]+",
"examples": [
"42161",
"osmosis-1"
]
},
"is_testnet": {
"type": "boolean",
"default": false
},
"chain_name": {
"type": "string",
"minLength": 1,
"pattern": "[a-z0-9]+",
"examples": [
"minimove"
]
},
"chain_type": {
"type": "string",
"minLength": "1",
"pattern": "[a-z]+",
"examples": [
"initia"
]
},
"go_fast_enabled": {
"type": "boolean",
"default": false
},
"go_fast_domain": {
"type": "string",
"examples": [
"42161",
"875"
]
}
}
}