@super-protocol/sdk-js 3.15.3-beta.0 → 3.15.4-beta.0
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/RIGenerator.js +2 -2
- package/dist/cjs/TIIGenerator.js +4 -4
- package/dist/cjs/TeeInputGeneratorBase.d.ts +2 -2
- package/dist/cjs/TeeInputGeneratorBase.js +5 -5
- package/dist/cjs/contracts/abi.d.ts +686 -777
- package/dist/cjs/contracts/abi.js +893 -1005
- package/dist/cjs/index.d.ts +1 -0
- package/dist/cjs/index.js +5 -3
- package/dist/cjs/models/Provider.d.ts +1 -0
- package/dist/cjs/models/Provider.js +7 -1
- package/dist/cjs/models/TCB.d.ts +28 -1
- package/dist/cjs/models/TCB.js +61 -1
- package/dist/cjs/models/TeeOffer.d.ts +18 -3
- package/dist/cjs/models/TeeOffer.js +100 -14
- package/dist/cjs/staticModels/Consensus.d.ts +16 -5
- package/dist/cjs/staticModels/Consensus.js +86 -16
- package/dist/cjs/staticModels/TeeOffers.d.ts +6 -0
- package/dist/cjs/staticModels/TeeOffers.js +14 -3
- package/dist/cjs/tee/QuoteValidator.d.ts +46 -0
- package/dist/cjs/tee/QuoteValidator.js +456 -0
- package/dist/cjs/tee/TcbSerializer.d.ts +20 -0
- package/dist/cjs/tee/TcbSerializer.js +27 -0
- package/dist/cjs/tee/TeeBlockVerifier.d.ts +2 -7
- package/dist/cjs/tee/TeeBlockVerifier.js +18 -6
- package/dist/cjs/tee/TeeCertificateService.d.ts +1 -1
- package/dist/cjs/tee/TeeCertificateService.js +7 -4
- package/dist/cjs/tee/statuses.d.ts +7 -0
- package/dist/cjs/tee/statuses.js +10 -2
- package/dist/cjs/types/Consensus.d.ts +31 -5
- package/dist/cjs/types/Consensus.js +10 -2
- package/dist/cjs/utils/helper.d.ts +5 -3
- package/dist/cjs/utils/helper.js +34 -94
- package/dist/mjs/RIGenerator.js +2 -2
- package/dist/mjs/TIIGenerator.js +4 -4
- package/dist/mjs/TeeInputGeneratorBase.d.ts +2 -2
- package/dist/mjs/TeeInputGeneratorBase.js +5 -5
- package/dist/mjs/contracts/abi.d.ts +686 -777
- package/dist/mjs/contracts/abi.js +891 -1003
- package/dist/mjs/index.d.ts +1 -0
- package/dist/mjs/index.js +2 -1
- package/dist/mjs/models/Provider.d.ts +1 -0
- package/dist/mjs/models/Provider.js +7 -1
- package/dist/mjs/models/TCB.d.ts +28 -1
- package/dist/mjs/models/TCB.js +62 -2
- package/dist/mjs/models/TeeOffer.d.ts +18 -3
- package/dist/mjs/models/TeeOffer.js +95 -9
- package/dist/mjs/staticModels/Consensus.d.ts +16 -5
- package/dist/mjs/staticModels/Consensus.js +87 -17
- package/dist/mjs/staticModels/TeeOffers.d.ts +6 -0
- package/dist/mjs/staticModels/TeeOffers.js +15 -4
- package/dist/mjs/tee/QuoteValidator.d.ts +46 -0
- package/dist/mjs/tee/QuoteValidator.js +449 -0
- package/dist/mjs/tee/TcbSerializer.d.ts +20 -0
- package/dist/mjs/tee/TcbSerializer.js +23 -0
- package/dist/mjs/tee/TeeBlockVerifier.d.ts +2 -7
- package/dist/mjs/tee/TeeBlockVerifier.js +18 -6
- package/dist/mjs/tee/TeeCertificateService.d.ts +1 -1
- package/dist/mjs/tee/TeeCertificateService.js +7 -4
- package/dist/mjs/tee/statuses.d.ts +7 -0
- package/dist/mjs/tee/statuses.js +9 -1
- package/dist/mjs/types/Consensus.d.ts +31 -5
- package/dist/mjs/types/Consensus.js +9 -1
- package/dist/mjs/utils/helper.d.ts +5 -3
- package/dist/mjs/utils/helper.js +31 -93
- package/package.json +3 -3
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const TcbAdded: "TcbAdded";
|
|
1
|
+
export declare const TcbBenchmarkChanged: "TcbBenchmarkChanged";
|
|
2
|
+
export declare const TcbCompleted: "TcbCompleted";
|
|
3
|
+
export declare const TcbInitialized: "TcbInitialized";
|
|
4
|
+
export declare const TcbBanned: "TcbBanned";
|
|
6
5
|
export declare const DepositPartLocked: "DepositPartLocked";
|
|
7
6
|
export declare const DepositPartUnlocked: "DepositPartUnlocked";
|
|
8
7
|
export declare const DepositReplenished: "DepositReplenished";
|
|
@@ -64,7 +63,7 @@ export declare const OrderResourceCreated: "OrderResourceCreated";
|
|
|
64
63
|
export declare const OfferStorageRequestCanceled: "OfferStorageRequestCanceled";
|
|
65
64
|
export declare const OfferStorageRequestCreated: "OfferStorageRequestCreated";
|
|
66
65
|
export declare const SecretRequestCreated: "SecretRequestCreated";
|
|
67
|
-
export type AbiEvent = typeof
|
|
66
|
+
export type AbiEvent = typeof TcbBenchmarkChanged | typeof TcbCompleted | typeof TcbInitialized | typeof TcbBanned | typeof DepositPartLocked | typeof DepositPartUnlocked | typeof DepositReplenished | typeof DepositWithdrawn | typeof ProfitWithdrawn | typeof OfferCreated | typeof OfferDisabled | typeof OfferEnabled | typeof OfferVersionAdded | typeof OfferVersionDeleted | typeof SetValueOfferRestrictions | typeof TeeOfferCreated | typeof TeeOfferViolationRateChanged | typeof OrdersGroupCreated | typeof OrderCreated | typeof OrderStatusUpdated | typeof OrderAwaitingPaymentChanged | typeof OrderChangeWithdrawn | typeof OrderDepositRefilled | typeof OrderProfitWithdrawn | typeof OrderEncryptedResultUpdated | typeof OrderStarted | typeof OrderOptionsChangeRequested | typeof OrderOptionsChanged | typeof OrderSlotCountUpdateRequested | typeof OrderSlotCountUpdated | typeof RewardsClaimed | typeof SetValueOfferIgnored | typeof ProviderDepositTokenUpdated | typeof ProviderModified | typeof ProviderRegistered | typeof ProviderSecurityDepoRefilled | typeof ProviderSecurityDepoUnlocked | typeof ProviderViolationRateIncremented | typeof DepositConfiscated | typeof RewardConfiscated | typeof RewardTokenChanged | typeof StorageLocked | typeof TokenInfoUpdated | typeof TokenRemoved | typeof ValueRewardsEnabled | typeof OptionAdded | typeof OptionDeleted | typeof OptionUpdated | typeof TeeSlotAdded | typeof TeeSlotDeleted | typeof TeeSlotUpdated | typeof TcbRewardUnlocked | typeof WarningMessage | typeof ValueSlotAdded | typeof ValueSlotDeleted | typeof ValueSlotUpdated | typeof DiamondCut | typeof OwnershipTransferred | typeof LoaderSecretAccessPublicKeySessionUpdated | typeof LoaderSessionKeyUpdated | typeof OfferResourceCreated | typeof OrderResourceCreated | typeof OfferStorageRequestCanceled | typeof OfferStorageRequestCreated | typeof SecretRequestCreated;
|
|
68
67
|
export declare const abi: readonly [{
|
|
69
68
|
readonly inputs: readonly [{
|
|
70
69
|
readonly internalType: "uint256";
|
|
@@ -237,424 +236,416 @@ export declare const abi: readonly [{
|
|
|
237
236
|
readonly anonymous: false;
|
|
238
237
|
readonly inputs: readonly [{
|
|
239
238
|
readonly indexed: true;
|
|
240
|
-
readonly internalType: "
|
|
241
|
-
readonly name: "
|
|
242
|
-
readonly type: "
|
|
239
|
+
readonly internalType: "uint256";
|
|
240
|
+
readonly name: "tcbId";
|
|
241
|
+
readonly type: "uint256";
|
|
243
242
|
}, {
|
|
244
243
|
readonly indexed: true;
|
|
245
|
-
readonly internalType: "
|
|
246
|
-
readonly name: "
|
|
247
|
-
readonly type: "
|
|
244
|
+
readonly internalType: "address";
|
|
245
|
+
readonly name: "action";
|
|
246
|
+
readonly type: "address";
|
|
248
247
|
}];
|
|
249
|
-
readonly name: "
|
|
248
|
+
readonly name: "TcbBenchmarkChanged";
|
|
250
249
|
readonly type: "event";
|
|
251
250
|
}, {
|
|
252
251
|
readonly anonymous: false;
|
|
253
252
|
readonly inputs: readonly [{
|
|
254
253
|
readonly indexed: true;
|
|
255
|
-
readonly internalType: "
|
|
256
|
-
readonly name: "
|
|
257
|
-
readonly type: "
|
|
254
|
+
readonly internalType: "uint256";
|
|
255
|
+
readonly name: "tcbId";
|
|
256
|
+
readonly type: "uint256";
|
|
258
257
|
}, {
|
|
259
258
|
readonly indexed: true;
|
|
260
|
-
readonly internalType: "
|
|
261
|
-
readonly name: "
|
|
262
|
-
readonly type: "
|
|
259
|
+
readonly internalType: "address";
|
|
260
|
+
readonly name: "action";
|
|
261
|
+
readonly type: "address";
|
|
263
262
|
}];
|
|
264
|
-
readonly name: "
|
|
263
|
+
readonly name: "TcbCompleted";
|
|
265
264
|
readonly type: "event";
|
|
266
265
|
}, {
|
|
267
266
|
readonly anonymous: false;
|
|
268
267
|
readonly inputs: readonly [{
|
|
269
268
|
readonly indexed: true;
|
|
270
|
-
readonly internalType: "
|
|
271
|
-
readonly name: "
|
|
272
|
-
readonly type: "
|
|
269
|
+
readonly internalType: "uint256";
|
|
270
|
+
readonly name: "tcbId";
|
|
271
|
+
readonly type: "uint256";
|
|
273
272
|
}, {
|
|
274
273
|
readonly indexed: true;
|
|
275
|
-
readonly internalType: "
|
|
276
|
-
readonly name: "
|
|
277
|
-
readonly type: "
|
|
274
|
+
readonly internalType: "address";
|
|
275
|
+
readonly name: "action";
|
|
276
|
+
readonly type: "address";
|
|
278
277
|
}];
|
|
279
|
-
readonly name: "
|
|
278
|
+
readonly name: "TcbInitialized";
|
|
280
279
|
readonly type: "event";
|
|
281
280
|
}, {
|
|
282
|
-
readonly anonymous: false;
|
|
283
281
|
readonly inputs: readonly [{
|
|
284
|
-
readonly indexed: true;
|
|
285
282
|
readonly internalType: "uint256";
|
|
286
|
-
readonly name: "
|
|
283
|
+
readonly name: "tcbId";
|
|
287
284
|
readonly type: "uint256";
|
|
288
285
|
}];
|
|
289
|
-
readonly name: "
|
|
290
|
-
readonly
|
|
286
|
+
readonly name: "addTcbToSupply";
|
|
287
|
+
readonly outputs: readonly [];
|
|
288
|
+
readonly stateMutability: "nonpayable";
|
|
289
|
+
readonly type: "function";
|
|
290
|
+
}, {
|
|
291
|
+
readonly inputs: readonly [{
|
|
292
|
+
readonly internalType: "enum TcbVerifiedStatus[]";
|
|
293
|
+
readonly name: "marks";
|
|
294
|
+
readonly type: "uint8[]";
|
|
295
|
+
}, {
|
|
296
|
+
readonly internalType: "uint256";
|
|
297
|
+
readonly name: "tcbId";
|
|
298
|
+
readonly type: "uint256";
|
|
299
|
+
}];
|
|
300
|
+
readonly name: "applyTcbMarks";
|
|
301
|
+
readonly outputs: readonly [];
|
|
302
|
+
readonly stateMutability: "nonpayable";
|
|
303
|
+
readonly type: "function";
|
|
304
|
+
}, {
|
|
305
|
+
readonly inputs: readonly [{
|
|
306
|
+
readonly internalType: "uint256";
|
|
307
|
+
readonly name: "tcbId";
|
|
308
|
+
readonly type: "uint256";
|
|
309
|
+
}];
|
|
310
|
+
readonly name: "assignLastBlocksToCheck";
|
|
311
|
+
readonly outputs: readonly [];
|
|
312
|
+
readonly stateMutability: "nonpayable";
|
|
313
|
+
readonly type: "function";
|
|
314
|
+
}, {
|
|
315
|
+
readonly inputs: readonly [{
|
|
316
|
+
readonly internalType: "uint256";
|
|
317
|
+
readonly name: "tcbId";
|
|
318
|
+
readonly type: "uint256";
|
|
319
|
+
}];
|
|
320
|
+
readonly name: "assignSuspiciousBlocksToCheck";
|
|
321
|
+
readonly outputs: readonly [];
|
|
322
|
+
readonly stateMutability: "nonpayable";
|
|
323
|
+
readonly type: "function";
|
|
324
|
+
}, {
|
|
325
|
+
readonly inputs: readonly [{
|
|
326
|
+
readonly internalType: "uint256";
|
|
327
|
+
readonly name: "teeOfferId";
|
|
328
|
+
readonly type: "uint256";
|
|
329
|
+
}];
|
|
330
|
+
readonly name: "getActualTcbId";
|
|
331
|
+
readonly outputs: readonly [{
|
|
332
|
+
readonly internalType: "uint256";
|
|
333
|
+
readonly name: "";
|
|
334
|
+
readonly type: "uint256";
|
|
335
|
+
}];
|
|
336
|
+
readonly stateMutability: "view";
|
|
337
|
+
readonly type: "function";
|
|
291
338
|
}, {
|
|
292
339
|
readonly inputs: readonly [];
|
|
293
|
-
readonly name: "
|
|
340
|
+
readonly name: "getConsensusConstants";
|
|
294
341
|
readonly outputs: readonly [{
|
|
295
|
-
readonly internalType: "
|
|
296
|
-
readonly name: "
|
|
297
|
-
readonly type: "
|
|
342
|
+
readonly internalType: "uint8";
|
|
343
|
+
readonly name: "";
|
|
344
|
+
readonly type: "uint8";
|
|
298
345
|
}, {
|
|
299
|
-
readonly internalType: "
|
|
300
|
-
readonly name: "
|
|
301
|
-
readonly type: "
|
|
346
|
+
readonly internalType: "uint8";
|
|
347
|
+
readonly name: "";
|
|
348
|
+
readonly type: "uint8";
|
|
302
349
|
}, {
|
|
303
|
-
readonly internalType: "
|
|
304
|
-
readonly name: "
|
|
305
|
-
readonly type: "
|
|
350
|
+
readonly internalType: "uint8";
|
|
351
|
+
readonly name: "";
|
|
352
|
+
readonly type: "uint8";
|
|
353
|
+
}, {
|
|
354
|
+
readonly internalType: "uint8";
|
|
355
|
+
readonly name: "";
|
|
356
|
+
readonly type: "uint8";
|
|
357
|
+
}, {
|
|
358
|
+
readonly internalType: "uint8";
|
|
359
|
+
readonly name: "";
|
|
360
|
+
readonly type: "uint8";
|
|
361
|
+
}];
|
|
362
|
+
readonly stateMutability: "pure";
|
|
363
|
+
readonly type: "function";
|
|
364
|
+
}, {
|
|
365
|
+
readonly inputs: readonly [{
|
|
366
|
+
readonly internalType: "uint256";
|
|
367
|
+
readonly name: "teeOfferId";
|
|
368
|
+
readonly type: "uint256";
|
|
369
|
+
}];
|
|
370
|
+
readonly name: "getInitializedTcbId";
|
|
371
|
+
readonly outputs: readonly [{
|
|
372
|
+
readonly internalType: "uint256";
|
|
373
|
+
readonly name: "";
|
|
374
|
+
readonly type: "uint256";
|
|
375
|
+
}];
|
|
376
|
+
readonly stateMutability: "view";
|
|
377
|
+
readonly type: "function";
|
|
378
|
+
}, {
|
|
379
|
+
readonly inputs: readonly [];
|
|
380
|
+
readonly name: "getLastBlockTable";
|
|
381
|
+
readonly outputs: readonly [{
|
|
382
|
+
readonly internalType: "uint256[]";
|
|
383
|
+
readonly name: "";
|
|
384
|
+
readonly type: "uint256[]";
|
|
385
|
+
}];
|
|
386
|
+
readonly stateMutability: "view";
|
|
387
|
+
readonly type: "function";
|
|
388
|
+
}, {
|
|
389
|
+
readonly inputs: readonly [];
|
|
390
|
+
readonly name: "getLastBlockTableSize";
|
|
391
|
+
readonly outputs: readonly [{
|
|
392
|
+
readonly internalType: "uint256";
|
|
393
|
+
readonly name: "";
|
|
394
|
+
readonly type: "uint256";
|
|
395
|
+
}];
|
|
396
|
+
readonly stateMutability: "view";
|
|
397
|
+
readonly type: "function";
|
|
398
|
+
}, {
|
|
399
|
+
readonly inputs: readonly [];
|
|
400
|
+
readonly name: "getSuspiciousBlockTable";
|
|
401
|
+
readonly outputs: readonly [{
|
|
402
|
+
readonly internalType: "uint256[]";
|
|
403
|
+
readonly name: "";
|
|
404
|
+
readonly type: "uint256[]";
|
|
405
|
+
}];
|
|
406
|
+
readonly stateMutability: "view";
|
|
407
|
+
readonly type: "function";
|
|
408
|
+
}, {
|
|
409
|
+
readonly inputs: readonly [];
|
|
410
|
+
readonly name: "getSuspiciousBlockTableSize";
|
|
411
|
+
readonly outputs: readonly [{
|
|
412
|
+
readonly internalType: "uint256";
|
|
413
|
+
readonly name: "";
|
|
414
|
+
readonly type: "uint256";
|
|
306
415
|
}];
|
|
307
416
|
readonly stateMutability: "view";
|
|
308
417
|
readonly type: "function";
|
|
309
418
|
}, {
|
|
310
419
|
readonly inputs: readonly [{
|
|
311
420
|
readonly internalType: "uint256";
|
|
312
|
-
readonly name: "
|
|
421
|
+
readonly name: "tcbId";
|
|
313
422
|
readonly type: "uint256";
|
|
314
423
|
}];
|
|
315
|
-
readonly name: "
|
|
424
|
+
readonly name: "getTcbById";
|
|
316
425
|
readonly outputs: readonly [{
|
|
317
426
|
readonly components: readonly [{
|
|
318
|
-
readonly internalType: "
|
|
319
|
-
readonly name: "
|
|
320
|
-
readonly type: "
|
|
427
|
+
readonly internalType: "uint256";
|
|
428
|
+
readonly name: "previousTcb";
|
|
429
|
+
readonly type: "uint256";
|
|
321
430
|
}, {
|
|
322
|
-
readonly internalType: "
|
|
323
|
-
readonly name: "
|
|
324
|
-
readonly type: "
|
|
431
|
+
readonly internalType: "uint256";
|
|
432
|
+
readonly name: "lastBlocksTakenAmount";
|
|
433
|
+
readonly type: "uint256";
|
|
325
434
|
}, {
|
|
326
|
-
readonly internalType: "
|
|
327
|
-
readonly name: "
|
|
328
|
-
readonly type: "
|
|
435
|
+
readonly internalType: "uint256";
|
|
436
|
+
readonly name: "suspiciousBlocksTakenAmount";
|
|
437
|
+
readonly type: "uint256";
|
|
329
438
|
}, {
|
|
330
|
-
readonly internalType: "
|
|
331
|
-
readonly name: "
|
|
332
|
-
readonly type: "
|
|
439
|
+
readonly internalType: "uint256";
|
|
440
|
+
readonly name: "epochIndex";
|
|
441
|
+
readonly type: "uint256";
|
|
333
442
|
}, {
|
|
334
|
-
readonly internalType: "
|
|
335
|
-
readonly name: "
|
|
336
|
-
readonly type: "
|
|
443
|
+
readonly internalType: "uint64";
|
|
444
|
+
readonly name: "timeAdded";
|
|
445
|
+
readonly type: "uint64";
|
|
337
446
|
}, {
|
|
338
|
-
readonly internalType: "
|
|
339
|
-
readonly name: "
|
|
340
|
-
readonly type: "
|
|
447
|
+
readonly internalType: "enum TcbStatus";
|
|
448
|
+
readonly name: "status";
|
|
449
|
+
readonly type: "uint8";
|
|
341
450
|
}, {
|
|
342
|
-
readonly internalType: "
|
|
343
|
-
readonly name: "
|
|
344
|
-
readonly type: "
|
|
451
|
+
readonly internalType: "uint16";
|
|
452
|
+
readonly name: "negative";
|
|
453
|
+
readonly type: "uint16";
|
|
345
454
|
}, {
|
|
346
|
-
readonly internalType: "
|
|
347
|
-
readonly name: "
|
|
348
|
-
readonly type: "
|
|
455
|
+
readonly internalType: "uint16";
|
|
456
|
+
readonly name: "positive";
|
|
457
|
+
readonly type: "uint16";
|
|
349
458
|
}, {
|
|
350
|
-
readonly internalType: "
|
|
351
|
-
readonly name: "
|
|
352
|
-
readonly type: "
|
|
459
|
+
readonly internalType: "bool";
|
|
460
|
+
readonly name: "lastBlocksTaken";
|
|
461
|
+
readonly type: "bool";
|
|
462
|
+
}, {
|
|
463
|
+
readonly internalType: "bool";
|
|
464
|
+
readonly name: "suspiciousBlocksTaken";
|
|
465
|
+
readonly type: "bool";
|
|
466
|
+
}, {
|
|
467
|
+
readonly internalType: "bool";
|
|
468
|
+
readonly name: "checked";
|
|
469
|
+
readonly type: "bool";
|
|
353
470
|
}];
|
|
354
|
-
readonly internalType: "struct
|
|
355
|
-
readonly name: "";
|
|
471
|
+
readonly internalType: "struct Tcb";
|
|
472
|
+
readonly name: "response";
|
|
356
473
|
readonly type: "tuple";
|
|
357
474
|
}];
|
|
358
475
|
readonly stateMutability: "view";
|
|
359
476
|
readonly type: "function";
|
|
477
|
+
}, {
|
|
478
|
+
readonly inputs: readonly [];
|
|
479
|
+
readonly name: "getTcbsCount";
|
|
480
|
+
readonly outputs: readonly [{
|
|
481
|
+
readonly internalType: "uint256";
|
|
482
|
+
readonly name: "";
|
|
483
|
+
readonly type: "uint256";
|
|
484
|
+
}];
|
|
485
|
+
readonly stateMutability: "view";
|
|
486
|
+
readonly type: "function";
|
|
360
487
|
}, {
|
|
361
488
|
readonly inputs: readonly [{
|
|
362
|
-
readonly internalType: "
|
|
363
|
-
readonly name: "
|
|
364
|
-
readonly type: "
|
|
365
|
-
}, {
|
|
366
|
-
readonly internalType: "bytes32";
|
|
367
|
-
readonly name: "mrEnclave";
|
|
368
|
-
readonly type: "bytes32";
|
|
369
|
-
}, {
|
|
370
|
-
readonly internalType: "bytes32";
|
|
371
|
-
readonly name: "mrSigner";
|
|
372
|
-
readonly type: "bytes32";
|
|
489
|
+
readonly internalType: "uint256[]";
|
|
490
|
+
readonly name: "tcbIds";
|
|
491
|
+
readonly type: "uint256[]";
|
|
373
492
|
}];
|
|
374
|
-
readonly name: "
|
|
493
|
+
readonly name: "getTcbsEpochIndex";
|
|
375
494
|
readonly outputs: readonly [{
|
|
376
|
-
readonly internalType: "
|
|
377
|
-
readonly name: "";
|
|
378
|
-
readonly type: "
|
|
495
|
+
readonly internalType: "uint256[]";
|
|
496
|
+
readonly name: "epochIndexes";
|
|
497
|
+
readonly type: "uint256[]";
|
|
379
498
|
}];
|
|
380
499
|
readonly stateMutability: "view";
|
|
381
500
|
readonly type: "function";
|
|
382
501
|
}, {
|
|
383
502
|
readonly inputs: readonly [{
|
|
503
|
+
readonly internalType: "uint256[]";
|
|
504
|
+
readonly name: "tcbIds";
|
|
505
|
+
readonly type: "uint256[]";
|
|
506
|
+
}];
|
|
507
|
+
readonly name: "getTcbsPublicData";
|
|
508
|
+
readonly outputs: readonly [{
|
|
384
509
|
readonly components: readonly [{
|
|
385
|
-
readonly internalType: "
|
|
386
|
-
readonly name: "
|
|
387
|
-
readonly type: "
|
|
510
|
+
readonly internalType: "uint256[]";
|
|
511
|
+
readonly name: "checkingTcbIds";
|
|
512
|
+
readonly type: "uint256[]";
|
|
388
513
|
}, {
|
|
389
|
-
readonly internalType: "
|
|
390
|
-
readonly name: "
|
|
391
|
-
readonly type: "
|
|
392
|
-
}];
|
|
393
|
-
readonly internalType: "struct BytesBlacklist[]";
|
|
394
|
-
readonly name: "serialNumberChanges";
|
|
395
|
-
readonly type: "tuple[]";
|
|
396
|
-
}, {
|
|
397
|
-
readonly components: readonly [{
|
|
398
|
-
readonly internalType: "bytes32";
|
|
399
|
-
readonly name: "item";
|
|
400
|
-
readonly type: "bytes32";
|
|
514
|
+
readonly internalType: "enum TcbVerifiedStatus[]";
|
|
515
|
+
readonly name: "checkingTcbMarks";
|
|
516
|
+
readonly type: "uint8[]";
|
|
401
517
|
}, {
|
|
402
|
-
readonly internalType: "bool";
|
|
403
|
-
readonly name: "isBlacklisted";
|
|
404
|
-
readonly type: "bool";
|
|
405
|
-
}];
|
|
406
|
-
readonly internalType: "struct Bytes32Blacklist[]";
|
|
407
|
-
readonly name: "mrEnclaveChanges";
|
|
408
|
-
readonly type: "tuple[]";
|
|
409
|
-
}, {
|
|
410
|
-
readonly components: readonly [{
|
|
411
518
|
readonly internalType: "bytes32";
|
|
412
|
-
readonly name: "
|
|
519
|
+
readonly name: "deviceId";
|
|
413
520
|
readonly type: "bytes32";
|
|
414
521
|
}, {
|
|
415
|
-
readonly internalType: "
|
|
416
|
-
readonly name: "
|
|
417
|
-
readonly type: "
|
|
522
|
+
readonly internalType: "string";
|
|
523
|
+
readonly name: "properties";
|
|
524
|
+
readonly type: "string";
|
|
418
525
|
}];
|
|
419
|
-
readonly internalType: "struct
|
|
420
|
-
readonly name: "
|
|
526
|
+
readonly internalType: "struct TcbPublicData[]";
|
|
527
|
+
readonly name: "";
|
|
421
528
|
readonly type: "tuple[]";
|
|
422
529
|
}];
|
|
423
|
-
readonly
|
|
424
|
-
readonly outputs: readonly [];
|
|
425
|
-
readonly stateMutability: "nonpayable";
|
|
530
|
+
readonly stateMutability: "view";
|
|
426
531
|
readonly type: "function";
|
|
427
532
|
}, {
|
|
428
533
|
readonly inputs: readonly [{
|
|
534
|
+
readonly internalType: "uint256[]";
|
|
535
|
+
readonly name: "tcbIds";
|
|
536
|
+
readonly type: "uint256[]";
|
|
537
|
+
}];
|
|
538
|
+
readonly name: "getTcbsUtilityData";
|
|
539
|
+
readonly outputs: readonly [{
|
|
429
540
|
readonly components: readonly [{
|
|
430
|
-
readonly internalType: "
|
|
431
|
-
readonly name: "
|
|
432
|
-
readonly type: "
|
|
433
|
-
}, {
|
|
434
|
-
readonly internalType: "bytes";
|
|
435
|
-
readonly name: "expirationDate";
|
|
436
|
-
readonly type: "bytes";
|
|
437
|
-
}, {
|
|
438
|
-
readonly internalType: "bytes";
|
|
439
|
-
readonly name: "ca";
|
|
440
|
-
readonly type: "bytes";
|
|
441
|
-
}, {
|
|
442
|
-
readonly internalType: "bytes32";
|
|
443
|
-
readonly name: "userData";
|
|
444
|
-
readonly type: "bytes32";
|
|
445
|
-
}, {
|
|
446
|
-
readonly internalType: "bytes";
|
|
447
|
-
readonly name: "publicKey";
|
|
448
|
-
readonly type: "bytes";
|
|
449
|
-
}, {
|
|
450
|
-
readonly internalType: "bytes";
|
|
451
|
-
readonly name: "serialNumber";
|
|
452
|
-
readonly type: "bytes";
|
|
453
|
-
}, {
|
|
454
|
-
readonly internalType: "bytes32";
|
|
455
|
-
readonly name: "mrEnclave";
|
|
456
|
-
readonly type: "bytes32";
|
|
541
|
+
readonly internalType: "uint256";
|
|
542
|
+
readonly name: "teeOfferId";
|
|
543
|
+
readonly type: "uint256";
|
|
457
544
|
}, {
|
|
458
|
-
readonly internalType: "
|
|
459
|
-
readonly name: "
|
|
460
|
-
readonly type: "
|
|
545
|
+
readonly internalType: "string";
|
|
546
|
+
readonly name: "pubKey";
|
|
547
|
+
readonly type: "string";
|
|
461
548
|
}, {
|
|
462
|
-
readonly internalType: "
|
|
463
|
-
readonly name: "
|
|
464
|
-
readonly type: "
|
|
549
|
+
readonly internalType: "string";
|
|
550
|
+
readonly name: "quote";
|
|
551
|
+
readonly type: "string";
|
|
465
552
|
}];
|
|
466
|
-
readonly internalType: "struct
|
|
467
|
-
readonly name: "
|
|
468
|
-
readonly type: "tuple";
|
|
553
|
+
readonly internalType: "struct TcbUtilityData[]";
|
|
554
|
+
readonly name: "";
|
|
555
|
+
readonly type: "tuple[]";
|
|
469
556
|
}];
|
|
470
|
-
readonly
|
|
557
|
+
readonly stateMutability: "view";
|
|
558
|
+
readonly type: "function";
|
|
559
|
+
}, {
|
|
560
|
+
readonly inputs: readonly [{
|
|
561
|
+
readonly internalType: "uint256";
|
|
562
|
+
readonly name: "teeOfferId";
|
|
563
|
+
readonly type: "uint256";
|
|
564
|
+
}, {
|
|
565
|
+
readonly internalType: "bytes32";
|
|
566
|
+
readonly name: "newDeviceId";
|
|
567
|
+
readonly type: "bytes32";
|
|
568
|
+
}];
|
|
569
|
+
readonly name: "initializeTcb";
|
|
471
570
|
readonly outputs: readonly [];
|
|
472
571
|
readonly stateMutability: "nonpayable";
|
|
473
572
|
readonly type: "function";
|
|
474
573
|
}, {
|
|
475
|
-
readonly inputs: readonly [
|
|
476
|
-
readonly name: "totalRootCertificates";
|
|
477
|
-
readonly outputs: readonly [{
|
|
574
|
+
readonly inputs: readonly [{
|
|
478
575
|
readonly internalType: "uint256";
|
|
479
|
-
readonly name: "";
|
|
576
|
+
readonly name: "offerId";
|
|
480
577
|
readonly type: "uint256";
|
|
481
578
|
}];
|
|
579
|
+
readonly name: "isBenchmarkChangedByLastBlock";
|
|
580
|
+
readonly outputs: readonly [{
|
|
581
|
+
readonly internalType: "bool";
|
|
582
|
+
readonly name: "";
|
|
583
|
+
readonly type: "bool";
|
|
584
|
+
}];
|
|
482
585
|
readonly stateMutability: "view";
|
|
483
586
|
readonly type: "function";
|
|
484
587
|
}, {
|
|
485
588
|
readonly inputs: readonly [{
|
|
486
|
-
readonly
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
readonly type: "bytes[]";
|
|
490
|
-
}, {
|
|
491
|
-
readonly internalType: "bytes";
|
|
492
|
-
readonly name: "expirationDate";
|
|
493
|
-
readonly type: "bytes";
|
|
494
|
-
}, {
|
|
495
|
-
readonly internalType: "bytes";
|
|
496
|
-
readonly name: "ca";
|
|
497
|
-
readonly type: "bytes";
|
|
498
|
-
}, {
|
|
499
|
-
readonly internalType: "bytes32";
|
|
500
|
-
readonly name: "userData";
|
|
501
|
-
readonly type: "bytes32";
|
|
502
|
-
}, {
|
|
503
|
-
readonly internalType: "bytes";
|
|
504
|
-
readonly name: "publicKey";
|
|
505
|
-
readonly type: "bytes";
|
|
506
|
-
}, {
|
|
507
|
-
readonly internalType: "bytes";
|
|
508
|
-
readonly name: "serialNumber";
|
|
509
|
-
readonly type: "bytes";
|
|
510
|
-
}, {
|
|
511
|
-
readonly internalType: "bytes32";
|
|
512
|
-
readonly name: "mrEnclave";
|
|
513
|
-
readonly type: "bytes32";
|
|
514
|
-
}, {
|
|
515
|
-
readonly internalType: "bytes32";
|
|
516
|
-
readonly name: "mrSigner";
|
|
517
|
-
readonly type: "bytes32";
|
|
518
|
-
}, {
|
|
519
|
-
readonly internalType: "bytes";
|
|
520
|
-
readonly name: "signature";
|
|
521
|
-
readonly type: "bytes";
|
|
522
|
-
}];
|
|
523
|
-
readonly internalType: "struct ChunkedX509Cert";
|
|
524
|
-
readonly name: "cert";
|
|
525
|
-
readonly type: "tuple";
|
|
589
|
+
readonly internalType: "uint256";
|
|
590
|
+
readonly name: "teeOfferId";
|
|
591
|
+
readonly type: "uint256";
|
|
526
592
|
}, {
|
|
527
|
-
readonly internalType: "bytes";
|
|
528
|
-
readonly name: "caPubKey";
|
|
529
|
-
readonly type: "bytes";
|
|
530
|
-
}];
|
|
531
|
-
readonly name: "verifyCert";
|
|
532
|
-
readonly outputs: readonly [{
|
|
533
593
|
readonly internalType: "bytes32";
|
|
534
|
-
readonly name: "
|
|
594
|
+
readonly name: "deviceId";
|
|
535
595
|
readonly type: "bytes32";
|
|
536
596
|
}];
|
|
597
|
+
readonly name: "isTcbCreationAvailable";
|
|
598
|
+
readonly outputs: readonly [{
|
|
599
|
+
readonly internalType: "bool";
|
|
600
|
+
readonly name: "offerNotBlocked";
|
|
601
|
+
readonly type: "bool";
|
|
602
|
+
}, {
|
|
603
|
+
readonly internalType: "bool";
|
|
604
|
+
readonly name: "newEpochStarted";
|
|
605
|
+
readonly type: "bool";
|
|
606
|
+
}, {
|
|
607
|
+
readonly internalType: "bool";
|
|
608
|
+
readonly name: "halfEpochPassed";
|
|
609
|
+
readonly type: "bool";
|
|
610
|
+
}, {
|
|
611
|
+
readonly internalType: "bool";
|
|
612
|
+
readonly name: "benchmarkVerified";
|
|
613
|
+
readonly type: "bool";
|
|
614
|
+
}];
|
|
537
615
|
readonly stateMutability: "view";
|
|
538
616
|
readonly type: "function";
|
|
539
617
|
}, {
|
|
540
618
|
readonly inputs: readonly [{
|
|
541
|
-
readonly components: readonly [{
|
|
542
|
-
readonly internalType: "bytes[]";
|
|
543
|
-
readonly name: "nonSerializedParts";
|
|
544
|
-
readonly type: "bytes[]";
|
|
545
|
-
}, {
|
|
546
|
-
readonly internalType: "bytes";
|
|
547
|
-
readonly name: "expirationDate";
|
|
548
|
-
readonly type: "bytes";
|
|
549
|
-
}, {
|
|
550
|
-
readonly internalType: "bytes";
|
|
551
|
-
readonly name: "ca";
|
|
552
|
-
readonly type: "bytes";
|
|
553
|
-
}, {
|
|
554
|
-
readonly internalType: "bytes32";
|
|
555
|
-
readonly name: "userData";
|
|
556
|
-
readonly type: "bytes32";
|
|
557
|
-
}, {
|
|
558
|
-
readonly internalType: "bytes";
|
|
559
|
-
readonly name: "publicKey";
|
|
560
|
-
readonly type: "bytes";
|
|
561
|
-
}, {
|
|
562
|
-
readonly internalType: "bytes";
|
|
563
|
-
readonly name: "serialNumber";
|
|
564
|
-
readonly type: "bytes";
|
|
565
|
-
}, {
|
|
566
|
-
readonly internalType: "bytes32";
|
|
567
|
-
readonly name: "mrEnclave";
|
|
568
|
-
readonly type: "bytes32";
|
|
569
|
-
}, {
|
|
570
|
-
readonly internalType: "bytes32";
|
|
571
|
-
readonly name: "mrSigner";
|
|
572
|
-
readonly type: "bytes32";
|
|
573
|
-
}, {
|
|
574
|
-
readonly internalType: "bytes";
|
|
575
|
-
readonly name: "signature";
|
|
576
|
-
readonly type: "bytes";
|
|
577
|
-
}];
|
|
578
|
-
readonly internalType: "struct ChunkedX509Cert[]";
|
|
579
|
-
readonly name: "certsChain";
|
|
580
|
-
readonly type: "tuple[]";
|
|
581
|
-
}, {
|
|
582
619
|
readonly internalType: "uint256";
|
|
583
|
-
readonly name: "
|
|
620
|
+
readonly name: "tcbId";
|
|
584
621
|
readonly type: "uint256";
|
|
585
622
|
}];
|
|
586
|
-
readonly name: "
|
|
623
|
+
readonly name: "isTcbVerified";
|
|
587
624
|
readonly outputs: readonly [{
|
|
588
|
-
readonly internalType: "
|
|
589
|
-
readonly name: "
|
|
590
|
-
readonly type: "
|
|
625
|
+
readonly internalType: "bool";
|
|
626
|
+
readonly name: "";
|
|
627
|
+
readonly type: "bool";
|
|
591
628
|
}];
|
|
592
629
|
readonly stateMutability: "view";
|
|
593
630
|
readonly type: "function";
|
|
594
631
|
}, {
|
|
595
|
-
readonly anonymous: false;
|
|
596
632
|
readonly inputs: readonly [{
|
|
597
|
-
readonly indexed: true;
|
|
598
633
|
readonly internalType: "uint256";
|
|
599
|
-
readonly name: "
|
|
634
|
+
readonly name: "offerId";
|
|
600
635
|
readonly type: "uint256";
|
|
601
|
-
}, {
|
|
602
|
-
readonly indexed: true;
|
|
603
|
-
readonly internalType: "address";
|
|
604
|
-
readonly name: "action";
|
|
605
|
-
readonly type: "address";
|
|
606
636
|
}];
|
|
607
|
-
readonly name: "
|
|
608
|
-
readonly
|
|
637
|
+
readonly name: "isTeeOfferVerified";
|
|
638
|
+
readonly outputs: readonly [{
|
|
639
|
+
readonly internalType: "bool";
|
|
640
|
+
readonly name: "";
|
|
641
|
+
readonly type: "bool";
|
|
642
|
+
}];
|
|
643
|
+
readonly stateMutability: "view";
|
|
644
|
+
readonly type: "function";
|
|
609
645
|
}, {
|
|
610
646
|
readonly inputs: readonly [{
|
|
611
|
-
readonly components: readonly [{
|
|
612
|
-
readonly internalType: "bytes[]";
|
|
613
|
-
readonly name: "nonSerializedParts";
|
|
614
|
-
readonly type: "bytes[]";
|
|
615
|
-
}, {
|
|
616
|
-
readonly internalType: "bytes";
|
|
617
|
-
readonly name: "expirationDate";
|
|
618
|
-
readonly type: "bytes";
|
|
619
|
-
}, {
|
|
620
|
-
readonly internalType: "bytes";
|
|
621
|
-
readonly name: "ca";
|
|
622
|
-
readonly type: "bytes";
|
|
623
|
-
}, {
|
|
624
|
-
readonly internalType: "bytes32";
|
|
625
|
-
readonly name: "userData";
|
|
626
|
-
readonly type: "bytes32";
|
|
627
|
-
}, {
|
|
628
|
-
readonly internalType: "bytes";
|
|
629
|
-
readonly name: "publicKey";
|
|
630
|
-
readonly type: "bytes";
|
|
631
|
-
}, {
|
|
632
|
-
readonly internalType: "bytes";
|
|
633
|
-
readonly name: "serialNumber";
|
|
634
|
-
readonly type: "bytes";
|
|
635
|
-
}, {
|
|
636
|
-
readonly internalType: "bytes32";
|
|
637
|
-
readonly name: "mrEnclave";
|
|
638
|
-
readonly type: "bytes32";
|
|
639
|
-
}, {
|
|
640
|
-
readonly internalType: "bytes32";
|
|
641
|
-
readonly name: "mrSigner";
|
|
642
|
-
readonly type: "bytes32";
|
|
643
|
-
}, {
|
|
644
|
-
readonly internalType: "bytes";
|
|
645
|
-
readonly name: "signature";
|
|
646
|
-
readonly type: "bytes";
|
|
647
|
-
}];
|
|
648
|
-
readonly internalType: "struct ChunkedX509Cert[]";
|
|
649
|
-
readonly name: "certsChain";
|
|
650
|
-
readonly type: "tuple[]";
|
|
651
|
-
}, {
|
|
652
|
-
readonly internalType: "uint256";
|
|
653
|
-
readonly name: "rootCertId";
|
|
654
|
-
readonly type: "uint256";
|
|
655
|
-
}, {
|
|
656
647
|
readonly internalType: "uint256";
|
|
657
|
-
readonly name: "
|
|
648
|
+
readonly name: "tcbId";
|
|
658
649
|
readonly type: "uint256";
|
|
659
650
|
}, {
|
|
660
651
|
readonly components: readonly [{
|
|
@@ -677,10 +668,6 @@ export declare const abi: readonly [{
|
|
|
677
668
|
readonly internalType: "uint64";
|
|
678
669
|
readonly name: "networkSize";
|
|
679
670
|
readonly type: "uint64";
|
|
680
|
-
}, {
|
|
681
|
-
readonly internalType: "uint64";
|
|
682
|
-
readonly name: "vramSize";
|
|
683
|
-
readonly type: "uint64";
|
|
684
671
|
}, {
|
|
685
672
|
readonly internalType: "uint32";
|
|
686
673
|
readonly name: "cpuMark";
|
|
@@ -701,234 +688,111 @@ export declare const abi: readonly [{
|
|
|
701
688
|
readonly internalType: "uint32";
|
|
702
689
|
readonly name: "networkMark";
|
|
703
690
|
readonly type: "uint32";
|
|
704
|
-
}, {
|
|
705
|
-
readonly components: readonly [{
|
|
706
|
-
readonly internalType: "bytes16";
|
|
707
|
-
readonly name: "vendorId";
|
|
708
|
-
readonly type: "bytes16";
|
|
709
|
-
}, {
|
|
710
|
-
readonly internalType: "uint128";
|
|
711
|
-
readonly name: "cpuFamily";
|
|
712
|
-
readonly type: "uint128";
|
|
713
|
-
}, {
|
|
714
|
-
readonly internalType: "uint128";
|
|
715
|
-
readonly name: "model";
|
|
716
|
-
readonly type: "uint128";
|
|
717
|
-
}, {
|
|
718
|
-
readonly internalType: "bytes16";
|
|
719
|
-
readonly name: "modelName";
|
|
720
|
-
readonly type: "bytes16";
|
|
721
|
-
}, {
|
|
722
|
-
readonly internalType: "uint32";
|
|
723
|
-
readonly name: "totalPhysicalCores";
|
|
724
|
-
readonly type: "uint32";
|
|
725
|
-
}, {
|
|
726
|
-
readonly internalType: "uint32";
|
|
727
|
-
readonly name: "baseFreq";
|
|
728
|
-
readonly type: "uint32";
|
|
729
|
-
}, {
|
|
730
|
-
readonly internalType: "uint32";
|
|
731
|
-
readonly name: "maxFreq";
|
|
732
|
-
readonly type: "uint32";
|
|
733
|
-
}];
|
|
734
|
-
readonly internalType: "struct CpuInfo";
|
|
735
|
-
readonly name: "cpuInfo";
|
|
736
|
-
readonly type: "tuple";
|
|
737
691
|
}];
|
|
738
|
-
readonly internalType: "struct
|
|
692
|
+
readonly internalType: "struct ConsensusBenchmark";
|
|
739
693
|
readonly name: "benchmark";
|
|
740
694
|
readonly type: "tuple";
|
|
695
|
+
}, {
|
|
696
|
+
readonly internalType: "string";
|
|
697
|
+
readonly name: "properties";
|
|
698
|
+
readonly type: "string";
|
|
699
|
+
}, {
|
|
700
|
+
readonly internalType: "bytes32";
|
|
701
|
+
readonly name: "deviceId";
|
|
702
|
+
readonly type: "bytes32";
|
|
703
|
+
}, {
|
|
704
|
+
readonly internalType: "string";
|
|
705
|
+
readonly name: "quote";
|
|
706
|
+
readonly type: "string";
|
|
741
707
|
}, {
|
|
742
708
|
readonly internalType: "string";
|
|
743
709
|
readonly name: "pubKey";
|
|
744
710
|
readonly type: "string";
|
|
745
711
|
}];
|
|
746
|
-
readonly name: "
|
|
712
|
+
readonly name: "setTcbData";
|
|
747
713
|
readonly outputs: readonly [];
|
|
748
714
|
readonly stateMutability: "nonpayable";
|
|
749
715
|
readonly type: "function";
|
|
750
716
|
}, {
|
|
751
717
|
readonly inputs: readonly [{
|
|
752
|
-
readonly internalType: "
|
|
753
|
-
readonly name: "
|
|
754
|
-
readonly type: "
|
|
755
|
-
}
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
readonly
|
|
759
|
-
readonly name: "";
|
|
760
|
-
readonly type: "bool";
|
|
718
|
+
readonly internalType: "uint256";
|
|
719
|
+
readonly name: "tcbId";
|
|
720
|
+
readonly type: "uint256";
|
|
721
|
+
}, {
|
|
722
|
+
readonly internalType: "enum TcbStatus";
|
|
723
|
+
readonly name: "status";
|
|
724
|
+
readonly type: "uint8";
|
|
761
725
|
}];
|
|
762
|
-
readonly
|
|
726
|
+
readonly name: "setTcbStatus";
|
|
727
|
+
readonly outputs: readonly [];
|
|
728
|
+
readonly stateMutability: "nonpayable";
|
|
763
729
|
readonly type: "function";
|
|
764
730
|
}, {
|
|
765
731
|
readonly inputs: readonly [{
|
|
732
|
+
readonly internalType: "uint8";
|
|
733
|
+
readonly name: "bits";
|
|
734
|
+
readonly type: "uint8";
|
|
735
|
+
}, {
|
|
766
736
|
readonly internalType: "uint256";
|
|
767
|
-
readonly name: "
|
|
737
|
+
readonly name: "value";
|
|
768
738
|
readonly type: "uint256";
|
|
769
739
|
}];
|
|
770
|
-
readonly name: "
|
|
771
|
-
readonly
|
|
740
|
+
readonly name: "SafeCastOverflowedUintDowncast";
|
|
741
|
+
readonly type: "error";
|
|
742
|
+
}, {
|
|
743
|
+
readonly anonymous: false;
|
|
744
|
+
readonly inputs: readonly [{
|
|
745
|
+
readonly indexed: false;
|
|
772
746
|
readonly internalType: "uint256";
|
|
773
|
-
readonly name: "";
|
|
747
|
+
readonly name: "tcbId";
|
|
774
748
|
readonly type: "uint256";
|
|
749
|
+
}, {
|
|
750
|
+
readonly indexed: true;
|
|
751
|
+
readonly internalType: "address";
|
|
752
|
+
readonly name: "provider";
|
|
753
|
+
readonly type: "address";
|
|
775
754
|
}];
|
|
776
|
-
readonly
|
|
777
|
-
readonly type: "
|
|
755
|
+
readonly name: "TcbBanned";
|
|
756
|
+
readonly type: "event";
|
|
778
757
|
}, {
|
|
779
758
|
readonly inputs: readonly [{
|
|
780
759
|
readonly internalType: "uint256";
|
|
781
760
|
readonly name: "tcbId";
|
|
782
761
|
readonly type: "uint256";
|
|
783
762
|
}];
|
|
784
|
-
readonly name: "
|
|
785
|
-
readonly outputs: readonly [
|
|
786
|
-
|
|
787
|
-
readonly internalType: "uint256";
|
|
788
|
-
readonly name: "previousTcb";
|
|
789
|
-
readonly type: "uint256";
|
|
790
|
-
}, {
|
|
791
|
-
readonly internalType: "uint256";
|
|
792
|
-
readonly name: "lastBlocksTakenAmount_DEPRECATED";
|
|
793
|
-
readonly type: "uint256";
|
|
794
|
-
}, {
|
|
795
|
-
readonly internalType: "uint256";
|
|
796
|
-
readonly name: "suspiciousBlocksTakenAmount_DEPRECATED";
|
|
797
|
-
readonly type: "uint256";
|
|
798
|
-
}, {
|
|
799
|
-
readonly internalType: "uint256";
|
|
800
|
-
readonly name: "epochIndex";
|
|
801
|
-
readonly type: "uint256";
|
|
802
|
-
}, {
|
|
803
|
-
readonly internalType: "uint64";
|
|
804
|
-
readonly name: "timeAdded";
|
|
805
|
-
readonly type: "uint64";
|
|
806
|
-
}, {
|
|
807
|
-
readonly internalType: "enum TcbStatus";
|
|
808
|
-
readonly name: "status";
|
|
809
|
-
readonly type: "uint8";
|
|
810
|
-
}, {
|
|
811
|
-
readonly internalType: "uint16";
|
|
812
|
-
readonly name: "negative_DEPRECATED";
|
|
813
|
-
readonly type: "uint16";
|
|
814
|
-
}, {
|
|
815
|
-
readonly internalType: "uint16";
|
|
816
|
-
readonly name: "positive_DEPRECATED";
|
|
817
|
-
readonly type: "uint16";
|
|
818
|
-
}, {
|
|
819
|
-
readonly internalType: "bool";
|
|
820
|
-
readonly name: "lastBlocksTaken_DEPRECATED";
|
|
821
|
-
readonly type: "bool";
|
|
822
|
-
}, {
|
|
823
|
-
readonly internalType: "bool";
|
|
824
|
-
readonly name: "suspiciousBlocksTaken_DEPRECATED";
|
|
825
|
-
readonly type: "bool";
|
|
826
|
-
}, {
|
|
827
|
-
readonly internalType: "bool";
|
|
828
|
-
readonly name: "checked_DEPRECATED";
|
|
829
|
-
readonly type: "bool";
|
|
830
|
-
}, {
|
|
831
|
-
readonly components: readonly [{
|
|
832
|
-
readonly internalType: "bytes[]";
|
|
833
|
-
readonly name: "nonSerializedParts";
|
|
834
|
-
readonly type: "bytes[]";
|
|
835
|
-
}, {
|
|
836
|
-
readonly internalType: "bytes";
|
|
837
|
-
readonly name: "expirationDate";
|
|
838
|
-
readonly type: "bytes";
|
|
839
|
-
}, {
|
|
840
|
-
readonly internalType: "bytes";
|
|
841
|
-
readonly name: "ca";
|
|
842
|
-
readonly type: "bytes";
|
|
843
|
-
}, {
|
|
844
|
-
readonly internalType: "bytes32";
|
|
845
|
-
readonly name: "userData";
|
|
846
|
-
readonly type: "bytes32";
|
|
847
|
-
}, {
|
|
848
|
-
readonly internalType: "bytes";
|
|
849
|
-
readonly name: "publicKey";
|
|
850
|
-
readonly type: "bytes";
|
|
851
|
-
}, {
|
|
852
|
-
readonly internalType: "bytes";
|
|
853
|
-
readonly name: "serialNumber";
|
|
854
|
-
readonly type: "bytes";
|
|
855
|
-
}, {
|
|
856
|
-
readonly internalType: "bytes32";
|
|
857
|
-
readonly name: "mrEnclave";
|
|
858
|
-
readonly type: "bytes32";
|
|
859
|
-
}, {
|
|
860
|
-
readonly internalType: "bytes32";
|
|
861
|
-
readonly name: "mrSigner";
|
|
862
|
-
readonly type: "bytes32";
|
|
863
|
-
}, {
|
|
864
|
-
readonly internalType: "bytes";
|
|
865
|
-
readonly name: "signature";
|
|
866
|
-
readonly type: "bytes";
|
|
867
|
-
}];
|
|
868
|
-
readonly internalType: "struct ChunkedX509Cert[]";
|
|
869
|
-
readonly name: "certsChain";
|
|
870
|
-
readonly type: "tuple[]";
|
|
871
|
-
}, {
|
|
872
|
-
readonly internalType: "uint256";
|
|
873
|
-
readonly name: "rootCertId";
|
|
874
|
-
readonly type: "uint256";
|
|
875
|
-
}];
|
|
876
|
-
readonly internalType: "struct Tcb";
|
|
877
|
-
readonly name: "response";
|
|
878
|
-
readonly type: "tuple";
|
|
879
|
-
}];
|
|
880
|
-
readonly stateMutability: "view";
|
|
763
|
+
readonly name: "addLastBlock";
|
|
764
|
+
readonly outputs: readonly [];
|
|
765
|
+
readonly stateMutability: "nonpayable";
|
|
881
766
|
readonly type: "function";
|
|
882
767
|
}, {
|
|
883
|
-
readonly inputs: readonly [
|
|
884
|
-
readonly name: "getTcbsCount";
|
|
885
|
-
readonly outputs: readonly [{
|
|
768
|
+
readonly inputs: readonly [{
|
|
886
769
|
readonly internalType: "uint256";
|
|
887
|
-
readonly name: "";
|
|
770
|
+
readonly name: "tcbId";
|
|
888
771
|
readonly type: "uint256";
|
|
889
772
|
}];
|
|
890
|
-
readonly
|
|
773
|
+
readonly name: "addSuspiciousBlock";
|
|
774
|
+
readonly outputs: readonly [];
|
|
775
|
+
readonly stateMutability: "nonpayable";
|
|
891
776
|
readonly type: "function";
|
|
892
777
|
}, {
|
|
893
778
|
readonly inputs: readonly [{
|
|
894
|
-
readonly internalType: "uint256
|
|
895
|
-
readonly name: "
|
|
896
|
-
readonly type: "uint256
|
|
897
|
-
}];
|
|
898
|
-
readonly name: "getTcbsEpochIndex";
|
|
899
|
-
readonly outputs: readonly [{
|
|
900
|
-
readonly internalType: "uint256[]";
|
|
901
|
-
readonly name: "epochIndexes";
|
|
902
|
-
readonly type: "uint256[]";
|
|
779
|
+
readonly internalType: "uint256";
|
|
780
|
+
readonly name: "tcbId";
|
|
781
|
+
readonly type: "uint256";
|
|
903
782
|
}];
|
|
904
|
-
readonly
|
|
783
|
+
readonly name: "compareWithThreshold";
|
|
784
|
+
readonly outputs: readonly [];
|
|
785
|
+
readonly stateMutability: "nonpayable";
|
|
905
786
|
readonly type: "function";
|
|
906
787
|
}, {
|
|
907
788
|
readonly inputs: readonly [{
|
|
908
|
-
readonly internalType: "uint256
|
|
909
|
-
readonly name: "
|
|
910
|
-
readonly type: "uint256
|
|
911
|
-
}];
|
|
912
|
-
readonly name: "getTcbsUtilityData";
|
|
913
|
-
readonly outputs: readonly [{
|
|
914
|
-
readonly components: readonly [{
|
|
915
|
-
readonly internalType: "uint256";
|
|
916
|
-
readonly name: "teeOfferId";
|
|
917
|
-
readonly type: "uint256";
|
|
918
|
-
}, {
|
|
919
|
-
readonly internalType: "string";
|
|
920
|
-
readonly name: "pubKey";
|
|
921
|
-
readonly type: "string";
|
|
922
|
-
}, {
|
|
923
|
-
readonly internalType: "string";
|
|
924
|
-
readonly name: "quote_DEPRECATED";
|
|
925
|
-
readonly type: "string";
|
|
926
|
-
}];
|
|
927
|
-
readonly internalType: "struct TcbUtilityData[]";
|
|
928
|
-
readonly name: "";
|
|
929
|
-
readonly type: "tuple[]";
|
|
789
|
+
readonly internalType: "uint256";
|
|
790
|
+
readonly name: "intruderTcbId";
|
|
791
|
+
readonly type: "uint256";
|
|
930
792
|
}];
|
|
931
|
-
readonly
|
|
793
|
+
readonly name: "compensateEpochDamage";
|
|
794
|
+
readonly outputs: readonly [];
|
|
795
|
+
readonly stateMutability: "nonpayable";
|
|
932
796
|
readonly type: "function";
|
|
933
797
|
}, {
|
|
934
798
|
readonly inputs: readonly [{
|
|
@@ -936,39 +800,39 @@ export declare const abi: readonly [{
|
|
|
936
800
|
readonly name: "tcbId";
|
|
937
801
|
readonly type: "uint256";
|
|
938
802
|
}];
|
|
939
|
-
readonly name: "
|
|
940
|
-
readonly outputs: readonly [
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
803
|
+
readonly name: "findAccomplices";
|
|
804
|
+
readonly outputs: readonly [];
|
|
805
|
+
readonly stateMutability: "nonpayable";
|
|
806
|
+
readonly type: "function";
|
|
807
|
+
}, {
|
|
808
|
+
readonly inputs: readonly [{
|
|
809
|
+
readonly internalType: "uint256";
|
|
810
|
+
readonly name: "tcbId";
|
|
811
|
+
readonly type: "uint256";
|
|
944
812
|
}];
|
|
945
|
-
readonly
|
|
813
|
+
readonly name: "removeLastBlock";
|
|
814
|
+
readonly outputs: readonly [];
|
|
815
|
+
readonly stateMutability: "nonpayable";
|
|
946
816
|
readonly type: "function";
|
|
947
817
|
}, {
|
|
948
818
|
readonly inputs: readonly [{
|
|
949
819
|
readonly internalType: "uint256";
|
|
950
|
-
readonly name: "
|
|
820
|
+
readonly name: "tcbId";
|
|
951
821
|
readonly type: "uint256";
|
|
952
|
-
}, {
|
|
953
|
-
readonly internalType: "string";
|
|
954
|
-
readonly name: "pubKey";
|
|
955
|
-
readonly type: "string";
|
|
956
822
|
}];
|
|
957
|
-
readonly name: "
|
|
958
|
-
readonly outputs: readonly [
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
readonly internalType: "
|
|
964
|
-
readonly name: "
|
|
965
|
-
readonly type: "
|
|
966
|
-
}, {
|
|
967
|
-
readonly internalType: "bool";
|
|
968
|
-
readonly name: "halfEpochPassed";
|
|
969
|
-
readonly type: "bool";
|
|
823
|
+
readonly name: "removeSuspiciousBlock";
|
|
824
|
+
readonly outputs: readonly [];
|
|
825
|
+
readonly stateMutability: "nonpayable";
|
|
826
|
+
readonly type: "function";
|
|
827
|
+
}, {
|
|
828
|
+
readonly inputs: readonly [{
|
|
829
|
+
readonly internalType: "uint256";
|
|
830
|
+
readonly name: "tcbId";
|
|
831
|
+
readonly type: "uint256";
|
|
970
832
|
}];
|
|
971
|
-
readonly
|
|
833
|
+
readonly name: "updateConsensusTables";
|
|
834
|
+
readonly outputs: readonly [];
|
|
835
|
+
readonly stateMutability: "nonpayable";
|
|
972
836
|
readonly type: "function";
|
|
973
837
|
}, {
|
|
974
838
|
readonly inputs: readonly [{
|
|
@@ -1361,18 +1225,6 @@ export declare const abi: readonly [{
|
|
|
1361
1225
|
readonly outputs: readonly [];
|
|
1362
1226
|
readonly stateMutability: "nonpayable";
|
|
1363
1227
|
readonly type: "function";
|
|
1364
|
-
}, {
|
|
1365
|
-
readonly inputs: readonly [{
|
|
1366
|
-
readonly internalType: "uint8";
|
|
1367
|
-
readonly name: "bits";
|
|
1368
|
-
readonly type: "uint8";
|
|
1369
|
-
}, {
|
|
1370
|
-
readonly internalType: "uint256";
|
|
1371
|
-
readonly name: "value";
|
|
1372
|
-
readonly type: "uint256";
|
|
1373
|
-
}];
|
|
1374
|
-
readonly name: "SafeCastOverflowedUintDowncast";
|
|
1375
|
-
readonly type: "error";
|
|
1376
1228
|
}, {
|
|
1377
1229
|
readonly anonymous: false;
|
|
1378
1230
|
readonly inputs: readonly [{
|
|
@@ -1587,6 +1439,31 @@ export declare const abi: readonly [{
|
|
|
1587
1439
|
readonly internalType: "struct TeeOfferInfo";
|
|
1588
1440
|
readonly name: "info";
|
|
1589
1441
|
readonly type: "tuple";
|
|
1442
|
+
}, {
|
|
1443
|
+
readonly components: readonly [{
|
|
1444
|
+
readonly internalType: "uint64";
|
|
1445
|
+
readonly name: "cpuCores";
|
|
1446
|
+
readonly type: "uint64";
|
|
1447
|
+
}, {
|
|
1448
|
+
readonly internalType: "uint64";
|
|
1449
|
+
readonly name: "ram";
|
|
1450
|
+
readonly type: "uint64";
|
|
1451
|
+
}, {
|
|
1452
|
+
readonly internalType: "uint64";
|
|
1453
|
+
readonly name: "diskUsage";
|
|
1454
|
+
readonly type: "uint64";
|
|
1455
|
+
}, {
|
|
1456
|
+
readonly internalType: "uint64";
|
|
1457
|
+
readonly name: "gpuCores";
|
|
1458
|
+
readonly type: "uint64";
|
|
1459
|
+
}, {
|
|
1460
|
+
readonly internalType: "uint64";
|
|
1461
|
+
readonly name: "vram";
|
|
1462
|
+
readonly type: "uint64";
|
|
1463
|
+
}];
|
|
1464
|
+
readonly internalType: "struct SlotInfo";
|
|
1465
|
+
readonly name: "slotInfo";
|
|
1466
|
+
readonly type: "tuple";
|
|
1590
1467
|
}, {
|
|
1591
1468
|
readonly components: readonly [{
|
|
1592
1469
|
readonly internalType: "string";
|
|
@@ -1840,25 +1717,6 @@ export declare const abi: readonly [{
|
|
|
1840
1717
|
readonly outputs: readonly [];
|
|
1841
1718
|
readonly stateMutability: "nonpayable";
|
|
1842
1719
|
readonly type: "function";
|
|
1843
|
-
}, {
|
|
1844
|
-
readonly inputs: readonly [{
|
|
1845
|
-
readonly internalType: "uint256";
|
|
1846
|
-
readonly name: "offerId";
|
|
1847
|
-
readonly type: "uint256";
|
|
1848
|
-
}, {
|
|
1849
|
-
readonly components: readonly [{
|
|
1850
|
-
readonly internalType: "string";
|
|
1851
|
-
readonly name: "data";
|
|
1852
|
-
readonly type: "string";
|
|
1853
|
-
}];
|
|
1854
|
-
readonly internalType: "struct OptionInfo";
|
|
1855
|
-
readonly name: "newOptionInfo";
|
|
1856
|
-
readonly type: "tuple";
|
|
1857
|
-
}];
|
|
1858
|
-
readonly name: "setTeeOfferHardwareOptionInfo";
|
|
1859
|
-
readonly outputs: readonly [];
|
|
1860
|
-
readonly stateMutability: "nonpayable";
|
|
1861
|
-
readonly type: "function";
|
|
1862
1720
|
}, {
|
|
1863
1721
|
readonly inputs: readonly [{
|
|
1864
1722
|
readonly internalType: "uint256";
|
|
@@ -1889,8 +1747,17 @@ export declare const abi: readonly [{
|
|
|
1889
1747
|
readonly internalType: "struct SlotInfo";
|
|
1890
1748
|
readonly name: "newSlotInfo";
|
|
1891
1749
|
readonly type: "tuple";
|
|
1750
|
+
}, {
|
|
1751
|
+
readonly components: readonly [{
|
|
1752
|
+
readonly internalType: "string";
|
|
1753
|
+
readonly name: "data";
|
|
1754
|
+
readonly type: "string";
|
|
1755
|
+
}];
|
|
1756
|
+
readonly internalType: "struct OptionInfo";
|
|
1757
|
+
readonly name: "newOptionInfo";
|
|
1758
|
+
readonly type: "tuple";
|
|
1892
1759
|
}];
|
|
1893
|
-
readonly name: "
|
|
1760
|
+
readonly name: "setTeeOfferHardwareInfo";
|
|
1894
1761
|
readonly outputs: readonly [];
|
|
1895
1762
|
readonly stateMutability: "nonpayable";
|
|
1896
1763
|
readonly type: "function";
|
|
@@ -5703,101 +5570,15 @@ export declare const abi: readonly [{
|
|
|
5703
5570
|
}, {
|
|
5704
5571
|
readonly inputs: readonly [{
|
|
5705
5572
|
readonly internalType: "uint256";
|
|
5706
|
-
readonly name: "
|
|
5573
|
+
readonly name: "epochIndex";
|
|
5707
5574
|
readonly type: "uint256";
|
|
5708
|
-
}, {
|
|
5709
|
-
readonly components: readonly [{
|
|
5710
|
-
readonly internalType: "uint64";
|
|
5711
|
-
readonly name: "cpuSize";
|
|
5712
|
-
readonly type: "uint64";
|
|
5713
|
-
}, {
|
|
5714
|
-
readonly internalType: "uint64";
|
|
5715
|
-
readonly name: "ramSize";
|
|
5716
|
-
readonly type: "uint64";
|
|
5717
|
-
}, {
|
|
5718
|
-
readonly internalType: "uint64";
|
|
5719
|
-
readonly name: "gpuSize";
|
|
5720
|
-
readonly type: "uint64";
|
|
5721
|
-
}, {
|
|
5722
|
-
readonly internalType: "uint64";
|
|
5723
|
-
readonly name: "diskSize";
|
|
5724
|
-
readonly type: "uint64";
|
|
5725
|
-
}, {
|
|
5726
|
-
readonly internalType: "uint64";
|
|
5727
|
-
readonly name: "networkSize";
|
|
5728
|
-
readonly type: "uint64";
|
|
5729
|
-
}, {
|
|
5730
|
-
readonly internalType: "uint64";
|
|
5731
|
-
readonly name: "vramSize";
|
|
5732
|
-
readonly type: "uint64";
|
|
5733
|
-
}, {
|
|
5734
|
-
readonly internalType: "uint32";
|
|
5735
|
-
readonly name: "cpuMark";
|
|
5736
|
-
readonly type: "uint32";
|
|
5737
|
-
}, {
|
|
5738
|
-
readonly internalType: "uint32";
|
|
5739
|
-
readonly name: "ramMark";
|
|
5740
|
-
readonly type: "uint32";
|
|
5741
|
-
}, {
|
|
5742
|
-
readonly internalType: "uint32";
|
|
5743
|
-
readonly name: "gpuMark";
|
|
5744
|
-
readonly type: "uint32";
|
|
5745
|
-
}, {
|
|
5746
|
-
readonly internalType: "uint32";
|
|
5747
|
-
readonly name: "diskMark";
|
|
5748
|
-
readonly type: "uint32";
|
|
5749
|
-
}, {
|
|
5750
|
-
readonly internalType: "uint32";
|
|
5751
|
-
readonly name: "networkMark";
|
|
5752
|
-
readonly type: "uint32";
|
|
5753
|
-
}, {
|
|
5754
|
-
readonly components: readonly [{
|
|
5755
|
-
readonly internalType: "bytes16";
|
|
5756
|
-
readonly name: "vendorId";
|
|
5757
|
-
readonly type: "bytes16";
|
|
5758
|
-
}, {
|
|
5759
|
-
readonly internalType: "uint128";
|
|
5760
|
-
readonly name: "cpuFamily";
|
|
5761
|
-
readonly type: "uint128";
|
|
5762
|
-
}, {
|
|
5763
|
-
readonly internalType: "uint128";
|
|
5764
|
-
readonly name: "model";
|
|
5765
|
-
readonly type: "uint128";
|
|
5766
|
-
}, {
|
|
5767
|
-
readonly internalType: "bytes16";
|
|
5768
|
-
readonly name: "modelName";
|
|
5769
|
-
readonly type: "bytes16";
|
|
5770
|
-
}, {
|
|
5771
|
-
readonly internalType: "uint32";
|
|
5772
|
-
readonly name: "totalPhysicalCores";
|
|
5773
|
-
readonly type: "uint32";
|
|
5774
|
-
}, {
|
|
5775
|
-
readonly internalType: "uint32";
|
|
5776
|
-
readonly name: "baseFreq";
|
|
5777
|
-
readonly type: "uint32";
|
|
5778
|
-
}, {
|
|
5779
|
-
readonly internalType: "uint32";
|
|
5780
|
-
readonly name: "maxFreq";
|
|
5781
|
-
readonly type: "uint32";
|
|
5782
|
-
}];
|
|
5783
|
-
readonly internalType: "struct CpuInfo";
|
|
5784
|
-
readonly name: "cpuInfo";
|
|
5785
|
-
readonly type: "tuple";
|
|
5786
|
-
}];
|
|
5787
|
-
readonly internalType: "struct ConsensusBenchmarkView";
|
|
5788
|
-
readonly name: "benchmark";
|
|
5789
|
-
readonly type: "tuple";
|
|
5790
5575
|
}, {
|
|
5791
5576
|
readonly internalType: "uint256";
|
|
5792
|
-
readonly name: "
|
|
5577
|
+
readonly name: "teeOfferId";
|
|
5793
5578
|
readonly type: "uint256";
|
|
5794
5579
|
}];
|
|
5795
5580
|
readonly name: "addTcbToEpoch";
|
|
5796
|
-
readonly outputs: readonly [
|
|
5797
|
-
readonly internalType: "uint256";
|
|
5798
|
-
readonly name: "epochIndex";
|
|
5799
|
-
readonly type: "uint256";
|
|
5800
|
-
}];
|
|
5581
|
+
readonly outputs: readonly [];
|
|
5801
5582
|
readonly stateMutability: "nonpayable";
|
|
5802
5583
|
readonly type: "function";
|
|
5803
5584
|
}, {
|
|
@@ -5878,10 +5659,6 @@ export declare const abi: readonly [{
|
|
|
5878
5659
|
readonly internalType: "uint64";
|
|
5879
5660
|
readonly name: "networkSize";
|
|
5880
5661
|
readonly type: "uint64";
|
|
5881
|
-
}, {
|
|
5882
|
-
readonly internalType: "uint64";
|
|
5883
|
-
readonly name: "vramSize";
|
|
5884
|
-
readonly type: "uint64";
|
|
5885
5662
|
}, {
|
|
5886
5663
|
readonly internalType: "uint32";
|
|
5887
5664
|
readonly name: "cpuMark";
|
|
@@ -5902,41 +5679,8 @@ export declare const abi: readonly [{
|
|
|
5902
5679
|
readonly internalType: "uint32";
|
|
5903
5680
|
readonly name: "networkMark";
|
|
5904
5681
|
readonly type: "uint32";
|
|
5905
|
-
}, {
|
|
5906
|
-
readonly components: readonly [{
|
|
5907
|
-
readonly internalType: "bytes16";
|
|
5908
|
-
readonly name: "vendorId";
|
|
5909
|
-
readonly type: "bytes16";
|
|
5910
|
-
}, {
|
|
5911
|
-
readonly internalType: "uint128";
|
|
5912
|
-
readonly name: "cpuFamily";
|
|
5913
|
-
readonly type: "uint128";
|
|
5914
|
-
}, {
|
|
5915
|
-
readonly internalType: "uint128";
|
|
5916
|
-
readonly name: "model";
|
|
5917
|
-
readonly type: "uint128";
|
|
5918
|
-
}, {
|
|
5919
|
-
readonly internalType: "bytes16";
|
|
5920
|
-
readonly name: "modelName";
|
|
5921
|
-
readonly type: "bytes16";
|
|
5922
|
-
}, {
|
|
5923
|
-
readonly internalType: "uint32";
|
|
5924
|
-
readonly name: "totalPhysicalCores";
|
|
5925
|
-
readonly type: "uint32";
|
|
5926
|
-
}, {
|
|
5927
|
-
readonly internalType: "uint32";
|
|
5928
|
-
readonly name: "baseFreq";
|
|
5929
|
-
readonly type: "uint32";
|
|
5930
|
-
}, {
|
|
5931
|
-
readonly internalType: "uint32";
|
|
5932
|
-
readonly name: "maxFreq";
|
|
5933
|
-
readonly type: "uint32";
|
|
5934
|
-
}];
|
|
5935
|
-
readonly internalType: "struct CpuInfo";
|
|
5936
|
-
readonly name: "cpuInfo";
|
|
5937
|
-
readonly type: "tuple";
|
|
5938
5682
|
}];
|
|
5939
|
-
readonly internalType: "struct
|
|
5683
|
+
readonly internalType: "struct ConsensusBenchmark";
|
|
5940
5684
|
readonly name: "";
|
|
5941
5685
|
readonly type: "tuple";
|
|
5942
5686
|
}];
|
|
@@ -6033,10 +5777,77 @@ export declare const abi: readonly [{
|
|
|
6033
5777
|
}, {
|
|
6034
5778
|
readonly inputs: readonly [{
|
|
6035
5779
|
readonly internalType: "uint256";
|
|
6036
|
-
readonly name: "compensation";
|
|
5780
|
+
readonly name: "compensation";
|
|
5781
|
+
readonly type: "uint256";
|
|
5782
|
+
}, {
|
|
5783
|
+
readonly internalType: "bool";
|
|
5784
|
+
readonly name: "updateRewardAccounting";
|
|
5785
|
+
readonly type: "bool";
|
|
5786
|
+
}];
|
|
5787
|
+
readonly name: "increaseNextEpochCompensation";
|
|
5788
|
+
readonly outputs: readonly [];
|
|
5789
|
+
readonly stateMutability: "nonpayable";
|
|
5790
|
+
readonly type: "function";
|
|
5791
|
+
}, {
|
|
5792
|
+
readonly inputs: readonly [{
|
|
5793
|
+
readonly internalType: "uint256";
|
|
5794
|
+
readonly name: "epochIndex";
|
|
5795
|
+
readonly type: "uint256";
|
|
5796
|
+
}, {
|
|
5797
|
+
readonly internalType: "uint256";
|
|
5798
|
+
readonly name: "teeOfferId";
|
|
5799
|
+
readonly type: "uint256";
|
|
5800
|
+
}, {
|
|
5801
|
+
readonly components: readonly [{
|
|
5802
|
+
readonly internalType: "uint64";
|
|
5803
|
+
readonly name: "cpuSize";
|
|
5804
|
+
readonly type: "uint64";
|
|
5805
|
+
}, {
|
|
5806
|
+
readonly internalType: "uint64";
|
|
5807
|
+
readonly name: "ramSize";
|
|
5808
|
+
readonly type: "uint64";
|
|
5809
|
+
}, {
|
|
5810
|
+
readonly internalType: "uint64";
|
|
5811
|
+
readonly name: "gpuSize";
|
|
5812
|
+
readonly type: "uint64";
|
|
5813
|
+
}, {
|
|
5814
|
+
readonly internalType: "uint64";
|
|
5815
|
+
readonly name: "diskSize";
|
|
5816
|
+
readonly type: "uint64";
|
|
5817
|
+
}, {
|
|
5818
|
+
readonly internalType: "uint64";
|
|
5819
|
+
readonly name: "networkSize";
|
|
5820
|
+
readonly type: "uint64";
|
|
5821
|
+
}, {
|
|
5822
|
+
readonly internalType: "uint32";
|
|
5823
|
+
readonly name: "cpuMark";
|
|
5824
|
+
readonly type: "uint32";
|
|
5825
|
+
}, {
|
|
5826
|
+
readonly internalType: "uint32";
|
|
5827
|
+
readonly name: "ramMark";
|
|
5828
|
+
readonly type: "uint32";
|
|
5829
|
+
}, {
|
|
5830
|
+
readonly internalType: "uint32";
|
|
5831
|
+
readonly name: "gpuMark";
|
|
5832
|
+
readonly type: "uint32";
|
|
5833
|
+
}, {
|
|
5834
|
+
readonly internalType: "uint32";
|
|
5835
|
+
readonly name: "diskMark";
|
|
5836
|
+
readonly type: "uint32";
|
|
5837
|
+
}, {
|
|
5838
|
+
readonly internalType: "uint32";
|
|
5839
|
+
readonly name: "networkMark";
|
|
5840
|
+
readonly type: "uint32";
|
|
5841
|
+
}];
|
|
5842
|
+
readonly internalType: "struct ConsensusBenchmark";
|
|
5843
|
+
readonly name: "benchmark";
|
|
5844
|
+
readonly type: "tuple";
|
|
5845
|
+
}, {
|
|
5846
|
+
readonly internalType: "uint256";
|
|
5847
|
+
readonly name: "tcbId";
|
|
6037
5848
|
readonly type: "uint256";
|
|
6038
5849
|
}];
|
|
6039
|
-
readonly name: "
|
|
5850
|
+
readonly name: "initializeTeeOffer";
|
|
6040
5851
|
readonly outputs: readonly [];
|
|
6041
5852
|
readonly stateMutability: "nonpayable";
|
|
6042
5853
|
readonly type: "function";
|
|
@@ -6183,10 +5994,6 @@ export declare const abi: readonly [{
|
|
|
6183
5994
|
readonly internalType: "uint64";
|
|
6184
5995
|
readonly name: "networkSize";
|
|
6185
5996
|
readonly type: "uint64";
|
|
6186
|
-
}, {
|
|
6187
|
-
readonly internalType: "uint64";
|
|
6188
|
-
readonly name: "vramSize";
|
|
6189
|
-
readonly type: "uint64";
|
|
6190
5997
|
}, {
|
|
6191
5998
|
readonly internalType: "uint32";
|
|
6192
5999
|
readonly name: "cpuMark";
|
|
@@ -6207,41 +6014,8 @@ export declare const abi: readonly [{
|
|
|
6207
6014
|
readonly internalType: "uint32";
|
|
6208
6015
|
readonly name: "networkMark";
|
|
6209
6016
|
readonly type: "uint32";
|
|
6210
|
-
}, {
|
|
6211
|
-
readonly components: readonly [{
|
|
6212
|
-
readonly internalType: "bytes16";
|
|
6213
|
-
readonly name: "vendorId";
|
|
6214
|
-
readonly type: "bytes16";
|
|
6215
|
-
}, {
|
|
6216
|
-
readonly internalType: "uint128";
|
|
6217
|
-
readonly name: "cpuFamily";
|
|
6218
|
-
readonly type: "uint128";
|
|
6219
|
-
}, {
|
|
6220
|
-
readonly internalType: "uint128";
|
|
6221
|
-
readonly name: "model";
|
|
6222
|
-
readonly type: "uint128";
|
|
6223
|
-
}, {
|
|
6224
|
-
readonly internalType: "bytes16";
|
|
6225
|
-
readonly name: "modelName";
|
|
6226
|
-
readonly type: "bytes16";
|
|
6227
|
-
}, {
|
|
6228
|
-
readonly internalType: "uint32";
|
|
6229
|
-
readonly name: "totalPhysicalCores";
|
|
6230
|
-
readonly type: "uint32";
|
|
6231
|
-
}, {
|
|
6232
|
-
readonly internalType: "uint32";
|
|
6233
|
-
readonly name: "baseFreq";
|
|
6234
|
-
readonly type: "uint32";
|
|
6235
|
-
}, {
|
|
6236
|
-
readonly internalType: "uint32";
|
|
6237
|
-
readonly name: "maxFreq";
|
|
6238
|
-
readonly type: "uint32";
|
|
6239
|
-
}];
|
|
6240
|
-
readonly internalType: "struct CpuInfo";
|
|
6241
|
-
readonly name: "cpuInfo";
|
|
6242
|
-
readonly type: "tuple";
|
|
6243
6017
|
}];
|
|
6244
|
-
readonly internalType: "struct
|
|
6018
|
+
readonly internalType: "struct ConsensusBenchmark[]";
|
|
6245
6019
|
readonly name: "benchmarks";
|
|
6246
6020
|
readonly type: "tuple[]";
|
|
6247
6021
|
}];
|
|
@@ -6563,10 +6337,6 @@ export declare const abi: readonly [{
|
|
|
6563
6337
|
readonly internalType: "uint32";
|
|
6564
6338
|
readonly name: "networkMark";
|
|
6565
6339
|
readonly type: "uint32";
|
|
6566
|
-
}, {
|
|
6567
|
-
readonly internalType: "uint32";
|
|
6568
|
-
readonly name: "totalPhysicalCores";
|
|
6569
|
-
readonly type: "uint32";
|
|
6570
6340
|
}];
|
|
6571
6341
|
readonly internalType: "struct ConsensusBenchmark";
|
|
6572
6342
|
readonly name: "benchmark";
|
|
@@ -6579,39 +6349,6 @@ export declare const abi: readonly [{
|
|
|
6579
6349
|
readonly internalType: "bool";
|
|
6580
6350
|
readonly name: "benchmarkAdded";
|
|
6581
6351
|
readonly type: "bool";
|
|
6582
|
-
}, {
|
|
6583
|
-
readonly components: readonly [{
|
|
6584
|
-
readonly internalType: "uint64";
|
|
6585
|
-
readonly name: "vramSize";
|
|
6586
|
-
readonly type: "uint64";
|
|
6587
|
-
}, {
|
|
6588
|
-
readonly internalType: "bytes16";
|
|
6589
|
-
readonly name: "vendorId";
|
|
6590
|
-
readonly type: "bytes16";
|
|
6591
|
-
}, {
|
|
6592
|
-
readonly internalType: "uint32";
|
|
6593
|
-
readonly name: "baseFreq";
|
|
6594
|
-
readonly type: "uint32";
|
|
6595
|
-
}, {
|
|
6596
|
-
readonly internalType: "uint32";
|
|
6597
|
-
readonly name: "maxFreq";
|
|
6598
|
-
readonly type: "uint32";
|
|
6599
|
-
}, {
|
|
6600
|
-
readonly internalType: "uint128";
|
|
6601
|
-
readonly name: "cpuFamily";
|
|
6602
|
-
readonly type: "uint128";
|
|
6603
|
-
}, {
|
|
6604
|
-
readonly internalType: "uint128";
|
|
6605
|
-
readonly name: "model";
|
|
6606
|
-
readonly type: "uint128";
|
|
6607
|
-
}, {
|
|
6608
|
-
readonly internalType: "bytes16";
|
|
6609
|
-
readonly name: "modelName";
|
|
6610
|
-
readonly type: "bytes16";
|
|
6611
|
-
}];
|
|
6612
|
-
readonly internalType: "struct ConsensusBenchmark2";
|
|
6613
|
-
readonly name: "benchmark2";
|
|
6614
|
-
readonly type: "tuple";
|
|
6615
6352
|
}];
|
|
6616
6353
|
readonly internalType: "struct ProviderRewardsStorageAccessor.TeeOffer";
|
|
6617
6354
|
readonly name: "";
|
|
@@ -8707,10 +8444,28 @@ export declare const abi: readonly [{
|
|
|
8707
8444
|
}, {
|
|
8708
8445
|
readonly inputs: readonly [{
|
|
8709
8446
|
readonly internalType: "uint256";
|
|
8710
|
-
readonly name: "
|
|
8447
|
+
readonly name: "teeOfferId";
|
|
8448
|
+
readonly type: "uint256";
|
|
8449
|
+
}, {
|
|
8450
|
+
readonly internalType: "bytes32";
|
|
8451
|
+
readonly name: "deviceId";
|
|
8452
|
+
readonly type: "bytes32";
|
|
8453
|
+
}];
|
|
8454
|
+
readonly name: "banTeeOffer";
|
|
8455
|
+
readonly outputs: readonly [];
|
|
8456
|
+
readonly stateMutability: "nonpayable";
|
|
8457
|
+
readonly type: "function";
|
|
8458
|
+
}, {
|
|
8459
|
+
readonly inputs: readonly [{
|
|
8460
|
+
readonly internalType: "uint256";
|
|
8461
|
+
readonly name: "teeOfferId";
|
|
8711
8462
|
readonly type: "uint256";
|
|
8463
|
+
}, {
|
|
8464
|
+
readonly internalType: "bytes32";
|
|
8465
|
+
readonly name: "deviceId";
|
|
8466
|
+
readonly type: "bytes32";
|
|
8712
8467
|
}];
|
|
8713
|
-
readonly name: "
|
|
8468
|
+
readonly name: "blockTeeOffer";
|
|
8714
8469
|
readonly outputs: readonly [];
|
|
8715
8470
|
readonly stateMutability: "nonpayable";
|
|
8716
8471
|
readonly type: "function";
|
|
@@ -8720,7 +8475,7 @@ export declare const abi: readonly [{
|
|
|
8720
8475
|
readonly name: "teeOfferId";
|
|
8721
8476
|
readonly type: "uint256";
|
|
8722
8477
|
}];
|
|
8723
|
-
readonly name: "
|
|
8478
|
+
readonly name: "confiscateAllRewards";
|
|
8724
8479
|
readonly outputs: readonly [];
|
|
8725
8480
|
readonly stateMutability: "nonpayable";
|
|
8726
8481
|
readonly type: "function";
|
|
@@ -8738,6 +8493,20 @@ export declare const abi: readonly [{
|
|
|
8738
8493
|
}];
|
|
8739
8494
|
readonly stateMutability: "view";
|
|
8740
8495
|
readonly type: "function";
|
|
8496
|
+
}, {
|
|
8497
|
+
readonly inputs: readonly [{
|
|
8498
|
+
readonly internalType: "bytes32";
|
|
8499
|
+
readonly name: "deviceId";
|
|
8500
|
+
readonly type: "bytes32";
|
|
8501
|
+
}];
|
|
8502
|
+
readonly name: "getTeeOfferByDeviceId";
|
|
8503
|
+
readonly outputs: readonly [{
|
|
8504
|
+
readonly internalType: "uint256";
|
|
8505
|
+
readonly name: "";
|
|
8506
|
+
readonly type: "uint256";
|
|
8507
|
+
}];
|
|
8508
|
+
readonly stateMutability: "view";
|
|
8509
|
+
readonly type: "function";
|
|
8741
8510
|
}, {
|
|
8742
8511
|
readonly inputs: readonly [{
|
|
8743
8512
|
readonly internalType: "uint256";
|
|
@@ -8758,28 +8527,65 @@ export declare const abi: readonly [{
|
|
|
8758
8527
|
readonly name: "teeOfferId";
|
|
8759
8528
|
readonly type: "uint256";
|
|
8760
8529
|
}];
|
|
8761
|
-
readonly name: "
|
|
8530
|
+
readonly name: "getTeeVerifiedBenchmark";
|
|
8762
8531
|
readonly outputs: readonly [{
|
|
8763
|
-
readonly
|
|
8532
|
+
readonly components: readonly [{
|
|
8533
|
+
readonly internalType: "uint64";
|
|
8534
|
+
readonly name: "cpuSize";
|
|
8535
|
+
readonly type: "uint64";
|
|
8536
|
+
}, {
|
|
8537
|
+
readonly internalType: "uint64";
|
|
8538
|
+
readonly name: "ramSize";
|
|
8539
|
+
readonly type: "uint64";
|
|
8540
|
+
}, {
|
|
8541
|
+
readonly internalType: "uint64";
|
|
8542
|
+
readonly name: "gpuSize";
|
|
8543
|
+
readonly type: "uint64";
|
|
8544
|
+
}, {
|
|
8545
|
+
readonly internalType: "uint64";
|
|
8546
|
+
readonly name: "diskSize";
|
|
8547
|
+
readonly type: "uint64";
|
|
8548
|
+
}, {
|
|
8549
|
+
readonly internalType: "uint64";
|
|
8550
|
+
readonly name: "networkSize";
|
|
8551
|
+
readonly type: "uint64";
|
|
8552
|
+
}, {
|
|
8553
|
+
readonly internalType: "uint32";
|
|
8554
|
+
readonly name: "cpuMark";
|
|
8555
|
+
readonly type: "uint32";
|
|
8556
|
+
}, {
|
|
8557
|
+
readonly internalType: "uint32";
|
|
8558
|
+
readonly name: "ramMark";
|
|
8559
|
+
readonly type: "uint32";
|
|
8560
|
+
}, {
|
|
8561
|
+
readonly internalType: "uint32";
|
|
8562
|
+
readonly name: "gpuMark";
|
|
8563
|
+
readonly type: "uint32";
|
|
8564
|
+
}, {
|
|
8565
|
+
readonly internalType: "uint32";
|
|
8566
|
+
readonly name: "diskMark";
|
|
8567
|
+
readonly type: "uint32";
|
|
8568
|
+
}, {
|
|
8569
|
+
readonly internalType: "uint32";
|
|
8570
|
+
readonly name: "networkMark";
|
|
8571
|
+
readonly type: "uint32";
|
|
8572
|
+
}];
|
|
8573
|
+
readonly internalType: "struct ConsensusBenchmark";
|
|
8764
8574
|
readonly name: "";
|
|
8765
|
-
readonly type: "
|
|
8575
|
+
readonly type: "tuple";
|
|
8766
8576
|
}];
|
|
8767
8577
|
readonly stateMutability: "view";
|
|
8768
8578
|
readonly type: "function";
|
|
8769
8579
|
}, {
|
|
8770
8580
|
readonly inputs: readonly [{
|
|
8771
8581
|
readonly internalType: "uint256";
|
|
8772
|
-
readonly name: "
|
|
8582
|
+
readonly name: "teeOfferId";
|
|
8773
8583
|
readonly type: "uint256";
|
|
8774
8584
|
}];
|
|
8775
|
-
readonly name: "
|
|
8585
|
+
readonly name: "getTotalLockedOfferAmount";
|
|
8776
8586
|
readonly outputs: readonly [{
|
|
8777
|
-
readonly internalType: "bool";
|
|
8778
|
-
readonly name: "available";
|
|
8779
|
-
readonly type: "bool";
|
|
8780
|
-
}, {
|
|
8781
8587
|
readonly internalType: "uint256";
|
|
8782
|
-
readonly name: "
|
|
8588
|
+
readonly name: "";
|
|
8783
8589
|
readonly type: "uint256";
|
|
8784
8590
|
}];
|
|
8785
8591
|
readonly stateMutability: "view";
|
|
@@ -8790,11 +8596,25 @@ export declare const abi: readonly [{
|
|
|
8790
8596
|
readonly name: "teeOfferId";
|
|
8791
8597
|
readonly type: "uint256";
|
|
8792
8598
|
}];
|
|
8793
|
-
readonly name: "
|
|
8599
|
+
readonly name: "incrTeeOfferViolationRate";
|
|
8600
|
+
readonly outputs: readonly [];
|
|
8601
|
+
readonly stateMutability: "nonpayable";
|
|
8602
|
+
readonly type: "function";
|
|
8603
|
+
}, {
|
|
8604
|
+
readonly inputs: readonly [{
|
|
8605
|
+
readonly internalType: "uint256";
|
|
8606
|
+
readonly name: "tcbId";
|
|
8607
|
+
readonly type: "uint256";
|
|
8608
|
+
}];
|
|
8609
|
+
readonly name: "isTcbProfitAvailable";
|
|
8794
8610
|
readonly outputs: readonly [{
|
|
8795
8611
|
readonly internalType: "bool";
|
|
8796
|
-
readonly name: "";
|
|
8612
|
+
readonly name: "available";
|
|
8797
8613
|
readonly type: "bool";
|
|
8614
|
+
}, {
|
|
8615
|
+
readonly internalType: "uint256";
|
|
8616
|
+
readonly name: "amount";
|
|
8617
|
+
readonly type: "uint256";
|
|
8798
8618
|
}];
|
|
8799
8619
|
readonly stateMutability: "view";
|
|
8800
8620
|
readonly type: "function";
|
|
@@ -8816,6 +8636,20 @@ export declare const abi: readonly [{
|
|
|
8816
8636
|
readonly outputs: readonly [];
|
|
8817
8637
|
readonly stateMutability: "nonpayable";
|
|
8818
8638
|
readonly type: "function";
|
|
8639
|
+
}, {
|
|
8640
|
+
readonly inputs: readonly [{
|
|
8641
|
+
readonly internalType: "uint256";
|
|
8642
|
+
readonly name: "teeOfferId";
|
|
8643
|
+
readonly type: "uint256";
|
|
8644
|
+
}, {
|
|
8645
|
+
readonly internalType: "bytes32";
|
|
8646
|
+
readonly name: "deviceId";
|
|
8647
|
+
readonly type: "bytes32";
|
|
8648
|
+
}];
|
|
8649
|
+
readonly name: "setTeeDeviceId";
|
|
8650
|
+
readonly outputs: readonly [];
|
|
8651
|
+
readonly stateMutability: "nonpayable";
|
|
8652
|
+
readonly type: "function";
|
|
8819
8653
|
}, {
|
|
8820
8654
|
readonly inputs: readonly [{
|
|
8821
8655
|
readonly internalType: "uint256";
|
|
@@ -8840,6 +8674,61 @@ export declare const abi: readonly [{
|
|
|
8840
8674
|
}];
|
|
8841
8675
|
readonly stateMutability: "nonpayable";
|
|
8842
8676
|
readonly type: "function";
|
|
8677
|
+
}, {
|
|
8678
|
+
readonly inputs: readonly [{
|
|
8679
|
+
readonly internalType: "uint256";
|
|
8680
|
+
readonly name: "teeOfferId";
|
|
8681
|
+
readonly type: "uint256";
|
|
8682
|
+
}, {
|
|
8683
|
+
readonly components: readonly [{
|
|
8684
|
+
readonly internalType: "uint64";
|
|
8685
|
+
readonly name: "cpuSize";
|
|
8686
|
+
readonly type: "uint64";
|
|
8687
|
+
}, {
|
|
8688
|
+
readonly internalType: "uint64";
|
|
8689
|
+
readonly name: "ramSize";
|
|
8690
|
+
readonly type: "uint64";
|
|
8691
|
+
}, {
|
|
8692
|
+
readonly internalType: "uint64";
|
|
8693
|
+
readonly name: "gpuSize";
|
|
8694
|
+
readonly type: "uint64";
|
|
8695
|
+
}, {
|
|
8696
|
+
readonly internalType: "uint64";
|
|
8697
|
+
readonly name: "diskSize";
|
|
8698
|
+
readonly type: "uint64";
|
|
8699
|
+
}, {
|
|
8700
|
+
readonly internalType: "uint64";
|
|
8701
|
+
readonly name: "networkSize";
|
|
8702
|
+
readonly type: "uint64";
|
|
8703
|
+
}, {
|
|
8704
|
+
readonly internalType: "uint32";
|
|
8705
|
+
readonly name: "cpuMark";
|
|
8706
|
+
readonly type: "uint32";
|
|
8707
|
+
}, {
|
|
8708
|
+
readonly internalType: "uint32";
|
|
8709
|
+
readonly name: "ramMark";
|
|
8710
|
+
readonly type: "uint32";
|
|
8711
|
+
}, {
|
|
8712
|
+
readonly internalType: "uint32";
|
|
8713
|
+
readonly name: "gpuMark";
|
|
8714
|
+
readonly type: "uint32";
|
|
8715
|
+
}, {
|
|
8716
|
+
readonly internalType: "uint32";
|
|
8717
|
+
readonly name: "diskMark";
|
|
8718
|
+
readonly type: "uint32";
|
|
8719
|
+
}, {
|
|
8720
|
+
readonly internalType: "uint32";
|
|
8721
|
+
readonly name: "networkMark";
|
|
8722
|
+
readonly type: "uint32";
|
|
8723
|
+
}];
|
|
8724
|
+
readonly internalType: "struct ConsensusBenchmark";
|
|
8725
|
+
readonly name: "benchmark";
|
|
8726
|
+
readonly type: "tuple";
|
|
8727
|
+
}];
|
|
8728
|
+
readonly name: "updateVerifiedTeeBenchmark";
|
|
8729
|
+
readonly outputs: readonly [];
|
|
8730
|
+
readonly stateMutability: "nonpayable";
|
|
8731
|
+
readonly type: "function";
|
|
8843
8732
|
}, {
|
|
8844
8733
|
readonly anonymous: false;
|
|
8845
8734
|
readonly inputs: readonly [{
|
|
@@ -11543,6 +11432,26 @@ export declare const abi: readonly [{
|
|
|
11543
11432
|
}];
|
|
11544
11433
|
readonly stateMutability: "view";
|
|
11545
11434
|
readonly type: "function";
|
|
11435
|
+
}, {
|
|
11436
|
+
readonly inputs: readonly [{
|
|
11437
|
+
readonly internalType: "uint256";
|
|
11438
|
+
readonly name: "tcbId";
|
|
11439
|
+
readonly type: "uint256";
|
|
11440
|
+
}];
|
|
11441
|
+
readonly name: "updateLastBlocks";
|
|
11442
|
+
readonly outputs: readonly [];
|
|
11443
|
+
readonly stateMutability: "nonpayable";
|
|
11444
|
+
readonly type: "function";
|
|
11445
|
+
}, {
|
|
11446
|
+
readonly inputs: readonly [{
|
|
11447
|
+
readonly internalType: "uint256";
|
|
11448
|
+
readonly name: "tcbId";
|
|
11449
|
+
readonly type: "uint256";
|
|
11450
|
+
}];
|
|
11451
|
+
readonly name: "updateSuspicious";
|
|
11452
|
+
readonly outputs: readonly [];
|
|
11453
|
+
readonly stateMutability: "nonpayable";
|
|
11454
|
+
readonly type: "function";
|
|
11546
11455
|
}, {
|
|
11547
11456
|
readonly inputs: readonly [{
|
|
11548
11457
|
readonly internalType: "address";
|