@super-protocol/sdk-js 2.2.0-beta.12 → 2.2.0-beta.120
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.d.ts +2 -0
- package/dist/cjs/RIGenerator.js +6 -4
- package/dist/cjs/TIIGenerator.d.ts +2 -1
- package/dist/cjs/TIIGenerator.js +13 -3
- package/dist/cjs/TeeInputGeneratorBase.d.ts +1 -1
- package/dist/cjs/TeeInputGeneratorBase.js +20 -32
- package/dist/cjs/analytics/eventProviders/BrowserEventProvider.d.ts +1 -0
- package/dist/cjs/analytics/eventProviders/BrowserEventProvider.js +3 -3
- package/dist/cjs/analytics/transports/AxiosTransport.js +1 -1
- package/dist/cjs/config.d.ts +0 -1
- package/dist/cjs/config.js +1 -2
- package/dist/cjs/constants.d.ts +5 -4
- package/dist/cjs/constants.js +31 -7
- package/dist/cjs/contracts/abi.d.ts +929 -122
- package/dist/cjs/contracts/abi.js +1168 -134
- package/dist/cjs/crypto/index.d.ts +1 -0
- package/dist/cjs/crypto/index.js +16 -1
- package/dist/cjs/errors/base.error.d.ts +3 -0
- package/dist/cjs/errors/base.error.js +19 -0
- package/dist/cjs/errors/index.d.ts +2 -0
- package/dist/cjs/errors/index.js +8 -0
- package/dist/cjs/errors/not-found.error.d.ts +3 -0
- package/dist/cjs/errors/not-found.error.js +8 -0
- package/dist/cjs/errors/utils.d.ts +1 -0
- package/dist/cjs/errors/utils.js +25 -0
- package/dist/cjs/index.d.ts +11 -1
- package/dist/cjs/index.js +19 -2
- package/dist/cjs/models/Offer.d.ts +48 -6
- package/dist/cjs/models/Offer.js +159 -16
- package/dist/cjs/models/Order.d.ts +2 -90
- package/dist/cjs/models/Order.js +20 -91
- package/dist/cjs/models/Provider.js +1 -1
- package/dist/cjs/models/TCB.js +13 -5
- package/dist/cjs/models/TeeOffer.d.ts +35 -13
- package/dist/cjs/models/TeeOffer.js +119 -44
- package/dist/cjs/proto/Compression.d.ts +1 -1
- package/dist/cjs/proto/TRI.d.ts +41 -6
- package/dist/cjs/proto/TRI.js +18 -1
- package/dist/cjs/proto/TeeProperties.d.ts +5 -5
- package/dist/cjs/providers/storage/IStorageProvider.d.ts +1 -1
- package/dist/cjs/providers/storage/S3StorageProvider.d.ts +8 -7
- package/dist/cjs/providers/storage/S3StorageProvider.js +77 -38
- package/dist/cjs/providers/storage/StorageAdapter.d.ts +9 -7
- package/dist/cjs/providers/storage/StorageAdapter.js +27 -29
- package/dist/cjs/providers/storage/StorageContentWriter.d.ts +2 -2
- package/dist/cjs/providers/storage/StorageContentWriter.js +5 -5
- package/dist/cjs/providers/storage/StorageKeyValueAdapter.d.ts +8 -5
- package/dist/cjs/providers/storage/StorageKeyValueAdapter.js +30 -16
- package/dist/cjs/providers/storage/StorjAdapter.d.ts +5 -4
- package/dist/cjs/providers/storage/StorjAdapter.js +15 -9
- package/dist/cjs/providers/storage/StorjCredentialsManager.d.ts +24 -0
- package/dist/cjs/providers/storage/StorjCredentialsManager.js +109 -0
- package/dist/cjs/providers/storage/StorjStorageProvider.js +26 -3
- package/dist/cjs/providers/storage/fs-storage-provider.d.ts +19 -0
- package/dist/cjs/providers/storage/fs-storage-provider.js +143 -0
- package/dist/cjs/providers/storage/getStorageProvider.js +4 -1
- package/dist/cjs/providers/storage/parseStorageCredentials.d.ts +5 -0
- package/dist/cjs/providers/storage/parseStorageCredentials.js +21 -0
- package/dist/cjs/providers/storage/types.d.ts +22 -0
- package/dist/cjs/staticModels/Consensus.d.ts +3 -2
- package/dist/cjs/staticModels/Consensus.js +22 -11
- package/dist/cjs/staticModels/LoaderSecretsPublicKeys.js +3 -3
- package/dist/cjs/staticModels/LoaderSessions.d.ts +2 -2
- package/dist/cjs/staticModels/LoaderSessions.js +5 -5
- package/dist/cjs/staticModels/OfferResources.d.ts +3 -1
- package/dist/cjs/staticModels/OfferResources.js +33 -8
- package/dist/cjs/staticModels/Offers.js +10 -2
- package/dist/cjs/staticModels/OffersStorageAllocated.d.ts +1 -2
- package/dist/cjs/staticModels/OffersStorageAllocated.js +10 -10
- package/dist/cjs/staticModels/OffersStorageRequests.js +4 -3
- package/dist/cjs/staticModels/Orders.d.ts +5 -4
- package/dist/cjs/staticModels/Orders.js +7 -6
- package/dist/cjs/staticModels/SecretRequests.d.ts +1 -1
- package/dist/cjs/staticModels/SecretRequests.js +14 -7
- package/dist/cjs/staticModels/TeeOffers.d.ts +0 -2
- package/dist/cjs/staticModels/TeeOffers.js +5 -38
- package/dist/cjs/tee/QuoteParser.d.ts +61 -6
- package/dist/cjs/tee/QuoteParser.js +251 -30
- package/dist/cjs/tee/QuoteValidator.d.ts +13 -0
- package/dist/cjs/tee/QuoteValidator.js +149 -35
- package/dist/cjs/tee/TcbSerializer.d.ts +20 -0
- package/dist/cjs/tee/TcbSerializer.js +27 -0
- package/dist/cjs/tee/TeeBlockVerifier.d.ts +1 -6
- package/dist/cjs/tee/TeeBlockVerifier.js +5 -52
- package/dist/cjs/tee/TeeCertificateService.d.ts +13 -0
- package/dist/cjs/tee/TeeCertificateService.js +42 -0
- package/dist/cjs/tee/errors.d.ts +6 -3
- package/dist/cjs/tee/errors.js +9 -5
- package/dist/cjs/tee/helpers.d.ts +1 -1
- package/dist/cjs/tee/helpers.js +2 -7
- package/dist/cjs/tee/types.d.ts +50 -9
- package/dist/cjs/tee/types.js +32 -1
- package/dist/cjs/types/DistributedSecretStorage.d.ts +7 -0
- package/dist/cjs/types/Offer.d.ts +33 -7
- package/dist/cjs/types/Offer.js +17 -2
- package/dist/cjs/types/OfferVersion.d.ts +13 -0
- package/dist/cjs/types/OfferVersion.js +9 -0
- package/dist/cjs/types/Order.d.ts +8 -2
- package/dist/cjs/types/Order.js +3 -1
- package/dist/cjs/types/SlotInfo.d.ts +1 -0
- package/dist/cjs/types/Superpro.d.ts +2 -1
- package/dist/cjs/types/Superpro.js +2 -1
- package/dist/cjs/types/TeeOfferInfo.d.ts +2 -1
- package/dist/cjs/types/index.d.ts +1 -0
- package/dist/cjs/types/index.js +2 -1
- package/dist/cjs/types/storage/StorageAccess.d.ts +3 -3
- package/dist/cjs/utils/CryptoKeysTransformer.d.ts +6 -1
- package/dist/cjs/utils/CryptoKeysTransformer.js +48 -3
- package/dist/cjs/utils/NonceTracker.js +1 -1
- package/dist/cjs/utils/helper.d.ts +7 -1
- package/dist/cjs/utils/helper.js +87 -2
- package/dist/cjs/utils/helpers/OrderArgsHelper.d.ts +17 -0
- package/dist/cjs/utils/helpers/OrderArgsHelper.js +87 -0
- package/dist/cjs/utils/helpers/index.d.ts +2 -0
- package/dist/cjs/utils/helpers/index.js +3 -1
- package/dist/cjs/utils/helpers/uploadObjectToStorage.d.ts +13 -0
- package/dist/cjs/utils/helpers/uploadObjectToStorage.js +55 -0
- package/dist/cjs/utils/schema-validators/index.d.ts +1 -0
- package/dist/cjs/utils/schema-validators/index.js +6 -0
- package/dist/cjs/utils/schema-validators/validator.d.ts +7 -0
- package/dist/cjs/utils/schema-validators/validator.js +49 -0
- package/dist/mjs/RIGenerator.d.ts +2 -0
- package/dist/mjs/RIGenerator.js +6 -4
- package/dist/mjs/TIIGenerator.d.ts +2 -1
- package/dist/mjs/TIIGenerator.js +13 -3
- package/dist/mjs/TeeInputGeneratorBase.d.ts +1 -1
- package/dist/mjs/TeeInputGeneratorBase.js +20 -32
- package/dist/mjs/analytics/eventProviders/BrowserEventProvider.d.ts +1 -0
- package/dist/mjs/analytics/eventProviders/BrowserEventProvider.js +3 -3
- package/dist/mjs/analytics/transports/AxiosTransport.js +1 -1
- package/dist/mjs/config.d.ts +0 -1
- package/dist/mjs/config.js +1 -2
- package/dist/mjs/constants.d.ts +5 -4
- package/dist/mjs/constants.js +30 -6
- package/dist/mjs/contracts/abi.d.ts +929 -122
- package/dist/mjs/contracts/abi.js +1166 -132
- package/dist/mjs/crypto/index.d.ts +1 -0
- package/dist/mjs/crypto/index.js +2 -1
- package/dist/mjs/errors/base.error.d.ts +3 -0
- package/dist/mjs/errors/base.error.js +15 -0
- package/dist/mjs/errors/index.d.ts +2 -0
- package/dist/mjs/errors/index.js +3 -0
- package/dist/mjs/errors/not-found.error.d.ts +3 -0
- package/dist/mjs/errors/not-found.error.js +4 -0
- package/dist/mjs/errors/utils.d.ts +1 -0
- package/dist/mjs/errors/utils.js +18 -0
- package/dist/mjs/index.d.ts +11 -1
- package/dist/mjs/index.js +11 -2
- package/dist/mjs/models/Offer.d.ts +48 -6
- package/dist/mjs/models/Offer.js +161 -18
- package/dist/mjs/models/Order.d.ts +2 -90
- package/dist/mjs/models/Order.js +20 -91
- package/dist/mjs/models/Provider.js +1 -1
- package/dist/mjs/models/TCB.js +13 -5
- package/dist/mjs/models/TeeOffer.d.ts +35 -13
- package/dist/mjs/models/TeeOffer.js +115 -40
- package/dist/mjs/proto/Compression.d.ts +1 -1
- package/dist/mjs/proto/TRI.d.ts +41 -6
- package/dist/mjs/proto/TRI.js +18 -1
- package/dist/mjs/proto/TeeProperties.d.ts +5 -5
- package/dist/mjs/providers/storage/IStorageProvider.d.ts +1 -1
- package/dist/mjs/providers/storage/S3StorageProvider.d.ts +8 -7
- package/dist/mjs/providers/storage/S3StorageProvider.js +74 -38
- package/dist/mjs/providers/storage/StorageAdapter.d.ts +9 -7
- package/dist/mjs/providers/storage/StorageAdapter.js +27 -29
- package/dist/mjs/providers/storage/StorageContentWriter.d.ts +2 -2
- package/dist/mjs/providers/storage/StorageContentWriter.js +5 -5
- package/dist/mjs/providers/storage/StorageKeyValueAdapter.d.ts +8 -5
- package/dist/mjs/providers/storage/StorageKeyValueAdapter.js +30 -16
- package/dist/mjs/providers/storage/StorjAdapter.d.ts +5 -4
- package/dist/mjs/providers/storage/StorjAdapter.js +15 -9
- package/dist/mjs/providers/storage/StorjCredentialsManager.d.ts +24 -0
- package/dist/mjs/providers/storage/StorjCredentialsManager.js +82 -0
- package/dist/mjs/providers/storage/StorjStorageProvider.js +3 -3
- package/dist/mjs/providers/storage/fs-storage-provider.d.ts +19 -0
- package/dist/mjs/providers/storage/fs-storage-provider.js +113 -0
- package/dist/mjs/providers/storage/getStorageProvider.js +4 -1
- package/dist/mjs/providers/storage/parseStorageCredentials.d.ts +5 -0
- package/dist/mjs/providers/storage/parseStorageCredentials.js +17 -0
- package/dist/mjs/providers/storage/types.d.ts +22 -0
- package/dist/mjs/staticModels/Consensus.d.ts +3 -2
- package/dist/mjs/staticModels/Consensus.js +22 -11
- package/dist/mjs/staticModels/LoaderSecretsPublicKeys.js +4 -4
- package/dist/mjs/staticModels/LoaderSessions.d.ts +2 -2
- package/dist/mjs/staticModels/LoaderSessions.js +6 -6
- package/dist/mjs/staticModels/OfferResources.d.ts +3 -1
- package/dist/mjs/staticModels/OfferResources.js +34 -9
- package/dist/mjs/staticModels/Offers.js +10 -2
- package/dist/mjs/staticModels/OffersStorageAllocated.d.ts +1 -2
- package/dist/mjs/staticModels/OffersStorageAllocated.js +11 -11
- package/dist/mjs/staticModels/OffersStorageRequests.js +5 -4
- package/dist/mjs/staticModels/Orders.d.ts +5 -4
- package/dist/mjs/staticModels/Orders.js +7 -6
- package/dist/mjs/staticModels/SecretRequests.d.ts +1 -1
- package/dist/mjs/staticModels/SecretRequests.js +15 -8
- package/dist/mjs/staticModels/TeeOffers.d.ts +0 -2
- package/dist/mjs/staticModels/TeeOffers.js +5 -38
- package/dist/mjs/store.js +2 -2
- package/dist/mjs/tee/QuoteParser.d.ts +61 -6
- package/dist/mjs/tee/QuoteParser.js +248 -29
- package/dist/mjs/tee/QuoteValidator.d.ts +13 -0
- package/dist/mjs/tee/QuoteValidator.js +149 -35
- package/dist/mjs/tee/TcbSerializer.d.ts +20 -0
- package/dist/mjs/tee/TcbSerializer.js +23 -0
- package/dist/mjs/tee/TeeBlockVerifier.d.ts +1 -6
- package/dist/mjs/tee/TeeBlockVerifier.js +5 -52
- package/dist/mjs/tee/TeeCertificateService.d.ts +13 -0
- package/dist/mjs/tee/TeeCertificateService.js +35 -0
- package/dist/mjs/tee/errors.d.ts +6 -3
- package/dist/mjs/tee/errors.js +7 -4
- package/dist/mjs/tee/helpers.d.ts +1 -1
- package/dist/mjs/tee/helpers.js +2 -7
- package/dist/mjs/tee/types.d.ts +50 -9
- package/dist/mjs/tee/types.js +28 -2
- package/dist/mjs/types/DistributedSecretStorage.d.ts +7 -0
- package/dist/mjs/types/Offer.d.ts +33 -7
- package/dist/mjs/types/Offer.js +16 -1
- package/dist/mjs/types/OfferVersion.d.ts +13 -0
- package/dist/mjs/types/OfferVersion.js +6 -0
- package/dist/mjs/types/Order.d.ts +8 -2
- package/dist/mjs/types/Order.js +3 -1
- package/dist/mjs/types/SlotInfo.d.ts +1 -0
- package/dist/mjs/types/Superpro.d.ts +2 -1
- package/dist/mjs/types/Superpro.js +2 -1
- package/dist/mjs/types/TeeOfferInfo.d.ts +2 -1
- package/dist/mjs/types/index.d.ts +1 -0
- package/dist/mjs/types/index.js +2 -1
- package/dist/mjs/types/storage/StorageAccess.d.ts +3 -3
- package/dist/mjs/utils/CryptoKeysTransformer.d.ts +6 -1
- package/dist/mjs/utils/CryptoKeysTransformer.js +48 -3
- package/dist/mjs/utils/NonceTracker.js +1 -1
- package/dist/mjs/utils/helper.d.ts +7 -1
- package/dist/mjs/utils/helper.js +80 -1
- package/dist/mjs/utils/helpers/OrderArgsHelper.d.ts +17 -0
- package/dist/mjs/utils/helpers/OrderArgsHelper.js +80 -0
- package/dist/mjs/utils/helpers/index.d.ts +2 -0
- package/dist/mjs/utils/helpers/index.js +3 -1
- package/dist/mjs/utils/helpers/uploadObjectToStorage.d.ts +13 -0
- package/dist/mjs/utils/helpers/uploadObjectToStorage.js +48 -0
- package/dist/mjs/utils/schema-validators/index.d.ts +1 -0
- package/dist/mjs/utils/schema-validators/index.js +2 -0
- package/dist/mjs/utils/schema-validators/validator.d.ts +7 -0
- package/dist/mjs/utils/schema-validators/validator.js +45 -0
- package/package.json +7 -6
|
@@ -12,6 +12,7 @@ export declare const DepositWithdrawn: "DepositWithdrawn";
|
|
|
12
12
|
export declare const OfferCreated: "OfferCreated";
|
|
13
13
|
export declare const OfferDisabled: "OfferDisabled";
|
|
14
14
|
export declare const OfferEnabled: "OfferEnabled";
|
|
15
|
+
export declare const SetValueOfferRestrictions: "SetValueOfferRestrictions";
|
|
15
16
|
export declare const TeeOfferCreated: "TeeOfferCreated";
|
|
16
17
|
export declare const TeeOfferViolationRateChanged: "TeeOfferViolationRateChanged";
|
|
17
18
|
export declare const OrdersGroupCreated: "OrdersGroupCreated";
|
|
@@ -54,7 +55,7 @@ export declare const OrderResourceCreated: "OrderResourceCreated";
|
|
|
54
55
|
export declare const OfferStorageRequestCanceled: "OfferStorageRequestCanceled";
|
|
55
56
|
export declare const OfferStorageRequestCreated: "OfferStorageRequestCreated";
|
|
56
57
|
export declare const SecretRequestCreated: "SecretRequestCreated";
|
|
57
|
-
export type AbiEvent = typeof Approval | typeof Transfer | typeof RewardsClaimed | typeof TcbBenchmarkChanged | typeof TcbCompleted | typeof TcbInitialized | typeof TcbBanned | typeof DepositPartLocked | typeof DepositPartUnlocked | typeof DepositReplenished | typeof DepositWithdrawn | typeof OfferCreated | typeof OfferDisabled | typeof OfferEnabled | typeof TeeOfferCreated | typeof TeeOfferViolationRateChanged | typeof OrdersGroupCreated | typeof OrderCreated | typeof OrderStatusUpdated | typeof OrderAwaitingPaymentChanged | typeof OrderDepositRefilled | typeof OrderOptionsDepositSpentChanged | typeof OrderProfitUnlocked | typeof OrderChangeWithdrawn | typeof OrderEncryptedResultUpdated | typeof OrderProfitWithdrawn | typeof OrderStarted | typeof OrderOptionsChangeRequested | typeof OrderOptionsChanged | typeof OrderSlotCountUpdateRequested | typeof OrderSlotCountUpdated | typeof ProviderModified | typeof ProviderRegistered | typeof ProviderSecurityDepoRefilled | typeof ProviderSecurityDepoUnlocked | typeof ProviderViolationRateIncremented | 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 LoaderSecretPublicKeySessionUpdated | typeof LoaderSessionKeyUpdated | typeof OfferResourceCreated | typeof OrderResourceCreated | typeof OfferStorageRequestCanceled | typeof OfferStorageRequestCreated | typeof SecretRequestCreated;
|
|
58
|
+
export type AbiEvent = typeof Approval | typeof Transfer | typeof RewardsClaimed | typeof TcbBenchmarkChanged | typeof TcbCompleted | typeof TcbInitialized | typeof TcbBanned | typeof DepositPartLocked | typeof DepositPartUnlocked | typeof DepositReplenished | typeof DepositWithdrawn | typeof OfferCreated | typeof OfferDisabled | typeof OfferEnabled | typeof SetValueOfferRestrictions | typeof TeeOfferCreated | typeof TeeOfferViolationRateChanged | typeof OrdersGroupCreated | typeof OrderCreated | typeof OrderStatusUpdated | typeof OrderAwaitingPaymentChanged | typeof OrderDepositRefilled | typeof OrderOptionsDepositSpentChanged | typeof OrderProfitUnlocked | typeof OrderChangeWithdrawn | typeof OrderEncryptedResultUpdated | typeof OrderProfitWithdrawn | typeof OrderStarted | typeof OrderOptionsChangeRequested | typeof OrderOptionsChanged | typeof OrderSlotCountUpdateRequested | typeof OrderSlotCountUpdated | typeof ProviderModified | typeof ProviderRegistered | typeof ProviderSecurityDepoRefilled | typeof ProviderSecurityDepoUnlocked | typeof ProviderViolationRateIncremented | 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 LoaderSecretPublicKeySessionUpdated | typeof LoaderSessionKeyUpdated | typeof OfferResourceCreated | typeof OrderResourceCreated | typeof OfferStorageRequestCanceled | typeof OfferStorageRequestCreated | typeof SecretRequestCreated;
|
|
58
59
|
export declare const abi: readonly [{
|
|
59
60
|
readonly anonymous: false;
|
|
60
61
|
readonly inputs: readonly [{
|
|
@@ -873,6 +874,10 @@ export declare const abi: readonly [{
|
|
|
873
874
|
readonly internalType: "uint256";
|
|
874
875
|
readonly name: "teeOfferId";
|
|
875
876
|
readonly type: "uint256";
|
|
877
|
+
}, {
|
|
878
|
+
readonly internalType: "bytes32";
|
|
879
|
+
readonly name: "newDeviceId";
|
|
880
|
+
readonly type: "bytes32";
|
|
876
881
|
}];
|
|
877
882
|
readonly name: "initializeTcb";
|
|
878
883
|
readonly outputs: readonly [];
|
|
@@ -897,6 +902,10 @@ export declare const abi: readonly [{
|
|
|
897
902
|
readonly internalType: "uint256";
|
|
898
903
|
readonly name: "teeOfferId";
|
|
899
904
|
readonly type: "uint256";
|
|
905
|
+
}, {
|
|
906
|
+
readonly internalType: "bytes32";
|
|
907
|
+
readonly name: "deviceId";
|
|
908
|
+
readonly type: "bytes32";
|
|
900
909
|
}];
|
|
901
910
|
readonly name: "isTcbCreationAvailable";
|
|
902
911
|
readonly outputs: readonly [{
|
|
@@ -1240,6 +1249,20 @@ export declare const abi: readonly [{
|
|
|
1240
1249
|
}];
|
|
1241
1250
|
readonly stateMutability: "view";
|
|
1242
1251
|
readonly type: "function";
|
|
1252
|
+
}, {
|
|
1253
|
+
readonly inputs: readonly [{
|
|
1254
|
+
readonly internalType: "address";
|
|
1255
|
+
readonly name: "beneficiary";
|
|
1256
|
+
readonly type: "address";
|
|
1257
|
+
}, {
|
|
1258
|
+
readonly internalType: "uint256";
|
|
1259
|
+
readonly name: "amount";
|
|
1260
|
+
readonly type: "uint256";
|
|
1261
|
+
}];
|
|
1262
|
+
readonly name: "increaseForByApp";
|
|
1263
|
+
readonly outputs: readonly [];
|
|
1264
|
+
readonly stateMutability: "nonpayable";
|
|
1265
|
+
readonly type: "function";
|
|
1243
1266
|
}, {
|
|
1244
1267
|
readonly inputs: readonly [{
|
|
1245
1268
|
readonly internalType: "address";
|
|
@@ -1431,6 +1454,34 @@ export declare const abi: readonly [{
|
|
|
1431
1454
|
}];
|
|
1432
1455
|
readonly name: "OfferEnabled";
|
|
1433
1456
|
readonly type: "event";
|
|
1457
|
+
}, {
|
|
1458
|
+
readonly anonymous: false;
|
|
1459
|
+
readonly inputs: readonly [{
|
|
1460
|
+
readonly indexed: true;
|
|
1461
|
+
readonly internalType: "uint256";
|
|
1462
|
+
readonly name: "orderId";
|
|
1463
|
+
readonly type: "uint256";
|
|
1464
|
+
}, {
|
|
1465
|
+
readonly components: readonly [{
|
|
1466
|
+
readonly internalType: "uint256[]";
|
|
1467
|
+
readonly name: "offers";
|
|
1468
|
+
readonly type: "uint256[]";
|
|
1469
|
+
}, {
|
|
1470
|
+
readonly internalType: "enum OfferType[]";
|
|
1471
|
+
readonly name: "types";
|
|
1472
|
+
readonly type: "uint8[]";
|
|
1473
|
+
}, {
|
|
1474
|
+
readonly internalType: "uint64[]";
|
|
1475
|
+
readonly name: "versions";
|
|
1476
|
+
readonly type: "uint64[]";
|
|
1477
|
+
}];
|
|
1478
|
+
readonly indexed: false;
|
|
1479
|
+
readonly internalType: "struct ValueOfferRestrictionsSpecification";
|
|
1480
|
+
readonly name: "specification";
|
|
1481
|
+
readonly type: "tuple";
|
|
1482
|
+
}];
|
|
1483
|
+
readonly name: "SetValueOfferRestrictions";
|
|
1484
|
+
readonly type: "event";
|
|
1434
1485
|
}, {
|
|
1435
1486
|
readonly anonymous: false;
|
|
1436
1487
|
readonly inputs: readonly [{
|
|
@@ -1495,12 +1546,16 @@ export declare const abi: readonly [{
|
|
|
1495
1546
|
readonly type: "string";
|
|
1496
1547
|
}, {
|
|
1497
1548
|
readonly internalType: "string";
|
|
1498
|
-
readonly name: "
|
|
1549
|
+
readonly name: "tlb_DEPRECATED";
|
|
1499
1550
|
readonly type: "string";
|
|
1500
1551
|
}, {
|
|
1501
1552
|
readonly internalType: "string";
|
|
1502
1553
|
readonly name: "argsPublicKey";
|
|
1503
1554
|
readonly type: "string";
|
|
1555
|
+
}, {
|
|
1556
|
+
readonly internalType: "enum TeeOfferSubtype";
|
|
1557
|
+
readonly name: "subtype";
|
|
1558
|
+
readonly type: "uint8";
|
|
1504
1559
|
}];
|
|
1505
1560
|
readonly internalType: "struct TeeOfferInfo";
|
|
1506
1561
|
readonly name: "info";
|
|
@@ -1522,6 +1577,10 @@ export declare const abi: readonly [{
|
|
|
1522
1577
|
readonly internalType: "uint64";
|
|
1523
1578
|
readonly name: "gpuCores";
|
|
1524
1579
|
readonly type: "uint64";
|
|
1580
|
+
}, {
|
|
1581
|
+
readonly internalType: "uint64";
|
|
1582
|
+
readonly name: "vram";
|
|
1583
|
+
readonly type: "uint64";
|
|
1525
1584
|
}];
|
|
1526
1585
|
readonly internalType: "struct SlotInfo";
|
|
1527
1586
|
readonly name: "slotInfo";
|
|
@@ -1553,6 +1612,10 @@ export declare const abi: readonly [{
|
|
|
1553
1612
|
readonly internalType: "address";
|
|
1554
1613
|
readonly name: "providerAuth";
|
|
1555
1614
|
readonly type: "address";
|
|
1615
|
+
}, {
|
|
1616
|
+
readonly internalType: "enum OfferType";
|
|
1617
|
+
readonly name: "offerType";
|
|
1618
|
+
readonly type: "uint8";
|
|
1556
1619
|
}, {
|
|
1557
1620
|
readonly components: readonly [{
|
|
1558
1621
|
readonly internalType: "string";
|
|
@@ -1560,11 +1623,11 @@ export declare const abi: readonly [{
|
|
|
1560
1623
|
readonly type: "string";
|
|
1561
1624
|
}, {
|
|
1562
1625
|
readonly internalType: "enum OfferGroup";
|
|
1563
|
-
readonly name: "
|
|
1626
|
+
readonly name: "group_DEPRECATED";
|
|
1564
1627
|
readonly type: "uint8";
|
|
1565
1628
|
}, {
|
|
1566
1629
|
readonly internalType: "enum OfferType";
|
|
1567
|
-
readonly name: "
|
|
1630
|
+
readonly name: "offerType_DEPRECATED";
|
|
1568
1631
|
readonly type: "uint8";
|
|
1569
1632
|
}, {
|
|
1570
1633
|
readonly internalType: "bool";
|
|
@@ -1600,7 +1663,7 @@ export declare const abi: readonly [{
|
|
|
1600
1663
|
readonly type: "string";
|
|
1601
1664
|
}, {
|
|
1602
1665
|
readonly internalType: "string";
|
|
1603
|
-
readonly name: "
|
|
1666
|
+
readonly name: "linkage_DEPRECATED";
|
|
1604
1667
|
readonly type: "string";
|
|
1605
1668
|
}, {
|
|
1606
1669
|
readonly internalType: "string";
|
|
@@ -1610,6 +1673,18 @@ export declare const abi: readonly [{
|
|
|
1610
1673
|
readonly internalType: "string";
|
|
1611
1674
|
readonly name: "metadata";
|
|
1612
1675
|
readonly type: "string";
|
|
1676
|
+
}, {
|
|
1677
|
+
readonly internalType: "string";
|
|
1678
|
+
readonly name: "signatureKeyHash";
|
|
1679
|
+
readonly type: "string";
|
|
1680
|
+
}, {
|
|
1681
|
+
readonly internalType: "enum ValueOfferSubtype";
|
|
1682
|
+
readonly name: "subtype";
|
|
1683
|
+
readonly type: "uint8";
|
|
1684
|
+
}, {
|
|
1685
|
+
readonly internalType: "string";
|
|
1686
|
+
readonly name: "hardwareContext";
|
|
1687
|
+
readonly type: "string";
|
|
1613
1688
|
}];
|
|
1614
1689
|
readonly internalType: "struct ValueOfferInfo";
|
|
1615
1690
|
readonly name: "info";
|
|
@@ -1623,9 +1698,13 @@ export declare const abi: readonly [{
|
|
|
1623
1698
|
readonly internalType: "enum OfferType[]";
|
|
1624
1699
|
readonly name: "types";
|
|
1625
1700
|
readonly type: "uint8[]";
|
|
1701
|
+
}, {
|
|
1702
|
+
readonly internalType: "uint64[]";
|
|
1703
|
+
readonly name: "versions";
|
|
1704
|
+
readonly type: "uint64[]";
|
|
1626
1705
|
}];
|
|
1627
|
-
readonly internalType: "struct
|
|
1628
|
-
readonly name: "
|
|
1706
|
+
readonly internalType: "struct ValueOfferRestrictionsSpecification";
|
|
1707
|
+
readonly name: "restrictionsSpecification";
|
|
1629
1708
|
readonly type: "tuple";
|
|
1630
1709
|
}, {
|
|
1631
1710
|
readonly internalType: "bytes32";
|
|
@@ -1640,6 +1719,20 @@ export declare const abi: readonly [{
|
|
|
1640
1719
|
readonly outputs: readonly [];
|
|
1641
1720
|
readonly stateMutability: "nonpayable";
|
|
1642
1721
|
readonly type: "function";
|
|
1722
|
+
}, {
|
|
1723
|
+
readonly inputs: readonly [{
|
|
1724
|
+
readonly internalType: "uint256";
|
|
1725
|
+
readonly name: "offerId";
|
|
1726
|
+
readonly type: "uint256";
|
|
1727
|
+
}, {
|
|
1728
|
+
readonly internalType: "uint64";
|
|
1729
|
+
readonly name: "version";
|
|
1730
|
+
readonly type: "uint64";
|
|
1731
|
+
}];
|
|
1732
|
+
readonly name: "deleteOfferVersion";
|
|
1733
|
+
readonly outputs: readonly [];
|
|
1734
|
+
readonly stateMutability: "nonpayable";
|
|
1735
|
+
readonly type: "function";
|
|
1643
1736
|
}, {
|
|
1644
1737
|
readonly inputs: readonly [{
|
|
1645
1738
|
readonly internalType: "uint256";
|
|
@@ -1688,6 +1781,33 @@ export declare const abi: readonly [{
|
|
|
1688
1781
|
readonly outputs: readonly [];
|
|
1689
1782
|
readonly stateMutability: "nonpayable";
|
|
1690
1783
|
readonly type: "function";
|
|
1784
|
+
}, {
|
|
1785
|
+
readonly inputs: readonly [{
|
|
1786
|
+
readonly internalType: "uint256";
|
|
1787
|
+
readonly name: "offerId";
|
|
1788
|
+
readonly type: "uint256";
|
|
1789
|
+
}, {
|
|
1790
|
+
readonly internalType: "uint64";
|
|
1791
|
+
readonly name: "newVersion";
|
|
1792
|
+
readonly type: "uint64";
|
|
1793
|
+
}, {
|
|
1794
|
+
readonly components: readonly [{
|
|
1795
|
+
readonly internalType: "string";
|
|
1796
|
+
readonly name: "mrenclave";
|
|
1797
|
+
readonly type: "string";
|
|
1798
|
+
}, {
|
|
1799
|
+
readonly internalType: "string";
|
|
1800
|
+
readonly name: "mrsigner";
|
|
1801
|
+
readonly type: "string";
|
|
1802
|
+
}];
|
|
1803
|
+
readonly internalType: "struct OfferVersionInfo";
|
|
1804
|
+
readonly name: "newVersionInfo";
|
|
1805
|
+
readonly type: "tuple";
|
|
1806
|
+
}];
|
|
1807
|
+
readonly name: "setOfferNewVersion";
|
|
1808
|
+
readonly outputs: readonly [];
|
|
1809
|
+
readonly stateMutability: "nonpayable";
|
|
1810
|
+
readonly type: "function";
|
|
1691
1811
|
}, {
|
|
1692
1812
|
readonly inputs: readonly [{
|
|
1693
1813
|
readonly internalType: "uint256";
|
|
@@ -1724,6 +1844,10 @@ export declare const abi: readonly [{
|
|
|
1724
1844
|
readonly internalType: "uint64";
|
|
1725
1845
|
readonly name: "gpuCores";
|
|
1726
1846
|
readonly type: "uint64";
|
|
1847
|
+
}, {
|
|
1848
|
+
readonly internalType: "uint64";
|
|
1849
|
+
readonly name: "vram";
|
|
1850
|
+
readonly type: "uint64";
|
|
1727
1851
|
}];
|
|
1728
1852
|
readonly internalType: "struct SlotInfo";
|
|
1729
1853
|
readonly name: "newSlotInfo";
|
|
@@ -1766,12 +1890,16 @@ export declare const abi: readonly [{
|
|
|
1766
1890
|
readonly type: "string";
|
|
1767
1891
|
}, {
|
|
1768
1892
|
readonly internalType: "string";
|
|
1769
|
-
readonly name: "
|
|
1893
|
+
readonly name: "tlb_DEPRECATED";
|
|
1770
1894
|
readonly type: "string";
|
|
1771
1895
|
}, {
|
|
1772
1896
|
readonly internalType: "string";
|
|
1773
1897
|
readonly name: "argsPublicKey";
|
|
1774
1898
|
readonly type: "string";
|
|
1899
|
+
}, {
|
|
1900
|
+
readonly internalType: "enum TeeOfferSubtype";
|
|
1901
|
+
readonly name: "subtype";
|
|
1902
|
+
readonly type: "uint8";
|
|
1775
1903
|
}];
|
|
1776
1904
|
readonly internalType: "struct TeeOfferInfo";
|
|
1777
1905
|
readonly name: "newInfo";
|
|
@@ -1787,11 +1915,11 @@ export declare const abi: readonly [{
|
|
|
1787
1915
|
readonly name: "offerId";
|
|
1788
1916
|
readonly type: "uint256";
|
|
1789
1917
|
}, {
|
|
1790
|
-
readonly internalType: "
|
|
1791
|
-
readonly name: "
|
|
1792
|
-
readonly type: "
|
|
1918
|
+
readonly internalType: "enum TeeOfferSubtype";
|
|
1919
|
+
readonly name: "newSubtype";
|
|
1920
|
+
readonly type: "uint8";
|
|
1793
1921
|
}];
|
|
1794
|
-
readonly name: "
|
|
1922
|
+
readonly name: "setTeeOfferSubtype";
|
|
1795
1923
|
readonly outputs: readonly [];
|
|
1796
1924
|
readonly stateMutability: "nonpayable";
|
|
1797
1925
|
readonly type: "function";
|
|
@@ -1807,11 +1935,11 @@ export declare const abi: readonly [{
|
|
|
1807
1935
|
readonly type: "string";
|
|
1808
1936
|
}, {
|
|
1809
1937
|
readonly internalType: "enum OfferGroup";
|
|
1810
|
-
readonly name: "
|
|
1938
|
+
readonly name: "group_DEPRECATED";
|
|
1811
1939
|
readonly type: "uint8";
|
|
1812
1940
|
}, {
|
|
1813
1941
|
readonly internalType: "enum OfferType";
|
|
1814
|
-
readonly name: "
|
|
1942
|
+
readonly name: "offerType_DEPRECATED";
|
|
1815
1943
|
readonly type: "uint8";
|
|
1816
1944
|
}, {
|
|
1817
1945
|
readonly internalType: "bool";
|
|
@@ -1847,7 +1975,7 @@ export declare const abi: readonly [{
|
|
|
1847
1975
|
readonly type: "string";
|
|
1848
1976
|
}, {
|
|
1849
1977
|
readonly internalType: "string";
|
|
1850
|
-
readonly name: "
|
|
1978
|
+
readonly name: "linkage_DEPRECATED";
|
|
1851
1979
|
readonly type: "string";
|
|
1852
1980
|
}, {
|
|
1853
1981
|
readonly internalType: "string";
|
|
@@ -1857,10 +1985,32 @@ export declare const abi: readonly [{
|
|
|
1857
1985
|
readonly internalType: "string";
|
|
1858
1986
|
readonly name: "metadata";
|
|
1859
1987
|
readonly type: "string";
|
|
1988
|
+
}, {
|
|
1989
|
+
readonly internalType: "string";
|
|
1990
|
+
readonly name: "signatureKeyHash";
|
|
1991
|
+
readonly type: "string";
|
|
1992
|
+
}, {
|
|
1993
|
+
readonly internalType: "enum ValueOfferSubtype";
|
|
1994
|
+
readonly name: "subtype";
|
|
1995
|
+
readonly type: "uint8";
|
|
1996
|
+
}, {
|
|
1997
|
+
readonly internalType: "string";
|
|
1998
|
+
readonly name: "hardwareContext";
|
|
1999
|
+
readonly type: "string";
|
|
1860
2000
|
}];
|
|
1861
2001
|
readonly internalType: "struct ValueOfferInfo";
|
|
1862
2002
|
readonly name: "newInfo";
|
|
1863
2003
|
readonly type: "tuple";
|
|
2004
|
+
}];
|
|
2005
|
+
readonly name: "setValueOfferInfo";
|
|
2006
|
+
readonly outputs: readonly [];
|
|
2007
|
+
readonly stateMutability: "nonpayable";
|
|
2008
|
+
readonly type: "function";
|
|
2009
|
+
}, {
|
|
2010
|
+
readonly inputs: readonly [{
|
|
2011
|
+
readonly internalType: "uint256";
|
|
2012
|
+
readonly name: "offerId";
|
|
2013
|
+
readonly type: "uint256";
|
|
1864
2014
|
}, {
|
|
1865
2015
|
readonly components: readonly [{
|
|
1866
2016
|
readonly internalType: "uint256[]";
|
|
@@ -1870,12 +2020,30 @@ export declare const abi: readonly [{
|
|
|
1870
2020
|
readonly internalType: "enum OfferType[]";
|
|
1871
2021
|
readonly name: "types";
|
|
1872
2022
|
readonly type: "uint8[]";
|
|
2023
|
+
}, {
|
|
2024
|
+
readonly internalType: "uint64[]";
|
|
2025
|
+
readonly name: "versions";
|
|
2026
|
+
readonly type: "uint64[]";
|
|
1873
2027
|
}];
|
|
1874
|
-
readonly internalType: "struct
|
|
1875
|
-
readonly name: "
|
|
2028
|
+
readonly internalType: "struct ValueOfferRestrictionsSpecification";
|
|
2029
|
+
readonly name: "newSpecification";
|
|
1876
2030
|
readonly type: "tuple";
|
|
1877
2031
|
}];
|
|
1878
|
-
readonly name: "
|
|
2032
|
+
readonly name: "setValueOfferRestrictionsSpecification";
|
|
2033
|
+
readonly outputs: readonly [];
|
|
2034
|
+
readonly stateMutability: "nonpayable";
|
|
2035
|
+
readonly type: "function";
|
|
2036
|
+
}, {
|
|
2037
|
+
readonly inputs: readonly [{
|
|
2038
|
+
readonly internalType: "uint256";
|
|
2039
|
+
readonly name: "offerId";
|
|
2040
|
+
readonly type: "uint256";
|
|
2041
|
+
}, {
|
|
2042
|
+
readonly internalType: "enum ValueOfferSubtype";
|
|
2043
|
+
readonly name: "newSubtype";
|
|
2044
|
+
readonly type: "uint8";
|
|
2045
|
+
}];
|
|
2046
|
+
readonly name: "setValueOfferSubtype";
|
|
1879
2047
|
readonly outputs: readonly [];
|
|
1880
2048
|
readonly stateMutability: "nonpayable";
|
|
1881
2049
|
readonly type: "function";
|
|
@@ -1918,12 +2086,16 @@ export declare const abi: readonly [{
|
|
|
1918
2086
|
readonly type: "string";
|
|
1919
2087
|
}, {
|
|
1920
2088
|
readonly internalType: "string";
|
|
1921
|
-
readonly name: "
|
|
2089
|
+
readonly name: "tlb_DEPRECATED";
|
|
1922
2090
|
readonly type: "string";
|
|
1923
2091
|
}, {
|
|
1924
2092
|
readonly internalType: "string";
|
|
1925
2093
|
readonly name: "argsPublicKey";
|
|
1926
2094
|
readonly type: "string";
|
|
2095
|
+
}, {
|
|
2096
|
+
readonly internalType: "enum TeeOfferSubtype";
|
|
2097
|
+
readonly name: "subtype";
|
|
2098
|
+
readonly type: "uint8";
|
|
1927
2099
|
}];
|
|
1928
2100
|
readonly internalType: "struct TeeOfferInfo";
|
|
1929
2101
|
readonly name: "info";
|
|
@@ -1963,6 +2135,10 @@ export declare const abi: readonly [{
|
|
|
1963
2135
|
readonly internalType: "address";
|
|
1964
2136
|
readonly name: "providerAuth";
|
|
1965
2137
|
readonly type: "address";
|
|
2138
|
+
}, {
|
|
2139
|
+
readonly internalType: "enum OfferType";
|
|
2140
|
+
readonly name: "offerType";
|
|
2141
|
+
readonly type: "uint8";
|
|
1966
2142
|
}, {
|
|
1967
2143
|
readonly components: readonly [{
|
|
1968
2144
|
readonly internalType: "string";
|
|
@@ -1970,11 +2146,11 @@ export declare const abi: readonly [{
|
|
|
1970
2146
|
readonly type: "string";
|
|
1971
2147
|
}, {
|
|
1972
2148
|
readonly internalType: "enum OfferGroup";
|
|
1973
|
-
readonly name: "
|
|
2149
|
+
readonly name: "group_DEPRECATED";
|
|
1974
2150
|
readonly type: "uint8";
|
|
1975
2151
|
}, {
|
|
1976
2152
|
readonly internalType: "enum OfferType";
|
|
1977
|
-
readonly name: "
|
|
2153
|
+
readonly name: "offerType_DEPRECATED";
|
|
1978
2154
|
readonly type: "uint8";
|
|
1979
2155
|
}, {
|
|
1980
2156
|
readonly internalType: "bool";
|
|
@@ -2010,7 +2186,7 @@ export declare const abi: readonly [{
|
|
|
2010
2186
|
readonly type: "string";
|
|
2011
2187
|
}, {
|
|
2012
2188
|
readonly internalType: "string";
|
|
2013
|
-
readonly name: "
|
|
2189
|
+
readonly name: "linkage_DEPRECATED";
|
|
2014
2190
|
readonly type: "string";
|
|
2015
2191
|
}, {
|
|
2016
2192
|
readonly internalType: "string";
|
|
@@ -2020,6 +2196,18 @@ export declare const abi: readonly [{
|
|
|
2020
2196
|
readonly internalType: "string";
|
|
2021
2197
|
readonly name: "metadata";
|
|
2022
2198
|
readonly type: "string";
|
|
2199
|
+
}, {
|
|
2200
|
+
readonly internalType: "string";
|
|
2201
|
+
readonly name: "signatureKeyHash";
|
|
2202
|
+
readonly type: "string";
|
|
2203
|
+
}, {
|
|
2204
|
+
readonly internalType: "enum ValueOfferSubtype";
|
|
2205
|
+
readonly name: "subtype";
|
|
2206
|
+
readonly type: "uint8";
|
|
2207
|
+
}, {
|
|
2208
|
+
readonly internalType: "string";
|
|
2209
|
+
readonly name: "hardwareContext";
|
|
2210
|
+
readonly type: "string";
|
|
2023
2211
|
}];
|
|
2024
2212
|
readonly internalType: "struct ValueOfferInfo";
|
|
2025
2213
|
readonly name: "info";
|
|
@@ -2049,29 +2237,6 @@ export declare const abi: readonly [{
|
|
|
2049
2237
|
}];
|
|
2050
2238
|
readonly stateMutability: "view";
|
|
2051
2239
|
readonly type: "function";
|
|
2052
|
-
}, {
|
|
2053
|
-
readonly inputs: readonly [{
|
|
2054
|
-
readonly internalType: "uint256";
|
|
2055
|
-
readonly name: "offerId";
|
|
2056
|
-
readonly type: "uint256";
|
|
2057
|
-
}];
|
|
2058
|
-
readonly name: "getOfferInitialRestrictions";
|
|
2059
|
-
readonly outputs: readonly [{
|
|
2060
|
-
readonly components: readonly [{
|
|
2061
|
-
readonly internalType: "uint256[]";
|
|
2062
|
-
readonly name: "offers";
|
|
2063
|
-
readonly type: "uint256[]";
|
|
2064
|
-
}, {
|
|
2065
|
-
readonly internalType: "enum OfferType[]";
|
|
2066
|
-
readonly name: "types";
|
|
2067
|
-
readonly type: "uint8[]";
|
|
2068
|
-
}];
|
|
2069
|
-
readonly internalType: "struct ValueOfferInitialRestrictions";
|
|
2070
|
-
readonly name: "ret";
|
|
2071
|
-
readonly type: "tuple";
|
|
2072
|
-
}];
|
|
2073
|
-
readonly stateMutability: "view";
|
|
2074
|
-
readonly type: "function";
|
|
2075
2240
|
}, {
|
|
2076
2241
|
readonly inputs: readonly [{
|
|
2077
2242
|
readonly internalType: "uint256";
|
|
@@ -2161,6 +2326,33 @@ export declare const abi: readonly [{
|
|
|
2161
2326
|
}];
|
|
2162
2327
|
readonly stateMutability: "view";
|
|
2163
2328
|
readonly type: "function";
|
|
2329
|
+
}, {
|
|
2330
|
+
readonly inputs: readonly [{
|
|
2331
|
+
readonly internalType: "uint256";
|
|
2332
|
+
readonly name: "offerId";
|
|
2333
|
+
readonly type: "uint256";
|
|
2334
|
+
}];
|
|
2335
|
+
readonly name: "getOfferRestrictionsSpecification";
|
|
2336
|
+
readonly outputs: readonly [{
|
|
2337
|
+
readonly components: readonly [{
|
|
2338
|
+
readonly internalType: "uint256[]";
|
|
2339
|
+
readonly name: "offers";
|
|
2340
|
+
readonly type: "uint256[]";
|
|
2341
|
+
}, {
|
|
2342
|
+
readonly internalType: "enum OfferType[]";
|
|
2343
|
+
readonly name: "types";
|
|
2344
|
+
readonly type: "uint8[]";
|
|
2345
|
+
}, {
|
|
2346
|
+
readonly internalType: "uint64[]";
|
|
2347
|
+
readonly name: "versions";
|
|
2348
|
+
readonly type: "uint64[]";
|
|
2349
|
+
}];
|
|
2350
|
+
readonly internalType: "struct ValueOfferRestrictionsSpecification";
|
|
2351
|
+
readonly name: "ret";
|
|
2352
|
+
readonly type: "tuple";
|
|
2353
|
+
}];
|
|
2354
|
+
readonly stateMutability: "view";
|
|
2355
|
+
readonly type: "function";
|
|
2164
2356
|
}, {
|
|
2165
2357
|
readonly inputs: readonly [{
|
|
2166
2358
|
readonly internalType: "uint256";
|
|
@@ -2175,6 +2367,60 @@ export declare const abi: readonly [{
|
|
|
2175
2367
|
}];
|
|
2176
2368
|
readonly stateMutability: "view";
|
|
2177
2369
|
readonly type: "function";
|
|
2370
|
+
}, {
|
|
2371
|
+
readonly inputs: readonly [{
|
|
2372
|
+
readonly internalType: "uint256";
|
|
2373
|
+
readonly name: "offerId";
|
|
2374
|
+
readonly type: "uint256";
|
|
2375
|
+
}, {
|
|
2376
|
+
readonly internalType: "uint64";
|
|
2377
|
+
readonly name: "version";
|
|
2378
|
+
readonly type: "uint64";
|
|
2379
|
+
}];
|
|
2380
|
+
readonly name: "getOfferVersion";
|
|
2381
|
+
readonly outputs: readonly [{
|
|
2382
|
+
readonly components: readonly [{
|
|
2383
|
+
readonly internalType: "uint64";
|
|
2384
|
+
readonly name: "version";
|
|
2385
|
+
readonly type: "uint64";
|
|
2386
|
+
}, {
|
|
2387
|
+
readonly components: readonly [{
|
|
2388
|
+
readonly internalType: "string";
|
|
2389
|
+
readonly name: "mrenclave";
|
|
2390
|
+
readonly type: "string";
|
|
2391
|
+
}, {
|
|
2392
|
+
readonly internalType: "string";
|
|
2393
|
+
readonly name: "mrsigner";
|
|
2394
|
+
readonly type: "string";
|
|
2395
|
+
}];
|
|
2396
|
+
readonly internalType: "struct OfferVersionInfo";
|
|
2397
|
+
readonly name: "info";
|
|
2398
|
+
readonly type: "tuple";
|
|
2399
|
+
}, {
|
|
2400
|
+
readonly internalType: "enum OfferVersionStatus";
|
|
2401
|
+
readonly name: "status";
|
|
2402
|
+
readonly type: "uint8";
|
|
2403
|
+
}];
|
|
2404
|
+
readonly internalType: "struct OfferVersion";
|
|
2405
|
+
readonly name: "";
|
|
2406
|
+
readonly type: "tuple";
|
|
2407
|
+
}];
|
|
2408
|
+
readonly stateMutability: "view";
|
|
2409
|
+
readonly type: "function";
|
|
2410
|
+
}, {
|
|
2411
|
+
readonly inputs: readonly [{
|
|
2412
|
+
readonly internalType: "uint256";
|
|
2413
|
+
readonly name: "offerId";
|
|
2414
|
+
readonly type: "uint256";
|
|
2415
|
+
}];
|
|
2416
|
+
readonly name: "getOfferVersionsCount";
|
|
2417
|
+
readonly outputs: readonly [{
|
|
2418
|
+
readonly internalType: "uint256";
|
|
2419
|
+
readonly name: "";
|
|
2420
|
+
readonly type: "uint256";
|
|
2421
|
+
}];
|
|
2422
|
+
readonly stateMutability: "view";
|
|
2423
|
+
readonly type: "function";
|
|
2178
2424
|
}, {
|
|
2179
2425
|
readonly inputs: readonly [{
|
|
2180
2426
|
readonly internalType: "enum OfferType";
|
|
@@ -2234,12 +2480,16 @@ export declare const abi: readonly [{
|
|
|
2234
2480
|
readonly type: "string";
|
|
2235
2481
|
}, {
|
|
2236
2482
|
readonly internalType: "string";
|
|
2237
|
-
readonly name: "
|
|
2483
|
+
readonly name: "tlb_DEPRECATED";
|
|
2238
2484
|
readonly type: "string";
|
|
2239
2485
|
}, {
|
|
2240
2486
|
readonly internalType: "string";
|
|
2241
2487
|
readonly name: "argsPublicKey";
|
|
2242
2488
|
readonly type: "string";
|
|
2489
|
+
}, {
|
|
2490
|
+
readonly internalType: "enum TeeOfferSubtype";
|
|
2491
|
+
readonly name: "subtype";
|
|
2492
|
+
readonly type: "uint8";
|
|
2243
2493
|
}];
|
|
2244
2494
|
readonly internalType: "struct TeeOfferInfo";
|
|
2245
2495
|
readonly name: "info";
|
|
@@ -2279,6 +2529,10 @@ export declare const abi: readonly [{
|
|
|
2279
2529
|
readonly internalType: "uint64";
|
|
2280
2530
|
readonly name: "gpuCores";
|
|
2281
2531
|
readonly type: "uint64";
|
|
2532
|
+
}, {
|
|
2533
|
+
readonly internalType: "uint64";
|
|
2534
|
+
readonly name: "vram";
|
|
2535
|
+
readonly type: "uint64";
|
|
2282
2536
|
}];
|
|
2283
2537
|
readonly internalType: "struct SlotInfo";
|
|
2284
2538
|
readonly name: "";
|
|
@@ -2301,11 +2555,11 @@ export declare const abi: readonly [{
|
|
|
2301
2555
|
readonly name: "offerId";
|
|
2302
2556
|
readonly type: "uint256";
|
|
2303
2557
|
}];
|
|
2304
|
-
readonly name: "
|
|
2558
|
+
readonly name: "getTeeOfferSubtype";
|
|
2305
2559
|
readonly outputs: readonly [{
|
|
2306
|
-
readonly internalType: "
|
|
2560
|
+
readonly internalType: "enum TeeOfferSubtype";
|
|
2307
2561
|
readonly name: "";
|
|
2308
|
-
readonly type: "
|
|
2562
|
+
readonly type: "uint8";
|
|
2309
2563
|
}];
|
|
2310
2564
|
readonly stateMutability: "view";
|
|
2311
2565
|
readonly type: "function";
|
|
@@ -2325,6 +2579,10 @@ export declare const abi: readonly [{
|
|
|
2325
2579
|
readonly internalType: "address";
|
|
2326
2580
|
readonly name: "providerAuth";
|
|
2327
2581
|
readonly type: "address";
|
|
2582
|
+
}, {
|
|
2583
|
+
readonly internalType: "enum OfferType";
|
|
2584
|
+
readonly name: "offerType";
|
|
2585
|
+
readonly type: "uint8";
|
|
2328
2586
|
}, {
|
|
2329
2587
|
readonly components: readonly [{
|
|
2330
2588
|
readonly internalType: "string";
|
|
@@ -2332,11 +2590,11 @@ export declare const abi: readonly [{
|
|
|
2332
2590
|
readonly type: "string";
|
|
2333
2591
|
}, {
|
|
2334
2592
|
readonly internalType: "enum OfferGroup";
|
|
2335
|
-
readonly name: "
|
|
2593
|
+
readonly name: "group_DEPRECATED";
|
|
2336
2594
|
readonly type: "uint8";
|
|
2337
2595
|
}, {
|
|
2338
2596
|
readonly internalType: "enum OfferType";
|
|
2339
|
-
readonly name: "
|
|
2597
|
+
readonly name: "offerType_DEPRECATED";
|
|
2340
2598
|
readonly type: "uint8";
|
|
2341
2599
|
}, {
|
|
2342
2600
|
readonly internalType: "bool";
|
|
@@ -2372,7 +2630,7 @@ export declare const abi: readonly [{
|
|
|
2372
2630
|
readonly type: "string";
|
|
2373
2631
|
}, {
|
|
2374
2632
|
readonly internalType: "string";
|
|
2375
|
-
readonly name: "
|
|
2633
|
+
readonly name: "linkage_DEPRECATED";
|
|
2376
2634
|
readonly type: "string";
|
|
2377
2635
|
}, {
|
|
2378
2636
|
readonly internalType: "string";
|
|
@@ -2382,12 +2640,24 @@ export declare const abi: readonly [{
|
|
|
2382
2640
|
readonly internalType: "string";
|
|
2383
2641
|
readonly name: "metadata";
|
|
2384
2642
|
readonly type: "string";
|
|
2385
|
-
}
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2643
|
+
}, {
|
|
2644
|
+
readonly internalType: "string";
|
|
2645
|
+
readonly name: "signatureKeyHash";
|
|
2646
|
+
readonly type: "string";
|
|
2647
|
+
}, {
|
|
2648
|
+
readonly internalType: "enum ValueOfferSubtype";
|
|
2649
|
+
readonly name: "subtype";
|
|
2650
|
+
readonly type: "uint8";
|
|
2651
|
+
}, {
|
|
2652
|
+
readonly internalType: "string";
|
|
2653
|
+
readonly name: "hardwareContext";
|
|
2654
|
+
readonly type: "string";
|
|
2655
|
+
}];
|
|
2656
|
+
readonly internalType: "struct ValueOfferInfo";
|
|
2657
|
+
readonly name: "info";
|
|
2658
|
+
readonly type: "tuple";
|
|
2659
|
+
}, {
|
|
2660
|
+
readonly internalType: "bool";
|
|
2391
2661
|
readonly name: "enabled";
|
|
2392
2662
|
readonly type: "bool";
|
|
2393
2663
|
}];
|
|
@@ -2397,6 +2667,20 @@ export declare const abi: readonly [{
|
|
|
2397
2667
|
}];
|
|
2398
2668
|
readonly stateMutability: "view";
|
|
2399
2669
|
readonly type: "function";
|
|
2670
|
+
}, {
|
|
2671
|
+
readonly inputs: readonly [{
|
|
2672
|
+
readonly internalType: "uint256";
|
|
2673
|
+
readonly name: "offerId";
|
|
2674
|
+
readonly type: "uint256";
|
|
2675
|
+
}];
|
|
2676
|
+
readonly name: "getValueOfferSubtype";
|
|
2677
|
+
readonly outputs: readonly [{
|
|
2678
|
+
readonly internalType: "enum ValueOfferSubtype";
|
|
2679
|
+
readonly name: "";
|
|
2680
|
+
readonly type: "uint8";
|
|
2681
|
+
}];
|
|
2682
|
+
readonly stateMutability: "view";
|
|
2683
|
+
readonly type: "function";
|
|
2400
2684
|
}, {
|
|
2401
2685
|
readonly inputs: readonly [{
|
|
2402
2686
|
readonly internalType: "uint256";
|
|
@@ -2411,6 +2695,32 @@ export declare const abi: readonly [{
|
|
|
2411
2695
|
}];
|
|
2412
2696
|
readonly stateMutability: "view";
|
|
2413
2697
|
readonly type: "function";
|
|
2698
|
+
}, {
|
|
2699
|
+
readonly inputs: readonly [{
|
|
2700
|
+
readonly internalType: "uint256";
|
|
2701
|
+
readonly name: "firstId";
|
|
2702
|
+
readonly type: "uint256";
|
|
2703
|
+
}, {
|
|
2704
|
+
readonly internalType: "uint64";
|
|
2705
|
+
readonly name: "firstVersion";
|
|
2706
|
+
readonly type: "uint64";
|
|
2707
|
+
}, {
|
|
2708
|
+
readonly internalType: "uint256";
|
|
2709
|
+
readonly name: "secondId";
|
|
2710
|
+
readonly type: "uint256";
|
|
2711
|
+
}, {
|
|
2712
|
+
readonly internalType: "uint64";
|
|
2713
|
+
readonly name: "secondVersion";
|
|
2714
|
+
readonly type: "uint64";
|
|
2715
|
+
}];
|
|
2716
|
+
readonly name: "isMagicallySameOfferVersion";
|
|
2717
|
+
readonly outputs: readonly [{
|
|
2718
|
+
readonly internalType: "bool";
|
|
2719
|
+
readonly name: "";
|
|
2720
|
+
readonly type: "bool";
|
|
2721
|
+
}];
|
|
2722
|
+
readonly stateMutability: "pure";
|
|
2723
|
+
readonly type: "function";
|
|
2414
2724
|
}, {
|
|
2415
2725
|
readonly inputs: readonly [{
|
|
2416
2726
|
readonly internalType: "uint256";
|
|
@@ -2498,6 +2808,10 @@ export declare const abi: readonly [{
|
|
|
2498
2808
|
readonly internalType: "uint256";
|
|
2499
2809
|
readonly name: "otherOfferId";
|
|
2500
2810
|
readonly type: "uint256";
|
|
2811
|
+
}, {
|
|
2812
|
+
readonly internalType: "uint64";
|
|
2813
|
+
readonly name: "otherOfferVersion";
|
|
2814
|
+
readonly type: "uint64";
|
|
2501
2815
|
}];
|
|
2502
2816
|
readonly name: "isOfferRestrictionsPermitOtherOffer";
|
|
2503
2817
|
readonly outputs: readonly [{
|
|
@@ -2507,6 +2821,24 @@ export declare const abi: readonly [{
|
|
|
2507
2821
|
}];
|
|
2508
2822
|
readonly stateMutability: "view";
|
|
2509
2823
|
readonly type: "function";
|
|
2824
|
+
}, {
|
|
2825
|
+
readonly inputs: readonly [{
|
|
2826
|
+
readonly internalType: "uint256";
|
|
2827
|
+
readonly name: "offerId";
|
|
2828
|
+
readonly type: "uint256";
|
|
2829
|
+
}, {
|
|
2830
|
+
readonly internalType: "uint64";
|
|
2831
|
+
readonly name: "version";
|
|
2832
|
+
readonly type: "uint64";
|
|
2833
|
+
}];
|
|
2834
|
+
readonly name: "isOfferVersionAvailable";
|
|
2835
|
+
readonly outputs: readonly [{
|
|
2836
|
+
readonly internalType: "bool";
|
|
2837
|
+
readonly name: "";
|
|
2838
|
+
readonly type: "bool";
|
|
2839
|
+
}];
|
|
2840
|
+
readonly stateMutability: "view";
|
|
2841
|
+
readonly type: "function";
|
|
2510
2842
|
}, {
|
|
2511
2843
|
readonly inputs: readonly [{
|
|
2512
2844
|
readonly internalType: "uint256";
|
|
@@ -2713,6 +3045,10 @@ export declare const abi: readonly [{
|
|
|
2713
3045
|
readonly internalType: "uint256";
|
|
2714
3046
|
readonly name: "maxPriceSlippage";
|
|
2715
3047
|
readonly type: "uint256";
|
|
3048
|
+
}, {
|
|
3049
|
+
readonly internalType: "uint64";
|
|
3050
|
+
readonly name: "offerVersion";
|
|
3051
|
+
readonly type: "uint64";
|
|
2716
3052
|
}];
|
|
2717
3053
|
readonly internalType: "struct OrderInfo";
|
|
2718
3054
|
readonly name: "info";
|
|
@@ -2741,12 +3077,20 @@ export declare const abi: readonly [{
|
|
|
2741
3077
|
}, {
|
|
2742
3078
|
readonly components: readonly [{
|
|
2743
3079
|
readonly internalType: "uint256[]";
|
|
2744
|
-
readonly name: "
|
|
3080
|
+
readonly name: "inputOffersIds";
|
|
2745
3081
|
readonly type: "uint256[]";
|
|
2746
3082
|
}, {
|
|
2747
3083
|
readonly internalType: "uint256";
|
|
2748
|
-
readonly name: "
|
|
3084
|
+
readonly name: "outputOfferId";
|
|
2749
3085
|
readonly type: "uint256";
|
|
3086
|
+
}, {
|
|
3087
|
+
readonly internalType: "uint64[]";
|
|
3088
|
+
readonly name: "inputOffersVersions";
|
|
3089
|
+
readonly type: "uint64[]";
|
|
3090
|
+
}, {
|
|
3091
|
+
readonly internalType: "uint64";
|
|
3092
|
+
readonly name: "outputOfferVersion";
|
|
3093
|
+
readonly type: "uint64";
|
|
2750
3094
|
}];
|
|
2751
3095
|
readonly internalType: "struct OrderArgs";
|
|
2752
3096
|
readonly name: "args";
|
|
@@ -2806,6 +3150,10 @@ export declare const abi: readonly [{
|
|
|
2806
3150
|
readonly internalType: "uint256";
|
|
2807
3151
|
readonly name: "maxPriceSlippage";
|
|
2808
3152
|
readonly type: "uint256";
|
|
3153
|
+
}, {
|
|
3154
|
+
readonly internalType: "uint64";
|
|
3155
|
+
readonly name: "offerVersion";
|
|
3156
|
+
readonly type: "uint64";
|
|
2809
3157
|
}];
|
|
2810
3158
|
readonly internalType: "struct OrderInfo";
|
|
2811
3159
|
readonly name: "info";
|
|
@@ -2834,12 +3182,20 @@ export declare const abi: readonly [{
|
|
|
2834
3182
|
}, {
|
|
2835
3183
|
readonly components: readonly [{
|
|
2836
3184
|
readonly internalType: "uint256[]";
|
|
2837
|
-
readonly name: "
|
|
3185
|
+
readonly name: "inputOffersIds";
|
|
2838
3186
|
readonly type: "uint256[]";
|
|
2839
3187
|
}, {
|
|
2840
3188
|
readonly internalType: "uint256";
|
|
2841
|
-
readonly name: "
|
|
3189
|
+
readonly name: "outputOfferId";
|
|
2842
3190
|
readonly type: "uint256";
|
|
3191
|
+
}, {
|
|
3192
|
+
readonly internalType: "uint64[]";
|
|
3193
|
+
readonly name: "inputOffersVersions";
|
|
3194
|
+
readonly type: "uint64[]";
|
|
3195
|
+
}, {
|
|
3196
|
+
readonly internalType: "uint64";
|
|
3197
|
+
readonly name: "outputOfferVersion";
|
|
3198
|
+
readonly type: "uint64";
|
|
2843
3199
|
}];
|
|
2844
3200
|
readonly internalType: "struct OrderArgs";
|
|
2845
3201
|
readonly name: "args";
|
|
@@ -2899,6 +3255,10 @@ export declare const abi: readonly [{
|
|
|
2899
3255
|
readonly internalType: "uint256";
|
|
2900
3256
|
readonly name: "maxPriceSlippage";
|
|
2901
3257
|
readonly type: "uint256";
|
|
3258
|
+
}, {
|
|
3259
|
+
readonly internalType: "uint64";
|
|
3260
|
+
readonly name: "offerVersion";
|
|
3261
|
+
readonly type: "uint64";
|
|
2902
3262
|
}];
|
|
2903
3263
|
readonly internalType: "struct OrderInfo";
|
|
2904
3264
|
readonly name: "suborderInfo";
|
|
@@ -2927,12 +3287,20 @@ export declare const abi: readonly [{
|
|
|
2927
3287
|
}, {
|
|
2928
3288
|
readonly components: readonly [{
|
|
2929
3289
|
readonly internalType: "uint256[]";
|
|
2930
|
-
readonly name: "
|
|
3290
|
+
readonly name: "inputOffersIds";
|
|
2931
3291
|
readonly type: "uint256[]";
|
|
2932
3292
|
}, {
|
|
2933
3293
|
readonly internalType: "uint256";
|
|
2934
|
-
readonly name: "
|
|
3294
|
+
readonly name: "outputOfferId";
|
|
2935
3295
|
readonly type: "uint256";
|
|
3296
|
+
}, {
|
|
3297
|
+
readonly internalType: "uint64[]";
|
|
3298
|
+
readonly name: "inputOffersVersions";
|
|
3299
|
+
readonly type: "uint64[]";
|
|
3300
|
+
}, {
|
|
3301
|
+
readonly internalType: "uint64";
|
|
3302
|
+
readonly name: "outputOfferVersion";
|
|
3303
|
+
readonly type: "uint64";
|
|
2936
3304
|
}];
|
|
2937
3305
|
readonly internalType: "struct OrderArgs";
|
|
2938
3306
|
readonly name: "suborderArgs";
|
|
@@ -3001,6 +3369,10 @@ export declare const abi: readonly [{
|
|
|
3001
3369
|
readonly internalType: "uint256";
|
|
3002
3370
|
readonly name: "maxPriceSlippage";
|
|
3003
3371
|
readonly type: "uint256";
|
|
3372
|
+
}, {
|
|
3373
|
+
readonly internalType: "uint64";
|
|
3374
|
+
readonly name: "offerVersion";
|
|
3375
|
+
readonly type: "uint64";
|
|
3004
3376
|
}];
|
|
3005
3377
|
readonly internalType: "struct OrderInfo";
|
|
3006
3378
|
readonly name: "suborderInfo";
|
|
@@ -3029,12 +3401,20 @@ export declare const abi: readonly [{
|
|
|
3029
3401
|
}, {
|
|
3030
3402
|
readonly components: readonly [{
|
|
3031
3403
|
readonly internalType: "uint256[]";
|
|
3032
|
-
readonly name: "
|
|
3404
|
+
readonly name: "inputOffersIds";
|
|
3033
3405
|
readonly type: "uint256[]";
|
|
3034
3406
|
}, {
|
|
3035
3407
|
readonly internalType: "uint256";
|
|
3036
|
-
readonly name: "
|
|
3408
|
+
readonly name: "outputOfferId";
|
|
3037
3409
|
readonly type: "uint256";
|
|
3410
|
+
}, {
|
|
3411
|
+
readonly internalType: "uint64[]";
|
|
3412
|
+
readonly name: "inputOffersVersions";
|
|
3413
|
+
readonly type: "uint64[]";
|
|
3414
|
+
}, {
|
|
3415
|
+
readonly internalType: "uint64";
|
|
3416
|
+
readonly name: "outputOfferVersion";
|
|
3417
|
+
readonly type: "uint64";
|
|
3038
3418
|
}];
|
|
3039
3419
|
readonly internalType: "struct OrderArgs";
|
|
3040
3420
|
readonly name: "suborderArgs";
|
|
@@ -3141,6 +3521,24 @@ export declare const abi: readonly [{
|
|
|
3141
3521
|
}];
|
|
3142
3522
|
readonly name: "OrderProfitUnlocked";
|
|
3143
3523
|
readonly type: "event";
|
|
3524
|
+
}, {
|
|
3525
|
+
readonly inputs: readonly [{
|
|
3526
|
+
readonly internalType: "uint256";
|
|
3527
|
+
readonly name: "orderId";
|
|
3528
|
+
readonly type: "uint256";
|
|
3529
|
+
}, {
|
|
3530
|
+
readonly internalType: "uint256";
|
|
3531
|
+
readonly name: "amount";
|
|
3532
|
+
readonly type: "uint256";
|
|
3533
|
+
}];
|
|
3534
|
+
readonly name: "debitOrderDepositByApp";
|
|
3535
|
+
readonly outputs: readonly [{
|
|
3536
|
+
readonly internalType: "uint256";
|
|
3537
|
+
readonly name: "";
|
|
3538
|
+
readonly type: "uint256";
|
|
3539
|
+
}];
|
|
3540
|
+
readonly stateMutability: "nonpayable";
|
|
3541
|
+
readonly type: "function";
|
|
3144
3542
|
}, {
|
|
3145
3543
|
readonly inputs: readonly [{
|
|
3146
3544
|
readonly internalType: "uint256";
|
|
@@ -3366,6 +3764,20 @@ export declare const abi: readonly [{
|
|
|
3366
3764
|
readonly outputs: readonly [];
|
|
3367
3765
|
readonly stateMutability: "nonpayable";
|
|
3368
3766
|
readonly type: "function";
|
|
3767
|
+
}, {
|
|
3768
|
+
readonly inputs: readonly [{
|
|
3769
|
+
readonly internalType: "uint256";
|
|
3770
|
+
readonly name: "orderId";
|
|
3771
|
+
readonly type: "uint256";
|
|
3772
|
+
}, {
|
|
3773
|
+
readonly internalType: "string";
|
|
3774
|
+
readonly name: "newCertificate";
|
|
3775
|
+
readonly type: "string";
|
|
3776
|
+
}];
|
|
3777
|
+
readonly name: "setOrderCertificate";
|
|
3778
|
+
readonly outputs: readonly [];
|
|
3779
|
+
readonly stateMutability: "nonpayable";
|
|
3780
|
+
readonly type: "function";
|
|
3369
3781
|
}, {
|
|
3370
3782
|
readonly inputs: readonly [{
|
|
3371
3783
|
readonly internalType: "uint256";
|
|
@@ -3639,11 +4051,11 @@ export declare const abi: readonly [{
|
|
|
3639
4051
|
readonly name: "subOfferId";
|
|
3640
4052
|
readonly type: "uint256";
|
|
3641
4053
|
}, {
|
|
3642
|
-
readonly internalType: "
|
|
3643
|
-
readonly name: "
|
|
3644
|
-
readonly type: "
|
|
4054
|
+
readonly internalType: "uint64";
|
|
4055
|
+
readonly name: "subOfferVersion";
|
|
4056
|
+
readonly type: "uint64";
|
|
3645
4057
|
}];
|
|
3646
|
-
readonly name: "
|
|
4058
|
+
readonly name: "checkParentOrderArgsCompliesWithSubOfferRestrictions";
|
|
3647
4059
|
readonly outputs: readonly [];
|
|
3648
4060
|
readonly stateMutability: "view";
|
|
3649
4061
|
readonly type: "function";
|
|
@@ -3733,6 +4145,10 @@ export declare const abi: readonly [{
|
|
|
3733
4145
|
readonly internalType: "uint256";
|
|
3734
4146
|
readonly name: "maxPriceSlippage";
|
|
3735
4147
|
readonly type: "uint256";
|
|
4148
|
+
}, {
|
|
4149
|
+
readonly internalType: "uint64";
|
|
4150
|
+
readonly name: "offerVersion";
|
|
4151
|
+
readonly type: "uint64";
|
|
3736
4152
|
}];
|
|
3737
4153
|
readonly internalType: "struct OrderInfo";
|
|
3738
4154
|
readonly name: "";
|
|
@@ -3763,12 +4179,20 @@ export declare const abi: readonly [{
|
|
|
3763
4179
|
readonly outputs: readonly [{
|
|
3764
4180
|
readonly components: readonly [{
|
|
3765
4181
|
readonly internalType: "uint256[]";
|
|
3766
|
-
readonly name: "
|
|
4182
|
+
readonly name: "inputOffersIds";
|
|
3767
4183
|
readonly type: "uint256[]";
|
|
3768
4184
|
}, {
|
|
3769
4185
|
readonly internalType: "uint256";
|
|
3770
|
-
readonly name: "
|
|
4186
|
+
readonly name: "outputOfferId";
|
|
3771
4187
|
readonly type: "uint256";
|
|
4188
|
+
}, {
|
|
4189
|
+
readonly internalType: "uint64[]";
|
|
4190
|
+
readonly name: "inputOffersVersions";
|
|
4191
|
+
readonly type: "uint64[]";
|
|
4192
|
+
}, {
|
|
4193
|
+
readonly internalType: "uint64";
|
|
4194
|
+
readonly name: "outputOfferVersion";
|
|
4195
|
+
readonly type: "uint64";
|
|
3772
4196
|
}];
|
|
3773
4197
|
readonly internalType: "struct OrderArgs";
|
|
3774
4198
|
readonly name: "";
|
|
@@ -3776,6 +4200,34 @@ export declare const abi: readonly [{
|
|
|
3776
4200
|
}];
|
|
3777
4201
|
readonly stateMutability: "view";
|
|
3778
4202
|
readonly type: "function";
|
|
4203
|
+
}, {
|
|
4204
|
+
readonly inputs: readonly [{
|
|
4205
|
+
readonly internalType: "uint256";
|
|
4206
|
+
readonly name: "orderId";
|
|
4207
|
+
readonly type: "uint256";
|
|
4208
|
+
}];
|
|
4209
|
+
readonly name: "getOrderCertificate";
|
|
4210
|
+
readonly outputs: readonly [{
|
|
4211
|
+
readonly internalType: "string";
|
|
4212
|
+
readonly name: "";
|
|
4213
|
+
readonly type: "string";
|
|
4214
|
+
}];
|
|
4215
|
+
readonly stateMutability: "view";
|
|
4216
|
+
readonly type: "function";
|
|
4217
|
+
}, {
|
|
4218
|
+
readonly inputs: readonly [{
|
|
4219
|
+
readonly internalType: "uint256";
|
|
4220
|
+
readonly name: "orderId";
|
|
4221
|
+
readonly type: "uint256";
|
|
4222
|
+
}];
|
|
4223
|
+
readonly name: "getOrderConsumer";
|
|
4224
|
+
readonly outputs: readonly [{
|
|
4225
|
+
readonly internalType: "address";
|
|
4226
|
+
readonly name: "";
|
|
4227
|
+
readonly type: "address";
|
|
4228
|
+
}];
|
|
4229
|
+
readonly stateMutability: "view";
|
|
4230
|
+
readonly type: "function";
|
|
3779
4231
|
}, {
|
|
3780
4232
|
readonly inputs: readonly [{
|
|
3781
4233
|
readonly internalType: "uint256";
|
|
@@ -3930,6 +4382,10 @@ export declare const abi: readonly [{
|
|
|
3930
4382
|
readonly internalType: "uint64";
|
|
3931
4383
|
readonly name: "gpuCores";
|
|
3932
4384
|
readonly type: "uint64";
|
|
4385
|
+
}, {
|
|
4386
|
+
readonly internalType: "uint64";
|
|
4387
|
+
readonly name: "vram";
|
|
4388
|
+
readonly type: "uint64";
|
|
3933
4389
|
}];
|
|
3934
4390
|
readonly internalType: "struct SlotInfo";
|
|
3935
4391
|
readonly name: "";
|
|
@@ -4514,6 +4970,10 @@ export declare const abi: readonly [{
|
|
|
4514
4970
|
readonly internalType: "enum OfferType";
|
|
4515
4971
|
readonly name: "offerType";
|
|
4516
4972
|
readonly type: "uint8";
|
|
4973
|
+
}, {
|
|
4974
|
+
readonly internalType: "bool";
|
|
4975
|
+
readonly name: "enabled";
|
|
4976
|
+
readonly type: "bool";
|
|
4517
4977
|
}];
|
|
4518
4978
|
readonly name: "addProviderOffer";
|
|
4519
4979
|
readonly outputs: readonly [];
|
|
@@ -4676,7 +5136,7 @@ export declare const abi: readonly [{
|
|
|
4676
5136
|
readonly type: "address";
|
|
4677
5137
|
}, {
|
|
4678
5138
|
readonly internalType: "uint16";
|
|
4679
|
-
readonly name: "
|
|
5139
|
+
readonly name: "percent";
|
|
4680
5140
|
readonly type: "uint16";
|
|
4681
5141
|
}];
|
|
4682
5142
|
readonly internalType: "struct ProtocolIncomeRecipient[]";
|
|
@@ -4794,7 +5254,7 @@ export declare const abi: readonly [{
|
|
|
4794
5254
|
readonly type: "address";
|
|
4795
5255
|
}, {
|
|
4796
5256
|
readonly internalType: "uint16";
|
|
4797
|
-
readonly name: "
|
|
5257
|
+
readonly name: "percent";
|
|
4798
5258
|
readonly type: "uint16";
|
|
4799
5259
|
}];
|
|
4800
5260
|
readonly internalType: "struct ProtocolIncomeRecipient[]";
|
|
@@ -5088,8 +5548,22 @@ export declare const abi: readonly [{
|
|
|
5088
5548
|
readonly type: "string";
|
|
5089
5549
|
}];
|
|
5090
5550
|
readonly internalType: "struct OptionInfo";
|
|
5091
|
-
readonly name: "
|
|
5551
|
+
readonly name: "newInfo";
|
|
5092
5552
|
readonly type: "tuple";
|
|
5553
|
+
}];
|
|
5554
|
+
readonly name: "updateOptionInfo";
|
|
5555
|
+
readonly outputs: readonly [];
|
|
5556
|
+
readonly stateMutability: "nonpayable";
|
|
5557
|
+
readonly type: "function";
|
|
5558
|
+
}, {
|
|
5559
|
+
readonly inputs: readonly [{
|
|
5560
|
+
readonly internalType: "uint256";
|
|
5561
|
+
readonly name: "teeOfferId";
|
|
5562
|
+
readonly type: "uint256";
|
|
5563
|
+
}, {
|
|
5564
|
+
readonly internalType: "uint256";
|
|
5565
|
+
readonly name: "optionId";
|
|
5566
|
+
readonly type: "uint256";
|
|
5093
5567
|
}, {
|
|
5094
5568
|
readonly components: readonly [{
|
|
5095
5569
|
readonly internalType: "enum PriceType";
|
|
@@ -5109,10 +5583,10 @@ export declare const abi: readonly [{
|
|
|
5109
5583
|
readonly type: "uint64";
|
|
5110
5584
|
}];
|
|
5111
5585
|
readonly internalType: "struct SlotUsage";
|
|
5112
|
-
readonly name: "
|
|
5586
|
+
readonly name: "newUsage";
|
|
5113
5587
|
readonly type: "tuple";
|
|
5114
5588
|
}];
|
|
5115
|
-
readonly name: "
|
|
5589
|
+
readonly name: "updateOptionUsage";
|
|
5116
5590
|
readonly outputs: readonly [];
|
|
5117
5591
|
readonly stateMutability: "nonpayable";
|
|
5118
5592
|
readonly type: "function";
|
|
@@ -5197,6 +5671,10 @@ export declare const abi: readonly [{
|
|
|
5197
5671
|
readonly internalType: "uint64";
|
|
5198
5672
|
readonly name: "gpuCores";
|
|
5199
5673
|
readonly type: "uint64";
|
|
5674
|
+
}, {
|
|
5675
|
+
readonly internalType: "uint64";
|
|
5676
|
+
readonly name: "vram";
|
|
5677
|
+
readonly type: "uint64";
|
|
5200
5678
|
}];
|
|
5201
5679
|
readonly internalType: "struct SlotInfo";
|
|
5202
5680
|
readonly name: "info";
|
|
@@ -5284,6 +5762,10 @@ export declare const abi: readonly [{
|
|
|
5284
5762
|
readonly internalType: "uint64";
|
|
5285
5763
|
readonly name: "gpuCores";
|
|
5286
5764
|
readonly type: "uint64";
|
|
5765
|
+
}, {
|
|
5766
|
+
readonly internalType: "uint64";
|
|
5767
|
+
readonly name: "vram";
|
|
5768
|
+
readonly type: "uint64";
|
|
5287
5769
|
}];
|
|
5288
5770
|
readonly internalType: "struct SlotInfo";
|
|
5289
5771
|
readonly name: "info";
|
|
@@ -5353,6 +5835,10 @@ export declare const abi: readonly [{
|
|
|
5353
5835
|
readonly internalType: "uint64";
|
|
5354
5836
|
readonly name: "gpuCores";
|
|
5355
5837
|
readonly type: "uint64";
|
|
5838
|
+
}, {
|
|
5839
|
+
readonly internalType: "uint64";
|
|
5840
|
+
readonly name: "vram";
|
|
5841
|
+
readonly type: "uint64";
|
|
5356
5842
|
}];
|
|
5357
5843
|
readonly internalType: "struct SlotInfo";
|
|
5358
5844
|
readonly name: "info";
|
|
@@ -5453,10 +5939,28 @@ export declare const abi: readonly [{
|
|
|
5453
5939
|
readonly internalType: "uint64";
|
|
5454
5940
|
readonly name: "gpuCores";
|
|
5455
5941
|
readonly type: "uint64";
|
|
5942
|
+
}, {
|
|
5943
|
+
readonly internalType: "uint64";
|
|
5944
|
+
readonly name: "vram";
|
|
5945
|
+
readonly type: "uint64";
|
|
5456
5946
|
}];
|
|
5457
5947
|
readonly internalType: "struct SlotInfo";
|
|
5458
|
-
readonly name: "
|
|
5948
|
+
readonly name: "newInfo";
|
|
5459
5949
|
readonly type: "tuple";
|
|
5950
|
+
}];
|
|
5951
|
+
readonly name: "updateTeeOfferSlotInfo";
|
|
5952
|
+
readonly outputs: readonly [];
|
|
5953
|
+
readonly stateMutability: "nonpayable";
|
|
5954
|
+
readonly type: "function";
|
|
5955
|
+
}, {
|
|
5956
|
+
readonly inputs: readonly [{
|
|
5957
|
+
readonly internalType: "uint256";
|
|
5958
|
+
readonly name: "teeOfferId";
|
|
5959
|
+
readonly type: "uint256";
|
|
5960
|
+
}, {
|
|
5961
|
+
readonly internalType: "uint256";
|
|
5962
|
+
readonly name: "slotId";
|
|
5963
|
+
readonly type: "uint256";
|
|
5460
5964
|
}, {
|
|
5461
5965
|
readonly components: readonly [{
|
|
5462
5966
|
readonly internalType: "enum PriceType";
|
|
@@ -5476,10 +5980,10 @@ export declare const abi: readonly [{
|
|
|
5476
5980
|
readonly type: "uint64";
|
|
5477
5981
|
}];
|
|
5478
5982
|
readonly internalType: "struct SlotUsage";
|
|
5479
|
-
readonly name: "
|
|
5983
|
+
readonly name: "newUsage";
|
|
5480
5984
|
readonly type: "tuple";
|
|
5481
5985
|
}];
|
|
5482
|
-
readonly name: "
|
|
5986
|
+
readonly name: "updateTeeOfferSlotUsage";
|
|
5483
5987
|
readonly outputs: readonly [];
|
|
5484
5988
|
readonly stateMutability: "nonpayable";
|
|
5485
5989
|
readonly type: "function";
|
|
@@ -5557,7 +6061,7 @@ export declare const abi: readonly [{
|
|
|
5557
6061
|
readonly name: "teeOfferId";
|
|
5558
6062
|
readonly type: "uint256";
|
|
5559
6063
|
}];
|
|
5560
|
-
readonly name: "
|
|
6064
|
+
readonly name: "confiscateAllRewards";
|
|
5561
6065
|
readonly outputs: readonly [];
|
|
5562
6066
|
readonly stateMutability: "nonpayable";
|
|
5563
6067
|
readonly type: "function";
|
|
@@ -5782,6 +6286,10 @@ export declare const abi: readonly [{
|
|
|
5782
6286
|
readonly internalType: "uint64";
|
|
5783
6287
|
readonly name: "gpuCores";
|
|
5784
6288
|
readonly type: "uint64";
|
|
6289
|
+
}, {
|
|
6290
|
+
readonly internalType: "uint64";
|
|
6291
|
+
readonly name: "vram";
|
|
6292
|
+
readonly type: "uint64";
|
|
5785
6293
|
}];
|
|
5786
6294
|
readonly internalType: "struct SlotInfo";
|
|
5787
6295
|
readonly name: "info";
|
|
@@ -5882,6 +6390,10 @@ export declare const abi: readonly [{
|
|
|
5882
6390
|
readonly internalType: "uint64";
|
|
5883
6391
|
readonly name: "gpuCores";
|
|
5884
6392
|
readonly type: "uint64";
|
|
6393
|
+
}, {
|
|
6394
|
+
readonly internalType: "uint64";
|
|
6395
|
+
readonly name: "vram";
|
|
6396
|
+
readonly type: "uint64";
|
|
5885
6397
|
}];
|
|
5886
6398
|
readonly internalType: "struct SlotInfo";
|
|
5887
6399
|
readonly name: "info";
|
|
@@ -5960,6 +6472,10 @@ export declare const abi: readonly [{
|
|
|
5960
6472
|
readonly internalType: "uint64";
|
|
5961
6473
|
readonly name: "gpuCores";
|
|
5962
6474
|
readonly type: "uint64";
|
|
6475
|
+
}, {
|
|
6476
|
+
readonly internalType: "uint64";
|
|
6477
|
+
readonly name: "vram";
|
|
6478
|
+
readonly type: "uint64";
|
|
5963
6479
|
}];
|
|
5964
6480
|
readonly internalType: "struct SlotInfo";
|
|
5965
6481
|
readonly name: "info";
|
|
@@ -6069,10 +6585,28 @@ export declare const abi: readonly [{
|
|
|
6069
6585
|
readonly internalType: "uint64";
|
|
6070
6586
|
readonly name: "gpuCores";
|
|
6071
6587
|
readonly type: "uint64";
|
|
6588
|
+
}, {
|
|
6589
|
+
readonly internalType: "uint64";
|
|
6590
|
+
readonly name: "vram";
|
|
6591
|
+
readonly type: "uint64";
|
|
6072
6592
|
}];
|
|
6073
6593
|
readonly internalType: "struct SlotInfo";
|
|
6074
|
-
readonly name: "
|
|
6594
|
+
readonly name: "newInfo";
|
|
6075
6595
|
readonly type: "tuple";
|
|
6596
|
+
}];
|
|
6597
|
+
readonly name: "updateValueOfferSlotInfo";
|
|
6598
|
+
readonly outputs: readonly [];
|
|
6599
|
+
readonly stateMutability: "nonpayable";
|
|
6600
|
+
readonly type: "function";
|
|
6601
|
+
}, {
|
|
6602
|
+
readonly inputs: readonly [{
|
|
6603
|
+
readonly internalType: "uint256";
|
|
6604
|
+
readonly name: "offerId";
|
|
6605
|
+
readonly type: "uint256";
|
|
6606
|
+
}, {
|
|
6607
|
+
readonly internalType: "uint256";
|
|
6608
|
+
readonly name: "slotId";
|
|
6609
|
+
readonly type: "uint256";
|
|
6076
6610
|
}, {
|
|
6077
6611
|
readonly components: readonly [{
|
|
6078
6612
|
readonly internalType: "string";
|
|
@@ -6080,16 +6614,30 @@ export declare const abi: readonly [{
|
|
|
6080
6614
|
readonly type: "string";
|
|
6081
6615
|
}];
|
|
6082
6616
|
readonly internalType: "struct OptionInfo";
|
|
6083
|
-
readonly name: "
|
|
6617
|
+
readonly name: "newOption";
|
|
6084
6618
|
readonly type: "tuple";
|
|
6085
|
-
}
|
|
6086
|
-
|
|
6087
|
-
|
|
6088
|
-
|
|
6089
|
-
|
|
6090
|
-
|
|
6091
|
-
|
|
6092
|
-
|
|
6619
|
+
}];
|
|
6620
|
+
readonly name: "updateValueOfferSlotOption";
|
|
6621
|
+
readonly outputs: readonly [];
|
|
6622
|
+
readonly stateMutability: "nonpayable";
|
|
6623
|
+
readonly type: "function";
|
|
6624
|
+
}, {
|
|
6625
|
+
readonly inputs: readonly [{
|
|
6626
|
+
readonly internalType: "uint256";
|
|
6627
|
+
readonly name: "offerId";
|
|
6628
|
+
readonly type: "uint256";
|
|
6629
|
+
}, {
|
|
6630
|
+
readonly internalType: "uint256";
|
|
6631
|
+
readonly name: "slotId";
|
|
6632
|
+
readonly type: "uint256";
|
|
6633
|
+
}, {
|
|
6634
|
+
readonly components: readonly [{
|
|
6635
|
+
readonly internalType: "enum PriceType";
|
|
6636
|
+
readonly name: "priceType";
|
|
6637
|
+
readonly type: "uint8";
|
|
6638
|
+
}, {
|
|
6639
|
+
readonly internalType: "uint256";
|
|
6640
|
+
readonly name: "price";
|
|
6093
6641
|
readonly type: "uint256";
|
|
6094
6642
|
}, {
|
|
6095
6643
|
readonly internalType: "uint64";
|
|
@@ -6101,10 +6649,10 @@ export declare const abi: readonly [{
|
|
|
6101
6649
|
readonly type: "uint64";
|
|
6102
6650
|
}];
|
|
6103
6651
|
readonly internalType: "struct SlotUsage";
|
|
6104
|
-
readonly name: "
|
|
6652
|
+
readonly name: "newUsage";
|
|
6105
6653
|
readonly type: "tuple";
|
|
6106
6654
|
}];
|
|
6107
|
-
readonly name: "
|
|
6655
|
+
readonly name: "updateValueOfferSlotUsage";
|
|
6108
6656
|
readonly outputs: readonly [];
|
|
6109
6657
|
readonly stateMutability: "nonpayable";
|
|
6110
6658
|
readonly type: "function";
|
|
@@ -6152,6 +6700,10 @@ export declare const abi: readonly [{
|
|
|
6152
6700
|
readonly internalType: "uint256";
|
|
6153
6701
|
readonly name: "maxPriceSlippage";
|
|
6154
6702
|
readonly type: "uint256";
|
|
6703
|
+
}, {
|
|
6704
|
+
readonly internalType: "uint64";
|
|
6705
|
+
readonly name: "offerVersion";
|
|
6706
|
+
readonly type: "uint64";
|
|
6155
6707
|
}];
|
|
6156
6708
|
readonly internalType: "struct OrderInfo";
|
|
6157
6709
|
readonly name: "parentOrderInfo";
|
|
@@ -6180,12 +6732,20 @@ export declare const abi: readonly [{
|
|
|
6180
6732
|
}, {
|
|
6181
6733
|
readonly components: readonly [{
|
|
6182
6734
|
readonly internalType: "uint256[]";
|
|
6183
|
-
readonly name: "
|
|
6735
|
+
readonly name: "inputOffersIds";
|
|
6184
6736
|
readonly type: "uint256[]";
|
|
6185
6737
|
}, {
|
|
6186
6738
|
readonly internalType: "uint256";
|
|
6187
|
-
readonly name: "
|
|
6739
|
+
readonly name: "outputOfferId";
|
|
6188
6740
|
readonly type: "uint256";
|
|
6741
|
+
}, {
|
|
6742
|
+
readonly internalType: "uint64[]";
|
|
6743
|
+
readonly name: "inputOffersVersions";
|
|
6744
|
+
readonly type: "uint64[]";
|
|
6745
|
+
}, {
|
|
6746
|
+
readonly internalType: "uint64";
|
|
6747
|
+
readonly name: "outputOfferVersion";
|
|
6748
|
+
readonly type: "uint64";
|
|
6189
6749
|
}];
|
|
6190
6750
|
readonly internalType: "struct OrderArgs";
|
|
6191
6751
|
readonly name: "parentOrderArgs";
|
|
@@ -6227,6 +6787,10 @@ export declare const abi: readonly [{
|
|
|
6227
6787
|
readonly internalType: "uint256";
|
|
6228
6788
|
readonly name: "maxPriceSlippage";
|
|
6229
6789
|
readonly type: "uint256";
|
|
6790
|
+
}, {
|
|
6791
|
+
readonly internalType: "uint64";
|
|
6792
|
+
readonly name: "offerVersion";
|
|
6793
|
+
readonly type: "uint64";
|
|
6230
6794
|
}];
|
|
6231
6795
|
readonly internalType: "struct OrderInfo[]";
|
|
6232
6796
|
readonly name: "subOrdersInfos";
|
|
@@ -6255,12 +6819,20 @@ export declare const abi: readonly [{
|
|
|
6255
6819
|
}, {
|
|
6256
6820
|
readonly components: readonly [{
|
|
6257
6821
|
readonly internalType: "uint256[]";
|
|
6258
|
-
readonly name: "
|
|
6822
|
+
readonly name: "inputOffersIds";
|
|
6259
6823
|
readonly type: "uint256[]";
|
|
6260
6824
|
}, {
|
|
6261
6825
|
readonly internalType: "uint256";
|
|
6262
|
-
readonly name: "
|
|
6826
|
+
readonly name: "outputOfferId";
|
|
6263
6827
|
readonly type: "uint256";
|
|
6828
|
+
}, {
|
|
6829
|
+
readonly internalType: "uint64[]";
|
|
6830
|
+
readonly name: "inputOffersVersions";
|
|
6831
|
+
readonly type: "uint64[]";
|
|
6832
|
+
}, {
|
|
6833
|
+
readonly internalType: "uint64";
|
|
6834
|
+
readonly name: "outputOfferVersion";
|
|
6835
|
+
readonly type: "uint64";
|
|
6264
6836
|
}];
|
|
6265
6837
|
readonly internalType: "struct OrderArgs[]";
|
|
6266
6838
|
readonly name: "subOrdersArgs";
|
|
@@ -6675,16 +7247,6 @@ export declare const abi: readonly [{
|
|
|
6675
7247
|
}];
|
|
6676
7248
|
readonly name: "LoaderSessionKeyUpdated";
|
|
6677
7249
|
readonly type: "event";
|
|
6678
|
-
}, {
|
|
6679
|
-
readonly inputs: readonly [{
|
|
6680
|
-
readonly internalType: "uint256";
|
|
6681
|
-
readonly name: "teeOfferId";
|
|
6682
|
-
readonly type: "uint256";
|
|
6683
|
-
}];
|
|
6684
|
-
readonly name: "disableLoader";
|
|
6685
|
-
readonly outputs: readonly [];
|
|
6686
|
-
readonly stateMutability: "nonpayable";
|
|
6687
|
-
readonly type: "function";
|
|
6688
7250
|
}, {
|
|
6689
7251
|
readonly inputs: readonly [];
|
|
6690
7252
|
readonly name: "getDisabledLoaders";
|
|
@@ -6753,6 +7315,16 @@ export declare const abi: readonly [{
|
|
|
6753
7315
|
}];
|
|
6754
7316
|
readonly stateMutability: "view";
|
|
6755
7317
|
readonly type: "function";
|
|
7318
|
+
}, {
|
|
7319
|
+
readonly inputs: readonly [{
|
|
7320
|
+
readonly internalType: "uint256";
|
|
7321
|
+
readonly name: "teeOfferId";
|
|
7322
|
+
readonly type: "uint256";
|
|
7323
|
+
}];
|
|
7324
|
+
readonly name: "removeLoaderKeys";
|
|
7325
|
+
readonly outputs: readonly [];
|
|
7326
|
+
readonly stateMutability: "nonpayable";
|
|
7327
|
+
readonly type: "function";
|
|
6756
7328
|
}, {
|
|
6757
7329
|
readonly inputs: readonly [{
|
|
6758
7330
|
readonly components: readonly [{
|
|
@@ -6955,11 +7527,7 @@ export declare const abi: readonly [{
|
|
|
6955
7527
|
readonly type: "uint32";
|
|
6956
7528
|
}];
|
|
6957
7529
|
readonly name: "createResourceOrder";
|
|
6958
|
-
readonly outputs: readonly [
|
|
6959
|
-
readonly internalType: "uint256";
|
|
6960
|
-
readonly name: "orderId";
|
|
6961
|
-
readonly type: "uint256";
|
|
6962
|
-
}];
|
|
7530
|
+
readonly outputs: readonly [];
|
|
6963
7531
|
readonly stateMutability: "nonpayable";
|
|
6964
7532
|
readonly type: "function";
|
|
6965
7533
|
}, {
|
|
@@ -7035,6 +7603,18 @@ export declare const abi: readonly [{
|
|
|
7035
7603
|
readonly internalType: "string";
|
|
7036
7604
|
readonly name: "signedEncryptedData";
|
|
7037
7605
|
readonly type: "string";
|
|
7606
|
+
}, {
|
|
7607
|
+
readonly internalType: "enum OfferType";
|
|
7608
|
+
readonly name: "offerType";
|
|
7609
|
+
readonly type: "uint8";
|
|
7610
|
+
}, {
|
|
7611
|
+
readonly internalType: "string";
|
|
7612
|
+
readonly name: "solutionHash";
|
|
7613
|
+
readonly type: "string";
|
|
7614
|
+
}, {
|
|
7615
|
+
readonly internalType: "bool";
|
|
7616
|
+
readonly name: "previousDataCopied";
|
|
7617
|
+
readonly type: "bool";
|
|
7038
7618
|
}];
|
|
7039
7619
|
readonly internalType: "struct OfferResource";
|
|
7040
7620
|
readonly name: "";
|
|
@@ -7045,14 +7625,10 @@ export declare const abi: readonly [{
|
|
|
7045
7625
|
}, {
|
|
7046
7626
|
readonly inputs: readonly [{
|
|
7047
7627
|
readonly internalType: "uint256";
|
|
7048
|
-
readonly name: "
|
|
7628
|
+
readonly name: "teeOfferIssuerId";
|
|
7049
7629
|
readonly type: "uint256";
|
|
7050
|
-
}, {
|
|
7051
|
-
readonly internalType: "uint64";
|
|
7052
|
-
readonly name: "version";
|
|
7053
|
-
readonly type: "uint64";
|
|
7054
7630
|
}];
|
|
7055
|
-
readonly name: "
|
|
7631
|
+
readonly name: "getOfferResourcesByIssuerId";
|
|
7056
7632
|
readonly outputs: readonly [{
|
|
7057
7633
|
readonly components: readonly [{
|
|
7058
7634
|
readonly internalType: "uint256";
|
|
@@ -7107,6 +7683,18 @@ export declare const abi: readonly [{
|
|
|
7107
7683
|
readonly internalType: "string";
|
|
7108
7684
|
readonly name: "signedEncryptedData";
|
|
7109
7685
|
readonly type: "string";
|
|
7686
|
+
}, {
|
|
7687
|
+
readonly internalType: "enum OfferType";
|
|
7688
|
+
readonly name: "offerType";
|
|
7689
|
+
readonly type: "uint8";
|
|
7690
|
+
}, {
|
|
7691
|
+
readonly internalType: "string";
|
|
7692
|
+
readonly name: "solutionHash";
|
|
7693
|
+
readonly type: "string";
|
|
7694
|
+
}, {
|
|
7695
|
+
readonly internalType: "bool";
|
|
7696
|
+
readonly name: "previousDataCopied";
|
|
7697
|
+
readonly type: "bool";
|
|
7110
7698
|
}];
|
|
7111
7699
|
readonly internalType: "struct OfferResource[]";
|
|
7112
7700
|
readonly name: "";
|
|
@@ -7117,10 +7705,10 @@ export declare const abi: readonly [{
|
|
|
7117
7705
|
}, {
|
|
7118
7706
|
readonly inputs: readonly [{
|
|
7119
7707
|
readonly internalType: "uint256";
|
|
7120
|
-
readonly name: "
|
|
7708
|
+
readonly name: "teeKeeperId";
|
|
7121
7709
|
readonly type: "uint256";
|
|
7122
7710
|
}];
|
|
7123
|
-
readonly name: "
|
|
7711
|
+
readonly name: "getOfferResourcesByKeeperId";
|
|
7124
7712
|
readonly outputs: readonly [{
|
|
7125
7713
|
readonly components: readonly [{
|
|
7126
7714
|
readonly internalType: "uint256";
|
|
@@ -7175,6 +7763,18 @@ export declare const abi: readonly [{
|
|
|
7175
7763
|
readonly internalType: "string";
|
|
7176
7764
|
readonly name: "signedEncryptedData";
|
|
7177
7765
|
readonly type: "string";
|
|
7766
|
+
}, {
|
|
7767
|
+
readonly internalType: "enum OfferType";
|
|
7768
|
+
readonly name: "offerType";
|
|
7769
|
+
readonly type: "uint8";
|
|
7770
|
+
}, {
|
|
7771
|
+
readonly internalType: "string";
|
|
7772
|
+
readonly name: "solutionHash";
|
|
7773
|
+
readonly type: "string";
|
|
7774
|
+
}, {
|
|
7775
|
+
readonly internalType: "bool";
|
|
7776
|
+
readonly name: "previousDataCopied";
|
|
7777
|
+
readonly type: "bool";
|
|
7178
7778
|
}];
|
|
7179
7779
|
readonly internalType: "struct OfferResource[]";
|
|
7180
7780
|
readonly name: "";
|
|
@@ -7185,10 +7785,14 @@ export declare const abi: readonly [{
|
|
|
7185
7785
|
}, {
|
|
7186
7786
|
readonly inputs: readonly [{
|
|
7187
7787
|
readonly internalType: "uint256";
|
|
7188
|
-
readonly name: "
|
|
7788
|
+
readonly name: "offerId";
|
|
7189
7789
|
readonly type: "uint256";
|
|
7790
|
+
}, {
|
|
7791
|
+
readonly internalType: "uint64";
|
|
7792
|
+
readonly name: "version";
|
|
7793
|
+
readonly type: "uint64";
|
|
7190
7794
|
}];
|
|
7191
|
-
readonly name: "
|
|
7795
|
+
readonly name: "getOfferResourcesByOfferVersion";
|
|
7192
7796
|
readonly outputs: readonly [{
|
|
7193
7797
|
readonly components: readonly [{
|
|
7194
7798
|
readonly internalType: "uint256";
|
|
@@ -7243,6 +7847,18 @@ export declare const abi: readonly [{
|
|
|
7243
7847
|
readonly internalType: "string";
|
|
7244
7848
|
readonly name: "signedEncryptedData";
|
|
7245
7849
|
readonly type: "string";
|
|
7850
|
+
}, {
|
|
7851
|
+
readonly internalType: "enum OfferType";
|
|
7852
|
+
readonly name: "offerType";
|
|
7853
|
+
readonly type: "uint8";
|
|
7854
|
+
}, {
|
|
7855
|
+
readonly internalType: "string";
|
|
7856
|
+
readonly name: "solutionHash";
|
|
7857
|
+
readonly type: "string";
|
|
7858
|
+
}, {
|
|
7859
|
+
readonly internalType: "bool";
|
|
7860
|
+
readonly name: "previousDataCopied";
|
|
7861
|
+
readonly type: "bool";
|
|
7246
7862
|
}];
|
|
7247
7863
|
readonly internalType: "struct OfferResource[]";
|
|
7248
7864
|
readonly name: "";
|
|
@@ -7264,6 +7880,24 @@ export declare const abi: readonly [{
|
|
|
7264
7880
|
}];
|
|
7265
7881
|
readonly stateMutability: "view";
|
|
7266
7882
|
readonly type: "function";
|
|
7883
|
+
}, {
|
|
7884
|
+
readonly inputs: readonly [{
|
|
7885
|
+
readonly internalType: "uint256";
|
|
7886
|
+
readonly name: "offerId";
|
|
7887
|
+
readonly type: "uint256";
|
|
7888
|
+
}, {
|
|
7889
|
+
readonly internalType: "uint32";
|
|
7890
|
+
readonly name: "offerVersion";
|
|
7891
|
+
readonly type: "uint32";
|
|
7892
|
+
}];
|
|
7893
|
+
readonly name: "getReplicationFactorFulfilled";
|
|
7894
|
+
readonly outputs: readonly [{
|
|
7895
|
+
readonly internalType: "uint32";
|
|
7896
|
+
readonly name: "";
|
|
7897
|
+
readonly type: "uint32";
|
|
7898
|
+
}];
|
|
7899
|
+
readonly stateMutability: "view";
|
|
7900
|
+
readonly type: "function";
|
|
7267
7901
|
}, {
|
|
7268
7902
|
readonly inputs: readonly [{
|
|
7269
7903
|
readonly components: readonly [{
|
|
@@ -7319,6 +7953,120 @@ export declare const abi: readonly [{
|
|
|
7319
7953
|
readonly internalType: "string";
|
|
7320
7954
|
readonly name: "signedEncryptedData";
|
|
7321
7955
|
readonly type: "string";
|
|
7956
|
+
}, {
|
|
7957
|
+
readonly internalType: "enum OfferType";
|
|
7958
|
+
readonly name: "offerType";
|
|
7959
|
+
readonly type: "uint8";
|
|
7960
|
+
}, {
|
|
7961
|
+
readonly internalType: "string";
|
|
7962
|
+
readonly name: "solutionHash";
|
|
7963
|
+
readonly type: "string";
|
|
7964
|
+
}, {
|
|
7965
|
+
readonly internalType: "bool";
|
|
7966
|
+
readonly name: "previousDataCopied";
|
|
7967
|
+
readonly type: "bool";
|
|
7968
|
+
}];
|
|
7969
|
+
readonly internalType: "struct OfferResource";
|
|
7970
|
+
readonly name: "resource";
|
|
7971
|
+
readonly type: "tuple";
|
|
7972
|
+
}, {
|
|
7973
|
+
readonly internalType: "uint32";
|
|
7974
|
+
readonly name: "n";
|
|
7975
|
+
readonly type: "uint32";
|
|
7976
|
+
}];
|
|
7977
|
+
readonly name: "incrementReplicationFactor";
|
|
7978
|
+
readonly outputs: readonly [];
|
|
7979
|
+
readonly stateMutability: "nonpayable";
|
|
7980
|
+
readonly type: "function";
|
|
7981
|
+
}, {
|
|
7982
|
+
readonly inputs: readonly [{
|
|
7983
|
+
readonly internalType: "uint256";
|
|
7984
|
+
readonly name: "teeOfferIssuerId";
|
|
7985
|
+
readonly type: "uint256";
|
|
7986
|
+
}, {
|
|
7987
|
+
readonly internalType: "uint256";
|
|
7988
|
+
readonly name: "teeOfferKeeperId";
|
|
7989
|
+
readonly type: "uint256";
|
|
7990
|
+
}, {
|
|
7991
|
+
readonly internalType: "uint256";
|
|
7992
|
+
readonly name: "offerId";
|
|
7993
|
+
readonly type: "uint256";
|
|
7994
|
+
}, {
|
|
7995
|
+
readonly internalType: "uint64";
|
|
7996
|
+
readonly name: "offerVersion";
|
|
7997
|
+
readonly type: "uint64";
|
|
7998
|
+
}];
|
|
7999
|
+
readonly name: "removeOfferResource";
|
|
8000
|
+
readonly outputs: readonly [];
|
|
8001
|
+
readonly stateMutability: "nonpayable";
|
|
8002
|
+
readonly type: "function";
|
|
8003
|
+
}, {
|
|
8004
|
+
readonly inputs: readonly [{
|
|
8005
|
+
readonly components: readonly [{
|
|
8006
|
+
readonly internalType: "uint256";
|
|
8007
|
+
readonly name: "offerId";
|
|
8008
|
+
readonly type: "uint256";
|
|
8009
|
+
}, {
|
|
8010
|
+
readonly internalType: "uint256";
|
|
8011
|
+
readonly name: "teeOfferIssuerId";
|
|
8012
|
+
readonly type: "uint256";
|
|
8013
|
+
}, {
|
|
8014
|
+
readonly internalType: "uint256";
|
|
8015
|
+
readonly name: "teeOfferKeeperId";
|
|
8016
|
+
readonly type: "uint256";
|
|
8017
|
+
}, {
|
|
8018
|
+
readonly internalType: "uint256";
|
|
8019
|
+
readonly name: "storageOrderId";
|
|
8020
|
+
readonly type: "uint256";
|
|
8021
|
+
}, {
|
|
8022
|
+
readonly internalType: "uint64";
|
|
8023
|
+
readonly name: "offerVersion";
|
|
8024
|
+
readonly type: "uint64";
|
|
8025
|
+
}, {
|
|
8026
|
+
readonly internalType: "uint32";
|
|
8027
|
+
readonly name: "timestamp";
|
|
8028
|
+
readonly type: "uint32";
|
|
8029
|
+
}, {
|
|
8030
|
+
readonly internalType: "uint32";
|
|
8031
|
+
readonly name: "signedTime";
|
|
8032
|
+
readonly type: "uint32";
|
|
8033
|
+
}, {
|
|
8034
|
+
readonly components: readonly [{
|
|
8035
|
+
readonly internalType: "string";
|
|
8036
|
+
readonly name: "der";
|
|
8037
|
+
readonly type: "string";
|
|
8038
|
+
}, {
|
|
8039
|
+
readonly internalType: "bytes32";
|
|
8040
|
+
readonly name: "r";
|
|
8041
|
+
readonly type: "bytes32";
|
|
8042
|
+
}, {
|
|
8043
|
+
readonly internalType: "bytes32";
|
|
8044
|
+
readonly name: "s";
|
|
8045
|
+
readonly type: "bytes32";
|
|
8046
|
+
}, {
|
|
8047
|
+
readonly internalType: "uint8";
|
|
8048
|
+
readonly name: "v";
|
|
8049
|
+
readonly type: "uint8";
|
|
8050
|
+
}];
|
|
8051
|
+
readonly internalType: "struct Signature";
|
|
8052
|
+
readonly name: "signature";
|
|
8053
|
+
readonly type: "tuple";
|
|
8054
|
+
}, {
|
|
8055
|
+
readonly internalType: "string";
|
|
8056
|
+
readonly name: "signedEncryptedData";
|
|
8057
|
+
readonly type: "string";
|
|
8058
|
+
}, {
|
|
8059
|
+
readonly internalType: "enum OfferType";
|
|
8060
|
+
readonly name: "offerType";
|
|
8061
|
+
readonly type: "uint8";
|
|
8062
|
+
}, {
|
|
8063
|
+
readonly internalType: "string";
|
|
8064
|
+
readonly name: "solutionHash";
|
|
8065
|
+
readonly type: "string";
|
|
8066
|
+
}, {
|
|
8067
|
+
readonly internalType: "bool";
|
|
8068
|
+
readonly name: "previousDataCopied";
|
|
8069
|
+
readonly type: "bool";
|
|
7322
8070
|
}];
|
|
7323
8071
|
readonly internalType: "struct OfferResource";
|
|
7324
8072
|
readonly name: "resource";
|
|
@@ -7356,6 +8104,14 @@ export declare const abi: readonly [{
|
|
|
7356
8104
|
readonly internalType: "uint32";
|
|
7357
8105
|
readonly name: "timestamp";
|
|
7358
8106
|
readonly type: "uint32";
|
|
8107
|
+
}, {
|
|
8108
|
+
readonly internalType: "uint64";
|
|
8109
|
+
readonly name: "offerVersion";
|
|
8110
|
+
readonly type: "uint64";
|
|
8111
|
+
}, {
|
|
8112
|
+
readonly internalType: "uint256";
|
|
8113
|
+
readonly name: "offerId";
|
|
8114
|
+
readonly type: "uint256";
|
|
7359
8115
|
}];
|
|
7360
8116
|
readonly internalType: "struct OfferStorageAllocated";
|
|
7361
8117
|
readonly name: "";
|
|
@@ -7363,6 +8119,45 @@ export declare const abi: readonly [{
|
|
|
7363
8119
|
}];
|
|
7364
8120
|
readonly stateMutability: "view";
|
|
7365
8121
|
readonly type: "function";
|
|
8122
|
+
}, {
|
|
8123
|
+
readonly inputs: readonly [{
|
|
8124
|
+
readonly internalType: "uint256";
|
|
8125
|
+
readonly name: "teeOfferIssurId";
|
|
8126
|
+
readonly type: "uint256";
|
|
8127
|
+
}];
|
|
8128
|
+
readonly name: "getStorageOrdersAllocatedByIssuer";
|
|
8129
|
+
readonly outputs: readonly [{
|
|
8130
|
+
readonly components: readonly [{
|
|
8131
|
+
readonly internalType: "uint256";
|
|
8132
|
+
readonly name: "teeOfferIssuerId";
|
|
8133
|
+
readonly type: "uint256";
|
|
8134
|
+
}, {
|
|
8135
|
+
readonly internalType: "uint256";
|
|
8136
|
+
readonly name: "storageOrderId";
|
|
8137
|
+
readonly type: "uint256";
|
|
8138
|
+
}, {
|
|
8139
|
+
readonly internalType: "uint32";
|
|
8140
|
+
readonly name: "distributionReplicationFactor";
|
|
8141
|
+
readonly type: "uint32";
|
|
8142
|
+
}, {
|
|
8143
|
+
readonly internalType: "uint32";
|
|
8144
|
+
readonly name: "timestamp";
|
|
8145
|
+
readonly type: "uint32";
|
|
8146
|
+
}, {
|
|
8147
|
+
readonly internalType: "uint64";
|
|
8148
|
+
readonly name: "offerVersion";
|
|
8149
|
+
readonly type: "uint64";
|
|
8150
|
+
}, {
|
|
8151
|
+
readonly internalType: "uint256";
|
|
8152
|
+
readonly name: "offerId";
|
|
8153
|
+
readonly type: "uint256";
|
|
8154
|
+
}];
|
|
8155
|
+
readonly internalType: "struct OfferStorageAllocated[]";
|
|
8156
|
+
readonly name: "";
|
|
8157
|
+
readonly type: "tuple[]";
|
|
8158
|
+
}];
|
|
8159
|
+
readonly stateMutability: "view";
|
|
8160
|
+
readonly type: "function";
|
|
7366
8161
|
}, {
|
|
7367
8162
|
readonly anonymous: false;
|
|
7368
8163
|
readonly inputs: readonly [{
|
|
@@ -7470,6 +8265,10 @@ export declare const abi: readonly [{
|
|
|
7470
8265
|
readonly internalType: "uint32";
|
|
7471
8266
|
readonly name: "timestamp";
|
|
7472
8267
|
readonly type: "uint32";
|
|
8268
|
+
}, {
|
|
8269
|
+
readonly internalType: "bool";
|
|
8270
|
+
readonly name: "copyPreviousData";
|
|
8271
|
+
readonly type: "bool";
|
|
7473
8272
|
}];
|
|
7474
8273
|
readonly internalType: "struct OfferStorageRequest[]";
|
|
7475
8274
|
readonly name: "";
|
|
@@ -7525,6 +8324,10 @@ export declare const abi: readonly [{
|
|
|
7525
8324
|
readonly internalType: "uint32";
|
|
7526
8325
|
readonly name: "timestamp";
|
|
7527
8326
|
readonly type: "uint32";
|
|
8327
|
+
}, {
|
|
8328
|
+
readonly internalType: "bool";
|
|
8329
|
+
readonly name: "copyPreviousData";
|
|
8330
|
+
readonly type: "bool";
|
|
7528
8331
|
}];
|
|
7529
8332
|
readonly internalType: "struct OfferStorageRequest";
|
|
7530
8333
|
readonly name: "";
|
|
@@ -7570,6 +8373,10 @@ export declare const abi: readonly [{
|
|
|
7570
8373
|
readonly internalType: "uint32";
|
|
7571
8374
|
readonly name: "timestamp";
|
|
7572
8375
|
readonly type: "uint32";
|
|
8376
|
+
}, {
|
|
8377
|
+
readonly internalType: "bool";
|
|
8378
|
+
readonly name: "copyPreviousData";
|
|
8379
|
+
readonly type: "bool";
|
|
7573
8380
|
}];
|
|
7574
8381
|
readonly internalType: "struct OfferStorageRequest";
|
|
7575
8382
|
readonly name: "request";
|