@usdu-core/usdu-core 0.0.1

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 (107) hide show
  1. package/.claude/settings.local.json +12 -0
  2. package/.env.example +6 -0
  3. package/.prettierrc.json +7 -0
  4. package/LICENSE +674 -0
  5. package/README.md +244 -0
  6. package/contracts/curve/CurveAdapterV1.sol +310 -0
  7. package/contracts/curve/CurveAdapterV1_1.sol +198 -0
  8. package/contracts/curve/helpers/ICurveStableSwapNG.json +566 -0
  9. package/contracts/curve/helpers/ICurveStableSwapNG.sol +177 -0
  10. package/contracts/deploy/VaultDeployer.sol +110 -0
  11. package/contracts/morpho/MorphoAdapterV1.sol +255 -0
  12. package/contracts/morpho/MorphoAdapterV1_1.sol +137 -0
  13. package/contracts/morpho/MorphoAdapterV1_2.sol +126 -0
  14. package/contracts/morpho/helpers/AggregatorV3Interface.sol +24 -0
  15. package/contracts/morpho/helpers/ChainlinkDataFeedLib.sol +36 -0
  16. package/contracts/morpho/helpers/ConstantsLib.sol +20 -0
  17. package/contracts/morpho/helpers/ErrorsLib.sol +17 -0
  18. package/contracts/morpho/helpers/IERC4626.sol +6 -0
  19. package/contracts/morpho/helpers/IMetaMorphoV1_1.sol +229 -0
  20. package/contracts/morpho/helpers/IMetaMorphoV1_1Factory.sol +32 -0
  21. package/contracts/morpho/helpers/IMorpho.sol +361 -0
  22. package/contracts/morpho/helpers/IMorphoCallbacks.sol +52 -0
  23. package/contracts/morpho/helpers/IMorphoChainlinkOracleV2.sol +39 -0
  24. package/contracts/morpho/helpers/IMorphoChainlinkOracleV2Factory.sol +56 -0
  25. package/contracts/morpho/helpers/IOracle.sol +15 -0
  26. package/contracts/morpho/helpers/MarketParamsLib.sol +21 -0
  27. package/contracts/morpho/helpers/MathLib.sol +45 -0
  28. package/contracts/morpho/helpers/Morpho.sol.bak +517 -0
  29. package/contracts/morpho/helpers/MorphoChainlinkOracleV2.sol +157 -0
  30. package/contracts/morpho/helpers/PendingLib.sol +47 -0
  31. package/contracts/morpho/helpers/SharesMathLib.sol +45 -0
  32. package/contracts/morpho/helpers/VaultLib.sol +18 -0
  33. package/contracts/reward/RewardDistributionV1.sol +110 -0
  34. package/contracts/reward/RewardRouterV0.sol +63 -0
  35. package/contracts/reward/Rewards.example.json +72 -0
  36. package/contracts/stablecoin/IStablecoin.sol +211 -0
  37. package/contracts/stablecoin/IStablecoinMetadata.sol +27 -0
  38. package/contracts/stablecoin/IStablecoinModifier.sol +52 -0
  39. package/contracts/stablecoin/Stablecoin.sol +376 -0
  40. package/contracts/stablecoin/libraries/ConstantsLib.sol +13 -0
  41. package/contracts/stablecoin/libraries/ErrorsLib.sol +45 -0
  42. package/contracts/stablecoin/libraries/EventsLib.sol +74 -0
  43. package/contracts/stablecoin/libraries/PendingLib.sol +38 -0
  44. package/contracts/vault/VaultAdapterRecoverV1.sol +29 -0
  45. package/contracts/vault/VaultAdapterV1.sol +126 -0
  46. package/dist/index.d.mts +16154 -0
  47. package/dist/index.d.ts +16154 -0
  48. package/dist/index.js +21134 -0
  49. package/dist/index.mjs +21061 -0
  50. package/docs/CoreVault: Integration of new Markets.md +197 -0
  51. package/docs/CoreVault: SupplyQueue.md +11 -0
  52. package/docs/Markets USDC Vault.md +35 -0
  53. package/docs/Markets USDU Vault.md +89 -0
  54. package/docs/Markets WETH Vault.md +35 -0
  55. package/docs/Overview.drawio +117 -0
  56. package/exports/abis/curve/CurveAdapterV1.ts +599 -0
  57. package/exports/abis/curve/CurveAdapterV1_1.ts +609 -0
  58. package/exports/abis/curve/CurveAdapterV1_2.ts +721 -0
  59. package/exports/abis/curve/helper/ICurveStableSwapNG.ts +1589 -0
  60. package/exports/abis/morpho/MorphoAdapterV1.ts +516 -0
  61. package/exports/abis/morpho/MorphoAdapterV1_1.ts +489 -0
  62. package/exports/abis/morpho/MorphoAdapterV1_2.ts +459 -0
  63. package/exports/abis/morpho/helper/AggregatorV3Interface.ts +113 -0
  64. package/exports/abis/morpho/helper/IMetaMorphoV1_1.ts +1483 -0
  65. package/exports/abis/morpho/helper/IMetaMorphoV1_1Base.ts +607 -0
  66. package/exports/abis/morpho/helper/IMetaMorphoV1_1StaticTyping.ts +696 -0
  67. package/exports/abis/morpho/helper/IMorpho.ts +1024 -0
  68. package/exports/abis/morpho/helper/IMorphoBase.ts +886 -0
  69. package/exports/abis/morpho/helper/IMorphoChainlinkOracleV2.ts +132 -0
  70. package/exports/abis/morpho/helper/IMorphoChainlinkOracleV2Factory.ts +109 -0
  71. package/exports/abis/morpho/helper/IMorphoFlashLoanCallback.ts +20 -0
  72. package/exports/abis/morpho/helper/IMorphoLiquidateCallback.ts +20 -0
  73. package/exports/abis/morpho/helper/IMorphoRepayCallback.ts +20 -0
  74. package/exports/abis/morpho/helper/IMorphoStaticTyping.ts +1003 -0
  75. package/exports/abis/morpho/helper/IMorphoSupplyCallback.ts +20 -0
  76. package/exports/abis/morpho/helper/IMorphoSupplyCollateralCallback.ts +20 -0
  77. package/exports/abis/morpho/helper/IMulticall.ts +21 -0
  78. package/exports/abis/morpho/helper/IOracle.ts +15 -0
  79. package/exports/abis/morpho/helper/IOwnable.ts +55 -0
  80. package/exports/abis/morpho/helper/MorphoChainlinkOracleV2.ts +188 -0
  81. package/exports/abis/openzeppelin/ERC20.ts +310 -0
  82. package/exports/abis/openzeppelin/ERC20Permit.ts +520 -0
  83. package/exports/abis/openzeppelin/IERC20.ts +185 -0
  84. package/exports/abis/openzeppelin/IERC20Metadata.ts +224 -0
  85. package/exports/abis/openzeppelin/IERC20Permit.ts +77 -0
  86. package/exports/abis/openzeppelin/IERC4626.ts +614 -0
  87. package/exports/abis/reward/RewardDistributionV1.ts +246 -0
  88. package/exports/abis/stablecoin/ErrorsLib.ts +114 -0
  89. package/exports/abis/stablecoin/EventsLib.ts +372 -0
  90. package/exports/abis/stablecoin/IStablecoin.ts +642 -0
  91. package/exports/abis/stablecoin/IStablecoinMetadata.ts +856 -0
  92. package/exports/abis/stablecoin/IStablecoinModifier.ts +15 -0
  93. package/exports/abis/stablecoin/Stablecoin.ts +1922 -0
  94. package/exports/abis/termmax/ITermMaxVault.ts +2335 -0
  95. package/exports/abis/vault/VaultAdapterRecoverV1.ts +490 -0
  96. package/exports/abis/vault/VaultAdapterV1.ts +459 -0
  97. package/exports/address.config.ts +113 -0
  98. package/exports/address.types.ts +130 -0
  99. package/exports/index.ts +61 -0
  100. package/hardhat.config.ts +231 -0
  101. package/helper/store.args.ts +17 -0
  102. package/helper/wallet.info.ts +3 -0
  103. package/helper/wallet.ts +41 -0
  104. package/install-macos.sh +46 -0
  105. package/package.json +73 -0
  106. package/tsconfig.json +15 -0
  107. package/tsup.config.ts +10 -0
