@hinkal/common 0.0.113 → 0.0.114

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 (269) hide show
  1. package/API/API.js +58 -0
  2. package/API/HinkalPointsCalls.js +38 -0
  3. package/API/callBeefyGraphAPI.js +37 -0
  4. package/API/callCurveAPI.js +156 -0
  5. package/API/callMonitor.js +30 -0
  6. package/API/callOdosAPI.js +44 -0
  7. package/API/callOneInchAPI.js +37 -0
  8. package/API/callRelayer.js +32 -0
  9. package/API/checkRisk.js +30 -0
  10. package/API/dataServerCalls.js +32 -0
  11. package/API/fetchCommitmentsCache.js +31 -0
  12. package/API/fetchNullifiers.js +30 -0
  13. package/API/getAxelarGasEstimate.js +37 -0
  14. package/API/getCoingeckoPrice.js +27 -0
  15. package/API/getConnextReceiveFee.js +30 -0
  16. package/API/getGasEstimates.js +38 -0
  17. package/API/getRelayerURL.js +32 -0
  18. package/API/getServerURL.js +67 -0
  19. package/API/getTokenPrice.js +41 -0
  20. package/API/kycCalls.js +32 -0
  21. package/API/passwordCalls.js +36 -0
  22. package/API/referralProgramCalls.js +58 -0
  23. package/API/relayCalls.js +30 -0
  24. package/API/restoreSnapshots.js +32 -0
  25. package/API/rewardsPointsCalls.js +40 -0
  26. package/API/userVerifyTransactions.js +45 -0
  27. package/assets/{snarkjsWorkerLauncher-fuD5h_j0.js → snarkjsWorkerLauncher-CaBCnle3.js} +283 -257
  28. package/assets/snarkjsWorkerLogic-BAbiO5gj.js +17935 -0
  29. package/assets/snarkjsWorkerLogic-wHJfYCfg.js +15636 -0
  30. package/assets/{utxoWorkerLogic-CtFLQiAX.js → utxoWorkerLogic-BGFm-Zl2.js} +2 -2
  31. package/assets/{zkProofWorkerLauncher-J3Ts5_Ba.js → zkProofWorkerLauncher-BteYxRBn.js} +1 -1
  32. package/assets/{zkProofWorkerLogic-CPNuu61R.js → zkProofWorkerLogic-DiLbAhAo.js} +8354 -8298
  33. package/constants/assets.constants.js +16 -0
  34. package/constants/axelar.constants.js +55 -0
  35. package/constants/backend.constants.js +18 -0
  36. package/constants/beefy.registry.js +24 -0
  37. package/constants/chains.constants.js +204 -0
  38. package/constants/coingecko.constants.js +53 -0
  39. package/constants/contracts.constants.js +276 -0
  40. package/constants/crvCvx.registry.js +636 -0
  41. package/constants/crvDynamic.registry.js +24 -0
  42. package/constants/deploy-data/deploy-data-arbMainnet.json.js +7415 -0
  43. package/constants/deploy-data/deploy-data-avalanche.json.js +7411 -0
  44. package/constants/deploy-data/deploy-data-axelar1.json.js +4329 -0
  45. package/constants/deploy-data/deploy-data-axelar2.json.js +4329 -0
  46. package/constants/deploy-data/deploy-data-base.json.js +8425 -0
  47. package/constants/deploy-data/deploy-data-blast.json.js +9600 -0
  48. package/constants/deploy-data/deploy-data-bnbMainnet.json.js +6877 -0
  49. package/constants/deploy-data/deploy-data-ethMainnet.json.js +11427 -0
  50. package/constants/deploy-data/deploy-data-localhost.json.js +13283 -0
  51. package/constants/deploy-data/deploy-data-optimism.json.js +7417 -0
  52. package/constants/deploy-data/deploy-data-polygon.json.js +7439 -0
  53. package/constants/fees.constants.js +57 -0
  54. package/constants/kyc.constants.js +118 -0
  55. package/constants/lido.constants.js +13 -0
  56. package/constants/pendle.registry.js +253 -0
  57. package/constants/protocol.constants.js +26 -0
  58. package/constants/reorg-depths.constants.js +15 -0
  59. package/constants/rewards.constants.js +27 -0
  60. package/constants/server.constants.js +157 -0
  61. package/constants/token-data/ERC20Registry.js +85 -0
  62. package/constants/token-data/arbMainnetRegistry.json.js +946 -0
  63. package/constants/token-data/arbMainnetRegistryFixed.json.js +856 -0
  64. package/constants/token-data/avalancheRegistry.json.js +591 -0
  65. package/constants/token-data/avalancheRegistryFixed.json.js +591 -0
  66. package/constants/token-data/baseRegistry.json.js +490 -0
  67. package/constants/token-data/baseRegistryFixed.json.js +463 -0
  68. package/constants/token-data/blastRegistry.json.js +137 -0
  69. package/constants/token-data/blastRegistryFixed.json.js +137 -0
  70. package/constants/token-data/bnbMainnetRegistry.json.js +973 -0
  71. package/constants/token-data/bnbMainnetRegistryFixed.json.js +973 -0
  72. package/constants/token-data/coingeckoRegistry.json.js +115623 -0
  73. package/constants/token-data/ethMainnetRegistry.json.js +2700 -0
  74. package/constants/token-data/ethMainnetRegistryFixed.json.js +2251 -0
  75. package/constants/token-data/index.js +6 -0
  76. package/constants/token-data/localhostRegistry.json.js +2768 -0
  77. package/constants/token-data/optimismRegistry.json.js +1455 -0
  78. package/constants/token-data/optimismRegistryFixed.json.js +1392 -0
  79. package/constants/token-data/polygonRegistry.json.js +1327 -0
  80. package/constants/token-data/polygonRegistryFixed.json.js +1255 -0
  81. package/constants/token-data/popularTokens.constants.js +14 -0
  82. package/constants/token-data/tokenPricing.consts.js +8 -0
  83. package/constants/vite.constants.js +29 -0
  84. package/crypto/babyJub.js +15 -0
  85. package/crypto/poseidon.js +26 -0
  86. package/crypto/preProcessing.js +9 -0
  87. package/data-structures/Hinkal/Hinkal.js +299 -0
  88. package/data-structures/Hinkal/hinkalActionBeefy.js +101 -0
  89. package/data-structures/Hinkal/hinkalActionConvex.js +83 -0
  90. package/data-structures/Hinkal/hinkalActionCurve.js +112 -0
  91. package/data-structures/Hinkal/hinkalActionLidoEth.js +91 -0
  92. package/data-structures/Hinkal/hinkalActionPendle.js +140 -0
  93. package/data-structures/Hinkal/hinkalActionPendleLP.js +96 -0
  94. package/data-structures/Hinkal/hinkalActionStake.js +138 -0
  95. package/data-structures/Hinkal/hinkalActionVolatile.js +112 -0
  96. package/data-structures/Hinkal/hinkalDeposit.js +95 -0
  97. package/data-structures/Hinkal/hinkalGetZkMeProvider.js +47 -0
  98. package/data-structures/Hinkal/hinkalPrivateWallet.js +66 -0
  99. package/data-structures/Hinkal/hinkalSwap.js +98 -0
  100. package/data-structures/Hinkal/hinkalTransfer.js +5 -0
  101. package/data-structures/Hinkal/hinkalWithdraw.js +91 -0
  102. package/data-structures/Hinkal/resetMerkleTrees.js +49 -0
  103. package/data-structures/MultiThreadedUtxoUtils/MultiThreadedUtxoUtils.js +83 -0
  104. package/data-structures/ValueCache/ValueCache.js +25 -0
  105. package/data-structures/crypto-keys/decodeUTXO.js +40 -0
  106. package/data-structures/crypto-keys/encryptDecryptUtxo.js +41 -0
  107. package/data-structures/crypto-keys/keyUtils.js +10 -0
  108. package/data-structures/crypto-keys/keys.js +90 -0
  109. package/data-structures/custom-token-registry/CustomTokenRegistry.js +33 -0
  110. package/data-structures/event-service/AbstractAccessTokenSnapshotService.js +131 -0
  111. package/data-structures/event-service/AbstractCommitmentsSnapshotService.js +132 -0
  112. package/data-structures/event-service/AbstractEventService.js +118 -0
  113. package/data-structures/event-service/AbstractNullifierSnapshotService.js +59 -0
  114. package/data-structures/event-service/AbstractSnapshotService.js +35 -0
  115. package/data-structures/merkle-tree/MerkleTree.js +177 -0
  116. package/data-structures/merkle-tree/MerkleTreeIncompleteError.js +8 -0
  117. package/data-structures/snapshot/ClientAccessTokenSnapshotService.js +48 -0
  118. package/data-structures/snapshot/ClientCommitmentsSnapshotService.js +47 -0
  119. package/data-structures/snapshot/ClientNullifierSnapshotService.js +44 -0
  120. package/data-structures/token-price-fetcher/TokenChecker.js +29 -0
  121. package/data-structures/token-price-fetcher/TokenPriceFetcher.js +218 -0
  122. package/data-structures/transactions-manager/TransactionsManager.js +194 -0
  123. package/data-structures/transactions-manager/history/getBeefyData.js +68 -0
  124. package/data-structures/transactions-manager/history/getConvexData.js +57 -0
  125. package/data-structures/transactions-manager/history/getCurveData.js +97 -0
  126. package/data-structures/transactions-manager/history/getDepositData.js +36 -0
  127. package/data-structures/transactions-manager/history/getLidoData.js +44 -0
  128. package/data-structures/transactions-manager/history/getPendleData.js +59 -0
  129. package/data-structures/transactions-manager/history/getSwapData.js +43 -0
  130. package/data-structures/transactions-manager/history/getTxDetails.js +74 -0
  131. package/data-structures/transactions-manager/history/getVolatileData.js +75 -0
  132. package/data-structures/transactions-manager/history/history.types.js +62 -0
  133. package/data-structures/transactions-manager/history/history.utils.js +8 -0
  134. package/data-structures/utxo/Utxo.js +134 -0
  135. package/data-structures/volatile-helper/VolatileHelper.js +181 -0
  136. package/error-handling/customErrors/ErrorWithAmount.js +9 -0
  137. package/error-handling/customErrors/FeeOverTransactionValueError.js +9 -0
  138. package/error-handling/customErrors/customErrors.helpers.js +21 -0
  139. package/error-handling/error-codes.constants.js +184 -0
  140. package/error-handling/get-error.message.js +53 -0
  141. package/error-handling/handleErrorRestore.js +35 -0
  142. package/error-handling/logError.js +7 -0
  143. package/error-handling/types.js +4 -0
  144. package/externalABIs/BUSD.js +519 -0
  145. package/externalABIs/BabPassport.json.js +24 -0
  146. package/externalABIs/BeefyRouterAbi.json.js +1022 -0
  147. package/externalABIs/BeefyStrategyAbi.json.js +1423 -0
  148. package/externalABIs/BeefyVaultAbi.json.js +570 -0
  149. package/externalABIs/BeefyZapAbi.json.js +208 -0
  150. package/externalABIs/BeefyZapOneInchAbi.json.js +340 -0
  151. package/externalABIs/ConvexBoosterAbi.json.js +674 -0
  152. package/externalABIs/ConvexBoosterAbiMainnet.json.js +1002 -0
  153. package/externalABIs/ConvexRewardPoolAbi.json.js +883 -0
  154. package/externalABIs/CurveReadingWrapperAbi.json.js +1422 -0
  155. package/externalABIs/CurveWrappedMainPool.json.js +1136 -0
  156. package/externalABIs/CurveZap.json.js +262 -0
  157. package/externalABIs/CvxCrvUtilities.json.js +264 -0
  158. package/externalABIs/DAI.js +334 -0
  159. package/externalABIs/ERC20.json.js +291 -0
  160. package/externalABIs/GalxePassport.json.js +41 -0
  161. package/externalABIs/IQuoterV2.json.js +205 -0
  162. package/externalABIs/ISwapRouter.json.js +568 -0
  163. package/externalABIs/IUniswapV3Factory.json.js +201 -0
  164. package/externalABIs/IUniswapV3Pool.json.js +999 -0
  165. package/externalABIs/LidoStEthAbi.json.js +1603 -0
  166. package/externalABIs/LidoStMaticAbi.json.js +1764 -0
  167. package/externalABIs/LidoStakeManagerAbi.json.js +2082 -0
  168. package/externalABIs/LidoWithdrawalQueueERC721Abi.json.js +2030 -0
  169. package/externalABIs/LidoWstEthAbi.json.js +480 -0
  170. package/externalABIs/OptimismGasPriceOracle.json.js +206 -0
  171. package/externalABIs/PendleRouterAbi.json.js +173 -0
  172. package/externalABIs/PoLidoNftAbi.json.js +701 -0
  173. package/externalABIs/SanctionsList.js +89 -0
  174. package/externalABIs/USDC.js +721 -0
  175. package/externalABIs/USDR.js +346 -0
  176. package/externalABIs/USDR3CRV.js +542 -0
  177. package/externalABIs/USDT.js +393 -0
  178. package/externalABIs/UniswapV2PoolAbi.json.js +80 -0
  179. package/externalABIs/WETH.js +156 -0
  180. package/externalABIs/amToken.js +350 -0
  181. package/externalABIs/transactionsProver.json.js +39 -0
  182. package/functions/kyc/authentoHelper.js +42 -0
  183. package/functions/kyc/passportHelper.js +39 -0
  184. package/functions/kyc/zkMeHelper.js +56 -0
  185. package/functions/pre-transaction/getFlatFees.js +203 -0
  186. package/functions/pre-transaction/interaction-to-action.js +57 -0
  187. package/functions/pre-transaction/outputUtxoProcessing.js +45 -0
  188. package/functions/pre-transaction/process-gas-estimates.js +57 -0
  189. package/functions/pre-transaction/processAmountChanges.js +229 -0
  190. package/functions/private-wallet/emporium.helpers.js +19 -0
  191. package/functions/private-wallet/opProducer.js +24 -0
  192. package/functions/protocols/convex.protocols.js +41 -0
  193. package/functions/protocols/curve.protocols.js +45 -0
  194. package/functions/protocols/pendle.helpers.js +108 -0
  195. package/functions/snarkjs/common.snarkjs.js +96 -0
  196. package/functions/snarkjs/constant.js +211 -0
  197. package/functions/snarkjs/constructEmporiumProof.js +105 -0
  198. package/functions/snarkjs/constructGeneralZkProof.js +129 -0
  199. package/functions/snarkjs/generateCircomData.js +60 -0
  200. package/functions/snarkjs/generateZkProof.js +18 -0
  201. package/functions/snarkjs/getZKFiles.js +30 -0
  202. package/functions/staking/index.js +40 -0
  203. package/functions/utils/amounts.utils.js +70 -0
  204. package/functions/utils/axelar.utils.js +38 -0
  205. package/functions/utils/cacheFunctions.js +67 -0
  206. package/functions/utils/caseInsensitive.utils.js +6 -0
  207. package/functions/utils/convertIntegrationProviderToExternalActionId.js +16 -0
  208. package/functions/utils/create-provider.js +5 -0
  209. package/functions/utils/enum.utils.js +14 -0
  210. package/functions/utils/erc20tokenFunctions.js +20 -0
  211. package/functions/utils/evmNetworkFunctions.js +29 -0
  212. package/functions/utils/external-action.utils.js +61 -0
  213. package/functions/utils/getDataFromTransaction.js +105 -0
  214. package/functions/utils/memoize.utils.js +14 -0
  215. package/functions/utils/nickname.utils.js +7 -0
  216. package/functions/utils/process.utils.js +4 -0
  217. package/functions/utils/reloadPage.js +4 -0
  218. package/functions/utils/requireEnv.js +7 -0
  219. package/functions/utils/resolve-sync.utils.js +22 -0
  220. package/functions/utils/serialize.utils.js +4 -0
  221. package/functions/utils/string.utils.js +14 -0
  222. package/functions/utils/time.utils.js +8 -0
  223. package/functions/utils/userAgent.js +15 -0
  224. package/functions/utils/volatile-patcher.utils.js +40 -0
  225. package/functions/web3/etherFunctions.js +41 -0
  226. package/functions/web3/events/balanceChangedHandler.js +10 -0
  227. package/functions/web3/events/getInputUtxoAndBalance.js +72 -0
  228. package/functions/web3/events/getShieldedBalance.js +107 -0
  229. package/functions/web3/events/web3RetrieveEvents.js +9 -0
  230. package/functions/web3/functionCalls/accessTokenCalls.js +48 -0
  231. package/functions/web3/functionCalls/approveToken.js +153 -0
  232. package/functions/web3/functionCalls/estimateGasRelayer.js +18 -0
  233. package/functions/web3/functionCalls/transactCallDirect.js +60 -0
  234. package/functions/web3/functionCalls/transactCallRelayer.js +42 -0
  235. package/functions/web3/odosAPI.js +65 -0
  236. package/functions/web3/oneInchAPI.js +61 -0
  237. package/functions/web3/runContractFunction.js +95 -0
  238. package/functions/web3/uniswapAPI.js +97 -0
  239. package/index.js +642 -455
  240. package/package.json +2 -2
  241. package/types/beefy.types.js +21 -0
  242. package/types/circom-data.types.js +22 -0
  243. package/types/curve.types.js +25 -0
  244. package/types/ethereum-network.types.js +4 -0
  245. package/types/external-action.types.js +4 -0
  246. package/types/hinkal.stake.types.js +4 -0
  247. package/types/hinkal.types.js +15 -0
  248. package/types/kyc.types.js +13 -0
  249. package/types/pendle.types.js +15 -0
  250. package/types/rewards.types.js +27 -0
  251. package/types/slippage.types.js +15 -0
  252. package/types/time.types.js +58 -0
  253. package/types/token.types.js +4 -0
  254. package/types/transactions.types.js +36 -0
  255. package/webworker/performTaskWithWorker.js +62 -0
  256. package/webworker/snarkjsWorker/snarkjsWorker.types.js +4 -0
  257. package/{snarkjsWorkerLogic-CVna_BW9.mjs → webworker/snarkjsWorker/snarkjsWorkerLogic.js} +1 -1
  258. package/webworker/utxoWorker/utxoWorker.types.js +4 -0
  259. package/webworker/utxoWorker/utxoWorkerLogic.js +70 -0
  260. package/webworker/worker.registry.js +4 -0
  261. package/webworker/workerFactory.js +42 -0
  262. package/{workerProxy-BDj498Ht.mjs → webworker/workerProxy.js} +1 -1
  263. package/webworker/zkProofWorker/zkProofWorker.types.js +4 -0
  264. package/webworker/zkProofWorker/zkProofWorkerLogic.js +66 -0
  265. package/assets/snarkjsWorkerLogic-B6N4z_eM.js +0 -12136
  266. package/assets/snarkjsWorkerLogic-Fv0M38Mc.js +0 -12087
  267. package/index-DXElTGy9.mjs +0 -254449
  268. package/utxoWorkerLogic-B1Hh-bq4.mjs +0 -64
  269. package/zkProofWorkerLogic-D9rxuuiK.mjs +0 -60
