@super-protocol/sdk-js 3.12.0-beta.5 → 3.12.0-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/contracts/Campaign.d.ts +199 -165
- package/dist/cjs/contracts/Campaign.js +242 -198
- package/dist/cjs/staticModels/Campaign.d.ts +10 -15
- package/dist/cjs/staticModels/Campaign.js +17 -21
- package/dist/cjs/types/Campaign.d.ts +24 -12
- package/dist/mjs/contracts/Campaign.d.ts +199 -165
- package/dist/mjs/contracts/Campaign.js +242 -198
- package/dist/mjs/staticModels/Campaign.d.ts +10 -15
- package/dist/mjs/staticModels/Campaign.js +17 -21
- package/dist/mjs/types/Campaign.d.ts +24 -12
- package/package.json +1 -1
|
@@ -94,23 +94,18 @@ export declare const abi: readonly [{
|
|
|
94
94
|
readonly inputs: readonly [{
|
|
95
95
|
readonly indexed: true;
|
|
96
96
|
readonly internalType: "address";
|
|
97
|
-
readonly name: "
|
|
97
|
+
readonly name: "participant";
|
|
98
98
|
readonly type: "address";
|
|
99
99
|
}, {
|
|
100
100
|
readonly indexed: false;
|
|
101
|
-
readonly internalType: "
|
|
101
|
+
readonly internalType: "int256";
|
|
102
102
|
readonly name: "oldScore";
|
|
103
|
-
readonly type: "
|
|
103
|
+
readonly type: "int256";
|
|
104
104
|
}, {
|
|
105
105
|
readonly indexed: false;
|
|
106
|
-
readonly internalType: "
|
|
106
|
+
readonly internalType: "int256";
|
|
107
107
|
readonly name: "newScore";
|
|
108
|
-
readonly type: "
|
|
109
|
-
}, {
|
|
110
|
-
readonly indexed: false;
|
|
111
|
-
readonly internalType: "uint256";
|
|
112
|
-
readonly name: "newRank";
|
|
113
|
-
readonly type: "uint256";
|
|
108
|
+
readonly type: "int256";
|
|
114
109
|
}];
|
|
115
110
|
readonly name: "ScoreUpdated";
|
|
116
111
|
readonly type: "event";
|
|
@@ -128,6 +123,16 @@ export declare const abi: readonly [{
|
|
|
128
123
|
readonly outputs: readonly [];
|
|
129
124
|
readonly stateMutability: "nonpayable";
|
|
130
125
|
readonly type: "function";
|
|
126
|
+
}, {
|
|
127
|
+
readonly inputs: readonly [];
|
|
128
|
+
readonly name: "competitionActive";
|
|
129
|
+
readonly outputs: readonly [{
|
|
130
|
+
readonly internalType: "bool";
|
|
131
|
+
readonly name: "";
|
|
132
|
+
readonly type: "bool";
|
|
133
|
+
}];
|
|
134
|
+
readonly stateMutability: "view";
|
|
135
|
+
readonly type: "function";
|
|
131
136
|
}, {
|
|
132
137
|
readonly inputs: readonly [];
|
|
133
138
|
readonly name: "getContentCount";
|
|
@@ -155,25 +160,84 @@ export declare const abi: readonly [{
|
|
|
155
160
|
readonly name: "getContentRange";
|
|
156
161
|
readonly outputs: readonly [{
|
|
157
162
|
readonly components: readonly [{
|
|
158
|
-
readonly
|
|
159
|
-
|
|
160
|
-
|
|
163
|
+
readonly components: readonly [{
|
|
164
|
+
readonly internalType: "enum Campaign.Status";
|
|
165
|
+
readonly name: "status";
|
|
166
|
+
readonly type: "uint8";
|
|
167
|
+
}, {
|
|
168
|
+
readonly internalType: "address";
|
|
169
|
+
readonly name: "participant";
|
|
170
|
+
readonly type: "address";
|
|
171
|
+
}, {
|
|
172
|
+
readonly internalType: "string";
|
|
173
|
+
readonly name: "link";
|
|
174
|
+
readonly type: "string";
|
|
175
|
+
}, {
|
|
176
|
+
readonly internalType: "bytes32";
|
|
177
|
+
readonly name: "contentHash";
|
|
178
|
+
readonly type: "bytes32";
|
|
179
|
+
}];
|
|
180
|
+
readonly internalType: "struct Campaign.Content";
|
|
181
|
+
readonly name: "content";
|
|
182
|
+
readonly type: "tuple";
|
|
183
|
+
}, {
|
|
184
|
+
readonly internalType: "uint256";
|
|
185
|
+
readonly name: "index";
|
|
186
|
+
readonly type: "uint256";
|
|
187
|
+
}];
|
|
188
|
+
readonly internalType: "struct Campaign.ContentWithIndex[]";
|
|
189
|
+
readonly name: "result";
|
|
190
|
+
readonly type: "tuple[]";
|
|
191
|
+
}];
|
|
192
|
+
readonly stateMutability: "view";
|
|
193
|
+
readonly type: "function";
|
|
194
|
+
}, {
|
|
195
|
+
readonly inputs: readonly [];
|
|
196
|
+
readonly name: "getLinksStat";
|
|
197
|
+
readonly outputs: readonly [{
|
|
198
|
+
readonly components: readonly [{
|
|
199
|
+
readonly internalType: "uint256";
|
|
200
|
+
readonly name: "totalAddedLinks";
|
|
201
|
+
readonly type: "uint256";
|
|
202
|
+
}, {
|
|
203
|
+
readonly internalType: "uint256";
|
|
204
|
+
readonly name: "totalDuplicatedLinks";
|
|
205
|
+
readonly type: "uint256";
|
|
206
|
+
}, {
|
|
207
|
+
readonly internalType: "uint256";
|
|
208
|
+
readonly name: "totalValidatedLinks";
|
|
209
|
+
readonly type: "uint256";
|
|
161
210
|
}, {
|
|
211
|
+
readonly internalType: "uint256";
|
|
212
|
+
readonly name: "totalInvalidLinks";
|
|
213
|
+
readonly type: "uint256";
|
|
214
|
+
}];
|
|
215
|
+
readonly internalType: "struct Campaign.LinksStat";
|
|
216
|
+
readonly name: "output";
|
|
217
|
+
readonly type: "tuple";
|
|
218
|
+
}];
|
|
219
|
+
readonly stateMutability: "view";
|
|
220
|
+
readonly type: "function";
|
|
221
|
+
}, {
|
|
222
|
+
readonly inputs: readonly [{
|
|
223
|
+
readonly internalType: "uint256";
|
|
224
|
+
readonly name: "rank";
|
|
225
|
+
readonly type: "uint256";
|
|
226
|
+
}];
|
|
227
|
+
readonly name: "getParticipantByRank";
|
|
228
|
+
readonly outputs: readonly [{
|
|
229
|
+
readonly components: readonly [{
|
|
162
230
|
readonly internalType: "address";
|
|
163
231
|
readonly name: "participant";
|
|
164
232
|
readonly type: "address";
|
|
165
233
|
}, {
|
|
166
|
-
readonly internalType: "
|
|
167
|
-
readonly name: "
|
|
168
|
-
readonly type: "
|
|
169
|
-
}, {
|
|
170
|
-
readonly internalType: "bytes32";
|
|
171
|
-
readonly name: "contentHash";
|
|
172
|
-
readonly type: "bytes32";
|
|
234
|
+
readonly internalType: "int256";
|
|
235
|
+
readonly name: "score";
|
|
236
|
+
readonly type: "int256";
|
|
173
237
|
}];
|
|
174
|
-
readonly internalType: "struct
|
|
175
|
-
readonly name: "
|
|
176
|
-
readonly type: "tuple
|
|
238
|
+
readonly internalType: "struct AVLTreeLib.ParticipantScore";
|
|
239
|
+
readonly name: "";
|
|
240
|
+
readonly type: "tuple";
|
|
177
241
|
}];
|
|
178
242
|
readonly stateMutability: "view";
|
|
179
243
|
readonly type: "function";
|
|
@@ -183,76 +247,66 @@ export declare const abi: readonly [{
|
|
|
183
247
|
readonly name: "participant";
|
|
184
248
|
readonly type: "address";
|
|
185
249
|
}];
|
|
186
|
-
readonly name: "
|
|
250
|
+
readonly name: "getParticipantInfo";
|
|
187
251
|
readonly outputs: readonly [{
|
|
188
252
|
readonly components: readonly [{
|
|
253
|
+
readonly internalType: "uint32";
|
|
254
|
+
readonly name: "nextAttemptTs";
|
|
255
|
+
readonly type: "uint32";
|
|
256
|
+
}, {
|
|
257
|
+
readonly internalType: "uint8";
|
|
258
|
+
readonly name: "totalDayAttempts";
|
|
259
|
+
readonly type: "uint8";
|
|
260
|
+
}, {
|
|
189
261
|
readonly internalType: "address";
|
|
190
262
|
readonly name: "referrer";
|
|
191
263
|
readonly type: "address";
|
|
192
264
|
}, {
|
|
193
|
-
readonly internalType: "
|
|
194
|
-
readonly name: "
|
|
195
|
-
readonly type: "
|
|
265
|
+
readonly internalType: "uint256";
|
|
266
|
+
readonly name: "referralsCount";
|
|
267
|
+
readonly type: "uint256";
|
|
196
268
|
}, {
|
|
197
|
-
readonly internalType: "
|
|
198
|
-
readonly name: "
|
|
199
|
-
readonly type: "
|
|
269
|
+
readonly internalType: "uint256";
|
|
270
|
+
readonly name: "totalAddedLinks";
|
|
271
|
+
readonly type: "uint256";
|
|
200
272
|
}, {
|
|
201
273
|
readonly internalType: "uint256";
|
|
202
|
-
readonly name: "
|
|
274
|
+
readonly name: "totalDuplicatedLinks";
|
|
203
275
|
readonly type: "uint256";
|
|
204
276
|
}, {
|
|
205
277
|
readonly internalType: "uint256";
|
|
206
|
-
readonly name: "
|
|
278
|
+
readonly name: "totalValidatedLinks";
|
|
207
279
|
readonly type: "uint256";
|
|
208
280
|
}, {
|
|
209
281
|
readonly internalType: "uint256";
|
|
210
|
-
readonly name: "
|
|
282
|
+
readonly name: "totalInvalidLinks";
|
|
211
283
|
readonly type: "uint256";
|
|
284
|
+
}, {
|
|
285
|
+
readonly internalType: "address";
|
|
286
|
+
readonly name: "participant";
|
|
287
|
+
readonly type: "address";
|
|
212
288
|
}, {
|
|
213
289
|
readonly internalType: "uint256";
|
|
214
|
-
readonly name: "
|
|
290
|
+
readonly name: "rank";
|
|
215
291
|
readonly type: "uint256";
|
|
292
|
+
}, {
|
|
293
|
+
readonly internalType: "int256";
|
|
294
|
+
readonly name: "score";
|
|
295
|
+
readonly type: "int256";
|
|
216
296
|
}];
|
|
217
|
-
readonly internalType: "struct Campaign.
|
|
297
|
+
readonly internalType: "struct Campaign.ParticipantInfo";
|
|
218
298
|
readonly name: "data";
|
|
219
299
|
readonly type: "tuple";
|
|
220
|
-
}, {
|
|
221
|
-
readonly internalType: "uint256";
|
|
222
|
-
readonly name: "score";
|
|
223
|
-
readonly type: "uint256";
|
|
224
|
-
}, {
|
|
225
|
-
readonly internalType: "uint256";
|
|
226
|
-
readonly name: "rank";
|
|
227
|
-
readonly type: "uint256";
|
|
228
300
|
}];
|
|
229
301
|
readonly stateMutability: "view";
|
|
230
302
|
readonly type: "function";
|
|
231
303
|
}, {
|
|
232
304
|
readonly inputs: readonly [{
|
|
233
|
-
readonly internalType: "uint256";
|
|
234
|
-
readonly name: "rank";
|
|
235
|
-
readonly type: "uint256";
|
|
236
|
-
}];
|
|
237
|
-
readonly name: "getPlayerByRank";
|
|
238
|
-
readonly outputs: readonly [{
|
|
239
305
|
readonly internalType: "address";
|
|
240
|
-
readonly name: "
|
|
241
|
-
readonly type: "address";
|
|
242
|
-
}, {
|
|
243
|
-
readonly internalType: "uint256";
|
|
244
|
-
readonly name: "score";
|
|
245
|
-
readonly type: "uint256";
|
|
246
|
-
}];
|
|
247
|
-
readonly stateMutability: "view";
|
|
248
|
-
readonly type: "function";
|
|
249
|
-
}, {
|
|
250
|
-
readonly inputs: readonly [{
|
|
251
|
-
readonly internalType: "address";
|
|
252
|
-
readonly name: "player";
|
|
306
|
+
readonly name: "participant";
|
|
253
307
|
readonly type: "address";
|
|
254
308
|
}];
|
|
255
|
-
readonly name: "
|
|
309
|
+
readonly name: "getParticipantRank";
|
|
256
310
|
readonly outputs: readonly [{
|
|
257
311
|
readonly internalType: "uint256";
|
|
258
312
|
readonly name: "rank";
|
|
@@ -263,14 +317,14 @@ export declare const abi: readonly [{
|
|
|
263
317
|
}, {
|
|
264
318
|
readonly inputs: readonly [{
|
|
265
319
|
readonly internalType: "address";
|
|
266
|
-
readonly name: "
|
|
320
|
+
readonly name: "participant";
|
|
267
321
|
readonly type: "address";
|
|
268
322
|
}];
|
|
269
|
-
readonly name: "
|
|
323
|
+
readonly name: "getParticipantScore";
|
|
270
324
|
readonly outputs: readonly [{
|
|
271
|
-
readonly internalType: "
|
|
325
|
+
readonly internalType: "int256";
|
|
272
326
|
readonly name: "score";
|
|
273
|
-
readonly type: "
|
|
327
|
+
readonly type: "int256";
|
|
274
328
|
}];
|
|
275
329
|
readonly stateMutability: "view";
|
|
276
330
|
readonly type: "function";
|
|
@@ -284,66 +338,43 @@ export declare const abi: readonly [{
|
|
|
284
338
|
readonly name: "range";
|
|
285
339
|
readonly type: "uint256";
|
|
286
340
|
}];
|
|
287
|
-
readonly name: "
|
|
288
|
-
readonly outputs: readonly [{
|
|
289
|
-
readonly internalType: "address[]";
|
|
290
|
-
readonly name: "players";
|
|
291
|
-
readonly type: "address[]";
|
|
292
|
-
}, {
|
|
293
|
-
readonly internalType: "uint256[]";
|
|
294
|
-
readonly name: "scores";
|
|
295
|
-
readonly type: "uint256[]";
|
|
296
|
-
}];
|
|
297
|
-
readonly stateMutability: "view";
|
|
298
|
-
readonly type: "function";
|
|
299
|
-
}, {
|
|
300
|
-
readonly inputs: readonly [];
|
|
301
|
-
readonly name: "getStat";
|
|
341
|
+
readonly name: "getParticipantsAroundRank";
|
|
302
342
|
readonly outputs: readonly [{
|
|
303
343
|
readonly components: readonly [{
|
|
304
|
-
readonly internalType: "
|
|
305
|
-
readonly name: "
|
|
306
|
-
readonly type: "
|
|
307
|
-
}, {
|
|
308
|
-
readonly internalType: "uint256";
|
|
309
|
-
readonly name: "totalValidLinksCount";
|
|
310
|
-
readonly type: "uint256";
|
|
344
|
+
readonly internalType: "address";
|
|
345
|
+
readonly name: "participant";
|
|
346
|
+
readonly type: "address";
|
|
311
347
|
}, {
|
|
312
|
-
readonly internalType: "
|
|
313
|
-
readonly name: "
|
|
314
|
-
readonly type: "
|
|
348
|
+
readonly internalType: "int256";
|
|
349
|
+
readonly name: "score";
|
|
350
|
+
readonly type: "int256";
|
|
315
351
|
}];
|
|
316
|
-
readonly internalType: "struct
|
|
317
|
-
readonly name: "";
|
|
318
|
-
readonly type: "tuple";
|
|
319
|
-
}];
|
|
320
|
-
readonly stateMutability: "view";
|
|
321
|
-
readonly type: "function";
|
|
322
|
-
}, {
|
|
323
|
-
readonly inputs: readonly [{
|
|
324
|
-
readonly internalType: "int256";
|
|
325
|
-
readonly name: "pointCount";
|
|
326
|
-
readonly type: "int256";
|
|
327
|
-
}];
|
|
328
|
-
readonly name: "getStatsByPoints";
|
|
329
|
-
readonly outputs: readonly [{
|
|
330
|
-
readonly internalType: "address[]";
|
|
331
|
-
readonly name: "";
|
|
332
|
-
readonly type: "address[]";
|
|
352
|
+
readonly internalType: "struct AVLTreeLib.ParticipantScore[]";
|
|
353
|
+
readonly name: "participants";
|
|
354
|
+
readonly type: "tuple[]";
|
|
333
355
|
}];
|
|
334
356
|
readonly stateMutability: "view";
|
|
335
357
|
readonly type: "function";
|
|
336
358
|
}, {
|
|
337
359
|
readonly inputs: readonly [{
|
|
338
|
-
readonly internalType: "
|
|
339
|
-
readonly name: "
|
|
340
|
-
readonly type: "
|
|
360
|
+
readonly internalType: "uint256";
|
|
361
|
+
readonly name: "count";
|
|
362
|
+
readonly type: "uint256";
|
|
341
363
|
}];
|
|
342
|
-
readonly name: "
|
|
364
|
+
readonly name: "getTopParticipants";
|
|
343
365
|
readonly outputs: readonly [{
|
|
344
|
-
readonly
|
|
345
|
-
|
|
346
|
-
|
|
366
|
+
readonly components: readonly [{
|
|
367
|
+
readonly internalType: "address";
|
|
368
|
+
readonly name: "participant";
|
|
369
|
+
readonly type: "address";
|
|
370
|
+
}, {
|
|
371
|
+
readonly internalType: "int256";
|
|
372
|
+
readonly name: "score";
|
|
373
|
+
readonly type: "int256";
|
|
374
|
+
}];
|
|
375
|
+
readonly internalType: "struct AVLTreeLib.ParticipantScore[]";
|
|
376
|
+
readonly name: "participants";
|
|
377
|
+
readonly type: "tuple[]";
|
|
347
378
|
}];
|
|
348
379
|
readonly stateMutability: "view";
|
|
349
380
|
readonly type: "function";
|
|
@@ -353,21 +384,62 @@ export declare const abi: readonly [{
|
|
|
353
384
|
readonly name: "count";
|
|
354
385
|
readonly type: "uint256";
|
|
355
386
|
}];
|
|
356
|
-
readonly name: "
|
|
387
|
+
readonly name: "getTopParticipantsInfo";
|
|
357
388
|
readonly outputs: readonly [{
|
|
358
|
-
readonly
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
389
|
+
readonly components: readonly [{
|
|
390
|
+
readonly internalType: "uint32";
|
|
391
|
+
readonly name: "nextAttemptTs";
|
|
392
|
+
readonly type: "uint32";
|
|
393
|
+
}, {
|
|
394
|
+
readonly internalType: "uint8";
|
|
395
|
+
readonly name: "totalDayAttempts";
|
|
396
|
+
readonly type: "uint8";
|
|
397
|
+
}, {
|
|
398
|
+
readonly internalType: "address";
|
|
399
|
+
readonly name: "referrer";
|
|
400
|
+
readonly type: "address";
|
|
401
|
+
}, {
|
|
402
|
+
readonly internalType: "uint256";
|
|
403
|
+
readonly name: "referralsCount";
|
|
404
|
+
readonly type: "uint256";
|
|
405
|
+
}, {
|
|
406
|
+
readonly internalType: "uint256";
|
|
407
|
+
readonly name: "totalAddedLinks";
|
|
408
|
+
readonly type: "uint256";
|
|
409
|
+
}, {
|
|
410
|
+
readonly internalType: "uint256";
|
|
411
|
+
readonly name: "totalDuplicatedLinks";
|
|
412
|
+
readonly type: "uint256";
|
|
413
|
+
}, {
|
|
414
|
+
readonly internalType: "uint256";
|
|
415
|
+
readonly name: "totalValidatedLinks";
|
|
416
|
+
readonly type: "uint256";
|
|
417
|
+
}, {
|
|
418
|
+
readonly internalType: "uint256";
|
|
419
|
+
readonly name: "totalInvalidLinks";
|
|
420
|
+
readonly type: "uint256";
|
|
421
|
+
}, {
|
|
422
|
+
readonly internalType: "address";
|
|
423
|
+
readonly name: "participant";
|
|
424
|
+
readonly type: "address";
|
|
425
|
+
}, {
|
|
426
|
+
readonly internalType: "uint256";
|
|
427
|
+
readonly name: "rank";
|
|
428
|
+
readonly type: "uint256";
|
|
429
|
+
}, {
|
|
430
|
+
readonly internalType: "int256";
|
|
431
|
+
readonly name: "score";
|
|
432
|
+
readonly type: "int256";
|
|
433
|
+
}];
|
|
434
|
+
readonly internalType: "struct Campaign.ParticipantInfo[]";
|
|
435
|
+
readonly name: "datas";
|
|
436
|
+
readonly type: "tuple[]";
|
|
365
437
|
}];
|
|
366
438
|
readonly stateMutability: "view";
|
|
367
439
|
readonly type: "function";
|
|
368
440
|
}, {
|
|
369
441
|
readonly inputs: readonly [];
|
|
370
|
-
readonly name: "
|
|
442
|
+
readonly name: "getTotalParticipants";
|
|
371
443
|
readonly outputs: readonly [{
|
|
372
444
|
readonly internalType: "uint256";
|
|
373
445
|
readonly name: "count";
|
|
@@ -381,14 +453,14 @@ export declare const abi: readonly [{
|
|
|
381
453
|
readonly name: "link";
|
|
382
454
|
readonly type: "string";
|
|
383
455
|
}];
|
|
384
|
-
readonly name: "
|
|
456
|
+
readonly name: "isLinkUnique";
|
|
385
457
|
readonly outputs: readonly [{
|
|
386
458
|
readonly internalType: "string";
|
|
387
459
|
readonly name: "clearedLink";
|
|
388
460
|
readonly type: "string";
|
|
389
461
|
}, {
|
|
390
462
|
readonly internalType: "bool";
|
|
391
|
-
readonly name: "
|
|
463
|
+
readonly name: "isUnique";
|
|
392
464
|
readonly type: "bool";
|
|
393
465
|
}];
|
|
394
466
|
readonly stateMutability: "view";
|
|
@@ -433,44 +505,6 @@ export declare const abi: readonly [{
|
|
|
433
505
|
}];
|
|
434
506
|
readonly stateMutability: "view";
|
|
435
507
|
readonly type: "function";
|
|
436
|
-
}, {
|
|
437
|
-
readonly inputs: readonly [{
|
|
438
|
-
readonly internalType: "address";
|
|
439
|
-
readonly name: "";
|
|
440
|
-
readonly type: "address";
|
|
441
|
-
}];
|
|
442
|
-
readonly name: "participantData";
|
|
443
|
-
readonly outputs: readonly [{
|
|
444
|
-
readonly internalType: "address";
|
|
445
|
-
readonly name: "referrer";
|
|
446
|
-
readonly type: "address";
|
|
447
|
-
}, {
|
|
448
|
-
readonly internalType: "uint8";
|
|
449
|
-
readonly name: "dayAttemptsCount";
|
|
450
|
-
readonly type: "uint8";
|
|
451
|
-
}, {
|
|
452
|
-
readonly internalType: "uint32";
|
|
453
|
-
readonly name: "resetAttemptsTime";
|
|
454
|
-
readonly type: "uint32";
|
|
455
|
-
}, {
|
|
456
|
-
readonly internalType: "uint256";
|
|
457
|
-
readonly name: "refferalsCount";
|
|
458
|
-
readonly type: "uint256";
|
|
459
|
-
}, {
|
|
460
|
-
readonly internalType: "uint256";
|
|
461
|
-
readonly name: "totalAddedLinksCount";
|
|
462
|
-
readonly type: "uint256";
|
|
463
|
-
}, {
|
|
464
|
-
readonly internalType: "uint256";
|
|
465
|
-
readonly name: "validLinksCount";
|
|
466
|
-
readonly type: "uint256";
|
|
467
|
-
}, {
|
|
468
|
-
readonly internalType: "uint256";
|
|
469
|
-
readonly name: "notValidLinksCount";
|
|
470
|
-
readonly type: "uint256";
|
|
471
|
-
}];
|
|
472
|
-
readonly stateMutability: "view";
|
|
473
|
-
readonly type: "function";
|
|
474
508
|
}, {
|
|
475
509
|
readonly inputs: readonly [];
|
|
476
510
|
readonly name: "renounceOwnership";
|