@super-protocol/sdk-js 2.2.0-beta.99 → 2.3.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/contracts/abi.d.ts +341 -146
- package/dist/cjs/contracts/abi.js +430 -179
- package/dist/cjs/index.d.ts +3 -0
- package/dist/cjs/index.js +7 -3
- package/dist/cjs/models/Offer.d.ts +11 -1
- package/dist/cjs/models/Offer.js +45 -5
- package/dist/cjs/models/Order.js +7 -7
- package/dist/cjs/models/TeeOffer.js +11 -8
- package/dist/cjs/proto/Compression.d.ts +1 -1
- package/dist/cjs/proto/TRI.d.ts +3 -3
- package/dist/cjs/proto/TeeProperties.d.ts +5 -5
- package/dist/cjs/providers/storage/S3StorageProvider.js +5 -8
- package/dist/cjs/providers/storage/StorjCredentialsManager.js +25 -2
- package/dist/cjs/providers/storage/StorjStorageProvider.js +25 -2
- package/dist/cjs/staticModels/Consensus.d.ts +3 -2
- package/dist/cjs/staticModels/Consensus.js +22 -11
- package/dist/cjs/staticModels/LoaderSessions.d.ts +1 -1
- package/dist/cjs/staticModels/LoaderSessions.js +10 -7
- package/dist/cjs/staticModels/OfferResources.d.ts +1 -0
- package/dist/cjs/staticModels/OfferResources.js +10 -1
- package/dist/cjs/staticModels/Offers.js +6 -3
- package/dist/cjs/staticModels/Superpro.d.ts +6 -2
- package/dist/cjs/staticModels/Superpro.js +51 -1
- package/dist/cjs/staticModels/TeeOffers.js +2 -2
- package/dist/cjs/tee/QuoteParser.js +7 -5
- package/dist/cjs/tee/QuoteValidator.d.ts +2 -0
- package/dist/cjs/tee/QuoteValidator.js +24 -7
- package/dist/cjs/tee/TcbSerializer.d.ts +20 -0
- package/dist/cjs/tee/TcbSerializer.js +27 -0
- package/dist/cjs/tee/TeeBlockVerifier.d.ts +0 -4
- package/dist/cjs/tee/TeeBlockVerifier.js +5 -46
- package/dist/cjs/tee/TeeCertificateService.d.ts +13 -0
- package/dist/cjs/tee/TeeCertificateService.js +42 -0
- package/dist/cjs/tee/helpers.d.ts +1 -1
- package/dist/cjs/tee/helpers.js +2 -7
- package/dist/cjs/types/Offer.d.ts +14 -3
- package/dist/cjs/types/Offer.js +9 -2
- package/dist/cjs/types/TokenInfo.d.ts +4 -0
- package/dist/cjs/types/TokenInfo.js +3 -0
- package/dist/cjs/types/index.d.ts +1 -0
- package/dist/cjs/types/index.js +2 -1
- 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/contracts/abi.d.ts +341 -146
- package/dist/mjs/contracts/abi.js +428 -177
- package/dist/mjs/index.d.ts +3 -0
- package/dist/mjs/index.js +4 -1
- package/dist/mjs/models/Offer.d.ts +11 -1
- package/dist/mjs/models/Offer.js +46 -6
- package/dist/mjs/models/Order.js +7 -7
- package/dist/mjs/models/TeeOffer.js +11 -8
- package/dist/mjs/proto/Compression.d.ts +1 -1
- package/dist/mjs/proto/TRI.d.ts +3 -3
- package/dist/mjs/proto/TeeProperties.d.ts +5 -5
- package/dist/mjs/providers/storage/S3StorageProvider.js +5 -8
- package/dist/mjs/providers/storage/StorjCredentialsManager.js +2 -2
- package/dist/mjs/providers/storage/StorjStorageProvider.js +2 -2
- package/dist/mjs/staticModels/Consensus.d.ts +3 -2
- package/dist/mjs/staticModels/Consensus.js +22 -11
- package/dist/mjs/staticModels/LoaderSessions.d.ts +1 -1
- package/dist/mjs/staticModels/LoaderSessions.js +10 -7
- package/dist/mjs/staticModels/OfferResources.d.ts +1 -0
- package/dist/mjs/staticModels/OfferResources.js +10 -1
- package/dist/mjs/staticModels/Offers.js +6 -3
- package/dist/mjs/staticModels/Superpro.d.ts +6 -2
- package/dist/mjs/staticModels/Superpro.js +48 -1
- package/dist/mjs/staticModels/TeeOffers.js +2 -2
- package/dist/mjs/tee/QuoteParser.js +7 -5
- package/dist/mjs/tee/QuoteValidator.d.ts +2 -0
- package/dist/mjs/tee/QuoteValidator.js +24 -7
- package/dist/mjs/tee/TcbSerializer.d.ts +20 -0
- package/dist/mjs/tee/TcbSerializer.js +23 -0
- package/dist/mjs/tee/TeeBlockVerifier.d.ts +0 -4
- package/dist/mjs/tee/TeeBlockVerifier.js +5 -46
- package/dist/mjs/tee/TeeCertificateService.d.ts +13 -0
- package/dist/mjs/tee/TeeCertificateService.js +35 -0
- package/dist/mjs/tee/helpers.d.ts +1 -1
- package/dist/mjs/tee/helpers.js +2 -7
- package/dist/mjs/types/Offer.d.ts +14 -3
- package/dist/mjs/types/Offer.js +8 -1
- package/dist/mjs/types/TokenInfo.d.ts +4 -0
- package/dist/mjs/types/TokenInfo.js +2 -0
- package/dist/mjs/types/index.d.ts +1 -0
- package/dist/mjs/types/index.js +2 -1
- 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 +5 -4
|
@@ -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 [{
|
|
@@ -1248,6 +1249,20 @@ export declare const abi: readonly [{
|
|
|
1248
1249
|
}];
|
|
1249
1250
|
readonly stateMutability: "view";
|
|
1250
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";
|
|
1251
1266
|
}, {
|
|
1252
1267
|
readonly inputs: readonly [{
|
|
1253
1268
|
readonly internalType: "address";
|
|
@@ -1439,6 +1454,34 @@ export declare const abi: readonly [{
|
|
|
1439
1454
|
}];
|
|
1440
1455
|
readonly name: "OfferEnabled";
|
|
1441
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";
|
|
1442
1485
|
}, {
|
|
1443
1486
|
readonly anonymous: false;
|
|
1444
1487
|
readonly inputs: readonly [{
|
|
@@ -1509,6 +1552,10 @@ export declare const abi: readonly [{
|
|
|
1509
1552
|
readonly internalType: "string";
|
|
1510
1553
|
readonly name: "argsPublicKey";
|
|
1511
1554
|
readonly type: "string";
|
|
1555
|
+
}, {
|
|
1556
|
+
readonly internalType: "enum TeeOfferSubtype";
|
|
1557
|
+
readonly name: "subtype";
|
|
1558
|
+
readonly type: "uint8";
|
|
1512
1559
|
}];
|
|
1513
1560
|
readonly internalType: "struct TeeOfferInfo";
|
|
1514
1561
|
readonly name: "info";
|
|
@@ -1555,10 +1602,6 @@ export declare const abi: readonly [{
|
|
|
1555
1602
|
readonly internalType: "bool";
|
|
1556
1603
|
readonly name: "enabled";
|
|
1557
1604
|
readonly type: "bool";
|
|
1558
|
-
}, {
|
|
1559
|
-
readonly internalType: "enum TeeOfferSubtype";
|
|
1560
|
-
readonly name: "subtype";
|
|
1561
|
-
readonly type: "uint8";
|
|
1562
1605
|
}];
|
|
1563
1606
|
readonly name: "createTeeOffer";
|
|
1564
1607
|
readonly outputs: readonly [];
|
|
@@ -1569,6 +1612,10 @@ export declare const abi: readonly [{
|
|
|
1569
1612
|
readonly internalType: "address";
|
|
1570
1613
|
readonly name: "providerAuth";
|
|
1571
1614
|
readonly type: "address";
|
|
1615
|
+
}, {
|
|
1616
|
+
readonly internalType: "enum OfferType";
|
|
1617
|
+
readonly name: "offerType";
|
|
1618
|
+
readonly type: "uint8";
|
|
1572
1619
|
}, {
|
|
1573
1620
|
readonly components: readonly [{
|
|
1574
1621
|
readonly internalType: "string";
|
|
@@ -1576,11 +1623,11 @@ export declare const abi: readonly [{
|
|
|
1576
1623
|
readonly type: "string";
|
|
1577
1624
|
}, {
|
|
1578
1625
|
readonly internalType: "enum OfferGroup";
|
|
1579
|
-
readonly name: "
|
|
1626
|
+
readonly name: "group_DEPRECATED";
|
|
1580
1627
|
readonly type: "uint8";
|
|
1581
1628
|
}, {
|
|
1582
1629
|
readonly internalType: "enum OfferType";
|
|
1583
|
-
readonly name: "
|
|
1630
|
+
readonly name: "offerType_DEPRECATED";
|
|
1584
1631
|
readonly type: "uint8";
|
|
1585
1632
|
}, {
|
|
1586
1633
|
readonly internalType: "bool";
|
|
@@ -1628,7 +1675,15 @@ export declare const abi: readonly [{
|
|
|
1628
1675
|
readonly type: "string";
|
|
1629
1676
|
}, {
|
|
1630
1677
|
readonly internalType: "string";
|
|
1631
|
-
readonly name: "
|
|
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";
|
|
1632
1687
|
readonly type: "string";
|
|
1633
1688
|
}];
|
|
1634
1689
|
readonly internalType: "struct ValueOfferInfo";
|
|
@@ -1841,6 +1896,10 @@ export declare const abi: readonly [{
|
|
|
1841
1896
|
readonly internalType: "string";
|
|
1842
1897
|
readonly name: "argsPublicKey";
|
|
1843
1898
|
readonly type: "string";
|
|
1899
|
+
}, {
|
|
1900
|
+
readonly internalType: "enum TeeOfferSubtype";
|
|
1901
|
+
readonly name: "subtype";
|
|
1902
|
+
readonly type: "uint8";
|
|
1844
1903
|
}];
|
|
1845
1904
|
readonly internalType: "struct TeeOfferInfo";
|
|
1846
1905
|
readonly name: "newInfo";
|
|
@@ -1876,11 +1935,11 @@ export declare const abi: readonly [{
|
|
|
1876
1935
|
readonly type: "string";
|
|
1877
1936
|
}, {
|
|
1878
1937
|
readonly internalType: "enum OfferGroup";
|
|
1879
|
-
readonly name: "
|
|
1938
|
+
readonly name: "group_DEPRECATED";
|
|
1880
1939
|
readonly type: "uint8";
|
|
1881
1940
|
}, {
|
|
1882
1941
|
readonly internalType: "enum OfferType";
|
|
1883
|
-
readonly name: "
|
|
1942
|
+
readonly name: "offerType_DEPRECATED";
|
|
1884
1943
|
readonly type: "uint8";
|
|
1885
1944
|
}, {
|
|
1886
1945
|
readonly internalType: "bool";
|
|
@@ -1928,7 +1987,15 @@ export declare const abi: readonly [{
|
|
|
1928
1987
|
readonly type: "string";
|
|
1929
1988
|
}, {
|
|
1930
1989
|
readonly internalType: "string";
|
|
1931
|
-
readonly name: "
|
|
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";
|
|
1932
1999
|
readonly type: "string";
|
|
1933
2000
|
}];
|
|
1934
2001
|
readonly internalType: "struct ValueOfferInfo";
|
|
@@ -1966,6 +2033,20 @@ export declare const abi: readonly [{
|
|
|
1966
2033
|
readonly outputs: readonly [];
|
|
1967
2034
|
readonly stateMutability: "nonpayable";
|
|
1968
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";
|
|
2047
|
+
readonly outputs: readonly [];
|
|
2048
|
+
readonly stateMutability: "nonpayable";
|
|
2049
|
+
readonly type: "function";
|
|
1969
2050
|
}, {
|
|
1970
2051
|
readonly inputs: readonly [{
|
|
1971
2052
|
readonly internalType: "uint256";
|
|
@@ -2011,6 +2092,10 @@ export declare const abi: readonly [{
|
|
|
2011
2092
|
readonly internalType: "string";
|
|
2012
2093
|
readonly name: "argsPublicKey";
|
|
2013
2094
|
readonly type: "string";
|
|
2095
|
+
}, {
|
|
2096
|
+
readonly internalType: "enum TeeOfferSubtype";
|
|
2097
|
+
readonly name: "subtype";
|
|
2098
|
+
readonly type: "uint8";
|
|
2014
2099
|
}];
|
|
2015
2100
|
readonly internalType: "struct TeeOfferInfo";
|
|
2016
2101
|
readonly name: "info";
|
|
@@ -2019,10 +2104,6 @@ export declare const abi: readonly [{
|
|
|
2019
2104
|
readonly internalType: "bool";
|
|
2020
2105
|
readonly name: "enabled";
|
|
2021
2106
|
readonly type: "bool";
|
|
2022
|
-
}, {
|
|
2023
|
-
readonly internalType: "enum TeeOfferSubtype";
|
|
2024
|
-
readonly name: "subtype";
|
|
2025
|
-
readonly type: "uint8";
|
|
2026
2107
|
}];
|
|
2027
2108
|
readonly internalType: "struct TeeOfferData[]";
|
|
2028
2109
|
readonly name: "";
|
|
@@ -2054,6 +2135,10 @@ export declare const abi: readonly [{
|
|
|
2054
2135
|
readonly internalType: "address";
|
|
2055
2136
|
readonly name: "providerAuth";
|
|
2056
2137
|
readonly type: "address";
|
|
2138
|
+
}, {
|
|
2139
|
+
readonly internalType: "enum OfferType";
|
|
2140
|
+
readonly name: "offerType";
|
|
2141
|
+
readonly type: "uint8";
|
|
2057
2142
|
}, {
|
|
2058
2143
|
readonly components: readonly [{
|
|
2059
2144
|
readonly internalType: "string";
|
|
@@ -2061,11 +2146,11 @@ export declare const abi: readonly [{
|
|
|
2061
2146
|
readonly type: "string";
|
|
2062
2147
|
}, {
|
|
2063
2148
|
readonly internalType: "enum OfferGroup";
|
|
2064
|
-
readonly name: "
|
|
2149
|
+
readonly name: "group_DEPRECATED";
|
|
2065
2150
|
readonly type: "uint8";
|
|
2066
2151
|
}, {
|
|
2067
2152
|
readonly internalType: "enum OfferType";
|
|
2068
|
-
readonly name: "
|
|
2153
|
+
readonly name: "offerType_DEPRECATED";
|
|
2069
2154
|
readonly type: "uint8";
|
|
2070
2155
|
}, {
|
|
2071
2156
|
readonly internalType: "bool";
|
|
@@ -2113,7 +2198,15 @@ export declare const abi: readonly [{
|
|
|
2113
2198
|
readonly type: "string";
|
|
2114
2199
|
}, {
|
|
2115
2200
|
readonly internalType: "string";
|
|
2116
|
-
readonly name: "
|
|
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";
|
|
2117
2210
|
readonly type: "string";
|
|
2118
2211
|
}];
|
|
2119
2212
|
readonly internalType: "struct ValueOfferInfo";
|
|
@@ -2255,7 +2348,7 @@ export declare const abi: readonly [{
|
|
|
2255
2348
|
readonly type: "uint64[]";
|
|
2256
2349
|
}];
|
|
2257
2350
|
readonly internalType: "struct ValueOfferRestrictionsSpecification";
|
|
2258
|
-
readonly name: "";
|
|
2351
|
+
readonly name: "ret";
|
|
2259
2352
|
readonly type: "tuple";
|
|
2260
2353
|
}];
|
|
2261
2354
|
readonly stateMutability: "view";
|
|
@@ -2393,6 +2486,10 @@ export declare const abi: readonly [{
|
|
|
2393
2486
|
readonly internalType: "string";
|
|
2394
2487
|
readonly name: "argsPublicKey";
|
|
2395
2488
|
readonly type: "string";
|
|
2489
|
+
}, {
|
|
2490
|
+
readonly internalType: "enum TeeOfferSubtype";
|
|
2491
|
+
readonly name: "subtype";
|
|
2492
|
+
readonly type: "uint8";
|
|
2396
2493
|
}];
|
|
2397
2494
|
readonly internalType: "struct TeeOfferInfo";
|
|
2398
2495
|
readonly name: "info";
|
|
@@ -2401,10 +2498,6 @@ export declare const abi: readonly [{
|
|
|
2401
2498
|
readonly internalType: "bool";
|
|
2402
2499
|
readonly name: "enabled";
|
|
2403
2500
|
readonly type: "bool";
|
|
2404
|
-
}, {
|
|
2405
|
-
readonly internalType: "enum TeeOfferSubtype";
|
|
2406
|
-
readonly name: "subtype";
|
|
2407
|
-
readonly type: "uint8";
|
|
2408
2501
|
}];
|
|
2409
2502
|
readonly internalType: "struct TeeOfferData";
|
|
2410
2503
|
readonly name: "ret";
|
|
@@ -2421,36 +2514,41 @@ export declare const abi: readonly [{
|
|
|
2421
2514
|
readonly name: "getTeeOfferHardwareInfo";
|
|
2422
2515
|
readonly outputs: readonly [{
|
|
2423
2516
|
readonly components: readonly [{
|
|
2424
|
-
readonly
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2517
|
+
readonly components: readonly [{
|
|
2518
|
+
readonly internalType: "uint64";
|
|
2519
|
+
readonly name: "cpuCores";
|
|
2520
|
+
readonly type: "uint64";
|
|
2521
|
+
}, {
|
|
2522
|
+
readonly internalType: "uint64";
|
|
2523
|
+
readonly name: "ram";
|
|
2524
|
+
readonly type: "uint64";
|
|
2525
|
+
}, {
|
|
2526
|
+
readonly internalType: "uint64";
|
|
2527
|
+
readonly name: "diskUsage";
|
|
2528
|
+
readonly type: "uint64";
|
|
2529
|
+
}, {
|
|
2530
|
+
readonly internalType: "uint64";
|
|
2531
|
+
readonly name: "gpuCores";
|
|
2532
|
+
readonly type: "uint64";
|
|
2533
|
+
}, {
|
|
2534
|
+
readonly internalType: "uint64";
|
|
2535
|
+
readonly name: "vram";
|
|
2536
|
+
readonly type: "uint64";
|
|
2537
|
+
}];
|
|
2538
|
+
readonly internalType: "struct SlotInfo";
|
|
2539
|
+
readonly name: "slotInfo";
|
|
2540
|
+
readonly type: "tuple";
|
|
2439
2541
|
}, {
|
|
2440
|
-
readonly
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
readonly components: readonly [{
|
|
2449
|
-
readonly internalType: "string";
|
|
2450
|
-
readonly name: "data";
|
|
2451
|
-
readonly type: "string";
|
|
2542
|
+
readonly components: readonly [{
|
|
2543
|
+
readonly internalType: "string";
|
|
2544
|
+
readonly name: "data";
|
|
2545
|
+
readonly type: "string";
|
|
2546
|
+
}];
|
|
2547
|
+
readonly internalType: "struct OptionInfo";
|
|
2548
|
+
readonly name: "optionInfo";
|
|
2549
|
+
readonly type: "tuple";
|
|
2452
2550
|
}];
|
|
2453
|
-
readonly internalType: "struct
|
|
2551
|
+
readonly internalType: "struct TeeOfferHardwareInfo";
|
|
2454
2552
|
readonly name: "";
|
|
2455
2553
|
readonly type: "tuple";
|
|
2456
2554
|
}];
|
|
@@ -2486,6 +2584,10 @@ export declare const abi: readonly [{
|
|
|
2486
2584
|
readonly internalType: "address";
|
|
2487
2585
|
readonly name: "providerAuth";
|
|
2488
2586
|
readonly type: "address";
|
|
2587
|
+
}, {
|
|
2588
|
+
readonly internalType: "enum OfferType";
|
|
2589
|
+
readonly name: "offerType";
|
|
2590
|
+
readonly type: "uint8";
|
|
2489
2591
|
}, {
|
|
2490
2592
|
readonly components: readonly [{
|
|
2491
2593
|
readonly internalType: "string";
|
|
@@ -2493,11 +2595,11 @@ export declare const abi: readonly [{
|
|
|
2493
2595
|
readonly type: "string";
|
|
2494
2596
|
}, {
|
|
2495
2597
|
readonly internalType: "enum OfferGroup";
|
|
2496
|
-
readonly name: "
|
|
2598
|
+
readonly name: "group_DEPRECATED";
|
|
2497
2599
|
readonly type: "uint8";
|
|
2498
2600
|
}, {
|
|
2499
2601
|
readonly internalType: "enum OfferType";
|
|
2500
|
-
readonly name: "
|
|
2602
|
+
readonly name: "offerType_DEPRECATED";
|
|
2501
2603
|
readonly type: "uint8";
|
|
2502
2604
|
}, {
|
|
2503
2605
|
readonly internalType: "bool";
|
|
@@ -2545,7 +2647,15 @@ export declare const abi: readonly [{
|
|
|
2545
2647
|
readonly type: "string";
|
|
2546
2648
|
}, {
|
|
2547
2649
|
readonly internalType: "string";
|
|
2548
|
-
readonly name: "
|
|
2650
|
+
readonly name: "signatureKeyHash";
|
|
2651
|
+
readonly type: "string";
|
|
2652
|
+
}, {
|
|
2653
|
+
readonly internalType: "enum ValueOfferSubtype";
|
|
2654
|
+
readonly name: "subtype";
|
|
2655
|
+
readonly type: "uint8";
|
|
2656
|
+
}, {
|
|
2657
|
+
readonly internalType: "string";
|
|
2658
|
+
readonly name: "hardwareContext";
|
|
2549
2659
|
readonly type: "string";
|
|
2550
2660
|
}];
|
|
2551
2661
|
readonly internalType: "struct ValueOfferInfo";
|
|
@@ -2562,6 +2672,20 @@ export declare const abi: readonly [{
|
|
|
2562
2672
|
}];
|
|
2563
2673
|
readonly stateMutability: "view";
|
|
2564
2674
|
readonly type: "function";
|
|
2675
|
+
}, {
|
|
2676
|
+
readonly inputs: readonly [{
|
|
2677
|
+
readonly internalType: "uint256";
|
|
2678
|
+
readonly name: "offerId";
|
|
2679
|
+
readonly type: "uint256";
|
|
2680
|
+
}];
|
|
2681
|
+
readonly name: "getValueOfferSubtype";
|
|
2682
|
+
readonly outputs: readonly [{
|
|
2683
|
+
readonly internalType: "enum ValueOfferSubtype";
|
|
2684
|
+
readonly name: "";
|
|
2685
|
+
readonly type: "uint8";
|
|
2686
|
+
}];
|
|
2687
|
+
readonly stateMutability: "view";
|
|
2688
|
+
readonly type: "function";
|
|
2565
2689
|
}, {
|
|
2566
2690
|
readonly inputs: readonly [{
|
|
2567
2691
|
readonly internalType: "uint256";
|
|
@@ -3201,11 +3325,7 @@ export declare const abi: readonly [{
|
|
|
3201
3325
|
readonly type: "tuple";
|
|
3202
3326
|
}];
|
|
3203
3327
|
readonly name: "createSubOrder";
|
|
3204
|
-
readonly outputs: readonly [
|
|
3205
|
-
readonly internalType: "uint256";
|
|
3206
|
-
readonly name: "";
|
|
3207
|
-
readonly type: "uint256";
|
|
3208
|
-
}];
|
|
3328
|
+
readonly outputs: readonly [];
|
|
3209
3329
|
readonly stateMutability: "nonpayable";
|
|
3210
3330
|
readonly type: "function";
|
|
3211
3331
|
}, {
|
|
@@ -3315,11 +3435,7 @@ export declare const abi: readonly [{
|
|
|
3315
3435
|
readonly type: "tuple";
|
|
3316
3436
|
}];
|
|
3317
3437
|
readonly name: "createSubOrderByApp";
|
|
3318
|
-
readonly outputs: readonly [
|
|
3319
|
-
readonly internalType: "uint256";
|
|
3320
|
-
readonly name: "";
|
|
3321
|
-
readonly type: "uint256";
|
|
3322
|
-
}];
|
|
3438
|
+
readonly outputs: readonly [];
|
|
3323
3439
|
readonly stateMutability: "nonpayable";
|
|
3324
3440
|
readonly type: "function";
|
|
3325
3441
|
}, {
|
|
@@ -3499,7 +3615,7 @@ export declare const abi: readonly [{
|
|
|
3499
3615
|
readonly name: "unlockProfitByList";
|
|
3500
3616
|
readonly outputs: readonly [{
|
|
3501
3617
|
readonly internalType: "uint256";
|
|
3502
|
-
readonly name: "
|
|
3618
|
+
readonly name: "unlockedIndex";
|
|
3503
3619
|
readonly type: "uint256";
|
|
3504
3620
|
}];
|
|
3505
3621
|
readonly stateMutability: "nonpayable";
|
|
@@ -3990,61 +4106,66 @@ export declare const abi: readonly [{
|
|
|
3990
4106
|
}];
|
|
3991
4107
|
readonly name: "getOrder";
|
|
3992
4108
|
readonly outputs: readonly [{
|
|
3993
|
-
readonly internalType: "address";
|
|
3994
|
-
readonly name: "";
|
|
3995
|
-
readonly type: "address";
|
|
3996
|
-
}, {
|
|
3997
4109
|
readonly components: readonly [{
|
|
3998
|
-
readonly internalType: "
|
|
3999
|
-
readonly name: "
|
|
4000
|
-
readonly type: "
|
|
4001
|
-
}, {
|
|
4002
|
-
readonly internalType: "string";
|
|
4003
|
-
readonly name: "resultInfo";
|
|
4004
|
-
readonly type: "string";
|
|
4005
|
-
}, {
|
|
4006
|
-
readonly internalType: "string";
|
|
4007
|
-
readonly name: "encryptedRequirements_DEPRECATED";
|
|
4008
|
-
readonly type: "string";
|
|
4009
|
-
}, {
|
|
4010
|
-
readonly internalType: "string";
|
|
4011
|
-
readonly name: "encryptedArgs_DEPRECATED";
|
|
4012
|
-
readonly type: "string";
|
|
4013
|
-
}, {
|
|
4014
|
-
readonly internalType: "enum OrderStatus";
|
|
4015
|
-
readonly name: "status";
|
|
4016
|
-
readonly type: "uint8";
|
|
4017
|
-
}, {
|
|
4018
|
-
readonly internalType: "bytes32";
|
|
4019
|
-
readonly name: "externalId";
|
|
4020
|
-
readonly type: "bytes32";
|
|
4021
|
-
}, {
|
|
4022
|
-
readonly internalType: "uint256";
|
|
4023
|
-
readonly name: "expectedPrice";
|
|
4024
|
-
readonly type: "uint256";
|
|
4025
|
-
}, {
|
|
4026
|
-
readonly internalType: "uint256";
|
|
4027
|
-
readonly name: "maxPriceSlippage";
|
|
4028
|
-
readonly type: "uint256";
|
|
4110
|
+
readonly internalType: "address";
|
|
4111
|
+
readonly name: "consumer";
|
|
4112
|
+
readonly type: "address";
|
|
4029
4113
|
}, {
|
|
4030
|
-
readonly
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
|
|
4038
|
-
|
|
4039
|
-
|
|
4040
|
-
|
|
4041
|
-
|
|
4114
|
+
readonly components: readonly [{
|
|
4115
|
+
readonly internalType: "uint256";
|
|
4116
|
+
readonly name: "offerId";
|
|
4117
|
+
readonly type: "uint256";
|
|
4118
|
+
}, {
|
|
4119
|
+
readonly internalType: "string";
|
|
4120
|
+
readonly name: "resultInfo";
|
|
4121
|
+
readonly type: "string";
|
|
4122
|
+
}, {
|
|
4123
|
+
readonly internalType: "string";
|
|
4124
|
+
readonly name: "encryptedRequirements_DEPRECATED";
|
|
4125
|
+
readonly type: "string";
|
|
4126
|
+
}, {
|
|
4127
|
+
readonly internalType: "string";
|
|
4128
|
+
readonly name: "encryptedArgs_DEPRECATED";
|
|
4129
|
+
readonly type: "string";
|
|
4130
|
+
}, {
|
|
4131
|
+
readonly internalType: "enum OrderStatus";
|
|
4132
|
+
readonly name: "status";
|
|
4133
|
+
readonly type: "uint8";
|
|
4134
|
+
}, {
|
|
4135
|
+
readonly internalType: "bytes32";
|
|
4136
|
+
readonly name: "externalId";
|
|
4137
|
+
readonly type: "bytes32";
|
|
4138
|
+
}, {
|
|
4139
|
+
readonly internalType: "uint256";
|
|
4140
|
+
readonly name: "expectedPrice";
|
|
4141
|
+
readonly type: "uint256";
|
|
4142
|
+
}, {
|
|
4143
|
+
readonly internalType: "uint256";
|
|
4144
|
+
readonly name: "maxPriceSlippage";
|
|
4145
|
+
readonly type: "uint256";
|
|
4146
|
+
}, {
|
|
4147
|
+
readonly internalType: "uint64";
|
|
4148
|
+
readonly name: "offerVersion";
|
|
4149
|
+
readonly type: "uint64";
|
|
4150
|
+
}];
|
|
4151
|
+
readonly internalType: "struct OrderInfo";
|
|
4152
|
+
readonly name: "info";
|
|
4153
|
+
readonly type: "tuple";
|
|
4042
4154
|
}, {
|
|
4043
|
-
readonly
|
|
4044
|
-
|
|
4045
|
-
|
|
4155
|
+
readonly components: readonly [{
|
|
4156
|
+
readonly internalType: "string";
|
|
4157
|
+
readonly name: "encryptedResult";
|
|
4158
|
+
readonly type: "string";
|
|
4159
|
+
}, {
|
|
4160
|
+
readonly internalType: "uint256";
|
|
4161
|
+
readonly name: "orderPrice";
|
|
4162
|
+
readonly type: "uint256";
|
|
4163
|
+
}];
|
|
4164
|
+
readonly internalType: "struct OrderResult";
|
|
4165
|
+
readonly name: "result";
|
|
4166
|
+
readonly type: "tuple";
|
|
4046
4167
|
}];
|
|
4047
|
-
readonly internalType: "struct
|
|
4168
|
+
readonly internalType: "struct OrderBrief";
|
|
4048
4169
|
readonly name: "";
|
|
4049
4170
|
readonly type: "tuple";
|
|
4050
4171
|
}];
|
|
@@ -4851,6 +4972,10 @@ export declare const abi: readonly [{
|
|
|
4851
4972
|
readonly internalType: "enum OfferType";
|
|
4852
4973
|
readonly name: "offerType";
|
|
4853
4974
|
readonly type: "uint8";
|
|
4975
|
+
}, {
|
|
4976
|
+
readonly internalType: "bool";
|
|
4977
|
+
readonly name: "enabled";
|
|
4978
|
+
readonly type: "bool";
|
|
4854
4979
|
}];
|
|
4855
4980
|
readonly name: "addProviderOffer";
|
|
4856
4981
|
readonly outputs: readonly [];
|
|
@@ -4989,6 +5114,25 @@ export declare const abi: readonly [{
|
|
|
4989
5114
|
readonly outputs: readonly [];
|
|
4990
5115
|
readonly stateMutability: "nonpayable";
|
|
4991
5116
|
readonly type: "function";
|
|
5117
|
+
}, {
|
|
5118
|
+
readonly inputs: readonly [{
|
|
5119
|
+
readonly components: readonly [{
|
|
5120
|
+
readonly internalType: "address";
|
|
5121
|
+
readonly name: "tokenContractAddress";
|
|
5122
|
+
readonly type: "address";
|
|
5123
|
+
}, {
|
|
5124
|
+
readonly internalType: "uint32";
|
|
5125
|
+
readonly name: "protocolCommissionPercent";
|
|
5126
|
+
readonly type: "uint32";
|
|
5127
|
+
}];
|
|
5128
|
+
readonly internalType: "struct TokenInfo[]";
|
|
5129
|
+
readonly name: "newTokens";
|
|
5130
|
+
readonly type: "tuple[]";
|
|
5131
|
+
}];
|
|
5132
|
+
readonly name: "addTokens";
|
|
5133
|
+
readonly outputs: readonly [];
|
|
5134
|
+
readonly stateMutability: "nonpayable";
|
|
5135
|
+
readonly type: "function";
|
|
4992
5136
|
}, {
|
|
4993
5137
|
readonly inputs: readonly [{
|
|
4994
5138
|
readonly internalType: "enum ParamName";
|
|
@@ -5003,6 +5147,16 @@ export declare const abi: readonly [{
|
|
|
5003
5147
|
}];
|
|
5004
5148
|
readonly stateMutability: "view";
|
|
5005
5149
|
readonly type: "function";
|
|
5150
|
+
}, {
|
|
5151
|
+
readonly inputs: readonly [];
|
|
5152
|
+
readonly name: "getProtocolCommissionDenominator";
|
|
5153
|
+
readonly outputs: readonly [{
|
|
5154
|
+
readonly internalType: "uint32";
|
|
5155
|
+
readonly name: "";
|
|
5156
|
+
readonly type: "uint32";
|
|
5157
|
+
}];
|
|
5158
|
+
readonly stateMutability: "pure";
|
|
5159
|
+
readonly type: "function";
|
|
5006
5160
|
}, {
|
|
5007
5161
|
readonly inputs: readonly [];
|
|
5008
5162
|
readonly name: "getProtocolIncomeDistribution";
|
|
@@ -5013,7 +5167,7 @@ export declare const abi: readonly [{
|
|
|
5013
5167
|
readonly type: "address";
|
|
5014
5168
|
}, {
|
|
5015
5169
|
readonly internalType: "uint16";
|
|
5016
|
-
readonly name: "
|
|
5170
|
+
readonly name: "percent";
|
|
5017
5171
|
readonly type: "uint16";
|
|
5018
5172
|
}];
|
|
5019
5173
|
readonly internalType: "struct ProtocolIncomeRecipient[]";
|
|
@@ -5052,6 +5206,49 @@ export declare const abi: readonly [{
|
|
|
5052
5206
|
}];
|
|
5053
5207
|
readonly stateMutability: "view";
|
|
5054
5208
|
readonly type: "function";
|
|
5209
|
+
}, {
|
|
5210
|
+
readonly inputs: readonly [];
|
|
5211
|
+
readonly name: "getTokens";
|
|
5212
|
+
readonly outputs: readonly [{
|
|
5213
|
+
readonly components: readonly [{
|
|
5214
|
+
readonly internalType: "address";
|
|
5215
|
+
readonly name: "tokenContractAddress";
|
|
5216
|
+
readonly type: "address";
|
|
5217
|
+
}, {
|
|
5218
|
+
readonly internalType: "uint32";
|
|
5219
|
+
readonly name: "protocolCommissionPercent";
|
|
5220
|
+
readonly type: "uint32";
|
|
5221
|
+
}];
|
|
5222
|
+
readonly internalType: "struct TokenInfo[]";
|
|
5223
|
+
readonly name: "";
|
|
5224
|
+
readonly type: "tuple[]";
|
|
5225
|
+
}];
|
|
5226
|
+
readonly stateMutability: "view";
|
|
5227
|
+
readonly type: "function";
|
|
5228
|
+
}, {
|
|
5229
|
+
readonly inputs: readonly [{
|
|
5230
|
+
readonly internalType: "address";
|
|
5231
|
+
readonly name: "tokenContractAddress";
|
|
5232
|
+
readonly type: "address";
|
|
5233
|
+
}];
|
|
5234
|
+
readonly name: "isTokenExists";
|
|
5235
|
+
readonly outputs: readonly [{
|
|
5236
|
+
readonly internalType: "bool";
|
|
5237
|
+
readonly name: "";
|
|
5238
|
+
readonly type: "bool";
|
|
5239
|
+
}];
|
|
5240
|
+
readonly stateMutability: "view";
|
|
5241
|
+
readonly type: "function";
|
|
5242
|
+
}, {
|
|
5243
|
+
readonly inputs: readonly [{
|
|
5244
|
+
readonly internalType: "address[]";
|
|
5245
|
+
readonly name: "tokensAddresses";
|
|
5246
|
+
readonly type: "address[]";
|
|
5247
|
+
}];
|
|
5248
|
+
readonly name: "removeTokens";
|
|
5249
|
+
readonly outputs: readonly [];
|
|
5250
|
+
readonly stateMutability: "nonpayable";
|
|
5251
|
+
readonly type: "function";
|
|
5055
5252
|
}, {
|
|
5056
5253
|
readonly inputs: readonly [{
|
|
5057
5254
|
readonly internalType: "enum ParamName";
|
|
@@ -5131,7 +5328,7 @@ export declare const abi: readonly [{
|
|
|
5131
5328
|
readonly type: "address";
|
|
5132
5329
|
}, {
|
|
5133
5330
|
readonly internalType: "uint16";
|
|
5134
|
-
readonly name: "
|
|
5331
|
+
readonly name: "percent";
|
|
5135
5332
|
readonly type: "uint16";
|
|
5136
5333
|
}];
|
|
5137
5334
|
readonly internalType: "struct ProtocolIncomeRecipient[]";
|
|
@@ -5894,16 +6091,6 @@ export declare const abi: readonly [{
|
|
|
5894
6091
|
}];
|
|
5895
6092
|
readonly name: "WarningMessage";
|
|
5896
6093
|
readonly type: "event";
|
|
5897
|
-
}, {
|
|
5898
|
-
readonly inputs: readonly [{
|
|
5899
|
-
readonly internalType: "uint256";
|
|
5900
|
-
readonly name: "tcbId";
|
|
5901
|
-
readonly type: "uint256";
|
|
5902
|
-
}];
|
|
5903
|
-
readonly name: "_unlockTcbReward";
|
|
5904
|
-
readonly outputs: readonly [];
|
|
5905
|
-
readonly stateMutability: "nonpayable";
|
|
5906
|
-
readonly type: "function";
|
|
5907
6094
|
}, {
|
|
5908
6095
|
readonly inputs: readonly [{
|
|
5909
6096
|
readonly internalType: "uint256";
|
|
@@ -6063,7 +6250,7 @@ export declare const abi: readonly [{
|
|
|
6063
6250
|
readonly name: "unlockTcbRewardByList";
|
|
6064
6251
|
readonly outputs: readonly [{
|
|
6065
6252
|
readonly internalType: "uint256";
|
|
6066
|
-
readonly name: "
|
|
6253
|
+
readonly name: "unlockedIndex";
|
|
6067
6254
|
readonly type: "uint256";
|
|
6068
6255
|
}];
|
|
6069
6256
|
readonly stateMutability: "nonpayable";
|
|
@@ -7264,9 +7451,9 @@ export declare const abi: readonly [{
|
|
|
7264
7451
|
readonly name: "timestamp";
|
|
7265
7452
|
readonly type: "uint32";
|
|
7266
7453
|
}];
|
|
7267
|
-
readonly internalType: "struct SecretRequest";
|
|
7268
|
-
readonly name: "
|
|
7269
|
-
readonly type: "tuple";
|
|
7454
|
+
readonly internalType: "struct SecretRequest[]";
|
|
7455
|
+
readonly name: "requests";
|
|
7456
|
+
readonly type: "tuple[]";
|
|
7270
7457
|
}, {
|
|
7271
7458
|
readonly components: readonly [{
|
|
7272
7459
|
readonly internalType: "string";
|
|
@@ -7855,6 +8042,28 @@ export declare const abi: readonly [{
|
|
|
7855
8042
|
readonly outputs: readonly [];
|
|
7856
8043
|
readonly stateMutability: "nonpayable";
|
|
7857
8044
|
readonly type: "function";
|
|
8045
|
+
}, {
|
|
8046
|
+
readonly inputs: readonly [{
|
|
8047
|
+
readonly internalType: "uint256";
|
|
8048
|
+
readonly name: "teeOfferIssuerId";
|
|
8049
|
+
readonly type: "uint256";
|
|
8050
|
+
}, {
|
|
8051
|
+
readonly internalType: "uint256";
|
|
8052
|
+
readonly name: "teeOfferKeeperId";
|
|
8053
|
+
readonly type: "uint256";
|
|
8054
|
+
}, {
|
|
8055
|
+
readonly internalType: "uint256";
|
|
8056
|
+
readonly name: "offerId";
|
|
8057
|
+
readonly type: "uint256";
|
|
8058
|
+
}, {
|
|
8059
|
+
readonly internalType: "uint64";
|
|
8060
|
+
readonly name: "offerVersion";
|
|
8061
|
+
readonly type: "uint64";
|
|
8062
|
+
}];
|
|
8063
|
+
readonly name: "removeOfferResource";
|
|
8064
|
+
readonly outputs: readonly [];
|
|
8065
|
+
readonly stateMutability: "nonpayable";
|
|
8066
|
+
readonly type: "function";
|
|
7858
8067
|
}, {
|
|
7859
8068
|
readonly inputs: readonly [{
|
|
7860
8069
|
readonly components: readonly [{
|
|
@@ -8495,20 +8704,6 @@ export declare const abi: readonly [{
|
|
|
8495
8704
|
readonly outputs: readonly [];
|
|
8496
8705
|
readonly stateMutability: "nonpayable";
|
|
8497
8706
|
readonly type: "function";
|
|
8498
|
-
}, {
|
|
8499
|
-
readonly inputs: readonly [{
|
|
8500
|
-
readonly internalType: "address";
|
|
8501
|
-
readonly name: "sender";
|
|
8502
|
-
readonly type: "address";
|
|
8503
|
-
}, {
|
|
8504
|
-
readonly internalType: "uint256";
|
|
8505
|
-
readonly name: "orderId";
|
|
8506
|
-
readonly type: "uint256";
|
|
8507
|
-
}];
|
|
8508
|
-
readonly name: "withdrawChangeByApp";
|
|
8509
|
-
readonly outputs: readonly [];
|
|
8510
|
-
readonly stateMutability: "nonpayable";
|
|
8511
|
-
readonly type: "function";
|
|
8512
8707
|
}, {
|
|
8513
8708
|
readonly inputs: readonly [{
|
|
8514
8709
|
readonly internalType: "address";
|