@gearbox-protocol/sdk 14.11.4 → 14.11.5
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/withdrawal/mellowWithdrawalSubcompressor.js +45 -1
- package/dist/cjs/abi/compressors/subcompressors/withdrawal/midasWithdrawalSubcompressor.js +45 -1
- package/dist/cjs/abi/compressors/subcompressors/withdrawal/securitizeRedemptionSubcompressor.js +45 -1
- package/dist/cjs/abi/compressors/withdrawalCompressor.js +45 -1
- package/dist/esm/abi/compressors/subcompressors/withdrawal/mellowWithdrawalSubcompressor.js +45 -1
- package/dist/esm/abi/compressors/subcompressors/withdrawal/midasWithdrawalSubcompressor.js +45 -1
- package/dist/esm/abi/compressors/subcompressors/withdrawal/securitizeRedemptionSubcompressor.js +45 -1
- package/dist/esm/abi/compressors/withdrawalCompressor.js +45 -1
- package/dist/types/abi/compressors/subcompressors/withdrawal/mellowWithdrawalSubcompressor.d.ts +77 -0
- package/dist/types/abi/compressors/subcompressors/withdrawal/midasWithdrawalSubcompressor.d.ts +77 -0
- package/dist/types/abi/compressors/subcompressors/withdrawal/securitizeRedemptionSubcompressor.d.ts +77 -0
- package/dist/types/abi/compressors/withdrawalCompressor.d.ts +77 -0
- package/dist/types/permissionless/bindings/compressors/withdrawal-compressor.d.ts +77 -0
- package/package.json +1 -1
|
@@ -71,7 +71,8 @@ const mellowWithdrawalSubcompressorAbi = [
|
|
|
71
71
|
{ name: "target", type: "address", internalType: "address" },
|
|
72
72
|
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
73
73
|
]
|
|
74
|
-
}
|
|
74
|
+
},
|
|
75
|
+
{ name: "extraData", type: "bytes", internalType: "bytes" }
|
|
75
76
|
]
|
|
76
77
|
},
|
|
77
78
|
{
|
|
@@ -132,6 +133,49 @@ const mellowWithdrawalSubcompressorAbi = [
|
|
|
132
133
|
],
|
|
133
134
|
stateMutability: "view"
|
|
134
135
|
},
|
|
136
|
+
{
|
|
137
|
+
type: "function",
|
|
138
|
+
name: "getWithdrawalRequestResult",
|
|
139
|
+
inputs: [
|
|
140
|
+
{ name: "creditAccount", type: "address", internalType: "address" },
|
|
141
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
142
|
+
{ name: "withdrawalToken", type: "address", internalType: "address" },
|
|
143
|
+
{ name: "amount", type: "uint256", internalType: "uint256" },
|
|
144
|
+
{ name: "", type: "bytes", internalType: "bytes" }
|
|
145
|
+
],
|
|
146
|
+
outputs: [
|
|
147
|
+
{
|
|
148
|
+
name: "requestableWithdrawal",
|
|
149
|
+
type: "tuple",
|
|
150
|
+
internalType: "struct RequestableWithdrawal",
|
|
151
|
+
components: [
|
|
152
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
153
|
+
{ name: "amountIn", type: "uint256", internalType: "uint256" },
|
|
154
|
+
{
|
|
155
|
+
name: "outputs",
|
|
156
|
+
type: "tuple[]",
|
|
157
|
+
internalType: "struct WithdrawalOutput[]",
|
|
158
|
+
components: [
|
|
159
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
160
|
+
{ name: "isDelayed", type: "bool", internalType: "bool" },
|
|
161
|
+
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
162
|
+
]
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
name: "requestCalls",
|
|
166
|
+
type: "tuple[]",
|
|
167
|
+
internalType: "struct MultiCall[]",
|
|
168
|
+
components: [
|
|
169
|
+
{ name: "target", type: "address", internalType: "address" },
|
|
170
|
+
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
171
|
+
]
|
|
172
|
+
},
|
|
173
|
+
{ name: "claimableAt", type: "uint256", internalType: "uint256" }
|
|
174
|
+
]
|
|
175
|
+
}
|
|
176
|
+
],
|
|
177
|
+
stateMutability: "view"
|
|
178
|
+
},
|
|
135
179
|
{
|
|
136
180
|
type: "function",
|
|
137
181
|
name: "getWithdrawalRequestResult",
|
|
@@ -71,7 +71,8 @@ const midasWithdrawalSubcompressorAbi = [
|
|
|
71
71
|
{ name: "target", type: "address", internalType: "address" },
|
|
72
72
|
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
73
73
|
]
|
|
74
|
-
}
|
|
74
|
+
},
|
|
75
|
+
{ name: "extraData", type: "bytes", internalType: "bytes" }
|
|
75
76
|
]
|
|
76
77
|
},
|
|
77
78
|
{
|
|
@@ -132,6 +133,49 @@ const midasWithdrawalSubcompressorAbi = [
|
|
|
132
133
|
],
|
|
133
134
|
stateMutability: "view"
|
|
134
135
|
},
|
|
136
|
+
{
|
|
137
|
+
type: "function",
|
|
138
|
+
name: "getWithdrawalRequestResult",
|
|
139
|
+
inputs: [
|
|
140
|
+
{ name: "creditAccount", type: "address", internalType: "address" },
|
|
141
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
142
|
+
{ name: "withdrawalToken", type: "address", internalType: "address" },
|
|
143
|
+
{ name: "amount", type: "uint256", internalType: "uint256" },
|
|
144
|
+
{ name: "extraData", type: "bytes", internalType: "bytes" }
|
|
145
|
+
],
|
|
146
|
+
outputs: [
|
|
147
|
+
{
|
|
148
|
+
name: "requestableWithdrawal",
|
|
149
|
+
type: "tuple",
|
|
150
|
+
internalType: "struct RequestableWithdrawal",
|
|
151
|
+
components: [
|
|
152
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
153
|
+
{ name: "amountIn", type: "uint256", internalType: "uint256" },
|
|
154
|
+
{
|
|
155
|
+
name: "outputs",
|
|
156
|
+
type: "tuple[]",
|
|
157
|
+
internalType: "struct WithdrawalOutput[]",
|
|
158
|
+
components: [
|
|
159
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
160
|
+
{ name: "isDelayed", type: "bool", internalType: "bool" },
|
|
161
|
+
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
162
|
+
]
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
name: "requestCalls",
|
|
166
|
+
type: "tuple[]",
|
|
167
|
+
internalType: "struct MultiCall[]",
|
|
168
|
+
components: [
|
|
169
|
+
{ name: "target", type: "address", internalType: "address" },
|
|
170
|
+
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
171
|
+
]
|
|
172
|
+
},
|
|
173
|
+
{ name: "claimableAt", type: "uint256", internalType: "uint256" }
|
|
174
|
+
]
|
|
175
|
+
}
|
|
176
|
+
],
|
|
177
|
+
stateMutability: "view"
|
|
178
|
+
},
|
|
135
179
|
{
|
|
136
180
|
type: "function",
|
|
137
181
|
name: "getWithdrawalRequestResult",
|
package/dist/cjs/abi/compressors/subcompressors/withdrawal/securitizeRedemptionSubcompressor.js
CHANGED
|
@@ -71,7 +71,8 @@ const securitizeRedemptionSubcompressorAbi = [
|
|
|
71
71
|
{ name: "target", type: "address", internalType: "address" },
|
|
72
72
|
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
73
73
|
]
|
|
74
|
-
}
|
|
74
|
+
},
|
|
75
|
+
{ name: "extraData", type: "bytes", internalType: "bytes" }
|
|
75
76
|
]
|
|
76
77
|
},
|
|
77
78
|
{
|
|
@@ -132,6 +133,49 @@ const securitizeRedemptionSubcompressorAbi = [
|
|
|
132
133
|
],
|
|
133
134
|
stateMutability: "view"
|
|
134
135
|
},
|
|
136
|
+
{
|
|
137
|
+
type: "function",
|
|
138
|
+
name: "getWithdrawalRequestResult",
|
|
139
|
+
inputs: [
|
|
140
|
+
{ name: "creditAccount", type: "address", internalType: "address" },
|
|
141
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
142
|
+
{ name: "withdrawalToken", type: "address", internalType: "address" },
|
|
143
|
+
{ name: "amount", type: "uint256", internalType: "uint256" },
|
|
144
|
+
{ name: "extraData", type: "bytes", internalType: "bytes" }
|
|
145
|
+
],
|
|
146
|
+
outputs: [
|
|
147
|
+
{
|
|
148
|
+
name: "requestableWithdrawal",
|
|
149
|
+
type: "tuple",
|
|
150
|
+
internalType: "struct RequestableWithdrawal",
|
|
151
|
+
components: [
|
|
152
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
153
|
+
{ name: "amountIn", type: "uint256", internalType: "uint256" },
|
|
154
|
+
{
|
|
155
|
+
name: "outputs",
|
|
156
|
+
type: "tuple[]",
|
|
157
|
+
internalType: "struct WithdrawalOutput[]",
|
|
158
|
+
components: [
|
|
159
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
160
|
+
{ name: "isDelayed", type: "bool", internalType: "bool" },
|
|
161
|
+
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
162
|
+
]
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
name: "requestCalls",
|
|
166
|
+
type: "tuple[]",
|
|
167
|
+
internalType: "struct MultiCall[]",
|
|
168
|
+
components: [
|
|
169
|
+
{ name: "target", type: "address", internalType: "address" },
|
|
170
|
+
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
171
|
+
]
|
|
172
|
+
},
|
|
173
|
+
{ name: "claimableAt", type: "uint256", internalType: "uint256" }
|
|
174
|
+
]
|
|
175
|
+
}
|
|
176
|
+
],
|
|
177
|
+
stateMutability: "view"
|
|
178
|
+
},
|
|
135
179
|
{
|
|
136
180
|
type: "function",
|
|
137
181
|
name: "getWithdrawalRequestResult",
|
|
@@ -92,7 +92,8 @@ const withdrawalCompressorAbi = [
|
|
|
92
92
|
{ name: "target", type: "address", internalType: "address" },
|
|
93
93
|
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
94
94
|
]
|
|
95
|
-
}
|
|
95
|
+
},
|
|
96
|
+
{ name: "extraData", type: "bytes", internalType: "bytes" }
|
|
96
97
|
]
|
|
97
98
|
},
|
|
98
99
|
{
|
|
@@ -152,6 +153,49 @@ const withdrawalCompressorAbi = [
|
|
|
152
153
|
],
|
|
153
154
|
stateMutability: "view"
|
|
154
155
|
},
|
|
156
|
+
{
|
|
157
|
+
type: "function",
|
|
158
|
+
name: "getWithdrawalRequestResult",
|
|
159
|
+
inputs: [
|
|
160
|
+
{ name: "creditAccount", type: "address", internalType: "address" },
|
|
161
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
162
|
+
{ name: "withdrawalToken", type: "address", internalType: "address" },
|
|
163
|
+
{ name: "amount", type: "uint256", internalType: "uint256" },
|
|
164
|
+
{ name: "extraData", type: "bytes", internalType: "bytes" }
|
|
165
|
+
],
|
|
166
|
+
outputs: [
|
|
167
|
+
{
|
|
168
|
+
name: "withdrawal",
|
|
169
|
+
type: "tuple",
|
|
170
|
+
internalType: "struct RequestableWithdrawal",
|
|
171
|
+
components: [
|
|
172
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
173
|
+
{ name: "amountIn", type: "uint256", internalType: "uint256" },
|
|
174
|
+
{
|
|
175
|
+
name: "outputs",
|
|
176
|
+
type: "tuple[]",
|
|
177
|
+
internalType: "struct WithdrawalOutput[]",
|
|
178
|
+
components: [
|
|
179
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
180
|
+
{ name: "isDelayed", type: "bool", internalType: "bool" },
|
|
181
|
+
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
182
|
+
]
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
name: "requestCalls",
|
|
186
|
+
type: "tuple[]",
|
|
187
|
+
internalType: "struct MultiCall[]",
|
|
188
|
+
components: [
|
|
189
|
+
{ name: "target", type: "address", internalType: "address" },
|
|
190
|
+
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
191
|
+
]
|
|
192
|
+
},
|
|
193
|
+
{ name: "claimableAt", type: "uint256", internalType: "uint256" }
|
|
194
|
+
]
|
|
195
|
+
}
|
|
196
|
+
],
|
|
197
|
+
stateMutability: "view"
|
|
198
|
+
},
|
|
155
199
|
{
|
|
156
200
|
type: "function",
|
|
157
201
|
name: "getWithdrawalRequestResult",
|
|
@@ -48,7 +48,8 @@ const mellowWithdrawalSubcompressorAbi = [
|
|
|
48
48
|
{ name: "target", type: "address", internalType: "address" },
|
|
49
49
|
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
50
50
|
]
|
|
51
|
-
}
|
|
51
|
+
},
|
|
52
|
+
{ name: "extraData", type: "bytes", internalType: "bytes" }
|
|
52
53
|
]
|
|
53
54
|
},
|
|
54
55
|
{
|
|
@@ -109,6 +110,49 @@ const mellowWithdrawalSubcompressorAbi = [
|
|
|
109
110
|
],
|
|
110
111
|
stateMutability: "view"
|
|
111
112
|
},
|
|
113
|
+
{
|
|
114
|
+
type: "function",
|
|
115
|
+
name: "getWithdrawalRequestResult",
|
|
116
|
+
inputs: [
|
|
117
|
+
{ name: "creditAccount", type: "address", internalType: "address" },
|
|
118
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
119
|
+
{ name: "withdrawalToken", type: "address", internalType: "address" },
|
|
120
|
+
{ name: "amount", type: "uint256", internalType: "uint256" },
|
|
121
|
+
{ name: "", type: "bytes", internalType: "bytes" }
|
|
122
|
+
],
|
|
123
|
+
outputs: [
|
|
124
|
+
{
|
|
125
|
+
name: "requestableWithdrawal",
|
|
126
|
+
type: "tuple",
|
|
127
|
+
internalType: "struct RequestableWithdrawal",
|
|
128
|
+
components: [
|
|
129
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
130
|
+
{ name: "amountIn", type: "uint256", internalType: "uint256" },
|
|
131
|
+
{
|
|
132
|
+
name: "outputs",
|
|
133
|
+
type: "tuple[]",
|
|
134
|
+
internalType: "struct WithdrawalOutput[]",
|
|
135
|
+
components: [
|
|
136
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
137
|
+
{ name: "isDelayed", type: "bool", internalType: "bool" },
|
|
138
|
+
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
139
|
+
]
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
name: "requestCalls",
|
|
143
|
+
type: "tuple[]",
|
|
144
|
+
internalType: "struct MultiCall[]",
|
|
145
|
+
components: [
|
|
146
|
+
{ name: "target", type: "address", internalType: "address" },
|
|
147
|
+
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
148
|
+
]
|
|
149
|
+
},
|
|
150
|
+
{ name: "claimableAt", type: "uint256", internalType: "uint256" }
|
|
151
|
+
]
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
stateMutability: "view"
|
|
155
|
+
},
|
|
112
156
|
{
|
|
113
157
|
type: "function",
|
|
114
158
|
name: "getWithdrawalRequestResult",
|
|
@@ -48,7 +48,8 @@ const midasWithdrawalSubcompressorAbi = [
|
|
|
48
48
|
{ name: "target", type: "address", internalType: "address" },
|
|
49
49
|
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
50
50
|
]
|
|
51
|
-
}
|
|
51
|
+
},
|
|
52
|
+
{ name: "extraData", type: "bytes", internalType: "bytes" }
|
|
52
53
|
]
|
|
53
54
|
},
|
|
54
55
|
{
|
|
@@ -109,6 +110,49 @@ const midasWithdrawalSubcompressorAbi = [
|
|
|
109
110
|
],
|
|
110
111
|
stateMutability: "view"
|
|
111
112
|
},
|
|
113
|
+
{
|
|
114
|
+
type: "function",
|
|
115
|
+
name: "getWithdrawalRequestResult",
|
|
116
|
+
inputs: [
|
|
117
|
+
{ name: "creditAccount", type: "address", internalType: "address" },
|
|
118
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
119
|
+
{ name: "withdrawalToken", type: "address", internalType: "address" },
|
|
120
|
+
{ name: "amount", type: "uint256", internalType: "uint256" },
|
|
121
|
+
{ name: "extraData", type: "bytes", internalType: "bytes" }
|
|
122
|
+
],
|
|
123
|
+
outputs: [
|
|
124
|
+
{
|
|
125
|
+
name: "requestableWithdrawal",
|
|
126
|
+
type: "tuple",
|
|
127
|
+
internalType: "struct RequestableWithdrawal",
|
|
128
|
+
components: [
|
|
129
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
130
|
+
{ name: "amountIn", type: "uint256", internalType: "uint256" },
|
|
131
|
+
{
|
|
132
|
+
name: "outputs",
|
|
133
|
+
type: "tuple[]",
|
|
134
|
+
internalType: "struct WithdrawalOutput[]",
|
|
135
|
+
components: [
|
|
136
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
137
|
+
{ name: "isDelayed", type: "bool", internalType: "bool" },
|
|
138
|
+
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
139
|
+
]
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
name: "requestCalls",
|
|
143
|
+
type: "tuple[]",
|
|
144
|
+
internalType: "struct MultiCall[]",
|
|
145
|
+
components: [
|
|
146
|
+
{ name: "target", type: "address", internalType: "address" },
|
|
147
|
+
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
148
|
+
]
|
|
149
|
+
},
|
|
150
|
+
{ name: "claimableAt", type: "uint256", internalType: "uint256" }
|
|
151
|
+
]
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
stateMutability: "view"
|
|
155
|
+
},
|
|
112
156
|
{
|
|
113
157
|
type: "function",
|
|
114
158
|
name: "getWithdrawalRequestResult",
|
package/dist/esm/abi/compressors/subcompressors/withdrawal/securitizeRedemptionSubcompressor.js
CHANGED
|
@@ -48,7 +48,8 @@ const securitizeRedemptionSubcompressorAbi = [
|
|
|
48
48
|
{ name: "target", type: "address", internalType: "address" },
|
|
49
49
|
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
50
50
|
]
|
|
51
|
-
}
|
|
51
|
+
},
|
|
52
|
+
{ name: "extraData", type: "bytes", internalType: "bytes" }
|
|
52
53
|
]
|
|
53
54
|
},
|
|
54
55
|
{
|
|
@@ -109,6 +110,49 @@ const securitizeRedemptionSubcompressorAbi = [
|
|
|
109
110
|
],
|
|
110
111
|
stateMutability: "view"
|
|
111
112
|
},
|
|
113
|
+
{
|
|
114
|
+
type: "function",
|
|
115
|
+
name: "getWithdrawalRequestResult",
|
|
116
|
+
inputs: [
|
|
117
|
+
{ name: "creditAccount", type: "address", internalType: "address" },
|
|
118
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
119
|
+
{ name: "withdrawalToken", type: "address", internalType: "address" },
|
|
120
|
+
{ name: "amount", type: "uint256", internalType: "uint256" },
|
|
121
|
+
{ name: "extraData", type: "bytes", internalType: "bytes" }
|
|
122
|
+
],
|
|
123
|
+
outputs: [
|
|
124
|
+
{
|
|
125
|
+
name: "requestableWithdrawal",
|
|
126
|
+
type: "tuple",
|
|
127
|
+
internalType: "struct RequestableWithdrawal",
|
|
128
|
+
components: [
|
|
129
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
130
|
+
{ name: "amountIn", type: "uint256", internalType: "uint256" },
|
|
131
|
+
{
|
|
132
|
+
name: "outputs",
|
|
133
|
+
type: "tuple[]",
|
|
134
|
+
internalType: "struct WithdrawalOutput[]",
|
|
135
|
+
components: [
|
|
136
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
137
|
+
{ name: "isDelayed", type: "bool", internalType: "bool" },
|
|
138
|
+
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
139
|
+
]
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
name: "requestCalls",
|
|
143
|
+
type: "tuple[]",
|
|
144
|
+
internalType: "struct MultiCall[]",
|
|
145
|
+
components: [
|
|
146
|
+
{ name: "target", type: "address", internalType: "address" },
|
|
147
|
+
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
148
|
+
]
|
|
149
|
+
},
|
|
150
|
+
{ name: "claimableAt", type: "uint256", internalType: "uint256" }
|
|
151
|
+
]
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
stateMutability: "view"
|
|
155
|
+
},
|
|
112
156
|
{
|
|
113
157
|
type: "function",
|
|
114
158
|
name: "getWithdrawalRequestResult",
|
|
@@ -69,7 +69,8 @@ const withdrawalCompressorAbi = [
|
|
|
69
69
|
{ name: "target", type: "address", internalType: "address" },
|
|
70
70
|
{ name: "callData", type: "bytes", internalType: "bytes" }
|
|
71
71
|
]
|
|
72
|
-
}
|
|
72
|
+
},
|
|
73
|
+
{ name: "extraData", type: "bytes", internalType: "bytes" }
|
|
73
74
|
]
|
|
74
75
|
},
|
|
75
76
|
{
|
|
@@ -129,6 +130,49 @@ const withdrawalCompressorAbi = [
|
|
|
129
130
|
],
|
|
130
131
|
stateMutability: "view"
|
|
131
132
|
},
|
|
133
|
+
{
|
|
134
|
+
type: "function",
|
|
135
|
+
name: "getWithdrawalRequestResult",
|
|
136
|
+
inputs: [
|
|
137
|
+
{ name: "creditAccount", type: "address", internalType: "address" },
|
|
138
|
+
{ name: "token", type: "address", internalType: "address" },
|
|
139
|
+
{ name: "withdrawalToken", type: "address", internalType: "address" },
|
|
140
|
+
{ name: "amount", type: "uint256", internalType: "uint256" },
|
|
141
|
+
{ name: "extraData", type: "bytes", internalType: "bytes" }
|
|
142
|
+
],
|
|
143
|
+
outputs: [
|
|
144
|
+
{
|
|
145
|
+
name: "withdrawal",
|
|
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
|
+
},
|
|
132
176
|
{
|
|
133
177
|
type: "function",
|
|
134
178
|
name: "getWithdrawalRequestResult",
|
package/dist/types/abi/compressors/subcompressors/withdrawal/mellowWithdrawalSubcompressor.d.ts
CHANGED
|
@@ -66,6 +66,10 @@ export declare const mellowWithdrawalSubcompressorAbi: readonly [{
|
|
|
66
66
|
readonly type: "bytes";
|
|
67
67
|
readonly internalType: "bytes";
|
|
68
68
|
}];
|
|
69
|
+
}, {
|
|
70
|
+
readonly name: "extraData";
|
|
71
|
+
readonly type: "bytes";
|
|
72
|
+
readonly internalType: "bytes";
|
|
69
73
|
}];
|
|
70
74
|
}, {
|
|
71
75
|
readonly name: "";
|
|
@@ -142,6 +146,79 @@ export declare const mellowWithdrawalSubcompressorAbi: readonly [{
|
|
|
142
146
|
}];
|
|
143
147
|
}];
|
|
144
148
|
readonly stateMutability: "view";
|
|
149
|
+
}, {
|
|
150
|
+
readonly type: "function";
|
|
151
|
+
readonly name: "getWithdrawalRequestResult";
|
|
152
|
+
readonly inputs: readonly [{
|
|
153
|
+
readonly name: "creditAccount";
|
|
154
|
+
readonly type: "address";
|
|
155
|
+
readonly internalType: "address";
|
|
156
|
+
}, {
|
|
157
|
+
readonly name: "token";
|
|
158
|
+
readonly type: "address";
|
|
159
|
+
readonly internalType: "address";
|
|
160
|
+
}, {
|
|
161
|
+
readonly name: "withdrawalToken";
|
|
162
|
+
readonly type: "address";
|
|
163
|
+
readonly internalType: "address";
|
|
164
|
+
}, {
|
|
165
|
+
readonly name: "amount";
|
|
166
|
+
readonly type: "uint256";
|
|
167
|
+
readonly internalType: "uint256";
|
|
168
|
+
}, {
|
|
169
|
+
readonly name: "";
|
|
170
|
+
readonly type: "bytes";
|
|
171
|
+
readonly internalType: "bytes";
|
|
172
|
+
}];
|
|
173
|
+
readonly outputs: readonly [{
|
|
174
|
+
readonly name: "requestableWithdrawal";
|
|
175
|
+
readonly type: "tuple";
|
|
176
|
+
readonly internalType: "struct RequestableWithdrawal";
|
|
177
|
+
readonly components: readonly [{
|
|
178
|
+
readonly name: "token";
|
|
179
|
+
readonly type: "address";
|
|
180
|
+
readonly internalType: "address";
|
|
181
|
+
}, {
|
|
182
|
+
readonly name: "amountIn";
|
|
183
|
+
readonly type: "uint256";
|
|
184
|
+
readonly internalType: "uint256";
|
|
185
|
+
}, {
|
|
186
|
+
readonly name: "outputs";
|
|
187
|
+
readonly type: "tuple[]";
|
|
188
|
+
readonly internalType: "struct WithdrawalOutput[]";
|
|
189
|
+
readonly components: readonly [{
|
|
190
|
+
readonly name: "token";
|
|
191
|
+
readonly type: "address";
|
|
192
|
+
readonly internalType: "address";
|
|
193
|
+
}, {
|
|
194
|
+
readonly name: "isDelayed";
|
|
195
|
+
readonly type: "bool";
|
|
196
|
+
readonly internalType: "bool";
|
|
197
|
+
}, {
|
|
198
|
+
readonly name: "amount";
|
|
199
|
+
readonly type: "uint256";
|
|
200
|
+
readonly internalType: "uint256";
|
|
201
|
+
}];
|
|
202
|
+
}, {
|
|
203
|
+
readonly name: "requestCalls";
|
|
204
|
+
readonly type: "tuple[]";
|
|
205
|
+
readonly internalType: "struct MultiCall[]";
|
|
206
|
+
readonly components: readonly [{
|
|
207
|
+
readonly name: "target";
|
|
208
|
+
readonly type: "address";
|
|
209
|
+
readonly internalType: "address";
|
|
210
|
+
}, {
|
|
211
|
+
readonly name: "callData";
|
|
212
|
+
readonly type: "bytes";
|
|
213
|
+
readonly internalType: "bytes";
|
|
214
|
+
}];
|
|
215
|
+
}, {
|
|
216
|
+
readonly name: "claimableAt";
|
|
217
|
+
readonly type: "uint256";
|
|
218
|
+
readonly internalType: "uint256";
|
|
219
|
+
}];
|
|
220
|
+
}];
|
|
221
|
+
readonly stateMutability: "view";
|
|
145
222
|
}, {
|
|
146
223
|
readonly type: "function";
|
|
147
224
|
readonly name: "getWithdrawalRequestResult";
|
package/dist/types/abi/compressors/subcompressors/withdrawal/midasWithdrawalSubcompressor.d.ts
CHANGED
|
@@ -66,6 +66,10 @@ export declare const midasWithdrawalSubcompressorAbi: readonly [{
|
|
|
66
66
|
readonly type: "bytes";
|
|
67
67
|
readonly internalType: "bytes";
|
|
68
68
|
}];
|
|
69
|
+
}, {
|
|
70
|
+
readonly name: "extraData";
|
|
71
|
+
readonly type: "bytes";
|
|
72
|
+
readonly internalType: "bytes";
|
|
69
73
|
}];
|
|
70
74
|
}, {
|
|
71
75
|
readonly name: "";
|
|
@@ -142,6 +146,79 @@ export declare const midasWithdrawalSubcompressorAbi: readonly [{
|
|
|
142
146
|
}];
|
|
143
147
|
}];
|
|
144
148
|
readonly stateMutability: "view";
|
|
149
|
+
}, {
|
|
150
|
+
readonly type: "function";
|
|
151
|
+
readonly name: "getWithdrawalRequestResult";
|
|
152
|
+
readonly inputs: readonly [{
|
|
153
|
+
readonly name: "creditAccount";
|
|
154
|
+
readonly type: "address";
|
|
155
|
+
readonly internalType: "address";
|
|
156
|
+
}, {
|
|
157
|
+
readonly name: "token";
|
|
158
|
+
readonly type: "address";
|
|
159
|
+
readonly internalType: "address";
|
|
160
|
+
}, {
|
|
161
|
+
readonly name: "withdrawalToken";
|
|
162
|
+
readonly type: "address";
|
|
163
|
+
readonly internalType: "address";
|
|
164
|
+
}, {
|
|
165
|
+
readonly name: "amount";
|
|
166
|
+
readonly type: "uint256";
|
|
167
|
+
readonly internalType: "uint256";
|
|
168
|
+
}, {
|
|
169
|
+
readonly name: "extraData";
|
|
170
|
+
readonly type: "bytes";
|
|
171
|
+
readonly internalType: "bytes";
|
|
172
|
+
}];
|
|
173
|
+
readonly outputs: readonly [{
|
|
174
|
+
readonly name: "requestableWithdrawal";
|
|
175
|
+
readonly type: "tuple";
|
|
176
|
+
readonly internalType: "struct RequestableWithdrawal";
|
|
177
|
+
readonly components: readonly [{
|
|
178
|
+
readonly name: "token";
|
|
179
|
+
readonly type: "address";
|
|
180
|
+
readonly internalType: "address";
|
|
181
|
+
}, {
|
|
182
|
+
readonly name: "amountIn";
|
|
183
|
+
readonly type: "uint256";
|
|
184
|
+
readonly internalType: "uint256";
|
|
185
|
+
}, {
|
|
186
|
+
readonly name: "outputs";
|
|
187
|
+
readonly type: "tuple[]";
|
|
188
|
+
readonly internalType: "struct WithdrawalOutput[]";
|
|
189
|
+
readonly components: readonly [{
|
|
190
|
+
readonly name: "token";
|
|
191
|
+
readonly type: "address";
|
|
192
|
+
readonly internalType: "address";
|
|
193
|
+
}, {
|
|
194
|
+
readonly name: "isDelayed";
|
|
195
|
+
readonly type: "bool";
|
|
196
|
+
readonly internalType: "bool";
|
|
197
|
+
}, {
|
|
198
|
+
readonly name: "amount";
|
|
199
|
+
readonly type: "uint256";
|
|
200
|
+
readonly internalType: "uint256";
|
|
201
|
+
}];
|
|
202
|
+
}, {
|
|
203
|
+
readonly name: "requestCalls";
|
|
204
|
+
readonly type: "tuple[]";
|
|
205
|
+
readonly internalType: "struct MultiCall[]";
|
|
206
|
+
readonly components: readonly [{
|
|
207
|
+
readonly name: "target";
|
|
208
|
+
readonly type: "address";
|
|
209
|
+
readonly internalType: "address";
|
|
210
|
+
}, {
|
|
211
|
+
readonly name: "callData";
|
|
212
|
+
readonly type: "bytes";
|
|
213
|
+
readonly internalType: "bytes";
|
|
214
|
+
}];
|
|
215
|
+
}, {
|
|
216
|
+
readonly name: "claimableAt";
|
|
217
|
+
readonly type: "uint256";
|
|
218
|
+
readonly internalType: "uint256";
|
|
219
|
+
}];
|
|
220
|
+
}];
|
|
221
|
+
readonly stateMutability: "view";
|
|
145
222
|
}, {
|
|
146
223
|
readonly type: "function";
|
|
147
224
|
readonly name: "getWithdrawalRequestResult";
|
package/dist/types/abi/compressors/subcompressors/withdrawal/securitizeRedemptionSubcompressor.d.ts
CHANGED
|
@@ -66,6 +66,10 @@ export declare const securitizeRedemptionSubcompressorAbi: readonly [{
|
|
|
66
66
|
readonly type: "bytes";
|
|
67
67
|
readonly internalType: "bytes";
|
|
68
68
|
}];
|
|
69
|
+
}, {
|
|
70
|
+
readonly name: "extraData";
|
|
71
|
+
readonly type: "bytes";
|
|
72
|
+
readonly internalType: "bytes";
|
|
69
73
|
}];
|
|
70
74
|
}, {
|
|
71
75
|
readonly name: "";
|
|
@@ -142,6 +146,79 @@ export declare const securitizeRedemptionSubcompressorAbi: readonly [{
|
|
|
142
146
|
}];
|
|
143
147
|
}];
|
|
144
148
|
readonly stateMutability: "view";
|
|
149
|
+
}, {
|
|
150
|
+
readonly type: "function";
|
|
151
|
+
readonly name: "getWithdrawalRequestResult";
|
|
152
|
+
readonly inputs: readonly [{
|
|
153
|
+
readonly name: "creditAccount";
|
|
154
|
+
readonly type: "address";
|
|
155
|
+
readonly internalType: "address";
|
|
156
|
+
}, {
|
|
157
|
+
readonly name: "token";
|
|
158
|
+
readonly type: "address";
|
|
159
|
+
readonly internalType: "address";
|
|
160
|
+
}, {
|
|
161
|
+
readonly name: "withdrawalToken";
|
|
162
|
+
readonly type: "address";
|
|
163
|
+
readonly internalType: "address";
|
|
164
|
+
}, {
|
|
165
|
+
readonly name: "amount";
|
|
166
|
+
readonly type: "uint256";
|
|
167
|
+
readonly internalType: "uint256";
|
|
168
|
+
}, {
|
|
169
|
+
readonly name: "extraData";
|
|
170
|
+
readonly type: "bytes";
|
|
171
|
+
readonly internalType: "bytes";
|
|
172
|
+
}];
|
|
173
|
+
readonly outputs: readonly [{
|
|
174
|
+
readonly name: "requestableWithdrawal";
|
|
175
|
+
readonly type: "tuple";
|
|
176
|
+
readonly internalType: "struct RequestableWithdrawal";
|
|
177
|
+
readonly components: readonly [{
|
|
178
|
+
readonly name: "token";
|
|
179
|
+
readonly type: "address";
|
|
180
|
+
readonly internalType: "address";
|
|
181
|
+
}, {
|
|
182
|
+
readonly name: "amountIn";
|
|
183
|
+
readonly type: "uint256";
|
|
184
|
+
readonly internalType: "uint256";
|
|
185
|
+
}, {
|
|
186
|
+
readonly name: "outputs";
|
|
187
|
+
readonly type: "tuple[]";
|
|
188
|
+
readonly internalType: "struct WithdrawalOutput[]";
|
|
189
|
+
readonly components: readonly [{
|
|
190
|
+
readonly name: "token";
|
|
191
|
+
readonly type: "address";
|
|
192
|
+
readonly internalType: "address";
|
|
193
|
+
}, {
|
|
194
|
+
readonly name: "isDelayed";
|
|
195
|
+
readonly type: "bool";
|
|
196
|
+
readonly internalType: "bool";
|
|
197
|
+
}, {
|
|
198
|
+
readonly name: "amount";
|
|
199
|
+
readonly type: "uint256";
|
|
200
|
+
readonly internalType: "uint256";
|
|
201
|
+
}];
|
|
202
|
+
}, {
|
|
203
|
+
readonly name: "requestCalls";
|
|
204
|
+
readonly type: "tuple[]";
|
|
205
|
+
readonly internalType: "struct MultiCall[]";
|
|
206
|
+
readonly components: readonly [{
|
|
207
|
+
readonly name: "target";
|
|
208
|
+
readonly type: "address";
|
|
209
|
+
readonly internalType: "address";
|
|
210
|
+
}, {
|
|
211
|
+
readonly name: "callData";
|
|
212
|
+
readonly type: "bytes";
|
|
213
|
+
readonly internalType: "bytes";
|
|
214
|
+
}];
|
|
215
|
+
}, {
|
|
216
|
+
readonly name: "claimableAt";
|
|
217
|
+
readonly type: "uint256";
|
|
218
|
+
readonly internalType: "uint256";
|
|
219
|
+
}];
|
|
220
|
+
}];
|
|
221
|
+
readonly stateMutability: "view";
|
|
145
222
|
}, {
|
|
146
223
|
readonly type: "function";
|
|
147
224
|
readonly name: "getWithdrawalRequestResult";
|
|
@@ -98,6 +98,10 @@ export declare const withdrawalCompressorAbi: readonly [{
|
|
|
98
98
|
readonly type: "bytes";
|
|
99
99
|
readonly internalType: "bytes";
|
|
100
100
|
}];
|
|
101
|
+
}, {
|
|
102
|
+
readonly name: "extraData";
|
|
103
|
+
readonly type: "bytes";
|
|
104
|
+
readonly internalType: "bytes";
|
|
101
105
|
}];
|
|
102
106
|
}, {
|
|
103
107
|
readonly name: "";
|
|
@@ -170,6 +174,79 @@ export declare const withdrawalCompressorAbi: readonly [{
|
|
|
170
174
|
}];
|
|
171
175
|
}];
|
|
172
176
|
readonly stateMutability: "view";
|
|
177
|
+
}, {
|
|
178
|
+
readonly type: "function";
|
|
179
|
+
readonly name: "getWithdrawalRequestResult";
|
|
180
|
+
readonly inputs: readonly [{
|
|
181
|
+
readonly name: "creditAccount";
|
|
182
|
+
readonly type: "address";
|
|
183
|
+
readonly internalType: "address";
|
|
184
|
+
}, {
|
|
185
|
+
readonly name: "token";
|
|
186
|
+
readonly type: "address";
|
|
187
|
+
readonly internalType: "address";
|
|
188
|
+
}, {
|
|
189
|
+
readonly name: "withdrawalToken";
|
|
190
|
+
readonly type: "address";
|
|
191
|
+
readonly internalType: "address";
|
|
192
|
+
}, {
|
|
193
|
+
readonly name: "amount";
|
|
194
|
+
readonly type: "uint256";
|
|
195
|
+
readonly internalType: "uint256";
|
|
196
|
+
}, {
|
|
197
|
+
readonly name: "extraData";
|
|
198
|
+
readonly type: "bytes";
|
|
199
|
+
readonly internalType: "bytes";
|
|
200
|
+
}];
|
|
201
|
+
readonly outputs: readonly [{
|
|
202
|
+
readonly name: "withdrawal";
|
|
203
|
+
readonly type: "tuple";
|
|
204
|
+
readonly internalType: "struct RequestableWithdrawal";
|
|
205
|
+
readonly components: readonly [{
|
|
206
|
+
readonly name: "token";
|
|
207
|
+
readonly type: "address";
|
|
208
|
+
readonly internalType: "address";
|
|
209
|
+
}, {
|
|
210
|
+
readonly name: "amountIn";
|
|
211
|
+
readonly type: "uint256";
|
|
212
|
+
readonly internalType: "uint256";
|
|
213
|
+
}, {
|
|
214
|
+
readonly name: "outputs";
|
|
215
|
+
readonly type: "tuple[]";
|
|
216
|
+
readonly internalType: "struct WithdrawalOutput[]";
|
|
217
|
+
readonly components: readonly [{
|
|
218
|
+
readonly name: "token";
|
|
219
|
+
readonly type: "address";
|
|
220
|
+
readonly internalType: "address";
|
|
221
|
+
}, {
|
|
222
|
+
readonly name: "isDelayed";
|
|
223
|
+
readonly type: "bool";
|
|
224
|
+
readonly internalType: "bool";
|
|
225
|
+
}, {
|
|
226
|
+
readonly name: "amount";
|
|
227
|
+
readonly type: "uint256";
|
|
228
|
+
readonly internalType: "uint256";
|
|
229
|
+
}];
|
|
230
|
+
}, {
|
|
231
|
+
readonly name: "requestCalls";
|
|
232
|
+
readonly type: "tuple[]";
|
|
233
|
+
readonly internalType: "struct MultiCall[]";
|
|
234
|
+
readonly components: readonly [{
|
|
235
|
+
readonly name: "target";
|
|
236
|
+
readonly type: "address";
|
|
237
|
+
readonly internalType: "address";
|
|
238
|
+
}, {
|
|
239
|
+
readonly name: "callData";
|
|
240
|
+
readonly type: "bytes";
|
|
241
|
+
readonly internalType: "bytes";
|
|
242
|
+
}];
|
|
243
|
+
}, {
|
|
244
|
+
readonly name: "claimableAt";
|
|
245
|
+
readonly type: "uint256";
|
|
246
|
+
readonly internalType: "uint256";
|
|
247
|
+
}];
|
|
248
|
+
}];
|
|
249
|
+
readonly stateMutability: "view";
|
|
173
250
|
}, {
|
|
174
251
|
readonly type: "function";
|
|
175
252
|
readonly name: "getWithdrawalRequestResult";
|
|
@@ -100,6 +100,10 @@ declare const abi: readonly [{
|
|
|
100
100
|
readonly type: "bytes";
|
|
101
101
|
readonly internalType: "bytes";
|
|
102
102
|
}];
|
|
103
|
+
}, {
|
|
104
|
+
readonly name: "extraData";
|
|
105
|
+
readonly type: "bytes";
|
|
106
|
+
readonly internalType: "bytes";
|
|
103
107
|
}];
|
|
104
108
|
}, {
|
|
105
109
|
readonly name: "";
|
|
@@ -172,6 +176,79 @@ declare const abi: readonly [{
|
|
|
172
176
|
}];
|
|
173
177
|
}];
|
|
174
178
|
readonly stateMutability: "view";
|
|
179
|
+
}, {
|
|
180
|
+
readonly type: "function";
|
|
181
|
+
readonly name: "getWithdrawalRequestResult";
|
|
182
|
+
readonly inputs: readonly [{
|
|
183
|
+
readonly name: "creditAccount";
|
|
184
|
+
readonly type: "address";
|
|
185
|
+
readonly internalType: "address";
|
|
186
|
+
}, {
|
|
187
|
+
readonly name: "token";
|
|
188
|
+
readonly type: "address";
|
|
189
|
+
readonly internalType: "address";
|
|
190
|
+
}, {
|
|
191
|
+
readonly name: "withdrawalToken";
|
|
192
|
+
readonly type: "address";
|
|
193
|
+
readonly internalType: "address";
|
|
194
|
+
}, {
|
|
195
|
+
readonly name: "amount";
|
|
196
|
+
readonly type: "uint256";
|
|
197
|
+
readonly internalType: "uint256";
|
|
198
|
+
}, {
|
|
199
|
+
readonly name: "extraData";
|
|
200
|
+
readonly type: "bytes";
|
|
201
|
+
readonly internalType: "bytes";
|
|
202
|
+
}];
|
|
203
|
+
readonly outputs: readonly [{
|
|
204
|
+
readonly name: "withdrawal";
|
|
205
|
+
readonly type: "tuple";
|
|
206
|
+
readonly internalType: "struct RequestableWithdrawal";
|
|
207
|
+
readonly components: readonly [{
|
|
208
|
+
readonly name: "token";
|
|
209
|
+
readonly type: "address";
|
|
210
|
+
readonly internalType: "address";
|
|
211
|
+
}, {
|
|
212
|
+
readonly name: "amountIn";
|
|
213
|
+
readonly type: "uint256";
|
|
214
|
+
readonly internalType: "uint256";
|
|
215
|
+
}, {
|
|
216
|
+
readonly name: "outputs";
|
|
217
|
+
readonly type: "tuple[]";
|
|
218
|
+
readonly internalType: "struct WithdrawalOutput[]";
|
|
219
|
+
readonly components: readonly [{
|
|
220
|
+
readonly name: "token";
|
|
221
|
+
readonly type: "address";
|
|
222
|
+
readonly internalType: "address";
|
|
223
|
+
}, {
|
|
224
|
+
readonly name: "isDelayed";
|
|
225
|
+
readonly type: "bool";
|
|
226
|
+
readonly internalType: "bool";
|
|
227
|
+
}, {
|
|
228
|
+
readonly name: "amount";
|
|
229
|
+
readonly type: "uint256";
|
|
230
|
+
readonly internalType: "uint256";
|
|
231
|
+
}];
|
|
232
|
+
}, {
|
|
233
|
+
readonly name: "requestCalls";
|
|
234
|
+
readonly type: "tuple[]";
|
|
235
|
+
readonly internalType: "struct MultiCall[]";
|
|
236
|
+
readonly components: readonly [{
|
|
237
|
+
readonly name: "target";
|
|
238
|
+
readonly type: "address";
|
|
239
|
+
readonly internalType: "address";
|
|
240
|
+
}, {
|
|
241
|
+
readonly name: "callData";
|
|
242
|
+
readonly type: "bytes";
|
|
243
|
+
readonly internalType: "bytes";
|
|
244
|
+
}];
|
|
245
|
+
}, {
|
|
246
|
+
readonly name: "claimableAt";
|
|
247
|
+
readonly type: "uint256";
|
|
248
|
+
readonly internalType: "uint256";
|
|
249
|
+
}];
|
|
250
|
+
}];
|
|
251
|
+
readonly stateMutability: "view";
|
|
175
252
|
}, {
|
|
176
253
|
readonly type: "function";
|
|
177
254
|
readonly name: "getWithdrawalRequestResult";
|