forked from tokensoft/launchlists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sale.schema.json
120 lines (120 loc) · 4.13 KB
/
sale.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
118
119
120
{
"type": "array",
"items": {
"type": "object",
"properties": {
"chainId": {
"type": "number",
"enum": [1, 3, 4, 31337]
},
"saleId": {
"type": "string",
"pattern": "^0x[0-9a-f]{64}$"
},
"saleManagerAddress": {
"type": "string",
"pattern": "^0x[0-9a-f]{40}$"
},
"saleName": {
"type": "string"
},
"hidden": {
"type": "boolean"
},
"purchaseDocumentsGenerated": {
"type": "boolean"
},
"logo": {
"type": "string"
},
"favicon": {
"type": "string"
},
"projectWebsite": {
"type": "string"
},
"saleDescription": {
"type": "string"
},
"socials": {
"type": "object",
"properties": {
"twitter": {
"type": "string",
"pattern": "(https?:\\\/\\\/)?(www\\.)?(twitter\\.com)\\\/(\\w+)?"
},
"discord": {
"type": "string",
"pattern": "(https?:\\\/\\\/)?(www\\.)?((discord\\.com\\\/invite)|(discord\\.gg))\\\/(\\w+)?"
},
"telegram": {
"type": "string",
"pattern": "(https?:\\\/\\\/)?(www\\.)?(t\\.me\\\/).+"
}
},
"additionalProperties": false
},
"documents": {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"uri": {
"type": "string",
"pattern": ".pdf$"
},
"appendSignaturePageUri": {
"type": "string"
}
},
"required": ["name", "uri"],
"additionalProperties": false
}
},
"access": {
"type": "object",
"properties": {
"limitToRegions": {
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"enum": ["AD", "AE", "AG", "AI", "AL", "AM", "AN", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW"]
}
},
"limitToAddresses": {
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"pattern": "^0x[0-9a-f]{40}$"
}
},
"merkleProofs": {
"type": "string"
}
},
"required": [],
"additionalProperties": false
}
},
"required": [
"chainId",
"saleManagerAddress",
"saleId",
"saleName",
"logo",
"favicon",
"projectWebsite",
"saleDescription",
"socials",
"documents",
"access"
],
"additionalProperties": false
}
}