@@ -0,0 +1,1603 @@
1
+ const e = [
2
+ {
3
+ constant: !1,
4
+ inputs: [],
5
+ name: "resume",
6
+ outputs: [],
7
+ payable: !1,
8
+ stateMutability: "nonpayable",
9
+ type: "function"
10
+ },
11
+ {
12
+ constant: !0,
13
+ inputs: [],
14
+ name: "name",
15
+ outputs: [
16
+ {
17
+ name: "",
18
+ type: "string"
19
+ }
20
+ ],
21
+ payable: !1,
22
+ stateMutability: "pure",
23
+ type: "function"
24
+ },
25
+ {
26
+ constant: !1,
27
+ inputs: [],
28
+ name: "stop",
29
+ outputs: [],
30
+ payable: !1,
31
+ stateMutability: "nonpayable",
32
+ type: "function"
33
+ },
34
+ {
35
+ constant: !0,
36
+ inputs: [],
37
+ name: "hasInitialized",
38
+ outputs: [
39
+ {
40
+ name: "",
41
+ type: "bool"
42
+ }
43
+ ],
44
+ payable: !1,
45
+ stateMutability: "view",
46
+ type: "function"
47
+ },
48
+ {
49
+ constant: !1,
50
+ inputs: [
51
+ {
52
+ name: "_spender",
53
+ type: "address"
54
+ },
55
+ {
56
+ name: "_amount",
57
+ type: "uint256"
58
+ }
59
+ ],
60
+ name: "approve",
61
+ outputs: [
62
+ {
63
+ name: "",
64
+ type: "bool"
65
+ }
66
+ ],
67
+ payable: !1,
68
+ stateMutability: "nonpayable",
69
+ type: "function"
70
+ },
71
+ {
72
+ constant: !0,
73
+ inputs: [],
74
+ name: "STAKING_CONTROL_ROLE",
75
+ outputs: [
76
+ {
77
+ name: "",
78
+ type: "bytes32"
79
+ }
80
+ ],
81
+ payable: !1,
82
+ stateMutability: "view",
83
+ type: "function"
84
+ },
85
+ {
86
+ constant: !0,
87
+ inputs: [],
88
+ name: "totalSupply",
89
+ outputs: [
90
+ {
91
+ name: "",
92
+ type: "uint256"
93
+ }
94
+ ],
95
+ payable: !1,
96
+ stateMutability: "view",
97
+ type: "function"
98
+ },
99
+ {
100
+ constant: !0,
101
+ inputs: [
102
+ {
103
+ name: "_ethAmount",
104
+ type: "uint256"
105
+ }
106
+ ],
107
+ name: "getSharesByPooledEth",
108
+ outputs: [
109
+ {
110
+ name: "",
111
+ type: "uint256"
112
+ }
113
+ ],
114
+ payable: !1,
115
+ stateMutability: "view",
116
+ type: "function"
117
+ },
118
+ {
119
+ constant: !0,
120
+ inputs: [],
121
+ name: "isStakingPaused",
122
+ outputs: [
123
+ {
124
+ name: "",
125
+ type: "bool"
126
+ }
127
+ ],
128
+ payable: !1,
129
+ stateMutability: "view",
130
+ type: "function"
131
+ },
132
+ {
133
+ constant: !1,
134
+ inputs: [
135
+ {
136
+ name: "_sender",
137
+ type: "address"
138
+ },
139
+ {
140
+ name: "_recipient",
141
+ type: "address"
142
+ },
143
+ {
144
+ name: "_amount",
145
+ type: "uint256"
146
+ }
147
+ ],
148
+ name: "transferFrom",
149
+ outputs: [
150
+ {
151
+ name: "",
152
+ type: "bool"
153
+ }
154
+ ],
155
+ payable: !1,
156
+ stateMutability: "nonpayable",
157
+ type: "function"
158
+ },
159
+ {
160
+ constant: !0,
161
+ inputs: [
162
+ {
163
+ name: "_script",
164
+ type: "bytes"
165
+ }
166
+ ],
167
+ name: "getEVMScriptExecutor",
168
+ outputs: [
169
+ {
170
+ name: "",
171
+ type: "address"
172
+ }
173
+ ],
174
+ payable: !1,
175
+ stateMutability: "view",
176
+ type: "function"
177
+ },
178
+ {
179
+ constant: !1,
180
+ inputs: [
181
+ {
182
+ name: "_maxStakeLimit",
183
+ type: "uint256"
184
+ },
185
+ {
186
+ name: "_stakeLimitIncreasePerBlock",
187
+ type: "uint256"
188
+ }
189
+ ],
190
+ name: "setStakingLimit",
191
+ outputs: [],
192
+ payable: !1,
193
+ stateMutability: "nonpayable",
194
+ type: "function"
195
+ },
196
+ {
197
+ constant: !0,
198
+ inputs: [],
199
+ name: "RESUME_ROLE",
200
+ outputs: [
201
+ {
202
+ name: "",
203
+ type: "bytes32"
204
+ }
205
+ ],
206
+ payable: !1,
207
+ stateMutability: "view",
208
+ type: "function"
209
+ },
210
+ {
211
+ constant: !1,
212
+ inputs: [
213
+ {
214
+ name: "_lidoLocator",
215
+ type: "address"
216
+ },
217
+ {
218
+ name: "_eip712StETH",
219
+ type: "address"
220
+ }
221
+ ],
222
+ name: "finalizeUpgrade_v2",
223
+ outputs: [],
224
+ payable: !1,
225
+ stateMutability: "nonpayable",
226
+ type: "function"
227
+ },
228
+ {
229
+ constant: !0,
230
+ inputs: [],
231
+ name: "decimals",
232
+ outputs: [
233
+ {
234
+ name: "",
235
+ type: "uint8"
236
+ }
237
+ ],
238
+ payable: !1,
239
+ stateMutability: "pure",
240
+ type: "function"
241
+ },
242
+ {
243
+ constant: !0,
244
+ inputs: [],
245
+ name: "getRecoveryVault",
246
+ outputs: [
247
+ {
248
+ name: "",
249
+ type: "address"
250
+ }
251
+ ],
252
+ payable: !1,
253
+ stateMutability: "view",
254
+ type: "function"
255
+ },
256
+ {
257
+ constant: !0,
258
+ inputs: [],
259
+ name: "DOMAIN_SEPARATOR",
260
+ outputs: [
261
+ {
262
+ name: "",
263
+ type: "bytes32"
264
+ }
265
+ ],
266
+ payable: !1,
267
+ stateMutability: "view",
268
+ type: "function"
269
+ },
270
+ {
271
+ constant: !0,
272
+ inputs: [],
273
+ name: "getTotalPooledEther",
274
+ outputs: [
275
+ {
276
+ name: "",
277
+ type: "uint256"
278
+ }
279
+ ],
280
+ payable: !1,
281
+ stateMutability: "view",
282
+ type: "function"
283
+ },
284
+ {
285
+ constant: !1,
286
+ inputs: [
287
+ {
288
+ name: "_newDepositedValidators",
289
+ type: "uint256"
290
+ }
291
+ ],
292
+ name: "unsafeChangeDepositedValidators",
293
+ outputs: [],
294
+ payable: !1,
295
+ stateMutability: "nonpayable",
296
+ type: "function"
297
+ },
298
+ {
299
+ constant: !0,
300
+ inputs: [],
301
+ name: "PAUSE_ROLE",
302
+ outputs: [
303
+ {
304
+ name: "",
305
+ type: "bytes32"
306
+ }
307
+ ],
308
+ payable: !1,
309
+ stateMutability: "view",
310
+ type: "function"
311
+ },
312
+ {
313
+ constant: !1,
314
+ inputs: [
315
+ {
316
+ name: "_spender",
317
+ type: "address"
318
+ },
319
+ {
320
+ name: "_addedValue",
321
+ type: "uint256"
322
+ }
323
+ ],
324
+ name: "increaseAllowance",
325
+ outputs: [
326
+ {
327
+ name: "",
328
+ type: "bool"
329
+ }
330
+ ],
331
+ payable: !1,
332
+ stateMutability: "nonpayable",
333
+ type: "function"
334
+ },
335
+ {
336
+ constant: !0,
337
+ inputs: [],
338
+ name: "getTreasury",
339
+ outputs: [
340
+ {
341
+ name: "",
342
+ type: "address"
343
+ }
344
+ ],
345
+ payable: !1,
346
+ stateMutability: "view",
347
+ type: "function"
348
+ },
349
+ {
350
+ constant: !0,
351
+ inputs: [],
352
+ name: "isStopped",
353
+ outputs: [
354
+ {
355
+ name: "",
356
+ type: "bool"
357
+ }
358
+ ],
359
+ payable: !1,
360
+ stateMutability: "view",
361
+ type: "function"
362
+ },
363
+ {
364
+ constant: !0,
365
+ inputs: [],
366
+ name: "getBufferedEther",
367
+ outputs: [
368
+ {
369
+ name: "",
370
+ type: "uint256"
371
+ }
372
+ ],
373
+ payable: !1,
374
+ stateMutability: "view",
375
+ type: "function"
376
+ },
377
+ {
378
+ constant: !1,
379
+ inputs: [
380
+ {
381
+ name: "_lidoLocator",
382
+ type: "address"
383
+ },
384
+ {
385
+ name: "_eip712StETH",
386
+ type: "address"
387
+ }
388
+ ],
389
+ name: "initialize",
390
+ outputs: [],
391
+ payable: !0,
392
+ stateMutability: "payable",
393
+ type: "function"
394
+ },
395
+ {
396
+ constant: !1,
397
+ inputs: [],
398
+ name: "receiveELRewards",
399
+ outputs: [],
400
+ payable: !0,
401
+ stateMutability: "payable",
402
+ type: "function"
403
+ },
404
+ {
405
+ constant: !0,
406
+ inputs: [],
407
+ name: "getWithdrawalCredentials",
408
+ outputs: [
409
+ {
410
+ name: "",
411
+ type: "bytes32"
412
+ }
413
+ ],
414
+ payable: !1,
415
+ stateMutability: "view",
416
+ type: "function"
417
+ },
418
+ {
419
+ constant: !0,
420
+ inputs: [],
421
+ name: "getCurrentStakeLimit",
422
+ outputs: [
423
+ {
424
+ name: "",
425
+ type: "uint256"
426
+ }
427
+ ],
428
+ payable: !1,
429
+ stateMutability: "view",
430
+ type: "function"
431
+ },
432
+ {
433
+ constant: !0,
434
+ inputs: [],
435
+ name: "getStakeLimitFullInfo",
436
+ outputs: [
437
+ {
438
+ name: "isStakingPaused",
439
+ type: "bool"
440
+ },
441
+ {
442
+ name: "isStakingLimitSet",
443
+ type: "bool"
444
+ },
445
+ {
446
+ name: "currentStakeLimit",
447
+ type: "uint256"
448
+ },
449
+ {
450
+ name: "maxStakeLimit",
451
+ type: "uint256"
452
+ },
453
+ {
454
+ name: "maxStakeLimitGrowthBlocks",
455
+ type: "uint256"
456
+ },
457
+ {
458
+ name: "prevStakeLimit",
459
+ type: "uint256"
460
+ },
461
+ {
462
+ name: "prevStakeBlockNumber",
463
+ type: "uint256"
464
+ }
465
+ ],
466
+ payable: !1,
467
+ stateMutability: "view",
468
+ type: "function"
469
+ },
470
+ {
471
+ constant: !1,
472
+ inputs: [
473
+ {
474
+ name: "_sender",
475
+ type: "address"
476
+ },
477
+ {
478
+ name: "_recipient",
479
+ type: "address"
480
+ },
481
+ {
482
+ name: "_sharesAmount",
483
+ type: "uint256"
484
+ }
485
+ ],
486
+ name: "transferSharesFrom",
487
+ outputs: [
488
+ {
489
+ name: "",
490
+ type: "uint256"
491
+ }
492
+ ],
493
+ payable: !1,
494
+ stateMutability: "nonpayable",
495
+ type: "function"
496
+ },
497
+ {
498
+ constant: !0,
499
+ inputs: [
500
+ {
501
+ name: "_account",
502
+ type: "address"
503
+ }
504
+ ],
505
+ name: "balanceOf",
506
+ outputs: [
507
+ {
508
+ name: "",
509
+ type: "uint256"
510
+ }
511
+ ],
512
+ payable: !1,
513
+ stateMutability: "view",
514
+ type: "function"
515
+ },
516
+ {
517
+ constant: !1,
518
+ inputs: [],
519
+ name: "resumeStaking",
520
+ outputs: [],
521
+ payable: !1,
522
+ stateMutability: "nonpayable",
523
+ type: "function"
524
+ },
525
+ {
526
+ constant: !0,
527
+ inputs: [],
528
+ name: "getFeeDistribution",
529
+ outputs: [
530
+ {
531
+ name: "treasuryFeeBasisPoints",
532
+ type: "uint16"
533
+ },
534
+ {
535
+ name: "insuranceFeeBasisPoints",
536
+ type: "uint16"
537
+ },
538
+ {
539
+ name: "operatorsFeeBasisPoints",
540
+ type: "uint16"
541
+ }
542
+ ],
543
+ payable: !1,
544
+ stateMutability: "view",
545
+ type: "function"
546
+ },
547
+ {
548
+ constant: !1,
549
+ inputs: [],
550
+ name: "receiveWithdrawals",
551
+ outputs: [],
552
+ payable: !0,
553
+ stateMutability: "payable",
554
+ type: "function"
555
+ },
556
+ {
557
+ constant: !0,
558
+ inputs: [
559
+ {
560
+ name: "_sharesAmount",
561
+ type: "uint256"
562
+ }
563
+ ],
564
+ name: "getPooledEthByShares",
565
+ outputs: [
566
+ {
567
+ name: "",
568
+ type: "uint256"
569
+ }
570
+ ],
571
+ payable: !1,
572
+ stateMutability: "view",
573
+ type: "function"
574
+ },
575
+ {
576
+ constant: !0,
577
+ inputs: [
578
+ {
579
+ name: "token",
580
+ type: "address"
581
+ }
582
+ ],
583
+ name: "allowRecoverability",
584
+ outputs: [
585
+ {
586
+ name: "",
587
+ type: "bool"
588
+ }
589
+ ],
590
+ payable: !1,
591
+ stateMutability: "view",
592
+ type: "function"
593
+ },
594
+ {
595
+ constant: !0,
596
+ inputs: [
597
+ {
598
+ name: "owner",
599
+ type: "address"
600
+ }
601
+ ],
602
+ name: "nonces",
603
+ outputs: [
604
+ {
605
+ name: "",
606
+ type: "uint256"
607
+ }
608
+ ],
609
+ payable: !1,
610
+ stateMutability: "view",
611
+ type: "function"
612
+ },
613
+ {
614
+ constant: !0,
615
+ inputs: [],
616
+ name: "appId",
617
+ outputs: [
618
+ {
619
+ name: "",
620
+ type: "bytes32"
621
+ }
622
+ ],
623
+ payable: !1,
624
+ stateMutability: "view",
625
+ type: "function"
626
+ },
627
+ {
628
+ constant: !0,
629
+ inputs: [],
630
+ name: "getOracle",
631
+ outputs: [
632
+ {
633
+ name: "",
634
+ type: "address"
635
+ }
636
+ ],
637
+ payable: !1,
638
+ stateMutability: "view",
639
+ type: "function"
640
+ },
641
+ {
642
+ constant: !0,
643
+ inputs: [],
644
+ name: "eip712Domain",
645
+ outputs: [
646
+ {
647
+ name: "name",
648
+ type: "string"
649
+ },
650
+ {
651
+ name: "version",
652
+ type: "string"
653
+ },
654
+ {
655
+ name: "chainId",
656
+ type: "uint256"
657
+ },
658
+ {
659
+ name: "verifyingContract",
660
+ type: "address"
661
+ }
662
+ ],
663
+ payable: !1,
664
+ stateMutability: "view",
665
+ type: "function"
666
+ },
667
+ {
668
+ constant: !0,
669
+ inputs: [],
670
+ name: "getContractVersion",
671
+ outputs: [
672
+ {
673
+ name: "",
674
+ type: "uint256"
675
+ }
676
+ ],
677
+ payable: !1,
678
+ stateMutability: "view",
679
+ type: "function"
680
+ },
681
+ {
682
+ constant: !0,
683
+ inputs: [],
684
+ name: "getInitializationBlock",
685
+ outputs: [
686
+ {
687
+ name: "",
688
+ type: "uint256"
689
+ }
690
+ ],
691
+ payable: !1,
692
+ stateMutability: "view",
693
+ type: "function"
694
+ },
695
+ {
696
+ constant: !1,
697
+ inputs: [
698
+ {
699
+ name: "_recipient",
700
+ type: "address"
701
+ },
702
+ {
703
+ name: "_sharesAmount",
704
+ type: "uint256"
705
+ }
706
+ ],
707
+ name: "transferShares",
708
+ outputs: [
709
+ {
710
+ name: "",
711
+ type: "uint256"
712
+ }
713
+ ],
714
+ payable: !1,
715
+ stateMutability: "nonpayable",
716
+ type: "function"
717
+ },
718
+ {
719
+ constant: !0,
720
+ inputs: [],
721
+ name: "symbol",
722
+ outputs: [
723
+ {
724
+ name: "",
725
+ type: "string"
726
+ }
727
+ ],
728
+ payable: !1,
729
+ stateMutability: "pure",
730
+ type: "function"
731
+ },
732
+ {
733
+ constant: !0,
734
+ inputs: [],
735
+ name: "getEIP712StETH",
736
+ outputs: [
737
+ {
738
+ name: "",
739
+ type: "address"
740
+ }
741
+ ],
742
+ payable: !1,
743
+ stateMutability: "view",
744
+ type: "function"
745
+ },
746
+ {
747
+ constant: !1,
748
+ inputs: [
749
+ {
750
+ name: "",
751
+ type: "address"
752
+ }
753
+ ],
754
+ name: "transferToVault",
755
+ outputs: [],
756
+ payable: !1,
757
+ stateMutability: "nonpayable",
758
+ type: "function"
759
+ },
760
+ {
761
+ constant: !0,
762
+ inputs: [
763
+ {
764
+ name: "_sender",
765
+ type: "address"
766
+ },
767
+ {
768
+ name: "_role",
769
+ type: "bytes32"
770
+ },
771
+ {
772
+ name: "_params",
773
+ type: "uint256[]"
774
+ }
775
+ ],
776
+ name: "canPerform",
777
+ outputs: [
778
+ {
779
+ name: "",
780
+ type: "bool"
781
+ }
782
+ ],
783
+ payable: !1,
784
+ stateMutability: "view",
785
+ type: "function"
786
+ },
787
+ {
788
+ constant: !1,
789
+ inputs: [
790
+ {
791
+ name: "_referral",
792
+ type: "address"
793
+ }
794
+ ],
795
+ name: "submit",
796
+ outputs: [
797
+ {
798
+ name: "",
799
+ type: "uint256"
800
+ }
801
+ ],
802
+ payable: !0,
803
+ stateMutability: "payable",
804
+ type: "function"
805
+ },
806
+ {
807
+ constant: !1,
808
+ inputs: [
809
+ {
810
+ name: "_spender",
811
+ type: "address"
812
+ },
813
+ {
814
+ name: "_subtractedValue",
815
+ type: "uint256"
816
+ }
817
+ ],
818
+ name: "decreaseAllowance",
819
+ outputs: [
820
+ {
821
+ name: "",
822
+ type: "bool"
823
+ }
824
+ ],
825
+ payable: !1,
826
+ stateMutability: "nonpayable",
827
+ type: "function"
828
+ },
829
+ {
830
+ constant: !0,
831
+ inputs: [],
832
+ name: "getEVMScriptRegistry",
833
+ outputs: [
834
+ {
835
+ name: "",
836
+ type: "address"
837
+ }
838
+ ],
839
+ payable: !1,
840
+ stateMutability: "view",
841
+ type: "function"
842
+ },
843
+ {
844
+ constant: !1,
845
+ inputs: [
846
+ {
847
+ name: "_recipient",
848
+ type: "address"
849
+ },
850
+ {
851
+ name: "_amount",
852
+ type: "uint256"
853
+ }
854
+ ],
855
+ name: "transfer",
856
+ outputs: [
857
+ {
858
+ name: "",
859
+ type: "bool"
860
+ }
861
+ ],
862
+ payable: !1,
863
+ stateMutability: "nonpayable",
864
+ type: "function"
865
+ },
866
+ {
867
+ constant: !1,
868
+ inputs: [
869
+ {
870
+ name: "_maxDepositsCount",
871
+ type: "uint256"
872
+ },
873
+ {
874
+ name: "_stakingModuleId",
875
+ type: "uint256"
876
+ },
877
+ {
878
+ name: "_depositCalldata",
879
+ type: "bytes"
880
+ }
881
+ ],
882
+ name: "deposit",
883
+ outputs: [],
884
+ payable: !1,
885
+ stateMutability: "nonpayable",
886
+ type: "function"
887
+ },
888
+ {
889
+ constant: !0,
890
+ inputs: [],
891
+ name: "UNSAFE_CHANGE_DEPOSITED_VALIDATORS_ROLE",
892
+ outputs: [
893
+ {
894
+ name: "",
895
+ type: "bytes32"
896
+ }
897
+ ],
898
+ payable: !1,
899
+ stateMutability: "view",
900
+ type: "function"
901
+ },
902
+ {
903
+ constant: !0,
904
+ inputs: [],
905
+ name: "getBeaconStat",
906
+ outputs: [
907
+ {
908
+ name: "depositedValidators",
909
+ type: "uint256"
910
+ },
911
+ {
912
+ name: "beaconValidators",
913
+ type: "uint256"
914
+ },
915
+ {
916
+ name: "beaconBalance",
917
+ type: "uint256"
918
+ }
919
+ ],
920
+ payable: !1,
921
+ stateMutability: "view",
922
+ type: "function"
923
+ },
924
+ {
925
+ constant: !1,
926
+ inputs: [],
927
+ name: "removeStakingLimit",
928
+ outputs: [],
929
+ payable: !1,
930
+ stateMutability: "nonpayable",
931
+ type: "function"
932
+ },
933
+ {
934
+ constant: !1,
935
+ inputs: [
936
+ {
937
+ name: "_reportTimestamp",
938
+ type: "uint256"
939
+ },
940
+ {
941
+ name: "_timeElapsed",
942
+ type: "uint256"
943
+ },
944
+ {
945
+ name: "_clValidators",
946
+ type: "uint256"
947
+ },
948
+ {
949
+ name: "_clBalance",
950
+ type: "uint256"
951
+ },
952
+ {
953
+ name: "_withdrawalVaultBalance",
954
+ type: "uint256"
955
+ },
956
+ {
957
+ name: "_elRewardsVaultBalance",
958
+ type: "uint256"
959
+ },
960
+ {
961
+ name: "_sharesRequestedToBurn",
962
+ type: "uint256"
963
+ },
964
+ {
965
+ name: "_withdrawalFinalizationBatches",
966
+ type: "uint256[]"
967
+ },
968
+ {
969
+ name: "_simulatedShareRate",
970
+ type: "uint256"
971
+ }
972
+ ],
973
+ name: "handleOracleReport",
974
+ outputs: [
975
+ {
976
+ name: "postRebaseAmounts",
977
+ type: "uint256[4]"
978
+ }
979
+ ],
980
+ payable: !1,
981
+ stateMutability: "nonpayable",
982
+ type: "function"
983
+ },
984
+ {
985
+ constant: !0,
986
+ inputs: [],
987
+ name: "getFee",
988
+ outputs: [
989
+ {
990
+ name: "totalFee",
991
+ type: "uint16"
992
+ }
993
+ ],
994
+ payable: !1,
995
+ stateMutability: "view",
996
+ type: "function"
997
+ },
998
+ {
999
+ constant: !0,
1000
+ inputs: [],
1001
+ name: "kernel",
1002
+ outputs: [
1003
+ {
1004
+ name: "",
1005
+ type: "address"
1006
+ }
1007
+ ],
1008
+ payable: !1,
1009
+ stateMutability: "view",
1010
+ type: "function"
1011
+ },
1012
+ {
1013
+ constant: !0,
1014
+ inputs: [],
1015
+ name: "getTotalShares",
1016
+ outputs: [
1017
+ {
1018
+ name: "",
1019
+ type: "uint256"
1020
+ }
1021
+ ],
1022
+ payable: !1,
1023
+ stateMutability: "view",
1024
+ type: "function"
1025
+ },
1026
+ {
1027
+ constant: !1,
1028
+ inputs: [
1029
+ {
1030
+ name: "_owner",
1031
+ type: "address"
1032
+ },
1033
+ {
1034
+ name: "_spender",
1035
+ type: "address"
1036
+ },
1037
+ {
1038
+ name: "_value",
1039
+ type: "uint256"
1040
+ },
1041
+ {
1042
+ name: "_deadline",
1043
+ type: "uint256"
1044
+ },
1045
+ {
1046
+ name: "_v",
1047
+ type: "uint8"
1048
+ },
1049
+ {
1050
+ name: "_r",
1051
+ type: "bytes32"
1052
+ },
1053
+ {
1054
+ name: "_s",
1055
+ type: "bytes32"
1056
+ }
1057
+ ],
1058
+ name: "permit",
1059
+ outputs: [],
1060
+ payable: !1,
1061
+ stateMutability: "nonpayable",
1062
+ type: "function"
1063
+ },
1064
+ {
1065
+ constant: !0,
1066
+ inputs: [
1067
+ {
1068
+ name: "_owner",
1069
+ type: "address"
1070
+ },
1071
+ {
1072
+ name: "_spender",
1073
+ type: "address"
1074
+ }
1075
+ ],
1076
+ name: "allowance",
1077
+ outputs: [
1078
+ {
1079
+ name: "",
1080
+ type: "uint256"
1081
+ }
1082
+ ],
1083
+ payable: !1,
1084
+ stateMutability: "view",
1085
+ type: "function"
1086
+ },
1087
+ {
1088
+ constant: !0,
1089
+ inputs: [],
1090
+ name: "isPetrified",
1091
+ outputs: [
1092
+ {
1093
+ name: "",
1094
+ type: "bool"
1095
+ }
1096
+ ],
1097
+ payable: !1,
1098
+ stateMutability: "view",
1099
+ type: "function"
1100
+ },
1101
+ {
1102
+ constant: !0,
1103
+ inputs: [],
1104
+ name: "getLidoLocator",
1105
+ outputs: [
1106
+ {
1107
+ name: "",
1108
+ type: "address"
1109
+ }
1110
+ ],
1111
+ payable: !1,
1112
+ stateMutability: "view",
1113
+ type: "function"
1114
+ },
1115
+ {
1116
+ constant: !0,
1117
+ inputs: [],
1118
+ name: "canDeposit",
1119
+ outputs: [
1120
+ {
1121
+ name: "",
1122
+ type: "bool"
1123
+ }
1124
+ ],
1125
+ payable: !1,
1126
+ stateMutability: "view",
1127
+ type: "function"
1128
+ },
1129
+ {
1130
+ constant: !0,
1131
+ inputs: [],
1132
+ name: "STAKING_PAUSE_ROLE",
1133
+ outputs: [
1134
+ {
1135
+ name: "",
1136
+ type: "bytes32"
1137
+ }
1138
+ ],
1139
+ payable: !1,
1140
+ stateMutability: "view",
1141
+ type: "function"
1142
+ },
1143
+ {
1144
+ constant: !0,
1145
+ inputs: [],
1146
+ name: "getDepositableEther",
1147
+ outputs: [
1148
+ {
1149
+ name: "",
1150
+ type: "uint256"
1151
+ }
1152
+ ],
1153
+ payable: !1,
1154
+ stateMutability: "view",
1155
+ type: "function"
1156
+ },
1157
+ {
1158
+ constant: !0,
1159
+ inputs: [
1160
+ {
1161
+ name: "_account",
1162
+ type: "address"
1163
+ }
1164
+ ],
1165
+ name: "sharesOf",
1166
+ outputs: [
1167
+ {
1168
+ name: "",
1169
+ type: "uint256"
1170
+ }
1171
+ ],
1172
+ payable: !1,
1173
+ stateMutability: "view",
1174
+ type: "function"
1175
+ },
1176
+ {
1177
+ constant: !1,
1178
+ inputs: [],
1179
+ name: "pauseStaking",
1180
+ outputs: [],
1181
+ payable: !1,
1182
+ stateMutability: "nonpayable",
1183
+ type: "function"
1184
+ },
1185
+ {
1186
+ constant: !0,
1187
+ inputs: [],
1188
+ name: "getTotalELRewardsCollected",
1189
+ outputs: [
1190
+ {
1191
+ name: "",
1192
+ type: "uint256"
1193
+ }
1194
+ ],
1195
+ payable: !1,
1196
+ stateMutability: "view",
1197
+ type: "function"
1198
+ },
1199
+ {
1200
+ payable: !0,
1201
+ stateMutability: "payable",
1202
+ type: "fallback"
1203
+ },
1204
+ {
1205
+ anonymous: !1,
1206
+ inputs: [],
1207
+ name: "StakingPaused",
1208
+ type: "event"
1209
+ },
1210
+ {
1211
+ anonymous: !1,
1212
+ inputs: [],
1213
+ name: "StakingResumed",
1214
+ type: "event"
1215
+ },
1216
+ {
1217
+ anonymous: !1,
1218
+ inputs: [
1219
+ {
1220
+ indexed: !1,
1221
+ name: "maxStakeLimit",
1222
+ type: "uint256"
1223
+ },
1224
+ {
1225
+ indexed: !1,
1226
+ name: "stakeLimitIncreasePerBlock",
1227
+ type: "uint256"
1228
+ }
1229
+ ],
1230
+ name: "StakingLimitSet",
1231
+ type: "event"
1232
+ },
1233
+ {
1234
+ anonymous: !1,
1235
+ inputs: [],
1236
+ name: "StakingLimitRemoved",
1237
+ type: "event"
1238
+ },
1239
+ {
1240
+ anonymous: !1,
1241
+ inputs: [
1242
+ {
1243
+ indexed: !0,
1244
+ name: "reportTimestamp",
1245
+ type: "uint256"
1246
+ },
1247
+ {
1248
+ indexed: !1,
1249
+ name: "preCLValidators",
1250
+ type: "uint256"
1251
+ },
1252
+ {
1253
+ indexed: !1,
1254
+ name: "postCLValidators",
1255
+ type: "uint256"
1256
+ }
1257
+ ],
1258
+ name: "CLValidatorsUpdated",
1259
+ type: "event"
1260
+ },
1261
+ {
1262
+ anonymous: !1,
1263
+ inputs: [
1264
+ {
1265
+ indexed: !1,
1266
+ name: "depositedValidators",
1267
+ type: "uint256"
1268
+ }
1269
+ ],
1270
+ name: "DepositedValidatorsChanged",
1271
+ type: "event"
1272
+ },
1273
+ {
1274
+ anonymous: !1,
1275
+ inputs: [
1276
+ {
1277
+ indexed: !0,
1278
+ name: "reportTimestamp",
1279
+ type: "uint256"
1280
+ },
1281
+ {
1282
+ indexed: !1,
1283
+ name: "preCLBalance",
1284
+ type: "uint256"
1285
+ },
1286
+ {
1287
+ indexed: !1,
1288
+ name: "postCLBalance",
1289
+ type: "uint256"
1290
+ },
1291
+ {
1292
+ indexed: !1,
1293
+ name: "withdrawalsWithdrawn",
1294
+ type: "uint256"
1295
+ },
1296
+ {
1297
+ indexed: !1,
1298
+ name: "executionLayerRewardsWithdrawn",
1299
+ type: "uint256"
1300
+ },
1301
+ {
1302
+ indexed: !1,
1303
+ name: "postBufferedEther",
1304
+ type: "uint256"
1305
+ }
1306
+ ],
1307
+ name: "ETHDistributed",
1308
+ type: "event"
1309
+ },
1310
+ {
1311
+ anonymous: !1,
1312
+ inputs: [
1313
+ {
1314
+ indexed: !0,
1315
+ name: "reportTimestamp",
1316
+ type: "uint256"
1317
+ },
1318
+ {
1319
+ indexed: !1,
1320
+ name: "timeElapsed",
1321
+ type: "uint256"
1322
+ },
1323
+ {
1324
+ indexed: !1,
1325
+ name: "preTotalShares",
1326
+ type: "uint256"
1327
+ },
1328
+ {
1329
+ indexed: !1,
1330
+ name: "preTotalEther",
1331
+ type: "uint256"
1332
+ },
1333
+ {
1334
+ indexed: !1,
1335
+ name: "postTotalShares",
1336
+ type: "uint256"
1337
+ },
1338
+ {
1339
+ indexed: !1,
1340
+ name: "postTotalEther",
1341
+ type: "uint256"
1342
+ },
1343
+ {
1344
+ indexed: !1,
1345
+ name: "sharesMintedAsFees",
1346
+ type: "uint256"
1347
+ }
1348
+ ],
1349
+ name: "TokenRebased",
1350
+ type: "event"
1351
+ },
1352
+ {
1353
+ anonymous: !1,
1354
+ inputs: [
1355
+ {
1356
+ indexed: !1,
1357
+ name: "lidoLocator",
1358
+ type: "address"
1359
+ }
1360
+ ],
1361
+ name: "LidoLocatorSet",
1362
+ type: "event"
1363
+ },
1364
+ {
1365
+ anonymous: !1,
1366
+ inputs: [
1367
+ {
1368
+ indexed: !1,
1369
+ name: "amount",
1370
+ type: "uint256"
1371
+ }
1372
+ ],
1373
+ name: "ELRewardsReceived",
1374
+ type: "event"
1375
+ },
1376
+ {
1377
+ anonymous: !1,
1378
+ inputs: [
1379
+ {
1380
+ indexed: !1,
1381
+ name: "amount",
1382
+ type: "uint256"
1383
+ }
1384
+ ],
1385
+ name: "WithdrawalsReceived",
1386
+ type: "event"
1387
+ },
1388
+ {
1389
+ anonymous: !1,
1390
+ inputs: [
1391
+ {
1392
+ indexed: !0,
1393
+ name: "sender",
1394
+ type: "address"
1395
+ },
1396
+ {
1397
+ indexed: !1,
1398
+ name: "amount",
1399
+ type: "uint256"
1400
+ },
1401
+ {
1402
+ indexed: !1,
1403
+ name: "referral",
1404
+ type: "address"
1405
+ }
1406
+ ],
1407
+ name: "Submitted",
1408
+ type: "event"
1409
+ },
1410
+ {
1411
+ anonymous: !1,
1412
+ inputs: [
1413
+ {
1414
+ indexed: !1,
1415
+ name: "amount",
1416
+ type: "uint256"
1417
+ }
1418
+ ],
1419
+ name: "Unbuffered",
1420
+ type: "event"
1421
+ },
1422
+ {
1423
+ anonymous: !1,
1424
+ inputs: [
1425
+ {
1426
+ indexed: !0,
1427
+ name: "executor",
1428
+ type: "address"
1429
+ },
1430
+ {
1431
+ indexed: !1,
1432
+ name: "script",
1433
+ type: "bytes"
1434
+ },
1435
+ {
1436
+ indexed: !1,
1437
+ name: "input",
1438
+ type: "bytes"
1439
+ },
1440
+ {
1441
+ indexed: !1,
1442
+ name: "returnData",
1443
+ type: "bytes"
1444
+ }
1445
+ ],
1446
+ name: "ScriptResult",
1447
+ type: "event"
1448
+ },
1449
+ {
1450
+ anonymous: !1,
1451
+ inputs: [
1452
+ {
1453
+ indexed: !0,
1454
+ name: "vault",
1455
+ type: "address"
1456
+ },
1457
+ {
1458
+ indexed: !0,
1459
+ name: "token",
1460
+ type: "address"
1461
+ },
1462
+ {
1463
+ indexed: !1,
1464
+ name: "amount",
1465
+ type: "uint256"
1466
+ }
1467
+ ],
1468
+ name: "RecoverToVault",
1469
+ type: "event"
1470
+ },
1471
+ {
1472
+ anonymous: !1,
1473
+ inputs: [
1474
+ {
1475
+ indexed: !1,
1476
+ name: "eip712StETH",
1477
+ type: "address"
1478
+ }
1479
+ ],
1480
+ name: "EIP712StETHInitialized",
1481
+ type: "event"
1482
+ },
1483
+ {
1484
+ anonymous: !1,
1485
+ inputs: [
1486
+ {
1487
+ indexed: !0,
1488
+ name: "from",
1489
+ type: "address"
1490
+ },
1491
+ {
1492
+ indexed: !0,
1493
+ name: "to",
1494
+ type: "address"
1495
+ },
1496
+ {
1497
+ indexed: !1,
1498
+ name: "sharesValue",
1499
+ type: "uint256"
1500
+ }
1501
+ ],
1502
+ name: "TransferShares",
1503
+ type: "event"
1504
+ },
1505
+ {
1506
+ anonymous: !1,
1507
+ inputs: [
1508
+ {
1509
+ indexed: !0,
1510
+ name: "account",
1511
+ type: "address"
1512
+ },
1513
+ {
1514
+ indexed: !1,
1515
+ name: "preRebaseTokenAmount",
1516
+ type: "uint256"
1517
+ },
1518
+ {
1519
+ indexed: !1,
1520
+ name: "postRebaseTokenAmount",
1521
+ type: "uint256"
1522
+ },
1523
+ {
1524
+ indexed: !1,
1525
+ name: "sharesAmount",
1526
+ type: "uint256"
1527
+ }
1528
+ ],
1529
+ name: "SharesBurnt",
1530
+ type: "event"
1531
+ },
1532
+ {
1533
+ anonymous: !1,
1534
+ inputs: [],
1535
+ name: "Stopped",
1536
+ type: "event"
1537
+ },
1538
+ {
1539
+ anonymous: !1,
1540
+ inputs: [],
1541
+ name: "Resumed",
1542
+ type: "event"
1543
+ },
1544
+ {
1545
+ anonymous: !1,
1546
+ inputs: [
1547
+ {
1548
+ indexed: !0,
1549
+ name: "from",
1550
+ type: "address"
1551
+ },
1552
+ {
1553
+ indexed: !0,
1554
+ name: "to",
1555
+ type: "address"
1556
+ },
1557
+ {
1558
+ indexed: !1,
1559
+ name: "value",
1560
+ type: "uint256"
1561
+ }
1562
+ ],
1563
+ name: "Transfer",
1564
+ type: "event"
1565
+ },
1566
+ {
1567
+ anonymous: !1,
1568
+ inputs: [
1569
+ {
1570
+ indexed: !0,
1571
+ name: "owner",
1572
+ type: "address"
1573
+ },
1574
+ {
1575
+ indexed: !0,
1576
+ name: "spender",
1577
+ type: "address"
1578
+ },
1579
+ {
1580
+ indexed: !1,
1581
+ name: "value",
1582
+ type: "uint256"
1583
+ }
1584
+ ],
1585
+ name: "Approval",
1586
+ type: "event"
1587
+ },
1588
+ {
1589
+ anonymous: !1,
1590
+ inputs: [
1591
+ {
1592
+ indexed: !1,
1593
+ name: "version",
1594
+ type: "uint256"
1595
+ }
1596
+ ],
1597
+ name: "ContractVersionSet",
1598
+ type: "event"
1599
+ }
1600
+ ];
1601
+ export {
1602
+ e as default
1603
+ };