@@ -0,0 +1,856 @@
1
+ export const IStablecoinMetadata_ABI = [
2
+ {
3
+ anonymous: false,
4
+ inputs: [
5
+ {
6
+ indexed: true,
7
+ internalType: 'address',
8
+ name: 'owner',
9
+ type: 'address',
10
+ },
11
+ {
12
+ indexed: true,
13
+ internalType: 'address',
14
+ name: 'spender',
15
+ type: 'address',
16
+ },
17
+ {
18
+ indexed: false,
19
+ internalType: 'uint256',
20
+ name: 'value',
21
+ type: 'uint256',
22
+ },
23
+ ],
24
+ name: 'Approval',
25
+ type: 'event',
26
+ },
27
+ {
28
+ anonymous: false,
29
+ inputs: [
30
+ {
31
+ indexed: true,
32
+ internalType: 'address',
33
+ name: 'from',
34
+ type: 'address',
35
+ },
36
+ {
37
+ indexed: true,
38
+ internalType: 'address',
39
+ name: 'to',
40
+ type: 'address',
41
+ },
42
+ {
43
+ indexed: false,
44
+ internalType: 'uint256',
45
+ name: 'value',
46
+ type: 'uint256',
47
+ },
48
+ ],
49
+ name: 'Transfer',
50
+ type: 'event',
51
+ },
52
+ {
53
+ inputs: [],
54
+ name: 'acceptCurator',
55
+ outputs: [],
56
+ stateMutability: 'nonpayable',
57
+ type: 'function',
58
+ },
59
+ {
60
+ inputs: [],
61
+ name: 'acceptGuardian',
62
+ outputs: [],
63
+ stateMutability: 'nonpayable',
64
+ type: 'function',
65
+ },
66
+ {
67
+ inputs: [
68
+ {
69
+ internalType: 'address',
70
+ name: 'module',
71
+ type: 'address',
72
+ },
73
+ ],
74
+ name: 'acceptModule',
75
+ outputs: [],
76
+ stateMutability: 'nonpayable',
77
+ type: 'function',
78
+ },
79
+ {
80
+ inputs: [],
81
+ name: 'acceptTimelock',
82
+ outputs: [],
83
+ stateMutability: 'nonpayable',
84
+ type: 'function',
85
+ },
86
+ {
87
+ inputs: [
88
+ {
89
+ internalType: 'address',
90
+ name: 'account',
91
+ type: 'address',
92
+ },
93
+ ],
94
+ name: 'acceptUnfreeze',
95
+ outputs: [],
96
+ stateMutability: 'nonpayable',
97
+ type: 'function',
98
+ },
99
+ {
100
+ inputs: [
101
+ {
102
+ internalType: 'address',
103
+ name: 'owner',
104
+ type: 'address',
105
+ },
106
+ {
107
+ internalType: 'address',
108
+ name: 'spender',
109
+ type: 'address',
110
+ },
111
+ ],
112
+ name: 'allowance',
113
+ outputs: [
114
+ {
115
+ internalType: 'uint256',
116
+ name: '',
117
+ type: 'uint256',
118
+ },
119
+ ],
120
+ stateMutability: 'view',
121
+ type: 'function',
122
+ },
123
+ {
124
+ inputs: [
125
+ {
126
+ internalType: 'address',
127
+ name: 'spender',
128
+ type: 'address',
129
+ },
130
+ {
131
+ internalType: 'uint256',
132
+ name: 'value',
133
+ type: 'uint256',
134
+ },
135
+ ],
136
+ name: 'approve',
137
+ outputs: [
138
+ {
139
+ internalType: 'bool',
140
+ name: '',
141
+ type: 'bool',
142
+ },
143
+ ],
144
+ stateMutability: 'nonpayable',
145
+ type: 'function',
146
+ },
147
+ {
148
+ inputs: [
149
+ {
150
+ internalType: 'address',
151
+ name: 'account',
152
+ type: 'address',
153
+ },
154
+ ],
155
+ name: 'balanceOf',
156
+ outputs: [
157
+ {
158
+ internalType: 'uint256',
159
+ name: '',
160
+ type: 'uint256',
161
+ },
162
+ ],
163
+ stateMutability: 'view',
164
+ type: 'function',
165
+ },
166
+ {
167
+ inputs: [
168
+ {
169
+ internalType: 'uint256',
170
+ name: 'amount',
171
+ type: 'uint256',
172
+ },
173
+ ],
174
+ name: 'burn',
175
+ outputs: [],
176
+ stateMutability: 'nonpayable',
177
+ type: 'function',
178
+ },
179
+ {
180
+ inputs: [
181
+ {
182
+ internalType: 'address',
183
+ name: 'from',
184
+ type: 'address',
185
+ },
186
+ {
187
+ internalType: 'uint256',
188
+ name: 'amount',
189
+ type: 'uint256',
190
+ },
191
+ ],
192
+ name: 'burnModule',
193
+ outputs: [],
194
+ stateMutability: 'nonpayable',
195
+ type: 'function',
196
+ },
197
+ {
198
+ inputs: [
199
+ {
200
+ internalType: 'address',
201
+ name: 'account',
202
+ type: 'address',
203
+ },
204
+ ],
205
+ name: 'checkCurator',
206
+ outputs: [
207
+ {
208
+ internalType: 'bool',
209
+ name: '',
210
+ type: 'bool',
211
+ },
212
+ ],
213
+ stateMutability: 'view',
214
+ type: 'function',
215
+ },
216
+ {
217
+ inputs: [
218
+ {
219
+ internalType: 'address',
220
+ name: 'account',
221
+ type: 'address',
222
+ },
223
+ ],
224
+ name: 'checkCuratorOrGuardian',
225
+ outputs: [
226
+ {
227
+ internalType: 'bool',
228
+ name: '',
229
+ type: 'bool',
230
+ },
231
+ ],
232
+ stateMutability: 'view',
233
+ type: 'function',
234
+ },
235
+ {
236
+ inputs: [
237
+ {
238
+ internalType: 'address',
239
+ name: 'account',
240
+ type: 'address',
241
+ },
242
+ ],
243
+ name: 'checkGuardian',
244
+ outputs: [
245
+ {
246
+ internalType: 'bool',
247
+ name: '',
248
+ type: 'bool',
249
+ },
250
+ ],
251
+ stateMutability: 'view',
252
+ type: 'function',
253
+ },
254
+ {
255
+ inputs: [
256
+ {
257
+ internalType: 'address',
258
+ name: 'account',
259
+ type: 'address',
260
+ },
261
+ ],
262
+ name: 'checkModule',
263
+ outputs: [
264
+ {
265
+ internalType: 'bool',
266
+ name: '',
267
+ type: 'bool',
268
+ },
269
+ ],
270
+ stateMutability: 'view',
271
+ type: 'function',
272
+ },
273
+ {
274
+ inputs: [
275
+ {
276
+ internalType: 'address',
277
+ name: 'account',
278
+ type: 'address',
279
+ },
280
+ ],
281
+ name: 'checkValidModule',
282
+ outputs: [
283
+ {
284
+ internalType: 'bool',
285
+ name: '',
286
+ type: 'bool',
287
+ },
288
+ ],
289
+ stateMutability: 'view',
290
+ type: 'function',
291
+ },
292
+ {
293
+ inputs: [],
294
+ name: 'curator',
295
+ outputs: [
296
+ {
297
+ internalType: 'address',
298
+ name: '',
299
+ type: 'address',
300
+ },
301
+ ],
302
+ stateMutability: 'view',
303
+ type: 'function',
304
+ },
305
+ {
306
+ inputs: [],
307
+ name: 'guardian',
308
+ outputs: [
309
+ {
310
+ internalType: 'address',
311
+ name: '',
312
+ type: 'address',
313
+ },
314
+ ],
315
+ stateMutability: 'view',
316
+ type: 'function',
317
+ },
318
+ {
319
+ inputs: [
320
+ {
321
+ internalType: 'address',
322
+ name: 'to',
323
+ type: 'address',
324
+ },
325
+ {
326
+ internalType: 'uint256',
327
+ name: 'value',
328
+ type: 'uint256',
329
+ },
330
+ ],
331
+ name: 'mintModule',
332
+ outputs: [],
333
+ stateMutability: 'nonpayable',
334
+ type: 'function',
335
+ },
336
+ {
337
+ inputs: [
338
+ {
339
+ internalType: 'address',
340
+ name: 'module',
341
+ type: 'address',
342
+ },
343
+ ],
344
+ name: 'modules',
345
+ outputs: [
346
+ {
347
+ internalType: 'uint256',
348
+ name: '',
349
+ type: 'uint256',
350
+ },
351
+ ],
352
+ stateMutability: 'view',
353
+ type: 'function',
354
+ },
355
+ {
356
+ inputs: [],
357
+ name: 'pendingCurator',
358
+ outputs: [
359
+ {
360
+ components: [
361
+ {
362
+ internalType: 'address',
363
+ name: 'value',
364
+ type: 'address',
365
+ },
366
+ {
367
+ internalType: 'uint64',
368
+ name: 'validAt',
369
+ type: 'uint64',
370
+ },
371
+ ],
372
+ internalType: 'struct PendingAddress',
373
+ name: '',
374
+ type: 'tuple',
375
+ },
376
+ ],
377
+ stateMutability: 'view',
378
+ type: 'function',
379
+ },
380
+ {
381
+ inputs: [],
382
+ name: 'pendingGuardian',
383
+ outputs: [
384
+ {
385
+ components: [
386
+ {
387
+ internalType: 'address',
388
+ name: 'value',
389
+ type: 'address',
390
+ },
391
+ {
392
+ internalType: 'uint64',
393
+ name: 'validAt',
394
+ type: 'uint64',
395
+ },
396
+ ],
397
+ internalType: 'struct PendingAddress',
398
+ name: '',
399
+ type: 'tuple',
400
+ },
401
+ ],
402
+ stateMutability: 'view',
403
+ type: 'function',
404
+ },
405
+ {
406
+ inputs: [
407
+ {
408
+ internalType: 'address',
409
+ name: 'module',
410
+ type: 'address',
411
+ },
412
+ ],
413
+ name: 'pendingModules',
414
+ outputs: [
415
+ {
416
+ components: [
417
+ {
418
+ internalType: 'uint192',
419
+ name: 'value',
420
+ type: 'uint192',
421
+ },
422
+ {
423
+ internalType: 'uint64',
424
+ name: 'validAt',
425
+ type: 'uint64',
426
+ },
427
+ ],
428
+ internalType: 'struct PendingUint192',
429
+ name: '',
430
+ type: 'tuple',
431
+ },
432
+ ],
433
+ stateMutability: 'view',
434
+ type: 'function',
435
+ },
436
+ {
437
+ inputs: [],
438
+ name: 'pendingTimelock',
439
+ outputs: [
440
+ {
441
+ components: [
442
+ {
443
+ internalType: 'uint192',
444
+ name: 'value',
445
+ type: 'uint192',
446
+ },
447
+ {
448
+ internalType: 'uint64',
449
+ name: 'validAt',
450
+ type: 'uint64',
451
+ },
452
+ ],
453
+ internalType: 'struct PendingUint192',
454
+ name: '',
455
+ type: 'tuple',
456
+ },
457
+ ],
458
+ stateMutability: 'view',
459
+ type: 'function',
460
+ },
461
+ {
462
+ inputs: [
463
+ {
464
+ internalType: 'address',
465
+ name: 'account',
466
+ type: 'address',
467
+ },
468
+ ],
469
+ name: 'pendingUnfreeze',
470
+ outputs: [
471
+ {
472
+ components: [
473
+ {
474
+ internalType: 'uint192',
475
+ name: 'value',
476
+ type: 'uint192',
477
+ },
478
+ {
479
+ internalType: 'uint64',
480
+ name: 'validAt',
481
+ type: 'uint64',
482
+ },
483
+ ],
484
+ internalType: 'struct PendingUint192',
485
+ name: '',
486
+ type: 'tuple',
487
+ },
488
+ ],
489
+ stateMutability: 'view',
490
+ type: 'function',
491
+ },
492
+ {
493
+ inputs: [],
494
+ name: 'revokePendingCurator',
495
+ outputs: [],
496
+ stateMutability: 'nonpayable',
497
+ type: 'function',
498
+ },
499
+ {
500
+ inputs: [],
501
+ name: 'revokePendingGuardian',
502
+ outputs: [],
503
+ stateMutability: 'nonpayable',
504
+ type: 'function',
505
+ },
506
+ {
507
+ inputs: [
508
+ {
509
+ internalType: 'address',
510
+ name: 'module',
511
+ type: 'address',
512
+ },
513
+ {
514
+ internalType: 'string',
515
+ name: 'message',
516
+ type: 'string',
517
+ },
518
+ ],
519
+ name: 'revokePendingModule',
520
+ outputs: [],
521
+ stateMutability: 'nonpayable',
522
+ type: 'function',
523
+ },
524
+ {
525
+ inputs: [],
526
+ name: 'revokePendingTimelock',
527
+ outputs: [],
528
+ stateMutability: 'nonpayable',
529
+ type: 'function',
530
+ },
531
+ {
532
+ inputs: [
533
+ {
534
+ internalType: 'address',
535
+ name: 'account',
536
+ type: 'address',
537
+ },
538
+ {
539
+ internalType: 'string',
540
+ name: 'message',
541
+ type: 'string',
542
+ },
543
+ ],
544
+ name: 'revokePendingUnfreeze',
545
+ outputs: [],
546
+ stateMutability: 'nonpayable',
547
+ type: 'function',
548
+ },
549
+ {
550
+ inputs: [
551
+ {
552
+ internalType: 'address',
553
+ name: 'newCurator',
554
+ type: 'address',
555
+ },
556
+ ],
557
+ name: 'setCurator',
558
+ outputs: [],
559
+ stateMutability: 'nonpayable',
560
+ type: 'function',
561
+ },
562
+ {
563
+ inputs: [
564
+ {
565
+ internalType: 'address',
566
+ name: 'newCurator',
567
+ type: 'address',
568
+ },
569
+ {
570
+ internalType: 'uint256',
571
+ name: 'fee',
572
+ type: 'uint256',
573
+ },
574
+ ],
575
+ name: 'setCuratorPublic',
576
+ outputs: [],
577
+ stateMutability: 'nonpayable',
578
+ type: 'function',
579
+ },
580
+ {
581
+ inputs: [
582
+ {
583
+ internalType: 'address',
584
+ name: 'account',
585
+ type: 'address',
586
+ },
587
+ {
588
+ internalType: 'string',
589
+ name: 'message',
590
+ type: 'string',
591
+ },
592
+ ],
593
+ name: 'setFreeze',
594
+ outputs: [],
595
+ stateMutability: 'nonpayable',
596
+ type: 'function',
597
+ },
598
+ {
599
+ inputs: [
600
+ {
601
+ internalType: 'address',
602
+ name: 'newGuardian',
603
+ type: 'address',
604
+ },
605
+ ],
606
+ name: 'setGuardian',
607
+ outputs: [],
608
+ stateMutability: 'nonpayable',
609
+ type: 'function',
610
+ },
611
+ {
612
+ inputs: [
613
+ {
614
+ internalType: 'address',
615
+ name: 'module',
616
+ type: 'address',
617
+ },
618
+ {
619
+ internalType: 'uint256',
620
+ name: 'expiredAt',
621
+ type: 'uint256',
622
+ },
623
+ {
624
+ internalType: 'string',
625
+ name: 'message',
626
+ type: 'string',
627
+ },
628
+ ],
629
+ name: 'setModule',
630
+ outputs: [],
631
+ stateMutability: 'nonpayable',
632
+ type: 'function',
633
+ },
634
+ {
635
+ inputs: [
636
+ {
637
+ internalType: 'address',
638
+ name: 'module',
639
+ type: 'address',
640
+ },
641
+ {
642
+ internalType: 'uint256',
643
+ name: 'expiredAt',
644
+ type: 'uint256',
645
+ },
646
+ {
647
+ internalType: 'string',
648
+ name: 'message',
649
+ type: 'string',
650
+ },
651
+ {
652
+ internalType: 'uint256',
653
+ name: 'fee',
654
+ type: 'uint256',
655
+ },
656
+ ],
657
+ name: 'setModulePublic',
658
+ outputs: [],
659
+ stateMutability: 'nonpayable',
660
+ type: 'function',
661
+ },
662
+ {
663
+ inputs: [
664
+ {
665
+ internalType: 'uint256',
666
+ name: 'newTimelock',
667
+ type: 'uint256',
668
+ },
669
+ ],
670
+ name: 'setTimelock',
671
+ outputs: [],
672
+ stateMutability: 'nonpayable',
673
+ type: 'function',
674
+ },
675
+ {
676
+ inputs: [
677
+ {
678
+ internalType: 'address',
679
+ name: 'account',
680
+ type: 'address',
681
+ },
682
+ {
683
+ internalType: 'string',
684
+ name: 'message',
685
+ type: 'string',
686
+ },
687
+ ],
688
+ name: 'setUnfreeze',
689
+ outputs: [],
690
+ stateMutability: 'nonpayable',
691
+ type: 'function',
692
+ },
693
+ {
694
+ inputs: [],
695
+ name: 'timelock',
696
+ outputs: [
697
+ {
698
+ internalType: 'uint256',
699
+ name: '',
700
+ type: 'uint256',
701
+ },
702
+ ],
703
+ stateMutability: 'view',
704
+ type: 'function',
705
+ },
706
+ {
707
+ inputs: [],
708
+ name: 'totalSupply',
709
+ outputs: [
710
+ {
711
+ internalType: 'uint256',
712
+ name: '',
713
+ type: 'uint256',
714
+ },
715
+ ],
716
+ stateMutability: 'view',
717
+ type: 'function',
718
+ },
719
+ {
720
+ inputs: [
721
+ {
722
+ internalType: 'address',
723
+ name: 'to',
724
+ type: 'address',
725
+ },
726
+ {
727
+ internalType: 'uint256',
728
+ name: 'value',
729
+ type: 'uint256',
730
+ },
731
+ ],
732
+ name: 'transfer',
733
+ outputs: [
734
+ {
735
+ internalType: 'bool',
736
+ name: '',
737
+ type: 'bool',
738
+ },
739
+ ],
740
+ stateMutability: 'nonpayable',
741
+ type: 'function',
742
+ },
743
+ {
744
+ inputs: [
745
+ {
746
+ internalType: 'address',
747
+ name: 'from',
748
+ type: 'address',
749
+ },
750
+ {
751
+ internalType: 'address',
752
+ name: 'to',
753
+ type: 'address',
754
+ },
755
+ {
756
+ internalType: 'uint256',
757
+ name: 'value',
758
+ type: 'uint256',
759
+ },
760
+ ],
761
+ name: 'transferFrom',
762
+ outputs: [
763
+ {
764
+ internalType: 'bool',
765
+ name: '',
766
+ type: 'bool',
767
+ },
768
+ ],
769
+ stateMutability: 'nonpayable',
770
+ type: 'function',
771
+ },
772
+ {
773
+ inputs: [
774
+ {
775
+ internalType: 'address',
776
+ name: 'account',
777
+ type: 'address',
778
+ },
779
+ ],
780
+ name: 'unfreeze',
781
+ outputs: [
782
+ {
783
+ internalType: 'uint256',
784
+ name: '',
785
+ type: 'uint256',
786
+ },
787
+ ],
788
+ stateMutability: 'view',
789
+ type: 'function',
790
+ },
791
+ {
792
+ inputs: [
793
+ {
794
+ internalType: 'address',
795
+ name: 'account',
796
+ type: 'address',
797
+ },
798
+ ],
799
+ name: 'verifyCurator',
800
+ outputs: [],
801
+ stateMutability: 'view',
802
+ type: 'function',
803
+ },
804
+ {
805
+ inputs: [
806
+ {
807
+ internalType: 'address',
808
+ name: 'account',
809
+ type: 'address',
810
+ },
811
+ ],
812
+ name: 'verifyCuratorOrGuardian',
813
+ outputs: [],
814
+ stateMutability: 'view',
815
+ type: 'function',
816
+ },
817
+ {
818
+ inputs: [
819
+ {
820
+ internalType: 'address',
821
+ name: 'account',
822
+ type: 'address',
823
+ },
824
+ ],
825
+ name: 'verifyGuardian',
826
+ outputs: [],
827
+ stateMutability: 'view',
828
+ type: 'function',
829
+ },
830
+ {
831
+ inputs: [
832
+ {
833
+ internalType: 'address',
834
+ name: 'account',
835
+ type: 'address',
836
+ },
837
+ ],
838
+ name: 'verifyModule',
839
+ outputs: [],
840
+ stateMutability: 'view',
841
+ type: 'function',
842
+ },
843
+ {
844
+ inputs: [
845
+ {
846
+ internalType: 'address',
847
+ name: 'account',
848
+ type: 'address',
849
+ },
850
+ ],
851
+ name: 'verifyValidModule',
852
+ outputs: [],
853
+ stateMutability: 'view',
854
+ type: 'function',
855
+ },
856
+ ] as const;