@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,246 @@
1
+ export const RewardDistributionV1_ABI = [
2
+ {
3
+ inputs: [],
4
+ name: 'AlreadyPending',
5
+ type: 'error',
6
+ },
7
+ {
8
+ inputs: [],
9
+ name: 'NoPendingValue',
10
+ type: 'error',
11
+ },
12
+ {
13
+ inputs: [],
14
+ name: 'TimelockNotElapsed',
15
+ type: 'error',
16
+ },
17
+ {
18
+ anonymous: false,
19
+ inputs: [
20
+ {
21
+ indexed: true,
22
+ internalType: 'address',
23
+ name: 'receiver',
24
+ type: 'address',
25
+ },
26
+ {
27
+ indexed: false,
28
+ internalType: 'uint256',
29
+ name: 'amount',
30
+ type: 'uint256',
31
+ },
32
+ {
33
+ indexed: false,
34
+ internalType: 'uint256',
35
+ name: 'ratio',
36
+ type: 'uint256',
37
+ },
38
+ ],
39
+ name: 'Distribution',
40
+ type: 'event',
41
+ },
42
+ {
43
+ anonymous: false,
44
+ inputs: [
45
+ {
46
+ indexed: true,
47
+ internalType: 'address',
48
+ name: 'caller',
49
+ type: 'address',
50
+ },
51
+ ],
52
+ name: 'RevokeDistribution',
53
+ type: 'event',
54
+ },
55
+ {
56
+ anonymous: false,
57
+ inputs: [
58
+ {
59
+ indexed: true,
60
+ internalType: 'address',
61
+ name: 'caller',
62
+ type: 'address',
63
+ },
64
+ ],
65
+ name: 'SetDistribution',
66
+ type: 'event',
67
+ },
68
+ {
69
+ anonymous: false,
70
+ inputs: [
71
+ {
72
+ indexed: true,
73
+ internalType: 'address',
74
+ name: 'caller',
75
+ type: 'address',
76
+ },
77
+ {
78
+ indexed: false,
79
+ internalType: 'address[5]',
80
+ name: 'receivers',
81
+ type: 'address[5]',
82
+ },
83
+ {
84
+ indexed: false,
85
+ internalType: 'uint32[5]',
86
+ name: 'weights',
87
+ type: 'uint32[5]',
88
+ },
89
+ {
90
+ indexed: false,
91
+ internalType: 'uint256',
92
+ name: 'timelock',
93
+ type: 'uint256',
94
+ },
95
+ ],
96
+ name: 'SubmitDistribution',
97
+ type: 'event',
98
+ },
99
+ {
100
+ inputs: [],
101
+ name: 'applyDistribution',
102
+ outputs: [],
103
+ stateMutability: 'nonpayable',
104
+ type: 'function',
105
+ },
106
+ {
107
+ inputs: [
108
+ {
109
+ internalType: 'uint256',
110
+ name: '',
111
+ type: 'uint256',
112
+ },
113
+ ],
114
+ name: 'pendingReceivers',
115
+ outputs: [
116
+ {
117
+ internalType: 'address',
118
+ name: '',
119
+ type: 'address',
120
+ },
121
+ ],
122
+ stateMutability: 'view',
123
+ type: 'function',
124
+ },
125
+ {
126
+ inputs: [],
127
+ name: 'pendingValidAt',
128
+ outputs: [
129
+ {
130
+ internalType: 'uint256',
131
+ name: '',
132
+ type: 'uint256',
133
+ },
134
+ ],
135
+ stateMutability: 'view',
136
+ type: 'function',
137
+ },
138
+ {
139
+ inputs: [
140
+ {
141
+ internalType: 'uint256',
142
+ name: '',
143
+ type: 'uint256',
144
+ },
145
+ ],
146
+ name: 'pendingWeights',
147
+ outputs: [
148
+ {
149
+ internalType: 'uint32',
150
+ name: '',
151
+ type: 'uint32',
152
+ },
153
+ ],
154
+ stateMutability: 'view',
155
+ type: 'function',
156
+ },
157
+ {
158
+ inputs: [
159
+ {
160
+ internalType: 'uint256',
161
+ name: '',
162
+ type: 'uint256',
163
+ },
164
+ ],
165
+ name: 'receivers',
166
+ outputs: [
167
+ {
168
+ internalType: 'address',
169
+ name: '',
170
+ type: 'address',
171
+ },
172
+ ],
173
+ stateMutability: 'view',
174
+ type: 'function',
175
+ },
176
+ {
177
+ inputs: [],
178
+ name: 'revokePendingDistribution',
179
+ outputs: [],
180
+ stateMutability: 'nonpayable',
181
+ type: 'function',
182
+ },
183
+ {
184
+ inputs: [
185
+ {
186
+ internalType: 'address[5]',
187
+ name: '_receivers',
188
+ type: 'address[5]',
189
+ },
190
+ {
191
+ internalType: 'uint32[5]',
192
+ name: '_weights',
193
+ type: 'uint32[5]',
194
+ },
195
+ ],
196
+ name: 'setDistribution',
197
+ outputs: [],
198
+ stateMutability: 'nonpayable',
199
+ type: 'function',
200
+ },
201
+ {
202
+ inputs: [],
203
+ name: 'stable',
204
+ outputs: [
205
+ {
206
+ internalType: 'contract Stablecoin',
207
+ name: '',
208
+ type: 'address',
209
+ },
210
+ ],
211
+ stateMutability: 'view',
212
+ type: 'function',
213
+ },
214
+ {
215
+ inputs: [],
216
+ name: 'totalWeights',
217
+ outputs: [
218
+ {
219
+ internalType: 'uint256',
220
+ name: '',
221
+ type: 'uint256',
222
+ },
223
+ ],
224
+ stateMutability: 'view',
225
+ type: 'function',
226
+ },
227
+ {
228
+ inputs: [
229
+ {
230
+ internalType: 'uint256',
231
+ name: '',
232
+ type: 'uint256',
233
+ },
234
+ ],
235
+ name: 'weights',
236
+ outputs: [
237
+ {
238
+ internalType: 'uint32',
239
+ name: '',
240
+ type: 'uint32',
241
+ },
242
+ ],
243
+ stateMutability: 'view',
244
+ type: 'function',
245
+ },
246
+ ] as const;
@@ -0,0 +1,114 @@
1
+ export const ErrorsLib_ABI = [
2
+ {
3
+ inputs: [],
4
+ name: 'AboveMaxTimelock',
5
+ type: 'error',
6
+ },
7
+ {
8
+ inputs: [
9
+ {
10
+ internalType: 'address',
11
+ name: 'account',
12
+ type: 'address',
13
+ },
14
+ {
15
+ internalType: 'uint256',
16
+ name: 'since',
17
+ type: 'uint256',
18
+ },
19
+ ],
20
+ name: 'AccountFreezed',
21
+ type: 'error',
22
+ },
23
+ {
24
+ inputs: [],
25
+ name: 'AlreadyPending',
26
+ type: 'error',
27
+ },
28
+ {
29
+ inputs: [],
30
+ name: 'AlreadySet',
31
+ type: 'error',
32
+ },
33
+ {
34
+ inputs: [],
35
+ name: 'BelowMinTimelock',
36
+ type: 'error',
37
+ },
38
+ {
39
+ inputs: [],
40
+ name: 'NoPendingValue',
41
+ type: 'error',
42
+ },
43
+ {
44
+ inputs: [
45
+ {
46
+ internalType: 'address',
47
+ name: 'account',
48
+ type: 'address',
49
+ },
50
+ ],
51
+ name: 'NotCuratorNorGuardianRole',
52
+ type: 'error',
53
+ },
54
+ {
55
+ inputs: [
56
+ {
57
+ internalType: 'address',
58
+ name: 'account',
59
+ type: 'address',
60
+ },
61
+ ],
62
+ name: 'NotCuratorRole',
63
+ type: 'error',
64
+ },
65
+ {
66
+ inputs: [
67
+ {
68
+ internalType: 'address',
69
+ name: 'account',
70
+ type: 'address',
71
+ },
72
+ ],
73
+ name: 'NotGuardianRole',
74
+ type: 'error',
75
+ },
76
+ {
77
+ inputs: [
78
+ {
79
+ internalType: 'address',
80
+ name: 'account',
81
+ type: 'address',
82
+ },
83
+ ],
84
+ name: 'NotModuleRole',
85
+ type: 'error',
86
+ },
87
+ {
88
+ inputs: [
89
+ {
90
+ internalType: 'address',
91
+ name: 'account',
92
+ type: 'address',
93
+ },
94
+ ],
95
+ name: 'NotValidModuleRole',
96
+ type: 'error',
97
+ },
98
+ {
99
+ inputs: [
100
+ {
101
+ internalType: 'uint256',
102
+ name: 'minimum',
103
+ type: 'uint256',
104
+ },
105
+ ],
106
+ name: 'ProposalFeeToLow',
107
+ type: 'error',
108
+ },
109
+ {
110
+ inputs: [],
111
+ name: 'TimelockNotElapsed',
112
+ type: 'error',
113
+ },
114
+ ] as const;
@@ -0,0 +1,372 @@
1
+ export const EventsLib_ABI = [
2
+ {
3
+ anonymous: false,
4
+ inputs: [
5
+ {
6
+ indexed: true,
7
+ internalType: 'address',
8
+ name: 'caller',
9
+ type: 'address',
10
+ },
11
+ {
12
+ indexed: true,
13
+ internalType: 'address',
14
+ name: 'pendingGuardian',
15
+ type: 'address',
16
+ },
17
+ ],
18
+ name: 'RevokePendingCurator',
19
+ type: 'event',
20
+ },
21
+ {
22
+ anonymous: false,
23
+ inputs: [
24
+ {
25
+ indexed: true,
26
+ internalType: 'address',
27
+ name: 'caller',
28
+ type: 'address',
29
+ },
30
+ {
31
+ indexed: true,
32
+ internalType: 'address',
33
+ name: 'pendingGuardian',
34
+ type: 'address',
35
+ },
36
+ ],
37
+ name: 'RevokePendingGuardian',
38
+ type: 'event',
39
+ },
40
+ {
41
+ anonymous: false,
42
+ inputs: [
43
+ {
44
+ indexed: true,
45
+ internalType: 'address',
46
+ name: 'caller',
47
+ type: 'address',
48
+ },
49
+ {
50
+ indexed: true,
51
+ internalType: 'address',
52
+ name: 'module',
53
+ type: 'address',
54
+ },
55
+ {
56
+ indexed: false,
57
+ internalType: 'string',
58
+ name: 'message',
59
+ type: 'string',
60
+ },
61
+ ],
62
+ name: 'RevokePendingModule',
63
+ type: 'event',
64
+ },
65
+ {
66
+ anonymous: false,
67
+ inputs: [
68
+ {
69
+ indexed: true,
70
+ internalType: 'address',
71
+ name: 'caller',
72
+ type: 'address',
73
+ },
74
+ {
75
+ indexed: false,
76
+ internalType: 'uint256',
77
+ name: 'pendingTimelock',
78
+ type: 'uint256',
79
+ },
80
+ ],
81
+ name: 'RevokePendingTimelock',
82
+ type: 'event',
83
+ },
84
+ {
85
+ anonymous: false,
86
+ inputs: [
87
+ {
88
+ indexed: true,
89
+ internalType: 'address',
90
+ name: 'caller',
91
+ type: 'address',
92
+ },
93
+ {
94
+ indexed: true,
95
+ internalType: 'address',
96
+ name: 'account',
97
+ type: 'address',
98
+ },
99
+ {
100
+ indexed: false,
101
+ internalType: 'string',
102
+ name: 'message',
103
+ type: 'string',
104
+ },
105
+ ],
106
+ name: 'RevokeUnfreeze',
107
+ type: 'event',
108
+ },
109
+ {
110
+ anonymous: false,
111
+ inputs: [
112
+ {
113
+ indexed: true,
114
+ internalType: 'address',
115
+ name: 'caller',
116
+ type: 'address',
117
+ },
118
+ {
119
+ indexed: true,
120
+ internalType: 'address',
121
+ name: 'guardian',
122
+ type: 'address',
123
+ },
124
+ ],
125
+ name: 'SetCurator',
126
+ type: 'event',
127
+ },
128
+ {
129
+ anonymous: false,
130
+ inputs: [
131
+ {
132
+ indexed: true,
133
+ internalType: 'address',
134
+ name: 'caller',
135
+ type: 'address',
136
+ },
137
+ {
138
+ indexed: true,
139
+ internalType: 'address',
140
+ name: 'account',
141
+ type: 'address',
142
+ },
143
+ {
144
+ indexed: false,
145
+ internalType: 'string',
146
+ name: 'message',
147
+ type: 'string',
148
+ },
149
+ ],
150
+ name: 'SetFreeze',
151
+ type: 'event',
152
+ },
153
+ {
154
+ anonymous: false,
155
+ inputs: [
156
+ {
157
+ indexed: true,
158
+ internalType: 'address',
159
+ name: 'caller',
160
+ type: 'address',
161
+ },
162
+ {
163
+ indexed: true,
164
+ internalType: 'address',
165
+ name: 'guardian',
166
+ type: 'address',
167
+ },
168
+ ],
169
+ name: 'SetGuardian',
170
+ type: 'event',
171
+ },
172
+ {
173
+ anonymous: false,
174
+ inputs: [
175
+ {
176
+ indexed: true,
177
+ internalType: 'address',
178
+ name: 'caller',
179
+ type: 'address',
180
+ },
181
+ {
182
+ indexed: true,
183
+ internalType: 'address',
184
+ name: 'newModule',
185
+ type: 'address',
186
+ },
187
+ ],
188
+ name: 'SetModule',
189
+ type: 'event',
190
+ },
191
+ {
192
+ anonymous: false,
193
+ inputs: [
194
+ {
195
+ indexed: true,
196
+ internalType: 'address',
197
+ name: 'caller',
198
+ type: 'address',
199
+ },
200
+ {
201
+ indexed: false,
202
+ internalType: 'uint256',
203
+ name: 'newTimelock',
204
+ type: 'uint256',
205
+ },
206
+ ],
207
+ name: 'SetTimelock',
208
+ type: 'event',
209
+ },
210
+ {
211
+ anonymous: false,
212
+ inputs: [
213
+ {
214
+ indexed: true,
215
+ internalType: 'address',
216
+ name: 'caller',
217
+ type: 'address',
218
+ },
219
+ {
220
+ indexed: true,
221
+ internalType: 'address',
222
+ name: 'account',
223
+ type: 'address',
224
+ },
225
+ ],
226
+ name: 'SetUnfreeze',
227
+ type: 'event',
228
+ },
229
+ {
230
+ anonymous: false,
231
+ inputs: [
232
+ {
233
+ indexed: true,
234
+ internalType: 'address',
235
+ name: 'caller',
236
+ type: 'address',
237
+ },
238
+ {
239
+ indexed: true,
240
+ internalType: 'address',
241
+ name: 'newCurator',
242
+ type: 'address',
243
+ },
244
+ {
245
+ indexed: false,
246
+ internalType: 'uint256',
247
+ name: 'timelock',
248
+ type: 'uint256',
249
+ },
250
+ ],
251
+ name: 'SubmitCurator',
252
+ type: 'event',
253
+ },
254
+ {
255
+ anonymous: false,
256
+ inputs: [
257
+ {
258
+ indexed: true,
259
+ internalType: 'address',
260
+ name: 'caller',
261
+ type: 'address',
262
+ },
263
+ {
264
+ indexed: true,
265
+ internalType: 'address',
266
+ name: 'newGuardian',
267
+ type: 'address',
268
+ },
269
+ {
270
+ indexed: false,
271
+ internalType: 'uint256',
272
+ name: 'timelock',
273
+ type: 'uint256',
274
+ },
275
+ ],
276
+ name: 'SubmitGuardian',
277
+ type: 'event',
278
+ },
279
+ {
280
+ anonymous: false,
281
+ inputs: [
282
+ {
283
+ indexed: true,
284
+ internalType: 'address',
285
+ name: 'caller',
286
+ type: 'address',
287
+ },
288
+ {
289
+ indexed: true,
290
+ internalType: 'address',
291
+ name: 'newModule',
292
+ type: 'address',
293
+ },
294
+ {
295
+ indexed: false,
296
+ internalType: 'uint256',
297
+ name: 'expiredAt',
298
+ type: 'uint256',
299
+ },
300
+ {
301
+ indexed: false,
302
+ internalType: 'string',
303
+ name: 'message',
304
+ type: 'string',
305
+ },
306
+ {
307
+ indexed: false,
308
+ internalType: 'uint256',
309
+ name: 'timelock',
310
+ type: 'uint256',
311
+ },
312
+ ],
313
+ name: 'SubmitModule',
314
+ type: 'event',
315
+ },
316
+ {
317
+ anonymous: false,
318
+ inputs: [
319
+ {
320
+ indexed: true,
321
+ internalType: 'address',
322
+ name: 'caller',
323
+ type: 'address',
324
+ },
325
+ {
326
+ indexed: false,
327
+ internalType: 'uint256',
328
+ name: 'newTimelock',
329
+ type: 'uint256',
330
+ },
331
+ {
332
+ indexed: false,
333
+ internalType: 'uint256',
334
+ name: 'timelock',
335
+ type: 'uint256',
336
+ },
337
+ ],
338
+ name: 'SubmitTimelock',
339
+ type: 'event',
340
+ },
341
+ {
342
+ anonymous: false,
343
+ inputs: [
344
+ {
345
+ indexed: true,
346
+ internalType: 'address',
347
+ name: 'caller',
348
+ type: 'address',
349
+ },
350
+ {
351
+ indexed: true,
352
+ internalType: 'address',
353
+ name: 'account',
354
+ type: 'address',
355
+ },
356
+ {
357
+ indexed: false,
358
+ internalType: 'string',
359
+ name: 'message',
360
+ type: 'string',
361
+ },
362
+ {
363
+ indexed: false,
364
+ internalType: 'uint256',
365
+ name: 'timelock',
366
+ type: 'uint256',
367
+ },
368
+ ],
369
+ name: 'SubmitUnfreeze',
370
+ type: 'event',
371
+ },
372
+ ] as const;