@super-protocol/sdk-js 3.14.2 → 3.16.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/RIGenerator.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 +1 -0
- package/dist/cjs/constants.js +5 -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 +401 -153
- package/dist/cjs/contracts/abi.js +507 -190
- 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/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/Campaign.d.ts +70 -0
- package/dist/cjs/staticModels/Campaign.js +297 -0
- 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/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/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/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/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 +1 -0
- package/dist/mjs/constants.js +4 -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 +401 -153
- package/dist/mjs/contracts/abi.js +505 -188
- 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/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/Campaign.d.ts +70 -0
- package/dist/mjs/staticModels/Campaign.js +292 -0
- 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/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/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/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/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";
|
|
@@ -727,18 +1017,6 @@ export declare const abi: readonly [{
|
|
|
727
1017
|
readonly outputs: readonly [];
|
|
728
1018
|
readonly stateMutability: "nonpayable";
|
|
729
1019
|
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";
|
|
739
|
-
}];
|
|
740
|
-
readonly name: "SafeCastOverflowedUintDowncast";
|
|
741
|
-
readonly type: "error";
|
|
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 [{
|
|
@@ -2083,22 +2353,6 @@ export declare const abi: readonly [{
|
|
|
2083
2353
|
}];
|
|
2084
2354
|
readonly stateMutability: "view";
|
|
2085
2355
|
readonly type: "function";
|
|
2086
|
-
}, {
|
|
2087
|
-
readonly inputs: readonly [{
|
|
2088
|
-
readonly internalType: "int256";
|
|
2089
|
-
readonly name: "value";
|
|
2090
|
-
readonly type: "int256";
|
|
2091
|
-
}];
|
|
2092
|
-
readonly name: "SafeCastOverflowedIntToUint";
|
|
2093
|
-
readonly type: "error";
|
|
2094
|
-
}, {
|
|
2095
|
-
readonly inputs: readonly [{
|
|
2096
|
-
readonly internalType: "uint256";
|
|
2097
|
-
readonly name: "value";
|
|
2098
|
-
readonly type: "uint256";
|
|
2099
|
-
}];
|
|
2100
|
-
readonly name: "SafeCastOverflowedUintToInt";
|
|
2101
|
-
readonly type: "error";
|
|
2102
2356
|
}, {
|
|
2103
2357
|
readonly inputs: readonly [{
|
|
2104
2358
|
readonly internalType: "uint256";
|
|
@@ -3414,7 +3668,7 @@ export declare const abi: readonly [{
|
|
|
3414
3668
|
readonly type: "uint256[]";
|
|
3415
3669
|
}, {
|
|
3416
3670
|
readonly internalType: "uint256";
|
|
3417
|
-
readonly name: "
|
|
3671
|
+
readonly name: "outputOfferId";
|
|
3418
3672
|
readonly type: "uint256";
|
|
3419
3673
|
}, {
|
|
3420
3674
|
readonly internalType: "uint64[]";
|
|
@@ -3422,7 +3676,7 @@ export declare const abi: readonly [{
|
|
|
3422
3676
|
readonly type: "uint64[]";
|
|
3423
3677
|
}, {
|
|
3424
3678
|
readonly internalType: "uint64";
|
|
3425
|
-
readonly name: "
|
|
3679
|
+
readonly name: "outputOfferVersion";
|
|
3426
3680
|
readonly type: "uint64";
|
|
3427
3681
|
}];
|
|
3428
3682
|
readonly internalType: "struct OrderArgs";
|
|
@@ -3515,7 +3769,7 @@ export declare const abi: readonly [{
|
|
|
3515
3769
|
readonly type: "uint256[]";
|
|
3516
3770
|
}, {
|
|
3517
3771
|
readonly internalType: "uint256";
|
|
3518
|
-
readonly name: "
|
|
3772
|
+
readonly name: "outputOfferId";
|
|
3519
3773
|
readonly type: "uint256";
|
|
3520
3774
|
}, {
|
|
3521
3775
|
readonly internalType: "uint64[]";
|
|
@@ -3523,7 +3777,7 @@ export declare const abi: readonly [{
|
|
|
3523
3777
|
readonly type: "uint64[]";
|
|
3524
3778
|
}, {
|
|
3525
3779
|
readonly internalType: "uint64";
|
|
3526
|
-
readonly name: "
|
|
3780
|
+
readonly name: "outputOfferVersion";
|
|
3527
3781
|
readonly type: "uint64";
|
|
3528
3782
|
}];
|
|
3529
3783
|
readonly internalType: "struct OrderArgs";
|
|
@@ -3616,7 +3870,7 @@ export declare const abi: readonly [{
|
|
|
3616
3870
|
readonly type: "uint256[]";
|
|
3617
3871
|
}, {
|
|
3618
3872
|
readonly internalType: "uint256";
|
|
3619
|
-
readonly name: "
|
|
3873
|
+
readonly name: "outputOfferId";
|
|
3620
3874
|
readonly type: "uint256";
|
|
3621
3875
|
}, {
|
|
3622
3876
|
readonly internalType: "uint64[]";
|
|
@@ -3624,7 +3878,7 @@ export declare const abi: readonly [{
|
|
|
3624
3878
|
readonly type: "uint64[]";
|
|
3625
3879
|
}, {
|
|
3626
3880
|
readonly internalType: "uint64";
|
|
3627
|
-
readonly name: "
|
|
3881
|
+
readonly name: "outputOfferVersion";
|
|
3628
3882
|
readonly type: "uint64";
|
|
3629
3883
|
}];
|
|
3630
3884
|
readonly internalType: "struct OrderArgs";
|
|
@@ -3722,7 +3976,7 @@ export declare const abi: readonly [{
|
|
|
3722
3976
|
readonly type: "uint256[]";
|
|
3723
3977
|
}, {
|
|
3724
3978
|
readonly internalType: "uint256";
|
|
3725
|
-
readonly name: "
|
|
3979
|
+
readonly name: "outputOfferId";
|
|
3726
3980
|
readonly type: "uint256";
|
|
3727
3981
|
}, {
|
|
3728
3982
|
readonly internalType: "uint64[]";
|
|
@@ -3730,7 +3984,7 @@ export declare const abi: readonly [{
|
|
|
3730
3984
|
readonly type: "uint64[]";
|
|
3731
3985
|
}, {
|
|
3732
3986
|
readonly internalType: "uint64";
|
|
3733
|
-
readonly name: "
|
|
3987
|
+
readonly name: "outputOfferVersion";
|
|
3734
3988
|
readonly type: "uint64";
|
|
3735
3989
|
}];
|
|
3736
3990
|
readonly internalType: "struct OrderArgs";
|
|
@@ -4428,6 +4682,20 @@ export declare const abi: readonly [{
|
|
|
4428
4682
|
}];
|
|
4429
4683
|
readonly stateMutability: "view";
|
|
4430
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";
|
|
4431
4699
|
}, {
|
|
4432
4700
|
readonly inputs: readonly [{
|
|
4433
4701
|
readonly internalType: "uint256";
|
|
@@ -4613,20 +4881,6 @@ export declare const abi: readonly [{
|
|
|
4613
4881
|
}];
|
|
4614
4882
|
readonly stateMutability: "view";
|
|
4615
4883
|
readonly type: "function";
|
|
4616
|
-
}, {
|
|
4617
|
-
readonly inputs: readonly [{
|
|
4618
|
-
readonly internalType: "uint256";
|
|
4619
|
-
readonly name: "orderId";
|
|
4620
|
-
readonly type: "uint256";
|
|
4621
|
-
}];
|
|
4622
|
-
readonly name: "getBillingStartDate";
|
|
4623
|
-
readonly outputs: readonly [{
|
|
4624
|
-
readonly internalType: "uint256";
|
|
4625
|
-
readonly name: "";
|
|
4626
|
-
readonly type: "uint256";
|
|
4627
|
-
}];
|
|
4628
|
-
readonly stateMutability: "view";
|
|
4629
|
-
readonly type: "function";
|
|
4630
4884
|
}, {
|
|
4631
4885
|
readonly inputs: readonly [{
|
|
4632
4886
|
readonly internalType: "uint256";
|
|
@@ -4730,6 +4984,10 @@ export declare const abi: readonly [{
|
|
|
4730
4984
|
readonly internalType: "uint256";
|
|
4731
4985
|
readonly name: "currentCost";
|
|
4732
4986
|
readonly type: "uint256";
|
|
4987
|
+
}, {
|
|
4988
|
+
readonly internalType: "uint256";
|
|
4989
|
+
readonly name: "orderOutputReserve";
|
|
4990
|
+
readonly type: "uint256";
|
|
4733
4991
|
}, {
|
|
4734
4992
|
readonly internalType: "uint256";
|
|
4735
4993
|
readonly name: "totalDepositSpent";
|
|
@@ -4794,7 +5052,7 @@ export declare const abi: readonly [{
|
|
|
4794
5052
|
readonly type: "uint256[]";
|
|
4795
5053
|
}, {
|
|
4796
5054
|
readonly internalType: "uint256";
|
|
4797
|
-
readonly name: "
|
|
5055
|
+
readonly name: "outputOfferId";
|
|
4798
5056
|
readonly type: "uint256";
|
|
4799
5057
|
}, {
|
|
4800
5058
|
readonly internalType: "uint64[]";
|
|
@@ -4802,7 +5060,7 @@ export declare const abi: readonly [{
|
|
|
4802
5060
|
readonly type: "uint64[]";
|
|
4803
5061
|
}, {
|
|
4804
5062
|
readonly internalType: "uint64";
|
|
4805
|
-
readonly name: "
|
|
5063
|
+
readonly name: "outputOfferVersion";
|
|
4806
5064
|
readonly type: "uint64";
|
|
4807
5065
|
}];
|
|
4808
5066
|
readonly internalType: "struct OrderArgs";
|
|
@@ -4968,7 +5226,7 @@ export declare const abi: readonly [{
|
|
|
4968
5226
|
readonly type: "uint256[]";
|
|
4969
5227
|
}, {
|
|
4970
5228
|
readonly internalType: "uint256";
|
|
4971
|
-
readonly name: "
|
|
5229
|
+
readonly name: "outputOfferId";
|
|
4972
5230
|
readonly type: "uint256";
|
|
4973
5231
|
}, {
|
|
4974
5232
|
readonly internalType: "uint64[]";
|
|
@@ -4976,7 +5234,7 @@ export declare const abi: readonly [{
|
|
|
4976
5234
|
readonly type: "uint64[]";
|
|
4977
5235
|
}, {
|
|
4978
5236
|
readonly internalType: "uint64";
|
|
4979
|
-
readonly name: "
|
|
5237
|
+
readonly name: "outputOfferVersion";
|
|
4980
5238
|
readonly type: "uint64";
|
|
4981
5239
|
}];
|
|
4982
5240
|
readonly internalType: "struct OrderArgs";
|
|
@@ -5334,20 +5592,6 @@ export declare const abi: readonly [{
|
|
|
5334
5592
|
}];
|
|
5335
5593
|
readonly stateMutability: "view";
|
|
5336
5594
|
readonly type: "function";
|
|
5337
|
-
}, {
|
|
5338
|
-
readonly inputs: readonly [{
|
|
5339
|
-
readonly internalType: "uint256";
|
|
5340
|
-
readonly name: "orderId";
|
|
5341
|
-
readonly type: "uint256";
|
|
5342
|
-
}];
|
|
5343
|
-
readonly name: "isBlockingSuborder";
|
|
5344
|
-
readonly outputs: readonly [{
|
|
5345
|
-
readonly internalType: "bool";
|
|
5346
|
-
readonly name: "";
|
|
5347
|
-
readonly type: "bool";
|
|
5348
|
-
}];
|
|
5349
|
-
readonly stateMutability: "view";
|
|
5350
|
-
readonly type: "function";
|
|
5351
5595
|
}, {
|
|
5352
5596
|
readonly inputs: readonly [{
|
|
5353
5597
|
readonly internalType: "uint256";
|
|
@@ -5404,18 +5648,6 @@ export declare const abi: readonly [{
|
|
|
5404
5648
|
}];
|
|
5405
5649
|
readonly stateMutability: "view";
|
|
5406
5650
|
readonly type: "function";
|
|
5407
|
-
}, {
|
|
5408
|
-
readonly inputs: readonly [{
|
|
5409
|
-
readonly internalType: "uint8";
|
|
5410
|
-
readonly name: "bits";
|
|
5411
|
-
readonly type: "uint8";
|
|
5412
|
-
}, {
|
|
5413
|
-
readonly internalType: "int256";
|
|
5414
|
-
readonly name: "value";
|
|
5415
|
-
readonly type: "int256";
|
|
5416
|
-
}];
|
|
5417
|
-
readonly name: "SafeCastOverflowedIntDowncast";
|
|
5418
|
-
readonly type: "error";
|
|
5419
5651
|
}, {
|
|
5420
5652
|
readonly anonymous: false;
|
|
5421
5653
|
readonly inputs: readonly [{
|
|
@@ -9225,7 +9457,7 @@ export declare const abi: readonly [{
|
|
|
9225
9457
|
readonly type: "uint256[]";
|
|
9226
9458
|
}, {
|
|
9227
9459
|
readonly internalType: "uint256";
|
|
9228
|
-
readonly name: "
|
|
9460
|
+
readonly name: "outputOfferId";
|
|
9229
9461
|
readonly type: "uint256";
|
|
9230
9462
|
}, {
|
|
9231
9463
|
readonly internalType: "uint64[]";
|
|
@@ -9233,7 +9465,7 @@ export declare const abi: readonly [{
|
|
|
9233
9465
|
readonly type: "uint64[]";
|
|
9234
9466
|
}, {
|
|
9235
9467
|
readonly internalType: "uint64";
|
|
9236
|
-
readonly name: "
|
|
9468
|
+
readonly name: "outputOfferVersion";
|
|
9237
9469
|
readonly type: "uint64";
|
|
9238
9470
|
}];
|
|
9239
9471
|
readonly internalType: "struct OrderArgs";
|
|
@@ -9313,7 +9545,7 @@ export declare const abi: readonly [{
|
|
|
9313
9545
|
readonly type: "uint256[]";
|
|
9314
9546
|
}, {
|
|
9315
9547
|
readonly internalType: "uint256";
|
|
9316
|
-
readonly name: "
|
|
9548
|
+
readonly name: "outputOfferId";
|
|
9317
9549
|
readonly type: "uint256";
|
|
9318
9550
|
}, {
|
|
9319
9551
|
readonly internalType: "uint64[]";
|
|
@@ -9321,7 +9553,7 @@ export declare const abi: readonly [{
|
|
|
9321
9553
|
readonly type: "uint64[]";
|
|
9322
9554
|
}, {
|
|
9323
9555
|
readonly internalType: "uint64";
|
|
9324
|
-
readonly name: "
|
|
9556
|
+
readonly name: "outputOfferVersion";
|
|
9325
9557
|
readonly type: "uint64";
|
|
9326
9558
|
}];
|
|
9327
9559
|
readonly internalType: "struct OrderArgs";
|
|
@@ -9408,7 +9640,7 @@ export declare const abi: readonly [{
|
|
|
9408
9640
|
readonly type: "uint256[]";
|
|
9409
9641
|
}, {
|
|
9410
9642
|
readonly internalType: "uint256";
|
|
9411
|
-
readonly name: "
|
|
9643
|
+
readonly name: "outputOfferId";
|
|
9412
9644
|
readonly type: "uint256";
|
|
9413
9645
|
}, {
|
|
9414
9646
|
readonly internalType: "uint64[]";
|
|
@@ -9416,7 +9648,7 @@ export declare const abi: readonly [{
|
|
|
9416
9648
|
readonly type: "uint64[]";
|
|
9417
9649
|
}, {
|
|
9418
9650
|
readonly internalType: "uint64";
|
|
9419
|
-
readonly name: "
|
|
9651
|
+
readonly name: "outputOfferVersion";
|
|
9420
9652
|
readonly type: "uint64";
|
|
9421
9653
|
}];
|
|
9422
9654
|
readonly internalType: "struct OrderArgs";
|
|
@@ -9496,7 +9728,7 @@ export declare const abi: readonly [{
|
|
|
9496
9728
|
readonly type: "uint256[]";
|
|
9497
9729
|
}, {
|
|
9498
9730
|
readonly internalType: "uint256";
|
|
9499
|
-
readonly name: "
|
|
9731
|
+
readonly name: "outputOfferId";
|
|
9500
9732
|
readonly type: "uint256";
|
|
9501
9733
|
}, {
|
|
9502
9734
|
readonly internalType: "uint64[]";
|
|
@@ -9504,7 +9736,7 @@ export declare const abi: readonly [{
|
|
|
9504
9736
|
readonly type: "uint64[]";
|
|
9505
9737
|
}, {
|
|
9506
9738
|
readonly internalType: "uint64";
|
|
9507
|
-
readonly name: "
|
|
9739
|
+
readonly name: "outputOfferVersion";
|
|
9508
9740
|
readonly type: "uint64";
|
|
9509
9741
|
}];
|
|
9510
9742
|
readonly internalType: "struct OrderArgs";
|
|
@@ -9537,6 +9769,26 @@ export declare const abi: readonly [{
|
|
|
9537
9769
|
readonly outputs: readonly [];
|
|
9538
9770
|
readonly stateMutability: "nonpayable";
|
|
9539
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";
|
|
9540
9792
|
}, {
|
|
9541
9793
|
readonly anonymous: false;
|
|
9542
9794
|
readonly inputs: readonly [{
|
|
@@ -9731,6 +9983,12 @@ export declare const abi: readonly [{
|
|
|
9731
9983
|
readonly outputs: readonly [];
|
|
9732
9984
|
readonly stateMutability: "nonpayable";
|
|
9733
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";
|
|
9734
9992
|
}, {
|
|
9735
9993
|
readonly anonymous: false;
|
|
9736
9994
|
readonly inputs: readonly [{
|
|
@@ -11368,46 +11626,46 @@ export declare const abi: readonly [{
|
|
|
11368
11626
|
}, {
|
|
11369
11627
|
readonly inputs: readonly [{
|
|
11370
11628
|
readonly internalType: "address";
|
|
11371
|
-
readonly name: "
|
|
11372
|
-
readonly type: "address";
|
|
11373
|
-
}, {
|
|
11374
|
-
readonly internalType: "address";
|
|
11375
|
-
readonly name: "spender";
|
|
11629
|
+
readonly name: "providerAuth";
|
|
11376
11630
|
readonly type: "address";
|
|
11377
11631
|
}];
|
|
11378
|
-
readonly name: "
|
|
11379
|
-
readonly outputs: readonly [
|
|
11380
|
-
|
|
11381
|
-
readonly name: "";
|
|
11382
|
-
readonly type: "uint256";
|
|
11383
|
-
}];
|
|
11384
|
-
readonly stateMutability: "view";
|
|
11632
|
+
readonly name: "confiscateSecurityDeposit";
|
|
11633
|
+
readonly outputs: readonly [];
|
|
11634
|
+
readonly stateMutability: "nonpayable";
|
|
11385
11635
|
readonly type: "function";
|
|
11386
11636
|
}, {
|
|
11387
11637
|
readonly inputs: readonly [{
|
|
11388
|
-
readonly internalType: "address";
|
|
11389
|
-
readonly name: "spender";
|
|
11390
|
-
readonly type: "address";
|
|
11391
|
-
}, {
|
|
11392
11638
|
readonly internalType: "uint256";
|
|
11393
|
-
readonly name: "
|
|
11639
|
+
readonly name: "item";
|
|
11394
11640
|
readonly type: "uint256";
|
|
11395
11641
|
}];
|
|
11396
|
-
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";
|
|
11397
11655
|
readonly outputs: readonly [{
|
|
11398
|
-
readonly internalType: "
|
|
11656
|
+
readonly internalType: "uint256[]";
|
|
11399
11657
|
readonly name: "";
|
|
11400
|
-
readonly type: "
|
|
11658
|
+
readonly type: "uint256[]";
|
|
11401
11659
|
}];
|
|
11402
|
-
readonly stateMutability: "
|
|
11660
|
+
readonly stateMutability: "view";
|
|
11403
11661
|
readonly type: "function";
|
|
11404
11662
|
}, {
|
|
11405
11663
|
readonly inputs: readonly [{
|
|
11406
|
-
readonly internalType: "
|
|
11407
|
-
readonly name: "
|
|
11408
|
-
readonly type: "
|
|
11664
|
+
readonly internalType: "uint256";
|
|
11665
|
+
readonly name: "item";
|
|
11666
|
+
readonly type: "uint256";
|
|
11409
11667
|
}];
|
|
11410
|
-
readonly name: "
|
|
11668
|
+
readonly name: "getItemIndex";
|
|
11411
11669
|
readonly outputs: readonly [{
|
|
11412
11670
|
readonly internalType: "uint256";
|
|
11413
11671
|
readonly name: "";
|
|
@@ -11416,57 +11674,47 @@ export declare const abi: readonly [{
|
|
|
11416
11674
|
readonly stateMutability: "view";
|
|
11417
11675
|
readonly type: "function";
|
|
11418
11676
|
}, {
|
|
11419
|
-
readonly inputs: readonly [
|
|
11420
|
-
|
|
11421
|
-
|
|
11422
|
-
readonly
|
|
11423
|
-
|
|
11424
|
-
readonly
|
|
11425
|
-
readonly name: "amount";
|
|
11426
|
-
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";
|
|
11427
11683
|
}];
|
|
11428
|
-
readonly
|
|
11429
|
-
readonly outputs: readonly [];
|
|
11430
|
-
readonly stateMutability: "nonpayable";
|
|
11684
|
+
readonly stateMutability: "view";
|
|
11431
11685
|
readonly type: "function";
|
|
11432
11686
|
}, {
|
|
11433
11687
|
readonly inputs: readonly [{
|
|
11434
|
-
readonly internalType: "address";
|
|
11435
|
-
readonly name: "to";
|
|
11436
|
-
readonly type: "address";
|
|
11437
|
-
}, {
|
|
11438
11688
|
readonly internalType: "uint256";
|
|
11439
|
-
readonly name: "
|
|
11689
|
+
readonly name: "item";
|
|
11440
11690
|
readonly type: "uint256";
|
|
11441
11691
|
}];
|
|
11442
|
-
readonly name: "
|
|
11692
|
+
readonly name: "isExists";
|
|
11443
11693
|
readonly outputs: readonly [{
|
|
11444
11694
|
readonly internalType: "bool";
|
|
11445
11695
|
readonly name: "";
|
|
11446
11696
|
readonly type: "bool";
|
|
11447
11697
|
}];
|
|
11448
|
-
readonly stateMutability: "
|
|
11698
|
+
readonly stateMutability: "view";
|
|
11449
11699
|
readonly type: "function";
|
|
11450
11700
|
}, {
|
|
11451
11701
|
readonly inputs: readonly [{
|
|
11452
|
-
readonly internalType: "address";
|
|
11453
|
-
readonly name: "from";
|
|
11454
|
-
readonly type: "address";
|
|
11455
|
-
}, {
|
|
11456
|
-
readonly internalType: "address";
|
|
11457
|
-
readonly name: "to";
|
|
11458
|
-
readonly type: "address";
|
|
11459
|
-
}, {
|
|
11460
11702
|
readonly internalType: "uint256";
|
|
11461
|
-
readonly name: "
|
|
11703
|
+
readonly name: "item";
|
|
11462
11704
|
readonly type: "uint256";
|
|
11463
11705
|
}];
|
|
11464
|
-
readonly name: "
|
|
11465
|
-
readonly outputs: readonly [
|
|
11466
|
-
|
|
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";
|
|
11467
11713
|
readonly name: "";
|
|
11468
|
-
readonly type: "
|
|
11714
|
+
readonly type: "address";
|
|
11469
11715
|
}];
|
|
11716
|
+
readonly name: "addWhitelistAddress";
|
|
11717
|
+
readonly outputs: readonly [];
|
|
11470
11718
|
readonly stateMutability: "nonpayable";
|
|
11471
11719
|
readonly type: "function";
|
|
11472
11720
|
}];
|