@gearbox-protocol/sdk 14.12.0-next.31 → 14.12.0-next.33
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/dev/withdrawalAbi.js +64 -70
- package/dist/cjs/dev/withdrawalUtils.js +1 -1
- package/dist/cjs/plugins/adapters/abi/adapters/iMidasGatewayAdapterV311.js +40 -280
- package/dist/cjs/plugins/adapters/contracts/MidasGatewayAdapterContract.js +45 -44
- package/dist/cjs/preview/preview/buildDelayedPreview.js +5 -1
- package/dist/cjs/preview/preview/detectCloseOrRepay.js +2 -2
- package/dist/cjs/preview/preview/previewCloseOrRepayCreditAccount.js +17 -2
- package/dist/cjs/rewards/rewards/extra-apy.js +8 -4
- package/dist/cjs/sdk/accounts/CreditAccountsServiceV310.js +2 -0
- package/dist/esm/dev/withdrawalAbi.js +64 -70
- package/dist/esm/dev/withdrawalUtils.js +1 -1
- package/dist/esm/plugins/adapters/abi/adapters/iMidasGatewayAdapterV311.js +40 -280
- package/dist/esm/plugins/adapters/contracts/MidasGatewayAdapterContract.js +47 -45
- package/dist/esm/preview/preview/buildDelayedPreview.js +5 -1
- package/dist/esm/preview/preview/detectCloseOrRepay.js +2 -2
- package/dist/esm/preview/preview/previewCloseOrRepayCreditAccount.js +22 -3
- package/dist/esm/rewards/rewards/extra-apy.js +8 -4
- package/dist/esm/sdk/accounts/CreditAccountsServiceV310.js +2 -0
- package/dist/types/dev/withdrawalAbi.d.ts +53 -57
- package/dist/types/plugins/adapters/abi/adapters/iMidasGatewayAdapterV311.d.ts +33 -219
- package/dist/types/plugins/adapters/contracts/MidasGatewayAdapterContract.d.ts +44 -232
- package/dist/types/preview/preview/detectCloseOrRepay.d.ts +5 -3
- package/dist/types/preview/preview/types.d.ts +6 -4
- package/dist/types/rewards/rewards/extra-apy.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,34 +1,4 @@
|
|
|
1
1
|
export declare const iMidasGatewayAdapterV311Abi: readonly [{
|
|
2
|
-
readonly type: "function";
|
|
3
|
-
readonly name: "allowedInputTokens";
|
|
4
|
-
readonly inputs: readonly [];
|
|
5
|
-
readonly outputs: readonly [{
|
|
6
|
-
readonly name: "";
|
|
7
|
-
readonly type: "address[]";
|
|
8
|
-
readonly internalType: "address[]";
|
|
9
|
-
}];
|
|
10
|
-
readonly stateMutability: "view";
|
|
11
|
-
}, {
|
|
12
|
-
readonly type: "function";
|
|
13
|
-
readonly name: "allowedOutputTokens";
|
|
14
|
-
readonly inputs: readonly [];
|
|
15
|
-
readonly outputs: readonly [{
|
|
16
|
-
readonly name: "";
|
|
17
|
-
readonly type: "address[]";
|
|
18
|
-
readonly internalType: "address[]";
|
|
19
|
-
}];
|
|
20
|
-
readonly stateMutability: "view";
|
|
21
|
-
}, {
|
|
22
|
-
readonly type: "function";
|
|
23
|
-
readonly name: "allowedPhantomTokens";
|
|
24
|
-
readonly inputs: readonly [];
|
|
25
|
-
readonly outputs: readonly [{
|
|
26
|
-
readonly name: "";
|
|
27
|
-
readonly type: "address[]";
|
|
28
|
-
readonly internalType: "address[]";
|
|
29
|
-
}];
|
|
30
|
-
readonly stateMutability: "view";
|
|
31
|
-
}, {
|
|
32
2
|
readonly type: "function";
|
|
33
3
|
readonly name: "contractType";
|
|
34
4
|
readonly inputs: readonly [];
|
|
@@ -52,10 +22,6 @@ export declare const iMidasGatewayAdapterV311Abi: readonly [{
|
|
|
52
22
|
readonly type: "function";
|
|
53
23
|
readonly name: "depositInstant";
|
|
54
24
|
readonly inputs: readonly [{
|
|
55
|
-
readonly name: "tokenIn";
|
|
56
|
-
readonly type: "address";
|
|
57
|
-
readonly internalType: "address";
|
|
58
|
-
}, {
|
|
59
25
|
readonly name: "amountToken";
|
|
60
26
|
readonly type: "uint256";
|
|
61
27
|
readonly internalType: "uint256";
|
|
@@ -78,10 +44,6 @@ export declare const iMidasGatewayAdapterV311Abi: readonly [{
|
|
|
78
44
|
readonly type: "function";
|
|
79
45
|
readonly name: "depositInstantDiff";
|
|
80
46
|
readonly inputs: readonly [{
|
|
81
|
-
readonly name: "tokenIn";
|
|
82
|
-
readonly type: "address";
|
|
83
|
-
readonly internalType: "address";
|
|
84
|
-
}, {
|
|
85
47
|
readonly name: "leftoverAmount";
|
|
86
48
|
readonly type: "uint256";
|
|
87
49
|
readonly internalType: "uint256";
|
|
@@ -124,34 +86,6 @@ export declare const iMidasGatewayAdapterV311Abi: readonly [{
|
|
|
124
86
|
readonly internalType: "address";
|
|
125
87
|
}];
|
|
126
88
|
readonly stateMutability: "view";
|
|
127
|
-
}, {
|
|
128
|
-
readonly type: "function";
|
|
129
|
-
readonly name: "isInputTokenAllowed";
|
|
130
|
-
readonly inputs: readonly [{
|
|
131
|
-
readonly name: "token";
|
|
132
|
-
readonly type: "address";
|
|
133
|
-
readonly internalType: "address";
|
|
134
|
-
}];
|
|
135
|
-
readonly outputs: readonly [{
|
|
136
|
-
readonly name: "";
|
|
137
|
-
readonly type: "bool";
|
|
138
|
-
readonly internalType: "bool";
|
|
139
|
-
}];
|
|
140
|
-
readonly stateMutability: "view";
|
|
141
|
-
}, {
|
|
142
|
-
readonly type: "function";
|
|
143
|
-
readonly name: "isOutputTokenAllowed";
|
|
144
|
-
readonly inputs: readonly [{
|
|
145
|
-
readonly name: "token";
|
|
146
|
-
readonly type: "address";
|
|
147
|
-
readonly internalType: "address";
|
|
148
|
-
}];
|
|
149
|
-
readonly outputs: readonly [{
|
|
150
|
-
readonly name: "";
|
|
151
|
-
readonly type: "bool";
|
|
152
|
-
readonly internalType: "bool";
|
|
153
|
-
}];
|
|
154
|
-
readonly stateMutability: "view";
|
|
155
89
|
}, {
|
|
156
90
|
readonly type: "function";
|
|
157
91
|
readonly name: "mToken";
|
|
@@ -164,12 +98,8 @@ export declare const iMidasGatewayAdapterV311Abi: readonly [{
|
|
|
164
98
|
readonly stateMutability: "view";
|
|
165
99
|
}, {
|
|
166
100
|
readonly type: "function";
|
|
167
|
-
readonly name: "
|
|
168
|
-
readonly inputs: readonly [
|
|
169
|
-
readonly name: "outputToken";
|
|
170
|
-
readonly type: "address";
|
|
171
|
-
readonly internalType: "address";
|
|
172
|
-
}];
|
|
101
|
+
readonly name: "phantomToken";
|
|
102
|
+
readonly inputs: readonly [];
|
|
173
103
|
readonly outputs: readonly [{
|
|
174
104
|
readonly name: "";
|
|
175
105
|
readonly type: "address";
|
|
@@ -178,12 +108,8 @@ export declare const iMidasGatewayAdapterV311Abi: readonly [{
|
|
|
178
108
|
readonly stateMutability: "view";
|
|
179
109
|
}, {
|
|
180
110
|
readonly type: "function";
|
|
181
|
-
readonly name: "
|
|
182
|
-
readonly inputs: readonly [
|
|
183
|
-
readonly name: "phantomToken";
|
|
184
|
-
readonly type: "address";
|
|
185
|
-
readonly internalType: "address";
|
|
186
|
-
}];
|
|
111
|
+
readonly name: "quoteToken";
|
|
112
|
+
readonly inputs: readonly [];
|
|
187
113
|
readonly outputs: readonly [{
|
|
188
114
|
readonly name: "";
|
|
189
115
|
readonly type: "address";
|
|
@@ -194,10 +120,6 @@ export declare const iMidasGatewayAdapterV311Abi: readonly [{
|
|
|
194
120
|
readonly type: "function";
|
|
195
121
|
readonly name: "redeemInstant";
|
|
196
122
|
readonly inputs: readonly [{
|
|
197
|
-
readonly name: "tokenOut";
|
|
198
|
-
readonly type: "address";
|
|
199
|
-
readonly internalType: "address";
|
|
200
|
-
}, {
|
|
201
123
|
readonly name: "amountMTokenIn";
|
|
202
124
|
readonly type: "uint256";
|
|
203
125
|
readonly internalType: "uint256";
|
|
@@ -216,10 +138,6 @@ export declare const iMidasGatewayAdapterV311Abi: readonly [{
|
|
|
216
138
|
readonly type: "function";
|
|
217
139
|
readonly name: "redeemInstantDiff";
|
|
218
140
|
readonly inputs: readonly [{
|
|
219
|
-
readonly name: "tokenOut";
|
|
220
|
-
readonly type: "address";
|
|
221
|
-
readonly internalType: "address";
|
|
222
|
-
}, {
|
|
223
141
|
readonly name: "leftoverAmount";
|
|
224
142
|
readonly type: "uint256";
|
|
225
143
|
readonly internalType: "uint256";
|
|
@@ -238,17 +156,9 @@ export declare const iMidasGatewayAdapterV311Abi: readonly [{
|
|
|
238
156
|
readonly type: "function";
|
|
239
157
|
readonly name: "redeemRequest";
|
|
240
158
|
readonly inputs: readonly [{
|
|
241
|
-
readonly name: "tokenOut";
|
|
242
|
-
readonly type: "address";
|
|
243
|
-
readonly internalType: "address";
|
|
244
|
-
}, {
|
|
245
159
|
readonly name: "amountMTokenIn";
|
|
246
160
|
readonly type: "uint256";
|
|
247
161
|
readonly internalType: "uint256";
|
|
248
|
-
}, {
|
|
249
|
-
readonly name: "extraData";
|
|
250
|
-
readonly type: "bytes";
|
|
251
|
-
readonly internalType: "bytes";
|
|
252
162
|
}];
|
|
253
163
|
readonly outputs: readonly [{
|
|
254
164
|
readonly name: "";
|
|
@@ -260,13 +170,13 @@ export declare const iMidasGatewayAdapterV311Abi: readonly [{
|
|
|
260
170
|
readonly type: "function";
|
|
261
171
|
readonly name: "redeemRequest";
|
|
262
172
|
readonly inputs: readonly [{
|
|
263
|
-
readonly name: "tokenOut";
|
|
264
|
-
readonly type: "address";
|
|
265
|
-
readonly internalType: "address";
|
|
266
|
-
}, {
|
|
267
173
|
readonly name: "amountMTokenIn";
|
|
268
174
|
readonly type: "uint256";
|
|
269
175
|
readonly internalType: "uint256";
|
|
176
|
+
}, {
|
|
177
|
+
readonly name: "extraData";
|
|
178
|
+
readonly type: "bytes";
|
|
179
|
+
readonly internalType: "bytes";
|
|
270
180
|
}];
|
|
271
181
|
readonly outputs: readonly [{
|
|
272
182
|
readonly name: "";
|
|
@@ -278,10 +188,6 @@ export declare const iMidasGatewayAdapterV311Abi: readonly [{
|
|
|
278
188
|
readonly type: "function";
|
|
279
189
|
readonly name: "redeemRequestDiff";
|
|
280
190
|
readonly inputs: readonly [{
|
|
281
|
-
readonly name: "tokenOut";
|
|
282
|
-
readonly type: "address";
|
|
283
|
-
readonly internalType: "address";
|
|
284
|
-
}, {
|
|
285
191
|
readonly name: "leftoverAmount";
|
|
286
192
|
readonly type: "uint256";
|
|
287
193
|
readonly internalType: "uint256";
|
|
@@ -296,10 +202,6 @@ export declare const iMidasGatewayAdapterV311Abi: readonly [{
|
|
|
296
202
|
readonly type: "function";
|
|
297
203
|
readonly name: "redeemRequestDiff";
|
|
298
204
|
readonly inputs: readonly [{
|
|
299
|
-
readonly name: "tokenOut";
|
|
300
|
-
readonly type: "address";
|
|
301
|
-
readonly internalType: "address";
|
|
302
|
-
}, {
|
|
303
205
|
readonly name: "leftoverAmount";
|
|
304
206
|
readonly type: "uint256";
|
|
305
207
|
readonly internalType: "uint256";
|
|
@@ -334,43 +236,6 @@ export declare const iMidasGatewayAdapterV311Abi: readonly [{
|
|
|
334
236
|
readonly internalType: "bytes";
|
|
335
237
|
}];
|
|
336
238
|
readonly stateMutability: "view";
|
|
337
|
-
}, {
|
|
338
|
-
readonly type: "function";
|
|
339
|
-
readonly name: "setInputTokenAllowedStatusBatch";
|
|
340
|
-
readonly inputs: readonly [{
|
|
341
|
-
readonly name: "tokens";
|
|
342
|
-
readonly type: "address[]";
|
|
343
|
-
readonly internalType: "address[]";
|
|
344
|
-
}, {
|
|
345
|
-
readonly name: "allowed";
|
|
346
|
-
readonly type: "bool[]";
|
|
347
|
-
readonly internalType: "bool[]";
|
|
348
|
-
}];
|
|
349
|
-
readonly outputs: readonly [];
|
|
350
|
-
readonly stateMutability: "nonpayable";
|
|
351
|
-
}, {
|
|
352
|
-
readonly type: "function";
|
|
353
|
-
readonly name: "setOutputTokenAllowedStatusBatch";
|
|
354
|
-
readonly inputs: readonly [{
|
|
355
|
-
readonly name: "configs";
|
|
356
|
-
readonly type: "tuple[]";
|
|
357
|
-
readonly internalType: "struct IMidasGatewayAdapter.MidasAllowedTokenStatus[]";
|
|
358
|
-
readonly components: readonly [{
|
|
359
|
-
readonly name: "token";
|
|
360
|
-
readonly type: "address";
|
|
361
|
-
readonly internalType: "address";
|
|
362
|
-
}, {
|
|
363
|
-
readonly name: "phantomToken";
|
|
364
|
-
readonly type: "address";
|
|
365
|
-
readonly internalType: "address";
|
|
366
|
-
}, {
|
|
367
|
-
readonly name: "allowed";
|
|
368
|
-
readonly type: "bool";
|
|
369
|
-
readonly internalType: "bool";
|
|
370
|
-
}];
|
|
371
|
-
}];
|
|
372
|
-
readonly outputs: readonly [];
|
|
373
|
-
readonly stateMutability: "nonpayable";
|
|
374
239
|
}, {
|
|
375
240
|
readonly type: "function";
|
|
376
241
|
readonly name: "targetContract";
|
|
@@ -413,10 +278,6 @@ export declare const iMidasGatewayAdapterV311Abi: readonly [{
|
|
|
413
278
|
readonly type: "function";
|
|
414
279
|
readonly name: "withdraw";
|
|
415
280
|
readonly inputs: readonly [{
|
|
416
|
-
readonly name: "tokenOut";
|
|
417
|
-
readonly type: "address";
|
|
418
|
-
readonly internalType: "address";
|
|
419
|
-
}, {
|
|
420
281
|
readonly name: "amount";
|
|
421
282
|
readonly type: "uint256";
|
|
422
283
|
readonly internalType: "uint256";
|
|
@@ -434,10 +295,6 @@ export declare const iMidasGatewayAdapterV311Abi: readonly [{
|
|
|
434
295
|
readonly name: "redeemer";
|
|
435
296
|
readonly type: "address";
|
|
436
297
|
readonly internalType: "address";
|
|
437
|
-
}, {
|
|
438
|
-
readonly name: "tokenOut";
|
|
439
|
-
readonly type: "address";
|
|
440
|
-
readonly internalType: "address";
|
|
441
298
|
}, {
|
|
442
299
|
readonly name: "amount";
|
|
443
300
|
readonly type: "uint256";
|
|
@@ -467,56 +324,13 @@ export declare const iMidasGatewayAdapterV311Abi: readonly [{
|
|
|
467
324
|
readonly internalType: "bool";
|
|
468
325
|
}];
|
|
469
326
|
readonly stateMutability: "nonpayable";
|
|
470
|
-
}, {
|
|
471
|
-
readonly type: "event";
|
|
472
|
-
readonly name: "SetInputTokenAllowedStatus";
|
|
473
|
-
readonly inputs: readonly [{
|
|
474
|
-
readonly name: "token";
|
|
475
|
-
readonly type: "address";
|
|
476
|
-
readonly indexed: true;
|
|
477
|
-
readonly internalType: "address";
|
|
478
|
-
}, {
|
|
479
|
-
readonly name: "allowed";
|
|
480
|
-
readonly type: "bool";
|
|
481
|
-
readonly indexed: false;
|
|
482
|
-
readonly internalType: "bool";
|
|
483
|
-
}];
|
|
484
|
-
readonly anonymous: false;
|
|
485
|
-
}, {
|
|
486
|
-
readonly type: "event";
|
|
487
|
-
readonly name: "SetOutputTokenAllowedStatus";
|
|
488
|
-
readonly inputs: readonly [{
|
|
489
|
-
readonly name: "token";
|
|
490
|
-
readonly type: "address";
|
|
491
|
-
readonly indexed: true;
|
|
492
|
-
readonly internalType: "address";
|
|
493
|
-
}, {
|
|
494
|
-
readonly name: "phantomToken";
|
|
495
|
-
readonly type: "address";
|
|
496
|
-
readonly indexed: true;
|
|
497
|
-
readonly internalType: "address";
|
|
498
|
-
}, {
|
|
499
|
-
readonly name: "allowed";
|
|
500
|
-
readonly type: "bool";
|
|
501
|
-
readonly indexed: false;
|
|
502
|
-
readonly internalType: "bool";
|
|
503
|
-
}];
|
|
504
|
-
readonly anonymous: false;
|
|
505
|
-
}, {
|
|
506
|
-
readonly type: "error";
|
|
507
|
-
readonly name: "IncorrectArrayLengthException";
|
|
508
|
-
readonly inputs: readonly [];
|
|
509
327
|
}, {
|
|
510
328
|
readonly type: "error";
|
|
511
329
|
readonly name: "IncorrectStakedPhantomTokenException";
|
|
512
330
|
readonly inputs: readonly [];
|
|
513
331
|
}, {
|
|
514
332
|
readonly type: "error";
|
|
515
|
-
readonly name: "
|
|
516
|
-
readonly inputs: readonly [];
|
|
517
|
-
}, {
|
|
518
|
-
readonly type: "error";
|
|
519
|
-
readonly name: "TokenNotAllowedException";
|
|
333
|
+
readonly name: "PhantomTokenNotSetException";
|
|
520
334
|
readonly inputs: readonly [];
|
|
521
335
|
}];
|
|
522
336
|
export declare const iMidasGatewayV311Abi: readonly [{
|
|
@@ -543,10 +357,6 @@ export declare const iMidasGatewayV311Abi: readonly [{
|
|
|
543
357
|
readonly type: "function";
|
|
544
358
|
readonly name: "depositInstant";
|
|
545
359
|
readonly inputs: readonly [{
|
|
546
|
-
readonly name: "tokenIn";
|
|
547
|
-
readonly type: "address";
|
|
548
|
-
readonly internalType: "address";
|
|
549
|
-
}, {
|
|
550
360
|
readonly name: "amountToken";
|
|
551
361
|
readonly type: "uint256";
|
|
552
362
|
readonly internalType: "uint256";
|
|
@@ -578,10 +388,6 @@ export declare const iMidasGatewayV311Abi: readonly [{
|
|
|
578
388
|
readonly name: "account";
|
|
579
389
|
readonly type: "address";
|
|
580
390
|
readonly internalType: "address";
|
|
581
|
-
}, {
|
|
582
|
-
readonly name: "tokenOut";
|
|
583
|
-
readonly type: "address";
|
|
584
|
-
readonly internalType: "address";
|
|
585
391
|
}];
|
|
586
392
|
readonly outputs: readonly [{
|
|
587
393
|
readonly name: "pendingAmount";
|
|
@@ -609,12 +415,28 @@ export declare const iMidasGatewayV311Abi: readonly [{
|
|
|
609
415
|
readonly stateMutability: "view";
|
|
610
416
|
}, {
|
|
611
417
|
readonly type: "function";
|
|
612
|
-
readonly name: "
|
|
613
|
-
readonly inputs: readonly [
|
|
614
|
-
|
|
418
|
+
readonly name: "phantomToken";
|
|
419
|
+
readonly inputs: readonly [];
|
|
420
|
+
readonly outputs: readonly [{
|
|
421
|
+
readonly name: "";
|
|
615
422
|
readonly type: "address";
|
|
616
423
|
readonly internalType: "address";
|
|
617
|
-
}
|
|
424
|
+
}];
|
|
425
|
+
readonly stateMutability: "view";
|
|
426
|
+
}, {
|
|
427
|
+
readonly type: "function";
|
|
428
|
+
readonly name: "quoteToken";
|
|
429
|
+
readonly inputs: readonly [];
|
|
430
|
+
readonly outputs: readonly [{
|
|
431
|
+
readonly name: "";
|
|
432
|
+
readonly type: "address";
|
|
433
|
+
readonly internalType: "address";
|
|
434
|
+
}];
|
|
435
|
+
readonly stateMutability: "view";
|
|
436
|
+
}, {
|
|
437
|
+
readonly type: "function";
|
|
438
|
+
readonly name: "redeemInstant";
|
|
439
|
+
readonly inputs: readonly [{
|
|
618
440
|
readonly name: "amountMTokenIn";
|
|
619
441
|
readonly type: "uint256";
|
|
620
442
|
readonly internalType: "uint256";
|
|
@@ -639,10 +461,6 @@ export declare const iMidasGatewayV311Abi: readonly [{
|
|
|
639
461
|
readonly type: "function";
|
|
640
462
|
readonly name: "requestRedeem";
|
|
641
463
|
readonly inputs: readonly [{
|
|
642
|
-
readonly name: "tokenOut";
|
|
643
|
-
readonly type: "address";
|
|
644
|
-
readonly internalType: "address";
|
|
645
|
-
}, {
|
|
646
464
|
readonly name: "amountMTokenIn";
|
|
647
465
|
readonly type: "uint256";
|
|
648
466
|
readonly internalType: "uint256";
|
|
@@ -691,10 +509,6 @@ export declare const iMidasGatewayV311Abi: readonly [{
|
|
|
691
509
|
readonly type: "function";
|
|
692
510
|
readonly name: "withdraw";
|
|
693
511
|
readonly inputs: readonly [{
|
|
694
|
-
readonly name: "tokenOut";
|
|
695
|
-
readonly type: "address";
|
|
696
|
-
readonly internalType: "address";
|
|
697
|
-
}, {
|
|
698
512
|
readonly name: "amount";
|
|
699
513
|
readonly type: "uint256";
|
|
700
514
|
readonly internalType: "uint256";
|
|
@@ -708,10 +522,6 @@ export declare const iMidasGatewayV311Abi: readonly [{
|
|
|
708
522
|
readonly name: "redeemer";
|
|
709
523
|
readonly type: "address";
|
|
710
524
|
readonly internalType: "address";
|
|
711
|
-
}, {
|
|
712
|
-
readonly name: "tokenOut";
|
|
713
|
-
readonly type: "address";
|
|
714
|
-
readonly internalType: "address";
|
|
715
525
|
}, {
|
|
716
526
|
readonly name: "amount";
|
|
717
527
|
readonly type: "uint256";
|
|
@@ -727,6 +537,10 @@ export declare const iMidasGatewayV311Abi: readonly [{
|
|
|
727
537
|
readonly type: "error";
|
|
728
538
|
readonly name: "CreditAccountNotEligibleException";
|
|
729
539
|
readonly inputs: readonly [];
|
|
540
|
+
}, {
|
|
541
|
+
readonly type: "error";
|
|
542
|
+
readonly name: "IncompatibleAccessControlsException";
|
|
543
|
+
readonly inputs: readonly [];
|
|
730
544
|
}, {
|
|
731
545
|
readonly type: "error";
|
|
732
546
|
readonly name: "IncompatibleIssuanceAndRedemptionVaultsException";
|