-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathschema.validators.json
More file actions
254 lines (254 loc) · 7.41 KB
/
schema.validators.json
File metadata and controls
254 lines (254 loc) · 7.41 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Validator Directory",
"type": "object",
"required": ["description", "operator_address"],
"properties": {
"operator_address": {
"type": "string",
"description": "The address generated by evmosd"
},
"description": {
"type": "object",
"required": ["details", "website", "social"],
"properties": {
"moniker": {
"type": "string",
"description": "Validator name"
},
"logo_link": {
"type": "string",
"description": "URL of validator's logo/brand"
},
"identity": {
"type": "string",
"description": "A unique identifier"
},
"website": {
"type": "string",
"description": "Full URL address"
},
"details": {
"type": "string",
"description": "A longer explanation of the validator's services, mission, and purpose."
},
"security_contact": {
"type": "string",
"description": "Email address or contact details"
},
"offers_auto_compounding": {
"type": "boolean",
"default": false
},
"has_interchain_account": {
"type": "boolean",
"default": false
},
"is_recent": {
"type": "boolean",
"default": false
},
"has_liquid_staking": {
"type": "boolean",
"default": false
},
"relayers": {
"type": "boolean",
"default": false
},
"social": {
"type": "array",
"items": {
"type": "object",
"required": ["name", "link"],
"properties": {
"name": {
"type": "string",
"enum": [
"Discord",
"Twitter",
"Facebook",
"Signal",
"Telegram",
"Other"
],
"default": "Twitter",
"description": "Social service"
},
"link": {
"type": "string",
"description": "URL link goes here"
}
}
}
},
"collaborators": {
"type": "array",
"default": [],
"items": {
"type": "object",
"properties": {
"identifier": {
"type": "string",
"description": "Name or moniker of collaborator"
},
"role": {
"type": "string",
"description": "Describe the role of the collaborator"
},
"pubKey": {
"type": "object",
"items": {
"type": "object",
"properties": {
"@type": {
"type": "string",
"description": "i.e. /cosmos.crypto.ed25519.PubKey or other path of key derivation"
},
"key": {
"type": "string",
"description": "Place public key here"
}
}
}
}
}
}
},
"communities": {
"type": "array",
"default": [],
"items": {
"type": "object",
"properties": {
"involvement_type": {
"type": "string",
"enum": ["Code", "Community", "Social", "Other"],
"description": "Pick a type of community contributions. Community involves non-code related works like Governance proposal translation"
},
"date_from": {
"type": "string",
"description": "Please provide a date range in the format of DD/MM/YYY"
},
"date_to": {
"type": "string",
"description": "Please provide a date range in the format of DD/MM/YYY"
},
"handle": {
"type": "string",
"description": "Social link handle of contributor"
},
"description": {
"type": "string",
"description": "Overview of contribution"
},
"link": {
"type": "string",
"description": "URL of contribution or service site"
},
"details": {
"type": "object",
"properties": {
"features": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the feature"
},
"sha": {
"type": "string",
"description": "Feature work commitment to source control (i.e. Github or Bitbucket)"
},
"repo": {
"type": "string",
"description": "Link to the repo/work"
},
"description": {
"type": "string",
"description": "Elaborate further detail"
}
}
}
}
}
}
}
}
},
"infrastructures": {
"type": "array",
"default": [],
"items": {
"type": "object",
"properties": {
"hosting_provider": {
"type": "string",
"description": "Describe the service name"
},
"stack_details": {
"type": "string",
"description": "Describe the stack/service in greater detail"
}
}
}
}
},
"social": [
{
"name": "Discord",
"link": "https://discord.gg/${string}"
}
],
"collaborators": [
{
"identifier": "string",
"role": "string",
"pubKey": {
"@type": "string",
"key": "string"
}
}
],
"communities": [
{
"involvementType": "Code",
"dates": "Feb 2021 to Present",
"handle": "jeremy",
"link": "string",
"details": [
{
"features": [
{
"name": "Set up 2FA",
"sha": "312342",
"repo": "evmosjs"
}
]
}
]
},
{
"involvement_type": "Social",
"description": "Helped set up marking strategy for XYZ Validators",
"date_from": "Late Q3 2021",
"date_to": "Feb 2022",
"contributions": [
{
"name": "Bootstrap marketing team",
"description": "Donated over $5000 to help boostrap their marketing team"
}
]
}
],
"infrastructures": [
{
"hosting_provider": "string",
"stack_details": "string"
}
]
}
}
}