@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,1160 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ABI_LENDING_POOL_V3 = void 0;
4
+ exports.ABI_LENDING_POOL_V3 = [
5
+ { inputs: [], name: 'AccountNotWhitelisted', type: 'error' },
6
+ { inputs: [], name: 'AddressBlacklisted', type: 'error' },
7
+ { inputs: [], name: 'AmountExceedsAllowance', type: 'error' },
8
+ { inputs: [], name: 'AmountExceedsSenderBalance', type: 'error' },
9
+ { inputs: [], name: 'AmountTooLow', type: 'error' },
10
+ { inputs: [], name: 'AssetsAmountRequired', type: 'error' },
11
+ { inputs: [], name: 'BalanceCheckFailed', type: 'error' },
12
+ { inputs: [], name: 'BurnAmountExceedsBalance', type: 'error' },
13
+ { inputs: [], name: 'CannotBlacklistOwner', type: 'error' },
14
+ { inputs: [], name: 'CollectorRequired', type: 'error' },
15
+ { inputs: [], name: 'DepositLimitReached', type: 'error' },
16
+ { inputs: [], name: 'DepositsPaused', type: 'error' },
17
+ { inputs: [], name: 'InsufficientAllowance', type: 'error' },
18
+ { inputs: [], name: 'InsufficientBalance', type: 'error' },
19
+ { inputs: [], name: 'InsufficientShares', type: 'error' },
20
+ { inputs: [], name: 'InvalidAddress', type: 'error' },
21
+ { inputs: [], name: 'InvalidDepositLimit', type: 'error' },
22
+ { inputs: [], name: 'InvalidExternalAssets', type: 'error' },
23
+ { inputs: [], name: 'InvalidHolder', type: 'error' },
24
+ { inputs: [], name: 'InvalidMaxSupply', type: 'error' },
25
+ { inputs: [], name: 'InvalidOwner', type: 'error' },
26
+ { inputs: [], name: 'InvalidPercentage', type: 'error' },
27
+ { inputs: [], name: 'InvalidReceiver', type: 'error' },
28
+ { inputs: [], name: 'InvalidTimestamp', type: 'error' },
29
+ { inputs: [], name: 'InvalidWithdrawalLimit', type: 'error' },
30
+ { inputs: [], name: 'LimitRequired', type: 'error' },
31
+ { inputs: [], name: 'MaxAllowedChangeReached', type: 'error' },
32
+ { inputs: [], name: 'MaxMintReached', type: 'error' },
33
+ { inputs: [], name: 'MaxSupplyLimitReached', type: 'error' },
34
+ { inputs: [], name: 'NoSharesForReceiver', type: 'error' },
35
+ { inputs: [], name: 'NonZeroAddressRequired', type: 'error' },
36
+ { inputs: [], name: 'NonZeroAmountRequired', type: 'error' },
37
+ { inputs: [], name: 'NothingToProcess', type: 'error' },
38
+ { inputs: [], name: 'OperatorOnly', type: 'error' },
39
+ { inputs: [], name: 'OwnerOnly', type: 'error' },
40
+ { inputs: [], name: 'PoolAlreadyConfigured', type: 'error' },
41
+ { inputs: [], name: 'PoolNotConfigured', type: 'error' },
42
+ { inputs: [], name: 'PoolOwnerRequired', type: 'error' },
43
+ { inputs: [], name: 'ReentrantCall', type: 'error' },
44
+ { inputs: [], name: 'SettlementAccountNotSet', type: 'error' },
45
+ { inputs: [], name: 'SharesAmountRequired', type: 'error' },
46
+ { inputs: [], name: 'TooEarly', type: 'error' },
47
+ { inputs: [], name: 'TotalAssetsError', type: 'error' },
48
+ { inputs: [], name: 'WithdrawalLimitReached', type: 'error' },
49
+ { inputs: [], name: 'WithdrawalRequestRequired', type: 'error' },
50
+ { inputs: [], name: 'WithdrawalsPaused', type: 'error' },
51
+ {
52
+ anonymous: false,
53
+ inputs: [
54
+ {
55
+ indexed: true,
56
+ internalType: 'address',
57
+ name: 'owner',
58
+ type: 'address',
59
+ },
60
+ {
61
+ indexed: true,
62
+ internalType: 'address',
63
+ name: 'spender',
64
+ type: 'address',
65
+ },
66
+ {
67
+ indexed: false,
68
+ internalType: 'uint256',
69
+ name: 'value',
70
+ type: 'uint256',
71
+ },
72
+ ],
73
+ name: 'Approval',
74
+ type: 'event',
75
+ },
76
+ {
77
+ anonymous: false,
78
+ inputs: [
79
+ {
80
+ indexed: true,
81
+ internalType: 'address',
82
+ name: 'sender',
83
+ type: 'address',
84
+ },
85
+ {
86
+ indexed: true,
87
+ internalType: 'address',
88
+ name: 'owner',
89
+ type: 'address',
90
+ },
91
+ {
92
+ indexed: false,
93
+ internalType: 'uint256',
94
+ name: 'assets',
95
+ type: 'uint256',
96
+ },
97
+ {
98
+ indexed: false,
99
+ internalType: 'uint256',
100
+ name: 'shares',
101
+ type: 'uint256',
102
+ },
103
+ ],
104
+ name: 'Deposit',
105
+ type: 'event',
106
+ },
107
+ {
108
+ anonymous: false,
109
+ inputs: [
110
+ {
111
+ indexed: false,
112
+ internalType: 'bool',
113
+ name: 'bDepositsPaused',
114
+ type: 'bool',
115
+ },
116
+ {
117
+ indexed: false,
118
+ internalType: 'bool',
119
+ name: 'bWithdrawalsPaused',
120
+ type: 'bool',
121
+ },
122
+ ],
123
+ name: 'DepositWithdrawalStatusChanged',
124
+ type: 'event',
125
+ },
126
+ {
127
+ anonymous: false,
128
+ inputs: [
129
+ {
130
+ indexed: false,
131
+ internalType: 'address',
132
+ name: 'newFeeCollectorAddr',
133
+ type: 'address',
134
+ },
135
+ ],
136
+ name: 'FeeCollectorUpdated',
137
+ type: 'event',
138
+ },
139
+ {
140
+ anonymous: false,
141
+ inputs: [
142
+ {
143
+ indexed: false,
144
+ internalType: 'uint256',
145
+ name: 'amount',
146
+ type: 'uint256',
147
+ },
148
+ ],
149
+ name: 'FeesCollected',
150
+ type: 'event',
151
+ },
152
+ {
153
+ anonymous: false,
154
+ inputs: [
155
+ { indexed: false, internalType: 'uint8', name: 'version', type: 'uint8' },
156
+ ],
157
+ name: 'Initialized',
158
+ type: 'event',
159
+ },
160
+ {
161
+ anonymous: false,
162
+ inputs: [
163
+ {
164
+ indexed: false,
165
+ internalType: 'uint256',
166
+ name: 'managementFeeAmount',
167
+ type: 'uint256',
168
+ },
169
+ ],
170
+ name: 'ManagementFeeCharged',
171
+ type: 'event',
172
+ },
173
+ {
174
+ anonymous: false,
175
+ inputs: [
176
+ {
177
+ indexed: false,
178
+ internalType: 'uint256',
179
+ name: 'newManagementFeePercent',
180
+ type: 'uint256',
181
+ },
182
+ ],
183
+ name: 'ManagementFeeUpdated',
184
+ type: 'event',
185
+ },
186
+ {
187
+ anonymous: false,
188
+ inputs: [
189
+ {
190
+ indexed: false,
191
+ internalType: 'uint256',
192
+ name: 'newValue',
193
+ type: 'uint256',
194
+ },
195
+ ],
196
+ name: 'MaxChangePercentUpdated',
197
+ type: 'event',
198
+ },
199
+ { anonymous: false, inputs: [], name: 'OnAccountConfigured', type: 'event' },
200
+ {
201
+ anonymous: false,
202
+ inputs: [
203
+ {
204
+ indexed: false,
205
+ internalType: 'uint256',
206
+ name: 'withdrawalAmount',
207
+ type: 'uint256',
208
+ },
209
+ {
210
+ indexed: false,
211
+ internalType: 'address',
212
+ name: 'tokenAddr',
213
+ type: 'address',
214
+ },
215
+ {
216
+ indexed: false,
217
+ internalType: 'address',
218
+ name: 'destinationAddr',
219
+ type: 'address',
220
+ },
221
+ ],
222
+ name: 'OnEmergencyWithdraw',
223
+ type: 'event',
224
+ },
225
+ {
226
+ anonymous: false,
227
+ inputs: [
228
+ {
229
+ indexed: false,
230
+ internalType: 'uint256',
231
+ name: 'prevValue',
232
+ type: 'uint256',
233
+ },
234
+ {
235
+ indexed: false,
236
+ internalType: 'uint256',
237
+ name: 'newValue',
238
+ type: 'uint256',
239
+ },
240
+ ],
241
+ name: 'OnMaxSupplyChanged',
242
+ type: 'event',
243
+ },
244
+ {
245
+ anonymous: false,
246
+ inputs: [
247
+ {
248
+ indexed: false,
249
+ internalType: 'address',
250
+ name: 'newAddr',
251
+ type: 'address',
252
+ },
253
+ ],
254
+ name: 'OperatorUpdated',
255
+ type: 'event',
256
+ },
257
+ {
258
+ anonymous: false,
259
+ inputs: [
260
+ {
261
+ indexed: true,
262
+ internalType: 'address',
263
+ name: 'previousOwner',
264
+ type: 'address',
265
+ },
266
+ {
267
+ indexed: true,
268
+ internalType: 'address',
269
+ name: 'newOwner',
270
+ type: 'address',
271
+ },
272
+ ],
273
+ name: 'OwnershipTransferred',
274
+ type: 'event',
275
+ },
276
+ {
277
+ anonymous: false,
278
+ inputs: [
279
+ { indexed: true, internalType: 'address', name: 'from', type: 'address' },
280
+ { indexed: true, internalType: 'address', name: 'to', type: 'address' },
281
+ {
282
+ indexed: false,
283
+ internalType: 'uint256',
284
+ name: 'value',
285
+ type: 'uint256',
286
+ },
287
+ ],
288
+ name: 'Transfer',
289
+ type: 'event',
290
+ },
291
+ {
292
+ anonymous: false,
293
+ inputs: [
294
+ {
295
+ indexed: true,
296
+ internalType: 'address',
297
+ name: 'sender',
298
+ type: 'address',
299
+ },
300
+ {
301
+ indexed: true,
302
+ internalType: 'address',
303
+ name: 'receiver',
304
+ type: 'address',
305
+ },
306
+ {
307
+ indexed: true,
308
+ internalType: 'address',
309
+ name: 'owner',
310
+ type: 'address',
311
+ },
312
+ {
313
+ indexed: false,
314
+ internalType: 'uint256',
315
+ name: 'assets',
316
+ type: 'uint256',
317
+ },
318
+ {
319
+ indexed: false,
320
+ internalType: 'uint256',
321
+ name: 'shares',
322
+ type: 'uint256',
323
+ },
324
+ ],
325
+ name: 'Withdraw',
326
+ type: 'event',
327
+ },
328
+ {
329
+ anonymous: false,
330
+ inputs: [
331
+ {
332
+ indexed: false,
333
+ internalType: 'uint256',
334
+ name: 'assetsAmount',
335
+ type: 'uint256',
336
+ },
337
+ {
338
+ indexed: false,
339
+ internalType: 'uint256',
340
+ name: 'processedOn',
341
+ type: 'uint256',
342
+ },
343
+ {
344
+ indexed: false,
345
+ internalType: 'address',
346
+ name: 'receiverAddr',
347
+ type: 'address',
348
+ },
349
+ {
350
+ indexed: false,
351
+ internalType: 'uint256',
352
+ name: 'requestedOn',
353
+ type: 'uint256',
354
+ },
355
+ {
356
+ indexed: false,
357
+ internalType: 'bool',
358
+ name: 'wasBlacklisted',
359
+ type: 'bool',
360
+ },
361
+ ],
362
+ name: 'WithdrawalProcessed',
363
+ type: 'event',
364
+ },
365
+ {
366
+ anonymous: false,
367
+ inputs: [
368
+ {
369
+ indexed: false,
370
+ internalType: 'address',
371
+ name: 'ownerAddr',
372
+ type: 'address',
373
+ },
374
+ {
375
+ indexed: false,
376
+ internalType: 'address',
377
+ name: 'receiverAddr',
378
+ type: 'address',
379
+ },
380
+ {
381
+ indexed: false,
382
+ internalType: 'uint256',
383
+ name: 'shares',
384
+ type: 'uint256',
385
+ },
386
+ {
387
+ indexed: false,
388
+ internalType: 'uint256',
389
+ name: 'assets',
390
+ type: 'uint256',
391
+ },
392
+ { indexed: false, internalType: 'uint256', name: 'fee', type: 'uint256' },
393
+ {
394
+ indexed: false,
395
+ internalType: 'uint256',
396
+ name: 'year',
397
+ type: 'uint256',
398
+ },
399
+ {
400
+ indexed: false,
401
+ internalType: 'uint256',
402
+ name: 'month',
403
+ type: 'uint256',
404
+ },
405
+ { indexed: false, internalType: 'uint256', name: 'day', type: 'uint256' },
406
+ ],
407
+ name: 'WithdrawalRequested',
408
+ type: 'event',
409
+ },
410
+ {
411
+ inputs: [{ internalType: 'address', name: 'addr', type: 'address' }],
412
+ name: 'addToBlacklist',
413
+ outputs: [],
414
+ stateMutability: 'nonpayable',
415
+ type: 'function',
416
+ },
417
+ {
418
+ inputs: [{ internalType: 'address[]', name: 'arr', type: 'address[]' }],
419
+ name: 'addWhitelistedSubaccount',
420
+ outputs: [],
421
+ stateMutability: 'nonpayable',
422
+ type: 'function',
423
+ },
424
+ {
425
+ inputs: [
426
+ { internalType: 'address', name: 'ownerAddr', type: 'address' },
427
+ { internalType: 'address', name: 'spenderAddr', type: 'address' },
428
+ ],
429
+ name: 'allowance',
430
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
431
+ stateMutability: 'view',
432
+ type: 'function',
433
+ },
434
+ {
435
+ inputs: [
436
+ { internalType: 'address', name: 'spender', type: 'address' },
437
+ { internalType: 'uint256', name: 'value', type: 'uint256' },
438
+ ],
439
+ name: 'approve',
440
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
441
+ stateMutability: 'nonpayable',
442
+ type: 'function',
443
+ },
444
+ {
445
+ inputs: [],
446
+ name: 'asset',
447
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
448
+ stateMutability: 'view',
449
+ type: 'function',
450
+ },
451
+ {
452
+ inputs: [],
453
+ name: 'assetsUpdatedOn',
454
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
455
+ stateMutability: 'view',
456
+ type: 'function',
457
+ },
458
+ {
459
+ inputs: [{ internalType: 'address', name: 'addr', type: 'address' }],
460
+ name: 'balanceOf',
461
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
462
+ stateMutability: 'view',
463
+ type: 'function',
464
+ },
465
+ {
466
+ inputs: [],
467
+ name: 'chargeManagementFee',
468
+ outputs: [],
469
+ stateMutability: 'nonpayable',
470
+ type: 'function',
471
+ },
472
+ {
473
+ inputs: [
474
+ { internalType: 'uint256', name: 'year', type: 'uint256' },
475
+ { internalType: 'uint256', name: 'month', type: 'uint256' },
476
+ { internalType: 'uint256', name: 'day', type: 'uint256' },
477
+ { internalType: 'address', name: 'receiverAddr', type: 'address' },
478
+ ],
479
+ name: 'claim',
480
+ outputs: [
481
+ { internalType: 'uint256', name: '', type: 'uint256' },
482
+ { internalType: 'uint256', name: '', type: 'uint256' },
483
+ ],
484
+ stateMutability: 'nonpayable',
485
+ type: 'function',
486
+ },
487
+ {
488
+ inputs: [],
489
+ name: 'collectFees',
490
+ outputs: [],
491
+ stateMutability: 'nonpayable',
492
+ type: 'function',
493
+ },
494
+ {
495
+ inputs: [
496
+ { internalType: 'uint256', name: 'newLagDuration', type: 'uint256' },
497
+ { internalType: 'uint256', name: 'newMaxDepositAmount', type: 'uint256' },
498
+ {
499
+ internalType: 'uint256',
500
+ name: 'newMaxWithdrawalAmount',
501
+ type: 'uint256',
502
+ },
503
+ { internalType: 'uint256', name: 'newMaxTokenSupply', type: 'uint256' },
504
+ {
505
+ internalType: 'uint256',
506
+ name: 'newManagementFeePercent',
507
+ type: 'uint256',
508
+ },
509
+ { internalType: 'uint256', name: 'newMaxChangePercent', type: 'uint256' },
510
+ { internalType: 'address', name: 'newUnderlyingAsset', type: 'address' },
511
+ {
512
+ internalType: 'address',
513
+ name: 'newFeesCollectorAddr',
514
+ type: 'address',
515
+ },
516
+ {
517
+ internalType: 'address',
518
+ name: 'newScheduledCallerAddress',
519
+ type: 'address',
520
+ },
521
+ { internalType: 'address', name: 'newOperatorAddress', type: 'address' },
522
+ ],
523
+ name: 'configure',
524
+ outputs: [],
525
+ stateMutability: 'nonpayable',
526
+ type: 'function',
527
+ },
528
+ {
529
+ inputs: [{ internalType: 'uint256', name: 'shares', type: 'uint256' }],
530
+ name: 'convertToAssets',
531
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
532
+ stateMutability: 'view',
533
+ type: 'function',
534
+ },
535
+ {
536
+ inputs: [{ internalType: 'uint256', name: 'assets', type: 'uint256' }],
537
+ name: 'convertToShares',
538
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
539
+ stateMutability: 'view',
540
+ type: 'function',
541
+ },
542
+ {
543
+ inputs: [],
544
+ name: 'decimals',
545
+ outputs: [{ internalType: 'uint8', name: '', type: 'uint8' }],
546
+ stateMutability: 'view',
547
+ type: 'function',
548
+ },
549
+ {
550
+ inputs: [
551
+ { internalType: 'uint256', name: 'assets', type: 'uint256' },
552
+ { internalType: 'address', name: 'receiver', type: 'address' },
553
+ ],
554
+ name: 'deposit',
555
+ outputs: [{ internalType: 'uint256', name: 'shares', type: 'uint256' }],
556
+ stateMutability: 'nonpayable',
557
+ type: 'function',
558
+ },
559
+ {
560
+ inputs: [
561
+ { internalType: 'uint256', name: 'amount', type: 'uint256' },
562
+ { internalType: 'address', name: 'subAccountAddr', type: 'address' },
563
+ ],
564
+ name: 'depositToSubaccount',
565
+ outputs: [],
566
+ stateMutability: 'nonpayable',
567
+ type: 'function',
568
+ },
569
+ {
570
+ inputs: [],
571
+ name: 'depositsPaused',
572
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
573
+ stateMutability: 'view',
574
+ type: 'function',
575
+ },
576
+ {
577
+ inputs: [
578
+ { internalType: 'contract IERC20', name: 'token', type: 'address' },
579
+ { internalType: 'address', name: 'destinationAddr', type: 'address' },
580
+ ],
581
+ name: 'emergencyWithdraw',
582
+ outputs: [],
583
+ stateMutability: 'nonpayable',
584
+ type: 'function',
585
+ },
586
+ {
587
+ inputs: [],
588
+ name: 'externalAssets',
589
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
590
+ stateMutability: 'view',
591
+ type: 'function',
592
+ },
593
+ {
594
+ inputs: [],
595
+ name: 'feesCollector',
596
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
597
+ stateMutability: 'view',
598
+ type: 'function',
599
+ },
600
+ {
601
+ inputs: [],
602
+ name: 'feesTimestamp',
603
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
604
+ stateMutability: 'view',
605
+ type: 'function',
606
+ },
607
+ {
608
+ inputs: [
609
+ { internalType: 'uint256', name: 'year', type: 'uint256' },
610
+ { internalType: 'uint256', name: 'month', type: 'uint256' },
611
+ { internalType: 'uint256', name: 'day', type: 'uint256' },
612
+ { internalType: 'address', name: 'receiverAddr', type: 'address' },
613
+ ],
614
+ name: 'getBurnableAmountByReceiver',
615
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
616
+ stateMutability: 'view',
617
+ type: 'function',
618
+ },
619
+ {
620
+ inputs: [
621
+ {
622
+ internalType: 'uint256',
623
+ name: 'externalAssetsAmount',
624
+ type: 'uint256',
625
+ },
626
+ ],
627
+ name: 'getChangePercentage',
628
+ outputs: [{ internalType: 'uint256', name: '', 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
+ { internalType: 'address', name: 'receiverAddr', type: 'address' },
638
+ ],
639
+ name: 'getClaimableAmountByReceiver',
640
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
641
+ stateMutability: 'view',
642
+ type: 'function',
643
+ },
644
+ {
645
+ inputs: [],
646
+ name: 'getInitializedVersion',
647
+ outputs: [{ internalType: 'uint8', name: '', type: 'uint8' }],
648
+ stateMutability: 'view',
649
+ type: 'function',
650
+ },
651
+ {
652
+ inputs: [],
653
+ name: 'getMaxAllowedChange',
654
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
655
+ stateMutability: 'view',
656
+ type: 'function',
657
+ },
658
+ {
659
+ inputs: [
660
+ { internalType: 'uint256', name: 'year', type: 'uint256' },
661
+ { internalType: 'uint256', name: 'month', type: 'uint256' },
662
+ { internalType: 'uint256', name: 'day', type: 'uint256' },
663
+ ],
664
+ name: 'getRequirementByDate',
665
+ outputs: [
666
+ { internalType: 'uint256', name: 'shares', type: 'uint256' },
667
+ { internalType: 'uint256', name: 'assets', type: 'uint256' },
668
+ ],
669
+ stateMutability: 'view',
670
+ type: 'function',
671
+ },
672
+ {
673
+ inputs: [
674
+ { internalType: 'uint256', name: 'year', type: 'uint256' },
675
+ { internalType: 'uint256', name: 'month', type: 'uint256' },
676
+ { internalType: 'uint256', name: 'day', type: 'uint256' },
677
+ ],
678
+ name: 'getScheduledTransactionsByDate',
679
+ outputs: [
680
+ { internalType: 'uint256', name: 'totalTransactions', type: 'uint256' },
681
+ { internalType: 'uint256', name: 'executionEpoch', type: 'uint256' },
682
+ ],
683
+ stateMutability: 'view',
684
+ type: 'function',
685
+ },
686
+ {
687
+ inputs: [],
688
+ name: 'getWithdrawalEpoch',
689
+ outputs: [
690
+ { internalType: 'uint256', name: 'year', type: 'uint256' },
691
+ { internalType: 'uint256', name: 'month', type: 'uint256' },
692
+ { internalType: 'uint256', name: 'day', type: 'uint256' },
693
+ { internalType: 'uint256', name: 'claimableEpoch', type: 'uint256' },
694
+ ],
695
+ stateMutability: 'view',
696
+ type: 'function',
697
+ },
698
+ {
699
+ inputs: [],
700
+ name: 'globalLiabilityAssets',
701
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
702
+ stateMutability: 'view',
703
+ type: 'function',
704
+ },
705
+ {
706
+ inputs: [],
707
+ name: 'globalLiabilityShares',
708
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
709
+ stateMutability: 'view',
710
+ type: 'function',
711
+ },
712
+ {
713
+ inputs: [
714
+ { internalType: 'address', name: 'newOwner', type: 'address' },
715
+ { internalType: 'uint8', name: 'erc20Decimals', type: 'uint8' },
716
+ { internalType: 'string', name: 'erc20Symbol', type: 'string' },
717
+ { internalType: 'string', name: 'erc20Name', type: 'string' },
718
+ ],
719
+ name: 'initialize',
720
+ outputs: [],
721
+ stateMutability: 'nonpayable',
722
+ type: 'function',
723
+ },
724
+ {
725
+ inputs: [
726
+ { internalType: 'uint256', name: 'shares', type: 'uint256' },
727
+ { internalType: 'address', name: 'receiverAddr', type: 'address' },
728
+ { internalType: 'address', name: 'holderAddr', type: 'address' },
729
+ ],
730
+ name: 'instantRedeem',
731
+ outputs: [],
732
+ stateMutability: 'nonpayable',
733
+ type: 'function',
734
+ },
735
+ {
736
+ inputs: [],
737
+ name: 'instantRedemptionFee',
738
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
739
+ stateMutability: 'view',
740
+ type: 'function',
741
+ },
742
+ {
743
+ inputs: [{ internalType: 'address', name: '', type: 'address' }],
744
+ name: 'isBlacklisted',
745
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
746
+ stateMutability: 'view',
747
+ type: 'function',
748
+ },
749
+ {
750
+ inputs: [],
751
+ name: 'lagDuration',
752
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
753
+ stateMutability: 'view',
754
+ type: 'function',
755
+ },
756
+ {
757
+ inputs: [],
758
+ name: 'managementFeePercent',
759
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
760
+ stateMutability: 'view',
761
+ type: 'function',
762
+ },
763
+ {
764
+ inputs: [],
765
+ name: 'maxChangePercent',
766
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
767
+ stateMutability: 'view',
768
+ type: 'function',
769
+ },
770
+ {
771
+ inputs: [{ internalType: 'address', name: '', type: 'address' }],
772
+ name: 'maxDeposit',
773
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
774
+ stateMutability: 'view',
775
+ type: 'function',
776
+ },
777
+ {
778
+ inputs: [],
779
+ name: 'maxDepositAmount',
780
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
781
+ stateMutability: 'view',
782
+ type: 'function',
783
+ },
784
+ {
785
+ inputs: [{ internalType: 'address', name: '', type: 'address' }],
786
+ name: 'maxMint',
787
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
788
+ stateMutability: 'view',
789
+ type: 'function',
790
+ },
791
+ {
792
+ inputs: [{ internalType: 'address', name: 'holderAddr', type: 'address' }],
793
+ name: 'maxRedeem',
794
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
795
+ stateMutability: 'view',
796
+ type: 'function',
797
+ },
798
+ {
799
+ inputs: [],
800
+ name: 'maxSupply',
801
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
802
+ stateMutability: 'view',
803
+ type: 'function',
804
+ },
805
+ {
806
+ inputs: [{ internalType: 'address', name: 'holderAddr', type: 'address' }],
807
+ name: 'maxWithdraw',
808
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
809
+ stateMutability: 'view',
810
+ type: 'function',
811
+ },
812
+ {
813
+ inputs: [],
814
+ name: 'maxWithdrawalAmount',
815
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
816
+ stateMutability: 'view',
817
+ type: 'function',
818
+ },
819
+ {
820
+ inputs: [
821
+ { internalType: 'uint256', name: 'shares', type: 'uint256' },
822
+ { internalType: 'address', name: 'receiver', type: 'address' },
823
+ ],
824
+ name: 'mint',
825
+ outputs: [{ internalType: 'uint256', name: 'assets', type: 'uint256' }],
826
+ stateMutability: 'nonpayable',
827
+ type: 'function',
828
+ },
829
+ {
830
+ inputs: [],
831
+ name: 'name',
832
+ outputs: [{ internalType: 'string', name: '', type: 'string' }],
833
+ stateMutability: 'view',
834
+ type: 'function',
835
+ },
836
+ {
837
+ inputs: [],
838
+ name: 'operator',
839
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
840
+ stateMutability: 'view',
841
+ type: 'function',
842
+ },
843
+ {
844
+ inputs: [],
845
+ name: 'owner',
846
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
847
+ stateMutability: 'view',
848
+ type: 'function',
849
+ },
850
+ {
851
+ inputs: [
852
+ { internalType: 'bool', name: 'bPauseDeposits', type: 'bool' },
853
+ { internalType: 'bool', name: 'bPauseWithdrawals', type: 'bool' },
854
+ ],
855
+ name: 'pauseDepositsAndWithdrawals',
856
+ outputs: [],
857
+ stateMutability: 'nonpayable',
858
+ type: 'function',
859
+ },
860
+ {
861
+ inputs: [{ internalType: 'uint256', name: 'assets', type: 'uint256' }],
862
+ name: 'previewDeposit',
863
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
864
+ stateMutability: 'view',
865
+ type: 'function',
866
+ },
867
+ {
868
+ inputs: [{ internalType: 'uint256', name: 'shares', type: 'uint256' }],
869
+ name: 'previewInstantRedemption',
870
+ outputs: [{ internalType: 'uint256', name: 'assets', type: 'uint256' }],
871
+ stateMutability: 'view',
872
+ type: 'function',
873
+ },
874
+ {
875
+ inputs: [{ internalType: 'uint256', name: 'shares', type: 'uint256' }],
876
+ name: 'previewMint',
877
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
878
+ stateMutability: 'view',
879
+ type: 'function',
880
+ },
881
+ {
882
+ inputs: [{ internalType: 'uint256', name: 'shares', type: 'uint256' }],
883
+ name: 'previewRedeem',
884
+ outputs: [{ internalType: 'uint256', name: 'assets', type: 'uint256' }],
885
+ stateMutability: 'view',
886
+ type: 'function',
887
+ },
888
+ {
889
+ inputs: [{ internalType: 'uint256', name: 'assets', type: 'uint256' }],
890
+ name: 'previewWithdraw',
891
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
892
+ stateMutability: 'view',
893
+ type: 'function',
894
+ },
895
+ {
896
+ inputs: [
897
+ { internalType: 'uint256', name: 'year', type: 'uint256' },
898
+ { internalType: 'uint256', name: 'month', type: 'uint256' },
899
+ { internalType: 'uint256', name: 'day', type: 'uint256' },
900
+ { internalType: 'uint256', name: 'maxLimit', type: 'uint256' },
901
+ ],
902
+ name: 'processAllClaimsByDate',
903
+ outputs: [],
904
+ stateMutability: 'nonpayable',
905
+ type: 'function',
906
+ },
907
+ {
908
+ inputs: [
909
+ { internalType: 'uint256', name: '', type: 'uint256' },
910
+ { internalType: 'address', name: '', type: 'address' },
911
+ { internalType: 'address', name: '', type: 'address' },
912
+ ],
913
+ name: 'redeem',
914
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
915
+ stateMutability: 'pure',
916
+ type: 'function',
917
+ },
918
+ {
919
+ inputs: [{ internalType: 'address', name: 'addr', type: 'address' }],
920
+ name: 'removeFromBlacklist',
921
+ outputs: [],
922
+ stateMutability: 'nonpayable',
923
+ type: 'function',
924
+ },
925
+ {
926
+ inputs: [{ internalType: 'address[]', name: 'arr', type: 'address[]' }],
927
+ name: 'removeWhitelistedSubaccount',
928
+ outputs: [],
929
+ stateMutability: 'nonpayable',
930
+ type: 'function',
931
+ },
932
+ {
933
+ inputs: [
934
+ { internalType: 'uint256', name: 'shares', type: 'uint256' },
935
+ { internalType: 'address', name: 'receiverAddr', type: 'address' },
936
+ { internalType: 'address', name: 'holderAddr', type: 'address' },
937
+ ],
938
+ name: 'requestRedeem',
939
+ outputs: [
940
+ { internalType: 'uint256', name: 'assets', type: 'uint256' },
941
+ { internalType: 'uint256', name: 'claimableEpoch', type: 'uint256' },
942
+ ],
943
+ stateMutability: 'nonpayable',
944
+ type: 'function',
945
+ },
946
+ {
947
+ inputs: [],
948
+ name: 'scheduledCallerAddress',
949
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
950
+ stateMutability: 'view',
951
+ type: 'function',
952
+ },
953
+ {
954
+ inputs: [],
955
+ name: 'settlementAccount',
956
+ outputs: [{ internalType: 'address', name: '', type: 'address' }],
957
+ stateMutability: 'view',
958
+ type: 'function',
959
+ },
960
+ {
961
+ inputs: [],
962
+ name: 'symbol',
963
+ outputs: [{ internalType: 'string', name: '', type: 'string' }],
964
+ stateMutability: 'view',
965
+ type: 'function',
966
+ },
967
+ {
968
+ inputs: [],
969
+ name: 'totalAssets',
970
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
971
+ stateMutability: 'view',
972
+ type: 'function',
973
+ },
974
+ {
975
+ inputs: [],
976
+ name: 'totalCollectableFees',
977
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
978
+ stateMutability: 'view',
979
+ type: 'function',
980
+ },
981
+ {
982
+ inputs: [],
983
+ name: 'totalSupply',
984
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
985
+ stateMutability: 'view',
986
+ type: 'function',
987
+ },
988
+ {
989
+ inputs: [],
990
+ name: 'totalWhitelistedSubAccounts',
991
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
992
+ stateMutability: 'view',
993
+ type: 'function',
994
+ },
995
+ {
996
+ inputs: [
997
+ { internalType: 'address', name: 'to', type: 'address' },
998
+ { internalType: 'uint256', name: 'value', type: 'uint256' },
999
+ ],
1000
+ name: 'transfer',
1001
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
1002
+ stateMutability: 'nonpayable',
1003
+ type: 'function',
1004
+ },
1005
+ {
1006
+ inputs: [
1007
+ { internalType: 'address', name: 'from', type: 'address' },
1008
+ { internalType: 'address', name: 'to', type: 'address' },
1009
+ { internalType: 'uint256', name: 'value', type: 'uint256' },
1010
+ ],
1011
+ name: 'transferFrom',
1012
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
1013
+ stateMutability: 'nonpayable',
1014
+ type: 'function',
1015
+ },
1016
+ {
1017
+ inputs: [{ internalType: 'address', name: 'newOwner', type: 'address' }],
1018
+ name: 'transferOwnership',
1019
+ outputs: [],
1020
+ stateMutability: 'nonpayable',
1021
+ type: 'function',
1022
+ },
1023
+ {
1024
+ inputs: [
1025
+ { internalType: 'address', name: 'newFeeCollectorAddr', type: 'address' },
1026
+ ],
1027
+ name: 'updateFeeCollector',
1028
+ outputs: [],
1029
+ stateMutability: 'nonpayable',
1030
+ type: 'function',
1031
+ },
1032
+ {
1033
+ inputs: [{ internalType: 'uint256', name: 'newFee', type: 'uint256' }],
1034
+ name: 'updateInstantRedemptionFee',
1035
+ outputs: [],
1036
+ stateMutability: 'nonpayable',
1037
+ type: 'function',
1038
+ },
1039
+ {
1040
+ inputs: [
1041
+ { internalType: 'uint256', name: 'newMaxDepositAmount', type: 'uint256' },
1042
+ {
1043
+ internalType: 'uint256',
1044
+ name: 'newMaxWithdrawalAmount',
1045
+ type: 'uint256',
1046
+ },
1047
+ { internalType: 'uint256', name: 'newMaxTokenSupply', type: 'uint256' },
1048
+ ],
1049
+ name: 'updateIssuanceLimits',
1050
+ outputs: [],
1051
+ stateMutability: 'nonpayable',
1052
+ type: 'function',
1053
+ },
1054
+ {
1055
+ inputs: [
1056
+ {
1057
+ internalType: 'uint256',
1058
+ name: 'newManagementFeePercent',
1059
+ type: 'uint256',
1060
+ },
1061
+ ],
1062
+ name: 'updateManagementFee',
1063
+ outputs: [],
1064
+ stateMutability: 'nonpayable',
1065
+ type: 'function',
1066
+ },
1067
+ {
1068
+ inputs: [{ internalType: 'uint256', name: 'newValue', type: 'uint256' }],
1069
+ name: 'updateMaxChangePercent',
1070
+ outputs: [],
1071
+ stateMutability: 'nonpayable',
1072
+ type: 'function',
1073
+ },
1074
+ {
1075
+ inputs: [{ internalType: 'address', name: 'addr', type: 'address' }],
1076
+ name: 'updateOperator',
1077
+ outputs: [],
1078
+ stateMutability: 'nonpayable',
1079
+ type: 'function',
1080
+ },
1081
+ {
1082
+ inputs: [{ internalType: 'address', name: 'addr', type: 'address' }],
1083
+ name: 'updateSettlementAccount',
1084
+ outputs: [],
1085
+ stateMutability: 'nonpayable',
1086
+ type: 'function',
1087
+ },
1088
+ {
1089
+ inputs: [{ internalType: 'uint256', name: 'newDuration', type: 'uint256' }],
1090
+ name: 'updateTimelockDuration',
1091
+ outputs: [],
1092
+ stateMutability: 'nonpayable',
1093
+ type: 'function',
1094
+ },
1095
+ {
1096
+ inputs: [
1097
+ {
1098
+ internalType: 'uint256',
1099
+ name: 'externalAssetsAmount',
1100
+ type: 'uint256',
1101
+ },
1102
+ ],
1103
+ name: 'updateTotalAssets',
1104
+ outputs: [],
1105
+ stateMutability: 'nonpayable',
1106
+ type: 'function',
1107
+ },
1108
+ {
1109
+ inputs: [
1110
+ { internalType: 'uint256', name: 'newWithdrawalFee', type: 'uint256' },
1111
+ ],
1112
+ name: 'updateWithdrawalFee',
1113
+ outputs: [],
1114
+ stateMutability: 'nonpayable',
1115
+ type: 'function',
1116
+ },
1117
+ {
1118
+ inputs: [{ internalType: 'address', name: '', type: 'address' }],
1119
+ name: 'whitelistedSubAccounts',
1120
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
1121
+ stateMutability: 'view',
1122
+ type: 'function',
1123
+ },
1124
+ {
1125
+ inputs: [
1126
+ { internalType: 'uint256', name: '', type: 'uint256' },
1127
+ { internalType: 'address', name: '', type: 'address' },
1128
+ { internalType: 'address', name: '', type: 'address' },
1129
+ ],
1130
+ name: 'withdraw',
1131
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
1132
+ stateMutability: 'pure',
1133
+ type: 'function',
1134
+ },
1135
+ {
1136
+ inputs: [
1137
+ { internalType: 'uint256', name: 'amount', type: 'uint256' },
1138
+ { internalType: 'address', name: 'subAccountAddr', type: 'address' },
1139
+ ],
1140
+ name: 'withdrawFromSubaccount',
1141
+ outputs: [],
1142
+ stateMutability: 'nonpayable',
1143
+ type: 'function',
1144
+ },
1145
+ {
1146
+ inputs: [],
1147
+ name: 'withdrawalFee',
1148
+ outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
1149
+ stateMutability: 'view',
1150
+ type: 'function',
1151
+ },
1152
+ {
1153
+ inputs: [],
1154
+ name: 'withdrawalsPaused',
1155
+ outputs: [{ internalType: 'bool', name: '', type: 'bool' }],
1156
+ stateMutability: 'view',
1157
+ type: 'function',
1158
+ },
1159
+ ];
1160
+ //# sourceMappingURL=LendingPoolV3.js.map