@gearbox-protocol/sdk 14.5.8 → 14.5.10
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/iDefaultAccountFactoryV3.js +194 -0
- package/dist/cjs/abi/kyc/iDSToken.js +1907 -20
- package/dist/cjs/plugins/adapters/abi/securitize/iBaseOnRamp.js +351 -0
- package/dist/cjs/plugins/adapters/contracts/SecuritizeOnRampAdapterContract.js +2 -1
- package/dist/esm/abi/iDefaultAccountFactoryV3.js +170 -0
- package/dist/esm/abi/kyc/iDSToken.js +1907 -20
- package/dist/esm/plugins/adapters/abi/securitize/iBaseOnRamp.js +327 -0
- package/dist/esm/plugins/adapters/contracts/SecuritizeOnRampAdapterContract.js +2 -1
- package/dist/types/abi/iDefaultAccountFactoryV3.d.ts +177 -0
- package/dist/types/abi/kyc/iDSToken.d.ts +1446 -13
- package/dist/types/plugins/adapters/abi/securitize/iBaseOnRamp.d.ts +255 -0
- package/dist/types/plugins/adapters/contracts/SecuritizeOnRampAdapterContract.d.ts +254 -0
- package/package.json +1 -1
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
export declare const iBaseOnRampAbi: readonly [{
|
|
2
|
+
readonly inputs: readonly [];
|
|
3
|
+
readonly name: "InsufficientERC20BalanceError";
|
|
4
|
+
readonly type: "error";
|
|
5
|
+
}, {
|
|
6
|
+
readonly inputs: readonly [];
|
|
7
|
+
readonly name: "InvalidEIP712SignatureError";
|
|
8
|
+
readonly type: "error";
|
|
9
|
+
}, {
|
|
10
|
+
readonly inputs: readonly [];
|
|
11
|
+
readonly name: "InvestorNotRegisteredError";
|
|
12
|
+
readonly type: "error";
|
|
13
|
+
}, {
|
|
14
|
+
readonly inputs: readonly [];
|
|
15
|
+
readonly name: "InvestorSubscriptionDisabledError";
|
|
16
|
+
readonly type: "error";
|
|
17
|
+
}, {
|
|
18
|
+
readonly inputs: readonly [];
|
|
19
|
+
readonly name: "MinSubscriptionAmountError";
|
|
20
|
+
readonly type: "error";
|
|
21
|
+
}, {
|
|
22
|
+
readonly inputs: readonly [];
|
|
23
|
+
readonly name: "NonPositiveAmountError";
|
|
24
|
+
readonly type: "error";
|
|
25
|
+
}, {
|
|
26
|
+
readonly inputs: readonly [];
|
|
27
|
+
readonly name: "NonZeroAddressError";
|
|
28
|
+
readonly type: "error";
|
|
29
|
+
}, {
|
|
30
|
+
readonly inputs: readonly [];
|
|
31
|
+
readonly name: "NonZeroNavRateError";
|
|
32
|
+
readonly type: "error";
|
|
33
|
+
}, {
|
|
34
|
+
readonly inputs: readonly [];
|
|
35
|
+
readonly name: "SameValueError";
|
|
36
|
+
readonly type: "error";
|
|
37
|
+
}, {
|
|
38
|
+
readonly inputs: readonly [];
|
|
39
|
+
readonly name: "SignatureDeadlineExpiredError";
|
|
40
|
+
readonly type: "error";
|
|
41
|
+
}, {
|
|
42
|
+
readonly inputs: readonly [];
|
|
43
|
+
readonly name: "SlippageControlError";
|
|
44
|
+
readonly type: "error";
|
|
45
|
+
}, {
|
|
46
|
+
readonly anonymous: false;
|
|
47
|
+
readonly inputs: readonly [{
|
|
48
|
+
readonly indexed: true;
|
|
49
|
+
readonly internalType: "address";
|
|
50
|
+
readonly name: "oldProvider";
|
|
51
|
+
readonly type: "address";
|
|
52
|
+
}, {
|
|
53
|
+
readonly indexed: true;
|
|
54
|
+
readonly internalType: "address";
|
|
55
|
+
readonly name: "newProvider";
|
|
56
|
+
readonly type: "address";
|
|
57
|
+
}];
|
|
58
|
+
readonly name: "AssetProviderUpdated";
|
|
59
|
+
readonly type: "event";
|
|
60
|
+
}, {
|
|
61
|
+
readonly anonymous: false;
|
|
62
|
+
readonly inputs: readonly [{
|
|
63
|
+
readonly indexed: false;
|
|
64
|
+
readonly internalType: "uint16";
|
|
65
|
+
readonly name: "chainId";
|
|
66
|
+
readonly type: "uint16";
|
|
67
|
+
}, {
|
|
68
|
+
readonly indexed: false;
|
|
69
|
+
readonly internalType: "address";
|
|
70
|
+
readonly name: "bridge";
|
|
71
|
+
readonly type: "address";
|
|
72
|
+
}];
|
|
73
|
+
readonly name: "BridgeParamsUpdated";
|
|
74
|
+
readonly type: "event";
|
|
75
|
+
}, {
|
|
76
|
+
readonly anonymous: false;
|
|
77
|
+
readonly inputs: readonly [{
|
|
78
|
+
readonly indexed: false;
|
|
79
|
+
readonly internalType: "bool";
|
|
80
|
+
readonly name: "newValue";
|
|
81
|
+
readonly type: "bool";
|
|
82
|
+
}];
|
|
83
|
+
readonly name: "InvestorSubscriptionUpdated";
|
|
84
|
+
readonly type: "event";
|
|
85
|
+
}, {
|
|
86
|
+
readonly anonymous: false;
|
|
87
|
+
readonly inputs: readonly [{
|
|
88
|
+
readonly indexed: false;
|
|
89
|
+
readonly internalType: "uint256";
|
|
90
|
+
readonly name: "oldValue";
|
|
91
|
+
readonly type: "uint256";
|
|
92
|
+
}, {
|
|
93
|
+
readonly indexed: false;
|
|
94
|
+
readonly internalType: "uint256";
|
|
95
|
+
readonly name: "newValue";
|
|
96
|
+
readonly type: "uint256";
|
|
97
|
+
}];
|
|
98
|
+
readonly name: "MinSubscriptionAmountUpdated";
|
|
99
|
+
readonly type: "event";
|
|
100
|
+
}, {
|
|
101
|
+
readonly anonymous: false;
|
|
102
|
+
readonly inputs: readonly [{
|
|
103
|
+
readonly indexed: true;
|
|
104
|
+
readonly internalType: "address";
|
|
105
|
+
readonly name: "oldProvider";
|
|
106
|
+
readonly type: "address";
|
|
107
|
+
}, {
|
|
108
|
+
readonly indexed: true;
|
|
109
|
+
readonly internalType: "address";
|
|
110
|
+
readonly name: "newProvider";
|
|
111
|
+
readonly type: "address";
|
|
112
|
+
}];
|
|
113
|
+
readonly name: "NavProviderUpdated";
|
|
114
|
+
readonly type: "event";
|
|
115
|
+
}, {
|
|
116
|
+
readonly anonymous: false;
|
|
117
|
+
readonly inputs: readonly [{
|
|
118
|
+
readonly indexed: true;
|
|
119
|
+
readonly internalType: "address";
|
|
120
|
+
readonly name: "from";
|
|
121
|
+
readonly type: "address";
|
|
122
|
+
}, {
|
|
123
|
+
readonly indexed: false;
|
|
124
|
+
readonly internalType: "uint256";
|
|
125
|
+
readonly name: "dsTokenValue";
|
|
126
|
+
readonly type: "uint256";
|
|
127
|
+
}, {
|
|
128
|
+
readonly indexed: false;
|
|
129
|
+
readonly internalType: "uint256";
|
|
130
|
+
readonly name: "liquidityValue";
|
|
131
|
+
readonly type: "uint256";
|
|
132
|
+
}, {
|
|
133
|
+
readonly indexed: true;
|
|
134
|
+
readonly internalType: "address";
|
|
135
|
+
readonly name: "newWalletTo";
|
|
136
|
+
readonly type: "address";
|
|
137
|
+
}, {
|
|
138
|
+
readonly indexed: false;
|
|
139
|
+
readonly internalType: "uint256";
|
|
140
|
+
readonly name: "rate";
|
|
141
|
+
readonly type: "uint256";
|
|
142
|
+
}, {
|
|
143
|
+
readonly indexed: false;
|
|
144
|
+
readonly internalType: "uint256";
|
|
145
|
+
readonly name: "fee";
|
|
146
|
+
readonly type: "uint256";
|
|
147
|
+
}, {
|
|
148
|
+
readonly indexed: true;
|
|
149
|
+
readonly internalType: "address";
|
|
150
|
+
readonly name: "liquidityToken";
|
|
151
|
+
readonly type: "address";
|
|
152
|
+
}];
|
|
153
|
+
readonly name: "Swap";
|
|
154
|
+
readonly type: "event";
|
|
155
|
+
}, {
|
|
156
|
+
readonly anonymous: false;
|
|
157
|
+
readonly inputs: readonly [{
|
|
158
|
+
readonly indexed: false;
|
|
159
|
+
readonly internalType: "bool";
|
|
160
|
+
readonly name: "newValue";
|
|
161
|
+
readonly type: "bool";
|
|
162
|
+
}];
|
|
163
|
+
readonly name: "TwoStepTransferUpdated";
|
|
164
|
+
readonly type: "event";
|
|
165
|
+
}, {
|
|
166
|
+
readonly inputs: readonly [{
|
|
167
|
+
readonly internalType: "address";
|
|
168
|
+
readonly name: "_dsToken";
|
|
169
|
+
readonly type: "address";
|
|
170
|
+
}, {
|
|
171
|
+
readonly internalType: "address";
|
|
172
|
+
readonly name: "_liquidity";
|
|
173
|
+
readonly type: "address";
|
|
174
|
+
}, {
|
|
175
|
+
readonly internalType: "address";
|
|
176
|
+
readonly name: "_navProvider";
|
|
177
|
+
readonly type: "address";
|
|
178
|
+
}, {
|
|
179
|
+
readonly internalType: "address";
|
|
180
|
+
readonly name: "_feeManager";
|
|
181
|
+
readonly type: "address";
|
|
182
|
+
}, {
|
|
183
|
+
readonly internalType: "address";
|
|
184
|
+
readonly name: "_custodianWallet";
|
|
185
|
+
readonly type: "address";
|
|
186
|
+
}];
|
|
187
|
+
readonly name: "initialize";
|
|
188
|
+
readonly outputs: readonly [];
|
|
189
|
+
readonly stateMutability: "nonpayable";
|
|
190
|
+
readonly type: "function";
|
|
191
|
+
}, {
|
|
192
|
+
readonly inputs: readonly [{
|
|
193
|
+
readonly internalType: "bool";
|
|
194
|
+
readonly name: "_investorSubscription";
|
|
195
|
+
readonly type: "bool";
|
|
196
|
+
}];
|
|
197
|
+
readonly name: "toggleInvestorSubscription";
|
|
198
|
+
readonly outputs: readonly [];
|
|
199
|
+
readonly stateMutability: "nonpayable";
|
|
200
|
+
readonly type: "function";
|
|
201
|
+
}, {
|
|
202
|
+
readonly inputs: readonly [{
|
|
203
|
+
readonly internalType: "bool";
|
|
204
|
+
readonly name: "_twoStepTransfer";
|
|
205
|
+
readonly type: "bool";
|
|
206
|
+
}];
|
|
207
|
+
readonly name: "toggleTwoStepTransfer";
|
|
208
|
+
readonly outputs: readonly [];
|
|
209
|
+
readonly stateMutability: "nonpayable";
|
|
210
|
+
readonly type: "function";
|
|
211
|
+
}, {
|
|
212
|
+
readonly inputs: readonly [{
|
|
213
|
+
readonly internalType: "address";
|
|
214
|
+
readonly name: "_assetProvider";
|
|
215
|
+
readonly type: "address";
|
|
216
|
+
}];
|
|
217
|
+
readonly name: "updateAssetProvider";
|
|
218
|
+
readonly outputs: readonly [];
|
|
219
|
+
readonly stateMutability: "nonpayable";
|
|
220
|
+
readonly type: "function";
|
|
221
|
+
}, {
|
|
222
|
+
readonly inputs: readonly [{
|
|
223
|
+
readonly internalType: "uint16";
|
|
224
|
+
readonly name: "_chainId";
|
|
225
|
+
readonly type: "uint16";
|
|
226
|
+
}, {
|
|
227
|
+
readonly internalType: "address";
|
|
228
|
+
readonly name: "_bridge";
|
|
229
|
+
readonly type: "address";
|
|
230
|
+
}];
|
|
231
|
+
readonly name: "updateBridgeParams";
|
|
232
|
+
readonly outputs: readonly [];
|
|
233
|
+
readonly stateMutability: "nonpayable";
|
|
234
|
+
readonly type: "function";
|
|
235
|
+
}, {
|
|
236
|
+
readonly inputs: readonly [{
|
|
237
|
+
readonly internalType: "uint256";
|
|
238
|
+
readonly name: "_minSubscriptionAmount";
|
|
239
|
+
readonly type: "uint256";
|
|
240
|
+
}];
|
|
241
|
+
readonly name: "updateMinSubscriptionAmount";
|
|
242
|
+
readonly outputs: readonly [];
|
|
243
|
+
readonly stateMutability: "nonpayable";
|
|
244
|
+
readonly type: "function";
|
|
245
|
+
}, {
|
|
246
|
+
readonly inputs: readonly [{
|
|
247
|
+
readonly internalType: "address";
|
|
248
|
+
readonly name: "_navProvider";
|
|
249
|
+
readonly type: "address";
|
|
250
|
+
}];
|
|
251
|
+
readonly name: "updateNavProvider";
|
|
252
|
+
readonly outputs: readonly [];
|
|
253
|
+
readonly stateMutability: "nonpayable";
|
|
254
|
+
readonly type: "function";
|
|
255
|
+
}];
|
|
@@ -176,6 +176,260 @@ declare const protocolAbi: readonly [{
|
|
|
176
176
|
}];
|
|
177
177
|
readonly outputs: readonly [];
|
|
178
178
|
readonly stateMutability: "nonpayable";
|
|
179
|
+
}, {
|
|
180
|
+
readonly inputs: readonly [];
|
|
181
|
+
readonly name: "InsufficientERC20BalanceError";
|
|
182
|
+
readonly type: "error";
|
|
183
|
+
}, {
|
|
184
|
+
readonly inputs: readonly [];
|
|
185
|
+
readonly name: "InvalidEIP712SignatureError";
|
|
186
|
+
readonly type: "error";
|
|
187
|
+
}, {
|
|
188
|
+
readonly inputs: readonly [];
|
|
189
|
+
readonly name: "InvestorNotRegisteredError";
|
|
190
|
+
readonly type: "error";
|
|
191
|
+
}, {
|
|
192
|
+
readonly inputs: readonly [];
|
|
193
|
+
readonly name: "InvestorSubscriptionDisabledError";
|
|
194
|
+
readonly type: "error";
|
|
195
|
+
}, {
|
|
196
|
+
readonly inputs: readonly [];
|
|
197
|
+
readonly name: "MinSubscriptionAmountError";
|
|
198
|
+
readonly type: "error";
|
|
199
|
+
}, {
|
|
200
|
+
readonly inputs: readonly [];
|
|
201
|
+
readonly name: "NonPositiveAmountError";
|
|
202
|
+
readonly type: "error";
|
|
203
|
+
}, {
|
|
204
|
+
readonly inputs: readonly [];
|
|
205
|
+
readonly name: "NonZeroAddressError";
|
|
206
|
+
readonly type: "error";
|
|
207
|
+
}, {
|
|
208
|
+
readonly inputs: readonly [];
|
|
209
|
+
readonly name: "NonZeroNavRateError";
|
|
210
|
+
readonly type: "error";
|
|
211
|
+
}, {
|
|
212
|
+
readonly inputs: readonly [];
|
|
213
|
+
readonly name: "SameValueError";
|
|
214
|
+
readonly type: "error";
|
|
215
|
+
}, {
|
|
216
|
+
readonly inputs: readonly [];
|
|
217
|
+
readonly name: "SignatureDeadlineExpiredError";
|
|
218
|
+
readonly type: "error";
|
|
219
|
+
}, {
|
|
220
|
+
readonly inputs: readonly [];
|
|
221
|
+
readonly name: "SlippageControlError";
|
|
222
|
+
readonly type: "error";
|
|
223
|
+
}, {
|
|
224
|
+
readonly anonymous: false;
|
|
225
|
+
readonly inputs: readonly [{
|
|
226
|
+
readonly indexed: true;
|
|
227
|
+
readonly internalType: "address";
|
|
228
|
+
readonly name: "oldProvider";
|
|
229
|
+
readonly type: "address";
|
|
230
|
+
}, {
|
|
231
|
+
readonly indexed: true;
|
|
232
|
+
readonly internalType: "address";
|
|
233
|
+
readonly name: "newProvider";
|
|
234
|
+
readonly type: "address";
|
|
235
|
+
}];
|
|
236
|
+
readonly name: "AssetProviderUpdated";
|
|
237
|
+
readonly type: "event";
|
|
238
|
+
}, {
|
|
239
|
+
readonly anonymous: false;
|
|
240
|
+
readonly inputs: readonly [{
|
|
241
|
+
readonly indexed: false;
|
|
242
|
+
readonly internalType: "uint16";
|
|
243
|
+
readonly name: "chainId";
|
|
244
|
+
readonly type: "uint16";
|
|
245
|
+
}, {
|
|
246
|
+
readonly indexed: false;
|
|
247
|
+
readonly internalType: "address";
|
|
248
|
+
readonly name: "bridge";
|
|
249
|
+
readonly type: "address";
|
|
250
|
+
}];
|
|
251
|
+
readonly name: "BridgeParamsUpdated";
|
|
252
|
+
readonly type: "event";
|
|
253
|
+
}, {
|
|
254
|
+
readonly anonymous: false;
|
|
255
|
+
readonly inputs: readonly [{
|
|
256
|
+
readonly indexed: false;
|
|
257
|
+
readonly internalType: "bool";
|
|
258
|
+
readonly name: "newValue";
|
|
259
|
+
readonly type: "bool";
|
|
260
|
+
}];
|
|
261
|
+
readonly name: "InvestorSubscriptionUpdated";
|
|
262
|
+
readonly type: "event";
|
|
263
|
+
}, {
|
|
264
|
+
readonly anonymous: false;
|
|
265
|
+
readonly inputs: readonly [{
|
|
266
|
+
readonly indexed: false;
|
|
267
|
+
readonly internalType: "uint256";
|
|
268
|
+
readonly name: "oldValue";
|
|
269
|
+
readonly type: "uint256";
|
|
270
|
+
}, {
|
|
271
|
+
readonly indexed: false;
|
|
272
|
+
readonly internalType: "uint256";
|
|
273
|
+
readonly name: "newValue";
|
|
274
|
+
readonly type: "uint256";
|
|
275
|
+
}];
|
|
276
|
+
readonly name: "MinSubscriptionAmountUpdated";
|
|
277
|
+
readonly type: "event";
|
|
278
|
+
}, {
|
|
279
|
+
readonly anonymous: false;
|
|
280
|
+
readonly inputs: readonly [{
|
|
281
|
+
readonly indexed: true;
|
|
282
|
+
readonly internalType: "address";
|
|
283
|
+
readonly name: "oldProvider";
|
|
284
|
+
readonly type: "address";
|
|
285
|
+
}, {
|
|
286
|
+
readonly indexed: true;
|
|
287
|
+
readonly internalType: "address";
|
|
288
|
+
readonly name: "newProvider";
|
|
289
|
+
readonly type: "address";
|
|
290
|
+
}];
|
|
291
|
+
readonly name: "NavProviderUpdated";
|
|
292
|
+
readonly type: "event";
|
|
293
|
+
}, {
|
|
294
|
+
readonly anonymous: false;
|
|
295
|
+
readonly inputs: readonly [{
|
|
296
|
+
readonly indexed: true;
|
|
297
|
+
readonly internalType: "address";
|
|
298
|
+
readonly name: "from";
|
|
299
|
+
readonly type: "address";
|
|
300
|
+
}, {
|
|
301
|
+
readonly indexed: false;
|
|
302
|
+
readonly internalType: "uint256";
|
|
303
|
+
readonly name: "dsTokenValue";
|
|
304
|
+
readonly type: "uint256";
|
|
305
|
+
}, {
|
|
306
|
+
readonly indexed: false;
|
|
307
|
+
readonly internalType: "uint256";
|
|
308
|
+
readonly name: "liquidityValue";
|
|
309
|
+
readonly type: "uint256";
|
|
310
|
+
}, {
|
|
311
|
+
readonly indexed: true;
|
|
312
|
+
readonly internalType: "address";
|
|
313
|
+
readonly name: "newWalletTo";
|
|
314
|
+
readonly type: "address";
|
|
315
|
+
}, {
|
|
316
|
+
readonly indexed: false;
|
|
317
|
+
readonly internalType: "uint256";
|
|
318
|
+
readonly name: "rate";
|
|
319
|
+
readonly type: "uint256";
|
|
320
|
+
}, {
|
|
321
|
+
readonly indexed: false;
|
|
322
|
+
readonly internalType: "uint256";
|
|
323
|
+
readonly name: "fee";
|
|
324
|
+
readonly type: "uint256";
|
|
325
|
+
}, {
|
|
326
|
+
readonly indexed: true;
|
|
327
|
+
readonly internalType: "address";
|
|
328
|
+
readonly name: "liquidityToken";
|
|
329
|
+
readonly type: "address";
|
|
330
|
+
}];
|
|
331
|
+
readonly name: "Swap";
|
|
332
|
+
readonly type: "event";
|
|
333
|
+
}, {
|
|
334
|
+
readonly anonymous: false;
|
|
335
|
+
readonly inputs: readonly [{
|
|
336
|
+
readonly indexed: false;
|
|
337
|
+
readonly internalType: "bool";
|
|
338
|
+
readonly name: "newValue";
|
|
339
|
+
readonly type: "bool";
|
|
340
|
+
}];
|
|
341
|
+
readonly name: "TwoStepTransferUpdated";
|
|
342
|
+
readonly type: "event";
|
|
343
|
+
}, {
|
|
344
|
+
readonly inputs: readonly [{
|
|
345
|
+
readonly internalType: "address";
|
|
346
|
+
readonly name: "_dsToken";
|
|
347
|
+
readonly type: "address";
|
|
348
|
+
}, {
|
|
349
|
+
readonly internalType: "address";
|
|
350
|
+
readonly name: "_liquidity";
|
|
351
|
+
readonly type: "address";
|
|
352
|
+
}, {
|
|
353
|
+
readonly internalType: "address";
|
|
354
|
+
readonly name: "_navProvider";
|
|
355
|
+
readonly type: "address";
|
|
356
|
+
}, {
|
|
357
|
+
readonly internalType: "address";
|
|
358
|
+
readonly name: "_feeManager";
|
|
359
|
+
readonly type: "address";
|
|
360
|
+
}, {
|
|
361
|
+
readonly internalType: "address";
|
|
362
|
+
readonly name: "_custodianWallet";
|
|
363
|
+
readonly type: "address";
|
|
364
|
+
}];
|
|
365
|
+
readonly name: "initialize";
|
|
366
|
+
readonly outputs: readonly [];
|
|
367
|
+
readonly stateMutability: "nonpayable";
|
|
368
|
+
readonly type: "function";
|
|
369
|
+
}, {
|
|
370
|
+
readonly inputs: readonly [{
|
|
371
|
+
readonly internalType: "bool";
|
|
372
|
+
readonly name: "_investorSubscription";
|
|
373
|
+
readonly type: "bool";
|
|
374
|
+
}];
|
|
375
|
+
readonly name: "toggleInvestorSubscription";
|
|
376
|
+
readonly outputs: readonly [];
|
|
377
|
+
readonly stateMutability: "nonpayable";
|
|
378
|
+
readonly type: "function";
|
|
379
|
+
}, {
|
|
380
|
+
readonly inputs: readonly [{
|
|
381
|
+
readonly internalType: "bool";
|
|
382
|
+
readonly name: "_twoStepTransfer";
|
|
383
|
+
readonly type: "bool";
|
|
384
|
+
}];
|
|
385
|
+
readonly name: "toggleTwoStepTransfer";
|
|
386
|
+
readonly outputs: readonly [];
|
|
387
|
+
readonly stateMutability: "nonpayable";
|
|
388
|
+
readonly type: "function";
|
|
389
|
+
}, {
|
|
390
|
+
readonly inputs: readonly [{
|
|
391
|
+
readonly internalType: "address";
|
|
392
|
+
readonly name: "_assetProvider";
|
|
393
|
+
readonly type: "address";
|
|
394
|
+
}];
|
|
395
|
+
readonly name: "updateAssetProvider";
|
|
396
|
+
readonly outputs: readonly [];
|
|
397
|
+
readonly stateMutability: "nonpayable";
|
|
398
|
+
readonly type: "function";
|
|
399
|
+
}, {
|
|
400
|
+
readonly inputs: readonly [{
|
|
401
|
+
readonly internalType: "uint16";
|
|
402
|
+
readonly name: "_chainId";
|
|
403
|
+
readonly type: "uint16";
|
|
404
|
+
}, {
|
|
405
|
+
readonly internalType: "address";
|
|
406
|
+
readonly name: "_bridge";
|
|
407
|
+
readonly type: "address";
|
|
408
|
+
}];
|
|
409
|
+
readonly name: "updateBridgeParams";
|
|
410
|
+
readonly outputs: readonly [];
|
|
411
|
+
readonly stateMutability: "nonpayable";
|
|
412
|
+
readonly type: "function";
|
|
413
|
+
}, {
|
|
414
|
+
readonly inputs: readonly [{
|
|
415
|
+
readonly internalType: "uint256";
|
|
416
|
+
readonly name: "_minSubscriptionAmount";
|
|
417
|
+
readonly type: "uint256";
|
|
418
|
+
}];
|
|
419
|
+
readonly name: "updateMinSubscriptionAmount";
|
|
420
|
+
readonly outputs: readonly [];
|
|
421
|
+
readonly stateMutability: "nonpayable";
|
|
422
|
+
readonly type: "function";
|
|
423
|
+
}, {
|
|
424
|
+
readonly inputs: readonly [{
|
|
425
|
+
readonly internalType: "address";
|
|
426
|
+
readonly name: "_navProvider";
|
|
427
|
+
readonly type: "address";
|
|
428
|
+
}];
|
|
429
|
+
readonly name: "updateNavProvider";
|
|
430
|
+
readonly outputs: readonly [];
|
|
431
|
+
readonly stateMutability: "nonpayable";
|
|
432
|
+
readonly type: "function";
|
|
179
433
|
}];
|
|
180
434
|
type protocolAbi = typeof protocolAbi;
|
|
181
435
|
export declare class SecuritizeOnRampAdapterContract extends AbstractAdapterContract<abi, protocolAbi> {
|