@cryptonergy/smart-contracts-sdk 1.0.0-dev.3

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 (126) hide show
  1. package/dist/types/index.d.ts +1 -0
  2. package/dist/types/typechain-types/@openzeppelin/contracts/index.ts +11 -0
  3. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.ts +412 -0
  4. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC1967.ts +168 -0
  5. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC4626.ts +618 -0
  6. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.ts +90 -0
  7. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/index.ts +4 -0
  8. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.ts +69 -0
  9. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.ts +69 -0
  10. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.ts +69 -0
  11. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.ts +6 -0
  12. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.ts +10 -0
  13. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.ts +105 -0
  14. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.ts +69 -0
  15. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/ERC1967/index.ts +5 -0
  16. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/Proxy.ts +69 -0
  17. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/beacon/IBeacon.ts +90 -0
  18. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/beacon/index.ts +4 -0
  19. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/index.ts +8 -0
  20. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.ts +286 -0
  21. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.ts +262 -0
  22. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.ts +286 -0
  23. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.ts +4 -0
  24. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/index.ts +9 -0
  25. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.ts +69 -0
  26. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.ts +4 -0
  27. package/dist/types/typechain-types/@openzeppelin/contracts/token/index.ts +5 -0
  28. package/dist/types/typechain-types/@openzeppelin/contracts/utils/Address.ts +69 -0
  29. package/dist/types/typechain-types/@openzeppelin/contracts/utils/Errors.ts +69 -0
  30. package/dist/types/typechain-types/@openzeppelin/contracts/utils/index.ts +9 -0
  31. package/dist/types/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.ts +94 -0
  32. package/dist/types/typechain-types/@openzeppelin/contracts/utils/introspection/index.ts +4 -0
  33. package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.ts +69 -0
  34. package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/index.ts +4 -0
  35. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.ts +186 -0
  36. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/access/index.ts +4 -0
  37. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/index.ts +11 -0
  38. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.ts +5 -0
  39. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.ts +105 -0
  40. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.ts +196 -0
  41. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.ts +5 -0
  42. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.ts +318 -0
  43. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.ts +653 -0
  44. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/token/ERC20/extensions/index.ts +4 -0
  45. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/token/ERC20/index.ts +6 -0
  46. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/token/index.ts +5 -0
  47. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.ts +105 -0
  48. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.ts +105 -0
  49. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.ts +5 -0
  50. package/dist/types/typechain-types/@openzeppelin/index.ts +7 -0
  51. package/dist/types/typechain-types/common.ts +131 -0
  52. package/dist/types/typechain-types/contracts/ManagementFeeUpgradeableV1.ts +285 -0
  53. package/dist/types/typechain-types/contracts/PerformanceFeeUpgradeableV1.ts +320 -0
  54. package/dist/types/typechain-types/contracts/VaultFactoryV1.ts +456 -0
  55. package/dist/types/typechain-types/contracts/VaultV1.ts +1383 -0
  56. package/dist/types/typechain-types/contracts/index.ts +13 -0
  57. package/dist/types/typechain-types/contracts/mocks/MockERC20.ts +305 -0
  58. package/dist/types/typechain-types/contracts/mocks/index.ts +4 -0
  59. package/dist/types/typechain-types/contracts/providers/AddressProviderV1.ts +342 -0
  60. package/dist/types/typechain-types/contracts/providers/index.ts +4 -0
  61. package/dist/types/typechain-types/contracts/registers/VaultRegistryV1.ts +558 -0
  62. package/dist/types/typechain-types/contracts/registers/index.ts +4 -0
  63. package/dist/types/typechain-types/factories/@openzeppelin/contracts/index.ts +7 -0
  64. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.ts +393 -0
  65. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1967__factory.ts +67 -0
  66. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4626__factory.ts +634 -0
  67. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable__factory.ts +38 -0
  68. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/index.ts +4 -0
  69. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.ts +127 -0
  70. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.ts +111 -0
  71. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.ts +128 -0
  72. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.ts +6 -0
  73. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.ts +8 -0
  74. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy__factory.ts +144 -0
  75. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils__factory.ts +105 -0
  76. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/index.ts +5 -0
  77. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/Proxy__factory.ts +26 -0
  78. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/IBeacon__factory.ts +35 -0
  79. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/index.ts +4 -0
  80. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/index.ts +6 -0
  81. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.ts +330 -0
  82. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.ts +205 -0
  83. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.ts +247 -0
  84. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.ts +4 -0
  85. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.ts +7 -0
  86. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.ts +96 -0
  87. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.ts +4 -0
  88. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/index.ts +4 -0
  89. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.ts +75 -0
  90. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.ts +101 -0
  91. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/index.ts +7 -0
  92. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.ts +41 -0
  93. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.ts +4 -0
  94. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.ts +118 -0
  95. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.ts +4 -0
  96. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.ts +122 -0
  97. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/index.ts +4 -0
  98. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.ts +7 -0
  99. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.ts +4 -0
  100. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.ts +48 -0
  101. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable__factory.ts +153 -0
  102. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.ts +5 -0
  103. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable__factory.ts +356 -0
  104. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable__factory.ts +841 -0
  105. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/token/ERC20/extensions/index.ts +4 -0
  106. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/token/ERC20/index.ts +5 -0
  107. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/token/index.ts +4 -0
  108. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.ts +48 -0
  109. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable__factory.ts +57 -0
  110. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.ts +5 -0
  111. package/dist/types/typechain-types/factories/@openzeppelin/index.ts +5 -0
  112. package/dist/types/typechain-types/factories/contracts/ManagementFeeUpgradeableV1__factory.ts +175 -0
  113. package/dist/types/typechain-types/factories/contracts/PerformanceFeeUpgradeableV1__factory.ts +194 -0
  114. package/dist/types/typechain-types/factories/contracts/VaultFactoryV1__factory.ts +449 -0
  115. package/dist/types/typechain-types/factories/contracts/VaultV1__factory.ts +1523 -0
  116. package/dist/types/typechain-types/factories/contracts/index.ts +10 -0
  117. package/dist/types/typechain-types/factories/contracts/mocks/MockERC20__factory.ts +412 -0
  118. package/dist/types/typechain-types/factories/contracts/mocks/index.ts +4 -0
  119. package/dist/types/typechain-types/factories/contracts/providers/AddressProviderV1__factory.ts +359 -0
  120. package/dist/types/typechain-types/factories/contracts/providers/index.ts +4 -0
  121. package/dist/types/typechain-types/factories/contracts/registers/VaultRegistryV1__factory.ts +554 -0
  122. package/dist/types/typechain-types/factories/contracts/registers/index.ts +4 -0
  123. package/dist/types/typechain-types/factories/index.ts +5 -0
  124. package/dist/types/typechain-types/hardhat.d.ts +639 -0
  125. package/dist/types/typechain-types/index.ts +74 -0
  126. package/package.json +23 -0
