forked from cosmos/chain-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
paths.schema.json
117 lines (117 loc) · 3.37 KB
/
paths.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
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
108
109
110
111
112
113
114
115
116
117
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Relayer Paths",
"description": "Path metadata to relay packets between two different chains.",
"type": "object",
"required": [
"paths"
],
"properties": {
"paths": {
"type": "array",
"items": {
"type": "object",
"required": [
"src",
"dst",
"channels"
],
"properties": {
"src": {
"type": "object",
"required": [
"client-id",
"connection-id"
],
"properties": {
"client-id": {
"type": "string",
"description": "#/$defs/client-id-description"
},
"connection-id": {
"type": "string",
"description": "#/$defs/connection-id-description"
}
}
},
"dst": {
"type": "object",
"required": [
"chain-name",
"client-id",
"connection-id"
],
"properties": {
"chain-name": {
"type": "string"
},
"client-id": {
"type": "string",
"description": "#/$defs/client-id-description"
},
"connection-id": {
"type": "string",
"description": "#/$defs/connection-id-description"
}
}
},
"channels": {
"type": "array",
"items": [
{
"type": "object",
"required": [
"src",
"dst",
"ordering",
"version"
],
"properties": {
"src": {
"$ref": "#/$defs/channel_info"
},
"dst": {
"$ref": "#/$defs/channel_info"
},
"ordering": {
"type": "string",
"description": "Determines if packets from a sending module must be ORDERED or UNORDERED."
},
"version": {
"type": "string",
"description": "IBC Version"
},
"tags": {
"type": "object",
"description": "Human readable key:value pair that describes what the path is servicing. E.g. 'DEX': 'Osmosis'"
}
}
}
]
}
}
}
}
},
"$defs": {
"channel_info": {
"type": "object",
"required": [
"channel-id",
"port-id"
],
"properties": {
"channel-id": {
"type": "string",
"description": "The channel ID on the corresponding chain's connection representing a channel on the other chain."
},
"port-id": {
"type": "string",
"description": "The IBC port ID which a relevant module binds to on the corresponding chain."
}
}
},
"client-id-description": "The client ID on the corresponding chain representing the other chain's light client.",
"connection-id-description": "The connection ID on the corresponding chain representing a connection to the other chain."
}
}