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