@augustdigital/sdk 4.7.3-alpha → 4.7.4

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.
Files changed (112) hide show
  1. package/lib/__tests__/adapter.e2e.test.d.ts +1 -0
  2. package/lib/__tests__/adapter.e2e.test.js +94 -0
  3. package/lib/__tests__/adapter.e2e.test.js.map +1 -0
  4. package/lib/adapters/evm/index.d.ts +1 -1
  5. package/lib/adapters/evm/index.js +2 -2
  6. package/lib/adapters/evm/index.js.map +1 -1
  7. package/lib/adapters/solana/index.d.ts +7 -39
  8. package/lib/adapters/solana/types.d.ts +12 -0
  9. package/lib/adapters/solana/utils.d.ts +4 -20
  10. package/lib/adapters/solana/utils.js +25 -2
  11. package/lib/adapters/solana/utils.js.map +1 -1
  12. package/lib/core/auth/verify.js +2 -2
  13. package/lib/core/auth/verify.js.map +1 -1
  14. package/lib/core/base.class.d.ts +1 -0
  15. package/lib/core/base.class.js.map +1 -1
  16. package/lib/core/constants/adapters.d.ts +88 -0
  17. package/lib/core/constants/adapters.js +160 -0
  18. package/lib/core/constants/adapters.js.map +1 -0
  19. package/lib/core/constants/core.d.ts +71 -0
  20. package/lib/core/constants/core.js +75 -0
  21. package/lib/core/constants/core.js.map +1 -0
  22. package/lib/core/constants/vaults.d.ts +19 -0
  23. package/lib/core/constants/vaults.js +163 -0
  24. package/lib/core/constants/vaults.js.map +1 -0
  25. package/lib/core/constants/web3.d.ts +30 -0
  26. package/lib/core/constants/web3.js +112 -0
  27. package/lib/core/constants/web3.js.map +1 -0
  28. package/lib/core/constants.d.ts +88 -0
  29. package/lib/core/constants.js +148 -0
  30. package/lib/core/constants.js.map +1 -0
  31. package/lib/core/constants.vaults.d.ts +1 -1
  32. package/lib/core/constants.vaults.js +0 -8
  33. package/lib/core/constants.vaults.js.map +1 -1
  34. package/lib/core/constants.web3.js +0 -12
  35. package/lib/core/constants.web3.js.map +1 -1
  36. package/lib/core/core.helpers.d.ts +23 -0
  37. package/lib/core/core.helpers.js +210 -0
  38. package/lib/core/core.helpers.js.map +1 -0
  39. package/lib/core/fetcher.d.ts +3 -1
  40. package/lib/core/fetcher.js +44 -29
  41. package/lib/core/fetcher.js.map +1 -1
  42. package/lib/core/helpers/adapters.d.ts +4 -0
  43. package/lib/core/helpers/adapters.js +28 -0
  44. package/lib/core/helpers/adapters.js.map +1 -0
  45. package/lib/core/helpers/core.d.ts +23 -0
  46. package/lib/core/helpers/core.js +210 -0
  47. package/lib/core/helpers/core.js.map +1 -0
  48. package/lib/core/helpers/signer.d.ts +5 -0
  49. package/lib/core/helpers/signer.js +54 -0
  50. package/lib/core/helpers/signer.js.map +1 -0
  51. package/lib/core/helpers/vaults.d.ts +16 -0
  52. package/lib/core/helpers/vaults.js +145 -0
  53. package/lib/core/helpers/vaults.js.map +1 -0
  54. package/lib/core/helpers/web3.d.ts +29 -0
  55. package/lib/core/helpers/web3.js +391 -0
  56. package/lib/core/helpers/web3.js.map +1 -0
  57. package/lib/core/helpers.web3.d.ts +2 -2
  58. package/lib/core/helpers.web3.js +20 -36
  59. package/lib/core/helpers.web3.js.map +1 -1
  60. package/lib/core/index.d.ts +9 -9
  61. package/lib/core/index.js +9 -9
  62. package/lib/core/logger/slack.js +3 -3
  63. package/lib/core/logger/slack.js.map +1 -1
  64. package/lib/core/read.actions.d.ts +3 -0
  65. package/lib/core/read.actions.js +39 -0
  66. package/lib/core/read.actions.js.map +1 -0
  67. package/lib/core/vault.utils.d.ts +4 -0
  68. package/lib/core/vault.utils.js +35 -0
  69. package/lib/core/vault.utils.js.map +1 -0
  70. package/lib/core/web3.helpers.d.ts +29 -0
  71. package/lib/core/web3.helpers.js +365 -0
  72. package/lib/core/web3.helpers.js.map +1 -0
  73. package/lib/core/write.actions.d.ts +9 -0
  74. package/lib/core/write.actions.js +51 -0
  75. package/lib/core/write.actions.js.map +1 -0
  76. package/lib/index.js +2 -2
  77. package/lib/index.js.map +1 -1
  78. package/lib/modules/vaults/adapter.helpers.js +4 -4
  79. package/lib/modules/vaults/adapter.helpers.js.map +1 -1
  80. package/lib/modules/vaults/constants.d.ts +63 -0
  81. package/lib/modules/vaults/constants.js +186 -0
  82. package/lib/modules/vaults/constants.js.map +1 -0
  83. package/lib/modules/vaults/getters.js +33 -7
  84. package/lib/modules/vaults/getters.js.map +1 -1
  85. package/lib/modules/vaults/main.js +2 -5
  86. package/lib/modules/vaults/main.js.map +1 -1
  87. package/lib/modules/vaults/utils.js +6 -6
  88. package/lib/modules/vaults/utils.js.map +1 -1
  89. package/lib/modules/vaults/vault.actions.d.ts +10 -0
  90. package/lib/modules/vaults/vault.actions.js +95 -0
  91. package/lib/modules/vaults/vault.actions.js.map +1 -0
  92. package/lib/services/debank/utils.js +4 -4
  93. package/lib/services/debank/utils.js.map +1 -1
  94. package/lib/services/octavfi/fetcher.d.ts +2 -0
  95. package/lib/services/octavfi/fetcher.js +73 -0
  96. package/lib/services/octavfi/fetcher.js.map +1 -0
  97. package/lib/services/octavfi/index.d.ts +3 -0
  98. package/lib/services/octavfi/index.js +20 -0
  99. package/lib/services/octavfi/index.js.map +1 -0
  100. package/lib/services/octavfi/types.d.ts +34 -0
  101. package/lib/services/octavfi/types.js +3 -0
  102. package/lib/services/octavfi/types.js.map +1 -0
  103. package/lib/services/octavfi/utils.d.ts +3 -0
  104. package/lib/services/octavfi/utils.js +178 -0
  105. package/lib/services/octavfi/utils.js.map +1 -0
  106. package/package.json +12 -12
  107. package/lib/abis/TokenizedVaultV2WithDepositWithPermit.d.ts +0 -78
  108. package/lib/abis/TokenizedVaultV2WithDepositWithPermit.js +0 -1878
  109. package/lib/abis/TokenizedVaultV2WithDepositWithPermit.js.map +0 -1
  110. package/lib/verify.d.ts +0 -2
  111. package/lib/verify.js +0 -33
  112. package/lib/verify.js.map +0 -1
