@gearbox-protocol/sdk 14.5.4 → 14.5.6
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/kyc/iDSRegistryService.js +265 -0
- package/dist/cjs/abi/kyc/iSecuritizeKYCFactory.js +53 -6
- package/dist/cjs/sdk/market/kyc/securitize/SecuritizeDegenNFT.js +41 -0
- package/dist/cjs/sdk/market/kyc/securitize/SecuritizeKYCFactory.js +3 -2
- package/dist/esm/abi/kyc/iDSRegistryService.js +265 -0
- package/dist/esm/abi/kyc/iSecuritizeKYCFactory.js +53 -6
- package/dist/esm/sdk/market/kyc/securitize/SecuritizeDegenNFT.js +17 -0
- package/dist/esm/sdk/market/kyc/securitize/SecuritizeKYCFactory.js +3 -2
- package/dist/types/abi/kyc/iDSRegistryService.d.ts +210 -0
- package/dist/types/abi/kyc/iSecuritizeKYCFactory.d.ts +78 -6
- package/dist/types/sdk/market/kyc/securitize/SecuritizeDegenNFT.d.ts +412 -0
- package/dist/types/sdk/market/kyc/securitize/SecuritizeKYCFactory.d.ts +80 -7
- package/package.json +1 -1
- package/dist/cjs/abi/compressors/subcompressors/securitizeRedemptionSubcompressor.js +0 -187
- package/dist/esm/abi/compressors/subcompressors/securitizeRedemptionSubcompressor.js +0 -163
- package/dist/types/abi/compressors/subcompressors/securitizeRedemptionSubcompressor.d.ts +0 -220
|
@@ -1,187 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
var securitizeRedemptionSubcompressor_exports = {};
|
|
20
|
-
__export(securitizeRedemptionSubcompressor_exports, {
|
|
21
|
-
securitizeRedemptionSubcompressorAbi: () => securitizeRedemptionSubcompressorAbi
|
|
22
|
-
});
|
|
23
|
-
module.exports = __toCommonJS(securitizeRedemptionSubcompressor_exports);
|
|
24
|
-
const securitizeRedemptionSubcompressorAbi = [
|
|
25
|
-
{
|
|
26
|
-
type: "function",
|
|
27
|
-
name: "contractType",
|
|
28
|
-
inputs: [],
|
|
29
|
-
outputs: [{ name: "", type: "bytes32", internalType: "bytes32" }],
|
|
30
|
-
stateMutability: "view"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
type: "function",
|
|
34
|
-
name: "getCurrentWithdrawals",
|
|
35
|
-
inputs: [
|
|
36
|
-
{ name: "creditAccount", type: "address", internalType: "address" },
|
|
37
|
-
{ name: "token", type: "address", internalType: "address" }
|
|
38
|
-
],
|
|
39
|
-
outputs: [
|
|
40
|
-
{
|
|
41
|
-
name: "",
|
|
42
|
-
type: "tuple[]",
|
|
43
|
-
internalType: "struct ClaimableWithdrawal[]",
|
|
44
|
-
components: [
|
|
45
|
-
{ name: "token", type: "address", internalType: "address" },
|
|
46
|
-
{
|
|
47
|
-
name: "withdrawalPhantomToken",
|
|
48
|
-
type: "address",
|
|
49
|
-
internalType: "address"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
name: "withdrawalTokenSpent",
|
|
53
|
-
type: "uint256",
|
|
54
|
-
internalType: "uint256"
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
name: "outputs",
|
|
58
|
-
type: "tuple[]",
|
|
59
|
-
internalType: "struct WithdrawalOutput[]",
|
|
60
|
-
components: [
|
|
61
|
-
{ name: "token", type: "address", internalType: "address" },
|
|
62
|
-
{ name: "isDelayed", type: "bool", internalType: "bool" },
|
|
63
|
-
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
64
|
-
]
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
name: "claimCalls",
|
|
68
|
-
type: "tuple[]",
|
|
69
|
-
internalType: "struct MultiCall[]",
|
|
70
|
-
components: [
|
|
71
|
-
{ name: "target", type: "address", internalType: "address" },
|
|
72
|
-
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
73
|
-
]
|
|
74
|
-
}
|
|
75
|
-
]
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
name: "",
|
|
79
|
-
type: "tuple[]",
|
|
80
|
-
internalType: "struct PendingWithdrawal[]",
|
|
81
|
-
components: [
|
|
82
|
-
{ name: "token", type: "address", internalType: "address" },
|
|
83
|
-
{
|
|
84
|
-
name: "withdrawalPhantomToken",
|
|
85
|
-
type: "address",
|
|
86
|
-
internalType: "address"
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
name: "expectedOutputs",
|
|
90
|
-
type: "tuple[]",
|
|
91
|
-
internalType: "struct WithdrawalOutput[]",
|
|
92
|
-
components: [
|
|
93
|
-
{ name: "token", type: "address", internalType: "address" },
|
|
94
|
-
{ name: "isDelayed", type: "bool", internalType: "bool" },
|
|
95
|
-
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
96
|
-
]
|
|
97
|
-
},
|
|
98
|
-
{ name: "claimableAt", type: "uint256", internalType: "uint256" }
|
|
99
|
-
]
|
|
100
|
-
}
|
|
101
|
-
],
|
|
102
|
-
stateMutability: "view"
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
type: "function",
|
|
106
|
-
name: "getWithdrawableAssets",
|
|
107
|
-
inputs: [
|
|
108
|
-
{ name: "", type: "address", internalType: "address" },
|
|
109
|
-
{ name: "token", type: "address", internalType: "address" }
|
|
110
|
-
],
|
|
111
|
-
outputs: [
|
|
112
|
-
{
|
|
113
|
-
name: "",
|
|
114
|
-
type: "tuple[]",
|
|
115
|
-
internalType: "struct WithdrawableAsset[]",
|
|
116
|
-
components: [
|
|
117
|
-
{ name: "token", type: "address", internalType: "address" },
|
|
118
|
-
{
|
|
119
|
-
name: "withdrawalPhantomToken",
|
|
120
|
-
type: "address",
|
|
121
|
-
internalType: "address"
|
|
122
|
-
},
|
|
123
|
-
{ name: "underlying", type: "address", internalType: "address" },
|
|
124
|
-
{
|
|
125
|
-
name: "withdrawalLength",
|
|
126
|
-
type: "uint256",
|
|
127
|
-
internalType: "uint256"
|
|
128
|
-
}
|
|
129
|
-
]
|
|
130
|
-
}
|
|
131
|
-
],
|
|
132
|
-
stateMutability: "view"
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
type: "function",
|
|
136
|
-
name: "getWithdrawalRequestResult",
|
|
137
|
-
inputs: [
|
|
138
|
-
{ name: "creditAccount", type: "address", internalType: "address" },
|
|
139
|
-
{ name: "token", type: "address", internalType: "address" },
|
|
140
|
-
{ name: "withdrawalToken", type: "address", internalType: "address" },
|
|
141
|
-
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
142
|
-
],
|
|
143
|
-
outputs: [
|
|
144
|
-
{
|
|
145
|
-
name: "requestableWithdrawal",
|
|
146
|
-
type: "tuple",
|
|
147
|
-
internalType: "struct RequestableWithdrawal",
|
|
148
|
-
components: [
|
|
149
|
-
{ name: "token", type: "address", internalType: "address" },
|
|
150
|
-
{ name: "amountIn", type: "uint256", internalType: "uint256" },
|
|
151
|
-
{
|
|
152
|
-
name: "outputs",
|
|
153
|
-
type: "tuple[]",
|
|
154
|
-
internalType: "struct WithdrawalOutput[]",
|
|
155
|
-
components: [
|
|
156
|
-
{ name: "token", type: "address", internalType: "address" },
|
|
157
|
-
{ name: "isDelayed", type: "bool", internalType: "bool" },
|
|
158
|
-
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
159
|
-
]
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
name: "requestCalls",
|
|
163
|
-
type: "tuple[]",
|
|
164
|
-
internalType: "struct MultiCall[]",
|
|
165
|
-
components: [
|
|
166
|
-
{ name: "target", type: "address", internalType: "address" },
|
|
167
|
-
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
168
|
-
]
|
|
169
|
-
},
|
|
170
|
-
{ name: "claimableAt", type: "uint256", internalType: "uint256" }
|
|
171
|
-
]
|
|
172
|
-
}
|
|
173
|
-
],
|
|
174
|
-
stateMutability: "view"
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
type: "function",
|
|
178
|
-
name: "version",
|
|
179
|
-
inputs: [],
|
|
180
|
-
outputs: [{ name: "", type: "uint256", internalType: "uint256" }],
|
|
181
|
-
stateMutability: "view"
|
|
182
|
-
}
|
|
183
|
-
];
|
|
184
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
185
|
-
0 && (module.exports = {
|
|
186
|
-
securitizeRedemptionSubcompressorAbi
|
|
187
|
-
});
|
|
@@ -1,163 +0,0 @@
|
|
|
1
|
-
const securitizeRedemptionSubcompressorAbi = [
|
|
2
|
-
{
|
|
3
|
-
type: "function",
|
|
4
|
-
name: "contractType",
|
|
5
|
-
inputs: [],
|
|
6
|
-
outputs: [{ name: "", type: "bytes32", internalType: "bytes32" }],
|
|
7
|
-
stateMutability: "view"
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
type: "function",
|
|
11
|
-
name: "getCurrentWithdrawals",
|
|
12
|
-
inputs: [
|
|
13
|
-
{ name: "creditAccount", type: "address", internalType: "address" },
|
|
14
|
-
{ name: "token", type: "address", internalType: "address" }
|
|
15
|
-
],
|
|
16
|
-
outputs: [
|
|
17
|
-
{
|
|
18
|
-
name: "",
|
|
19
|
-
type: "tuple[]",
|
|
20
|
-
internalType: "struct ClaimableWithdrawal[]",
|
|
21
|
-
components: [
|
|
22
|
-
{ name: "token", type: "address", internalType: "address" },
|
|
23
|
-
{
|
|
24
|
-
name: "withdrawalPhantomToken",
|
|
25
|
-
type: "address",
|
|
26
|
-
internalType: "address"
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
name: "withdrawalTokenSpent",
|
|
30
|
-
type: "uint256",
|
|
31
|
-
internalType: "uint256"
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
name: "outputs",
|
|
35
|
-
type: "tuple[]",
|
|
36
|
-
internalType: "struct WithdrawalOutput[]",
|
|
37
|
-
components: [
|
|
38
|
-
{ name: "token", type: "address", internalType: "address" },
|
|
39
|
-
{ name: "isDelayed", type: "bool", internalType: "bool" },
|
|
40
|
-
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
41
|
-
]
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
name: "claimCalls",
|
|
45
|
-
type: "tuple[]",
|
|
46
|
-
internalType: "struct MultiCall[]",
|
|
47
|
-
components: [
|
|
48
|
-
{ name: "target", type: "address", internalType: "address" },
|
|
49
|
-
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
50
|
-
]
|
|
51
|
-
}
|
|
52
|
-
]
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
name: "",
|
|
56
|
-
type: "tuple[]",
|
|
57
|
-
internalType: "struct PendingWithdrawal[]",
|
|
58
|
-
components: [
|
|
59
|
-
{ name: "token", type: "address", internalType: "address" },
|
|
60
|
-
{
|
|
61
|
-
name: "withdrawalPhantomToken",
|
|
62
|
-
type: "address",
|
|
63
|
-
internalType: "address"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
name: "expectedOutputs",
|
|
67
|
-
type: "tuple[]",
|
|
68
|
-
internalType: "struct WithdrawalOutput[]",
|
|
69
|
-
components: [
|
|
70
|
-
{ name: "token", type: "address", internalType: "address" },
|
|
71
|
-
{ name: "isDelayed", type: "bool", internalType: "bool" },
|
|
72
|
-
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
73
|
-
]
|
|
74
|
-
},
|
|
75
|
-
{ name: "claimableAt", type: "uint256", internalType: "uint256" }
|
|
76
|
-
]
|
|
77
|
-
}
|
|
78
|
-
],
|
|
79
|
-
stateMutability: "view"
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
type: "function",
|
|
83
|
-
name: "getWithdrawableAssets",
|
|
84
|
-
inputs: [
|
|
85
|
-
{ name: "", type: "address", internalType: "address" },
|
|
86
|
-
{ name: "token", type: "address", internalType: "address" }
|
|
87
|
-
],
|
|
88
|
-
outputs: [
|
|
89
|
-
{
|
|
90
|
-
name: "",
|
|
91
|
-
type: "tuple[]",
|
|
92
|
-
internalType: "struct WithdrawableAsset[]",
|
|
93
|
-
components: [
|
|
94
|
-
{ name: "token", type: "address", internalType: "address" },
|
|
95
|
-
{
|
|
96
|
-
name: "withdrawalPhantomToken",
|
|
97
|
-
type: "address",
|
|
98
|
-
internalType: "address"
|
|
99
|
-
},
|
|
100
|
-
{ name: "underlying", type: "address", internalType: "address" },
|
|
101
|
-
{
|
|
102
|
-
name: "withdrawalLength",
|
|
103
|
-
type: "uint256",
|
|
104
|
-
internalType: "uint256"
|
|
105
|
-
}
|
|
106
|
-
]
|
|
107
|
-
}
|
|
108
|
-
],
|
|
109
|
-
stateMutability: "view"
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
type: "function",
|
|
113
|
-
name: "getWithdrawalRequestResult",
|
|
114
|
-
inputs: [
|
|
115
|
-
{ name: "creditAccount", type: "address", internalType: "address" },
|
|
116
|
-
{ name: "token", type: "address", internalType: "address" },
|
|
117
|
-
{ name: "withdrawalToken", type: "address", internalType: "address" },
|
|
118
|
-
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
119
|
-
],
|
|
120
|
-
outputs: [
|
|
121
|
-
{
|
|
122
|
-
name: "requestableWithdrawal",
|
|
123
|
-
type: "tuple",
|
|
124
|
-
internalType: "struct RequestableWithdrawal",
|
|
125
|
-
components: [
|
|
126
|
-
{ name: "token", type: "address", internalType: "address" },
|
|
127
|
-
{ name: "amountIn", type: "uint256", internalType: "uint256" },
|
|
128
|
-
{
|
|
129
|
-
name: "outputs",
|
|
130
|
-
type: "tuple[]",
|
|
131
|
-
internalType: "struct WithdrawalOutput[]",
|
|
132
|
-
components: [
|
|
133
|
-
{ name: "token", type: "address", internalType: "address" },
|
|
134
|
-
{ name: "isDelayed", type: "bool", internalType: "bool" },
|
|
135
|
-
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
136
|
-
]
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
name: "requestCalls",
|
|
140
|
-
type: "tuple[]",
|
|
141
|
-
internalType: "struct MultiCall[]",
|
|
142
|
-
components: [
|
|
143
|
-
{ name: "target", type: "address", internalType: "address" },
|
|
144
|
-
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
145
|
-
]
|
|
146
|
-
},
|
|
147
|
-
{ name: "claimableAt", type: "uint256", internalType: "uint256" }
|
|
148
|
-
]
|
|
149
|
-
}
|
|
150
|
-
],
|
|
151
|
-
stateMutability: "view"
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
type: "function",
|
|
155
|
-
name: "version",
|
|
156
|
-
inputs: [],
|
|
157
|
-
outputs: [{ name: "", type: "uint256", internalType: "uint256" }],
|
|
158
|
-
stateMutability: "view"
|
|
159
|
-
}
|
|
160
|
-
];
|
|
161
|
-
export {
|
|
162
|
-
securitizeRedemptionSubcompressorAbi
|
|
163
|
-
};
|
|
@@ -1,220 +0,0 @@
|
|
|
1
|
-
export declare const securitizeRedemptionSubcompressorAbi: readonly [{
|
|
2
|
-
readonly type: "function";
|
|
3
|
-
readonly name: "contractType";
|
|
4
|
-
readonly inputs: readonly [];
|
|
5
|
-
readonly outputs: readonly [{
|
|
6
|
-
readonly name: "";
|
|
7
|
-
readonly type: "bytes32";
|
|
8
|
-
readonly internalType: "bytes32";
|
|
9
|
-
}];
|
|
10
|
-
readonly stateMutability: "view";
|
|
11
|
-
}, {
|
|
12
|
-
readonly type: "function";
|
|
13
|
-
readonly name: "getCurrentWithdrawals";
|
|
14
|
-
readonly inputs: readonly [{
|
|
15
|
-
readonly name: "creditAccount";
|
|
16
|
-
readonly type: "address";
|
|
17
|
-
readonly internalType: "address";
|
|
18
|
-
}, {
|
|
19
|
-
readonly name: "token";
|
|
20
|
-
readonly type: "address";
|
|
21
|
-
readonly internalType: "address";
|
|
22
|
-
}];
|
|
23
|
-
readonly outputs: readonly [{
|
|
24
|
-
readonly name: "";
|
|
25
|
-
readonly type: "tuple[]";
|
|
26
|
-
readonly internalType: "struct ClaimableWithdrawal[]";
|
|
27
|
-
readonly components: readonly [{
|
|
28
|
-
readonly name: "token";
|
|
29
|
-
readonly type: "address";
|
|
30
|
-
readonly internalType: "address";
|
|
31
|
-
}, {
|
|
32
|
-
readonly name: "withdrawalPhantomToken";
|
|
33
|
-
readonly type: "address";
|
|
34
|
-
readonly internalType: "address";
|
|
35
|
-
}, {
|
|
36
|
-
readonly name: "withdrawalTokenSpent";
|
|
37
|
-
readonly type: "uint256";
|
|
38
|
-
readonly internalType: "uint256";
|
|
39
|
-
}, {
|
|
40
|
-
readonly name: "outputs";
|
|
41
|
-
readonly type: "tuple[]";
|
|
42
|
-
readonly internalType: "struct WithdrawalOutput[]";
|
|
43
|
-
readonly components: readonly [{
|
|
44
|
-
readonly name: "token";
|
|
45
|
-
readonly type: "address";
|
|
46
|
-
readonly internalType: "address";
|
|
47
|
-
}, {
|
|
48
|
-
readonly name: "isDelayed";
|
|
49
|
-
readonly type: "bool";
|
|
50
|
-
readonly internalType: "bool";
|
|
51
|
-
}, {
|
|
52
|
-
readonly name: "amount";
|
|
53
|
-
readonly type: "uint256";
|
|
54
|
-
readonly internalType: "uint256";
|
|
55
|
-
}];
|
|
56
|
-
}, {
|
|
57
|
-
readonly name: "claimCalls";
|
|
58
|
-
readonly type: "tuple[]";
|
|
59
|
-
readonly internalType: "struct MultiCall[]";
|
|
60
|
-
readonly components: readonly [{
|
|
61
|
-
readonly name: "target";
|
|
62
|
-
readonly type: "address";
|
|
63
|
-
readonly internalType: "address";
|
|
64
|
-
}, {
|
|
65
|
-
readonly name: "callData";
|
|
66
|
-
readonly type: "bytes";
|
|
67
|
-
readonly internalType: "bytes";
|
|
68
|
-
}];
|
|
69
|
-
}];
|
|
70
|
-
}, {
|
|
71
|
-
readonly name: "";
|
|
72
|
-
readonly type: "tuple[]";
|
|
73
|
-
readonly internalType: "struct PendingWithdrawal[]";
|
|
74
|
-
readonly components: readonly [{
|
|
75
|
-
readonly name: "token";
|
|
76
|
-
readonly type: "address";
|
|
77
|
-
readonly internalType: "address";
|
|
78
|
-
}, {
|
|
79
|
-
readonly name: "withdrawalPhantomToken";
|
|
80
|
-
readonly type: "address";
|
|
81
|
-
readonly internalType: "address";
|
|
82
|
-
}, {
|
|
83
|
-
readonly name: "expectedOutputs";
|
|
84
|
-
readonly type: "tuple[]";
|
|
85
|
-
readonly internalType: "struct WithdrawalOutput[]";
|
|
86
|
-
readonly components: readonly [{
|
|
87
|
-
readonly name: "token";
|
|
88
|
-
readonly type: "address";
|
|
89
|
-
readonly internalType: "address";
|
|
90
|
-
}, {
|
|
91
|
-
readonly name: "isDelayed";
|
|
92
|
-
readonly type: "bool";
|
|
93
|
-
readonly internalType: "bool";
|
|
94
|
-
}, {
|
|
95
|
-
readonly name: "amount";
|
|
96
|
-
readonly type: "uint256";
|
|
97
|
-
readonly internalType: "uint256";
|
|
98
|
-
}];
|
|
99
|
-
}, {
|
|
100
|
-
readonly name: "claimableAt";
|
|
101
|
-
readonly type: "uint256";
|
|
102
|
-
readonly internalType: "uint256";
|
|
103
|
-
}];
|
|
104
|
-
}];
|
|
105
|
-
readonly stateMutability: "view";
|
|
106
|
-
}, {
|
|
107
|
-
readonly type: "function";
|
|
108
|
-
readonly name: "getWithdrawableAssets";
|
|
109
|
-
readonly inputs: readonly [{
|
|
110
|
-
readonly name: "";
|
|
111
|
-
readonly type: "address";
|
|
112
|
-
readonly internalType: "address";
|
|
113
|
-
}, {
|
|
114
|
-
readonly name: "token";
|
|
115
|
-
readonly type: "address";
|
|
116
|
-
readonly internalType: "address";
|
|
117
|
-
}];
|
|
118
|
-
readonly outputs: readonly [{
|
|
119
|
-
readonly name: "";
|
|
120
|
-
readonly type: "tuple[]";
|
|
121
|
-
readonly internalType: "struct WithdrawableAsset[]";
|
|
122
|
-
readonly components: readonly [{
|
|
123
|
-
readonly name: "token";
|
|
124
|
-
readonly type: "address";
|
|
125
|
-
readonly internalType: "address";
|
|
126
|
-
}, {
|
|
127
|
-
readonly name: "withdrawalPhantomToken";
|
|
128
|
-
readonly type: "address";
|
|
129
|
-
readonly internalType: "address";
|
|
130
|
-
}, {
|
|
131
|
-
readonly name: "underlying";
|
|
132
|
-
readonly type: "address";
|
|
133
|
-
readonly internalType: "address";
|
|
134
|
-
}, {
|
|
135
|
-
readonly name: "withdrawalLength";
|
|
136
|
-
readonly type: "uint256";
|
|
137
|
-
readonly internalType: "uint256";
|
|
138
|
-
}];
|
|
139
|
-
}];
|
|
140
|
-
readonly stateMutability: "view";
|
|
141
|
-
}, {
|
|
142
|
-
readonly type: "function";
|
|
143
|
-
readonly name: "getWithdrawalRequestResult";
|
|
144
|
-
readonly inputs: readonly [{
|
|
145
|
-
readonly name: "creditAccount";
|
|
146
|
-
readonly type: "address";
|
|
147
|
-
readonly internalType: "address";
|
|
148
|
-
}, {
|
|
149
|
-
readonly name: "token";
|
|
150
|
-
readonly type: "address";
|
|
151
|
-
readonly internalType: "address";
|
|
152
|
-
}, {
|
|
153
|
-
readonly name: "withdrawalToken";
|
|
154
|
-
readonly type: "address";
|
|
155
|
-
readonly internalType: "address";
|
|
156
|
-
}, {
|
|
157
|
-
readonly name: "amount";
|
|
158
|
-
readonly type: "uint256";
|
|
159
|
-
readonly internalType: "uint256";
|
|
160
|
-
}];
|
|
161
|
-
readonly outputs: readonly [{
|
|
162
|
-
readonly name: "requestableWithdrawal";
|
|
163
|
-
readonly type: "tuple";
|
|
164
|
-
readonly internalType: "struct RequestableWithdrawal";
|
|
165
|
-
readonly components: readonly [{
|
|
166
|
-
readonly name: "token";
|
|
167
|
-
readonly type: "address";
|
|
168
|
-
readonly internalType: "address";
|
|
169
|
-
}, {
|
|
170
|
-
readonly name: "amountIn";
|
|
171
|
-
readonly type: "uint256";
|
|
172
|
-
readonly internalType: "uint256";
|
|
173
|
-
}, {
|
|
174
|
-
readonly name: "outputs";
|
|
175
|
-
readonly type: "tuple[]";
|
|
176
|
-
readonly internalType: "struct WithdrawalOutput[]";
|
|
177
|
-
readonly components: readonly [{
|
|
178
|
-
readonly name: "token";
|
|
179
|
-
readonly type: "address";
|
|
180
|
-
readonly internalType: "address";
|
|
181
|
-
}, {
|
|
182
|
-
readonly name: "isDelayed";
|
|
183
|
-
readonly type: "bool";
|
|
184
|
-
readonly internalType: "bool";
|
|
185
|
-
}, {
|
|
186
|
-
readonly name: "amount";
|
|
187
|
-
readonly type: "uint256";
|
|
188
|
-
readonly internalType: "uint256";
|
|
189
|
-
}];
|
|
190
|
-
}, {
|
|
191
|
-
readonly name: "requestCalls";
|
|
192
|
-
readonly type: "tuple[]";
|
|
193
|
-
readonly internalType: "struct MultiCall[]";
|
|
194
|
-
readonly components: readonly [{
|
|
195
|
-
readonly name: "target";
|
|
196
|
-
readonly type: "address";
|
|
197
|
-
readonly internalType: "address";
|
|
198
|
-
}, {
|
|
199
|
-
readonly name: "callData";
|
|
200
|
-
readonly type: "bytes";
|
|
201
|
-
readonly internalType: "bytes";
|
|
202
|
-
}];
|
|
203
|
-
}, {
|
|
204
|
-
readonly name: "claimableAt";
|
|
205
|
-
readonly type: "uint256";
|
|
206
|
-
readonly internalType: "uint256";
|
|
207
|
-
}];
|
|
208
|
-
}];
|
|
209
|
-
readonly stateMutability: "view";
|
|
210
|
-
}, {
|
|
211
|
-
readonly type: "function";
|
|
212
|
-
readonly name: "version";
|
|
213
|
-
readonly inputs: readonly [];
|
|
214
|
-
readonly outputs: readonly [{
|
|
215
|
-
readonly name: "";
|
|
216
|
-
readonly type: "uint256";
|
|
217
|
-
readonly internalType: "uint256";
|
|
218
|
-
}];
|
|
219
|
-
readonly stateMutability: "view";
|
|
220
|
-
}];
|