@super-protocol/sdk-js 3.15.0 → 3.16.0-beta.1
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 -3
- package/dist/cjs/RIGenerator.js +6 -7
- package/dist/cjs/TeeInputGeneratorBase.d.ts +2 -2
- package/dist/cjs/TeeInputGeneratorBase.js +1 -1
- package/dist/cjs/connectors/BaseConnector.d.ts +2 -3
- package/dist/cjs/connectors/BaseConnector.js +1 -1
- package/dist/cjs/connectors/BlockchainConnector.js +1 -3
- package/dist/cjs/connectors/BlockchainEventsListener.d.ts +2 -2
- package/dist/cjs/connectors/BlockchainEventsListener.js +2 -3
- package/dist/cjs/constants.d.ts +2 -0
- package/dist/cjs/constants.js +6 -2
- package/dist/cjs/contracts/Campaign.d.ts +1078 -0
- package/dist/cjs/contracts/Campaign.js +1401 -0
- package/dist/cjs/contracts/abi.d.ts +406 -245
- package/dist/cjs/contracts/abi.js +511 -307
- package/dist/cjs/contracts/adminCertificateHelperAbi.d.ts +316 -0
- package/dist/cjs/contracts/adminCertificateHelperAbi.js +410 -0
- package/dist/cjs/crypto/Crypto.d.ts +13 -10
- package/dist/cjs/crypto/Crypto.js +17 -14
- package/dist/cjs/crypto/nodejs/AES.d.ts +1 -1
- package/dist/cjs/crypto/nodejs/AES.js +2 -2
- package/dist/cjs/crypto/nodejs/ARIA.d.ts +1 -1
- package/dist/cjs/crypto/nodejs/ARIA.js +2 -2
- package/dist/cjs/errors/index.d.ts +0 -1
- package/dist/cjs/errors/index.js +2 -4
- package/dist/cjs/index.d.ts +2 -1
- package/dist/cjs/index.js +5 -4
- package/dist/cjs/models/Offer.d.ts +1 -16
- package/dist/cjs/models/Offer.js +1 -51
- package/dist/cjs/models/Order.d.ts +1 -1
- package/dist/cjs/models/Order.js +15 -11
- package/dist/cjs/providers/storage/S3StorageProvider.js +5 -5
- package/dist/cjs/providers/storage/StorageKeyValueAdapter.d.ts +1 -1
- package/dist/cjs/providers/storage/parseStorageCredentials.d.ts +2 -1
- package/dist/cjs/staticModels/AdminCertificateHelper.d.ts +24 -0
- package/dist/cjs/staticModels/AdminCertificateHelper.js +99 -0
- package/dist/cjs/staticModels/Campaign.d.ts +61 -0
- package/dist/cjs/staticModels/Campaign.js +297 -0
- package/dist/cjs/staticModels/Offers.d.ts +0 -1
- package/dist/cjs/staticModels/Offers.js +2 -4
- package/dist/cjs/staticModels/Orders.js +9 -10
- package/dist/cjs/staticModels/SuperproToken.d.ts +7 -7
- package/dist/cjs/staticModels/SuperproToken.js +3 -3
- package/dist/cjs/staticModels/TeeOffers.d.ts +1 -1
- package/dist/cjs/staticModels/TeeOffers.js +2 -4
- package/dist/cjs/tee/TeeCertificateService.js +8 -1
- package/dist/cjs/types/Campaign.d.ts +45 -0
- package/dist/cjs/types/Campaign.js +16 -0
- package/dist/cjs/types/Offer.d.ts +0 -5
- package/dist/cjs/types/Order.d.ts +20 -25
- package/dist/cjs/types/Order.js +14 -21
- package/dist/cjs/types/index.d.ts +1 -0
- package/dist/cjs/types/index.js +2 -1
- package/dist/cjs/utils/TxManager.js +1 -5
- package/dist/cjs/utils/admin-service.d.ts +13 -0
- package/dist/cjs/utils/admin-service.js +73 -0
- package/dist/cjs/utils/helper.d.ts +3 -0
- package/dist/cjs/utils/helper.js +20 -2
- package/dist/cjs/utils/helpers/OrderArgsHelper.d.ts +2 -2
- package/dist/cjs/utils/helpers/OrderArgsHelper.js +5 -5
- package/dist/cjs/utils/helpers/index.d.ts +0 -1
- package/dist/cjs/utils/helpers/index.js +1 -2
- package/dist/cjs/utils/order/versify.js +7 -1
- package/dist/cjs/utils/rent-calculator/rent-calculator.js +3 -2
- package/dist/cjs/utils/rent-calculator/types.d.ts +1 -0
- package/dist/cjs/utils/types.d.ts +5 -0
- package/dist/mjs/RIGenerator.d.ts +2 -3
- package/dist/mjs/RIGenerator.js +7 -8
- package/dist/mjs/TeeInputGeneratorBase.d.ts +2 -2
- package/dist/mjs/TeeInputGeneratorBase.js +1 -1
- package/dist/mjs/connectors/BaseConnector.d.ts +2 -3
- package/dist/mjs/connectors/BaseConnector.js +1 -1
- package/dist/mjs/connectors/BlockchainConnector.js +1 -3
- package/dist/mjs/connectors/BlockchainEventsListener.d.ts +2 -2
- package/dist/mjs/connectors/BlockchainEventsListener.js +2 -3
- package/dist/mjs/constants.d.ts +2 -0
- package/dist/mjs/constants.js +5 -1
- package/dist/mjs/contracts/Campaign.d.ts +1078 -0
- package/dist/mjs/contracts/Campaign.js +1398 -0
- package/dist/mjs/contracts/abi.d.ts +406 -245
- package/dist/mjs/contracts/abi.js +509 -305
- package/dist/mjs/contracts/adminCertificateHelperAbi.d.ts +316 -0
- package/dist/mjs/contracts/adminCertificateHelperAbi.js +407 -0
- package/dist/mjs/crypto/Crypto.d.ts +13 -10
- package/dist/mjs/crypto/Crypto.js +17 -14
- package/dist/mjs/crypto/nodejs/AES.d.ts +1 -1
- package/dist/mjs/crypto/nodejs/AES.js +2 -2
- package/dist/mjs/crypto/nodejs/ARIA.d.ts +1 -1
- package/dist/mjs/crypto/nodejs/ARIA.js +2 -2
- package/dist/mjs/errors/index.d.ts +0 -1
- package/dist/mjs/errors/index.js +1 -2
- package/dist/mjs/index.d.ts +2 -1
- package/dist/mjs/index.js +3 -2
- package/dist/mjs/models/Offer.d.ts +1 -16
- package/dist/mjs/models/Offer.js +1 -51
- package/dist/mjs/models/Order.d.ts +1 -1
- package/dist/mjs/models/Order.js +15 -11
- package/dist/mjs/providers/storage/S3StorageProvider.js +5 -5
- package/dist/mjs/providers/storage/StorageKeyValueAdapter.d.ts +1 -1
- package/dist/mjs/providers/storage/parseStorageCredentials.d.ts +2 -1
- package/dist/mjs/staticModels/AdminCertificateHelper.d.ts +24 -0
- package/dist/mjs/staticModels/AdminCertificateHelper.js +92 -0
- package/dist/mjs/staticModels/Campaign.d.ts +61 -0
- package/dist/mjs/staticModels/Campaign.js +292 -0
- package/dist/mjs/staticModels/Offers.d.ts +0 -1
- package/dist/mjs/staticModels/Offers.js +2 -4
- package/dist/mjs/staticModels/Orders.js +9 -10
- package/dist/mjs/staticModels/SuperproToken.d.ts +7 -7
- package/dist/mjs/staticModels/SuperproToken.js +3 -3
- package/dist/mjs/staticModels/TeeOffers.d.ts +1 -1
- package/dist/mjs/staticModels/TeeOffers.js +2 -4
- package/dist/mjs/tee/TeeCertificateService.js +9 -2
- package/dist/mjs/types/Campaign.d.ts +45 -0
- package/dist/mjs/types/Campaign.js +13 -0
- package/dist/mjs/types/Offer.d.ts +0 -5
- package/dist/mjs/types/Order.d.ts +20 -25
- package/dist/mjs/types/Order.js +14 -18
- package/dist/mjs/types/index.d.ts +1 -0
- package/dist/mjs/types/index.js +2 -1
- package/dist/mjs/utils/TxManager.js +1 -5
- package/dist/mjs/utils/admin-service.d.ts +13 -0
- package/dist/mjs/utils/admin-service.js +66 -0
- package/dist/mjs/utils/helper.d.ts +3 -0
- package/dist/mjs/utils/helper.js +17 -2
- package/dist/mjs/utils/helpers/OrderArgsHelper.d.ts +2 -2
- package/dist/mjs/utils/helpers/OrderArgsHelper.js +5 -5
- package/dist/mjs/utils/helpers/index.d.ts +0 -1
- package/dist/mjs/utils/helpers/index.js +1 -2
- package/dist/mjs/utils/order/versify.js +7 -1
- package/dist/mjs/utils/rent-calculator/rent-calculator.js +3 -2
- package/dist/mjs/utils/rent-calculator/types.d.ts +1 -0
- package/dist/mjs/utils/types.d.ts +5 -0
- package/package.json +3 -3
- package/dist/cjs/errors/insufficient-funds.error.d.ts +0 -19
- package/dist/cjs/errors/insufficient-funds.error.js +0 -57
- package/dist/cjs/utils/helpers/streamToBuffer.d.ts +0 -4
- package/dist/cjs/utils/helpers/streamToBuffer.js +0 -13
- package/dist/mjs/errors/insufficient-funds.error.d.ts +0 -19
- package/dist/mjs/errors/insufficient-funds.error.js +0 -53
- package/dist/mjs/utils/helpers/streamToBuffer.d.ts +0 -4
- package/dist/mjs/utils/helpers/streamToBuffer.js +0 -9
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export declare const Approval: "Approval";
|
|
2
|
+
export declare const Transfer: "Transfer";
|
|
1
3
|
export declare const TcbBenchmarkChanged: "TcbBenchmarkChanged";
|
|
2
4
|
export declare const TcbCompleted: "TcbCompleted";
|
|
3
5
|
export declare const TcbInitialized: "TcbInitialized";
|
|
@@ -63,8 +65,296 @@ export declare const OrderResourceCreated: "OrderResourceCreated";
|
|
|
63
65
|
export declare const OfferStorageRequestCanceled: "OfferStorageRequestCanceled";
|
|
64
66
|
export declare const OfferStorageRequestCreated: "OfferStorageRequestCreated";
|
|
65
67
|
export declare const SecretRequestCreated: "SecretRequestCreated";
|
|
66
|
-
export type AbiEvent = typeof TcbBenchmarkChanged | typeof TcbCompleted | typeof TcbInitialized | typeof TcbBanned | typeof DepositPartLocked | typeof DepositPartUnlocked | typeof DepositReplenished | typeof DepositWithdrawn | typeof ProfitWithdrawn | typeof OfferCreated | typeof OfferDisabled | typeof OfferEnabled | typeof OfferVersionAdded | typeof OfferVersionDeleted | typeof SetValueOfferRestrictions | typeof TeeOfferCreated | typeof TeeOfferViolationRateChanged | typeof OrdersGroupCreated | typeof OrderCreated | typeof OrderStatusUpdated | typeof OrderAwaitingPaymentChanged | typeof OrderChangeWithdrawn | typeof OrderDepositRefilled | typeof OrderProfitWithdrawn | typeof OrderEncryptedResultUpdated | typeof OrderStarted | typeof OrderOptionsChangeRequested | typeof OrderOptionsChanged | typeof OrderSlotCountUpdateRequested | typeof OrderSlotCountUpdated | typeof RewardsClaimed | typeof SetValueOfferIgnored | typeof ProviderDepositTokenUpdated | typeof ProviderModified | typeof ProviderRegistered | typeof ProviderSecurityDepoRefilled | typeof ProviderSecurityDepoUnlocked | typeof ProviderViolationRateIncremented | typeof DepositConfiscated | typeof RewardConfiscated | typeof RewardTokenChanged | typeof StorageLocked | typeof TokenInfoUpdated | typeof TokenRemoved | typeof ValueRewardsEnabled | typeof OptionAdded | typeof OptionDeleted | typeof OptionUpdated | typeof TeeSlotAdded | typeof TeeSlotDeleted | typeof TeeSlotUpdated | typeof TcbRewardUnlocked | typeof WarningMessage | typeof ValueSlotAdded | typeof ValueSlotDeleted | typeof ValueSlotUpdated | typeof DiamondCut | typeof OwnershipTransferred | typeof LoaderSecretAccessPublicKeySessionUpdated | typeof LoaderSessionKeyUpdated | typeof OfferResourceCreated | typeof OrderResourceCreated | typeof OfferStorageRequestCanceled | typeof OfferStorageRequestCreated | typeof SecretRequestCreated;
|
|
68
|
+
export type AbiEvent = typeof Approval | typeof Transfer | typeof TcbBenchmarkChanged | typeof TcbCompleted | typeof TcbInitialized | typeof TcbBanned | typeof DepositPartLocked | typeof DepositPartUnlocked | typeof DepositReplenished | typeof DepositWithdrawn | typeof ProfitWithdrawn | typeof OfferCreated | typeof OfferDisabled | typeof OfferEnabled | typeof OfferVersionAdded | typeof OfferVersionDeleted | typeof SetValueOfferRestrictions | typeof TeeOfferCreated | typeof TeeOfferViolationRateChanged | typeof OrdersGroupCreated | typeof OrderCreated | typeof OrderStatusUpdated | typeof OrderAwaitingPaymentChanged | typeof OrderChangeWithdrawn | typeof OrderDepositRefilled | typeof OrderProfitWithdrawn | typeof OrderEncryptedResultUpdated | typeof OrderStarted | typeof OrderOptionsChangeRequested | typeof OrderOptionsChanged | typeof OrderSlotCountUpdateRequested | typeof OrderSlotCountUpdated | typeof RewardsClaimed | typeof SetValueOfferIgnored | typeof ProviderDepositTokenUpdated | typeof ProviderModified | typeof ProviderRegistered | typeof ProviderSecurityDepoRefilled | typeof ProviderSecurityDepoUnlocked | typeof ProviderViolationRateIncremented | typeof DepositConfiscated | typeof RewardConfiscated | typeof RewardTokenChanged | typeof StorageLocked | typeof TokenInfoUpdated | typeof TokenRemoved | typeof ValueRewardsEnabled | typeof OptionAdded | typeof OptionDeleted | typeof OptionUpdated | typeof TeeSlotAdded | typeof TeeSlotDeleted | typeof TeeSlotUpdated | typeof TcbRewardUnlocked | typeof WarningMessage | typeof ValueSlotAdded | typeof ValueSlotDeleted | typeof ValueSlotUpdated | typeof DiamondCut | typeof OwnershipTransferred | typeof LoaderSecretAccessPublicKeySessionUpdated | typeof LoaderSessionKeyUpdated | typeof OfferResourceCreated | typeof OrderResourceCreated | typeof OfferStorageRequestCanceled | typeof OfferStorageRequestCreated | typeof SecretRequestCreated;
|
|
67
69
|
export declare const abi: readonly [{
|
|
70
|
+
readonly anonymous: false;
|
|
71
|
+
readonly inputs: readonly [{
|
|
72
|
+
readonly indexed: true;
|
|
73
|
+
readonly internalType: "address";
|
|
74
|
+
readonly name: "owner";
|
|
75
|
+
readonly type: "address";
|
|
76
|
+
}, {
|
|
77
|
+
readonly indexed: true;
|
|
78
|
+
readonly internalType: "address";
|
|
79
|
+
readonly name: "spender";
|
|
80
|
+
readonly type: "address";
|
|
81
|
+
}, {
|
|
82
|
+
readonly indexed: false;
|
|
83
|
+
readonly internalType: "uint256";
|
|
84
|
+
readonly name: "value";
|
|
85
|
+
readonly type: "uint256";
|
|
86
|
+
}];
|
|
87
|
+
readonly name: "Approval";
|
|
88
|
+
readonly type: "event";
|
|
89
|
+
}, {
|
|
90
|
+
readonly anonymous: false;
|
|
91
|
+
readonly inputs: readonly [{
|
|
92
|
+
readonly indexed: true;
|
|
93
|
+
readonly internalType: "address";
|
|
94
|
+
readonly name: "from";
|
|
95
|
+
readonly type: "address";
|
|
96
|
+
}, {
|
|
97
|
+
readonly indexed: true;
|
|
98
|
+
readonly internalType: "address";
|
|
99
|
+
readonly name: "to";
|
|
100
|
+
readonly type: "address";
|
|
101
|
+
}, {
|
|
102
|
+
readonly indexed: false;
|
|
103
|
+
readonly internalType: "uint256";
|
|
104
|
+
readonly name: "value";
|
|
105
|
+
readonly type: "uint256";
|
|
106
|
+
}];
|
|
107
|
+
readonly name: "Transfer";
|
|
108
|
+
readonly type: "event";
|
|
109
|
+
}, {
|
|
110
|
+
readonly inputs: readonly [{
|
|
111
|
+
readonly internalType: "address";
|
|
112
|
+
readonly name: "owner";
|
|
113
|
+
readonly type: "address";
|
|
114
|
+
}, {
|
|
115
|
+
readonly internalType: "address";
|
|
116
|
+
readonly name: "spender";
|
|
117
|
+
readonly type: "address";
|
|
118
|
+
}];
|
|
119
|
+
readonly name: "allowance";
|
|
120
|
+
readonly outputs: readonly [{
|
|
121
|
+
readonly internalType: "uint256";
|
|
122
|
+
readonly name: "";
|
|
123
|
+
readonly type: "uint256";
|
|
124
|
+
}];
|
|
125
|
+
readonly stateMutability: "view";
|
|
126
|
+
readonly type: "function";
|
|
127
|
+
}, {
|
|
128
|
+
readonly inputs: readonly [{
|
|
129
|
+
readonly internalType: "address";
|
|
130
|
+
readonly name: "spender";
|
|
131
|
+
readonly type: "address";
|
|
132
|
+
}, {
|
|
133
|
+
readonly internalType: "uint256";
|
|
134
|
+
readonly name: "amount";
|
|
135
|
+
readonly type: "uint256";
|
|
136
|
+
}];
|
|
137
|
+
readonly name: "approve";
|
|
138
|
+
readonly outputs: readonly [{
|
|
139
|
+
readonly internalType: "bool";
|
|
140
|
+
readonly name: "";
|
|
141
|
+
readonly type: "bool";
|
|
142
|
+
}];
|
|
143
|
+
readonly stateMutability: "nonpayable";
|
|
144
|
+
readonly type: "function";
|
|
145
|
+
}, {
|
|
146
|
+
readonly inputs: readonly [{
|
|
147
|
+
readonly internalType: "address";
|
|
148
|
+
readonly name: "account";
|
|
149
|
+
readonly type: "address";
|
|
150
|
+
}];
|
|
151
|
+
readonly name: "balanceOf";
|
|
152
|
+
readonly outputs: readonly [{
|
|
153
|
+
readonly internalType: "uint256";
|
|
154
|
+
readonly name: "";
|
|
155
|
+
readonly type: "uint256";
|
|
156
|
+
}];
|
|
157
|
+
readonly stateMutability: "view";
|
|
158
|
+
readonly type: "function";
|
|
159
|
+
}, {
|
|
160
|
+
readonly inputs: readonly [];
|
|
161
|
+
readonly name: "decimals";
|
|
162
|
+
readonly outputs: readonly [{
|
|
163
|
+
readonly internalType: "uint8";
|
|
164
|
+
readonly name: "";
|
|
165
|
+
readonly type: "uint8";
|
|
166
|
+
}];
|
|
167
|
+
readonly stateMutability: "view";
|
|
168
|
+
readonly type: "function";
|
|
169
|
+
}, {
|
|
170
|
+
readonly inputs: readonly [{
|
|
171
|
+
readonly internalType: "address";
|
|
172
|
+
readonly name: "spender";
|
|
173
|
+
readonly type: "address";
|
|
174
|
+
}, {
|
|
175
|
+
readonly internalType: "uint256";
|
|
176
|
+
readonly name: "subtractedValue";
|
|
177
|
+
readonly type: "uint256";
|
|
178
|
+
}];
|
|
179
|
+
readonly name: "decreaseAllowance";
|
|
180
|
+
readonly outputs: readonly [{
|
|
181
|
+
readonly internalType: "bool";
|
|
182
|
+
readonly name: "";
|
|
183
|
+
readonly type: "bool";
|
|
184
|
+
}];
|
|
185
|
+
readonly stateMutability: "nonpayable";
|
|
186
|
+
readonly type: "function";
|
|
187
|
+
}, {
|
|
188
|
+
readonly inputs: readonly [{
|
|
189
|
+
readonly internalType: "address";
|
|
190
|
+
readonly name: "spender";
|
|
191
|
+
readonly type: "address";
|
|
192
|
+
}, {
|
|
193
|
+
readonly internalType: "uint256";
|
|
194
|
+
readonly name: "addedValue";
|
|
195
|
+
readonly type: "uint256";
|
|
196
|
+
}];
|
|
197
|
+
readonly name: "increaseAllowance";
|
|
198
|
+
readonly outputs: readonly [{
|
|
199
|
+
readonly internalType: "bool";
|
|
200
|
+
readonly name: "";
|
|
201
|
+
readonly type: "bool";
|
|
202
|
+
}];
|
|
203
|
+
readonly stateMutability: "nonpayable";
|
|
204
|
+
readonly type: "function";
|
|
205
|
+
}, {
|
|
206
|
+
readonly inputs: readonly [];
|
|
207
|
+
readonly name: "name";
|
|
208
|
+
readonly outputs: readonly [{
|
|
209
|
+
readonly internalType: "string";
|
|
210
|
+
readonly name: "";
|
|
211
|
+
readonly type: "string";
|
|
212
|
+
}];
|
|
213
|
+
readonly stateMutability: "view";
|
|
214
|
+
readonly type: "function";
|
|
215
|
+
}, {
|
|
216
|
+
readonly inputs: readonly [];
|
|
217
|
+
readonly name: "symbol";
|
|
218
|
+
readonly outputs: readonly [{
|
|
219
|
+
readonly internalType: "string";
|
|
220
|
+
readonly name: "";
|
|
221
|
+
readonly type: "string";
|
|
222
|
+
}];
|
|
223
|
+
readonly stateMutability: "view";
|
|
224
|
+
readonly type: "function";
|
|
225
|
+
}, {
|
|
226
|
+
readonly inputs: readonly [];
|
|
227
|
+
readonly name: "totalSupply";
|
|
228
|
+
readonly outputs: readonly [{
|
|
229
|
+
readonly internalType: "uint256";
|
|
230
|
+
readonly name: "";
|
|
231
|
+
readonly type: "uint256";
|
|
232
|
+
}];
|
|
233
|
+
readonly stateMutability: "view";
|
|
234
|
+
readonly type: "function";
|
|
235
|
+
}, {
|
|
236
|
+
readonly inputs: readonly [{
|
|
237
|
+
readonly internalType: "address";
|
|
238
|
+
readonly name: "to";
|
|
239
|
+
readonly type: "address";
|
|
240
|
+
}, {
|
|
241
|
+
readonly internalType: "uint256";
|
|
242
|
+
readonly name: "amount";
|
|
243
|
+
readonly type: "uint256";
|
|
244
|
+
}];
|
|
245
|
+
readonly name: "transfer";
|
|
246
|
+
readonly outputs: readonly [{
|
|
247
|
+
readonly internalType: "bool";
|
|
248
|
+
readonly name: "";
|
|
249
|
+
readonly type: "bool";
|
|
250
|
+
}];
|
|
251
|
+
readonly stateMutability: "nonpayable";
|
|
252
|
+
readonly type: "function";
|
|
253
|
+
}, {
|
|
254
|
+
readonly inputs: readonly [{
|
|
255
|
+
readonly internalType: "address";
|
|
256
|
+
readonly name: "from";
|
|
257
|
+
readonly type: "address";
|
|
258
|
+
}, {
|
|
259
|
+
readonly internalType: "address";
|
|
260
|
+
readonly name: "to";
|
|
261
|
+
readonly type: "address";
|
|
262
|
+
}, {
|
|
263
|
+
readonly internalType: "uint256";
|
|
264
|
+
readonly name: "amount";
|
|
265
|
+
readonly type: "uint256";
|
|
266
|
+
}];
|
|
267
|
+
readonly name: "transferFrom";
|
|
268
|
+
readonly outputs: readonly [{
|
|
269
|
+
readonly internalType: "bool";
|
|
270
|
+
readonly name: "";
|
|
271
|
+
readonly type: "bool";
|
|
272
|
+
}];
|
|
273
|
+
readonly stateMutability: "nonpayable";
|
|
274
|
+
readonly type: "function";
|
|
275
|
+
}, {
|
|
276
|
+
readonly inputs: readonly [{
|
|
277
|
+
readonly internalType: "uint256";
|
|
278
|
+
readonly name: "amount";
|
|
279
|
+
readonly type: "uint256";
|
|
280
|
+
}];
|
|
281
|
+
readonly name: "burn";
|
|
282
|
+
readonly outputs: readonly [];
|
|
283
|
+
readonly stateMutability: "nonpayable";
|
|
284
|
+
readonly type: "function";
|
|
285
|
+
}, {
|
|
286
|
+
readonly inputs: readonly [{
|
|
287
|
+
readonly internalType: "address";
|
|
288
|
+
readonly name: "account";
|
|
289
|
+
readonly type: "address";
|
|
290
|
+
}, {
|
|
291
|
+
readonly internalType: "uint256";
|
|
292
|
+
readonly name: "amount";
|
|
293
|
+
readonly type: "uint256";
|
|
294
|
+
}];
|
|
295
|
+
readonly name: "burnFrom";
|
|
296
|
+
readonly outputs: readonly [];
|
|
297
|
+
readonly stateMutability: "nonpayable";
|
|
298
|
+
readonly type: "function";
|
|
299
|
+
}, {
|
|
300
|
+
readonly inputs: readonly [];
|
|
301
|
+
readonly name: "DOMAIN_SEPARATOR";
|
|
302
|
+
readonly outputs: readonly [{
|
|
303
|
+
readonly internalType: "bytes32";
|
|
304
|
+
readonly name: "";
|
|
305
|
+
readonly type: "bytes32";
|
|
306
|
+
}];
|
|
307
|
+
readonly stateMutability: "view";
|
|
308
|
+
readonly type: "function";
|
|
309
|
+
}, {
|
|
310
|
+
readonly inputs: readonly [{
|
|
311
|
+
readonly internalType: "address";
|
|
312
|
+
readonly name: "owner";
|
|
313
|
+
readonly type: "address";
|
|
314
|
+
}];
|
|
315
|
+
readonly name: "nonces";
|
|
316
|
+
readonly outputs: readonly [{
|
|
317
|
+
readonly internalType: "uint256";
|
|
318
|
+
readonly name: "";
|
|
319
|
+
readonly type: "uint256";
|
|
320
|
+
}];
|
|
321
|
+
readonly stateMutability: "view";
|
|
322
|
+
readonly type: "function";
|
|
323
|
+
}, {
|
|
324
|
+
readonly inputs: readonly [{
|
|
325
|
+
readonly internalType: "address";
|
|
326
|
+
readonly name: "owner";
|
|
327
|
+
readonly type: "address";
|
|
328
|
+
}, {
|
|
329
|
+
readonly internalType: "address";
|
|
330
|
+
readonly name: "spender";
|
|
331
|
+
readonly type: "address";
|
|
332
|
+
}, {
|
|
333
|
+
readonly internalType: "uint256";
|
|
334
|
+
readonly name: "value";
|
|
335
|
+
readonly type: "uint256";
|
|
336
|
+
}, {
|
|
337
|
+
readonly internalType: "uint256";
|
|
338
|
+
readonly name: "deadline";
|
|
339
|
+
readonly type: "uint256";
|
|
340
|
+
}, {
|
|
341
|
+
readonly internalType: "uint8";
|
|
342
|
+
readonly name: "v";
|
|
343
|
+
readonly type: "uint8";
|
|
344
|
+
}, {
|
|
345
|
+
readonly internalType: "bytes32";
|
|
346
|
+
readonly name: "r";
|
|
347
|
+
readonly type: "bytes32";
|
|
348
|
+
}, {
|
|
349
|
+
readonly internalType: "bytes32";
|
|
350
|
+
readonly name: "s";
|
|
351
|
+
readonly type: "bytes32";
|
|
352
|
+
}];
|
|
353
|
+
readonly name: "permit";
|
|
354
|
+
readonly outputs: readonly [];
|
|
355
|
+
readonly stateMutability: "nonpayable";
|
|
356
|
+
readonly type: "function";
|
|
357
|
+
}, {
|
|
68
358
|
readonly inputs: readonly [{
|
|
69
359
|
readonly internalType: "uint256";
|
|
70
360
|
readonly name: "from";
|
|
@@ -721,24 +1011,12 @@ export declare const abi: readonly [{
|
|
|
721
1011
|
}, {
|
|
722
1012
|
readonly internalType: "enum TcbStatus";
|
|
723
1013
|
readonly name: "status";
|
|
724
|
-
readonly type: "uint8";
|
|
725
|
-
}];
|
|
726
|
-
readonly name: "setTcbStatus";
|
|
727
|
-
readonly outputs: readonly [];
|
|
728
|
-
readonly stateMutability: "nonpayable";
|
|
729
|
-
readonly type: "function";
|
|
730
|
-
}, {
|
|
731
|
-
readonly inputs: readonly [{
|
|
732
|
-
readonly internalType: "uint8";
|
|
733
|
-
readonly name: "bits";
|
|
734
|
-
readonly type: "uint8";
|
|
735
|
-
}, {
|
|
736
|
-
readonly internalType: "uint256";
|
|
737
|
-
readonly name: "value";
|
|
738
|
-
readonly type: "uint256";
|
|
1014
|
+
readonly type: "uint8";
|
|
739
1015
|
}];
|
|
740
|
-
readonly name: "
|
|
741
|
-
readonly
|
|
1016
|
+
readonly name: "setTcbStatus";
|
|
1017
|
+
readonly outputs: readonly [];
|
|
1018
|
+
readonly stateMutability: "nonpayable";
|
|
1019
|
+
readonly type: "function";
|
|
742
1020
|
}, {
|
|
743
1021
|
readonly anonymous: false;
|
|
744
1022
|
readonly inputs: readonly [{
|
|
@@ -834,14 +1112,6 @@ export declare const abi: readonly [{
|
|
|
834
1112
|
readonly outputs: readonly [];
|
|
835
1113
|
readonly stateMutability: "nonpayable";
|
|
836
1114
|
readonly type: "function";
|
|
837
|
-
}, {
|
|
838
|
-
readonly inputs: readonly [{
|
|
839
|
-
readonly internalType: "address";
|
|
840
|
-
readonly name: "token";
|
|
841
|
-
readonly type: "address";
|
|
842
|
-
}];
|
|
843
|
-
readonly name: "SafeERC20FailedOperation";
|
|
844
|
-
readonly type: "error";
|
|
845
1115
|
}, {
|
|
846
1116
|
readonly anonymous: false;
|
|
847
1117
|
readonly inputs: readonly [{
|
|
@@ -1402,10 +1672,6 @@ export declare const abi: readonly [{
|
|
|
1402
1672
|
readonly internalType: "bool";
|
|
1403
1673
|
readonly name: "enabled";
|
|
1404
1674
|
readonly type: "bool";
|
|
1405
|
-
}, {
|
|
1406
|
-
readonly internalType: "address";
|
|
1407
|
-
readonly name: "offerActionAccount";
|
|
1408
|
-
readonly type: "address";
|
|
1409
1675
|
}];
|
|
1410
1676
|
readonly internalType: "struct Offer";
|
|
1411
1677
|
readonly name: "offer";
|
|
@@ -1496,10 +1762,6 @@ export declare const abi: readonly [{
|
|
|
1496
1762
|
readonly internalType: "bool";
|
|
1497
1763
|
readonly name: "enabled";
|
|
1498
1764
|
readonly type: "bool";
|
|
1499
|
-
}, {
|
|
1500
|
-
readonly internalType: "address";
|
|
1501
|
-
readonly name: "offerActionAccount";
|
|
1502
|
-
readonly type: "address";
|
|
1503
1765
|
}];
|
|
1504
1766
|
readonly internalType: "struct Offer";
|
|
1505
1767
|
readonly name: "offer";
|
|
@@ -1630,20 +1892,6 @@ export declare const abi: readonly [{
|
|
|
1630
1892
|
readonly outputs: readonly [];
|
|
1631
1893
|
readonly stateMutability: "nonpayable";
|
|
1632
1894
|
readonly type: "function";
|
|
1633
|
-
}, {
|
|
1634
|
-
readonly inputs: readonly [{
|
|
1635
|
-
readonly internalType: "uint256";
|
|
1636
|
-
readonly name: "offerId";
|
|
1637
|
-
readonly type: "uint256";
|
|
1638
|
-
}, {
|
|
1639
|
-
readonly internalType: "address";
|
|
1640
|
-
readonly name: "newOfferActionAccount";
|
|
1641
|
-
readonly type: "address";
|
|
1642
|
-
}];
|
|
1643
|
-
readonly name: "setOfferActionAccount";
|
|
1644
|
-
readonly outputs: readonly [];
|
|
1645
|
-
readonly stateMutability: "nonpayable";
|
|
1646
|
-
readonly type: "function";
|
|
1647
1895
|
}, {
|
|
1648
1896
|
readonly inputs: readonly [{
|
|
1649
1897
|
readonly internalType: "uint256";
|
|
@@ -1960,10 +2208,6 @@ export declare const abi: readonly [{
|
|
|
1960
2208
|
readonly internalType: "bool";
|
|
1961
2209
|
readonly name: "enabled";
|
|
1962
2210
|
readonly type: "bool";
|
|
1963
|
-
}, {
|
|
1964
|
-
readonly internalType: "address";
|
|
1965
|
-
readonly name: "offerActionAccount";
|
|
1966
|
-
readonly type: "address";
|
|
1967
2211
|
}];
|
|
1968
2212
|
readonly internalType: "struct Offer";
|
|
1969
2213
|
readonly name: "offer";
|
|
@@ -2037,10 +2281,6 @@ export declare const abi: readonly [{
|
|
|
2037
2281
|
readonly internalType: "bool";
|
|
2038
2282
|
readonly name: "enabled";
|
|
2039
2283
|
readonly type: "bool";
|
|
2040
|
-
}, {
|
|
2041
|
-
readonly internalType: "address";
|
|
2042
|
-
readonly name: "offerActionAccount";
|
|
2043
|
-
readonly type: "address";
|
|
2044
2284
|
}];
|
|
2045
2285
|
readonly internalType: "struct Offer";
|
|
2046
2286
|
readonly name: "offer";
|
|
@@ -2113,22 +2353,6 @@ export declare const abi: readonly [{
|
|
|
2113
2353
|
}];
|
|
2114
2354
|
readonly stateMutability: "view";
|
|
2115
2355
|
readonly type: "function";
|
|
2116
|
-
}, {
|
|
2117
|
-
readonly inputs: readonly [{
|
|
2118
|
-
readonly internalType: "int256";
|
|
2119
|
-
readonly name: "value";
|
|
2120
|
-
readonly type: "int256";
|
|
2121
|
-
}];
|
|
2122
|
-
readonly name: "SafeCastOverflowedIntToUint";
|
|
2123
|
-
readonly type: "error";
|
|
2124
|
-
}, {
|
|
2125
|
-
readonly inputs: readonly [{
|
|
2126
|
-
readonly internalType: "uint256";
|
|
2127
|
-
readonly name: "value";
|
|
2128
|
-
readonly type: "uint256";
|
|
2129
|
-
}];
|
|
2130
|
-
readonly name: "SafeCastOverflowedUintToInt";
|
|
2131
|
-
readonly type: "error";
|
|
2132
2356
|
}, {
|
|
2133
2357
|
readonly inputs: readonly [{
|
|
2134
2358
|
readonly internalType: "uint256";
|
|
@@ -2143,20 +2367,6 @@ export declare const abi: readonly [{
|
|
|
2143
2367
|
}];
|
|
2144
2368
|
readonly stateMutability: "view";
|
|
2145
2369
|
readonly type: "function";
|
|
2146
|
-
}, {
|
|
2147
|
-
readonly inputs: readonly [{
|
|
2148
|
-
readonly internalType: "uint256";
|
|
2149
|
-
readonly name: "offerId";
|
|
2150
|
-
readonly type: "uint256";
|
|
2151
|
-
}];
|
|
2152
|
-
readonly name: "getOfferActionAccount";
|
|
2153
|
-
readonly outputs: readonly [{
|
|
2154
|
-
readonly internalType: "address";
|
|
2155
|
-
readonly name: "";
|
|
2156
|
-
readonly type: "address";
|
|
2157
|
-
}];
|
|
2158
|
-
readonly stateMutability: "view";
|
|
2159
|
-
readonly type: "function";
|
|
2160
2370
|
}, {
|
|
2161
2371
|
readonly inputs: readonly [{
|
|
2162
2372
|
readonly internalType: "uint256";
|
|
@@ -2790,41 +3000,6 @@ export declare const abi: readonly [{
|
|
|
2790
3000
|
}];
|
|
2791
3001
|
readonly stateMutability: "view";
|
|
2792
3002
|
readonly type: "function";
|
|
2793
|
-
}, {
|
|
2794
|
-
readonly inputs: readonly [{
|
|
2795
|
-
readonly internalType: "uint256";
|
|
2796
|
-
readonly name: "offerId";
|
|
2797
|
-
readonly type: "uint256";
|
|
2798
|
-
}, {
|
|
2799
|
-
readonly internalType: "uint256";
|
|
2800
|
-
readonly name: "from";
|
|
2801
|
-
readonly type: "uint256";
|
|
2802
|
-
}, {
|
|
2803
|
-
readonly internalType: "uint256";
|
|
2804
|
-
readonly name: "to";
|
|
2805
|
-
readonly type: "uint256";
|
|
2806
|
-
}, {
|
|
2807
|
-
readonly components: readonly [{
|
|
2808
|
-
readonly internalType: "bool";
|
|
2809
|
-
readonly name: "includeNew";
|
|
2810
|
-
readonly type: "bool";
|
|
2811
|
-
}, {
|
|
2812
|
-
readonly internalType: "bool";
|
|
2813
|
-
readonly name: "includeDeleted";
|
|
2814
|
-
readonly type: "bool";
|
|
2815
|
-
}];
|
|
2816
|
-
readonly internalType: "struct OfferVersionFilter";
|
|
2817
|
-
readonly name: "filter";
|
|
2818
|
-
readonly type: "tuple";
|
|
2819
|
-
}];
|
|
2820
|
-
readonly name: "getOfferVersionsIdsFiltered";
|
|
2821
|
-
readonly outputs: readonly [{
|
|
2822
|
-
readonly internalType: "uint256[]";
|
|
2823
|
-
readonly name: "";
|
|
2824
|
-
readonly type: "uint256[]";
|
|
2825
|
-
}];
|
|
2826
|
-
readonly stateMutability: "view";
|
|
2827
|
-
readonly type: "function";
|
|
2828
3003
|
}, {
|
|
2829
3004
|
readonly inputs: readonly [{
|
|
2830
3005
|
readonly internalType: "enum OfferType";
|
|
@@ -2874,10 +3049,6 @@ export declare const abi: readonly [{
|
|
|
2874
3049
|
readonly internalType: "bool";
|
|
2875
3050
|
readonly name: "enabled";
|
|
2876
3051
|
readonly type: "bool";
|
|
2877
|
-
}, {
|
|
2878
|
-
readonly internalType: "address";
|
|
2879
|
-
readonly name: "offerActionAccount";
|
|
2880
|
-
readonly type: "address";
|
|
2881
3052
|
}];
|
|
2882
3053
|
readonly internalType: "struct Offer";
|
|
2883
3054
|
readonly name: "offer";
|
|
@@ -3006,10 +3177,6 @@ export declare const abi: readonly [{
|
|
|
3006
3177
|
readonly internalType: "bool";
|
|
3007
3178
|
readonly name: "enabled";
|
|
3008
3179
|
readonly type: "bool";
|
|
3009
|
-
}, {
|
|
3010
|
-
readonly internalType: "address";
|
|
3011
|
-
readonly name: "offerActionAccount";
|
|
3012
|
-
readonly type: "address";
|
|
3013
3180
|
}];
|
|
3014
3181
|
readonly internalType: "struct Offer";
|
|
3015
3182
|
readonly name: "offer";
|
|
@@ -3501,7 +3668,7 @@ export declare const abi: readonly [{
|
|
|
3501
3668
|
readonly type: "uint256[]";
|
|
3502
3669
|
}, {
|
|
3503
3670
|
readonly internalType: "uint256";
|
|
3504
|
-
readonly name: "
|
|
3671
|
+
readonly name: "outputOfferId";
|
|
3505
3672
|
readonly type: "uint256";
|
|
3506
3673
|
}, {
|
|
3507
3674
|
readonly internalType: "uint64[]";
|
|
@@ -3509,7 +3676,7 @@ export declare const abi: readonly [{
|
|
|
3509
3676
|
readonly type: "uint64[]";
|
|
3510
3677
|
}, {
|
|
3511
3678
|
readonly internalType: "uint64";
|
|
3512
|
-
readonly name: "
|
|
3679
|
+
readonly name: "outputOfferVersion";
|
|
3513
3680
|
readonly type: "uint64";
|
|
3514
3681
|
}];
|
|
3515
3682
|
readonly internalType: "struct OrderArgs";
|
|
@@ -3602,7 +3769,7 @@ export declare const abi: readonly [{
|
|
|
3602
3769
|
readonly type: "uint256[]";
|
|
3603
3770
|
}, {
|
|
3604
3771
|
readonly internalType: "uint256";
|
|
3605
|
-
readonly name: "
|
|
3772
|
+
readonly name: "outputOfferId";
|
|
3606
3773
|
readonly type: "uint256";
|
|
3607
3774
|
}, {
|
|
3608
3775
|
readonly internalType: "uint64[]";
|
|
@@ -3610,7 +3777,7 @@ export declare const abi: readonly [{
|
|
|
3610
3777
|
readonly type: "uint64[]";
|
|
3611
3778
|
}, {
|
|
3612
3779
|
readonly internalType: "uint64";
|
|
3613
|
-
readonly name: "
|
|
3780
|
+
readonly name: "outputOfferVersion";
|
|
3614
3781
|
readonly type: "uint64";
|
|
3615
3782
|
}];
|
|
3616
3783
|
readonly internalType: "struct OrderArgs";
|
|
@@ -3703,7 +3870,7 @@ export declare const abi: readonly [{
|
|
|
3703
3870
|
readonly type: "uint256[]";
|
|
3704
3871
|
}, {
|
|
3705
3872
|
readonly internalType: "uint256";
|
|
3706
|
-
readonly name: "
|
|
3873
|
+
readonly name: "outputOfferId";
|
|
3707
3874
|
readonly type: "uint256";
|
|
3708
3875
|
}, {
|
|
3709
3876
|
readonly internalType: "uint64[]";
|
|
@@ -3711,7 +3878,7 @@ export declare const abi: readonly [{
|
|
|
3711
3878
|
readonly type: "uint64[]";
|
|
3712
3879
|
}, {
|
|
3713
3880
|
readonly internalType: "uint64";
|
|
3714
|
-
readonly name: "
|
|
3881
|
+
readonly name: "outputOfferVersion";
|
|
3715
3882
|
readonly type: "uint64";
|
|
3716
3883
|
}];
|
|
3717
3884
|
readonly internalType: "struct OrderArgs";
|
|
@@ -3809,7 +3976,7 @@ export declare const abi: readonly [{
|
|
|
3809
3976
|
readonly type: "uint256[]";
|
|
3810
3977
|
}, {
|
|
3811
3978
|
readonly internalType: "uint256";
|
|
3812
|
-
readonly name: "
|
|
3979
|
+
readonly name: "outputOfferId";
|
|
3813
3980
|
readonly type: "uint256";
|
|
3814
3981
|
}, {
|
|
3815
3982
|
readonly internalType: "uint64[]";
|
|
@@ -3817,7 +3984,7 @@ export declare const abi: readonly [{
|
|
|
3817
3984
|
readonly type: "uint64[]";
|
|
3818
3985
|
}, {
|
|
3819
3986
|
readonly internalType: "uint64";
|
|
3820
|
-
readonly name: "
|
|
3987
|
+
readonly name: "outputOfferVersion";
|
|
3821
3988
|
readonly type: "uint64";
|
|
3822
3989
|
}];
|
|
3823
3990
|
readonly internalType: "struct OrderArgs";
|
|
@@ -4515,6 +4682,20 @@ export declare const abi: readonly [{
|
|
|
4515
4682
|
}];
|
|
4516
4683
|
readonly stateMutability: "view";
|
|
4517
4684
|
readonly type: "function";
|
|
4685
|
+
}, {
|
|
4686
|
+
readonly inputs: readonly [{
|
|
4687
|
+
readonly internalType: "uint256";
|
|
4688
|
+
readonly name: "orderId";
|
|
4689
|
+
readonly type: "uint256";
|
|
4690
|
+
}];
|
|
4691
|
+
readonly name: "calculateOrderOutputReserve";
|
|
4692
|
+
readonly outputs: readonly [{
|
|
4693
|
+
readonly internalType: "uint256";
|
|
4694
|
+
readonly name: "";
|
|
4695
|
+
readonly type: "uint256";
|
|
4696
|
+
}];
|
|
4697
|
+
readonly stateMutability: "view";
|
|
4698
|
+
readonly type: "function";
|
|
4518
4699
|
}, {
|
|
4519
4700
|
readonly inputs: readonly [{
|
|
4520
4701
|
readonly internalType: "uint256";
|
|
@@ -4700,20 +4881,6 @@ export declare const abi: readonly [{
|
|
|
4700
4881
|
}];
|
|
4701
4882
|
readonly stateMutability: "view";
|
|
4702
4883
|
readonly type: "function";
|
|
4703
|
-
}, {
|
|
4704
|
-
readonly inputs: readonly [{
|
|
4705
|
-
readonly internalType: "uint256";
|
|
4706
|
-
readonly name: "orderId";
|
|
4707
|
-
readonly type: "uint256";
|
|
4708
|
-
}];
|
|
4709
|
-
readonly name: "getBillingStartDate";
|
|
4710
|
-
readonly outputs: readonly [{
|
|
4711
|
-
readonly internalType: "uint256";
|
|
4712
|
-
readonly name: "";
|
|
4713
|
-
readonly type: "uint256";
|
|
4714
|
-
}];
|
|
4715
|
-
readonly stateMutability: "view";
|
|
4716
|
-
readonly type: "function";
|
|
4717
4884
|
}, {
|
|
4718
4885
|
readonly inputs: readonly [{
|
|
4719
4886
|
readonly internalType: "uint256";
|
|
@@ -4817,6 +4984,10 @@ export declare const abi: readonly [{
|
|
|
4817
4984
|
readonly internalType: "uint256";
|
|
4818
4985
|
readonly name: "currentCost";
|
|
4819
4986
|
readonly type: "uint256";
|
|
4987
|
+
}, {
|
|
4988
|
+
readonly internalType: "uint256";
|
|
4989
|
+
readonly name: "orderOutputReserve";
|
|
4990
|
+
readonly type: "uint256";
|
|
4820
4991
|
}, {
|
|
4821
4992
|
readonly internalType: "uint256";
|
|
4822
4993
|
readonly name: "totalDepositSpent";
|
|
@@ -4881,7 +5052,7 @@ export declare const abi: readonly [{
|
|
|
4881
5052
|
readonly type: "uint256[]";
|
|
4882
5053
|
}, {
|
|
4883
5054
|
readonly internalType: "uint256";
|
|
4884
|
-
readonly name: "
|
|
5055
|
+
readonly name: "outputOfferId";
|
|
4885
5056
|
readonly type: "uint256";
|
|
4886
5057
|
}, {
|
|
4887
5058
|
readonly internalType: "uint64[]";
|
|
@@ -4889,7 +5060,7 @@ export declare const abi: readonly [{
|
|
|
4889
5060
|
readonly type: "uint64[]";
|
|
4890
5061
|
}, {
|
|
4891
5062
|
readonly internalType: "uint64";
|
|
4892
|
-
readonly name: "
|
|
5063
|
+
readonly name: "outputOfferVersion";
|
|
4893
5064
|
readonly type: "uint64";
|
|
4894
5065
|
}];
|
|
4895
5066
|
readonly internalType: "struct OrderArgs";
|
|
@@ -5055,7 +5226,7 @@ export declare const abi: readonly [{
|
|
|
5055
5226
|
readonly type: "uint256[]";
|
|
5056
5227
|
}, {
|
|
5057
5228
|
readonly internalType: "uint256";
|
|
5058
|
-
readonly name: "
|
|
5229
|
+
readonly name: "outputOfferId";
|
|
5059
5230
|
readonly type: "uint256";
|
|
5060
5231
|
}, {
|
|
5061
5232
|
readonly internalType: "uint64[]";
|
|
@@ -5063,7 +5234,7 @@ export declare const abi: readonly [{
|
|
|
5063
5234
|
readonly type: "uint64[]";
|
|
5064
5235
|
}, {
|
|
5065
5236
|
readonly internalType: "uint64";
|
|
5066
|
-
readonly name: "
|
|
5237
|
+
readonly name: "outputOfferVersion";
|
|
5067
5238
|
readonly type: "uint64";
|
|
5068
5239
|
}];
|
|
5069
5240
|
readonly internalType: "struct OrderArgs";
|
|
@@ -5421,20 +5592,6 @@ export declare const abi: readonly [{
|
|
|
5421
5592
|
}];
|
|
5422
5593
|
readonly stateMutability: "view";
|
|
5423
5594
|
readonly type: "function";
|
|
5424
|
-
}, {
|
|
5425
|
-
readonly inputs: readonly [{
|
|
5426
|
-
readonly internalType: "uint256";
|
|
5427
|
-
readonly name: "orderId";
|
|
5428
|
-
readonly type: "uint256";
|
|
5429
|
-
}];
|
|
5430
|
-
readonly name: "isBlockingSuborder";
|
|
5431
|
-
readonly outputs: readonly [{
|
|
5432
|
-
readonly internalType: "bool";
|
|
5433
|
-
readonly name: "";
|
|
5434
|
-
readonly type: "bool";
|
|
5435
|
-
}];
|
|
5436
|
-
readonly stateMutability: "view";
|
|
5437
|
-
readonly type: "function";
|
|
5438
5595
|
}, {
|
|
5439
5596
|
readonly inputs: readonly [{
|
|
5440
5597
|
readonly internalType: "uint256";
|
|
@@ -5491,18 +5648,6 @@ export declare const abi: readonly [{
|
|
|
5491
5648
|
}];
|
|
5492
5649
|
readonly stateMutability: "view";
|
|
5493
5650
|
readonly type: "function";
|
|
5494
|
-
}, {
|
|
5495
|
-
readonly inputs: readonly [{
|
|
5496
|
-
readonly internalType: "uint8";
|
|
5497
|
-
readonly name: "bits";
|
|
5498
|
-
readonly type: "uint8";
|
|
5499
|
-
}, {
|
|
5500
|
-
readonly internalType: "int256";
|
|
5501
|
-
readonly name: "value";
|
|
5502
|
-
readonly type: "int256";
|
|
5503
|
-
}];
|
|
5504
|
-
readonly name: "SafeCastOverflowedIntDowncast";
|
|
5505
|
-
readonly type: "error";
|
|
5506
5651
|
}, {
|
|
5507
5652
|
readonly anonymous: false;
|
|
5508
5653
|
readonly inputs: readonly [{
|
|
@@ -9312,7 +9457,7 @@ export declare const abi: readonly [{
|
|
|
9312
9457
|
readonly type: "uint256[]";
|
|
9313
9458
|
}, {
|
|
9314
9459
|
readonly internalType: "uint256";
|
|
9315
|
-
readonly name: "
|
|
9460
|
+
readonly name: "outputOfferId";
|
|
9316
9461
|
readonly type: "uint256";
|
|
9317
9462
|
}, {
|
|
9318
9463
|
readonly internalType: "uint64[]";
|
|
@@ -9320,7 +9465,7 @@ export declare const abi: readonly [{
|
|
|
9320
9465
|
readonly type: "uint64[]";
|
|
9321
9466
|
}, {
|
|
9322
9467
|
readonly internalType: "uint64";
|
|
9323
|
-
readonly name: "
|
|
9468
|
+
readonly name: "outputOfferVersion";
|
|
9324
9469
|
readonly type: "uint64";
|
|
9325
9470
|
}];
|
|
9326
9471
|
readonly internalType: "struct OrderArgs";
|
|
@@ -9400,7 +9545,7 @@ export declare const abi: readonly [{
|
|
|
9400
9545
|
readonly type: "uint256[]";
|
|
9401
9546
|
}, {
|
|
9402
9547
|
readonly internalType: "uint256";
|
|
9403
|
-
readonly name: "
|
|
9548
|
+
readonly name: "outputOfferId";
|
|
9404
9549
|
readonly type: "uint256";
|
|
9405
9550
|
}, {
|
|
9406
9551
|
readonly internalType: "uint64[]";
|
|
@@ -9408,7 +9553,7 @@ export declare const abi: readonly [{
|
|
|
9408
9553
|
readonly type: "uint64[]";
|
|
9409
9554
|
}, {
|
|
9410
9555
|
readonly internalType: "uint64";
|
|
9411
|
-
readonly name: "
|
|
9556
|
+
readonly name: "outputOfferVersion";
|
|
9412
9557
|
readonly type: "uint64";
|
|
9413
9558
|
}];
|
|
9414
9559
|
readonly internalType: "struct OrderArgs";
|
|
@@ -9495,7 +9640,7 @@ export declare const abi: readonly [{
|
|
|
9495
9640
|
readonly type: "uint256[]";
|
|
9496
9641
|
}, {
|
|
9497
9642
|
readonly internalType: "uint256";
|
|
9498
|
-
readonly name: "
|
|
9643
|
+
readonly name: "outputOfferId";
|
|
9499
9644
|
readonly type: "uint256";
|
|
9500
9645
|
}, {
|
|
9501
9646
|
readonly internalType: "uint64[]";
|
|
@@ -9503,7 +9648,7 @@ export declare const abi: readonly [{
|
|
|
9503
9648
|
readonly type: "uint64[]";
|
|
9504
9649
|
}, {
|
|
9505
9650
|
readonly internalType: "uint64";
|
|
9506
|
-
readonly name: "
|
|
9651
|
+
readonly name: "outputOfferVersion";
|
|
9507
9652
|
readonly type: "uint64";
|
|
9508
9653
|
}];
|
|
9509
9654
|
readonly internalType: "struct OrderArgs";
|
|
@@ -9583,7 +9728,7 @@ export declare const abi: readonly [{
|
|
|
9583
9728
|
readonly type: "uint256[]";
|
|
9584
9729
|
}, {
|
|
9585
9730
|
readonly internalType: "uint256";
|
|
9586
|
-
readonly name: "
|
|
9731
|
+
readonly name: "outputOfferId";
|
|
9587
9732
|
readonly type: "uint256";
|
|
9588
9733
|
}, {
|
|
9589
9734
|
readonly internalType: "uint64[]";
|
|
@@ -9591,7 +9736,7 @@ export declare const abi: readonly [{
|
|
|
9591
9736
|
readonly type: "uint64[]";
|
|
9592
9737
|
}, {
|
|
9593
9738
|
readonly internalType: "uint64";
|
|
9594
|
-
readonly name: "
|
|
9739
|
+
readonly name: "outputOfferVersion";
|
|
9595
9740
|
readonly type: "uint64";
|
|
9596
9741
|
}];
|
|
9597
9742
|
readonly internalType: "struct OrderArgs";
|
|
@@ -9624,6 +9769,26 @@ export declare const abi: readonly [{
|
|
|
9624
9769
|
readonly outputs: readonly [];
|
|
9625
9770
|
readonly stateMutability: "nonpayable";
|
|
9626
9771
|
readonly type: "function";
|
|
9772
|
+
}, {
|
|
9773
|
+
readonly inputs: readonly [];
|
|
9774
|
+
readonly name: "deployer";
|
|
9775
|
+
readonly outputs: readonly [{
|
|
9776
|
+
readonly internalType: "address";
|
|
9777
|
+
readonly name: "";
|
|
9778
|
+
readonly type: "address";
|
|
9779
|
+
}];
|
|
9780
|
+
readonly stateMutability: "view";
|
|
9781
|
+
readonly type: "function";
|
|
9782
|
+
}, {
|
|
9783
|
+
readonly inputs: readonly [];
|
|
9784
|
+
readonly name: "deploymentBlockNumber";
|
|
9785
|
+
readonly outputs: readonly [{
|
|
9786
|
+
readonly internalType: "uint64";
|
|
9787
|
+
readonly name: "";
|
|
9788
|
+
readonly type: "uint64";
|
|
9789
|
+
}];
|
|
9790
|
+
readonly stateMutability: "view";
|
|
9791
|
+
readonly type: "function";
|
|
9627
9792
|
}, {
|
|
9628
9793
|
readonly anonymous: false;
|
|
9629
9794
|
readonly inputs: readonly [{
|
|
@@ -9818,6 +9983,12 @@ export declare const abi: readonly [{
|
|
|
9818
9983
|
readonly outputs: readonly [];
|
|
9819
9984
|
readonly stateMutability: "nonpayable";
|
|
9820
9985
|
readonly type: "function";
|
|
9986
|
+
}, {
|
|
9987
|
+
readonly inputs: readonly [];
|
|
9988
|
+
readonly name: "init";
|
|
9989
|
+
readonly outputs: readonly [];
|
|
9990
|
+
readonly stateMutability: "nonpayable";
|
|
9991
|
+
readonly type: "function";
|
|
9821
9992
|
}, {
|
|
9822
9993
|
readonly anonymous: false;
|
|
9823
9994
|
readonly inputs: readonly [{
|
|
@@ -11455,46 +11626,46 @@ export declare const abi: readonly [{
|
|
|
11455
11626
|
}, {
|
|
11456
11627
|
readonly inputs: readonly [{
|
|
11457
11628
|
readonly internalType: "address";
|
|
11458
|
-
readonly name: "
|
|
11459
|
-
readonly type: "address";
|
|
11460
|
-
}, {
|
|
11461
|
-
readonly internalType: "address";
|
|
11462
|
-
readonly name: "spender";
|
|
11629
|
+
readonly name: "providerAuth";
|
|
11463
11630
|
readonly type: "address";
|
|
11464
11631
|
}];
|
|
11465
|
-
readonly name: "
|
|
11466
|
-
readonly outputs: readonly [
|
|
11467
|
-
|
|
11468
|
-
readonly name: "";
|
|
11469
|
-
readonly type: "uint256";
|
|
11470
|
-
}];
|
|
11471
|
-
readonly stateMutability: "view";
|
|
11632
|
+
readonly name: "confiscateSecurityDeposit";
|
|
11633
|
+
readonly outputs: readonly [];
|
|
11634
|
+
readonly stateMutability: "nonpayable";
|
|
11472
11635
|
readonly type: "function";
|
|
11473
11636
|
}, {
|
|
11474
11637
|
readonly inputs: readonly [{
|
|
11475
|
-
readonly internalType: "address";
|
|
11476
|
-
readonly name: "spender";
|
|
11477
|
-
readonly type: "address";
|
|
11478
|
-
}, {
|
|
11479
11638
|
readonly internalType: "uint256";
|
|
11480
|
-
readonly name: "
|
|
11639
|
+
readonly name: "item";
|
|
11481
11640
|
readonly type: "uint256";
|
|
11482
11641
|
}];
|
|
11483
|
-
readonly name: "
|
|
11642
|
+
readonly name: "add";
|
|
11643
|
+
readonly outputs: readonly [];
|
|
11644
|
+
readonly stateMutability: "nonpayable";
|
|
11645
|
+
readonly type: "function";
|
|
11646
|
+
}, {
|
|
11647
|
+
readonly inputs: readonly [];
|
|
11648
|
+
readonly name: "clear";
|
|
11649
|
+
readonly outputs: readonly [];
|
|
11650
|
+
readonly stateMutability: "nonpayable";
|
|
11651
|
+
readonly type: "function";
|
|
11652
|
+
}, {
|
|
11653
|
+
readonly inputs: readonly [];
|
|
11654
|
+
readonly name: "getAll";
|
|
11484
11655
|
readonly outputs: readonly [{
|
|
11485
|
-
readonly internalType: "
|
|
11656
|
+
readonly internalType: "uint256[]";
|
|
11486
11657
|
readonly name: "";
|
|
11487
|
-
readonly type: "
|
|
11658
|
+
readonly type: "uint256[]";
|
|
11488
11659
|
}];
|
|
11489
|
-
readonly stateMutability: "
|
|
11660
|
+
readonly stateMutability: "view";
|
|
11490
11661
|
readonly type: "function";
|
|
11491
11662
|
}, {
|
|
11492
11663
|
readonly inputs: readonly [{
|
|
11493
|
-
readonly internalType: "
|
|
11494
|
-
readonly name: "
|
|
11495
|
-
readonly type: "
|
|
11664
|
+
readonly internalType: "uint256";
|
|
11665
|
+
readonly name: "item";
|
|
11666
|
+
readonly type: "uint256";
|
|
11496
11667
|
}];
|
|
11497
|
-
readonly name: "
|
|
11668
|
+
readonly name: "getItemIndex";
|
|
11498
11669
|
readonly outputs: readonly [{
|
|
11499
11670
|
readonly internalType: "uint256";
|
|
11500
11671
|
readonly name: "";
|
|
@@ -11503,57 +11674,47 @@ export declare const abi: readonly [{
|
|
|
11503
11674
|
readonly stateMutability: "view";
|
|
11504
11675
|
readonly type: "function";
|
|
11505
11676
|
}, {
|
|
11506
|
-
readonly inputs: readonly [
|
|
11507
|
-
|
|
11508
|
-
|
|
11509
|
-
readonly
|
|
11510
|
-
|
|
11511
|
-
readonly
|
|
11512
|
-
readonly name: "amount";
|
|
11513
|
-
readonly type: "uint256";
|
|
11677
|
+
readonly inputs: readonly [];
|
|
11678
|
+
readonly name: "isEmpty";
|
|
11679
|
+
readonly outputs: readonly [{
|
|
11680
|
+
readonly internalType: "bool";
|
|
11681
|
+
readonly name: "";
|
|
11682
|
+
readonly type: "bool";
|
|
11514
11683
|
}];
|
|
11515
|
-
readonly
|
|
11516
|
-
readonly outputs: readonly [];
|
|
11517
|
-
readonly stateMutability: "nonpayable";
|
|
11684
|
+
readonly stateMutability: "view";
|
|
11518
11685
|
readonly type: "function";
|
|
11519
11686
|
}, {
|
|
11520
11687
|
readonly inputs: readonly [{
|
|
11521
|
-
readonly internalType: "address";
|
|
11522
|
-
readonly name: "to";
|
|
11523
|
-
readonly type: "address";
|
|
11524
|
-
}, {
|
|
11525
11688
|
readonly internalType: "uint256";
|
|
11526
|
-
readonly name: "
|
|
11689
|
+
readonly name: "item";
|
|
11527
11690
|
readonly type: "uint256";
|
|
11528
11691
|
}];
|
|
11529
|
-
readonly name: "
|
|
11692
|
+
readonly name: "isExists";
|
|
11530
11693
|
readonly outputs: readonly [{
|
|
11531
11694
|
readonly internalType: "bool";
|
|
11532
11695
|
readonly name: "";
|
|
11533
11696
|
readonly type: "bool";
|
|
11534
11697
|
}];
|
|
11535
|
-
readonly stateMutability: "
|
|
11698
|
+
readonly stateMutability: "view";
|
|
11536
11699
|
readonly type: "function";
|
|
11537
11700
|
}, {
|
|
11538
11701
|
readonly inputs: readonly [{
|
|
11539
|
-
readonly internalType: "address";
|
|
11540
|
-
readonly name: "from";
|
|
11541
|
-
readonly type: "address";
|
|
11542
|
-
}, {
|
|
11543
|
-
readonly internalType: "address";
|
|
11544
|
-
readonly name: "to";
|
|
11545
|
-
readonly type: "address";
|
|
11546
|
-
}, {
|
|
11547
11702
|
readonly internalType: "uint256";
|
|
11548
|
-
readonly name: "
|
|
11703
|
+
readonly name: "item";
|
|
11549
11704
|
readonly type: "uint256";
|
|
11550
11705
|
}];
|
|
11551
|
-
readonly name: "
|
|
11552
|
-
readonly outputs: readonly [
|
|
11553
|
-
|
|
11706
|
+
readonly name: "remove";
|
|
11707
|
+
readonly outputs: readonly [];
|
|
11708
|
+
readonly stateMutability: "nonpayable";
|
|
11709
|
+
readonly type: "function";
|
|
11710
|
+
}, {
|
|
11711
|
+
readonly inputs: readonly [{
|
|
11712
|
+
readonly internalType: "address";
|
|
11554
11713
|
readonly name: "";
|
|
11555
|
-
readonly type: "
|
|
11714
|
+
readonly type: "address";
|
|
11556
11715
|
}];
|
|
11716
|
+
readonly name: "addWhitelistAddress";
|
|
11717
|
+
readonly outputs: readonly [];
|
|
11557
11718
|
readonly stateMutability: "nonpayable";
|
|
11558
11719
|
readonly type: "function";
|
|
11559
11720
|
}];
|