@augustdigital/sdk 4.0.1-alpha → 4.0.1-beta

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 (226) hide show
  1. package/README.md +169 -11
  2. package/lib/abis/AddressResolver.d.ts +28 -0
  3. package/lib/abis/AddressResolver.js +23 -0
  4. package/lib/abis/AddressResolver.js.map +1 -0
  5. package/lib/abis/ChainlinkV3.d.ts +87 -0
  6. package/lib/abis/ChainlinkV3.js +117 -0
  7. package/lib/abis/ChainlinkV3.js.map +1 -0
  8. package/lib/abis/ERC20.d.ts +168 -0
  9. package/lib/abis/ERC20.js +226 -0
  10. package/lib/abis/ERC20.js.map +1 -0
  11. package/lib/abis/ERC20_Bytes32.d.ts +135 -0
  12. package/lib/abis/ERC20_Bytes32.js +192 -0
  13. package/lib/abis/ERC20_Bytes32.js.map +1 -0
  14. package/lib/abis/ERC4626.d.ts +363 -0
  15. package/lib/abis/ERC4626.js +506 -0
  16. package/lib/abis/ERC4626.js.map +1 -0
  17. package/lib/abis/ERC721.d.ts +230 -0
  18. package/lib/abis/ERC721.js +320 -0
  19. package/lib/abis/ERC721.js.map +1 -0
  20. package/lib/abis/FeeOracle.d.ts +120 -0
  21. package/lib/abis/FeeOracle.js +161 -0
  22. package/lib/abis/FeeOracle.js.map +1 -0
  23. package/lib/abis/LendingPool.d.ts +1393 -0
  24. package/lib/abis/LendingPool.js +1806 -0
  25. package/lib/abis/LendingPool.js.map +1 -0
  26. package/lib/abis/LendingPoolV2.d.ts +55 -0
  27. package/lib/abis/LendingPoolV2.js +1832 -0
  28. package/lib/abis/LendingPoolV2.js.map +1 -0
  29. package/lib/abis/LendingPoolV3.d.ts +35 -0
  30. package/lib/abis/LendingPoolV3.js +1160 -0
  31. package/lib/abis/LendingPoolV3.js.map +1 -0
  32. package/lib/abis/Loan.d.ts +837 -0
  33. package/lib/abis/Loan.js +1080 -0
  34. package/lib/abis/Loan.js.map +1 -0
  35. package/lib/abis/Multicall3.d.ts +30 -0
  36. package/lib/abis/Multicall3.js +94 -0
  37. package/lib/abis/Multicall3.js.map +1 -0
  38. package/lib/abis/PoolAdapter.d.ts +76 -0
  39. package/lib/abis/PoolAdapter.js +412 -0
  40. package/lib/abis/PoolAdapter.js.map +1 -0
  41. package/lib/abis/RewardDistributor.d.ts +46 -0
  42. package/lib/abis/RewardDistributor.js +352 -0
  43. package/lib/abis/RewardDistributor.js.map +1 -0
  44. package/lib/abis/SmartAccount.d.ts +16 -0
  45. package/lib/abis/SmartAccount.js +16 -0
  46. package/lib/abis/SmartAccount.js.map +1 -0
  47. package/lib/abis/TextResolver.d.ts +16 -0
  48. package/lib/abis/TextResolver.js +16 -0
  49. package/lib/abis/TextResolver.js.map +1 -0
  50. package/lib/abis/TokenizedVaultV2.d.ts +1354 -0
  51. package/lib/abis/TokenizedVaultV2.js +1028 -0
  52. package/lib/abis/TokenizedVaultV2.js.map +1 -0
  53. package/lib/abis/TokenizedVaultV2Receipt.d.ts +1568 -0
  54. package/lib/abis/TokenizedVaultV2Receipt.js +1061 -0
  55. package/lib/abis/TokenizedVaultV2Receipt.js.map +1 -0
  56. package/lib/abis/TokenizedVaultV2WhitelistedAssets.d.ts +274 -0
  57. package/lib/abis/TokenizedVaultV2WhitelistedAssets.js +167 -0
  58. package/lib/abis/TokenizedVaultV2WhitelistedAssets.js.map +1 -0
  59. package/lib/abis/UniversalResolverResolve.d.ts +69 -0
  60. package/lib/abis/UniversalResolverResolve.js +35 -0
  61. package/lib/abis/UniversalResolverResolve.js.map +1 -0
  62. package/lib/abis/UniversalSignatureValidator.d.ts +17 -0
  63. package/lib/abis/UniversalSignatureValidator.js +27 -0
  64. package/lib/abis/UniversalSignatureValidator.js.map +1 -0
  65. package/lib/abis/WrapperAdapter.d.ts +60 -0
  66. package/lib/abis/WrapperAdapter.js +150 -0
  67. package/lib/abis/WrapperAdapter.js.map +1 -0
  68. package/lib/abis/index.d.ts +22 -0
  69. package/lib/abis/index.js +39 -0
  70. package/lib/abis/index.js.map +1 -0
  71. package/lib/adapters/evm/getters.d.ts +4 -0
  72. package/lib/adapters/evm/getters.js +153 -0
  73. package/lib/adapters/evm/getters.js.map +1 -0
  74. package/lib/adapters/evm/index.d.ts +19 -0
  75. package/lib/adapters/evm/index.js +54 -0
  76. package/lib/adapters/evm/index.js.map +1 -0
  77. package/lib/adapters/evm/utils.d.ts +2 -0
  78. package/lib/adapters/evm/utils.js +43 -0
  79. package/lib/adapters/evm/utils.js.map +1 -0
  80. package/lib/adapters/solana/constants.d.ts +25 -0
  81. package/lib/adapters/solana/constants.js +32 -0
  82. package/lib/adapters/solana/constants.js.map +1 -0
  83. package/lib/adapters/solana/getters.d.ts +3 -0
  84. package/lib/adapters/solana/getters.js +135 -0
  85. package/lib/adapters/solana/getters.js.map +1 -0
  86. package/lib/adapters/solana/idl/vault-idl.d.ts +338 -0
  87. package/lib/adapters/solana/idl/vault-idl.js +1075 -0
  88. package/lib/adapters/solana/idl/vault-idl.js.map +1 -0
  89. package/lib/adapters/solana/index.d.ts +136 -0
  90. package/lib/adapters/solana/index.js +174 -0
  91. package/lib/adapters/solana/index.js.map +1 -0
  92. package/lib/adapters/solana/types.d.ts +58 -0
  93. package/lib/adapters/solana/types.js +3 -0
  94. package/lib/adapters/solana/types.js.map +1 -0
  95. package/lib/adapters/solana/utils.d.ts +104 -0
  96. package/lib/adapters/solana/utils.js +380 -0
  97. package/lib/adapters/solana/utils.js.map +1 -0
  98. package/lib/adapters/solana/vault.actions.d.ts +18 -0
  99. package/lib/adapters/solana/vault.actions.js +235 -0
  100. package/lib/adapters/solana/vault.actions.js.map +1 -0
  101. package/lib/adapters/sui/index.d.ts +0 -0
  102. package/lib/adapters/sui/index.js +1 -0
  103. package/lib/adapters/sui/index.js.map +1 -0
  104. package/lib/core/auth/index.d.ts +1 -0
  105. package/lib/core/auth/index.js +18 -0
  106. package/lib/core/auth/index.js.map +1 -0
  107. package/lib/core/auth/verify.d.ts +2 -0
  108. package/lib/core/auth/verify.js +21 -0
  109. package/lib/core/auth/verify.js.map +1 -0
  110. package/lib/core/base.class.d.ts +33 -0
  111. package/lib/core/base.class.js +66 -0
  112. package/lib/core/base.class.js.map +1 -0
  113. package/lib/core/constants.d.ts +88 -0
  114. package/lib/core/constants.js +148 -0
  115. package/lib/core/constants.js.map +1 -0
  116. package/lib/core/core.helpers.d.ts +23 -0
  117. package/lib/core/core.helpers.js +210 -0
  118. package/lib/core/core.helpers.js.map +1 -0
  119. package/lib/core/fetcher.d.ts +22 -0
  120. package/lib/core/fetcher.js +321 -0
  121. package/lib/core/fetcher.js.map +1 -0
  122. package/lib/core/index.d.ts +7 -0
  123. package/lib/core/index.js +24 -0
  124. package/lib/core/index.js.map +1 -0
  125. package/lib/core/logger/index.d.ts +21 -0
  126. package/lib/core/logger/index.js +80 -0
  127. package/lib/core/logger/index.js.map +1 -0
  128. package/lib/core/logger/slack.d.ts +12 -0
  129. package/lib/core/logger/slack.js +49 -0
  130. package/lib/core/logger/slack.js.map +1 -0
  131. package/lib/core/read.actions.d.ts +3 -0
  132. package/lib/core/read.actions.js +39 -0
  133. package/lib/core/read.actions.js.map +1 -0
  134. package/lib/core/web3.helpers.d.ts +29 -0
  135. package/lib/core/web3.helpers.js +356 -0
  136. package/lib/core/web3.helpers.js.map +1 -0
  137. package/lib/core/write.actions.d.ts +9 -0
  138. package/lib/core/write.actions.js +51 -0
  139. package/lib/core/write.actions.js.map +1 -0
  140. package/lib/index.d.ts +6 -5
  141. package/lib/index.js +9 -7
  142. package/lib/index.js.map +1 -1
  143. package/lib/main.d.ts +102 -14
  144. package/lib/main.js +63 -13
  145. package/lib/main.js.map +1 -1
  146. package/lib/modules/vaults/constants.d.ts +65 -0
  147. package/lib/modules/vaults/constants.js +194 -0
  148. package/lib/modules/vaults/constants.js.map +1 -0
  149. package/lib/modules/vaults/fetcher.d.ts +101 -0
  150. package/lib/modules/vaults/fetcher.js +257 -0
  151. package/lib/modules/vaults/fetcher.js.map +1 -0
  152. package/lib/modules/vaults/getters.d.ts +85 -0
  153. package/lib/modules/vaults/getters.js +983 -0
  154. package/lib/modules/vaults/getters.js.map +1 -0
  155. package/lib/modules/vaults/index.d.ts +4 -0
  156. package/lib/modules/vaults/index.js +21 -0
  157. package/lib/modules/vaults/index.js.map +1 -0
  158. package/lib/modules/vaults/main.d.ts +111 -0
  159. package/lib/modules/vaults/main.js +557 -0
  160. package/lib/modules/vaults/main.js.map +1 -0
  161. package/lib/modules/vaults/read.actions.d.ts +3 -0
  162. package/lib/modules/vaults/read.actions.js +39 -0
  163. package/lib/modules/vaults/read.actions.js.map +1 -0
  164. package/lib/modules/vaults/utils.d.ts +15 -0
  165. package/lib/modules/vaults/utils.js +215 -0
  166. package/lib/modules/vaults/utils.js.map +1 -0
  167. package/lib/modules/vaults/vault.actions.d.ts +10 -0
  168. package/lib/modules/vaults/vault.actions.js +95 -0
  169. package/lib/modules/vaults/vault.actions.js.map +1 -0
  170. package/lib/modules/vaults/write.actions.d.ts +17 -0
  171. package/lib/modules/vaults/write.actions.js +143 -0
  172. package/lib/modules/vaults/write.actions.js.map +1 -0
  173. package/lib/services/coingecko/fetcher.d.ts +1 -0
  174. package/lib/services/coingecko/fetcher.js +36 -0
  175. package/lib/services/coingecko/fetcher.js.map +1 -0
  176. package/lib/services/coingecko/index.d.ts +2 -0
  177. package/lib/services/coingecko/index.js +19 -0
  178. package/lib/services/coingecko/index.js.map +1 -0
  179. package/lib/services/coingecko/utils.d.ts +1 -0
  180. package/lib/services/coingecko/utils.js +24 -0
  181. package/lib/services/coingecko/utils.js.map +1 -0
  182. package/lib/services/debank/fetcher.d.ts +2 -0
  183. package/lib/services/debank/fetcher.js +16 -0
  184. package/lib/services/debank/fetcher.js.map +1 -0
  185. package/lib/services/debank/index.d.ts +2 -0
  186. package/lib/services/debank/index.js +19 -0
  187. package/lib/services/debank/index.js.map +1 -0
  188. package/lib/services/debank/utils.d.ts +32 -0
  189. package/lib/services/debank/utils.js +229 -0
  190. package/lib/services/debank/utils.js.map +1 -0
  191. package/lib/services/subgraph/fetcher.d.ts +2 -0
  192. package/lib/services/subgraph/fetcher.js +59 -0
  193. package/lib/services/subgraph/fetcher.js.map +1 -0
  194. package/lib/services/subgraph/index.d.ts +2 -0
  195. package/lib/services/subgraph/index.js +19 -0
  196. package/lib/services/subgraph/index.js.map +1 -0
  197. package/lib/services/subgraph/vaults.d.ts +10 -0
  198. package/lib/services/subgraph/vaults.js +473 -0
  199. package/lib/services/subgraph/vaults.js.map +1 -0
  200. package/lib/types/index.d.ts +8 -0
  201. package/lib/types/index.js +24 -0
  202. package/lib/types/index.js.map +1 -0
  203. package/lib/types/pools.d.ts +141 -0
  204. package/lib/types/pools.js +3 -0
  205. package/lib/types/pools.js.map +1 -0
  206. package/lib/types/staking.d.ts +28 -0
  207. package/lib/types/staking.js +3 -0
  208. package/lib/types/staking.js.map +1 -0
  209. package/lib/types/subgraph.d.ts +45 -0
  210. package/lib/types/subgraph.js +3 -0
  211. package/lib/types/subgraph.js.map +1 -0
  212. package/lib/types/user.d.ts +1 -0
  213. package/lib/types/user.js +3 -0
  214. package/lib/types/user.js.map +1 -0
  215. package/lib/types/vaults.d.ts +170 -0
  216. package/lib/types/vaults.js +3 -0
  217. package/lib/types/vaults.js.map +1 -0
  218. package/lib/types/web3.d.ts +24 -0
  219. package/lib/types/web3.js +3 -0
  220. package/lib/types/web3.js.map +1 -0
  221. package/lib/types/webserver.d.ts +489 -0
  222. package/lib/types/webserver.js +3 -0
  223. package/lib/types/webserver.js.map +1 -0
  224. package/lib/verify.js +25 -12
  225. package/lib/verify.js.map +1 -1
  226. package/package.json +15 -10