@@ -0,0 +1,1523 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ import {
5
+ Contract,
6
+ ContractFactory,
7
+ ContractTransactionResponse,
8
+ Interface,
9
+ } from "ethers";
10
+ import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers";
11
+ import type { NonPayableOverrides } from "../../common";
12
+ import type { VaultV1, VaultV1Interface } from "../../contracts/VaultV1";
13
+
14
+ const _abi = [
15
+ {
16
+ inputs: [],
17
+ stateMutability: "nonpayable",
18
+ type: "constructor",
19
+ },
20
+ {
21
+ inputs: [
22
+ {
23
+ internalType: "address",
24
+ name: "target",
25
+ type: "address",
26
+ },
27
+ ],
28
+ name: "AddressEmptyCode",
29
+ type: "error",
30
+ },
31
+ {
32
+ inputs: [
33
+ {
34
+ internalType: "address",
35
+ name: "implementation",
36
+ type: "address",
37
+ },
38
+ ],
39
+ name: "ERC1967InvalidImplementation",
40
+ type: "error",
41
+ },
42
+ {
43
+ inputs: [],
44
+ name: "ERC1967NonPayable",
45
+ type: "error",
46
+ },
47
+ {
48
+ inputs: [
49
+ {
50
+ internalType: "address",
51
+ name: "spender",
52
+ type: "address",
53
+ },
54
+ {
55
+ internalType: "uint256",
56
+ name: "allowance",
57
+ type: "uint256",
58
+ },
59
+ {
60
+ internalType: "uint256",
61
+ name: "needed",
62
+ type: "uint256",
63
+ },
64
+ ],
65
+ name: "ERC20InsufficientAllowance",
66
+ type: "error",
67
+ },
68
+ {
69
+ inputs: [
70
+ {
71
+ internalType: "address",
72
+ name: "sender",
73
+ type: "address",
74
+ },
75
+ {
76
+ internalType: "uint256",
77
+ name: "balance",
78
+ type: "uint256",
79
+ },
80
+ {
81
+ internalType: "uint256",
82
+ name: "needed",
83
+ type: "uint256",
84
+ },
85
+ ],
86
+ name: "ERC20InsufficientBalance",
87
+ type: "error",
88
+ },
89
+ {
90
+ inputs: [
91
+ {
92
+ internalType: "address",
93
+ name: "approver",
94
+ type: "address",
95
+ },
96
+ ],
97
+ name: "ERC20InvalidApprover",
98
+ type: "error",
99
+ },
100
+ {
101
+ inputs: [
102
+ {
103
+ internalType: "address",
104
+ name: "receiver",
105
+ type: "address",
106
+ },
107
+ ],
108
+ name: "ERC20InvalidReceiver",
109
+ type: "error",
110
+ },
111
+ {
112
+ inputs: [
113
+ {
114
+ internalType: "address",
115
+ name: "sender",
116
+ type: "address",
117
+ },
118
+ ],
119
+ name: "ERC20InvalidSender",
120
+ type: "error",
121
+ },
122
+ {
123
+ inputs: [
124
+ {
125
+ internalType: "address",
126
+ name: "spender",
127
+ type: "address",
128
+ },
129
+ ],
130
+ name: "ERC20InvalidSpender",
131
+ type: "error",
132
+ },
133
+ {
134
+ inputs: [
135
+ {
136
+ internalType: "address",
137
+ name: "receiver",
138
+ type: "address",
139
+ },
140
+ {
141
+ internalType: "uint256",
142
+ name: "assets",
143
+ type: "uint256",
144
+ },
145
+ {
146
+ internalType: "uint256",
147
+ name: "max",
148
+ type: "uint256",
149
+ },
150
+ ],
151
+ name: "ERC4626ExceededMaxDeposit",
152
+ type: "error",
153
+ },
154
+ {
155
+ inputs: [
156
+ {
157
+ internalType: "address",
158
+ name: "receiver",
159
+ type: "address",
160
+ },
161
+ {
162
+ internalType: "uint256",
163
+ name: "shares",
164
+ type: "uint256",
165
+ },
166
+ {
167
+ internalType: "uint256",
168
+ name: "max",
169
+ type: "uint256",
170
+ },
171
+ ],
172
+ name: "ERC4626ExceededMaxMint",
173
+ type: "error",
174
+ },
175
+ {
176
+ inputs: [
177
+ {
178
+ internalType: "address",
179
+ name: "owner",
180
+ type: "address",
181
+ },
182
+ {
183
+ internalType: "uint256",
184
+ name: "shares",
185
+ type: "uint256",
186
+ },
187
+ {
188
+ internalType: "uint256",
189
+ name: "max",
190
+ type: "uint256",
191
+ },
192
+ ],
193
+ name: "ERC4626ExceededMaxRedeem",
194
+ type: "error",
195
+ },
196
+ {
197
+ inputs: [
198
+ {
199
+ internalType: "address",
200
+ name: "owner",
201
+ type: "address",
202
+ },
203
+ {
204
+ internalType: "uint256",
205
+ name: "assets",
206
+ type: "uint256",
207
+ },
208
+ {
209
+ internalType: "uint256",
210
+ name: "max",
211
+ type: "uint256",
212
+ },
213
+ ],
214
+ name: "ERC4626ExceededMaxWithdraw",
215
+ type: "error",
216
+ },
217
+ {
218
+ inputs: [],
219
+ name: "FailedCall",
220
+ type: "error",
221
+ },
222
+ {
223
+ inputs: [],
224
+ name: "FeeTooHigh",
225
+ type: "error",
226
+ },
227
+ {
228
+ inputs: [],
229
+ name: "InvalidInitialization",
230
+ type: "error",
231
+ },
232
+ {
233
+ inputs: [],
234
+ name: "NotInitializing",
235
+ type: "error",
236
+ },
237
+ {
238
+ inputs: [
239
+ {
240
+ internalType: "address",
241
+ name: "owner",
242
+ type: "address",
243
+ },
244
+ ],
245
+ name: "OwnableInvalidOwner",
246
+ type: "error",
247
+ },
248
+ {
249
+ inputs: [
250
+ {
251
+ internalType: "address",
252
+ name: "account",
253
+ type: "address",
254
+ },
255
+ ],
256
+ name: "OwnableUnauthorizedAccount",
257
+ type: "error",
258
+ },
259
+ {
260
+ inputs: [],
261
+ name: "PerformanceFeeTooHigh",
262
+ type: "error",
263
+ },
264
+ {
265
+ inputs: [],
266
+ name: "PerformanceFeeZeroRecipient",
267
+ type: "error",
268
+ },
269
+ {
270
+ inputs: [],
271
+ name: "ReentrancyGuardReentrantCall",
272
+ type: "error",
273
+ },
274
+ {
275
+ inputs: [
276
+ {
277
+ internalType: "address",
278
+ name: "token",
279
+ type: "address",
280
+ },
281
+ ],
282
+ name: "SafeERC20FailedOperation",
283
+ type: "error",
284
+ },
285
+ {
286
+ inputs: [],
287
+ name: "UUPSUnauthorizedCallContext",
288
+ type: "error",
289
+ },
290
+ {
291
+ inputs: [
292
+ {
293
+ internalType: "bytes32",
294
+ name: "slot",
295
+ type: "bytes32",
296
+ },
297
+ ],
298
+ name: "UUPSUnsupportedProxiableUUID",
299
+ type: "error",
300
+ },
301
+ {
302
+ inputs: [],
303
+ name: "ZeroAssets",
304
+ type: "error",
305
+ },
306
+ {
307
+ inputs: [],
308
+ name: "ZeroRecipient",
309
+ type: "error",
310
+ },
311
+ {
312
+ inputs: [],
313
+ name: "ZeroShares",
314
+ type: "error",
315
+ },
316
+ {
317
+ anonymous: false,
318
+ inputs: [
319
+ {
320
+ indexed: true,
321
+ internalType: "address",
322
+ name: "owner",
323
+ type: "address",
324
+ },
325
+ {
326
+ indexed: true,
327
+ internalType: "address",
328
+ name: "spender",
329
+ type: "address",
330
+ },
331
+ {
332
+ indexed: false,
333
+ internalType: "uint256",
334
+ name: "value",
335
+ type: "uint256",
336
+ },
337
+ ],
338
+ name: "Approval",
339
+ type: "event",
340
+ },
341
+ {
342
+ anonymous: false,
343
+ inputs: [
344
+ {
345
+ indexed: true,
346
+ internalType: "address",
347
+ name: "sender",
348
+ type: "address",
349
+ },
350
+ {
351
+ indexed: true,
352
+ internalType: "address",
353
+ name: "owner",
354
+ type: "address",
355
+ },
356
+ {
357
+ indexed: false,
358
+ internalType: "uint256",
359
+ name: "assets",
360
+ type: "uint256",
361
+ },
362
+ {
363
+ indexed: false,
364
+ internalType: "uint256",
365
+ name: "shares",
366
+ type: "uint256",
367
+ },
368
+ ],
369
+ name: "Deposit",
370
+ type: "event",
371
+ },
372
+ {
373
+ anonymous: false,
374
+ inputs: [
375
+ {
376
+ indexed: false,
377
+ internalType: "address",
378
+ name: "newRecipient",
379
+ type: "address",
380
+ },
381
+ ],
382
+ name: "FeeRecipientUpdated",
383
+ type: "event",
384
+ },
385
+ {
386
+ anonymous: false,
387
+ inputs: [
388
+ {
389
+ indexed: false,
390
+ internalType: "uint64",
391
+ name: "version",
392
+ type: "uint64",
393
+ },
394
+ ],
395
+ name: "Initialized",
396
+ type: "event",
397
+ },
398
+ {
399
+ anonymous: false,
400
+ inputs: [
401
+ {
402
+ indexed: false,
403
+ internalType: "uint256",
404
+ name: "feeShares",
405
+ type: "uint256",
406
+ },
407
+ {
408
+ indexed: false,
409
+ internalType: "uint48",
410
+ name: "timestamp",
411
+ type: "uint48",
412
+ },
413
+ ],
414
+ name: "ManagementFeeAccrued",
415
+ type: "event",
416
+ },
417
+ {
418
+ anonymous: false,
419
+ inputs: [
420
+ {
421
+ indexed: false,
422
+ internalType: "uint16",
423
+ name: "newFeeBps",
424
+ type: "uint16",
425
+ },
426
+ ],
427
+ name: "ManagementFeeUpdated",
428
+ type: "event",
429
+ },
430
+ {
431
+ anonymous: false,
432
+ inputs: [
433
+ {
434
+ indexed: true,
435
+ internalType: "address",
436
+ name: "previousOwner",
437
+ type: "address",
438
+ },
439
+ {
440
+ indexed: true,
441
+ internalType: "address",
442
+ name: "newOwner",
443
+ type: "address",
444
+ },
445
+ ],
446
+ name: "OwnershipTransferred",
447
+ type: "event",
448
+ },
449
+ {
450
+ anonymous: false,
451
+ inputs: [
452
+ {
453
+ indexed: false,
454
+ internalType: "uint256",
455
+ name: "feeShares",
456
+ type: "uint256",
457
+ },
458
+ {
459
+ indexed: false,
460
+ internalType: "uint48",
461
+ name: "timestamp",
462
+ type: "uint48",
463
+ },
464
+ {
465
+ indexed: false,
466
+ internalType: "uint256",
467
+ name: "newHighWaterMark",
468
+ type: "uint256",
469
+ },
470
+ ],
471
+ name: "PerformanceFeeAccrued",
472
+ type: "event",
473
+ },
474
+ {
475
+ anonymous: false,
476
+ inputs: [
477
+ {
478
+ indexed: false,
479
+ internalType: "uint16",
480
+ name: "newFeeBps",
481
+ type: "uint16",
482
+ },
483
+ ],
484
+ name: "PerformanceFeeBpsUpdated",
485
+ type: "event",
486
+ },
487
+ {
488
+ anonymous: false,
489
+ inputs: [
490
+ {
491
+ indexed: false,
492
+ internalType: "address",
493
+ name: "newRecipient",
494
+ type: "address",
495
+ },
496
+ ],
497
+ name: "PerformanceFeeRecipientUpdated",
498
+ type: "event",
499
+ },
500
+ {
501
+ anonymous: false,
502
+ inputs: [
503
+ {
504
+ indexed: true,
505
+ internalType: "address",
506
+ name: "from",
507
+ type: "address",
508
+ },
509
+ {
510
+ indexed: true,
511
+ internalType: "address",
512
+ name: "to",
513
+ type: "address",
514
+ },
515
+ {
516
+ indexed: false,
517
+ internalType: "uint256",
518
+ name: "value",
519
+ type: "uint256",
520
+ },
521
+ ],
522
+ name: "Transfer",
523
+ type: "event",
524
+ },
525
+ {
526
+ anonymous: false,
527
+ inputs: [
528
+ {
529
+ indexed: true,
530
+ internalType: "address",
531
+ name: "implementation",
532
+ type: "address",
533
+ },
534
+ ],
535
+ name: "Upgraded",
536
+ type: "event",
537
+ },
538
+ {
539
+ anonymous: false,
540
+ inputs: [
541
+ {
542
+ indexed: true,
543
+ internalType: "address",
544
+ name: "caller",
545
+ type: "address",
546
+ },
547
+ {
548
+ indexed: true,
549
+ internalType: "address",
550
+ name: "receiver",
551
+ type: "address",
552
+ },
553
+ {
554
+ indexed: false,
555
+ internalType: "uint256",
556
+ name: "assets",
557
+ type: "uint256",
558
+ },
559
+ {
560
+ indexed: false,
561
+ internalType: "uint256",
562
+ name: "shares",
563
+ type: "uint256",
564
+ },
565
+ ],
566
+ name: "VaultDeposited",
567
+ type: "event",
568
+ },
569
+ {
570
+ anonymous: false,
571
+ inputs: [
572
+ {
573
+ indexed: true,
574
+ internalType: "address",
575
+ name: "caller",
576
+ type: "address",
577
+ },
578
+ {
579
+ indexed: true,
580
+ internalType: "address",
581
+ name: "receiver",
582
+ type: "address",
583
+ },
584
+ {
585
+ indexed: true,
586
+ internalType: "address",
587
+ name: "owner",
588
+ type: "address",
589
+ },
590
+ {
591
+ indexed: false,
592
+ internalType: "uint256",
593
+ name: "assets",
594
+ type: "uint256",
595
+ },
596
+ {
597
+ indexed: false,
598
+ internalType: "uint256",
599
+ name: "shares",
600
+ type: "uint256",
601
+ },
602
+ ],
603
+ name: "VaultWithdrawn",
604
+ type: "event",
605
+ },
606
+ {
607
+ anonymous: false,
608
+ inputs: [
609
+ {
610
+ indexed: true,
611
+ internalType: "address",
612
+ name: "sender",
613
+ type: "address",
614
+ },
615
+ {
616
+ indexed: true,
617
+ internalType: "address",
618
+ name: "receiver",
619
+ type: "address",
620
+ },
621
+ {
622
+ indexed: true,
623
+ internalType: "address",
624
+ name: "owner",
625
+ type: "address",
626
+ },
627
+ {
628
+ indexed: false,
629
+ internalType: "uint256",
630
+ name: "assets",
631
+ type: "uint256",
632
+ },
633
+ {
634
+ indexed: false,
635
+ internalType: "uint256",
636
+ name: "shares",
637
+ type: "uint256",
638
+ },
639
+ ],
640
+ name: "Withdraw",
641
+ type: "event",
642
+ },
643
+ {
644
+ inputs: [],
645
+ name: "MAX_BPS",
646
+ outputs: [
647
+ {
648
+ internalType: "uint16",
649
+ name: "",
650
+ type: "uint16",
651
+ },
652
+ ],
653
+ stateMutability: "view",
654
+ type: "function",
655
+ },
656
+ {
657
+ inputs: [],
658
+ name: "PERFORMANCE_MAX_BPS",
659
+ outputs: [
660
+ {
661
+ internalType: "uint16",
662
+ name: "",
663
+ type: "uint16",
664
+ },
665
+ ],
666
+ stateMutability: "view",
667
+ type: "function",
668
+ },
669
+ {
670
+ inputs: [],
671
+ name: "UPGRADE_INTERFACE_VERSION",
672
+ outputs: [
673
+ {
674
+ internalType: "string",
675
+ name: "",
676
+ type: "string",
677
+ },
678
+ ],
679
+ stateMutability: "view",
680
+ type: "function",
681
+ },
682
+ {
683
+ inputs: [],
684
+ name: "accrueManagementFee",
685
+ outputs: [],
686
+ stateMutability: "nonpayable",
687
+ type: "function",
688
+ },
689
+ {
690
+ inputs: [
691
+ {
692
+ internalType: "address",
693
+ name: "owner",
694
+ type: "address",
695
+ },
696
+ {
697
+ internalType: "address",
698
+ name: "spender",
699
+ type: "address",
700
+ },
701
+ ],
702
+ name: "allowance",
703
+ outputs: [
704
+ {
705
+ internalType: "uint256",
706
+ name: "",
707
+ type: "uint256",
708
+ },
709
+ ],
710
+ stateMutability: "view",
711
+ type: "function",
712
+ },
713
+ {
714
+ inputs: [
715
+ {
716
+ internalType: "address",
717
+ name: "spender",
718
+ type: "address",
719
+ },
720
+ {
721
+ internalType: "uint256",
722
+ name: "value",
723
+ type: "uint256",
724
+ },
725
+ ],
726
+ name: "approve",
727
+ outputs: [
728
+ {
729
+ internalType: "bool",
730
+ name: "",
731
+ type: "bool",
732
+ },
733
+ ],
734
+ stateMutability: "nonpayable",
735
+ type: "function",
736
+ },
737
+ {
738
+ inputs: [],
739
+ name: "asset",
740
+ outputs: [
741
+ {
742
+ internalType: "address",
743
+ name: "",
744
+ type: "address",
745
+ },
746
+ ],
747
+ stateMutability: "view",
748
+ type: "function",
749
+ },
750
+ {
751
+ inputs: [
752
+ {
753
+ internalType: "address",
754
+ name: "account",
755
+ type: "address",
756
+ },
757
+ ],
758
+ name: "balanceOf",
759
+ outputs: [
760
+ {
761
+ internalType: "uint256",
762
+ name: "",
763
+ type: "uint256",
764
+ },
765
+ ],
766
+ stateMutability: "view",
767
+ type: "function",
768
+ },
769
+ {
770
+ inputs: [
771
+ {
772
+ internalType: "uint256",
773
+ name: "shares",
774
+ type: "uint256",
775
+ },
776
+ ],
777
+ name: "convertToAssets",
778
+ outputs: [
779
+ {
780
+ internalType: "uint256",
781
+ name: "",
782
+ type: "uint256",
783
+ },
784
+ ],
785
+ stateMutability: "view",
786
+ type: "function",
787
+ },
788
+ {
789
+ inputs: [
790
+ {
791
+ internalType: "uint256",
792
+ name: "assets",
793
+ type: "uint256",
794
+ },
795
+ ],
796
+ name: "convertToShares",
797
+ outputs: [
798
+ {
799
+ internalType: "uint256",
800
+ name: "",
801
+ type: "uint256",
802
+ },
803
+ ],
804
+ stateMutability: "view",
805
+ type: "function",
806
+ },
807
+ {
808
+ inputs: [],
809
+ name: "crystallizePerformanceFee",
810
+ outputs: [],
811
+ stateMutability: "nonpayable",
812
+ type: "function",
813
+ },
814
+ {
815
+ inputs: [],
816
+ name: "currentAssetsPerShare",
817
+ outputs: [
818
+ {
819
+ internalType: "uint256",
820
+ name: "",
821
+ type: "uint256",
822
+ },
823
+ ],
824
+ stateMutability: "view",
825
+ type: "function",
826
+ },
827
+ {
828
+ inputs: [],
829
+ name: "decimals",
830
+ outputs: [
831
+ {
832
+ internalType: "uint8",
833
+ name: "",
834
+ type: "uint8",
835
+ },
836
+ ],
837
+ stateMutability: "view",
838
+ type: "function",
839
+ },
840
+ {
841
+ inputs: [
842
+ {
843
+ internalType: "uint256",
844
+ name: "assets",
845
+ type: "uint256",
846
+ },
847
+ {
848
+ internalType: "address",
849
+ name: "receiver",
850
+ type: "address",
851
+ },
852
+ ],
853
+ name: "deposit",
854
+ outputs: [
855
+ {
856
+ internalType: "uint256",
857
+ name: "shares",
858
+ type: "uint256",
859
+ },
860
+ ],
861
+ stateMutability: "nonpayable",
862
+ type: "function",
863
+ },
864
+ {
865
+ inputs: [],
866
+ name: "feeBps",
867
+ outputs: [
868
+ {
869
+ internalType: "uint16",
870
+ name: "",
871
+ type: "uint16",
872
+ },
873
+ ],
874
+ stateMutability: "view",
875
+ type: "function",
876
+ },
877
+ {
878
+ inputs: [],
879
+ name: "feeRecipient",
880
+ outputs: [
881
+ {
882
+ internalType: "address",
883
+ name: "",
884
+ type: "address",
885
+ },
886
+ ],
887
+ stateMutability: "view",
888
+ type: "function",
889
+ },
890
+ {
891
+ inputs: [],
892
+ name: "getPerformanceFeeBps",
893
+ outputs: [
894
+ {
895
+ internalType: "uint16",
896
+ name: "",
897
+ type: "uint16",
898
+ },
899
+ ],
900
+ stateMutability: "view",
901
+ type: "function",
902
+ },
903
+ {
904
+ inputs: [],
905
+ name: "highWaterMark",
906
+ outputs: [
907
+ {
908
+ internalType: "uint256",
909
+ name: "",
910
+ type: "uint256",
911
+ },
912
+ ],
913
+ stateMutability: "view",
914
+ type: "function",
915
+ },
916
+ {
917
+ inputs: [
918
+ {
919
+ internalType: "contract IERC20Metadata",
920
+ name: "asset_",
921
+ type: "address",
922
+ },
923
+ {
924
+ internalType: "string",
925
+ name: "name_",
926
+ type: "string",
927
+ },
928
+ {
929
+ internalType: "string",
930
+ name: "symbol_",
931
+ type: "string",
932
+ },
933
+ {
934
+ internalType: "address",
935
+ name: "owner_",
936
+ type: "address",
937
+ },
938
+ ],
939
+ name: "initialize",
940
+ outputs: [],
941
+ stateMutability: "nonpayable",
942
+ type: "function",
943
+ },
944
+ {
945
+ inputs: [],
946
+ name: "lastFeeAccrual",
947
+ outputs: [
948
+ {
949
+ internalType: "uint48",
950
+ name: "",
951
+ type: "uint48",
952
+ },
953
+ ],
954
+ stateMutability: "view",
955
+ type: "function",
956
+ },
957
+ {
958
+ inputs: [],
959
+ name: "managementFeeBps",
960
+ outputs: [
961
+ {
962
+ internalType: "uint16",
963
+ name: "",
964
+ type: "uint16",
965
+ },
966
+ ],
967
+ stateMutability: "view",
968
+ type: "function",
969
+ },
970
+ {
971
+ inputs: [
972
+ {
973
+ internalType: "address",
974
+ name: "",
975
+ type: "address",
976
+ },
977
+ ],
978
+ name: "maxDeposit",
979
+ outputs: [
980
+ {
981
+ internalType: "uint256",
982
+ name: "",
983
+ type: "uint256",
984
+ },
985
+ ],
986
+ stateMutability: "view",
987
+ type: "function",
988
+ },
989
+ {
990
+ inputs: [
991
+ {
992
+ internalType: "address",
993
+ name: "",
994
+ type: "address",
995
+ },
996
+ ],
997
+ name: "maxMint",
998
+ outputs: [
999
+ {
1000
+ internalType: "uint256",
1001
+ name: "",
1002
+ type: "uint256",
1003
+ },
1004
+ ],
1005
+ stateMutability: "view",
1006
+ type: "function",
1007
+ },
1008
+ {
1009
+ inputs: [
1010
+ {
1011
+ internalType: "address",
1012
+ name: "owner",
1013
+ type: "address",
1014
+ },
1015
+ ],
1016
+ name: "maxRedeem",
1017
+ outputs: [
1018
+ {
1019
+ internalType: "uint256",
1020
+ name: "",
1021
+ type: "uint256",
1022
+ },
1023
+ ],
1024
+ stateMutability: "view",
1025
+ type: "function",
1026
+ },
1027
+ {
1028
+ inputs: [
1029
+ {
1030
+ internalType: "address",
1031
+ name: "owner",
1032
+ type: "address",
1033
+ },
1034
+ ],
1035
+ name: "maxWithdraw",
1036
+ outputs: [
1037
+ {
1038
+ internalType: "uint256",
1039
+ name: "",
1040
+ type: "uint256",
1041
+ },
1042
+ ],
1043
+ stateMutability: "view",
1044
+ type: "function",
1045
+ },
1046
+ {
1047
+ inputs: [
1048
+ {
1049
+ internalType: "uint256",
1050
+ name: "shares",
1051
+ type: "uint256",
1052
+ },
1053
+ {
1054
+ internalType: "address",
1055
+ name: "receiver",
1056
+ type: "address",
1057
+ },
1058
+ ],
1059
+ name: "mint",
1060
+ outputs: [
1061
+ {
1062
+ internalType: "uint256",
1063
+ name: "assets",
1064
+ type: "uint256",
1065
+ },
1066
+ ],
1067
+ stateMutability: "nonpayable",
1068
+ type: "function",
1069
+ },
1070
+ {
1071
+ inputs: [],
1072
+ name: "name",
1073
+ outputs: [
1074
+ {
1075
+ internalType: "string",
1076
+ name: "",
1077
+ type: "string",
1078
+ },
1079
+ ],
1080
+ stateMutability: "view",
1081
+ type: "function",
1082
+ },
1083
+ {
1084
+ inputs: [],
1085
+ name: "owner",
1086
+ outputs: [
1087
+ {
1088
+ internalType: "address",
1089
+ name: "",
1090
+ type: "address",
1091
+ },
1092
+ ],
1093
+ stateMutability: "view",
1094
+ type: "function",
1095
+ },
1096
+ {
1097
+ inputs: [],
1098
+ name: "pendingManagementFeeShares",
1099
+ outputs: [
1100
+ {
1101
+ internalType: "uint256",
1102
+ name: "",
1103
+ type: "uint256",
1104
+ },
1105
+ ],
1106
+ stateMutability: "view",
1107
+ type: "function",
1108
+ },
1109
+ {
1110
+ inputs: [],
1111
+ name: "pendingPerformanceFeeShares",
1112
+ outputs: [
1113
+ {
1114
+ internalType: "uint256",
1115
+ name: "",
1116
+ type: "uint256",
1117
+ },
1118
+ ],
1119
+ stateMutability: "view",
1120
+ type: "function",
1121
+ },
1122
+ {
1123
+ inputs: [],
1124
+ name: "performanceFeeBps",
1125
+ outputs: [
1126
+ {
1127
+ internalType: "uint16",
1128
+ name: "",
1129
+ type: "uint16",
1130
+ },
1131
+ ],
1132
+ stateMutability: "view",
1133
+ type: "function",
1134
+ },
1135
+ {
1136
+ inputs: [],
1137
+ name: "performanceFeeRecipient",
1138
+ outputs: [
1139
+ {
1140
+ internalType: "address",
1141
+ name: "",
1142
+ type: "address",
1143
+ },
1144
+ ],
1145
+ stateMutability: "view",
1146
+ type: "function",
1147
+ },
1148
+ {
1149
+ inputs: [
1150
+ {
1151
+ internalType: "uint256",
1152
+ name: "assets",
1153
+ type: "uint256",
1154
+ },
1155
+ ],
1156
+ name: "previewDeposit",
1157
+ outputs: [
1158
+ {
1159
+ internalType: "uint256",
1160
+ name: "",
1161
+ type: "uint256",
1162
+ },
1163
+ ],
1164
+ stateMutability: "view",
1165
+ type: "function",
1166
+ },
1167
+ {
1168
+ inputs: [
1169
+ {
1170
+ internalType: "uint256",
1171
+ name: "shares",
1172
+ type: "uint256",
1173
+ },
1174
+ ],
1175
+ name: "previewMint",
1176
+ outputs: [
1177
+ {
1178
+ internalType: "uint256",
1179
+ name: "",
1180
+ type: "uint256",
1181
+ },
1182
+ ],
1183
+ stateMutability: "view",
1184
+ type: "function",
1185
+ },
1186
+ {
1187
+ inputs: [
1188
+ {
1189
+ internalType: "uint256",
1190
+ name: "shares",
1191
+ type: "uint256",
1192
+ },
1193
+ ],
1194
+ name: "previewRedeem",
1195
+ outputs: [
1196
+ {
1197
+ internalType: "uint256",
1198
+ name: "",
1199
+ type: "uint256",
1200
+ },
1201
+ ],
1202
+ stateMutability: "view",
1203
+ type: "function",
1204
+ },
1205
+ {
1206
+ inputs: [
1207
+ {
1208
+ internalType: "uint256",
1209
+ name: "assets",
1210
+ type: "uint256",
1211
+ },
1212
+ ],
1213
+ name: "previewWithdraw",
1214
+ outputs: [
1215
+ {
1216
+ internalType: "uint256",
1217
+ name: "",
1218
+ type: "uint256",
1219
+ },
1220
+ ],
1221
+ stateMutability: "view",
1222
+ type: "function",
1223
+ },
1224
+ {
1225
+ inputs: [],
1226
+ name: "proxiableUUID",
1227
+ outputs: [
1228
+ {
1229
+ internalType: "bytes32",
1230
+ name: "",
1231
+ type: "bytes32",
1232
+ },
1233
+ ],
1234
+ stateMutability: "view",
1235
+ type: "function",
1236
+ },
1237
+ {
1238
+ inputs: [
1239
+ {
1240
+ internalType: "uint256",
1241
+ name: "shares",
1242
+ type: "uint256",
1243
+ },
1244
+ {
1245
+ internalType: "address",
1246
+ name: "receiver",
1247
+ type: "address",
1248
+ },
1249
+ {
1250
+ internalType: "address",
1251
+ name: "owner",
1252
+ type: "address",
1253
+ },
1254
+ ],
1255
+ name: "redeem",
1256
+ outputs: [
1257
+ {
1258
+ internalType: "uint256",
1259
+ name: "assets",
1260
+ type: "uint256",
1261
+ },
1262
+ ],
1263
+ stateMutability: "nonpayable",
1264
+ type: "function",
1265
+ },
1266
+ {
1267
+ inputs: [],
1268
+ name: "renounceOwnership",
1269
+ outputs: [],
1270
+ stateMutability: "nonpayable",
1271
+ type: "function",
1272
+ },
1273
+ {
1274
+ inputs: [
1275
+ {
1276
+ internalType: "uint16",
1277
+ name: "newFeeBps",
1278
+ type: "uint16",
1279
+ },
1280
+ ],
1281
+ name: "setManagementFeeBps",
1282
+ outputs: [],
1283
+ stateMutability: "nonpayable",
1284
+ type: "function",
1285
+ },
1286
+ {
1287
+ inputs: [
1288
+ {
1289
+ internalType: "address",
1290
+ name: "newRecipient",
1291
+ type: "address",
1292
+ },
1293
+ ],
1294
+ name: "setManagementFeeRecipient",
1295
+ outputs: [],
1296
+ stateMutability: "nonpayable",
1297
+ type: "function",
1298
+ },
1299
+ {
1300
+ inputs: [
1301
+ {
1302
+ internalType: "uint16",
1303
+ name: "newFeeBps",
1304
+ type: "uint16",
1305
+ },
1306
+ ],
1307
+ name: "setPerformanceFeeBps",
1308
+ outputs: [],
1309
+ stateMutability: "nonpayable",
1310
+ type: "function",
1311
+ },
1312
+ {
1313
+ inputs: [
1314
+ {
1315
+ internalType: "address",
1316
+ name: "newRecipient",
1317
+ type: "address",
1318
+ },
1319
+ ],
1320
+ name: "setPerformanceFeeRecipient",
1321
+ outputs: [],
1322
+ stateMutability: "nonpayable",
1323
+ type: "function",
1324
+ },
1325
+ {
1326
+ inputs: [],
1327
+ name: "symbol",
1328
+ outputs: [
1329
+ {
1330
+ internalType: "string",
1331
+ name: "",
1332
+ type: "string",
1333
+ },
1334
+ ],
1335
+ stateMutability: "view",
1336
+ type: "function",
1337
+ },
1338
+ {
1339
+ inputs: [],
1340
+ name: "totalAssets",
1341
+ outputs: [
1342
+ {
1343
+ internalType: "uint256",
1344
+ name: "",
1345
+ type: "uint256",
1346
+ },
1347
+ ],
1348
+ stateMutability: "view",
1349
+ type: "function",
1350
+ },
1351
+ {
1352
+ inputs: [],
1353
+ name: "totalSupply",
1354
+ outputs: [
1355
+ {
1356
+ internalType: "uint256",
1357
+ name: "",
1358
+ type: "uint256",
1359
+ },
1360
+ ],
1361
+ stateMutability: "view",
1362
+ type: "function",
1363
+ },
1364
+ {
1365
+ inputs: [
1366
+ {
1367
+ internalType: "address",
1368
+ name: "to",
1369
+ type: "address",
1370
+ },
1371
+ {
1372
+ internalType: "uint256",
1373
+ name: "value",
1374
+ type: "uint256",
1375
+ },
1376
+ ],
1377
+ name: "transfer",
1378
+ outputs: [
1379
+ {
1380
+ internalType: "bool",
1381
+ name: "",
1382
+ type: "bool",
1383
+ },
1384
+ ],
1385
+ stateMutability: "nonpayable",
1386
+ type: "function",
1387
+ },
1388
+ {
1389
+ inputs: [
1390
+ {
1391
+ internalType: "address",
1392
+ name: "from",
1393
+ type: "address",
1394
+ },
1395
+ {
1396
+ internalType: "address",
1397
+ name: "to",
1398
+ type: "address",
1399
+ },
1400
+ {
1401
+ internalType: "uint256",
1402
+ name: "value",
1403
+ type: "uint256",
1404
+ },
1405
+ ],
1406
+ name: "transferFrom",
1407
+ outputs: [
1408
+ {
1409
+ internalType: "bool",
1410
+ name: "",
1411
+ type: "bool",
1412
+ },
1413
+ ],
1414
+ stateMutability: "nonpayable",
1415
+ type: "function",
1416
+ },
1417
+ {
1418
+ inputs: [
1419
+ {
1420
+ internalType: "address",
1421
+ name: "newOwner",
1422
+ type: "address",
1423
+ },
1424
+ ],
1425
+ name: "transferOwnership",
1426
+ outputs: [],
1427
+ stateMutability: "nonpayable",
1428
+ type: "function",
1429
+ },
1430
+ {
1431
+ inputs: [
1432
+ {
1433
+ internalType: "address",
1434
+ name: "newImplementation",
1435
+ type: "address",
1436
+ },
1437
+ {
1438
+ internalType: "bytes",
1439
+ name: "data",
1440
+ type: "bytes",
1441
+ },
1442
+ ],
1443
+ name: "upgradeToAndCall",
1444
+ outputs: [],
1445
+ stateMutability: "payable",
1446
+ type: "function",
1447
+ },
1448
+ {
1449
+ inputs: [
1450
+ {
1451
+ internalType: "uint256",
1452
+ name: "assets",
1453
+ type: "uint256",
1454
+ },
1455
+ {
1456
+ internalType: "address",
1457
+ name: "receiver",
1458
+ type: "address",
1459
+ },
1460
+ {
1461
+ internalType: "address",
1462
+ name: "owner",
1463
+ type: "address",
1464
+ },
1465
+ ],
1466
+ name: "withdraw",
1467
+ outputs: [
1468
+ {
1469
+ internalType: "uint256",
1470
+ name: "shares",
1471
+ type: "uint256",
1472
+ },
1473
+ ],
1474
+ stateMutability: "nonpayable",
1475
+ type: "function",
1476
+ },
1477
+ ] as const;
1478
+
1479
+ const _bytecode =
1480
+ "0x60a06040523060805234801561001457600080fd5b5061001d610022565b6100d4565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100725760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146100d15780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b608051612e746100fd600039600081816112d1015281816112fa015261143b0152612e746000f3fe6080604052600436106102e45760003560e01c80638da5cb5b11610190578063bc87349c116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b14610867578063f34fd6c614610887578063f35c530e1461089c578063fd967f471461089c57600080fd5b8063dd62ed3e14610827578063ed27f7c914610847578063ef8b30f7146107c757600080fd5b8063bc87349c1461079d578063c2f1ff61146107b2578063c63d75b614610492578063c6e6f592146107c7578063ce96cb77146107e7578063d905777e1461080757600080fd5b8063a9059cbb11610149578063b460af9411610123578063b460af94146106fe578063b9d4e8791461071e578063ba08765214610740578063bc0bdf501461076057600080fd5b8063a9059cbb1461068d578063ad3cb1cc146106ad578063b3d7f6b9146106de57600080fd5b80638da5cb5b146105f95780638df45c081461060e57806394bf804d1461062357806395d89b41146106435780639faae46414610658578063a8e874971461067857600080fd5b8063402d267d1161024f5780635e833b8b116102085780636a5f1aa2116101e25780636a5f1aa2146105845780636e553f65146105a457806370a08231146105c4578063715018a6146105e457600080fd5b80635e833b8b14610524578063613d25bb146105445780636531c6e71461056457600080fd5b8063402d267d1461049257806346904840146104b45780634cdad506146103335780634f1ef286146104da57806352d1902d146104ef5780635551e83a1461050457600080fd5b80631e8410da116102a15780631e8410da146103c557806323b872dd146103db57806324a9d853146103fb578063313ce567146104235780633813c35a1461044a57806338d52e0f1461046557600080fd5b806301e1d114146102e957806306fdde031461031157806307a2d13a14610333578063095ea7b3146103535780630a28a4771461038357806318160ddd146103a3575b600080fd5b3480156102f557600080fd5b506102fe6108b2565b6040519081526020015b60405180910390f35b34801561031d57600080fd5b5061032661092b565b6040516103089190612711565b34801561033f57600080fd5b506102fe61034e366004612744565b6109ee565b34801561035f57600080fd5b5061037361036e366004612772565b610a01565b6040519015158152602001610308565b34801561038f57600080fd5b506102fe61039e366004612744565b610a19565b3480156103af57600080fd5b50600080516020612ddf833981519152546102fe565b3480156103d157600080fd5b506102fe60025481565b3480156103e757600080fd5b506103736103f636600461279e565b610a26565b34801561040757600080fd5b5060005461ffff165b60405161ffff9091168152602001610308565b34801561042f57600080fd5b50610438610a4c565b60405160ff9091168152602001610308565b34801561045657600080fd5b506000546104109061ffff1681565b34801561047157600080fd5b5061047a610a56565b6040516001600160a01b039091168152602001610308565b34801561049e57600080fd5b506102fe6104ad3660046127df565b5060001990565b3480156104c057600080fd5b5060005461047a906201000090046001600160a01b031681565b6104ed6104e8366004612812565b610a8b565b005b3480156104fb57600080fd5b506102fe610aaa565b34801561051057600080fd5b50600054600160e01b900461ffff16610410565b34801561053057600080fd5b506104ed61053f3660046128de565b610ac7565b34801561055057600080fd5b506104ed61055f36600461294b565b610adb565b34801561057057600080fd5b506104ed61057f3660046128de565b610c7e565b34801561059057600080fd5b506104ed61059f3660046127df565b610c8f565b3480156105b057600080fd5b506102fe6105bf3660046129e5565b610ca0565b3480156105d057600080fd5b506102fe6105df3660046127df565b610d2a565b3480156105f057600080fd5b506104ed610d52565b34801561060557600080fd5b5061047a610d66565b34801561061a57600080fd5b506102fe610d8f565b34801561062f57600080fd5b506102fe61063e3660046129e5565b610ddc565b34801561064f57600080fd5b50610326610e4f565b34801561066457600080fd5b506104ed6106733660046127df565b610e8e565b34801561068457600080fd5b506102fe610e9f565b34801561069957600080fd5b506103736106a8366004612772565b610eaa565b3480156106b957600080fd5b50610326604051806040016040528060058152602001640352e302e360dc1b81525081565b3480156106ea57600080fd5b506102fe6106f9366004612744565b610eb8565b34801561070a57600080fd5b506102fe610719366004612a15565b610ec5565b34801561072a57600080fd5b5060005461041090600160e01b900461ffff1681565b34801561074c57600080fd5b506102fe61075b366004612a15565b610f50565b34801561076c57600080fd5b5060005461078690600160b01b900465ffffffffffff1681565b60405165ffffffffffff9091168152602001610308565b3480156107a957600080fd5b506104ed610fc4565b3480156107be57600080fd5b506102fe610feb565b3480156107d357600080fd5b506102fe6107e2366004612744565b61105f565b3480156107f357600080fd5b506102fe6108023660046127df565b61106c565b34801561081357600080fd5b506102fe6108223660046127df565b611081565b34801561083357600080fd5b506102fe610842366004612a57565b61108c565b34801561085357600080fd5b5060015461047a906001600160a01b031681565b34801561087357600080fd5b506104ed6108823660046127df565b6110d6565b34801561089357600080fd5b506104ed611116565b3480156108a857600080fd5b5061041061271081565b60006108bc610a56565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015610902573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109269190612a85565b905090565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace038054606091600080516020612dbf8339815191529161096a90612a9e565b80601f016020809104026020016040519081016040528092919081815260200182805461099690612a9e565b80156109e35780601f106109b8576101008083540402835291602001916109e3565b820191906000526020600020905b8154815290600101906020018083116109c657829003601f168201915b505050505091505090565b60006109fb826000611126565b92915050565b600033610a0f81858561116d565b5060019392505050565b60006109fb82600161117f565b600033610a348582856111bc565b610a3f858585611223565b60019150505b9392505050565b6000610926611282565b6000807f0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e005b546001600160a01b031692915050565b610a936112c6565b610a9c8261136b565b610aa68282611373565b5050565b6000610ab4611430565b50600080516020612dff83398151915290565b610acf611479565b610ad8816114ab565b50565b6000610ae5611529565b805490915060ff600160401b820416159067ffffffffffffffff16600081158015610b0d5750825b905060008267ffffffffffffffff166001148015610b2a5750303b155b905081158015610b38575080155b15610b565760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610b8057845460ff60401b1916600160401b1785555b610bf38a8a8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8e018190048102820181019092528c815292508c91508b908190840183828082843760009201919091525061155292505050565b610bfc8b611564565b610c0586611575565b610c0d611586565b610c1561158e565b610c2060008761159e565b610c2b600087611644565b8315610c7157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050505050565b610c86611479565b610ad8816116ea565b610c97611479565b610ad881611755565b6000610caa6117ca565b610cb2611802565b610cba6118c7565b82600003610cdb57604051630cb65c7760e21b815260040160405180910390fd5b610ce48361105f565b905080600003610d0757604051639811e0c760e01b815260040160405180910390fd5b610d13338385846119d5565b6109fb6001600080516020612e1f83398151915255565b6001600160a01b03166000908152600080516020612dbf833981519152602052604090205490565b610d5a611479565b610d646000611a51565b565b6000807f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300610a7b565b600080610d9a611ac2565b905080600003610dac57600091505090565b6000610db6611ada565b905081610dcb670de0b6b3a764000083612aee565b610dd59190612b1b565b9250505090565b6000610de66117ca565b610dee611802565b610df66118c7565b82600003610e1757604051639811e0c760e01b815260040160405180910390fd5b610e2083610eb8565b905080600003610e4357604051630cb65c7760e21b815260040160405180910390fd5b610d13338383866119d5565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace048054606091600080516020612dbf8339815191529161096a90612a9e565b610e96611479565b610ad881611ae4565b600061092642611b63565b600033610a0f818585611223565b60006109fb826001611126565b6000610ecf6117ca565b610ed7611802565b610edf6118c7565b83600003610f0057604051630cb65c7760e21b815260040160405180910390fd5b610f0984610a19565b905080600003610f2c57604051639811e0c760e01b815260040160405180910390fd5b610f393384848785611c22565b610a456001600080516020612e1f83398151915255565b6000610f5a6117ca565b610f62611802565b610f6a6118c7565b83600003610f8b57604051639811e0c760e01b815260040160405180910390fd5b610f94846109ee565b905080600003610fb757604051630cb65c7760e21b815260040160405180910390fd5b610f393384848488611c22565b610fcc6117ca565b610fd46118c7565b610d646001600080516020612e1f83398151915255565b600080610ff6611ac2565b90508060000361100857600091505090565b6000611012610d8f565b9050806000036110255760009250505090565b600254600081900361103b576000935050505090565b80821161104c576000935050505090565b611057828285611c96565b935050505090565b60006109fb82600061117f565b60006109fb61107a83610d2a565b6000611126565b60006109fb82610d2a565b6001600160a01b0391821660009081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b6110de611479565b6001600160a01b03811661110d57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b610ad881611a51565b61111e6117ca565b610fd4611802565b6000610a456111336108b2565b61113e906001612b2f565b61114a6000600a612c29565b600080516020612ddf833981519152546111649190612b2f565b85919085611d32565b61117a8383836001611d76565b505050565b6000610a4561118f82600a612c29565b600080516020612ddf833981519152546111a99190612b2f565b6111b16108b2565b611164906001612b2f565b60006111c8848461108c565b905060001981101561121d578181101561120e57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401611104565b61121d84848484036000611d76565b50505050565b6001600160a01b03831661124d57604051634b637e8f60e11b815260006004820152602401611104565b6001600160a01b0382166112775760405163ec442f0560e01b815260006004820152602401611104565b61117a838383611e5e565b6000807f0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e009050600081546112c09190600160a01b900460ff16612c38565b91505090565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061134d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611341600080516020612dff833981519152546001600160a01b031690565b6001600160a01b031614155b15610d645760405163703e46dd60e11b815260040160405180910390fd5b610ad8611479565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156113cd575060408051601f3d908101601f191682019092526113ca91810190612a85565b60015b6113f557604051634c9c8ce360e01b81526001600160a01b0383166004820152602401611104565b600080516020612dff833981519152811461142657604051632a87526960e21b815260048101829052602401611104565b61117a8383611f8e565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610d645760405163703e46dd60e11b815260040160405180910390fd5b33611482610d66565b6001600160a01b031614610d645760405163118cdaa760e01b8152336004820152602401611104565b61271061ffff821611156114d2576040516326e6a3c760e21b815260040160405180910390fd5b6000805461ffff60e01b1916600160e01b61ffff8416908102919091179091556040519081527f1b044245dfb063545fc2364c46fadfe93d8a024bede5e8a6539b41332daa984a906020015b60405180910390a150565b6000807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a006109fb565b61155a611fe4565b610aa68282612009565b61156c611fe4565b610ad88161205a565b61157d611fe4565b610ad8816120de565b610d64611fe4565b611596611fe4565b610d646120e6565b6115a6611fe4565b61271061ffff831611156115cd5760405163cd4e616760e01b815260040160405180910390fd5b6001600160a01b0381166115f45760405163d27b444360e01b815260040160405180910390fd5b6000805461ffff939093166001600160b01b031990931692909217620100006001600160a01b0392909216919091021765ffffffffffff60b01b1916600160b01b4265ffffffffffff1602179055565b61164c611fe4565b61271061ffff83161115611673576040516326e6a3c760e21b815260040160405180910390fd5b6001600160a01b03811661169a57604051630548bf2960e51b815260040160405180910390fd5b6000805461ffff909316600160e01b0261ffff60e01b1990931692909217909155600180546001600160a01b039092166001600160a01b0319909216919091179055670de0b6b3a7640000600255565b61271061ffff821611156117115760405163cd4e616760e01b815260040160405180910390fd5b6000805461ffff191661ffff83169081179091556040519081527fc4eec90bd91e3e929c5f8f28f94b3f302d6c560d5263d4f56a6a73e051cfaa629060200161151e565b6001600160a01b03811661177c57604051630548bf2960e51b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f939c33bbb5fe1fa1d8b709606d083e76dbc3e2e3d6f4811432252b8838501d9b9060200161151e565b600080516020612e1f8339815191528054600119016117fc57604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b60005461ffff16158061182457506000546201000090046001600160a01b0316155b1561182b57565b42600061183782611b63565b6000805465ffffffffffff60b01b1916600160b01b65ffffffffffff861602178155909150819003611867575050565b600054611883906201000090046001600160a01b0316826120ee565b6040805182815265ffffffffffff841660208201527f51a89dc7adfd44d51158078fbc0fecd44cce128e5d2ff940fdd8dd14c0a93048910160405180910390a15050565b600054600160e01b900461ffff1615806118ea57506001546001600160a01b0316155b156118f157565b60006118fb611ac2565b9050806000036119085750565b6000611912610d8f565b905080600003611920575050565b6002546000819003611933575060025550565b80821161193f57505050565b600061194c838386611c96565b90508060000361195e57505060025550565b600154611974906001600160a01b0316826120ee565b600061197e610d8f565b60028190556040805184815265ffffffffffff421660208201529081018290529091507f252aa21f62052a6007210c14f2069a55bf9ff0097a592a5f8e79ebbf6d5509ec9060600160405180910390a15050505050565b6119e1848484846120f8565b826001600160a01b0316846001600160a01b03167f102a0dfd3c84fc43eac93352ddadef2074cc0db23c730de413123e289ba3d7368484604051611a2f929190918252602082015260400190565b60405180910390a350505050565b6001600080516020612e1f83398151915255565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b6000610926600080516020612ddf8339815191525490565b60006109266108b2565b6001600160a01b038116611b0b5760405163d27b444360e01b815260040160405180910390fd5b6000805462010000600160b01b031916620100006001600160a01b038416908102919091179091556040519081527f7a7b5a0a132f9e0581eb8527f66eae9ee89c2a3e79d4ac7e41a1f1f4d48a7fc29060200161151e565b6000805461ffff161580611b8657506000546201000090046001600160a01b0316155b15611b9357506000919050565b600054600160b01b900465ffffffffffff16828110611bb55750600092915050565b6000611bc18285612c51565b90506000611bcd611ac2565b905080600003611be257506000949350505050565b611bf26301e13380612710612aee565b6000548390611c059061ffff1684612aee565b611c0f9190612aee565b611c199190612b1b565b95945050505050565b611c2f8585858585612163565b826001600160a01b0316846001600160a01b0316866001600160a01b03167fb06a040e8c07142f0c8e4ce72bb8ad8e55e071f19c88283f6f6c82c1c2e16a3c8585604051611c87929190918252602082015260400190565b60405180910390a45050505050565b60008054600160e01b900461ffff161580611cba57506001546001600160a01b0316155b15611cc757506000610a45565b828411611cd657506000610a45565b6000611ce28486612c51565b60008054919250908290611d0190600160e01b900461ffff1686612aee565b611d0b9190612aee565b90506000611d1b87612710612aee565b9050611d278183612b1b565b979650505050505050565b6000611d61611d40836121fb565b8015611d5c575060008480611d5757611d57612b05565b868809115b151590565b611d6c868686612228565b611c199190612b2f565b600080516020612dbf8339815191526001600160a01b038516611daf5760405163e602df0560e01b815260006004820152602401611104565b6001600160a01b038416611dd957604051634a1406b160e11b815260006004820152602401611104565b6001600160a01b03808616600090815260018301602090815260408083209388168352929052208390558115611e5757836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051611e4e91815260200190565b60405180910390a35b5050505050565b600080516020612dbf8339815191526001600160a01b038416611e9a5781816002016000828254611e8f9190612b2f565b90915550611f0c9050565b6001600160a01b03841660009081526020829052604090205482811015611eed5760405163391434e360e21b81526001600160a01b03861660048201526024810182905260448101849052606401611104565b6001600160a01b03851660009081526020839052604090209083900390555b6001600160a01b038316611f2a576002810180548390039055611f49565b6001600160a01b03831660009081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a2f91815260200190565b611f97826122dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115611fdc5761117a8282612342565b610aa66123af565b611fec6123ce565b610d6457604051631afcd79f60e31b815260040160405180910390fd5b612011611fe4565b600080516020612dbf8339815191527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0361204b8482612cab565b506004810161121d8382612cab565b612062611fe4565b7f0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e0060008061208f846123e8565b915091508161209f5760126120a1565b805b83546001600160a81b031916600160a01b60ff92909216919091026001600160a01b031916176001600160a01b0394909416939093179091555050565b6110de611fe4565b611a3d611fe4565b610aa682826124c4565b61210b612103610a56565b8530856124fa565b61211583826124c4565b826001600160a01b0316846001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d78484604051611a2f929190918252602082015260400190565b826001600160a01b0316856001600160a01b031614612187576121878386836111bc565b6121918382612561565b6121a361219c610a56565b8584612597565b826001600160a01b0316846001600160a01b0316866001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db8585604051611c87929190918252602082015260400190565b6000600282600381111561221157612211612d6a565b61221b9190612d80565b60ff166001149050919050565b600080600061223786866125c8565b915091508160000361225c5783818161225257612252612b05565b0492505050610a45565b8184116122735761227360038515026011186125e6565b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b806001600160a01b03163b60000361231357604051634c9c8ce360e01b81526001600160a01b0382166004820152602401611104565b600080516020612dff83398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b03168460405161235f9190612da2565b600060405180830381855af49150503d806000811461239a576040519150601f19603f3d011682016040523d82523d6000602084013e61239f565b606091505b5091509150611c198583836125f8565b3415610d645760405163b398979f60e01b815260040160405180910390fd5b60006123d8611529565b54600160401b900460ff16919050565b60408051600481526024810182526020810180516001600160e01b031663313ce56760e01b17905290516000918291829182916001600160a01b0387169161242f91612da2565b600060405180830381855afa9150503d806000811461246a576040519150601f19603f3d011682016040523d82523d6000602084013e61246f565b606091505b509150915081801561248357506020815110155b156124b75760008180602001905181019061249e9190612a85565b905060ff81116124b5576001969095509350505050565b505b5060009485945092505050565b6001600160a01b0382166124ee5760405163ec442f0560e01b815260006004820152602401611104565b610aa660008383611e5e565b6040516001600160a01b03848116602483015283811660448301526064820183905261121d9186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050612654565b6001600160a01b03821661258b57604051634b637e8f60e11b815260006004820152602401611104565b610aa682600083611e5e565b6040516001600160a01b0383811660248301526044820183905261117a91859182169063a9059cbb9060640161252f565b60008060001983850993909202808410938190039390930393915050565b634e487b71600052806020526024601cfd5b60608261260d57612608826126c5565b610a45565b815115801561262457506001600160a01b0384163b155b1561264d57604051639996b31560e01b81526001600160a01b0385166004820152602401611104565b5080610a45565b600080602060008451602086016000885af180612677576040513d6000823e3d81fd5b50506000513d9150811561268f57806001141561269c565b6001600160a01b0384163b155b1561121d57604051635274afe760e01b81526001600160a01b0385166004820152602401611104565b8051156126d457805160208201fd5b60405163d6bda27560e01b815260040160405180910390fd5b60005b838110156127085781810151838201526020016126f0565b50506000910152565b60208152600082518060208401526127308160408501602087016126ed565b601f01601f19169190910160400192915050565b60006020828403121561275657600080fd5b5035919050565b6001600160a01b0381168114610ad857600080fd5b6000806040838503121561278557600080fd5b82356127908161275d565b946020939093013593505050565b6000806000606084860312156127b357600080fd5b83356127be8161275d565b925060208401356127ce8161275d565b929592945050506040919091013590565b6000602082840312156127f157600080fd5b8135610a458161275d565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561282557600080fd5b82356128308161275d565b9150602083013567ffffffffffffffff81111561284c57600080fd5b8301601f8101851361285d57600080fd5b803567ffffffffffffffff811115612877576128776127fc565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156128a6576128a66127fc565b6040528181528282016020018710156128be57600080fd5b816020840160208301376000602083830101528093505050509250929050565b6000602082840312156128f057600080fd5b813561ffff81168114610a4557600080fd5b60008083601f84011261291457600080fd5b50813567ffffffffffffffff81111561292c57600080fd5b60208301915083602082850101111561294457600080fd5b9250929050565b6000806000806000806080878903121561296457600080fd5b863561296f8161275d565b9550602087013567ffffffffffffffff81111561298b57600080fd5b61299789828a01612902565b909650945050604087013567ffffffffffffffff8111156129b757600080fd5b6129c389828a01612902565b90945092505060608701356129d78161275d565b809150509295509295509295565b600080604083850312156129f857600080fd5b823591506020830135612a0a8161275d565b809150509250929050565b600080600060608486031215612a2a57600080fd5b833592506020840135612a3c8161275d565b91506040840135612a4c8161275d565b809150509250925092565b60008060408385031215612a6a57600080fd5b8235612a758161275d565b91506020830135612a0a8161275d565b600060208284031215612a9757600080fd5b5051919050565b600181811c90821680612ab257607f821691505b602082108103612ad257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109fb576109fb612ad8565b634e487b7160e01b600052601260045260246000fd5b600082612b2a57612b2a612b05565b500490565b808201808211156109fb576109fb612ad8565b6001815b6001841115612b7d57808504811115612b6157612b61612ad8565b6001841615612b6f57908102905b60019390931c928002612b46565b935093915050565b600082612b94575060016109fb565b81612ba1575060006109fb565b8160018114612bb75760028114612bc157612bdd565b60019150506109fb565b60ff841115612bd257612bd2612ad8565b50506001821b6109fb565b5060208310610133831016604e8410600b8410161715612c00575081810a6109fb565b612c0d6000198484612b42565b8060001904821115612c2157612c21612ad8565b029392505050565b6000610a4560ff841683612b85565b60ff81811683821601908111156109fb576109fb612ad8565b818103818111156109fb576109fb612ad8565b601f82111561117a57806000526020600020601f840160051c81016020851015612c8b5750805b601f840160051c820191505b81811015611e575760008155600101612c97565b815167ffffffffffffffff811115612cc557612cc56127fc565b612cd981612cd38454612a9e565b84612c64565b6020601f821160018114612d0d5760008315612cf55750848201515b600019600385901b1c1916600184901b178455611e57565b600084815260208120601f198516915b82811015612d3d5787850151825560209485019460019092019101612d1d565b5084821015612d5b5786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b600052602160045260246000fd5b600060ff831680612d9357612d93612b05565b8060ff84160691505092915050565b60008251612db48184602087016126ed565b919091019291505056fe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0052c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace02360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00a264697066735822122096cf874cf4eb969899e263ed9f52ef0d2c2e4972c8c83965657390e5983b02f364736f6c634300081c0033";
1481
+
1482
+ type VaultV1ConstructorParams =
1483
+ | [signer?: Signer]
1484
+ | ConstructorParameters<typeof ContractFactory>;
1485
+
1486
+ const isSuperArgs = (
1487
+ xs: VaultV1ConstructorParams
1488
+ ): xs is ConstructorParameters<typeof ContractFactory> => xs.length > 1;
1489
+
1490
+ export class VaultV1__factory extends ContractFactory {
1491
+ constructor(...args: VaultV1ConstructorParams) {
1492
+ if (isSuperArgs(args)) {
1493
+ super(...args);
1494
+ } else {
1495
+ super(_abi, _bytecode, args[0]);
1496
+ }
1497
+ }
1498
+
1499
+ override getDeployTransaction(
1500
+ overrides?: NonPayableOverrides & { from?: string }
1501
+ ): Promise<ContractDeployTransaction> {
1502
+ return super.getDeployTransaction(overrides || {});
1503
+ }
1504
+ override deploy(overrides?: NonPayableOverrides & { from?: string }) {
1505
+ return super.deploy(overrides || {}) as Promise<
1506
+ VaultV1 & {
1507
+ deploymentTransaction(): ContractTransactionResponse;
1508
+ }
1509
+ >;
1510
+ }
1511
+ override connect(runner: ContractRunner | null): VaultV1__factory {
1512
+ return super.connect(runner) as VaultV1__factory;
1513
+ }
1514
+
1515
+ static readonly bytecode = _bytecode;
1516
+ static readonly abi = _abi;
1517
+ static createInterface(): VaultV1Interface {
1518
+ return new Interface(_abi) as VaultV1Interface;
1519
+ }
1520
+ static connect(address: string, runner?: ContractRunner | null): VaultV1 {
1521
+ return new Contract(address, _abi, runner) as unknown as VaultV1;
1522
+ }
1523
+ }