-
Notifications
You must be signed in to change notification settings - Fork 6
/
conditions.json
396 lines (396 loc) · 32.3 KB
/
conditions.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
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
{
"name": "Conditions",
"conditions": "ContractConditions(\"@1DeveloperCondition\")",
"data": [
{
"Name": "block_reward",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract block_reward {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) < 3 || Int($Value) > 9999 {\n warning \"Value must be between 3 and 9999\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "blockchain_url",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract blockchain_url {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if !(HasPrefix($Value, \"http://\") || HasPrefix($Value, \"https://\")) {\n warning \"URL ivalid (not found protocol)\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "commission_size",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract commission_size {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "commission_wallet",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract commission_wallet {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "default_ecosystem_contract",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract default_ecosystem_contract {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "default_ecosystem_menu",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract default_ecosystem_menu {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "default_ecosystem_page",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract default_ecosystem_page {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "fuel_rate",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract fuel_rate {\n data {\n Value string\n }\n\n conditions {\n $Value = TrimSpace($Value)\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n // [[\"x1\",\"number\"]]\n if !(HasPrefix($Value, \"[\") && \"]\" == Substr($Value, Size($Value)-1, 1)){\n warning \"Invalid value\"\n }\n var rates newRate array\n rates = JSONDecode($Value)\n if Len(rates) > 1{\n warning \"Invalid size array\"\n }\n newRate = rates[0]\n if Len(newRate) != 2{\n warning \"Invalid size new rate array\"\n }\n if newRate[0] != 1 {\n warning \"Invalid ecosystem number\"\n }\n if Int(newRate[1]) <= 0 {\n warning \"Invalid fuel value\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "full_nodes",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract full_nodes {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n\n var full_nodes_arr array\n full_nodes_arr = JSONDecode($Value)\n\n var len_arr int\n len_arr = Len(full_nodes_arr)\n\n if len_arr == 0 {\n warning \"Wrong array structure\"\n }\n\n var i int\n while(i < len_arr){\n var node_map map\n node_map = full_nodes_arr[i]\n\n var public_key string\n var tcp_address string\n var api_address string\n var key_id string\n\n public_key = node_map[\"public_key\"]\n tcp_address = node_map[\"tcp_address\"]\n api_address = node_map[\"api_address\"]\n key_id = node_map[\"key_id\"]\n\n if Size(public_key) == 0 {\n warning \"Public key was not received\"\n }\n if Size(tcp_address) == 0 {\n warning \"TCP address was not received\"\n }\n if Size(api_address) == 0 {\n warning \"API address was not received\"\n }\n if Size(key_id) == 0 {\n warning \"Account was not received\"\n }\n\n i = i + 1\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "gap_between_blocks",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract gap_between_blocks {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 || Int($Value) >= 86400 {\n warning \"Value must be between 1 and 86399\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "incorrect_blocks_per_day",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract incorrect_blocks_per_day {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "local_node_ban_time",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract local_node_ban_time {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "max_block_generation_time",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract max_block_generation_time {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "max_block_size",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract max_block_size {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "max_columns",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract max_columns {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "max_forsign_size",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract max_forsign_size {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "max_fuel_block",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract max_fuel_block {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "max_fuel_tx",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract max_fuel_tx {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "max_indexes",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract max_indexes {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "max_tx_block",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract max_tx_block {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "max_tx_block_per_user",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract max_tx_block_per_user {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "max_tx_size",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract max_tx_size {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "new_version_url",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract new_version_url {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "node_ban_time",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract node_ban_time {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "number_of_nodes",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract number_of_nodes {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) < 1 || Int($Value) > 999 {\n warning \"Value must be between 1 and 999\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_create_contract",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_create_contract {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_create_menu",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_create_menu {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_create_page",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_create_page {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_address_to_id",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_address_to_id {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_bind_wallet",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_bind_wallet {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_column_condition",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_column_condition {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_compile_contract",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_compile_contract {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_contains",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_contains {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_contract_by_id",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_contract_by_id {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_contract_by_name",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_contract_by_name {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_contracts_list",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_contracts_list {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_create_column",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_create_column {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_create_ecosystem",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_create_ecosystem {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_create_table",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_create_table {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_ecosys_param",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_ecosys_param {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_eval",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_eval {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_eval_condition",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_eval_condition {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_flush_contract",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_flush_contract {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_has_prefix",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_has_prefix {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_id_to_address",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_id_to_address {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_is_object",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_is_object {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_join",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_join {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_json_to_map",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_json_to_map {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_len",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_len {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_perm_column",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_perm_column {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_perm_table",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_perm_table {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_pub_to_id",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_pub_to_id {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_replace",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_replace {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_sha256",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_sha256 {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_size",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_size {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_substr",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_substr {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_sys_fuel",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_sys_fuel {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_sys_param_int",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_sys_param_int {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_sys_param_string",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_sys_param_string {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_table_conditions",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_table_conditions {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_unbind_wallet",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_unbind_wallet {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_update_lang",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_update_lang {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_exec_validate_condition",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_exec_validate_condition {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "price_tx_data",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract price_tx_data {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) <= 0 {\n warning \"Value must be greater than zero\"\n }\n }\n}",
"Type": "contracts"
},
{
"Name": "rollback_blocks",
"Conditions": "ContractConditions(\"@1DeveloperCondition\")",
"Value": "contract rollback_blocks {\n data {\n Value string\n }\n\n conditions {\n if Size($Value) == 0 {\n warning \"Value was not received\"\n }\n if Int($Value) < 1 || Int($Value) > 999 {\n warning \"Value must be between 1 and 999\"\n }\n }\n}",
"Type": "contracts"
}
]
}