@gearbox-protocol/sdk 11.3.0 → 11.3.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/abi/compressors/subcompressors/kelpLRTWithdrawalSubcompressor.js +187 -0
- package/dist/cjs/abi/compressors/subcompressors/mellowFlexibleDepositSubcompressor.js +187 -0
- package/dist/cjs/abi/compressors/subcompressors/mellowFlexibleRedeemSubcompressor.js +187 -0
- package/dist/cjs/abi/compressors/withdrawalCompressor.js +42 -0
- package/dist/esm/abi/compressors/subcompressors/kelpLRTWithdrawalSubcompressor.js +163 -0
- package/dist/esm/abi/compressors/subcompressors/mellowFlexibleDepositSubcompressor.js +163 -0
- package/dist/esm/abi/compressors/subcompressors/mellowFlexibleRedeemSubcompressor.js +163 -0
- package/dist/esm/abi/compressors/withdrawalCompressor.js +42 -0
- package/dist/types/abi/compressors/subcompressors/kelpLRTWithdrawalSubcompressor.d.ts +220 -0
- package/dist/types/abi/compressors/subcompressors/mellowFlexibleDepositSubcompressor.d.ts +220 -0
- package/dist/types/abi/compressors/subcompressors/mellowFlexibleRedeemSubcompressor.d.ts +220 -0
- package/dist/types/abi/compressors/withdrawalCompressor.d.ts +69 -0
- package/dist/types/permissionless/bindings/compressors/withdrawal-compressor.d.ts +69 -0
- package/package.json +1 -1
|
@@ -231,6 +231,75 @@ export declare const withdrawalCompressorAbi: readonly [{
|
|
|
231
231
|
}];
|
|
232
232
|
}];
|
|
233
233
|
readonly stateMutability: "view";
|
|
234
|
+
}, {
|
|
235
|
+
readonly type: "function";
|
|
236
|
+
readonly name: "getWithdrawalRequestResult";
|
|
237
|
+
readonly inputs: readonly [{
|
|
238
|
+
readonly name: "creditAccount";
|
|
239
|
+
readonly type: "address";
|
|
240
|
+
readonly internalType: "address";
|
|
241
|
+
}, {
|
|
242
|
+
readonly name: "token";
|
|
243
|
+
readonly type: "address";
|
|
244
|
+
readonly internalType: "address";
|
|
245
|
+
}, {
|
|
246
|
+
readonly name: "withdrawalToken";
|
|
247
|
+
readonly type: "address";
|
|
248
|
+
readonly internalType: "address";
|
|
249
|
+
}, {
|
|
250
|
+
readonly name: "amount";
|
|
251
|
+
readonly type: "uint256";
|
|
252
|
+
readonly internalType: "uint256";
|
|
253
|
+
}];
|
|
254
|
+
readonly outputs: readonly [{
|
|
255
|
+
readonly name: "withdrawal";
|
|
256
|
+
readonly type: "tuple";
|
|
257
|
+
readonly internalType: "struct RequestableWithdrawal";
|
|
258
|
+
readonly components: readonly [{
|
|
259
|
+
readonly name: "token";
|
|
260
|
+
readonly type: "address";
|
|
261
|
+
readonly internalType: "address";
|
|
262
|
+
}, {
|
|
263
|
+
readonly name: "amountIn";
|
|
264
|
+
readonly type: "uint256";
|
|
265
|
+
readonly internalType: "uint256";
|
|
266
|
+
}, {
|
|
267
|
+
readonly name: "outputs";
|
|
268
|
+
readonly type: "tuple[]";
|
|
269
|
+
readonly internalType: "struct WithdrawalOutput[]";
|
|
270
|
+
readonly components: readonly [{
|
|
271
|
+
readonly name: "token";
|
|
272
|
+
readonly type: "address";
|
|
273
|
+
readonly internalType: "address";
|
|
274
|
+
}, {
|
|
275
|
+
readonly name: "isDelayed";
|
|
276
|
+
readonly type: "bool";
|
|
277
|
+
readonly internalType: "bool";
|
|
278
|
+
}, {
|
|
279
|
+
readonly name: "amount";
|
|
280
|
+
readonly type: "uint256";
|
|
281
|
+
readonly internalType: "uint256";
|
|
282
|
+
}];
|
|
283
|
+
}, {
|
|
284
|
+
readonly name: "requestCalls";
|
|
285
|
+
readonly type: "tuple[]";
|
|
286
|
+
readonly internalType: "struct MultiCall[]";
|
|
287
|
+
readonly components: readonly [{
|
|
288
|
+
readonly name: "target";
|
|
289
|
+
readonly type: "address";
|
|
290
|
+
readonly internalType: "address";
|
|
291
|
+
}, {
|
|
292
|
+
readonly name: "callData";
|
|
293
|
+
readonly type: "bytes";
|
|
294
|
+
readonly internalType: "bytes";
|
|
295
|
+
}];
|
|
296
|
+
}, {
|
|
297
|
+
readonly name: "claimableAt";
|
|
298
|
+
readonly type: "uint256";
|
|
299
|
+
readonly internalType: "uint256";
|
|
300
|
+
}];
|
|
301
|
+
}];
|
|
302
|
+
readonly stateMutability: "view";
|
|
234
303
|
}, {
|
|
235
304
|
readonly type: "function";
|
|
236
305
|
readonly name: "owner";
|
|
@@ -234,6 +234,75 @@ declare const abi: readonly [{
|
|
|
234
234
|
}];
|
|
235
235
|
}];
|
|
236
236
|
readonly stateMutability: "view";
|
|
237
|
+
}, {
|
|
238
|
+
readonly type: "function";
|
|
239
|
+
readonly name: "getWithdrawalRequestResult";
|
|
240
|
+
readonly inputs: readonly [{
|
|
241
|
+
readonly name: "creditAccount";
|
|
242
|
+
readonly type: "address";
|
|
243
|
+
readonly internalType: "address";
|
|
244
|
+
}, {
|
|
245
|
+
readonly name: "token";
|
|
246
|
+
readonly type: "address";
|
|
247
|
+
readonly internalType: "address";
|
|
248
|
+
}, {
|
|
249
|
+
readonly name: "withdrawalToken";
|
|
250
|
+
readonly type: "address";
|
|
251
|
+
readonly internalType: "address";
|
|
252
|
+
}, {
|
|
253
|
+
readonly name: "amount";
|
|
254
|
+
readonly type: "uint256";
|
|
255
|
+
readonly internalType: "uint256";
|
|
256
|
+
}];
|
|
257
|
+
readonly outputs: readonly [{
|
|
258
|
+
readonly name: "withdrawal";
|
|
259
|
+
readonly type: "tuple";
|
|
260
|
+
readonly internalType: "struct RequestableWithdrawal";
|
|
261
|
+
readonly components: readonly [{
|
|
262
|
+
readonly name: "token";
|
|
263
|
+
readonly type: "address";
|
|
264
|
+
readonly internalType: "address";
|
|
265
|
+
}, {
|
|
266
|
+
readonly name: "amountIn";
|
|
267
|
+
readonly type: "uint256";
|
|
268
|
+
readonly internalType: "uint256";
|
|
269
|
+
}, {
|
|
270
|
+
readonly name: "outputs";
|
|
271
|
+
readonly type: "tuple[]";
|
|
272
|
+
readonly internalType: "struct WithdrawalOutput[]";
|
|
273
|
+
readonly components: readonly [{
|
|
274
|
+
readonly name: "token";
|
|
275
|
+
readonly type: "address";
|
|
276
|
+
readonly internalType: "address";
|
|
277
|
+
}, {
|
|
278
|
+
readonly name: "isDelayed";
|
|
279
|
+
readonly type: "bool";
|
|
280
|
+
readonly internalType: "bool";
|
|
281
|
+
}, {
|
|
282
|
+
readonly name: "amount";
|
|
283
|
+
readonly type: "uint256";
|
|
284
|
+
readonly internalType: "uint256";
|
|
285
|
+
}];
|
|
286
|
+
}, {
|
|
287
|
+
readonly name: "requestCalls";
|
|
288
|
+
readonly type: "tuple[]";
|
|
289
|
+
readonly internalType: "struct MultiCall[]";
|
|
290
|
+
readonly components: readonly [{
|
|
291
|
+
readonly name: "target";
|
|
292
|
+
readonly type: "address";
|
|
293
|
+
readonly internalType: "address";
|
|
294
|
+
}, {
|
|
295
|
+
readonly name: "callData";
|
|
296
|
+
readonly type: "bytes";
|
|
297
|
+
readonly internalType: "bytes";
|
|
298
|
+
}];
|
|
299
|
+
}, {
|
|
300
|
+
readonly name: "claimableAt";
|
|
301
|
+
readonly type: "uint256";
|
|
302
|
+
readonly internalType: "uint256";
|
|
303
|
+
}];
|
|
304
|
+
}];
|
|
305
|
+
readonly stateMutability: "view";
|
|
237
306
|
}, {
|
|
238
307
|
readonly type: "function";
|
|
239
308
|
readonly name: "owner";
|