@@ -0,0 +1,1028 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ABI_TOKENIZED_VAULT_V2 = void 0;
4
+ exports.ABI_TOKENIZED_VAULT_V2 = [
5
+ { inputs: [], stateMutability: 'nonpayable', type: 'constructor' },
6
+ { inputs: [], name: 'AccountNotWhitelisted', type: 'error' },
7
+ { inputs: [], name: 'AlreadyConfigured', type: 'error' },
8
+ { inputs: [], name: 'AmountTooLow', type: 'error' },
9
+ { inputs: [], name: 'AssetNotWhitelisted', type: 'error' },
10
+ {
11
+ inputs: [
12
+ { internalType: 'uint256', name: 'fee', type: 'uint256' },
13
+ { internalType: 'uint256', name: 'remaining', type: 'uint256' },
14
+ ],
15
+ name: 'CollectableFeesExceeded',
16
+ type: 'error',
17
+ },
18
+ { inputs: [], name: 'DepositsPaused', type: 'error' },
19
+ { inputs: [], name: 'FeeAmountTooLow', type: 'error' },
20
+ { inputs: [], name: 'FeesMustSum100', type: 'error' },
21
+ { inputs: [], name: 'HighWatermarkDurationError', type: 'error' },
22
+ { inputs: [], name: 'HighWatermarkViolation', type: 'error' },
23
+ { inputs: [], name: 'InsufficientShares', type: 'error' },
24
+ { inputs: [], name: 'InvalidAccountType', type: 'error' },
25
+ { inputs: [], name: 'InvalidAddress', type: 'error' },
26
+ { inputs: [], name: 'InvalidAmount', type: 'error' },
27
+ { inputs: [], name: 'InvalidExternalAssets', type: 'error' },
28
+ { inputs: [], name: 'InvalidLagDuration', type: 'error' },
29
+ { inputs: [], name: 'InvalidReceiver', type: 'error' },
30
+ { inputs: [], name: 'InvalidTimestamp', type: 'error' },
31
+ { inputs: [], name: 'LimitRequired', type: 'error' },
32
+ { inputs: [], name: 'MaxAllowedChangeReached', type: 'error' },
33
+ { inputs: [], name: 'MaxDepositAmountReached', type: 'error' },
34
+ { inputs: [], name: 'MissingFeeCollectors', type: 'error' },
35
+ { inputs: [], name: 'NoSharesForReceiver', type: 'error' },
36
+ { inputs: [], name: 'NotConfigured', type: 'error' },
37
+ { inputs: [], name: 'NothingToProcess', type: 'error' },
38
+ { inputs: [], name: 'OnlyOwnerOrOperator', type: 'error' },
39
+ { inputs: [], name: 'OperatorOnly', type: 'error' },
40
+ { inputs: [], name: 'OwnerAddressRequired', type: 'error' },
41
+ { inputs: [], name: 'OwnerOnly', type: 'error' },
42
+ { inputs: [], name: 'ReentrancyGuardReentrantCall', type: 'error' },
43
+ { inputs: [], name: 'ReferenceAssetMismatch', type: 'error' },
44
+ { inputs: [], name: 'SenderNotWhitelisted', type: 'error' },
45
+ { inputs: [], name: 'TokenDecimalsMismatch', type: 'error' },
46
+ { inputs: [], name: 'TooEarly', type: 'error' },
47
+ { inputs: [], name: 'Unauthorized', type: 'error' },
48
+ { inputs: [], name: 'VaultNotTimelocked', type: 'error' },
49
+ { inputs: [], name: 'WhitelistLimitReached', type: 'error' },
50
+ { inputs: [], name: 'WithdrawalLimitReached', type: 'error' },
51
+ { inputs: [], name: 'WithdrawalsPaused', type: 'error' },
52
+ { inputs: [], name: 'ZeroAddressError', type: 'error' },
53
+ { anonymous: false, inputs: [], name: 'ContractConfigured', type: 'event' },
54
+ {
55
+ anonymous: false,
56
+ inputs: [
57
+ {
58
+ indexed: false,
59
+ internalType: 'address',
60
+ name: 'assetIn',
61
+ type: 'address',
62
+ },
63
+ {
64
+ indexed: false,
65
+ internalType: 'uint256',
66
+ name: 'amountIn',
67
+ type: 'uint256',
68
+ },
69
+ {
70
+ indexed: false,
71
+ internalType: 'uint256',
72
+ name: 'shares',
73
+ type: 'uint256',
74
+ },
75
+ {
76
+ indexed: true,
77
+ internalType: 'address',
78
+ name: 'senderAddr',
79
+ type: 'address',
80
+ },
81
+ {
82
+ indexed: true,
83
+ internalType: 'address',
84
+ name: 'receiverAddr',
85
+ type: 'address',
86
+ },
87
+ ],
88
+ name: 'Deposit',
89
+ type: 'event',
90
+ },
91
+ {
92
+ anonymous: false,
93
+ inputs: [
94
+ {
95
+ indexed: false,
96
+ internalType: 'bool',
97
+ name: 'bDepositsPaused',
98
+ type: 'bool',
99
+ },
100
+ {
101
+ indexed: false,
102
+ internalType: 'bool',
103
+ name: 'bWithdrawalsPaused',
104
+ type: 'bool',
105
+ },
106
+ ],
107
+ name: 'DepositWithdrawalStatusChanged',
108
+ type: 'event',
109
+ },
110
+ { anonymous: false, inputs: [], name: 'FeesCollected', type: 'event' },
111
+ {
112
+ anonymous: false,
113
+ inputs: [
114
+ { indexed: false, internalType: 'uint8', name: 'version', type: 'uint8' },
115
+ ],
116
+ name: 'Initialized',
117
+ type: 'event',
118
+ },
119
+ {
120
+ anonymous: false,
121
+ inputs: [
122
+ {
123
+ indexed: false,
124
+ internalType: 'uint256',
125
+ name: 'managementFeeAmount',
126
+ type: 'uint256',
127
+ },
128
+ ],
129
+ name: 'ManagementFeeCharged',
130
+ type: 'event',
131
+ },
132
+ {
133
+ anonymous: false,
134
+ inputs: [
135
+ {
136
+ indexed: false,
137
+ internalType: 'uint256',
138
+ name: 'newManagementFeePercent',
139
+ type: 'uint256',
140
+ },
141
+ ],
142
+ name: 'ManagementFeeUpdated',
143
+ type: 'event',
144
+ },
145
+ {
146
+ anonymous: false,
147
+ inputs: [
148
+ {
149
+ indexed: false,
150
+ internalType: 'uint256',
151
+ name: 'newValue',
152
+ type: 'uint256',
153
+ },
154
+ ],
155
+ name: 'MaxChangePercentUpdated',
156
+ type: 'event',
157
+ },
158
+ {
159
+ anonymous: false,
160
+ inputs: [
161
+ {
162
+ indexed: false,
163
+ internalType: 'address',
164
+ name: 'receiverAddr',
165
+ type: 'address',
166
+ },
167
+ ],
168
+ name: 'OnEmergencyWithdraw',
169
+ type: 'event',
170
+ },
171
+ {
172
+ anonymous: false,
173
+ inputs: [
174
+ {
175
+ indexed: true,
176
+ internalType: 'address',
177
+ name: 'previousOwner',
178
+ type: 'address',
179
+ },
180
+ {
181
+ indexed: true,
182
+ internalType: 'address',
183
+ name: 'newOwner',
184
+ type: 'address',
185
+ },
186
+ ],
187
+ name: 'OwnershipTransferStarted',
188
+ type: 'event',
189
+ },
190
+ {
191
+ anonymous: false,
192
+ inputs: [
193
+ {
194
+ indexed: true,
195
+ internalType: 'address',
196
+ name: 'previousOwner',
197
+ type: 'address',
198
+ },
199
+ {
200
+ indexed: true,
201
+ internalType: 'address',
202
+ name: 'newOwner',
203
+ type: 'address',
204
+ },
205
+ ],
206
+ name: 'OwnershipTransferred',
207
+ type: 'event',
208
+ },
209
+ {
210
+ anonymous: false,
211
+ inputs: [
212
+ {
213
+ indexed: false,
214
+ internalType: 'address',
215
+ name: 'newWhitelistAddr',
216
+ type: 'address',
217
+ },
218
+ ],
219
+ name: 'SendersWhitelistUpdated',
220
+ type: 'event',
221
+ },
222
+ {
223
+ anonymous: false,
224
+ inputs: [
225
+ {
226
+ indexed: false,
227
+ internalType: 'address',
228
+ name: 'subAccountAddr',
229
+ type: 'address',
230
+ },
231
+ ],
232
+ name: 'SubAccountDisabled',
233
+ type: 'event',
234
+ },
235
+ {
236
+ anonymous: false,
237
+ inputs: [
238
+ {
239
+ indexed: false,
240
+ internalType: 'address',
241
+ name: 'subAccountAddr',
242
+ type: 'address',
243
+ },
244
+ ],
245
+ name: 'SubAccountEnabled',
246
+ type: 'event',
247
+ },
248
+ {
249
+ anonymous: false,
250
+ inputs: [
251
+ {
252
+ indexed: true,
253
+ internalType: 'address',
254
+ name: 'sender',
255
+ type: 'address',
256
+ },
257
+ {
258
+ indexed: true,
259
+ internalType: 'address',
260
+ name: 'receiver',
261
+ type: 'address',
262
+ },
263
+ {
264
+ indexed: true,
265
+ internalType: 'address',
266
+ name: 'owner',
267
+ type: 'address',
268
+ },
269
+ {
270
+ indexed: false,
271
+ internalType: 'uint256',
272
+ name: 'assets',
273
+ type: 'uint256',
274
+ },
275
+ {
276
+ indexed: false,
277
+ internalType: 'uint256',
278
+ name: 'shares',
279
+ type: 'uint256',
280
+ },
281
+ ],
282
+ name: 'Withdraw',
283
+ type: 'event',
284
+ },
285
+ {
286
+ anonymous: false,
287
+ inputs: [
288
+ {
289
+ indexed: false,
290
+ internalType: 'uint256',
291
+ name: 'assetsAmount',
292
+ type: 'uint256',
293
+ },
294
+ {
295
+ indexed: true,
296
+ internalType: 'address',
297
+ name: 'receiverAddr',
298
+ type: 'address',
299
+ },
300
+ ],
301
+ name: 'WithdrawalProcessed',
302
+ type: 'event',
303
+ },
304
+ {
305
+ anonymous: false,
306
+ inputs: [
307
+ {
308
+ indexed: false,
309
+ internalType: 'uint256',
310
+ name: 'shares',
311
+ type: 'uint256',
312
+ },
313
+ {
314
+ indexed: true,
315
+ internalType: 'address',
316
+ name: 'holderAddr',
317
+ type: 'address',
318
+ },
319
+ {
320
+ indexed: true,
321
+ internalType: 'address',
322
+ name: 'receiverAddr',
323
+ type: 'address',
324
+ },
325
+ ],
326
+ name: 'WithdrawalRequested',
327
+ type: 'event',
328
+ },
329
+ {
330
+ inputs: [],
331
+ name: 'acceptOwnership',
332
+ outputs: [],
333
+ stateMutability: 'nonpayable',
334
+ type: 'function',
335
+ },
336
+ {
337
+ inputs: [],
338
+ name: 'asset',
339
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
340
+ stateMutability: 'view',
341
+ type: 'function',
342
+ },
343
+ {
344
+ inputs: [],
345
+ name: 'assetsUpdatedOn',
346
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
347
+ stateMutability: 'view',
348
+ type: 'function',
349
+ },
350
+ {
351
+ inputs: [],
352
+ name: 'assetsWhitelistAddress',
353
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
354
+ stateMutability: 'view',
355
+ type: 'function',
356
+ },
357
+ {
358
+ inputs: [],
359
+ name: 'chargeManagementFee',
360
+ outputs: [],
361
+ stateMutability: 'nonpayable',
362
+ type: 'function',
363
+ },
364
+ {
365
+ inputs: [],
366
+ name: 'chargePerformanceFees',
367
+ outputs: [],
368
+ stateMutability: 'nonpayable',
369
+ type: 'function',
370
+ },
371
+ {
372
+ inputs: [
373
+ { internalType: 'uint256', name: 'year', type: 'uint256' },
374
+ { internalType: 'uint256', name: 'month', type: 'uint256' },
375
+ { internalType: 'uint256', name: 'day', type: 'uint256' },
376
+ { internalType: 'address', name: 'receiverAddr', type: 'address' },
377
+ ],
378
+ name: 'claim',
379
+ outputs: [
380
+ { internalType: 'uint256', name: '', type: 'uint256' },
381
+ { internalType: 'uint256', name: '', type: 'uint256' },
382
+ ],
383
+ stateMutability: 'nonpayable',
384
+ type: 'function',
385
+ },
386
+ {
387
+ inputs: [],
388
+ name: 'collectFees',
389
+ outputs: [],
390
+ stateMutability: 'nonpayable',
391
+ type: 'function',
392
+ },
393
+ {
394
+ inputs: [
395
+ {
396
+ components: [
397
+ {
398
+ internalType: 'uint256',
399
+ name: 'maxDepositAmount',
400
+ type: 'uint256',
401
+ },
402
+ {
403
+ internalType: 'uint256',
404
+ name: 'maxWithdrawalAmount',
405
+ type: 'uint256',
406
+ },
407
+ {
408
+ internalType: 'uint256',
409
+ name: 'instantRedemptionFee',
410
+ type: 'uint256',
411
+ },
412
+ { internalType: 'uint256', name: 'lagDuration', type: 'uint256' },
413
+ { internalType: 'uint256', name: 'withdrawalFee', type: 'uint256' },
414
+ {
415
+ internalType: 'uint256',
416
+ name: 'watermarkTimeWindow',
417
+ type: 'uint256',
418
+ },
419
+ {
420
+ internalType: 'uint256',
421
+ name: 'maxChangePercent',
422
+ type: 'uint256',
423
+ },
424
+ {
425
+ internalType: 'uint256',
426
+ name: 'managementFeePercent',
427
+ type: 'uint256',
428
+ },
429
+ {
430
+ internalType: 'uint256',
431
+ name: 'performanceFeeRate',
432
+ type: 'uint256',
433
+ },
434
+ {
435
+ internalType: 'address',
436
+ name: 'sendersWhitelistAddress',
437
+ type: 'address',
438
+ },
439
+ { internalType: 'address', name: 'operatorAddress', type: 'address' },
440
+ {
441
+ internalType: 'address',
442
+ name: 'scheduledCallerAddress',
443
+ type: 'address',
444
+ },
445
+ { internalType: 'address', name: 'lpTokenAddress', type: 'address' },
446
+ { internalType: 'address', name: 'referenceAsset', type: 'address' },
447
+ {
448
+ internalType: 'address',
449
+ name: 'futureOwnerAddress',
450
+ type: 'address',
451
+ },
452
+ {
453
+ internalType: 'address',
454
+ name: 'assetsWhitelistAddress',
455
+ type: 'address',
456
+ },
457
+ ],
458
+ internalType: 'struct ITokenizedVault.ConfigInfo',
459
+ name: 'newConfig',
460
+ type: 'tuple',
461
+ },
462
+ ],
463
+ name: 'configure',
464
+ outputs: [],
465
+ stateMutability: 'nonpayable',
466
+ type: 'function',
467
+ },
468
+ {
469
+ inputs: [
470
+ { internalType: 'address', name: 'assetIn', type: 'address' },
471
+ { internalType: 'uint256', name: 'amountIn', type: 'uint256' },
472
+ { internalType: 'address', name: 'receiverAddr', type: 'address' },
473
+ ],
474
+ name: 'deposit',
475
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
476
+ stateMutability: 'nonpayable',
477
+ type: 'function',
478
+ },
479
+ {
480
+ inputs: [
481
+ { internalType: 'address', name: 'inputAssetAddr', type: 'address' },
482
+ { internalType: 'uint256', name: 'depositAmount', type: 'uint256' },
483
+ { internalType: 'address', name: 'subAccountAddr', type: 'address' },
484
+ ],
485
+ name: 'depositToSubaccount',
486
+ outputs: [],
487
+ stateMutability: 'nonpayable',
488
+ type: 'function',
489
+ },
490
+ {
491
+ inputs: [],
492
+ name: 'depositsPaused',
493
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
494
+ stateMutability: 'view',
495
+ type: 'function',
496
+ },
497
+ {
498
+ inputs: [{ internalType: 'address', name: 'addr', type: 'address' }],
499
+ name: 'disableSubAccount',
500
+ outputs: [],
501
+ stateMutability: 'nonpayable',
502
+ type: 'function',
503
+ },
504
+ {
505
+ inputs: [
506
+ { internalType: 'address', name: 'receiverAddr', type: 'address' },
507
+ ],
508
+ name: 'emergencyWithdraw',
509
+ outputs: [],
510
+ stateMutability: 'nonpayable',
511
+ type: 'function',
512
+ },
513
+ {
514
+ inputs: [
515
+ { internalType: 'address', name: 'addr', type: 'address' },
516
+ { internalType: 'uint8', name: 'accountType', type: 'uint8' },
517
+ ],
518
+ name: 'enableSubAccount',
519
+ outputs: [],
520
+ stateMutability: 'nonpayable',
521
+ type: 'function',
522
+ },
523
+ {
524
+ inputs: [],
525
+ name: 'externalAssets',
526
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
527
+ stateMutability: 'view',
528
+ type: 'function',
529
+ },
530
+ {
531
+ inputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
532
+ name: 'feeCollectors',
533
+ outputs: [
534
+ { internalType: 'address', name: 'collectorAddress', type: 'address' },
535
+ { internalType: 'uint256', name: 'percentage', type: 'uint256' },
536
+ ],
537
+ stateMutability: 'view',
538
+ type: 'function',
539
+ },
540
+ {
541
+ inputs: [],
542
+ name: 'feesTimestamp',
543
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
544
+ stateMutability: 'view',
545
+ type: 'function',
546
+ },
547
+ {
548
+ inputs: [
549
+ { internalType: 'uint256', name: 'year', type: 'uint256' },
550
+ { internalType: 'uint256', name: 'month', type: 'uint256' },
551
+ { internalType: 'uint256', name: 'day', type: 'uint256' },
552
+ { internalType: 'address', name: 'receiverAddr', type: 'address' },
553
+ ],
554
+ name: 'getBurnableAmountByReceiver',
555
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
556
+ stateMutability: 'view',
557
+ type: 'function',
558
+ },
559
+ {
560
+ inputs: [
561
+ {
562
+ internalType: 'uint256',
563
+ name: 'externalAssetsAmount',
564
+ type: 'uint256',
565
+ },
566
+ ],
567
+ name: 'getChangePercentage',
568
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
569
+ stateMutability: 'view',
570
+ type: 'function',
571
+ },
572
+ {
573
+ inputs: [],
574
+ name: 'getFeeCollectors',
575
+ outputs: [
576
+ {
577
+ components: [
578
+ {
579
+ internalType: 'address',
580
+ name: 'collectorAddress',
581
+ type: 'address',
582
+ },
583
+ { internalType: 'uint256', name: 'percentage', type: 'uint256' },
584
+ ],
585
+ internalType: 'struct IFeeCollectorsAware.CollectorDefinition[]',
586
+ name: '',
587
+ type: 'tuple[]',
588
+ },
589
+ ],
590
+ stateMutability: 'view',
591
+ type: 'function',
592
+ },
593
+ {
594
+ inputs: [],
595
+ name: 'getMaxAllowedChange',
596
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
597
+ stateMutability: 'view',
598
+ type: 'function',
599
+ },
600
+ {
601
+ inputs: [],
602
+ name: 'getPerformanceFeeRecipients',
603
+ outputs: [
604
+ {
605
+ components: [
606
+ {
607
+ internalType: 'address',
608
+ name: 'collectorAddress',
609
+ type: 'address',
610
+ },
611
+ { internalType: 'uint256', name: 'percentage', type: 'uint256' },
612
+ ],
613
+ internalType: 'struct IFeeCollectorsAware.CollectorDefinition[]',
614
+ name: '',
615
+ type: 'tuple[]',
616
+ },
617
+ ],
618
+ stateMutability: 'view',
619
+ type: 'function',
620
+ },
621
+ {
622
+ inputs: [
623
+ { internalType: 'uint256', name: 'year', type: 'uint256' },
624
+ { internalType: 'uint256', name: 'month', type: 'uint256' },
625
+ { internalType: 'uint256', name: 'day', type: 'uint256' },
626
+ ],
627
+ name: 'getRequirementByDate',
628
+ outputs: [{ internalType: 'uint256', name: 'shares', type: 'uint256' }],
629
+ stateMutability: 'view',
630
+ type: 'function',
631
+ },
632
+ {
633
+ inputs: [
634
+ { internalType: 'uint256', name: 'year', type: 'uint256' },
635
+ { internalType: 'uint256', name: 'month', type: 'uint256' },
636
+ { internalType: 'uint256', name: 'day', type: 'uint256' },
637
+ ],
638
+ name: 'getScheduledTransactionsByDate',
639
+ outputs: [
640
+ { internalType: 'uint256', name: 'totalTransactions', type: 'uint256' },
641
+ { internalType: 'uint256', name: 'executionEpoch', type: 'uint256' },
642
+ ],
643
+ stateMutability: 'view',
644
+ type: 'function',
645
+ },
646
+ {
647
+ inputs: [],
648
+ name: 'getSharePrice',
649
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
650
+ stateMutability: 'view',
651
+ type: 'function',
652
+ },
653
+ {
654
+ inputs: [],
655
+ name: 'getTotalAssets',
656
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
657
+ stateMutability: 'view',
658
+ type: 'function',
659
+ },
660
+ {
661
+ inputs: [],
662
+ name: 'getWithdrawalEpoch',
663
+ outputs: [
664
+ { internalType: 'uint256', name: 'year', type: 'uint256' },
665
+ { internalType: 'uint256', name: 'month', type: 'uint256' },
666
+ { internalType: 'uint256', name: 'day', type: 'uint256' },
667
+ { internalType: 'uint256', name: 'claimableEpoch', type: 'uint256' },
668
+ ],
669
+ stateMutability: 'view',
670
+ type: 'function',
671
+ },
672
+ {
673
+ inputs: [],
674
+ name: 'globalLiabilityShares',
675
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
676
+ stateMutability: 'view',
677
+ type: 'function',
678
+ },
679
+ {
680
+ inputs: [],
681
+ name: 'highWatermark',
682
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
683
+ stateMutability: 'view',
684
+ type: 'function',
685
+ },
686
+ {
687
+ inputs: [{ internalType: 'address', name: 'ownerAddr', type: 'address' }],
688
+ name: 'initialize',
689
+ outputs: [],
690
+ stateMutability: 'nonpayable',
691
+ type: 'function',
692
+ },
693
+ {
694
+ inputs: [
695
+ { internalType: 'uint256', name: 'shares', type: 'uint256' },
696
+ { internalType: 'address', name: 'receiverAddr', type: 'address' },
697
+ ],
698
+ name: 'instantRedeem',
699
+ outputs: [],
700
+ stateMutability: 'nonpayable',
701
+ type: 'function',
702
+ },
703
+ {
704
+ inputs: [],
705
+ name: 'instantRedemptionFee',
706
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
707
+ stateMutability: 'view',
708
+ type: 'function',
709
+ },
710
+ {
711
+ inputs: [],
712
+ name: 'lagDuration',
713
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
714
+ stateMutability: 'view',
715
+ type: 'function',
716
+ },
717
+ {
718
+ inputs: [],
719
+ name: 'lpTokenAddress',
720
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
721
+ stateMutability: 'view',
722
+ type: 'function',
723
+ },
724
+ {
725
+ inputs: [],
726
+ name: 'managementFeePercent',
727
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
728
+ stateMutability: 'view',
729
+ type: 'function',
730
+ },
731
+ {
732
+ inputs: [],
733
+ name: 'maxChangePercent',
734
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
735
+ stateMutability: 'view',
736
+ type: 'function',
737
+ },
738
+ {
739
+ inputs: [],
740
+ name: 'maxDepositAmount',
741
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
742
+ stateMutability: 'view',
743
+ type: 'function',
744
+ },
745
+ {
746
+ inputs: [],
747
+ name: 'maxWithdrawalAmount',
748
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
749
+ stateMutability: 'view',
750
+ type: 'function',
751
+ },
752
+ {
753
+ inputs: [],
754
+ name: 'operatorAddress',
755
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
756
+ stateMutability: 'view',
757
+ type: 'function',
758
+ },
759
+ {
760
+ inputs: [],
761
+ name: 'owner',
762
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
763
+ stateMutability: 'view',
764
+ type: 'function',
765
+ },
766
+ {
767
+ inputs: [
768
+ { internalType: 'bool', name: 'bPauseDeposits', type: 'bool' },
769
+ { internalType: 'bool', name: 'bPauseWithdrawals', type: 'bool' },
770
+ ],
771
+ name: 'pauseDepositsAndWithdrawals',
772
+ outputs: [],
773
+ stateMutability: 'nonpayable',
774
+ type: 'function',
775
+ },
776
+ {
777
+ inputs: [],
778
+ name: 'pendingOwner',
779
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
780
+ stateMutability: 'view',
781
+ type: 'function',
782
+ },
783
+ {
784
+ inputs: [],
785
+ name: 'performanceFeeRate',
786
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
787
+ stateMutability: 'view',
788
+ type: 'function',
789
+ },
790
+ {
791
+ inputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
792
+ name: 'performanceFeeRecipients',
793
+ outputs: [
794
+ { internalType: 'address', name: 'collectorAddress', type: 'address' },
795
+ { internalType: 'uint256', name: 'percentage', type: 'uint256' },
796
+ ],
797
+ stateMutability: 'view',
798
+ type: 'function',
799
+ },
800
+ {
801
+ inputs: [
802
+ { internalType: 'address', name: 'assetIn', type: 'address' },
803
+ { internalType: 'uint256', name: 'amountIn', type: 'uint256' },
804
+ ],
805
+ name: 'previewDeposit',
806
+ outputs: [
807
+ { internalType: 'uint256', name: '', type: 'uint256' },
808
+ { internalType: 'uint256', name: '', type: 'uint256' },
809
+ ],
810
+ stateMutability: 'view',
811
+ type: 'function',
812
+ },
813
+ {
814
+ inputs: [
815
+ { internalType: 'uint256', name: 'shares', type: 'uint256' },
816
+ { internalType: 'bool', name: 'isInstant', type: 'bool' },
817
+ ],
818
+ name: 'previewRedemption',
819
+ outputs: [
820
+ { internalType: 'uint256', name: 'assetsAmount', type: 'uint256' },
821
+ { internalType: 'uint256', name: 'assetsAfterFee', type: 'uint256' },
822
+ ],
823
+ stateMutability: 'view',
824
+ type: 'function',
825
+ },
826
+ {
827
+ inputs: [
828
+ { internalType: 'uint256', name: 'year', type: 'uint256' },
829
+ { internalType: 'uint256', name: 'month', type: 'uint256' },
830
+ { internalType: 'uint256', name: 'day', type: 'uint256' },
831
+ { internalType: 'uint256', name: 'maxLimit', type: 'uint256' },
832
+ ],
833
+ name: 'processAllClaimsByDate',
834
+ outputs: [],
835
+ stateMutability: 'nonpayable',
836
+ type: 'function',
837
+ },
838
+ {
839
+ inputs: [
840
+ { internalType: 'uint256', name: 'shares', type: 'uint256' },
841
+ { internalType: 'address', name: 'receiverAddr', type: 'address' },
842
+ ],
843
+ name: 'requestRedeem',
844
+ outputs: [
845
+ { internalType: 'uint256', name: 'claimableEpoch', type: 'uint256' },
846
+ { internalType: 'uint256', name: 'year', type: 'uint256' },
847
+ { internalType: 'uint256', name: 'month', type: 'uint256' },
848
+ { internalType: 'uint256', name: 'day', type: 'uint256' },
849
+ ],
850
+ stateMutability: 'nonpayable',
851
+ type: 'function',
852
+ },
853
+ {
854
+ inputs: [],
855
+ name: 'scheduledCallerAddress',
856
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
857
+ stateMutability: 'view',
858
+ type: 'function',
859
+ },
860
+ {
861
+ inputs: [],
862
+ name: 'sendersWhitelistAddress',
863
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
864
+ stateMutability: 'view',
865
+ type: 'function',
866
+ },
867
+ {
868
+ inputs: [],
869
+ name: 'totalCollectableFees',
870
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
871
+ stateMutability: 'view',
872
+ type: 'function',
873
+ },
874
+ {
875
+ inputs: [{ internalType: 'address', name: 'newOwner', type: 'address' }],
876
+ name: 'transferOwnership',
877
+ outputs: [],
878
+ stateMutability: 'nonpayable',
879
+ type: 'function',
880
+ },
881
+ {
882
+ inputs: [
883
+ { internalType: 'address', name: 'newWhitelistAddr', type: 'address' },
884
+ ],
885
+ name: 'updateAssetsWhitelist',
886
+ outputs: [],
887
+ stateMutability: 'nonpayable',
888
+ type: 'function',
889
+ },
890
+ {
891
+ inputs: [
892
+ {
893
+ components: [
894
+ {
895
+ internalType: 'address',
896
+ name: 'collectorAddress',
897
+ type: 'address',
898
+ },
899
+ { internalType: 'uint256', name: 'percentage', type: 'uint256' },
900
+ ],
901
+ internalType: 'struct IFeeCollectorsAware.CollectorDefinition[]',
902
+ name: 'collectors',
903
+ type: 'tuple[]',
904
+ },
905
+ ],
906
+ name: 'updateFeeCollectors',
907
+ outputs: [],
908
+ stateMutability: 'nonpayable',
909
+ type: 'function',
910
+ },
911
+ {
912
+ inputs: [
913
+ {
914
+ internalType: 'uint256',
915
+ name: 'newManagementFeePercent',
916
+ type: 'uint256',
917
+ },
918
+ ],
919
+ name: 'updateManagementFee',
920
+ outputs: [],
921
+ stateMutability: 'nonpayable',
922
+ type: 'function',
923
+ },
924
+ {
925
+ inputs: [{ internalType: 'uint256', name: 'newValue', type: 'uint256' }],
926
+ name: 'updateMaxChangePercent',
927
+ outputs: [],
928
+ stateMutability: 'nonpayable',
929
+ type: 'function',
930
+ },
931
+ {
932
+ inputs: [
933
+ {
934
+ components: [
935
+ {
936
+ internalType: 'address',
937
+ name: 'collectorAddress',
938
+ type: 'address',
939
+ },
940
+ { internalType: 'uint256', name: 'percentage', type: 'uint256' },
941
+ ],
942
+ internalType: 'struct IFeeCollectorsAware.CollectorDefinition[]',
943
+ name: 'collectors',
944
+ type: 'tuple[]',
945
+ },
946
+ ],
947
+ name: 'updatePerformanceFeeCollectors',
948
+ outputs: [],
949
+ stateMutability: 'nonpayable',
950
+ type: 'function',
951
+ },
952
+ {
953
+ inputs: [
954
+ { internalType: 'address', name: 'newWhitelistAddr', type: 'address' },
955
+ ],
956
+ name: 'updateSendersWhitelist',
957
+ outputs: [],
958
+ stateMutability: 'nonpayable',
959
+ type: 'function',
960
+ },
961
+ {
962
+ inputs: [{ internalType: 'uint256', name: 'newDuration', type: 'uint256' }],
963
+ name: 'updateTimelockDuration',
964
+ outputs: [],
965
+ stateMutability: 'nonpayable',
966
+ type: 'function',
967
+ },
968
+ {
969
+ inputs: [
970
+ {
971
+ internalType: 'uint256',
972
+ name: 'externalAssetsAmount',
973
+ type: 'uint256',
974
+ },
975
+ ],
976
+ name: 'updateTotalAssets',
977
+ outputs: [],
978
+ stateMutability: 'nonpayable',
979
+ type: 'function',
980
+ },
981
+ {
982
+ inputs: [],
983
+ name: 'watermarkTimeWindow',
984
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
985
+ stateMutability: 'view',
986
+ type: 'function',
987
+ },
988
+ {
989
+ inputs: [],
990
+ name: 'watermarkUpdatedOn',
991
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
992
+ stateMutability: 'view',
993
+ type: 'function',
994
+ },
995
+ {
996
+ inputs: [{ internalType: 'address', name: '', type: 'address' }],
997
+ name: 'whitelistedSubAccounts',
998
+ outputs: [{ internalType: 'uint8', name: '', type: 'uint8' }],
999
+ stateMutability: 'view',
1000
+ type: 'function',
1001
+ },
1002
+ {
1003
+ inputs: [
1004
+ { internalType: 'address', name: 'inputAssetAddr', type: 'address' },
1005
+ { internalType: 'uint256', name: 'amount', type: 'uint256' },
1006
+ { internalType: 'address', name: 'subAccountAddr', type: 'address' },
1007
+ ],
1008
+ name: 'withdrawFromSubaccount',
1009
+ outputs: [],
1010
+ stateMutability: 'nonpayable',
1011
+ type: 'function',
1012
+ },
1013
+ {
1014
+ inputs: [],
1015
+ name: 'withdrawalFee',
1016
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
1017
+ stateMutability: 'view',
1018
+ type: 'function',
1019
+ },
1020
+ {
1021
+ inputs: [],
1022
+ name: 'withdrawalsPaused',
1023
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
1024
+ stateMutability: 'view',
1025
+ type: 'function',
1026
+ },
1027
+ ];
1028
+ //# sourceMappingURL=TokenizedVaultV2.js.map