@@ -1,1878 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TokenizedVaultV2WithDepositWithPermit = void 0;
4
- exports.TokenizedVaultV2WithDepositWithPermit = [
5
- {
6
- type: 'constructor',
7
- inputs: [],
8
- stateMutability: 'nonpayable',
9
- },
10
- {
11
- type: 'function',
12
- name: 'acceptOwnership',
13
- inputs: [],
14
- outputs: [],
15
- stateMutability: 'nonpayable',
16
- },
17
- {
18
- type: 'function',
19
- name: 'asset',
20
- inputs: [],
21
- outputs: [
22
- {
23
- name: '',
24
- type: 'address',
25
- internalType: 'address',
26
- },
27
- ],
28
- stateMutability: 'view',
29
- },
30
- {
31
- type: 'function',
32
- name: 'assetsUpdatedOn',
33
- inputs: [],
34
- outputs: [
35
- {
36
- name: '',
37
- type: 'uint256',
38
- internalType: 'uint256',
39
- },
40
- ],
41
- stateMutability: 'view',
42
- },
43
- {
44
- type: 'function',
45
- name: 'assetsWhitelistAddress',
46
- inputs: [],
47
- outputs: [
48
- {
49
- name: '',
50
- type: 'address',
51
- internalType: 'address',
52
- },
53
- ],
54
- stateMutability: 'view',
55
- },
56
- {
57
- type: 'function',
58
- name: 'chargeManagementFee',
59
- inputs: [],
60
- outputs: [],
61
- stateMutability: 'nonpayable',
62
- },
63
- {
64
- type: 'function',
65
- name: 'chargePerformanceFees',
66
- inputs: [],
67
- outputs: [],
68
- stateMutability: 'nonpayable',
69
- },
70
- {
71
- type: 'function',
72
- name: 'claim',
73
- inputs: [
74
- {
75
- name: 'year',
76
- type: 'uint256',
77
- internalType: 'uint256',
78
- },
79
- {
80
- name: 'month',
81
- type: 'uint256',
82
- internalType: 'uint256',
83
- },
84
- {
85
- name: 'day',
86
- type: 'uint256',
87
- internalType: 'uint256',
88
- },
89
- {
90
- name: 'receiverAddr',
91
- type: 'address',
92
- internalType: 'address',
93
- },
94
- ],
95
- outputs: [
96
- {
97
- name: '',
98
- type: 'uint256',
99
- internalType: 'uint256',
100
- },
101
- {
102
- name: '',
103
- type: 'uint256',
104
- internalType: 'uint256',
105
- },
106
- ],
107
- stateMutability: 'nonpayable',
108
- },
109
- {
110
- type: 'function',
111
- name: 'collectFees',
112
- inputs: [],
113
- outputs: [],
114
- stateMutability: 'nonpayable',
115
- },
116
- {
117
- type: 'function',
118
- name: 'configure',
119
- inputs: [
120
- {
121
- name: 'newConfig',
122
- type: 'tuple',
123
- internalType: 'struct ITokenizedVault.ConfigInfo',
124
- components: [
125
- {
126
- name: 'maxDepositAmount',
127
- type: 'uint256',
128
- internalType: 'uint256',
129
- },
130
- {
131
- name: 'maxWithdrawalAmount',
132
- type: 'uint256',
133
- internalType: 'uint256',
134
- },
135
- {
136
- name: 'instantRedemptionFee',
137
- type: 'uint256',
138
- internalType: 'uint256',
139
- },
140
- {
141
- name: 'lagDuration',
142
- type: 'uint256',
143
- internalType: 'uint256',
144
- },
145
- {
146
- name: 'withdrawalFee',
147
- type: 'uint256',
148
- internalType: 'uint256',
149
- },
150
- {
151
- name: 'watermarkTimeWindow',
152
- type: 'uint256',
153
- internalType: 'uint256',
154
- },
155
- {
156
- name: 'maxChangePercent',
157
- type: 'uint256',
158
- internalType: 'uint256',
159
- },
160
- {
161
- name: 'managementFeePercent',
162
- type: 'uint256',
163
- internalType: 'uint256',
164
- },
165
- {
166
- name: 'performanceFeeRate',
167
- type: 'uint256',
168
- internalType: 'uint256',
169
- },
170
- {
171
- name: 'sendersWhitelistAddress',
172
- type: 'address',
173
- internalType: 'address',
174
- },
175
- {
176
- name: 'operatorAddress',
177
- type: 'address',
178
- internalType: 'address',
179
- },
180
- {
181
- name: 'scheduledCallerAddress',
182
- type: 'address',
183
- internalType: 'address',
184
- },
185
- {
186
- name: 'lpTokenAddress',
187
- type: 'address',
188
- internalType: 'address',
189
- },
190
- {
191
- name: 'referenceAsset',
192
- type: 'address',
193
- internalType: 'address',
194
- },
195
- {
196
- name: 'futureOwnerAddress',
197
- type: 'address',
198
- internalType: 'address',
199
- },
200
- {
201
- name: 'assetsWhitelistAddress',
202
- type: 'address',
203
- internalType: 'address',
204
- },
205
- ],
206
- },
207
- ],
208
- outputs: [],
209
- stateMutability: 'nonpayable',
210
- },
211
- {
212
- type: 'function',
213
- name: 'deposit',
214
- inputs: [
215
- {
216
- name: 'assetIn',
217
- type: 'address',
218
- internalType: 'address',
219
- },
220
- {
221
- name: 'amountIn',
222
- type: 'uint256',
223
- internalType: 'uint256',
224
- },
225
- {
226
- name: 'receiverAddr',
227
- type: 'address',
228
- internalType: 'address',
229
- },
230
- ],
231
- outputs: [
232
- {
233
- name: 'shares',
234
- type: 'uint256',
235
- internalType: 'uint256',
236
- },
237
- ],
238
- stateMutability: 'nonpayable',
239
- },
240
- {
241
- type: 'function',
242
- name: 'depositCap',
243
- inputs: [],
244
- outputs: [
245
- {
246
- name: '',
247
- type: 'uint256',
248
- internalType: 'uint256',
249
- },
250
- ],
251
- stateMutability: 'view',
252
- },
253
- {
254
- type: 'function',
255
- name: 'depositToSubaccount',
256
- inputs: [
257
- {
258
- name: 'inputAssetAddr',
259
- type: 'address',
260
- internalType: 'address',
261
- },
262
- {
263
- name: 'depositAmount',
264
- type: 'uint256',
265
- internalType: 'uint256',
266
- },
267
- {
268
- name: 'subAccountAddr',
269
- type: 'address',
270
- internalType: 'address',
271
- },
272
- ],
273
- outputs: [],
274
- stateMutability: 'nonpayable',
275
- },
276
- {
277
- type: 'function',
278
- name: 'depositWithPermit',
279
- inputs: [
280
- {
281
- name: 'assetIn',
282
- type: 'address',
283
- internalType: 'address',
284
- },
285
- {
286
- name: 'amountIn',
287
- type: 'uint256',
288
- internalType: 'uint256',
289
- },
290
- {
291
- name: 'receiverAddr',
292
- type: 'address',
293
- internalType: 'address',
294
- },
295
- {
296
- name: 'deadline',
297
- type: 'uint256',
298
- internalType: 'uint256',
299
- },
300
- {
301
- name: 'r',
302
- type: 'bytes32',
303
- internalType: 'bytes32',
304
- },
305
- {
306
- name: 's',
307
- type: 'bytes32',
308
- internalType: 'bytes32',
309
- },
310
- {
311
- name: 'v',
312
- type: 'uint8',
313
- internalType: 'uint8',
314
- },
315
- ],
316
- outputs: [
317
- {
318
- name: 'shares',
319
- type: 'uint256',
320
- internalType: 'uint256',
321
- },
322
- ],
323
- stateMutability: 'nonpayable',
324
- },
325
- {
326
- type: 'function',
327
- name: 'depositsPaused',
328
- inputs: [],
329
- outputs: [
330
- {
331
- name: '',
332
- type: 'bool',
333
- internalType: 'bool',
334
- },
335
- ],
336
- stateMutability: 'view',
337
- },
338
- {
339
- type: 'function',
340
- name: 'disableSubAccount',
341
- inputs: [
342
- {
343
- name: 'addr',
344
- type: 'address',
345
- internalType: 'address',
346
- },
347
- ],
348
- outputs: [],
349
- stateMutability: 'nonpayable',
350
- },
351
- {
352
- type: 'function',
353
- name: 'emergencyWithdraw',
354
- inputs: [
355
- {
356
- name: 'receiverAddr',
357
- type: 'address',
358
- internalType: 'address',
359
- },
360
- ],
361
- outputs: [],
362
- stateMutability: 'nonpayable',
363
- },
364
- {
365
- type: 'function',
366
- name: 'enableSubAccount',
367
- inputs: [
368
- {
369
- name: 'addr',
370
- type: 'address',
371
- internalType: 'address',
372
- },
373
- {
374
- name: 'accountType',
375
- type: 'uint8',
376
- internalType: 'uint8',
377
- },
378
- ],
379
- outputs: [],
380
- stateMutability: 'nonpayable',
381
- },
382
- {
383
- type: 'function',
384
- name: 'externalAssets',
385
- inputs: [],
386
- outputs: [
387
- {
388
- name: '',
389
- type: 'uint256',
390
- internalType: 'uint256',
391
- },
392
- ],
393
- stateMutability: 'view',
394
- },
395
- {
396
- type: 'function',
397
- name: 'feeCollectors',
398
- inputs: [
399
- {
400
- name: '',
401
- type: 'uint256',
402
- internalType: 'uint256',
403
- },
404
- ],
405
- outputs: [
406
- {
407
- name: 'collectorAddress',
408
- type: 'address',
409
- internalType: 'address',
410
- },
411
- {
412
- name: 'percentage',
413
- type: 'uint256',
414
- internalType: 'uint256',
415
- },
416
- ],
417
- stateMutability: 'view',
418
- },
419
- {
420
- type: 'function',
421
- name: 'feesTimestamp',
422
- inputs: [],
423
- outputs: [
424
- {
425
- name: '',
426
- type: 'uint256',
427
- internalType: 'uint256',
428
- },
429
- ],
430
- stateMutability: 'view',
431
- },
432
- {
433
- type: 'function',
434
- name: 'getBurnableAmountByReceiver',
435
- inputs: [
436
- {
437
- name: 'year',
438
- type: 'uint256',
439
- internalType: 'uint256',
440
- },
441
- {
442
- name: 'month',
443
- type: 'uint256',
444
- internalType: 'uint256',
445
- },
446
- {
447
- name: 'day',
448
- type: 'uint256',
449
- internalType: 'uint256',
450
- },
451
- {
452
- name: 'receiverAddr',
453
- type: 'address',
454
- internalType: 'address',
455
- },
456
- ],
457
- outputs: [
458
- {
459
- name: '',
460
- type: 'uint256',
461
- internalType: 'uint256',
462
- },
463
- ],
464
- stateMutability: 'view',
465
- },
466
- {
467
- type: 'function',
468
- name: 'getChangePercentage',
469
- inputs: [
470
- {
471
- name: 'externalAssetsAmount',
472
- type: 'uint256',
473
- internalType: 'uint256',
474
- },
475
- ],
476
- outputs: [
477
- {
478
- name: '',
479
- type: 'uint256',
480
- internalType: 'uint256',
481
- },
482
- ],
483
- stateMutability: 'view',
484
- },
485
- {
486
- type: 'function',
487
- name: 'getFeeCollectors',
488
- inputs: [],
489
- outputs: [
490
- {
491
- name: '',
492
- type: 'tuple[]',
493
- internalType: 'struct IFeeCollectorsAware.CollectorDefinition[]',
494
- components: [
495
- {
496
- name: 'collectorAddress',
497
- type: 'address',
498
- internalType: 'address',
499
- },
500
- {
501
- name: 'percentage',
502
- type: 'uint256',
503
- internalType: 'uint256',
504
- },
505
- ],
506
- },
507
- ],
508
- stateMutability: 'view',
509
- },
510
- {
511
- type: 'function',
512
- name: 'getMaxAllowedChange',
513
- inputs: [],
514
- outputs: [
515
- {
516
- name: '',
517
- type: 'uint256',
518
- internalType: 'uint256',
519
- },
520
- ],
521
- stateMutability: 'view',
522
- },
523
- {
524
- type: 'function',
525
- name: 'getPerformanceFeeRecipients',
526
- inputs: [],
527
- outputs: [
528
- {
529
- name: '',
530
- type: 'tuple[]',
531
- internalType: 'struct IFeeCollectorsAware.CollectorDefinition[]',
532
- components: [
533
- {
534
- name: 'collectorAddress',
535
- type: 'address',
536
- internalType: 'address',
537
- },
538
- {
539
- name: 'percentage',
540
- type: 'uint256',
541
- internalType: 'uint256',
542
- },
543
- ],
544
- },
545
- ],
546
- stateMutability: 'view',
547
- },
548
- {
549
- type: 'function',
550
- name: 'getRequirementByDate',
551
- inputs: [
552
- {
553
- name: 'year',
554
- type: 'uint256',
555
- internalType: 'uint256',
556
- },
557
- {
558
- name: 'month',
559
- type: 'uint256',
560
- internalType: 'uint256',
561
- },
562
- {
563
- name: 'day',
564
- type: 'uint256',
565
- internalType: 'uint256',
566
- },
567
- ],
568
- outputs: [
569
- {
570
- name: 'shares',
571
- type: 'uint256',
572
- internalType: 'uint256',
573
- },
574
- ],
575
- stateMutability: 'view',
576
- },
577
- {
578
- type: 'function',
579
- name: 'getScheduledTransactionsByDate',
580
- inputs: [
581
- {
582
- name: 'year',
583
- type: 'uint256',
584
- internalType: 'uint256',
585
- },
586
- {
587
- name: 'month',
588
- type: 'uint256',
589
- internalType: 'uint256',
590
- },
591
- {
592
- name: 'day',
593
- type: 'uint256',
594
- internalType: 'uint256',
595
- },
596
- ],
597
- outputs: [
598
- {
599
- name: 'totalTransactions',
600
- type: 'uint256',
601
- internalType: 'uint256',
602
- },
603
- {
604
- name: 'executionEpoch',
605
- type: 'uint256',
606
- internalType: 'uint256',
607
- },
608
- ],
609
- stateMutability: 'view',
610
- },
611
- {
612
- type: 'function',
613
- name: 'getSharePrice',
614
- inputs: [],
615
- outputs: [
616
- {
617
- name: '',
618
- type: 'uint256',
619
- internalType: 'uint256',
620
- },
621
- ],
622
- stateMutability: 'view',
623
- },
624
- {
625
- type: 'function',
626
- name: 'getTotalAssets',
627
- inputs: [],
628
- outputs: [
629
- {
630
- name: '',
631
- type: 'uint256',
632
- internalType: 'uint256',
633
- },
634
- ],
635
- stateMutability: 'view',
636
- },
637
- {
638
- type: 'function',
639
- name: 'getWithdrawalEpoch',
640
- inputs: [],
641
- outputs: [
642
- {
643
- name: 'year',
644
- type: 'uint256',
645
- internalType: 'uint256',
646
- },
647
- {
648
- name: 'month',
649
- type: 'uint256',
650
- internalType: 'uint256',
651
- },
652
- {
653
- name: 'day',
654
- type: 'uint256',
655
- internalType: 'uint256',
656
- },
657
- {
658
- name: 'claimableEpoch',
659
- type: 'uint256',
660
- internalType: 'uint256',
661
- },
662
- ],
663
- stateMutability: 'view',
664
- },
665
- {
666
- type: 'function',
667
- name: 'globalLiabilityShares',
668
- inputs: [],
669
- outputs: [
670
- {
671
- name: '',
672
- type: 'uint256',
673
- internalType: 'uint256',
674
- },
675
- ],
676
- stateMutability: 'view',
677
- },
678
- {
679
- type: 'function',
680
- name: 'highWatermark',
681
- inputs: [],
682
- outputs: [
683
- {
684
- name: '',
685
- type: 'uint256',
686
- internalType: 'uint256',
687
- },
688
- ],
689
- stateMutability: 'view',
690
- },
691
- {
692
- type: 'function',
693
- name: 'initialize',
694
- inputs: [
695
- {
696
- name: 'ownerAddr',
697
- type: 'address',
698
- internalType: 'address',
699
- },
700
- ],
701
- outputs: [],
702
- stateMutability: 'nonpayable',
703
- },
704
- {
705
- type: 'function',
706
- name: 'instantRedeem',
707
- inputs: [
708
- {
709
- name: 'shares',
710
- type: 'uint256',
711
- internalType: 'uint256',
712
- },
713
- {
714
- name: 'receiverAddr',
715
- type: 'address',
716
- internalType: 'address',
717
- },
718
- ],
719
- outputs: [],
720
- stateMutability: 'nonpayable',
721
- },
722
- {
723
- type: 'function',
724
- name: 'instantRedemptionFee',
725
- inputs: [],
726
- outputs: [
727
- {
728
- name: '',
729
- type: 'uint256',
730
- internalType: 'uint256',
731
- },
732
- ],
733
- stateMutability: 'view',
734
- },
735
- {
736
- type: 'function',
737
- name: 'keepFeeInVault',
738
- inputs: [],
739
- outputs: [
740
- {
741
- name: '',
742
- type: 'bool',
743
- internalType: 'bool',
744
- },
745
- ],
746
- stateMutability: 'view',
747
- },
748
- {
749
- type: 'function',
750
- name: 'lagDuration',
751
- inputs: [],
752
- outputs: [
753
- {
754
- name: '',
755
- type: 'uint256',
756
- internalType: 'uint256',
757
- },
758
- ],
759
- stateMutability: 'view',
760
- },
761
- {
762
- type: 'function',
763
- name: 'lpTokenAddress',
764
- inputs: [],
765
- outputs: [
766
- {
767
- name: '',
768
- type: 'address',
769
- internalType: 'address',
770
- },
771
- ],
772
- stateMutability: 'view',
773
- },
774
- {
775
- type: 'function',
776
- name: 'managementFeePercent',
777
- inputs: [],
778
- outputs: [
779
- {
780
- name: '',
781
- type: 'uint256',
782
- internalType: 'uint256',
783
- },
784
- ],
785
- stateMutability: 'view',
786
- },
787
- {
788
- type: 'function',
789
- name: 'maxChangePercent',
790
- inputs: [],
791
- outputs: [
792
- {
793
- name: '',
794
- type: 'uint256',
795
- internalType: 'uint256',
796
- },
797
- ],
798
- stateMutability: 'view',
799
- },
800
- {
801
- type: 'function',
802
- name: 'maxDepositAmount',
803
- inputs: [],
804
- outputs: [
805
- {
806
- name: '',
807
- type: 'uint256',
808
- internalType: 'uint256',
809
- },
810
- ],
811
- stateMutability: 'view',
812
- },
813
- {
814
- type: 'function',
815
- name: 'maxWithdrawalAmount',
816
- inputs: [],
817
- outputs: [
818
- {
819
- name: '',
820
- type: 'uint256',
821
- internalType: 'uint256',
822
- },
823
- ],
824
- stateMutability: 'view',
825
- },
826
- {
827
- type: 'function',
828
- name: 'operatorAddress',
829
- inputs: [],
830
- outputs: [
831
- {
832
- name: '',
833
- type: 'address',
834
- internalType: 'address',
835
- },
836
- ],
837
- stateMutability: 'view',
838
- },
839
- {
840
- type: 'function',
841
- name: 'owner',
842
- inputs: [],
843
- outputs: [
844
- {
845
- name: '',
846
- type: 'address',
847
- internalType: 'address',
848
- },
849
- ],
850
- stateMutability: 'view',
851
- },
852
- {
853
- type: 'function',
854
- name: 'pauseDepositsAndWithdrawals',
855
- inputs: [
856
- {
857
- name: 'bPauseDeposits',
858
- type: 'bool',
859
- internalType: 'bool',
860
- },
861
- {
862
- name: 'bPauseWithdrawals',
863
- type: 'bool',
864
- internalType: 'bool',
865
- },
866
- ],
867
- outputs: [],
868
- stateMutability: 'nonpayable',
869
- },
870
- {
871
- type: 'function',
872
- name: 'pendingOwner',
873
- inputs: [],
874
- outputs: [
875
- {
876
- name: '',
877
- type: 'address',
878
- internalType: 'address',
879
- },
880
- ],
881
- stateMutability: 'view',
882
- },
883
- {
884
- type: 'function',
885
- name: 'performanceFeeRate',
886
- inputs: [],
887
- outputs: [
888
- {
889
- name: '',
890
- type: 'uint256',
891
- internalType: 'uint256',
892
- },
893
- ],
894
- stateMutability: 'view',
895
- },
896
- {
897
- type: 'function',
898
- name: 'performanceFeeRecipients',
899
- inputs: [
900
- {
901
- name: '',
902
- type: 'uint256',
903
- internalType: 'uint256',
904
- },
905
- ],
906
- outputs: [
907
- {
908
- name: 'collectorAddress',
909
- type: 'address',
910
- internalType: 'address',
911
- },
912
- {
913
- name: 'percentage',
914
- type: 'uint256',
915
- internalType: 'uint256',
916
- },
917
- ],
918
- stateMutability: 'view',
919
- },
920
- {
921
- type: 'function',
922
- name: 'previewDeposit',
923
- inputs: [
924
- {
925
- name: 'assetIn',
926
- type: 'address',
927
- internalType: 'address',
928
- },
929
- {
930
- name: 'amountIn',
931
- type: 'uint256',
932
- internalType: 'uint256',
933
- },
934
- ],
935
- outputs: [
936
- {
937
- name: '',
938
- type: 'uint256',
939
- internalType: 'uint256',
940
- },
941
- {
942
- name: '',
943
- type: 'uint256',
944
- internalType: 'uint256',
945
- },
946
- ],
947
- stateMutability: 'view',
948
- },
949
- {
950
- type: 'function',
951
- name: 'previewRedemption',
952
- inputs: [
953
- {
954
- name: 'shares',
955
- type: 'uint256',
956
- internalType: 'uint256',
957
- },
958
- {
959
- name: 'isInstant',
960
- type: 'bool',
961
- internalType: 'bool',
962
- },
963
- ],
964
- outputs: [
965
- {
966
- name: 'assetsAmount',
967
- type: 'uint256',
968
- internalType: 'uint256',
969
- },
970
- {
971
- name: 'assetsAfterFee',
972
- type: 'uint256',
973
- internalType: 'uint256',
974
- },
975
- ],
976
- stateMutability: 'view',
977
- },
978
- {
979
- type: 'function',
980
- name: 'processAllClaimsByDate',
981
- inputs: [
982
- {
983
- name: 'year',
984
- type: 'uint256',
985
- internalType: 'uint256',
986
- },
987
- {
988
- name: 'month',
989
- type: 'uint256',
990
- internalType: 'uint256',
991
- },
992
- {
993
- name: 'day',
994
- type: 'uint256',
995
- internalType: 'uint256',
996
- },
997
- {
998
- name: 'maxLimit',
999
- type: 'uint256',
1000
- internalType: 'uint256',
1001
- },
1002
- ],
1003
- outputs: [],
1004
- stateMutability: 'nonpayable',
1005
- },
1006
- {
1007
- type: 'function',
1008
- name: 'requestRedeem',
1009
- inputs: [
1010
- {
1011
- name: 'shares',
1012
- type: 'uint256',
1013
- internalType: 'uint256',
1014
- },
1015
- {
1016
- name: 'receiverAddr',
1017
- type: 'address',
1018
- internalType: 'address',
1019
- },
1020
- ],
1021
- outputs: [
1022
- {
1023
- name: 'claimableEpoch',
1024
- type: 'uint256',
1025
- internalType: 'uint256',
1026
- },
1027
- {
1028
- name: 'year',
1029
- type: 'uint256',
1030
- internalType: 'uint256',
1031
- },
1032
- {
1033
- name: 'month',
1034
- type: 'uint256',
1035
- internalType: 'uint256',
1036
- },
1037
- {
1038
- name: 'day',
1039
- type: 'uint256',
1040
- internalType: 'uint256',
1041
- },
1042
- ],
1043
- stateMutability: 'nonpayable',
1044
- },
1045
- {
1046
- type: 'function',
1047
- name: 'scheduledCallerAddress',
1048
- inputs: [],
1049
- outputs: [
1050
- {
1051
- name: '',
1052
- type: 'address',
1053
- internalType: 'address',
1054
- },
1055
- ],
1056
- stateMutability: 'view',
1057
- },
1058
- {
1059
- type: 'function',
1060
- name: 'sendersWhitelistAddress',
1061
- inputs: [],
1062
- outputs: [
1063
- {
1064
- name: '',
1065
- type: 'address',
1066
- internalType: 'address',
1067
- },
1068
- ],
1069
- stateMutability: 'view',
1070
- },
1071
- {
1072
- type: 'function',
1073
- name: 'totalCollectableFees',
1074
- inputs: [],
1075
- outputs: [
1076
- {
1077
- name: '',
1078
- type: 'uint256',
1079
- internalType: 'uint256',
1080
- },
1081
- ],
1082
- stateMutability: 'view',
1083
- },
1084
- {
1085
- type: 'function',
1086
- name: 'transferOwnership',
1087
- inputs: [
1088
- {
1089
- name: 'newOwner',
1090
- type: 'address',
1091
- internalType: 'address',
1092
- },
1093
- ],
1094
- outputs: [],
1095
- stateMutability: 'nonpayable',
1096
- },
1097
- {
1098
- type: 'function',
1099
- name: 'updateAssetsWhitelist',
1100
- inputs: [
1101
- {
1102
- name: 'newWhitelistAddr',
1103
- type: 'address',
1104
- internalType: 'address',
1105
- },
1106
- ],
1107
- outputs: [],
1108
- stateMutability: 'nonpayable',
1109
- },
1110
- {
1111
- type: 'function',
1112
- name: 'updateFeeCollectors',
1113
- inputs: [
1114
- {
1115
- name: 'collectors',
1116
- type: 'tuple[]',
1117
- internalType: 'struct IFeeCollectorsAware.CollectorDefinition[]',
1118
- components: [
1119
- {
1120
- name: 'collectorAddress',
1121
- type: 'address',
1122
- internalType: 'address',
1123
- },
1124
- {
1125
- name: 'percentage',
1126
- type: 'uint256',
1127
- internalType: 'uint256',
1128
- },
1129
- ],
1130
- },
1131
- ],
1132
- outputs: [],
1133
- stateMutability: 'nonpayable',
1134
- },
1135
- {
1136
- type: 'function',
1137
- name: 'updateInstantRedemptionFee',
1138
- inputs: [
1139
- {
1140
- name: 'newValue',
1141
- type: 'uint256',
1142
- internalType: 'uint256',
1143
- },
1144
- {
1145
- name: 'pKeepFeeInVault',
1146
- type: 'bool',
1147
- internalType: 'bool',
1148
- },
1149
- ],
1150
- outputs: [],
1151
- stateMutability: 'nonpayable',
1152
- },
1153
- {
1154
- type: 'function',
1155
- name: 'updateLimits',
1156
- inputs: [
1157
- {
1158
- name: 'newMaxDepositAmount',
1159
- type: 'uint256',
1160
- internalType: 'uint256',
1161
- },
1162
- {
1163
- name: 'newMaxWithdrawalAmount',
1164
- type: 'uint256',
1165
- internalType: 'uint256',
1166
- },
1167
- {
1168
- name: 'newDepositCap',
1169
- type: 'uint256',
1170
- internalType: 'uint256',
1171
- },
1172
- ],
1173
- outputs: [],
1174
- stateMutability: 'nonpayable',
1175
- },
1176
- {
1177
- type: 'function',
1178
- name: 'updateManagementFee',
1179
- inputs: [
1180
- {
1181
- name: 'newManagementFeePercent',
1182
- type: 'uint256',
1183
- internalType: 'uint256',
1184
- },
1185
- ],
1186
- outputs: [],
1187
- stateMutability: 'nonpayable',
1188
- },
1189
- {
1190
- type: 'function',
1191
- name: 'updateMaxChangePercent',
1192
- inputs: [
1193
- {
1194
- name: 'newValue',
1195
- type: 'uint256',
1196
- internalType: 'uint256',
1197
- },
1198
- ],
1199
- outputs: [],
1200
- stateMutability: 'nonpayable',
1201
- },
1202
- {
1203
- type: 'function',
1204
- name: 'updatePerformanceFeeCollectors',
1205
- inputs: [
1206
- {
1207
- name: 'collectors',
1208
- type: 'tuple[]',
1209
- internalType: 'struct IFeeCollectorsAware.CollectorDefinition[]',
1210
- components: [
1211
- {
1212
- name: 'collectorAddress',
1213
- type: 'address',
1214
- internalType: 'address',
1215
- },
1216
- {
1217
- name: 'percentage',
1218
- type: 'uint256',
1219
- internalType: 'uint256',
1220
- },
1221
- ],
1222
- },
1223
- ],
1224
- outputs: [],
1225
- stateMutability: 'nonpayable',
1226
- },
1227
- {
1228
- type: 'function',
1229
- name: 'updateSendersWhitelist',
1230
- inputs: [
1231
- {
1232
- name: 'newWhitelistAddr',
1233
- type: 'address',
1234
- internalType: 'address',
1235
- },
1236
- ],
1237
- outputs: [],
1238
- stateMutability: 'nonpayable',
1239
- },
1240
- {
1241
- type: 'function',
1242
- name: 'updateTimelockDuration',
1243
- inputs: [
1244
- {
1245
- name: 'newDuration',
1246
- type: 'uint256',
1247
- internalType: 'uint256',
1248
- },
1249
- ],
1250
- outputs: [],
1251
- stateMutability: 'nonpayable',
1252
- },
1253
- {
1254
- type: 'function',
1255
- name: 'updateTotalAssets',
1256
- inputs: [
1257
- {
1258
- name: 'externalAssetsAmount',
1259
- type: 'uint256',
1260
- internalType: 'uint256',
1261
- },
1262
- ],
1263
- outputs: [],
1264
- stateMutability: 'nonpayable',
1265
- },
1266
- {
1267
- type: 'function',
1268
- name: 'watermarkTimeWindow',
1269
- inputs: [],
1270
- outputs: [
1271
- {
1272
- name: '',
1273
- type: 'uint256',
1274
- internalType: 'uint256',
1275
- },
1276
- ],
1277
- stateMutability: 'view',
1278
- },
1279
- {
1280
- type: 'function',
1281
- name: 'watermarkUpdatedOn',
1282
- inputs: [],
1283
- outputs: [
1284
- {
1285
- name: '',
1286
- type: 'uint256',
1287
- internalType: 'uint256',
1288
- },
1289
- ],
1290
- stateMutability: 'view',
1291
- },
1292
- {
1293
- type: 'function',
1294
- name: 'whitelistedSubAccounts',
1295
- inputs: [
1296
- {
1297
- name: '',
1298
- type: 'address',
1299
- internalType: 'address',
1300
- },
1301
- ],
1302
- outputs: [
1303
- {
1304
- name: '',
1305
- type: 'uint8',
1306
- internalType: 'uint8',
1307
- },
1308
- ],
1309
- stateMutability: 'view',
1310
- },
1311
- {
1312
- type: 'function',
1313
- name: 'withdrawFromSubaccount',
1314
- inputs: [
1315
- {
1316
- name: 'inputAssetAddr',
1317
- type: 'address',
1318
- internalType: 'address',
1319
- },
1320
- {
1321
- name: 'amount',
1322
- type: 'uint256',
1323
- internalType: 'uint256',
1324
- },
1325
- {
1326
- name: 'subAccountAddr',
1327
- type: 'address',
1328
- internalType: 'address',
1329
- },
1330
- ],
1331
- outputs: [],
1332
- stateMutability: 'nonpayable',
1333
- },
1334
- {
1335
- type: 'function',
1336
- name: 'withdrawalFee',
1337
- inputs: [],
1338
- outputs: [
1339
- {
1340
- name: '',
1341
- type: 'uint256',
1342
- internalType: 'uint256',
1343
- },
1344
- ],
1345
- stateMutability: 'view',
1346
- },
1347
- {
1348
- type: 'function',
1349
- name: 'withdrawalsPaused',
1350
- inputs: [],
1351
- outputs: [
1352
- {
1353
- name: '',
1354
- type: 'bool',
1355
- internalType: 'bool',
1356
- },
1357
- ],
1358
- stateMutability: 'view',
1359
- },
1360
- {
1361
- type: 'event',
1362
- name: 'ContractConfigured',
1363
- inputs: [],
1364
- anonymous: false,
1365
- },
1366
- {
1367
- type: 'event',
1368
- name: 'Deposit',
1369
- inputs: [
1370
- {
1371
- name: 'assetIn',
1372
- type: 'address',
1373
- indexed: false,
1374
- internalType: 'address',
1375
- },
1376
- {
1377
- name: 'amountIn',
1378
- type: 'uint256',
1379
- indexed: false,
1380
- internalType: 'uint256',
1381
- },
1382
- {
1383
- name: 'shares',
1384
- type: 'uint256',
1385
- indexed: false,
1386
- internalType: 'uint256',
1387
- },
1388
- {
1389
- name: 'senderAddr',
1390
- type: 'address',
1391
- indexed: true,
1392
- internalType: 'address',
1393
- },
1394
- {
1395
- name: 'receiverAddr',
1396
- type: 'address',
1397
- indexed: true,
1398
- internalType: 'address',
1399
- },
1400
- ],
1401
- anonymous: false,
1402
- },
1403
- {
1404
- type: 'event',
1405
- name: 'DepositWithdrawalStatusChanged',
1406
- inputs: [
1407
- {
1408
- name: 'bDepositsPaused',
1409
- type: 'bool',
1410
- indexed: false,
1411
- internalType: 'bool',
1412
- },
1413
- {
1414
- name: 'bWithdrawalsPaused',
1415
- type: 'bool',
1416
- indexed: false,
1417
- internalType: 'bool',
1418
- },
1419
- ],
1420
- anonymous: false,
1421
- },
1422
- {
1423
- type: 'event',
1424
- name: 'FeesCollected',
1425
- inputs: [],
1426
- anonymous: false,
1427
- },
1428
- {
1429
- type: 'event',
1430
- name: 'Initialized',
1431
- inputs: [
1432
- {
1433
- name: 'version',
1434
- type: 'uint8',
1435
- indexed: false,
1436
- internalType: 'uint8',
1437
- },
1438
- ],
1439
- anonymous: false,
1440
- },
1441
- {
1442
- type: 'event',
1443
- name: 'ManagementFeeCharged',
1444
- inputs: [
1445
- {
1446
- name: 'managementFeeAmount',
1447
- type: 'uint256',
1448
- indexed: false,
1449
- internalType: 'uint256',
1450
- },
1451
- ],
1452
- anonymous: false,
1453
- },
1454
- {
1455
- type: 'event',
1456
- name: 'ManagementFeeUpdated',
1457
- inputs: [
1458
- {
1459
- name: 'newManagementFeePercent',
1460
- type: 'uint256',
1461
- indexed: false,
1462
- internalType: 'uint256',
1463
- },
1464
- ],
1465
- anonymous: false,
1466
- },
1467
- {
1468
- type: 'event',
1469
- name: 'MaxChangePercentUpdated',
1470
- inputs: [
1471
- {
1472
- name: 'newValue',
1473
- type: 'uint256',
1474
- indexed: false,
1475
- internalType: 'uint256',
1476
- },
1477
- ],
1478
- anonymous: false,
1479
- },
1480
- {
1481
- type: 'event',
1482
- name: 'OnEmergencyWithdraw',
1483
- inputs: [
1484
- {
1485
- name: 'receiverAddr',
1486
- type: 'address',
1487
- indexed: false,
1488
- internalType: 'address',
1489
- },
1490
- ],
1491
- anonymous: false,
1492
- },
1493
- {
1494
- type: 'event',
1495
- name: 'OwnershipTransferStarted',
1496
- inputs: [
1497
- {
1498
- name: 'previousOwner',
1499
- type: 'address',
1500
- indexed: true,
1501
- internalType: 'address',
1502
- },
1503
- {
1504
- name: 'newOwner',
1505
- type: 'address',
1506
- indexed: true,
1507
- internalType: 'address',
1508
- },
1509
- ],
1510
- anonymous: false,
1511
- },
1512
- {
1513
- type: 'event',
1514
- name: 'OwnershipTransferred',
1515
- inputs: [
1516
- {
1517
- name: 'previousOwner',
1518
- type: 'address',
1519
- indexed: true,
1520
- internalType: 'address',
1521
- },
1522
- {
1523
- name: 'newOwner',
1524
- type: 'address',
1525
- indexed: true,
1526
- internalType: 'address',
1527
- },
1528
- ],
1529
- anonymous: false,
1530
- },
1531
- {
1532
- type: 'event',
1533
- name: 'SendersWhitelistUpdated',
1534
- inputs: [
1535
- {
1536
- name: 'newWhitelistAddr',
1537
- type: 'address',
1538
- indexed: false,
1539
- internalType: 'address',
1540
- },
1541
- ],
1542
- anonymous: false,
1543
- },
1544
- {
1545
- type: 'event',
1546
- name: 'SubAccountDisabled',
1547
- inputs: [
1548
- {
1549
- name: 'subAccountAddr',
1550
- type: 'address',
1551
- indexed: false,
1552
- internalType: 'address',
1553
- },
1554
- ],
1555
- anonymous: false,
1556
- },
1557
- {
1558
- type: 'event',
1559
- name: 'SubAccountEnabled',
1560
- inputs: [
1561
- {
1562
- name: 'subAccountAddr',
1563
- type: 'address',
1564
- indexed: false,
1565
- internalType: 'address',
1566
- },
1567
- ],
1568
- anonymous: false,
1569
- },
1570
- {
1571
- type: 'event',
1572
- name: 'Withdraw',
1573
- inputs: [
1574
- {
1575
- name: 'sender',
1576
- type: 'address',
1577
- indexed: true,
1578
- internalType: 'address',
1579
- },
1580
- {
1581
- name: 'receiver',
1582
- type: 'address',
1583
- indexed: true,
1584
- internalType: 'address',
1585
- },
1586
- {
1587
- name: 'owner',
1588
- type: 'address',
1589
- indexed: true,
1590
- internalType: 'address',
1591
- },
1592
- {
1593
- name: 'assets',
1594
- type: 'uint256',
1595
- indexed: false,
1596
- internalType: 'uint256',
1597
- },
1598
- {
1599
- name: 'shares',
1600
- type: 'uint256',
1601
- indexed: false,
1602
- internalType: 'uint256',
1603
- },
1604
- ],
1605
- anonymous: false,
1606
- },
1607
- {
1608
- type: 'event',
1609
- name: 'WithdrawalProcessed',
1610
- inputs: [
1611
- {
1612
- name: 'assetsAmount',
1613
- type: 'uint256',
1614
- indexed: false,
1615
- internalType: 'uint256',
1616
- },
1617
- {
1618
- name: 'receiverAddr',
1619
- type: 'address',
1620
- indexed: true,
1621
- internalType: 'address',
1622
- },
1623
- ],
1624
- anonymous: false,
1625
- },
1626
- {
1627
- type: 'event',
1628
- name: 'WithdrawalRequested',
1629
- inputs: [
1630
- {
1631
- name: 'shares',
1632
- type: 'uint256',
1633
- indexed: false,
1634
- internalType: 'uint256',
1635
- },
1636
- {
1637
- name: 'holderAddr',
1638
- type: 'address',
1639
- indexed: true,
1640
- internalType: 'address',
1641
- },
1642
- {
1643
- name: 'receiverAddr',
1644
- type: 'address',
1645
- indexed: true,
1646
- internalType: 'address',
1647
- },
1648
- ],
1649
- anonymous: false,
1650
- },
1651
- {
1652
- type: 'error',
1653
- name: 'AccountNotWhitelisted',
1654
- inputs: [],
1655
- },
1656
- {
1657
- type: 'error',
1658
- name: 'AlreadyConfigured',
1659
- inputs: [],
1660
- },
1661
- {
1662
- type: 'error',
1663
- name: 'AmountTooLow',
1664
- inputs: [],
1665
- },
1666
- {
1667
- type: 'error',
1668
- name: 'AssetNotWhitelisted',
1669
- inputs: [],
1670
- },
1671
- {
1672
- type: 'error',
1673
- name: 'CollectableFeesExceeded',
1674
- inputs: [
1675
- {
1676
- name: 'fee',
1677
- type: 'uint256',
1678
- internalType: 'uint256',
1679
- },
1680
- {
1681
- name: 'remaining',
1682
- type: 'uint256',
1683
- internalType: 'uint256',
1684
- },
1685
- ],
1686
- },
1687
- {
1688
- type: 'error',
1689
- name: 'DepositCapReached',
1690
- inputs: [],
1691
- },
1692
- {
1693
- type: 'error',
1694
- name: 'DepositsPaused',
1695
- inputs: [],
1696
- },
1697
- {
1698
- type: 'error',
1699
- name: 'FeeAmountTooLow',
1700
- inputs: [],
1701
- },
1702
- {
1703
- type: 'error',
1704
- name: 'FeesMustSum100',
1705
- inputs: [],
1706
- },
1707
- {
1708
- type: 'error',
1709
- name: 'HighWatermarkDurationError',
1710
- inputs: [],
1711
- },
1712
- {
1713
- type: 'error',
1714
- name: 'HighWatermarkViolation',
1715
- inputs: [],
1716
- },
1717
- {
1718
- type: 'error',
1719
- name: 'InsufficientShares',
1720
- inputs: [],
1721
- },
1722
- {
1723
- type: 'error',
1724
- name: 'InvalidAccountType',
1725
- inputs: [],
1726
- },
1727
- {
1728
- type: 'error',
1729
- name: 'InvalidAddress',
1730
- inputs: [],
1731
- },
1732
- {
1733
- type: 'error',
1734
- name: 'InvalidAmount',
1735
- inputs: [],
1736
- },
1737
- {
1738
- type: 'error',
1739
- name: 'InvalidDepositLimit',
1740
- inputs: [],
1741
- },
1742
- {
1743
- type: 'error',
1744
- name: 'InvalidExternalAssets',
1745
- inputs: [],
1746
- },
1747
- {
1748
- type: 'error',
1749
- name: 'InvalidLagDuration',
1750
- inputs: [],
1751
- },
1752
- {
1753
- type: 'error',
1754
- name: 'InvalidReceiver',
1755
- inputs: [],
1756
- },
1757
- {
1758
- type: 'error',
1759
- name: 'InvalidTimestamp',
1760
- inputs: [],
1761
- },
1762
- {
1763
- type: 'error',
1764
- name: 'InvalidWithdrawalLimit',
1765
- inputs: [],
1766
- },
1767
- {
1768
- type: 'error',
1769
- name: 'LimitRequired',
1770
- inputs: [],
1771
- },
1772
- {
1773
- type: 'error',
1774
- name: 'MaxAllowedChangeReached',
1775
- inputs: [],
1776
- },
1777
- {
1778
- type: 'error',
1779
- name: 'MaxDepositAmountReached',
1780
- inputs: [],
1781
- },
1782
- {
1783
- type: 'error',
1784
- name: 'MissingFeeCollectors',
1785
- inputs: [],
1786
- },
1787
- {
1788
- type: 'error',
1789
- name: 'NoSharesForReceiver',
1790
- inputs: [],
1791
- },
1792
- {
1793
- type: 'error',
1794
- name: 'NotConfigured',
1795
- inputs: [],
1796
- },
1797
- {
1798
- type: 'error',
1799
- name: 'NothingToProcess',
1800
- inputs: [],
1801
- },
1802
- {
1803
- type: 'error',
1804
- name: 'OnlyOwnerOrOperator',
1805
- inputs: [],
1806
- },
1807
- {
1808
- type: 'error',
1809
- name: 'OperatorOnly',
1810
- inputs: [],
1811
- },
1812
- {
1813
- type: 'error',
1814
- name: 'OwnerAddressRequired',
1815
- inputs: [],
1816
- },
1817
- {
1818
- type: 'error',
1819
- name: 'OwnerOnly',
1820
- inputs: [],
1821
- },
1822
- {
1823
- type: 'error',
1824
- name: 'ReentrancyGuardReentrantCall',
1825
- inputs: [],
1826
- },
1827
- {
1828
- type: 'error',
1829
- name: 'ReferenceAssetMismatch',
1830
- inputs: [],
1831
- },
1832
- {
1833
- type: 'error',
1834
- name: 'SenderNotWhitelisted',
1835
- inputs: [],
1836
- },
1837
- {
1838
- type: 'error',
1839
- name: 'TokenDecimalsMismatch',
1840
- inputs: [],
1841
- },
1842
- {
1843
- type: 'error',
1844
- name: 'TooEarly',
1845
- inputs: [],
1846
- },
1847
- {
1848
- type: 'error',
1849
- name: 'Unauthorized',
1850
- inputs: [],
1851
- },
1852
- {
1853
- type: 'error',
1854
- name: 'VaultNotTimelocked',
1855
- inputs: [],
1856
- },
1857
- {
1858
- type: 'error',
1859
- name: 'WhitelistLimitReached',
1860
- inputs: [],
1861
- },
1862
- {
1863
- type: 'error',
1864
- name: 'WithdrawalLimitReached',
1865
- inputs: [],
1866
- },
1867
- {
1868
- type: 'error',
1869
- name: 'WithdrawalsPaused',
1870
- inputs: [],
1871
- },
1872
- {
1873
- type: 'error',
1874
- name: 'ZeroAddressError',
1875
- inputs: [],
1876
- },
1877
- ];
1878
- //# sourceMappingURL=TokenizedVaultV2WithDepositWithPermit.js.map