@raac/rpc 1.1.0-beta.92 → 1.2.0-beta.2

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 (739) hide show
  1. package/dist/RPCLibrary.js +267 -0
  2. package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +2 -2
  3. package/dist/artifacts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.json +2 -2
  4. package/dist/artifacts/core/collectors/RAACTokenCollector.sol/RAACTokenCollector.json +2 -2
  5. package/dist/artifacts/core/collectors/RWAIndexTokenCollector.sol/RWAIndexTokenCollector.json +2 -2
  6. package/dist/artifacts/core/collectors/Treasury.sol/Treasury.json +2 -2
  7. package/dist/artifacts/core/governance/gauges/BaseGauge.sol/BaseGauge.json +1622 -0
  8. package/dist/artifacts/core/governance/gauges/GaugeController.sol/GaugeController.json +1661 -0
  9. package/dist/artifacts/core/governance/gauges/GaugeRewardsDistributor.sol/GaugeRewardsDistributor.json +976 -0
  10. package/dist/artifacts/core/governance/gauges/RAACGauge.sol/RAACGauge.json +1648 -0
  11. package/dist/artifacts/core/governance/gauges/RWAGauge.sol/RWAGauge.json +1661 -0
  12. package/dist/artifacts/core/governance/proposals/Governance.sol/Governance.json +1221 -0
  13. package/dist/artifacts/core/governance/proposals/TimelockController.sol/TimelockController.json +1019 -0
  14. package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +2 -2
  15. package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +2 -2
  16. package/dist/artifacts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.json +2 -2
  17. package/dist/artifacts/core/oracles/RAACHousePriceOracle.sol/RAACHousePriceOracle.json +2 -2
  18. package/dist/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json +2 -2
  19. package/dist/artifacts/core/pmBlender/pmBlender.json +1 -0
  20. package/dist/artifacts/core/pmMarket/pmMarket.json +1 -0
  21. package/dist/artifacts/core/pmTreasury/pmTreasury.json +1 -0
  22. package/dist/artifacts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json +2 -2
  23. package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +2 -2
  24. package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +20 -10
  25. package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +2 -2
  26. package/dist/artifacts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.json +2 -2
  27. package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +2 -2
  28. package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +63 -7
  29. package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +2 -2
  30. package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +2 -2
  31. package/dist/artifacts/core/tokens/RToken.sol/RToken.json +58 -2
  32. package/dist/artifacts/core/tokens/RWAIndexToken.sol/RWAIndexToken.json +2 -2
  33. package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +1020 -517
  34. package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +2 -2
  35. package/dist/artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json +2 -2
  36. package/dist/artifacts/core/vaults/RWAVault.sol/RWAVault.json +2 -20
  37. package/dist/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +2 -2
  38. package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +2 -2
  39. package/dist/artifacts/mocks/core/tokens/pmUSD.sol/pmUSD.json +1 -0
  40. package/dist/artifacts/mocks/core/tokens/xPM.sol/xPM.json +1 -0
  41. package/dist/artifacts/zeno/Auction.sol/Auction.json +2 -2
  42. package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +2 -2
  43. package/dist/artifacts/zeno/Zeno.sol/Zeno.json +2 -2
  44. package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +2 -2
  45. package/dist/configs/chains/1.json +95 -36
  46. package/dist/configs/chains/11155111.json +86 -27
  47. package/dist/configs/chains/17000.json +65 -1
  48. package/dist/configs/chains/18453.json +65 -1
  49. package/dist/configs/chains/8453.json +66 -7
  50. package/dist/configs/chains/index.js +2 -2
  51. package/dist/contracts/getContractAddress.js +1 -0
  52. package/dist/contracts/governance/distributor/deposit.js +36 -0
  53. package/dist/contracts/governance/distributor/getAvailableBalance.js +29 -0
  54. package/dist/contracts/governance/distributor/getGaugeRewardTokens.js +28 -0
  55. package/dist/contracts/governance/distributor/getRewardTokenInfo.js +39 -0
  56. package/dist/contracts/governance/distributor/getRewardTokens.js +27 -0
  57. package/dist/contracts/governance/distributor/getTransferableBalance.js +30 -0
  58. package/dist/contracts/governance/distributor/index.js +19 -0
  59. package/dist/contracts/governance/distributor/isRewardTokenApproved.js +29 -0
  60. package/dist/contracts/governance/distributor/isTokenApproved.js +29 -0
  61. package/dist/contracts/governance/gauge/claimReward.js +44 -0
  62. package/dist/contracts/governance/gauge/claimRewardToken.js +44 -0
  63. package/dist/contracts/governance/gauge/getAllEarnedRewards.js +51 -0
  64. package/dist/contracts/governance/gauge/getAllPendingRewards.js +41 -0
  65. package/dist/contracts/governance/gauge/getBalanceOf.js +43 -0
  66. package/dist/contracts/governance/gauge/getEarnedReward.js +44 -0
  67. package/dist/contracts/governance/gauge/getPendingRewards.js +44 -0
  68. package/dist/contracts/governance/gauge/getPeriodBoundaries.js +45 -0
  69. package/dist/contracts/governance/gauge/getPeriodDuration.js +42 -0
  70. package/dist/contracts/governance/gauge/getRawBalanceOf.js +43 -0
  71. package/dist/contracts/governance/gauge/getRawTotalSupply.js +42 -0
  72. package/dist/contracts/governance/gauge/getRewardTokens.js +41 -0
  73. package/dist/contracts/governance/gauge/getTotalSupply.js +42 -0
  74. package/dist/contracts/governance/gauge/getUserGaugeVoteWeight.js +42 -0
  75. package/dist/contracts/governance/gauge/getWorkingBalance.js +43 -0
  76. package/dist/contracts/governance/gauge/index.js +37 -0
  77. package/dist/contracts/governance/gauge/stake.js +51 -0
  78. package/dist/contracts/governance/gauge/syncRewardTokens.js +51 -0
  79. package/dist/contracts/governance/gauge/updateUserRewards.js +50 -0
  80. package/dist/contracts/governance/gauge/withdraw.js +51 -0
  81. package/dist/contracts/governance/gaugeController/calculateBoost.js +36 -0
  82. package/dist/contracts/governance/gaugeController/checkpoint.js +33 -0
  83. package/dist/contracts/governance/gaugeController/checkpointGauge.js +34 -0
  84. package/dist/contracts/governance/gaugeController/getActiveGauges.js +36 -0
  85. package/dist/contracts/governance/gaugeController/getGaugeWeight.js +29 -0
  86. package/dist/contracts/governance/gaugeController/getTotalWeight.js +28 -0
  87. package/dist/contracts/governance/gaugeController/getUserGaugeVoteWeight.js +30 -0
  88. package/dist/contracts/governance/gaugeController/getUserVotePowerRemaining.js +29 -0
  89. package/dist/contracts/governance/gaugeController/index.js +25 -0
  90. package/dist/contracts/governance/gaugeController/isGauge.js +28 -0
  91. package/dist/contracts/governance/gaugeController/isGaugeActive.js +28 -0
  92. package/dist/contracts/governance/gaugeController/vote.js +34 -0
  93. package/dist/contracts/governance/proposals/cancel.js +37 -0
  94. package/dist/contracts/governance/proposals/castVote.js +44 -0
  95. package/dist/contracts/governance/proposals/execute.js +37 -0
  96. package/dist/contracts/governance/proposals/getProposal.js +53 -0
  97. package/dist/contracts/governance/proposals/getProposalCount.js +29 -0
  98. package/dist/contracts/governance/proposals/getProposalData.js +36 -0
  99. package/dist/contracts/governance/proposals/getProposalInfo.js +41 -0
  100. package/dist/contracts/governance/proposals/getProposalThreshold.js +29 -0
  101. package/dist/contracts/governance/proposals/getQuorum.js +30 -0
  102. package/dist/contracts/governance/proposals/getQuorumNumerator.js +39 -0
  103. package/dist/contracts/governance/proposals/getState.js +43 -0
  104. package/dist/contracts/governance/proposals/getVotes.js +33 -0
  105. package/dist/contracts/governance/proposals/getVotingDelay.js +29 -0
  106. package/dist/contracts/governance/proposals/getVotingPeriod.js +29 -0
  107. package/dist/contracts/governance/proposals/index.js +35 -0
  108. package/dist/contracts/governance/proposals/propose.js +52 -0
  109. package/dist/contracts/governance/timelock/getConstants.js +39 -0
  110. package/dist/contracts/governance/timelock/getMinDelay.js +29 -0
  111. package/dist/contracts/governance/timelock/getTimestamp.js +31 -0
  112. package/dist/contracts/governance/timelock/hashOperationBatch.js +35 -0
  113. package/dist/contracts/governance/timelock/index.js +18 -0
  114. package/dist/contracts/governance/timelock/isOperationDone.js +29 -0
  115. package/dist/contracts/governance/timelock/isOperationPending.js +29 -0
  116. package/dist/contracts/governance/timelock/isOperationReady.js +31 -0
  117. package/dist/contracts/pmBlender/getReserveBalance.js +21 -0
  118. package/dist/contracts/pmBlender/getSupportedTokens.js +21 -0
  119. package/dist/contracts/pmBlender/previewDeposit.js +21 -0
  120. package/dist/contracts/pmBlender/previewSwap.js +21 -0
  121. package/dist/contracts/pmBlender/previewWithdraw.js +21 -0
  122. package/dist/contracts/pmMarket/getMarketConfig.js +31 -0
  123. package/dist/contracts/pmTreasury/getCollateralRatio.js +26 -0
  124. package/dist/contracts/pmTreasury/getCurrentNav.js +34 -0
  125. package/dist/contracts/pmTreasury/getLeverageRatio.js +26 -0
  126. package/dist/contracts/pmTreasury/getMaxMintablePMUSD.js +32 -0
  127. package/dist/contracts/pmTreasury/getMaxMintablePMUSDWithoutBaseToken.js +30 -0
  128. package/dist/contracts/pmTreasury/getMaxMintableXPM.js +32 -0
  129. package/dist/contracts/pmTreasury/getMaxRedeemablePMUSD.js +32 -0
  130. package/dist/contracts/pmTreasury/getMaxRedeemableXPM.js +32 -0
  131. package/dist/contracts/pmTreasury/getTotalBaseToken.js +26 -0
  132. package/dist/contracts/tokens/RAAC/getBalance.js +19 -0
  133. package/dist/contracts/{crvUSDToken → tokens/RAAC}/getTotalSupply.js +6 -13
  134. package/dist/contracts/tokens/crvUSD/getBalance.js +19 -0
  135. package/dist/contracts/tokens/crvUSD/getTotalSupply.js +24 -0
  136. package/dist/contracts/{rcrvUSDToken → tokens/pmUSD}/getBalance.js +7 -2
  137. package/dist/contracts/tokens/pmUSD/getTotalSupply.js +24 -0
  138. package/dist/contracts/tokens/rcrvUSD/getBalance.js +19 -0
  139. package/dist/contracts/tokens/rcrvUSD/getTotalSupply.js +23 -0
  140. package/dist/contracts/tokens/veRAAC/claimReward.js +34 -0
  141. package/dist/contracts/tokens/veRAAC/distributeRewards.js +36 -0
  142. package/dist/contracts/tokens/veRAAC/extend.js +35 -0
  143. package/dist/contracts/tokens/veRAAC/finalizeRagequit.js +34 -0
  144. package/dist/contracts/tokens/veRAAC/getBalance.js +22 -0
  145. package/dist/contracts/tokens/veRAAC/getBalanceAt.js +31 -0
  146. package/dist/contracts/tokens/veRAAC/getBalanceAtTime.js +31 -0
  147. package/dist/contracts/tokens/veRAAC/getCheckpoint.js +34 -0
  148. package/dist/contracts/tokens/veRAAC/getClaimable.js +32 -0
  149. package/dist/contracts/tokens/veRAAC/getClaimed.js +31 -0
  150. package/dist/contracts/tokens/veRAAC/getEarned.js +32 -0
  151. package/dist/contracts/tokens/veRAAC/getEffectiveLockEnd.js +30 -0
  152. package/dist/contracts/tokens/veRAAC/getGlobalLockInfo.js +33 -0
  153. package/dist/contracts/tokens/veRAAC/getLockedBalance.js +30 -0
  154. package/dist/contracts/tokens/veRAAC/getLocks.js +38 -0
  155. package/dist/contracts/tokens/veRAAC/getMaxLockEnd.js +30 -0
  156. package/dist/contracts/tokens/veRAAC/getMaxUnclaimedDistributions.js +32 -0
  157. package/dist/contracts/tokens/veRAAC/getMinLockEnd.js +30 -0
  158. package/dist/contracts/tokens/veRAAC/getRagequitEpochs.js +30 -0
  159. package/dist/contracts/tokens/veRAAC/getRagequitRequest.js +36 -0
  160. package/dist/contracts/tokens/veRAAC/getRawBalanceOf.js +30 -0
  161. package/dist/contracts/tokens/veRAAC/getRawTotalSupply.js +29 -0
  162. package/dist/contracts/{rcrvUSDToken → tokens/veRAAC}/getTotalSupply.js +4 -3
  163. package/dist/contracts/tokens/veRAAC/getTotalSupplyAt.js +30 -0
  164. package/dist/contracts/tokens/veRAAC/getTotalSupplyAtTime.js +30 -0
  165. package/dist/contracts/tokens/veRAAC/getUserPointHistory.js +38 -0
  166. package/dist/contracts/tokens/veRAAC/increase.js +35 -0
  167. package/dist/contracts/tokens/veRAAC/increaseWithApproval.js +37 -0
  168. package/dist/contracts/tokens/veRAAC/index.js +69 -0
  169. package/dist/contracts/tokens/veRAAC/lock.js +34 -0
  170. package/dist/contracts/tokens/veRAAC/lockWithApproval.js +40 -0
  171. package/dist/contracts/tokens/veRAAC/ragequitAll.js +33 -0
  172. package/dist/contracts/tokens/veRAAC/ragequitLock.js +34 -0
  173. package/dist/contracts/tokens/veRAAC/withdraw.js +33 -0
  174. package/dist/contracts/{crvUSDToken → tokens/xPM}/getBalance.js +5 -3
  175. package/dist/contracts/tokens/xPM/getTotalSupply.js +24 -0
  176. package/dist/pools/rwaVault/getRWAVaultInfo.js +5 -1
  177. package/dist/prices/getPrices.js +12 -0
  178. package/dist/types/RPCLibrary.d.ts +251 -1
  179. package/dist/types/configs/chains/index.d.ts +508 -2
  180. package/dist/types/configs/index.d.ts +254 -1
  181. package/dist/types/contracts/governance/distributor/deposit.d.ts +14 -0
  182. package/dist/types/contracts/governance/distributor/getAvailableBalance.d.ts +11 -0
  183. package/dist/types/contracts/governance/distributor/getGaugeRewardTokens.d.ts +11 -0
  184. package/dist/types/contracts/governance/distributor/getRewardTokenInfo.d.ts +17 -0
  185. package/dist/types/contracts/governance/distributor/getRewardTokens.d.ts +10 -0
  186. package/dist/types/contracts/governance/distributor/getTransferableBalance.d.ts +12 -0
  187. package/dist/types/contracts/governance/distributor/index.d.ts +8 -0
  188. package/dist/types/contracts/governance/distributor/isRewardTokenApproved.d.ts +12 -0
  189. package/dist/types/contracts/governance/distributor/isTokenApproved.d.ts +11 -0
  190. package/dist/types/contracts/governance/gauge/claimReward.d.ts +11 -0
  191. package/dist/types/contracts/governance/gauge/claimRewardToken.d.ts +12 -0
  192. package/dist/types/contracts/governance/gauge/getAllEarnedRewards.d.ts +17 -0
  193. package/dist/types/contracts/governance/gauge/getAllPendingRewards.d.ts +19 -0
  194. package/dist/types/contracts/governance/gauge/getBalanceOf.d.ts +12 -0
  195. package/dist/types/contracts/governance/gauge/getEarnedReward.d.ts +13 -0
  196. package/dist/types/contracts/governance/gauge/getPendingRewards.d.ts +13 -0
  197. package/dist/types/contracts/governance/gauge/getPeriodBoundaries.d.ts +15 -0
  198. package/dist/types/contracts/governance/gauge/getPeriodDuration.d.ts +11 -0
  199. package/dist/types/contracts/governance/gauge/getRawBalanceOf.d.ts +12 -0
  200. package/dist/types/contracts/governance/gauge/getRawTotalSupply.d.ts +11 -0
  201. package/dist/types/contracts/governance/gauge/getRewardTokens.d.ts +11 -0
  202. package/dist/types/contracts/governance/gauge/getTotalSupply.d.ts +11 -0
  203. package/dist/types/contracts/governance/gauge/getUserGaugeVoteWeight.d.ts +14 -0
  204. package/dist/types/contracts/governance/gauge/getWorkingBalance.d.ts +12 -0
  205. package/dist/types/contracts/governance/gauge/index.d.ts +17 -0
  206. package/dist/types/contracts/governance/gauge/stake.d.ts +13 -0
  207. package/dist/types/contracts/governance/gauge/syncRewardTokens.d.ts +13 -0
  208. package/dist/types/contracts/governance/gauge/updateUserRewards.d.ts +12 -0
  209. package/dist/types/contracts/governance/gauge/withdraw.d.ts +13 -0
  210. package/dist/types/contracts/governance/gaugeController/calculateBoost.d.ts +16 -0
  211. package/dist/types/contracts/governance/gaugeController/checkpoint.d.ts +11 -0
  212. package/dist/types/contracts/governance/gaugeController/checkpointGauge.d.ts +12 -0
  213. package/dist/types/contracts/governance/gaugeController/getActiveGauges.d.ts +15 -0
  214. package/dist/types/contracts/governance/gaugeController/getGaugeWeight.d.ts +11 -0
  215. package/dist/types/contracts/governance/gaugeController/getTotalWeight.d.ts +10 -0
  216. package/dist/types/contracts/governance/gaugeController/getUserGaugeVoteWeight.d.ts +12 -0
  217. package/dist/types/contracts/governance/gaugeController/getUserVotePowerRemaining.d.ts +11 -0
  218. package/dist/types/contracts/governance/gaugeController/index.d.ts +11 -0
  219. package/dist/types/contracts/governance/gaugeController/isGauge.d.ts +11 -0
  220. package/dist/types/contracts/governance/gaugeController/isGaugeActive.d.ts +11 -0
  221. package/dist/types/contracts/governance/gaugeController/vote.d.ts +12 -0
  222. package/dist/types/contracts/governance/proposals/cancel.d.ts +15 -0
  223. package/dist/types/contracts/governance/proposals/castVote.d.ts +19 -0
  224. package/dist/types/contracts/governance/proposals/execute.d.ts +15 -0
  225. package/dist/types/contracts/governance/proposals/getProposal.d.ts +34 -0
  226. package/dist/types/contracts/governance/proposals/getProposalCount.d.ts +10 -0
  227. package/dist/types/contracts/governance/proposals/getProposalData.d.ts +18 -0
  228. package/dist/types/contracts/governance/proposals/getProposalInfo.d.ts +24 -0
  229. package/dist/types/contracts/governance/proposals/getProposalThreshold.d.ts +10 -0
  230. package/dist/types/contracts/governance/proposals/getQuorum.d.ts +11 -0
  231. package/dist/types/contracts/governance/proposals/getQuorumNumerator.d.ts +16 -0
  232. package/dist/types/contracts/governance/proposals/getState.d.ts +23 -0
  233. package/dist/types/contracts/governance/proposals/getVotes.d.ts +15 -0
  234. package/dist/types/contracts/governance/proposals/getVotingDelay.d.ts +10 -0
  235. package/dist/types/contracts/governance/proposals/getVotingPeriod.d.ts +10 -0
  236. package/dist/types/contracts/governance/proposals/index.d.ts +14 -0
  237. package/dist/types/contracts/governance/proposals/propose.d.ts +29 -0
  238. package/dist/types/contracts/governance/timelock/getConstants.d.ts +16 -0
  239. package/dist/types/contracts/governance/timelock/getMinDelay.d.ts +10 -0
  240. package/dist/types/contracts/governance/timelock/getTimestamp.d.ts +12 -0
  241. package/dist/types/contracts/governance/timelock/hashOperationBatch.d.ts +17 -0
  242. package/dist/types/contracts/governance/timelock/index.d.ts +7 -0
  243. package/dist/types/contracts/governance/timelock/isOperationDone.d.ts +11 -0
  244. package/dist/types/contracts/governance/timelock/isOperationPending.d.ts +11 -0
  245. package/dist/types/contracts/governance/timelock/isOperationReady.d.ts +13 -0
  246. package/dist/types/contracts/pmBlender/getReserveBalance.d.ts +3 -0
  247. package/dist/types/contracts/pmBlender/getSupportedTokens.d.ts +3 -0
  248. package/dist/types/contracts/pmBlender/previewDeposit.d.ts +3 -0
  249. package/dist/types/contracts/pmBlender/previewSwap.d.ts +3 -0
  250. package/dist/types/contracts/pmBlender/previewWithdraw.d.ts +3 -0
  251. package/dist/types/contracts/pmMarket/getMarketConfig.d.ts +13 -0
  252. package/dist/types/contracts/pmTreasury/getCollateralRatio.d.ts +3 -0
  253. package/dist/types/contracts/pmTreasury/getCurrentNav.d.ts +11 -0
  254. package/dist/types/contracts/pmTreasury/getLeverageRatio.d.ts +3 -0
  255. package/dist/types/contracts/pmTreasury/getMaxMintablePMUSD.d.ts +11 -0
  256. package/dist/types/contracts/pmTreasury/getMaxMintablePMUSDWithoutBaseToken.d.ts +7 -0
  257. package/dist/types/contracts/pmTreasury/getMaxMintableXPM.d.ts +9 -0
  258. package/dist/types/contracts/pmTreasury/getMaxRedeemablePMUSD.d.ts +9 -0
  259. package/dist/types/contracts/pmTreasury/getMaxRedeemableXPM.d.ts +9 -0
  260. package/dist/types/contracts/pmTreasury/getTotalBaseToken.d.ts +3 -0
  261. package/dist/types/contracts/tokens/RAAC/getBalance.d.ts +2 -0
  262. package/dist/types/contracts/tokens/RAAC/getTotalSupply.d.ts +7 -0
  263. package/dist/types/contracts/tokens/crvUSD/getBalance.d.ts +2 -0
  264. package/dist/types/contracts/tokens/crvUSD/getTotalSupply.d.ts +7 -0
  265. package/dist/types/contracts/tokens/pmUSD/getBalance.d.ts +2 -0
  266. package/dist/types/contracts/tokens/pmUSD/getTotalSupply.d.ts +7 -0
  267. package/dist/types/contracts/tokens/rcrvUSD/getBalance.d.ts +2 -0
  268. package/dist/types/contracts/tokens/rcrvUSD/getTotalSupply.d.ts +6 -0
  269. package/dist/types/contracts/tokens/veRAAC/claimReward.d.ts +12 -0
  270. package/dist/types/contracts/tokens/veRAAC/distributeRewards.d.ts +14 -0
  271. package/dist/types/contracts/tokens/veRAAC/extend.d.ts +13 -0
  272. package/dist/types/contracts/tokens/veRAAC/finalizeRagequit.d.ts +12 -0
  273. package/dist/types/contracts/tokens/veRAAC/getBalance.d.ts +3 -0
  274. package/dist/types/contracts/tokens/veRAAC/getBalanceAt.d.ts +12 -0
  275. package/dist/types/contracts/tokens/veRAAC/getBalanceAtTime.d.ts +12 -0
  276. package/dist/types/contracts/tokens/veRAAC/getCheckpoint.d.ts +16 -0
  277. package/dist/types/contracts/tokens/veRAAC/getClaimable.d.ts +13 -0
  278. package/dist/types/contracts/tokens/veRAAC/getClaimed.d.ts +12 -0
  279. package/dist/types/contracts/tokens/veRAAC/getEarned.d.ts +13 -0
  280. package/dist/types/contracts/tokens/veRAAC/getEffectiveLockEnd.d.ts +11 -0
  281. package/dist/types/contracts/tokens/veRAAC/getGlobalLockInfo.d.ts +15 -0
  282. package/dist/types/contracts/tokens/veRAAC/getLockedBalance.d.ts +11 -0
  283. package/dist/types/contracts/tokens/veRAAC/getLocks.d.ts +14 -0
  284. package/dist/types/contracts/tokens/veRAAC/getMaxLockEnd.d.ts +11 -0
  285. package/dist/types/contracts/tokens/veRAAC/getMaxUnclaimedDistributions.d.ts +13 -0
  286. package/dist/types/contracts/tokens/veRAAC/getMinLockEnd.d.ts +11 -0
  287. package/dist/types/contracts/tokens/veRAAC/getRagequitEpochs.d.ts +11 -0
  288. package/dist/types/contracts/tokens/veRAAC/getRagequitRequest.d.ts +18 -0
  289. package/dist/types/contracts/tokens/veRAAC/getRawBalanceOf.d.ts +11 -0
  290. package/dist/types/contracts/tokens/veRAAC/getRawTotalSupply.d.ts +10 -0
  291. package/dist/types/contracts/{rcrvUSDToken → tokens/veRAAC}/getTotalSupply.d.ts +1 -1
  292. package/dist/types/contracts/tokens/veRAAC/getTotalSupplyAt.d.ts +11 -0
  293. package/dist/types/contracts/tokens/veRAAC/getTotalSupplyAtTime.d.ts +11 -0
  294. package/dist/types/contracts/tokens/veRAAC/getUserPointHistory.d.ts +20 -0
  295. package/dist/types/contracts/tokens/veRAAC/increase.d.ts +13 -0
  296. package/dist/types/contracts/tokens/veRAAC/increaseWithApproval.d.ts +13 -0
  297. package/dist/types/contracts/tokens/veRAAC/index.d.ts +33 -0
  298. package/dist/types/contracts/tokens/veRAAC/lock.d.ts +12 -0
  299. package/dist/types/contracts/tokens/veRAAC/lockWithApproval.d.ts +14 -0
  300. package/dist/types/contracts/tokens/veRAAC/ragequitAll.d.ts +11 -0
  301. package/dist/types/contracts/tokens/veRAAC/ragequitLock.d.ts +12 -0
  302. package/dist/types/contracts/tokens/veRAAC/withdraw.d.ts +11 -0
  303. package/dist/types/contracts/tokens/xPM/getBalance.d.ts +2 -0
  304. package/dist/types/contracts/tokens/xPM/getTotalSupply.d.ts +7 -0
  305. package/dist/types/prices/getPrices.d.ts +5 -0
  306. package/dist/types/typechain-types/@openzeppelin/contracts/index.d.ts +0 -2
  307. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
  308. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.d.ts +159 -0
  309. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +1 -0
  310. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.d.ts +173 -0
  311. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/access/index.d.ts +1 -0
  312. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +2 -0
  313. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.d.ts +45 -0
  314. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/introspection/index.d.ts +1 -0
  315. package/dist/types/typechain-types/@openzeppelin/{contracts/proxy/transparent/ProxyAdmin.d.ts → contracts-upgradeable-v3/access/OwnableUpgradeable.d.ts} +6 -26
  316. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable-v3/access/index.d.ts +1 -0
  317. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable-v3/index.d.ts +4 -0
  318. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable-v3/token/ERC20/IERC20Upgradeable.d.ts +129 -0
  319. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable-v3/token/ERC20/index.d.ts +1 -0
  320. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable-v3/token/index.d.ts +2 -0
  321. package/dist/types/typechain-types/@openzeppelin/contracts-v3/access/Ownable.d.ts +54 -0
  322. package/dist/types/typechain-types/@openzeppelin/contracts-v3/access/index.d.ts +1 -0
  323. package/dist/types/typechain-types/@openzeppelin/contracts-v3/index.d.ts +4 -0
  324. package/dist/types/typechain-types/@openzeppelin/contracts-v3/token/ERC20/IERC20.d.ts +129 -0
  325. package/dist/types/typechain-types/@openzeppelin/contracts-v3/token/ERC20/index.d.ts +1 -0
  326. package/dist/types/typechain-types/@openzeppelin/contracts-v3/token/index.d.ts +2 -0
  327. package/dist/types/typechain-types/@openzeppelin/index.d.ts +4 -0
  328. package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +419 -774
  329. package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +398 -578
  330. package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +195 -273
  331. package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +419 -778
  332. package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +420 -779
  333. package/dist/types/typechain-types/contracts/core/governance/gauges/VeBoost.d.ts +518 -0
  334. package/dist/types/typechain-types/contracts/core/governance/gauges/VeBoostProxy.d.ts +97 -0
  335. package/dist/types/typechain-types/contracts/core/governance/gauges/index.d.ts +2 -0
  336. package/dist/types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +5 -1
  337. package/dist/types/typechain-types/contracts/core/lockers/RAACBotLocker.d.ts +497 -0
  338. package/dist/types/typechain-types/contracts/core/lockers/RAACLiquidLocker.d.ts +1383 -0
  339. package/dist/types/typechain-types/contracts/core/lockers/RAACMaturityVault.d.ts +574 -0
  340. package/dist/types/typechain-types/contracts/core/lockers/{LLamaTemple.d.ts → RAACNFTLocker.d.ts} +4 -4
  341. package/dist/types/typechain-types/contracts/core/lockers/index.d.ts +4 -1
  342. package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +5 -1
  343. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +4 -0
  344. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +4 -0
  345. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +4 -0
  346. package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +4 -0
  347. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +13 -1
  348. package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +49 -12
  349. package/dist/types/typechain-types/contracts/core/tokens/LeRAAC.sol/LiquidEscrowedRAAC.d.ts +284 -0
  350. package/dist/types/typechain-types/contracts/core/tokens/LeRAAC.sol/index.d.ts +1 -0
  351. package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +39 -2
  352. package/dist/types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +730 -499
  353. package/dist/types/typechain-types/contracts/core/tokens/VeRAACTokenStorage.d.ts +905 -0
  354. package/dist/types/typechain-types/contracts/core/tokens/index.d.ts +3 -0
  355. package/dist/types/typechain-types/{@openzeppelin/contracts/proxy/beacon/IBeacon.d.ts → contracts/core/vaults/RAACNFTVaultAdapterOracle.sol/IPriceOracle.d.ts} +14 -10
  356. package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapterOracle.sol/RAACNFTVaultAdapterOracle.d.ts +41 -0
  357. package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapterOracle.sol/index.d.ts +2 -0
  358. package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapterV2.d.ts +28 -2
  359. package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +1 -5
  360. package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +2 -0
  361. package/dist/types/typechain-types/contracts/index.d.ts +2 -0
  362. package/dist/types/typechain-types/contracts/interfaces/IBalancerPool.d.ts +95 -0
  363. package/dist/types/typechain-types/contracts/interfaces/IBalancerV1Pool.d.ts +214 -0
  364. package/dist/types/typechain-types/contracts/interfaces/IBalancerVault.d.ts +255 -0
  365. package/dist/types/typechain-types/contracts/interfaces/IConvexCRVDepositor.d.ts +55 -0
  366. package/dist/types/typechain-types/contracts/interfaces/ICurveAPool.sol/ICurveA2Pool.d.ts +236 -0
  367. package/dist/types/typechain-types/contracts/interfaces/ICurveAPool.sol/ICurveA3Pool.d.ts +236 -0
  368. package/dist/types/typechain-types/contracts/interfaces/ICurveAPool.sol/ICurveA4Pool.d.ts +236 -0
  369. package/dist/types/typechain-types/contracts/interfaces/ICurveAPool.sol/ICurveAPool.d.ts +236 -0
  370. package/dist/types/typechain-types/contracts/interfaces/ICurveAPool.sol/index.d.ts +4 -0
  371. package/dist/types/typechain-types/contracts/interfaces/ICurveBasePool.sol/ICurveBase2Pool.d.ts +49 -0
  372. package/dist/types/typechain-types/contracts/interfaces/ICurveBasePool.sol/ICurveBase3Pool.d.ts +49 -0
  373. package/dist/types/typechain-types/contracts/interfaces/ICurveBasePool.sol/ICurveBase4Pool.d.ts +57 -0
  374. package/dist/types/typechain-types/contracts/interfaces/ICurveBasePool.sol/ICurveBasePool.d.ts +133 -0
  375. package/dist/types/typechain-types/contracts/interfaces/ICurveBasePool.sol/index.d.ts +4 -0
  376. package/dist/types/typechain-types/contracts/interfaces/ICurveCryptoPool.sol/ICurveCryptoPool.d.ts +236 -0
  377. package/dist/types/typechain-types/contracts/interfaces/ICurveCryptoPool.sol/ICurveTriCryptoPool.d.ts +139 -0
  378. package/dist/types/typechain-types/contracts/interfaces/ICurveCryptoPool.sol/IZapCurveMetaCryptoPool.d.ts +143 -0
  379. package/dist/types/typechain-types/contracts/interfaces/ICurveCryptoPool.sol/index.d.ts +3 -0
  380. package/dist/types/typechain-types/contracts/interfaces/ICurveETHPool.d.ts +121 -0
  381. package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryMetaPool.sol/ICurveDepositZap.d.ts +55 -0
  382. package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryMetaPool.sol/ICurveDepositZap3Pool.d.ts +95 -0
  383. package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryMetaPool.sol/ICurveDepositZap4Pool.d.ts +115 -0
  384. package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryMetaPool.sol/ICurveFactoryMetaPool.d.ts +151 -0
  385. package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryMetaPool.sol/index.d.ts +4 -0
  386. package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryPlainPool.sol/ICurveFactoryPlain2Pool.d.ts +137 -0
  387. package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryPlainPool.sol/ICurveFactoryPlain3Pool.d.ts +137 -0
  388. package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryPlainPool.sol/ICurveFactoryPlain4Pool.d.ts +145 -0
  389. package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryPlainPool.sol/ICurveFactoryPlainPool.d.ts +109 -0
  390. package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryPlainPool.sol/index.d.ts +4 -0
  391. package/dist/types/typechain-types/contracts/interfaces/ICurveMetaPool.sol/ICurveMetaPoolDeposit.d.ts +107 -0
  392. package/dist/types/typechain-types/contracts/interfaces/ICurveMetaPool.sol/ICurveMetaPoolSwap.d.ts +163 -0
  393. package/dist/types/typechain-types/contracts/interfaces/ICurveMetaPool.sol/index.d.ts +2 -0
  394. package/dist/types/typechain-types/contracts/interfaces/ICurvePoolRegistry.d.ts +33 -0
  395. package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/ICurveY2PoolDeposit.d.ts +139 -0
  396. package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/ICurveY2PoolSwap.d.ts +167 -0
  397. package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/ICurveY3PoolDeposit.d.ts +139 -0
  398. package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/ICurveY3PoolSwap.d.ts +167 -0
  399. package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/ICurveY4PoolDeposit.d.ts +139 -0
  400. package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/ICurveY4PoolSwap.d.ts +167 -0
  401. package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/ICurveYPoolDeposit.d.ts +139 -0
  402. package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/ICurveYPoolSwap.d.ts +167 -0
  403. package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/index.d.ts +8 -0
  404. package/dist/types/typechain-types/contracts/interfaces/ILidoStETH.d.ts +33 -0
  405. package/dist/types/typechain-types/contracts/interfaces/ILidoWstETH.d.ts +61 -0
  406. package/dist/types/typechain-types/contracts/interfaces/IUniswapV2Pair.d.ts +95 -0
  407. package/dist/types/typechain-types/contracts/interfaces/IUniswapV3Pool.d.ts +105 -0
  408. package/dist/types/typechain-types/contracts/interfaces/IUniswapV3Router.d.ts +64 -0
  409. package/dist/types/typechain-types/{@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.d.ts → contracts/interfaces/IWETH.d.ts} +15 -6
  410. package/dist/types/typechain-types/contracts/interfaces/IZap.d.ts +83 -0
  411. package/dist/types/typechain-types/contracts/interfaces/concentrator/IAladdinCRV.d.ts +355 -0
  412. package/dist/types/typechain-types/contracts/interfaces/concentrator/IAladdinCompounder.d.ts +244 -0
  413. package/dist/types/typechain-types/contracts/interfaces/concentrator/index.d.ts +2 -0
  414. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +353 -286
  415. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +111 -323
  416. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +133 -183
  417. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IVeBoost.d.ts +311 -0
  418. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IVeBoostProxy.d.ts +50 -0
  419. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +2 -0
  420. package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +5 -1
  421. package/dist/types/typechain-types/contracts/interfaces/core/lockers/IRAACBotLocker.d.ts +233 -0
  422. package/dist/types/typechain-types/contracts/interfaces/core/lockers/IRAACMaturityVault.d.ts +196 -0
  423. package/dist/types/typechain-types/contracts/interfaces/core/lockers/IRaacLiquidLocker.d.ts +437 -0
  424. package/dist/types/typechain-types/contracts/interfaces/core/lockers/index.d.ts +3 -0
  425. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +16 -1
  426. package/dist/types/typechain-types/contracts/interfaces/core/tokens/ILiquidEscrowedRAAC.d.ts +161 -0
  427. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +16 -1
  428. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +405 -227
  429. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IveRAACTokenV2.sol/IveRAACToken.d.ts +518 -0
  430. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IveRAACTokenV2.sol/index.d.ts +1 -0
  431. package/dist/types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +3 -0
  432. package/dist/types/typechain-types/contracts/interfaces/index.d.ts +29 -0
  433. package/dist/types/typechain-types/contracts/libraries/governance/LockManager.d.ts +22 -77
  434. package/dist/types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +3 -76
  435. package/dist/types/typechain-types/{@openzeppelin/contracts/proxy/Proxy.d.ts → contracts/libraries/governance/RagequitLib.d.ts} +4 -4
  436. package/dist/types/typechain-types/{@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.d.ts → contracts/libraries/governance/RewardLib.d.ts} +27 -14
  437. package/dist/types/typechain-types/contracts/libraries/governance/index.d.ts +2 -0
  438. package/dist/types/typechain-types/contracts/mocks/ERC20BurnableMock.d.ts +173 -0
  439. package/dist/types/typechain-types/contracts/mocks/core/governance/index.d.ts +2 -0
  440. package/dist/types/typechain-types/contracts/mocks/core/governance/libraries/LockManagerMock.d.ts +295 -0
  441. package/dist/types/typechain-types/contracts/mocks/core/governance/libraries/index.d.ts +1 -0
  442. package/dist/types/typechain-types/contracts/mocks/core/lockers/MockLamaLocker.d.ts +51 -0
  443. package/dist/types/typechain-types/contracts/mocks/core/lockers/index.d.ts +1 -0
  444. package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +37 -1
  445. package/dist/types/typechain-types/contracts/mocks/index.d.ts +1 -0
  446. package/dist/types/typechain-types/contracts/mocks/libraries/MockTimeUtils.d.ts +51 -0
  447. package/dist/types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +176 -69
  448. package/dist/types/typechain-types/contracts/mocks/libraries/governance/RagequitHarness.d.ts +90 -0
  449. package/dist/types/typechain-types/contracts/mocks/libraries/governance/RewardIntegralCalculatorMock.sol/MockRewardIntegralCalculator.d.ts +188 -0
  450. package/dist/types/typechain-types/contracts/mocks/libraries/governance/RewardIntegralCalculatorMock.sol/index.d.ts +1 -0
  451. package/dist/types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +3 -1
  452. package/dist/types/typechain-types/contracts/mocks/libraries/index.d.ts +1 -0
  453. package/dist/types/typechain-types/contracts/zap/AladdinCRVZap.d.ts +83 -0
  454. package/dist/types/typechain-types/contracts/zap/AladdinConvexVaultZap.d.ts +172 -0
  455. package/dist/types/typechain-types/contracts/zap/AladdinZap.d.ts +240 -0
  456. package/dist/types/typechain-types/contracts/zap/TokenZapLogic.d.ts +53 -0
  457. package/dist/types/typechain-types/contracts/zap/index.d.ts +4 -0
  458. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +1 -1
  459. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +1 -1
  460. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +1 -1
  461. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +1 -1
  462. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +1 -1
  463. package/dist/types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +0 -1
  464. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
  465. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable__factory.d.ts +265 -0
  466. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +1 -0
  467. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +1 -1
  468. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +1 -1
  469. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +1 -1
  470. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +1 -1
  471. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +1 -1
  472. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +1 -1
  473. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +1 -1
  474. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +1 -1
  475. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable__factory.d.ts +199 -0
  476. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/index.d.ts +1 -0
  477. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
  478. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable__factory.d.ts +39 -0
  479. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/introspection/index.d.ts +1 -0
  480. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable-v3/access/OwnableUpgradeable__factory.d.ts +48 -0
  481. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable-v3/access/index.d.ts +1 -0
  482. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable-v3/index.d.ts +2 -0
  483. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable-v3/token/ERC20/IERC20Upgradeable__factory.d.ts +147 -0
  484. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable-v3/token/ERC20/index.d.ts +1 -0
  485. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable-v3/token/index.d.ts +1 -0
  486. package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/access/Ownable__factory.d.ts +48 -0
  487. package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/access/index.d.ts +1 -0
  488. package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/index.d.ts +2 -0
  489. package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/token/ERC20/IERC20__factory.d.ts +147 -0
  490. package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/token/ERC20/index.d.ts +1 -0
  491. package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/token/index.d.ts +1 -0
  492. package/dist/types/typechain-types/factories/@openzeppelin/index.d.ts +2 -0
  493. package/dist/types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +1 -1
  494. package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +1 -1
  495. package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +1 -1
  496. package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +1 -1
  497. package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +1 -1
  498. package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +1 -1
  499. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +361 -903
  500. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +397 -559
  501. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +146 -260
  502. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +359 -907
  503. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +359 -907
  504. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/VeBoostProxy__factory.d.ts +152 -0
  505. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/VeBoost__factory.d.ts +716 -0
  506. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +2 -0
  507. package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +11 -1
  508. package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +1 -1
  509. package/dist/types/typechain-types/factories/contracts/core/lockers/RAACBotLocker__factory.d.ts +726 -0
  510. package/dist/types/typechain-types/factories/contracts/core/lockers/RAACLiquidLocker__factory.d.ts +1762 -0
  511. package/dist/types/typechain-types/factories/contracts/core/lockers/RAACMaturityVault__factory.d.ts +743 -0
  512. package/dist/types/typechain-types/factories/contracts/core/lockers/{LLamaTemple__factory.d.ts → RAACNFTLocker__factory.d.ts} +9 -9
  513. package/dist/types/typechain-types/factories/contracts/core/lockers/index.d.ts +4 -1
  514. package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1 -1
  515. package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +1 -1
  516. package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +1 -1
  517. package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle__factory.d.ts +1 -1
  518. package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +1 -1
  519. package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +1 -1
  520. package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +17 -3
  521. package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +1 -1
  522. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +1 -1
  523. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter__factory.d.ts +1 -1
  524. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +5 -1
  525. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +9 -1
  526. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +5 -1
  527. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +5 -1
  528. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +1 -1
  529. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +21 -1
  530. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +1 -1
  531. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +1 -1
  532. package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +1 -1
  533. package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +1 -1
  534. package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +49 -6
  535. package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +1 -1
  536. package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +1 -1
  537. package/dist/types/typechain-types/factories/contracts/core/tokens/LeRAAC.sol/LiquidEscrowedRAAC__factory.d.ts +485 -0
  538. package/dist/types/typechain-types/factories/contracts/core/tokens/LeRAAC.sol/index.d.ts +1 -0
  539. package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +1 -1
  540. package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +1 -1
  541. package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +44 -1
  542. package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +1 -1
  543. package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACTokenStorage__factory.d.ts +1130 -0
  544. package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +759 -490
  545. package/dist/types/typechain-types/factories/contracts/core/tokens/index.d.ts +2 -0
  546. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +1 -1
  547. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +1 -1
  548. package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterOracle.sol/IPriceOracle__factory.d.ts +25 -0
  549. package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterOracle.sol/RAACNFTVaultAdapterOracle__factory.d.ts +78 -0
  550. package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterOracle.sol/index.d.ts +2 -0
  551. package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterV2__factory.d.ts +38 -4
  552. package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +3 -17
  553. package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +1 -0
  554. package/dist/types/typechain-types/factories/contracts/index.d.ts +1 -0
  555. package/dist/types/typechain-types/factories/contracts/interfaces/IBalancerPool__factory.d.ts +91 -0
  556. package/dist/types/typechain-types/factories/contracts/interfaces/IBalancerV1Pool__factory.d.ts +273 -0
  557. package/dist/types/typechain-types/factories/contracts/interfaces/IBalancerVault__factory.d.ts +261 -0
  558. package/dist/types/typechain-types/factories/contracts/interfaces/IConvexCRVDepositor__factory.d.ts +49 -0
  559. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveAPool.sol/ICurveA2Pool__factory.d.ts +305 -0
  560. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveAPool.sol/ICurveA3Pool__factory.d.ts +305 -0
  561. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveAPool.sol/ICurveA4Pool__factory.d.ts +305 -0
  562. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveAPool.sol/ICurveAPool__factory.d.ts +305 -0
  563. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveAPool.sol/index.d.ts +4 -0
  564. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveBasePool.sol/ICurveBase2Pool__factory.d.ts +39 -0
  565. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveBasePool.sol/ICurveBase3Pool__factory.d.ts +39 -0
  566. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveBasePool.sol/ICurveBase4Pool__factory.d.ts +39 -0
  567. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveBasePool.sol/ICurveBasePool__factory.d.ts +175 -0
  568. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveBasePool.sol/index.d.ts +4 -0
  569. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveCryptoPool.sol/ICurveCryptoPool__factory.d.ts +301 -0
  570. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveCryptoPool.sol/ICurveTriCryptoPool__factory.d.ts +165 -0
  571. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveCryptoPool.sol/IZapCurveMetaCryptoPool__factory.d.ts +181 -0
  572. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveCryptoPool.sol/index.d.ts +3 -0
  573. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveETHPool__factory.d.ts +155 -0
  574. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryMetaPool.sol/ICurveDepositZap3Pool__factory.d.ts +99 -0
  575. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryMetaPool.sol/ICurveDepositZap4Pool__factory.d.ts +99 -0
  576. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryMetaPool.sol/ICurveDepositZap__factory.d.ts +55 -0
  577. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryMetaPool.sol/ICurveFactoryMetaPool__factory.d.ts +193 -0
  578. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryMetaPool.sol/index.d.ts +4 -0
  579. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryPlainPool.sol/ICurveFactoryPlain2Pool__factory.d.ts +183 -0
  580. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryPlainPool.sol/ICurveFactoryPlain3Pool__factory.d.ts +183 -0
  581. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryPlainPool.sol/ICurveFactoryPlain4Pool__factory.d.ts +183 -0
  582. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryPlainPool.sol/ICurveFactoryPlainPool__factory.d.ts +147 -0
  583. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryPlainPool.sol/index.d.ts +4 -0
  584. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveMetaPool.sol/ICurveMetaPoolDeposit__factory.d.ts +141 -0
  585. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveMetaPool.sol/ICurveMetaPoolSwap__factory.d.ts +227 -0
  586. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveMetaPool.sol/index.d.ts +2 -0
  587. package/dist/types/typechain-types/factories/contracts/interfaces/ICurvePoolRegistry__factory.d.ts +35 -0
  588. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/ICurveY2PoolDeposit__factory.d.ts +165 -0
  589. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/ICurveY2PoolSwap__factory.d.ts +193 -0
  590. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/ICurveY3PoolDeposit__factory.d.ts +165 -0
  591. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/ICurveY3PoolSwap__factory.d.ts +193 -0
  592. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/ICurveY4PoolDeposit__factory.d.ts +165 -0
  593. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/ICurveY4PoolSwap__factory.d.ts +193 -0
  594. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/ICurveYPoolDeposit__factory.d.ts +165 -0
  595. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/ICurveYPoolSwap__factory.d.ts +193 -0
  596. package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/index.d.ts +8 -0
  597. package/dist/types/typechain-types/factories/contracts/interfaces/ILidoStETH__factory.d.ts +35 -0
  598. package/dist/types/typechain-types/factories/contracts/interfaces/ILidoWstETH__factory.d.ts +83 -0
  599. package/dist/types/typechain-types/factories/contracts/interfaces/IUniswapV2Pair__factory.d.ts +95 -0
  600. package/dist/types/typechain-types/factories/contracts/interfaces/IUniswapV3Pool__factory.d.ts +115 -0
  601. package/dist/types/typechain-types/factories/contracts/interfaces/IUniswapV3Router__factory.d.ts +54 -0
  602. package/dist/types/typechain-types/factories/contracts/interfaces/IWETH__factory.d.ts +23 -0
  603. package/dist/types/typechain-types/factories/contracts/interfaces/IZap__factory.d.ts +89 -0
  604. package/dist/types/typechain-types/factories/contracts/interfaces/concentrator/IAladdinCRV__factory.d.ts +401 -0
  605. package/dist/types/typechain-types/factories/contracts/interfaces/concentrator/IAladdinCompounder__factory.d.ts +350 -0
  606. package/dist/types/typechain-types/factories/contracts/interfaces/concentrator/index.d.ts +2 -0
  607. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +347 -291
  608. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +93 -319
  609. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts +96 -152
  610. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IVeBoostProxy__factory.d.ts +46 -0
  611. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IVeBoost__factory.d.ts +449 -0
  612. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +2 -0
  613. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +10 -0
  614. package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/IRAACBotLocker__factory.d.ts +319 -0
  615. package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/IRAACMaturityVault__factory.d.ts +192 -0
  616. package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/IRaacLiquidLocker__factory.d.ts +457 -0
  617. package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/index.d.ts +3 -0
  618. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +4 -0
  619. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +15 -0
  620. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/ILiquidEscrowedRAAC__factory.d.ts +185 -0
  621. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +15 -0
  622. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACTokenV2.sol/IveRAACToken__factory.d.ts +628 -0
  623. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACTokenV2.sol/index.d.ts +1 -0
  624. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +352 -175
  625. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +2 -0
  626. package/dist/types/typechain-types/factories/contracts/interfaces/index.d.ts +21 -0
  627. package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +1 -1
  628. package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +38 -68
  629. package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +6 -79
  630. package/dist/types/typechain-types/factories/contracts/libraries/governance/RagequitLib__factory.d.ts +58 -0
  631. package/dist/types/typechain-types/factories/contracts/libraries/governance/RewardLib__factory.d.ts +71 -0
  632. package/dist/types/typechain-types/factories/contracts/libraries/governance/index.d.ts +2 -0
  633. package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -1
  634. package/dist/types/typechain-types/factories/contracts/libraries/pools/LendingPoolFeeLibrary__factory.d.ts +1 -1
  635. package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
  636. package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +1 -1
  637. package/dist/types/typechain-types/factories/contracts/mocks/ERC20BurnableMock__factory.d.ts +310 -0
  638. package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +1 -1
  639. package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +1 -1
  640. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +1 -1
  641. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +1 -1
  642. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +1 -1
  643. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/index.d.ts +1 -0
  644. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/libraries/LockManagerMock__factory.d.ts +354 -0
  645. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/libraries/index.d.ts +1 -0
  646. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +1 -1
  647. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +1 -1
  648. package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +1 -1
  649. package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/MockLamaLocker__factory.d.ts +104 -0
  650. package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/index.d.ts +1 -0
  651. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +1 -1
  652. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA__factory.d.ts +1 -1
  653. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +1 -1
  654. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +1 -1
  655. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +1 -1
  656. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +1 -1
  657. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +1 -1
  658. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +1 -1
  659. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +1 -1
  660. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +1 -1
  661. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool__factory.d.ts +1 -1
  662. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +1 -1
  663. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +49 -1
  664. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +1 -1
  665. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +1 -1
  666. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +1 -1
  667. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +1 -1
  668. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +1 -1
  669. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +1 -1
  670. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +1 -1
  671. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +1 -1
  672. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +1 -1
  673. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +1 -1
  674. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +1 -1
  675. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +1 -1
  676. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
  677. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -1
  678. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -1
  679. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -1
  680. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +1 -1
  681. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +1 -1
  682. package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -1
  683. package/dist/types/typechain-types/factories/contracts/mocks/index.d.ts +1 -0
  684. package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
  685. package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockTimeUtils__factory.d.ts +68 -0
  686. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +1 -1
  687. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +146 -53
  688. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RagequitHarness__factory.d.ts +100 -0
  689. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RewardIntegralCalculatorMock.sol/MockRewardIntegralCalculator__factory.d.ts +230 -0
  690. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RewardIntegralCalculatorMock.sol/index.d.ts +1 -0
  691. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +2 -1
  692. package/dist/types/typechain-types/factories/contracts/mocks/libraries/index.d.ts +1 -0
  693. package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +1 -1
  694. package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +1 -1
  695. package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +1 -1
  696. package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +1 -1
  697. package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +1 -1
  698. package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +1 -1
  699. package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +2 -2
  700. package/dist/types/typechain-types/factories/contracts/zap/AladdinCRVZap__factory.d.ts +107 -0
  701. package/dist/types/typechain-types/factories/contracts/zap/AladdinConvexVaultZap__factory.d.ts +208 -0
  702. package/dist/types/typechain-types/factories/contracts/zap/AladdinZap__factory.d.ts +302 -0
  703. package/dist/types/typechain-types/factories/contracts/zap/TokenZapLogic__factory.d.ts +71 -0
  704. package/dist/types/typechain-types/factories/contracts/zap/index.d.ts +4 -0
  705. package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +1 -1
  706. package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +1 -1
  707. package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +1 -1
  708. package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +1 -1
  709. package/dist/types/typechain-types/index.d.ts +156 -26
  710. package/dist/types/utils/artifacts.d.ts +985 -149
  711. package/dist/types/utils/contracts.d.ts +508 -2
  712. package/dist/utils/artifacts.js +37 -0
  713. package/package.json +5 -4
  714. package/dist/types/contracts/crvUSDToken/getBalance.d.ts +0 -2
  715. package/dist/types/contracts/crvUSDToken/getTotalSupply.d.ts +0 -10
  716. package/dist/types/contracts/rcrvUSDToken/getBalance.d.ts +0 -2
  717. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC1967.d.ts +0 -65
  718. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/ERC1967/index.d.ts +0 -2
  719. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/beacon/index.d.ts +0 -1
  720. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/index.d.ts +0 -7
  721. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.d.ts +0 -80
  722. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.d.ts +0 -51
  723. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts +0 -2
  724. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/index.d.ts +0 -3
  725. package/dist/types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +0 -173
  726. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1967__factory.d.ts +0 -42
  727. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy__factory.d.ts +0 -71
  728. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils__factory.d.ts +0 -50
  729. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/index.d.ts +0 -2
  730. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/Proxy__factory.d.ts +0 -10
  731. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/IBeacon__factory.d.ts +0 -17
  732. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/index.d.ts +0 -1
  733. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/index.d.ts +0 -4
  734. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.d.ts +0 -115
  735. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy__factory.d.ts +0 -56
  736. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.d.ts +0 -102
  737. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts +0 -2
  738. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/index.d.ts +0 -2
  739. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +0 -206
@@ -0,0 +1,1622 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "BaseGauge",
4
+ "sourceName": "contracts/core/governance/gauges/BaseGauge.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "AccessControlBadConfirmation",
9
+ "type": "error"
10
+ },
11
+ {
12
+ "inputs": [
13
+ {
14
+ "internalType": "address",
15
+ "name": "account",
16
+ "type": "address"
17
+ },
18
+ {
19
+ "internalType": "bytes32",
20
+ "name": "neededRole",
21
+ "type": "bytes32"
22
+ }
23
+ ],
24
+ "name": "AccessControlUnauthorizedAccount",
25
+ "type": "error"
26
+ },
27
+ {
28
+ "inputs": [],
29
+ "name": "AlreadyPaused",
30
+ "type": "error"
31
+ },
32
+ {
33
+ "inputs": [],
34
+ "name": "DistributorAlreadyAdded",
35
+ "type": "error"
36
+ },
37
+ {
38
+ "inputs": [],
39
+ "name": "DistributorNotAdded",
40
+ "type": "error"
41
+ },
42
+ {
43
+ "inputs": [],
44
+ "name": "EnforcedPause",
45
+ "type": "error"
46
+ },
47
+ {
48
+ "inputs": [],
49
+ "name": "ExpectedPause",
50
+ "type": "error"
51
+ },
52
+ {
53
+ "inputs": [],
54
+ "name": "FailedToGetTokenDecimals",
55
+ "type": "error"
56
+ },
57
+ {
58
+ "inputs": [],
59
+ "name": "GaugeNotActive",
60
+ "type": "error"
61
+ },
62
+ {
63
+ "inputs": [],
64
+ "name": "GaugeNotStarted",
65
+ "type": "error"
66
+ },
67
+ {
68
+ "inputs": [],
69
+ "name": "InsufficientStakedBalance",
70
+ "type": "error"
71
+ },
72
+ {
73
+ "inputs": [],
74
+ "name": "InvalidAddress",
75
+ "type": "error"
76
+ },
77
+ {
78
+ "inputs": [],
79
+ "name": "InvalidAmount",
80
+ "type": "error"
81
+ },
82
+ {
83
+ "inputs": [],
84
+ "name": "InvalidDistributor",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [],
89
+ "name": "MaxExtraRewardsReached",
90
+ "type": "error"
91
+ },
92
+ {
93
+ "inputs": [],
94
+ "name": "NotPaused",
95
+ "type": "error"
96
+ },
97
+ {
98
+ "inputs": [],
99
+ "name": "NotSupportedToken",
100
+ "type": "error"
101
+ },
102
+ {
103
+ "inputs": [],
104
+ "name": "ReentrancyGuardReentrantCall",
105
+ "type": "error"
106
+ },
107
+ {
108
+ "inputs": [
109
+ {
110
+ "internalType": "address",
111
+ "name": "token",
112
+ "type": "address"
113
+ }
114
+ ],
115
+ "name": "SafeERC20FailedOperation",
116
+ "type": "error"
117
+ },
118
+ {
119
+ "inputs": [],
120
+ "name": "TokenAlreadyInitialized",
121
+ "type": "error"
122
+ },
123
+ {
124
+ "anonymous": false,
125
+ "inputs": [
126
+ {
127
+ "indexed": false,
128
+ "internalType": "bool",
129
+ "name": "depositRAACOnClaim",
130
+ "type": "bool"
131
+ }
132
+ ],
133
+ "name": "DepositRAACOnClaimUpdated",
134
+ "type": "event"
135
+ },
136
+ {
137
+ "anonymous": false,
138
+ "inputs": [
139
+ {
140
+ "indexed": true,
141
+ "internalType": "address",
142
+ "name": "distributor",
143
+ "type": "address"
144
+ },
145
+ {
146
+ "indexed": false,
147
+ "internalType": "bool",
148
+ "name": "isApproved",
149
+ "type": "bool"
150
+ }
151
+ ],
152
+ "name": "DistributorApprovalUpdated",
153
+ "type": "event"
154
+ },
155
+ {
156
+ "anonymous": false,
157
+ "inputs": [
158
+ {
159
+ "indexed": true,
160
+ "internalType": "address",
161
+ "name": "distributor",
162
+ "type": "address"
163
+ },
164
+ {
165
+ "indexed": false,
166
+ "internalType": "bool",
167
+ "name": "distributorAdded",
168
+ "type": "bool"
169
+ }
170
+ ],
171
+ "name": "DistributorUpdated",
172
+ "type": "event"
173
+ },
174
+ {
175
+ "anonymous": false,
176
+ "inputs": [
177
+ {
178
+ "indexed": false,
179
+ "internalType": "bool",
180
+ "name": "paused",
181
+ "type": "bool"
182
+ }
183
+ ],
184
+ "name": "EmergencyPauseUpdated",
185
+ "type": "event"
186
+ },
187
+ {
188
+ "anonymous": false,
189
+ "inputs": [
190
+ {
191
+ "indexed": true,
192
+ "internalType": "address",
193
+ "name": "token",
194
+ "type": "address"
195
+ },
196
+ {
197
+ "indexed": true,
198
+ "internalType": "address",
199
+ "name": "user",
200
+ "type": "address"
201
+ },
202
+ {
203
+ "indexed": false,
204
+ "internalType": "uint256",
205
+ "name": "amount",
206
+ "type": "uint256"
207
+ }
208
+ ],
209
+ "name": "ExtraRewardClaimed",
210
+ "type": "event"
211
+ },
212
+ {
213
+ "anonymous": false,
214
+ "inputs": [
215
+ {
216
+ "indexed": true,
217
+ "internalType": "address",
218
+ "name": "token",
219
+ "type": "address"
220
+ },
221
+ {
222
+ "indexed": false,
223
+ "internalType": "uint256",
224
+ "name": "amount",
225
+ "type": "uint256"
226
+ }
227
+ ],
228
+ "name": "ExtraRewardDeposited",
229
+ "type": "event"
230
+ },
231
+ {
232
+ "anonymous": false,
233
+ "inputs": [
234
+ {
235
+ "indexed": true,
236
+ "internalType": "address",
237
+ "name": "token",
238
+ "type": "address"
239
+ },
240
+ {
241
+ "indexed": false,
242
+ "internalType": "address",
243
+ "name": "distributor",
244
+ "type": "address"
245
+ }
246
+ ],
247
+ "name": "ExtraRewardTokenAdded",
248
+ "type": "event"
249
+ },
250
+ {
251
+ "anonymous": false,
252
+ "inputs": [
253
+ {
254
+ "indexed": true,
255
+ "internalType": "address",
256
+ "name": "token",
257
+ "type": "address"
258
+ },
259
+ {
260
+ "indexed": false,
261
+ "internalType": "uint256",
262
+ "name": "leftoverAmount",
263
+ "type": "uint256"
264
+ },
265
+ {
266
+ "indexed": false,
267
+ "internalType": "uint256",
268
+ "name": "newRewards",
269
+ "type": "uint256"
270
+ }
271
+ ],
272
+ "name": "LeftoverRewardsIncluded",
273
+ "type": "event"
274
+ },
275
+ {
276
+ "anonymous": false,
277
+ "inputs": [
278
+ {
279
+ "indexed": false,
280
+ "internalType": "address",
281
+ "name": "account",
282
+ "type": "address"
283
+ }
284
+ ],
285
+ "name": "Paused",
286
+ "type": "event"
287
+ },
288
+ {
289
+ "anonymous": false,
290
+ "inputs": [
291
+ {
292
+ "indexed": true,
293
+ "internalType": "address",
294
+ "name": "token",
295
+ "type": "address"
296
+ },
297
+ {
298
+ "indexed": false,
299
+ "internalType": "uint256",
300
+ "name": "newRate",
301
+ "type": "uint256"
302
+ },
303
+ {
304
+ "indexed": false,
305
+ "internalType": "uint256",
306
+ "name": "remainingTime",
307
+ "type": "uint256"
308
+ }
309
+ ],
310
+ "name": "RateRecalculated",
311
+ "type": "event"
312
+ },
313
+ {
314
+ "anonymous": false,
315
+ "inputs": [
316
+ {
317
+ "indexed": true,
318
+ "internalType": "address",
319
+ "name": "token",
320
+ "type": "address"
321
+ }
322
+ ],
323
+ "name": "RewardTokenActivated",
324
+ "type": "event"
325
+ },
326
+ {
327
+ "anonymous": false,
328
+ "inputs": [
329
+ {
330
+ "indexed": true,
331
+ "internalType": "address",
332
+ "name": "token",
333
+ "type": "address"
334
+ }
335
+ ],
336
+ "name": "RewardTokenAdded",
337
+ "type": "event"
338
+ },
339
+ {
340
+ "anonymous": false,
341
+ "inputs": [
342
+ {
343
+ "indexed": true,
344
+ "internalType": "address",
345
+ "name": "token",
346
+ "type": "address"
347
+ }
348
+ ],
349
+ "name": "RewardTokenRegistered",
350
+ "type": "event"
351
+ },
352
+ {
353
+ "anonymous": false,
354
+ "inputs": [
355
+ {
356
+ "indexed": true,
357
+ "internalType": "address",
358
+ "name": "user",
359
+ "type": "address"
360
+ },
361
+ {
362
+ "indexed": true,
363
+ "internalType": "address",
364
+ "name": "token",
365
+ "type": "address"
366
+ },
367
+ {
368
+ "indexed": false,
369
+ "internalType": "uint256",
370
+ "name": "amount",
371
+ "type": "uint256"
372
+ }
373
+ ],
374
+ "name": "RewardTransferred",
375
+ "type": "event"
376
+ },
377
+ {
378
+ "anonymous": false,
379
+ "inputs": [
380
+ {
381
+ "indexed": true,
382
+ "internalType": "bytes32",
383
+ "name": "role",
384
+ "type": "bytes32"
385
+ },
386
+ {
387
+ "indexed": true,
388
+ "internalType": "bytes32",
389
+ "name": "previousAdminRole",
390
+ "type": "bytes32"
391
+ },
392
+ {
393
+ "indexed": true,
394
+ "internalType": "bytes32",
395
+ "name": "newAdminRole",
396
+ "type": "bytes32"
397
+ }
398
+ ],
399
+ "name": "RoleAdminChanged",
400
+ "type": "event"
401
+ },
402
+ {
403
+ "anonymous": false,
404
+ "inputs": [
405
+ {
406
+ "indexed": true,
407
+ "internalType": "bytes32",
408
+ "name": "role",
409
+ "type": "bytes32"
410
+ },
411
+ {
412
+ "indexed": true,
413
+ "internalType": "address",
414
+ "name": "account",
415
+ "type": "address"
416
+ },
417
+ {
418
+ "indexed": true,
419
+ "internalType": "address",
420
+ "name": "sender",
421
+ "type": "address"
422
+ }
423
+ ],
424
+ "name": "RoleGranted",
425
+ "type": "event"
426
+ },
427
+ {
428
+ "anonymous": false,
429
+ "inputs": [
430
+ {
431
+ "indexed": true,
432
+ "internalType": "bytes32",
433
+ "name": "role",
434
+ "type": "bytes32"
435
+ },
436
+ {
437
+ "indexed": true,
438
+ "internalType": "address",
439
+ "name": "account",
440
+ "type": "address"
441
+ },
442
+ {
443
+ "indexed": true,
444
+ "internalType": "address",
445
+ "name": "sender",
446
+ "type": "address"
447
+ }
448
+ ],
449
+ "name": "RoleRevoked",
450
+ "type": "event"
451
+ },
452
+ {
453
+ "anonymous": false,
454
+ "inputs": [
455
+ {
456
+ "indexed": true,
457
+ "internalType": "address",
458
+ "name": "user",
459
+ "type": "address"
460
+ },
461
+ {
462
+ "indexed": false,
463
+ "internalType": "uint256",
464
+ "name": "amount",
465
+ "type": "uint256"
466
+ }
467
+ ],
468
+ "name": "Staked",
469
+ "type": "event"
470
+ },
471
+ {
472
+ "anonymous": false,
473
+ "inputs": [
474
+ {
475
+ "indexed": false,
476
+ "internalType": "address",
477
+ "name": "account",
478
+ "type": "address"
479
+ }
480
+ ],
481
+ "name": "Unpaused",
482
+ "type": "event"
483
+ },
484
+ {
485
+ "anonymous": false,
486
+ "inputs": [
487
+ {
488
+ "indexed": true,
489
+ "internalType": "address",
490
+ "name": "user",
491
+ "type": "address"
492
+ },
493
+ {
494
+ "indexed": false,
495
+ "internalType": "uint256",
496
+ "name": "timestamp",
497
+ "type": "uint256"
498
+ }
499
+ ],
500
+ "name": "UserRewardsUpdated",
501
+ "type": "event"
502
+ },
503
+ {
504
+ "anonymous": false,
505
+ "inputs": [
506
+ {
507
+ "indexed": true,
508
+ "internalType": "address",
509
+ "name": "user",
510
+ "type": "address"
511
+ },
512
+ {
513
+ "indexed": false,
514
+ "internalType": "uint256",
515
+ "name": "amount",
516
+ "type": "uint256"
517
+ }
518
+ ],
519
+ "name": "Withdrawn",
520
+ "type": "event"
521
+ },
522
+ {
523
+ "anonymous": false,
524
+ "inputs": [
525
+ {
526
+ "indexed": true,
527
+ "internalType": "address",
528
+ "name": "user",
529
+ "type": "address"
530
+ },
531
+ {
532
+ "indexed": false,
533
+ "internalType": "uint256",
534
+ "name": "newWorkingBalance",
535
+ "type": "uint256"
536
+ }
537
+ ],
538
+ "name": "WorkingBalanceUpdated",
539
+ "type": "event"
540
+ },
541
+ {
542
+ "inputs": [],
543
+ "name": "CLAIM_FOR_ROLE",
544
+ "outputs": [
545
+ {
546
+ "internalType": "bytes32",
547
+ "name": "",
548
+ "type": "bytes32"
549
+ }
550
+ ],
551
+ "stateMutability": "view",
552
+ "type": "function"
553
+ },
554
+ {
555
+ "inputs": [],
556
+ "name": "CONTROLLER_ROLE",
557
+ "outputs": [
558
+ {
559
+ "internalType": "bytes32",
560
+ "name": "",
561
+ "type": "bytes32"
562
+ }
563
+ ],
564
+ "stateMutability": "view",
565
+ "type": "function"
566
+ },
567
+ {
568
+ "inputs": [],
569
+ "name": "DEFAULT_ADMIN_ROLE",
570
+ "outputs": [
571
+ {
572
+ "internalType": "bytes32",
573
+ "name": "",
574
+ "type": "bytes32"
575
+ }
576
+ ],
577
+ "stateMutability": "view",
578
+ "type": "function"
579
+ },
580
+ {
581
+ "inputs": [],
582
+ "name": "EMERGENCY_ADMIN",
583
+ "outputs": [
584
+ {
585
+ "internalType": "bytes32",
586
+ "name": "",
587
+ "type": "bytes32"
588
+ }
589
+ ],
590
+ "stateMutability": "view",
591
+ "type": "function"
592
+ },
593
+ {
594
+ "inputs": [],
595
+ "name": "MAX_EXTRA_REWARDS",
596
+ "outputs": [
597
+ {
598
+ "internalType": "uint256",
599
+ "name": "",
600
+ "type": "uint256"
601
+ }
602
+ ],
603
+ "stateMutability": "view",
604
+ "type": "function"
605
+ },
606
+ {
607
+ "inputs": [],
608
+ "name": "WEEK",
609
+ "outputs": [
610
+ {
611
+ "internalType": "uint256",
612
+ "name": "",
613
+ "type": "uint256"
614
+ }
615
+ ],
616
+ "stateMutability": "view",
617
+ "type": "function"
618
+ },
619
+ {
620
+ "inputs": [
621
+ {
622
+ "internalType": "address",
623
+ "name": "token",
624
+ "type": "address"
625
+ },
626
+ {
627
+ "internalType": "address",
628
+ "name": "distributor",
629
+ "type": "address"
630
+ }
631
+ ],
632
+ "name": "addRewardToken",
633
+ "outputs": [],
634
+ "stateMutability": "nonpayable",
635
+ "type": "function"
636
+ },
637
+ {
638
+ "inputs": [
639
+ {
640
+ "internalType": "address",
641
+ "name": "account",
642
+ "type": "address"
643
+ }
644
+ ],
645
+ "name": "allEarnedRewards",
646
+ "outputs": [
647
+ {
648
+ "internalType": "address[]",
649
+ "name": "",
650
+ "type": "address[]"
651
+ },
652
+ {
653
+ "internalType": "uint256[]",
654
+ "name": "",
655
+ "type": "uint256[]"
656
+ }
657
+ ],
658
+ "stateMutability": "view",
659
+ "type": "function"
660
+ },
661
+ {
662
+ "inputs": [
663
+ {
664
+ "internalType": "address",
665
+ "name": "user",
666
+ "type": "address"
667
+ }
668
+ ],
669
+ "name": "allPendingExtraRewards",
670
+ "outputs": [
671
+ {
672
+ "internalType": "address[]",
673
+ "name": "tokens",
674
+ "type": "address[]"
675
+ },
676
+ {
677
+ "internalType": "uint256[]",
678
+ "name": "amounts",
679
+ "type": "uint256[]"
680
+ }
681
+ ],
682
+ "stateMutability": "view",
683
+ "type": "function"
684
+ },
685
+ {
686
+ "inputs": [
687
+ {
688
+ "internalType": "address",
689
+ "name": "account",
690
+ "type": "address"
691
+ }
692
+ ],
693
+ "name": "allPendingRewards",
694
+ "outputs": [
695
+ {
696
+ "internalType": "address[]",
697
+ "name": "",
698
+ "type": "address[]"
699
+ },
700
+ {
701
+ "internalType": "uint256[]",
702
+ "name": "",
703
+ "type": "uint256[]"
704
+ }
705
+ ],
706
+ "stateMutability": "view",
707
+ "type": "function"
708
+ },
709
+ {
710
+ "inputs": [
711
+ {
712
+ "internalType": "address",
713
+ "name": "account",
714
+ "type": "address"
715
+ }
716
+ ],
717
+ "name": "balanceOf",
718
+ "outputs": [
719
+ {
720
+ "internalType": "uint256",
721
+ "name": "",
722
+ "type": "uint256"
723
+ }
724
+ ],
725
+ "stateMutability": "view",
726
+ "type": "function"
727
+ },
728
+ {
729
+ "inputs": [
730
+ {
731
+ "internalType": "address",
732
+ "name": "token",
733
+ "type": "address"
734
+ }
735
+ ],
736
+ "name": "claimExtraReward",
737
+ "outputs": [
738
+ {
739
+ "internalType": "uint256",
740
+ "name": "",
741
+ "type": "uint256"
742
+ }
743
+ ],
744
+ "stateMutability": "nonpayable",
745
+ "type": "function"
746
+ },
747
+ {
748
+ "inputs": [],
749
+ "name": "claimExtraRewards",
750
+ "outputs": [],
751
+ "stateMutability": "nonpayable",
752
+ "type": "function"
753
+ },
754
+ {
755
+ "inputs": [
756
+ {
757
+ "internalType": "address",
758
+ "name": "token",
759
+ "type": "address"
760
+ },
761
+ {
762
+ "internalType": "uint256",
763
+ "name": "amount",
764
+ "type": "uint256"
765
+ },
766
+ {
767
+ "internalType": "address",
768
+ "name": "user",
769
+ "type": "address"
770
+ }
771
+ ],
772
+ "name": "claimOnBehalfOf",
773
+ "outputs": [
774
+ {
775
+ "internalType": "uint256",
776
+ "name": "",
777
+ "type": "uint256"
778
+ }
779
+ ],
780
+ "stateMutability": "nonpayable",
781
+ "type": "function"
782
+ },
783
+ {
784
+ "inputs": [
785
+ {
786
+ "internalType": "address",
787
+ "name": "token",
788
+ "type": "address"
789
+ }
790
+ ],
791
+ "name": "claimRewardToken",
792
+ "outputs": [
793
+ {
794
+ "internalType": "uint256",
795
+ "name": "",
796
+ "type": "uint256"
797
+ }
798
+ ],
799
+ "stateMutability": "nonpayable",
800
+ "type": "function"
801
+ },
802
+ {
803
+ "inputs": [],
804
+ "name": "claimRewards",
805
+ "outputs": [],
806
+ "stateMutability": "nonpayable",
807
+ "type": "function"
808
+ },
809
+ {
810
+ "inputs": [
811
+ {
812
+ "internalType": "address",
813
+ "name": "user",
814
+ "type": "address"
815
+ }
816
+ ],
817
+ "name": "claimRewardsFor",
818
+ "outputs": [],
819
+ "stateMutability": "nonpayable",
820
+ "type": "function"
821
+ },
822
+ {
823
+ "inputs": [],
824
+ "name": "depositRAACOnClaim",
825
+ "outputs": [
826
+ {
827
+ "internalType": "bool",
828
+ "name": "",
829
+ "type": "bool"
830
+ }
831
+ ],
832
+ "stateMutability": "view",
833
+ "type": "function"
834
+ },
835
+ {
836
+ "inputs": [
837
+ {
838
+ "internalType": "address",
839
+ "name": "token",
840
+ "type": "address"
841
+ },
842
+ {
843
+ "internalType": "uint256",
844
+ "name": "amount",
845
+ "type": "uint256"
846
+ }
847
+ ],
848
+ "name": "depositRewardToken",
849
+ "outputs": [],
850
+ "stateMutability": "nonpayable",
851
+ "type": "function"
852
+ },
853
+ {
854
+ "inputs": [
855
+ {
856
+ "internalType": "address",
857
+ "name": "token",
858
+ "type": "address"
859
+ },
860
+ {
861
+ "internalType": "address",
862
+ "name": "user",
863
+ "type": "address"
864
+ }
865
+ ],
866
+ "name": "earnedReward",
867
+ "outputs": [
868
+ {
869
+ "internalType": "uint256",
870
+ "name": "",
871
+ "type": "uint256"
872
+ }
873
+ ],
874
+ "stateMutability": "view",
875
+ "type": "function"
876
+ },
877
+ {
878
+ "inputs": [
879
+ {
880
+ "internalType": "address",
881
+ "name": "token",
882
+ "type": "address"
883
+ },
884
+ {
885
+ "internalType": "uint256",
886
+ "name": "amount",
887
+ "type": "uint256"
888
+ }
889
+ ],
890
+ "name": "emergencyWithdraw",
891
+ "outputs": [],
892
+ "stateMutability": "nonpayable",
893
+ "type": "function"
894
+ },
895
+ {
896
+ "inputs": [
897
+ {
898
+ "internalType": "address",
899
+ "name": "",
900
+ "type": "address"
901
+ }
902
+ ],
903
+ "name": "extraRewardTokenData",
904
+ "outputs": [
905
+ {
906
+ "internalType": "bool",
907
+ "name": "isActive",
908
+ "type": "bool"
909
+ },
910
+ {
911
+ "internalType": "uint8",
912
+ "name": "decimals",
913
+ "type": "uint8"
914
+ },
915
+ {
916
+ "internalType": "uint256",
917
+ "name": "rate",
918
+ "type": "uint256"
919
+ },
920
+ {
921
+ "internalType": "address",
922
+ "name": "distributor",
923
+ "type": "address"
924
+ },
925
+ {
926
+ "internalType": "uint256",
927
+ "name": "periodFinish",
928
+ "type": "uint256"
929
+ },
930
+ {
931
+ "internalType": "uint256",
932
+ "name": "lastUpdate",
933
+ "type": "uint256"
934
+ },
935
+ {
936
+ "internalType": "uint256",
937
+ "name": "integral",
938
+ "type": "uint256"
939
+ },
940
+ {
941
+ "internalType": "uint256",
942
+ "name": "distributed",
943
+ "type": "uint256"
944
+ }
945
+ ],
946
+ "stateMutability": "view",
947
+ "type": "function"
948
+ },
949
+ {
950
+ "inputs": [],
951
+ "name": "gaugeController",
952
+ "outputs": [
953
+ {
954
+ "internalType": "contract IGaugeController",
955
+ "name": "",
956
+ "type": "address"
957
+ }
958
+ ],
959
+ "stateMutability": "view",
960
+ "type": "function"
961
+ },
962
+ {
963
+ "inputs": [],
964
+ "name": "gaugeData",
965
+ "outputs": [
966
+ {
967
+ "internalType": "uint256",
968
+ "name": "gaugeInitialStartTime",
969
+ "type": "uint256"
970
+ },
971
+ {
972
+ "internalType": "uint256",
973
+ "name": "periodDuration",
974
+ "type": "uint256"
975
+ },
976
+ {
977
+ "internalType": "uint256",
978
+ "name": "periodIndex",
979
+ "type": "uint256"
980
+ },
981
+ {
982
+ "internalType": "address",
983
+ "name": "stakingToken",
984
+ "type": "address"
985
+ },
986
+ {
987
+ "internalType": "uint256",
988
+ "name": "totalSupply",
989
+ "type": "uint256"
990
+ },
991
+ {
992
+ "internalType": "uint256",
993
+ "name": "workingSupply",
994
+ "type": "uint256"
995
+ },
996
+ {
997
+ "internalType": "uint256",
998
+ "name": "lastUpdateTime",
999
+ "type": "uint256"
1000
+ }
1001
+ ],
1002
+ "stateMutability": "view",
1003
+ "type": "function"
1004
+ },
1005
+ {
1006
+ "inputs": [],
1007
+ "name": "getControllerAddress",
1008
+ "outputs": [
1009
+ {
1010
+ "internalType": "address",
1011
+ "name": "controllerAddress",
1012
+ "type": "address"
1013
+ }
1014
+ ],
1015
+ "stateMutability": "view",
1016
+ "type": "function"
1017
+ },
1018
+ {
1019
+ "inputs": [
1020
+ {
1021
+ "internalType": "address",
1022
+ "name": "token",
1023
+ "type": "address"
1024
+ }
1025
+ ],
1026
+ "name": "getDecimalAdjustment",
1027
+ "outputs": [
1028
+ {
1029
+ "internalType": "uint256",
1030
+ "name": "",
1031
+ "type": "uint256"
1032
+ }
1033
+ ],
1034
+ "stateMutability": "view",
1035
+ "type": "function"
1036
+ },
1037
+ {
1038
+ "inputs": [],
1039
+ "name": "getDistributors",
1040
+ "outputs": [
1041
+ {
1042
+ "internalType": "address[]",
1043
+ "name": "",
1044
+ "type": "address[]"
1045
+ }
1046
+ ],
1047
+ "stateMutability": "view",
1048
+ "type": "function"
1049
+ },
1050
+ {
1051
+ "inputs": [
1052
+ {
1053
+ "internalType": "address",
1054
+ "name": "token",
1055
+ "type": "address"
1056
+ }
1057
+ ],
1058
+ "name": "getGaugeRewardTokenData",
1059
+ "outputs": [
1060
+ {
1061
+ "components": [
1062
+ {
1063
+ "internalType": "bool",
1064
+ "name": "isActive",
1065
+ "type": "bool"
1066
+ },
1067
+ {
1068
+ "internalType": "uint8",
1069
+ "name": "decimals",
1070
+ "type": "uint8"
1071
+ },
1072
+ {
1073
+ "internalType": "uint256",
1074
+ "name": "rate",
1075
+ "type": "uint256"
1076
+ },
1077
+ {
1078
+ "internalType": "uint256",
1079
+ "name": "integral",
1080
+ "type": "uint256"
1081
+ },
1082
+ {
1083
+ "internalType": "uint256",
1084
+ "name": "lastUpdateTime",
1085
+ "type": "uint256"
1086
+ },
1087
+ {
1088
+ "internalType": "uint256",
1089
+ "name": "distributed",
1090
+ "type": "uint256"
1091
+ },
1092
+ {
1093
+ "internalType": "uint256",
1094
+ "name": "leftoverRewards",
1095
+ "type": "uint256"
1096
+ }
1097
+ ],
1098
+ "internalType": "struct IBaseGauge.RewardTokenData",
1099
+ "name": "rewardTokenDatum",
1100
+ "type": "tuple"
1101
+ }
1102
+ ],
1103
+ "stateMutability": "view",
1104
+ "type": "function"
1105
+ },
1106
+ {
1107
+ "inputs": [],
1108
+ "name": "getPeriodBoundaries",
1109
+ "outputs": [
1110
+ {
1111
+ "internalType": "uint256",
1112
+ "name": "periodStartTime",
1113
+ "type": "uint256"
1114
+ },
1115
+ {
1116
+ "internalType": "uint256",
1117
+ "name": "periodEndTime",
1118
+ "type": "uint256"
1119
+ }
1120
+ ],
1121
+ "stateMutability": "view",
1122
+ "type": "function"
1123
+ },
1124
+ {
1125
+ "inputs": [],
1126
+ "name": "getRewardTokens",
1127
+ "outputs": [
1128
+ {
1129
+ "internalType": "address[]",
1130
+ "name": "",
1131
+ "type": "address[]"
1132
+ }
1133
+ ],
1134
+ "stateMutability": "view",
1135
+ "type": "function"
1136
+ },
1137
+ {
1138
+ "inputs": [
1139
+ {
1140
+ "internalType": "bytes32",
1141
+ "name": "role",
1142
+ "type": "bytes32"
1143
+ }
1144
+ ],
1145
+ "name": "getRoleAdmin",
1146
+ "outputs": [
1147
+ {
1148
+ "internalType": "bytes32",
1149
+ "name": "",
1150
+ "type": "bytes32"
1151
+ }
1152
+ ],
1153
+ "stateMutability": "view",
1154
+ "type": "function"
1155
+ },
1156
+ {
1157
+ "inputs": [
1158
+ {
1159
+ "internalType": "address",
1160
+ "name": "token",
1161
+ "type": "address"
1162
+ },
1163
+ {
1164
+ "internalType": "address",
1165
+ "name": "user",
1166
+ "type": "address"
1167
+ }
1168
+ ],
1169
+ "name": "getUserRewardTokenData",
1170
+ "outputs": [
1171
+ {
1172
+ "components": [
1173
+ {
1174
+ "internalType": "uint256",
1175
+ "name": "integral",
1176
+ "type": "uint256"
1177
+ },
1178
+ {
1179
+ "internalType": "uint256",
1180
+ "name": "lastGaugeIntegral",
1181
+ "type": "uint256"
1182
+ },
1183
+ {
1184
+ "internalType": "uint256",
1185
+ "name": "claimable",
1186
+ "type": "uint256"
1187
+ },
1188
+ {
1189
+ "internalType": "uint256",
1190
+ "name": "claimed",
1191
+ "type": "uint256"
1192
+ },
1193
+ {
1194
+ "internalType": "uint256",
1195
+ "name": "lastUpdate",
1196
+ "type": "uint256"
1197
+ }
1198
+ ],
1199
+ "internalType": "struct IBaseGauge.UserGaugeTokenRewardData",
1200
+ "name": "userGaugeTokenRewardDatum",
1201
+ "type": "tuple"
1202
+ }
1203
+ ],
1204
+ "stateMutability": "view",
1205
+ "type": "function"
1206
+ },
1207
+ {
1208
+ "inputs": [
1209
+ {
1210
+ "internalType": "address",
1211
+ "name": "account",
1212
+ "type": "address"
1213
+ }
1214
+ ],
1215
+ "name": "getUserWeight",
1216
+ "outputs": [
1217
+ {
1218
+ "internalType": "uint256",
1219
+ "name": "",
1220
+ "type": "uint256"
1221
+ }
1222
+ ],
1223
+ "stateMutability": "view",
1224
+ "type": "function"
1225
+ },
1226
+ {
1227
+ "inputs": [
1228
+ {
1229
+ "internalType": "bytes32",
1230
+ "name": "role",
1231
+ "type": "bytes32"
1232
+ },
1233
+ {
1234
+ "internalType": "address",
1235
+ "name": "account",
1236
+ "type": "address"
1237
+ }
1238
+ ],
1239
+ "name": "grantRole",
1240
+ "outputs": [],
1241
+ "stateMutability": "nonpayable",
1242
+ "type": "function"
1243
+ },
1244
+ {
1245
+ "inputs": [
1246
+ {
1247
+ "internalType": "bytes32",
1248
+ "name": "role",
1249
+ "type": "bytes32"
1250
+ },
1251
+ {
1252
+ "internalType": "address",
1253
+ "name": "account",
1254
+ "type": "address"
1255
+ }
1256
+ ],
1257
+ "name": "hasRole",
1258
+ "outputs": [
1259
+ {
1260
+ "internalType": "bool",
1261
+ "name": "",
1262
+ "type": "bool"
1263
+ }
1264
+ ],
1265
+ "stateMutability": "view",
1266
+ "type": "function"
1267
+ },
1268
+ {
1269
+ "inputs": [
1270
+ {
1271
+ "internalType": "address",
1272
+ "name": "token",
1273
+ "type": "address"
1274
+ },
1275
+ {
1276
+ "internalType": "address",
1277
+ "name": "distributor",
1278
+ "type": "address"
1279
+ }
1280
+ ],
1281
+ "name": "initializeRewardToken",
1282
+ "outputs": [],
1283
+ "stateMutability": "nonpayable",
1284
+ "type": "function"
1285
+ },
1286
+ {
1287
+ "inputs": [
1288
+ {
1289
+ "internalType": "address",
1290
+ "name": "distributor",
1291
+ "type": "address"
1292
+ },
1293
+ {
1294
+ "internalType": "bool",
1295
+ "name": "shouldAddDistributor",
1296
+ "type": "bool"
1297
+ }
1298
+ ],
1299
+ "name": "manageDistributor",
1300
+ "outputs": [],
1301
+ "stateMutability": "nonpayable",
1302
+ "type": "function"
1303
+ },
1304
+ {
1305
+ "inputs": [],
1306
+ "name": "paused",
1307
+ "outputs": [
1308
+ {
1309
+ "internalType": "bool",
1310
+ "name": "",
1311
+ "type": "bool"
1312
+ }
1313
+ ],
1314
+ "stateMutability": "view",
1315
+ "type": "function"
1316
+ },
1317
+ {
1318
+ "inputs": [
1319
+ {
1320
+ "internalType": "address",
1321
+ "name": "token",
1322
+ "type": "address"
1323
+ },
1324
+ {
1325
+ "internalType": "address",
1326
+ "name": "user",
1327
+ "type": "address"
1328
+ }
1329
+ ],
1330
+ "name": "pendingExtraRewards",
1331
+ "outputs": [
1332
+ {
1333
+ "internalType": "uint256",
1334
+ "name": "",
1335
+ "type": "uint256"
1336
+ }
1337
+ ],
1338
+ "stateMutability": "view",
1339
+ "type": "function"
1340
+ },
1341
+ {
1342
+ "inputs": [
1343
+ {
1344
+ "internalType": "address",
1345
+ "name": "token",
1346
+ "type": "address"
1347
+ },
1348
+ {
1349
+ "internalType": "address",
1350
+ "name": "account",
1351
+ "type": "address"
1352
+ }
1353
+ ],
1354
+ "name": "pendingRewards",
1355
+ "outputs": [
1356
+ {
1357
+ "internalType": "uint256",
1358
+ "name": "",
1359
+ "type": "uint256"
1360
+ }
1361
+ ],
1362
+ "stateMutability": "view",
1363
+ "type": "function"
1364
+ },
1365
+ {
1366
+ "inputs": [],
1367
+ "name": "periodDuration",
1368
+ "outputs": [
1369
+ {
1370
+ "internalType": "uint256",
1371
+ "name": "",
1372
+ "type": "uint256"
1373
+ }
1374
+ ],
1375
+ "stateMutability": "view",
1376
+ "type": "function"
1377
+ },
1378
+ {
1379
+ "inputs": [],
1380
+ "name": "raacLiquidLocker",
1381
+ "outputs": [
1382
+ {
1383
+ "internalType": "contract IRaacLiquidLocker",
1384
+ "name": "",
1385
+ "type": "address"
1386
+ }
1387
+ ],
1388
+ "stateMutability": "view",
1389
+ "type": "function"
1390
+ },
1391
+ {
1392
+ "inputs": [],
1393
+ "name": "raacToken",
1394
+ "outputs": [
1395
+ {
1396
+ "internalType": "address",
1397
+ "name": "",
1398
+ "type": "address"
1399
+ }
1400
+ ],
1401
+ "stateMutability": "view",
1402
+ "type": "function"
1403
+ },
1404
+ {
1405
+ "inputs": [
1406
+ {
1407
+ "internalType": "address",
1408
+ "name": "account",
1409
+ "type": "address"
1410
+ }
1411
+ ],
1412
+ "name": "rawBalanceOf",
1413
+ "outputs": [
1414
+ {
1415
+ "internalType": "uint256",
1416
+ "name": "",
1417
+ "type": "uint256"
1418
+ }
1419
+ ],
1420
+ "stateMutability": "view",
1421
+ "type": "function"
1422
+ },
1423
+ {
1424
+ "inputs": [],
1425
+ "name": "rawTotalSupply",
1426
+ "outputs": [
1427
+ {
1428
+ "internalType": "uint256",
1429
+ "name": "",
1430
+ "type": "uint256"
1431
+ }
1432
+ ],
1433
+ "stateMutability": "view",
1434
+ "type": "function"
1435
+ },
1436
+ {
1437
+ "inputs": [
1438
+ {
1439
+ "internalType": "bytes32",
1440
+ "name": "role",
1441
+ "type": "bytes32"
1442
+ },
1443
+ {
1444
+ "internalType": "address",
1445
+ "name": "callerConfirmation",
1446
+ "type": "address"
1447
+ }
1448
+ ],
1449
+ "name": "renounceRole",
1450
+ "outputs": [],
1451
+ "stateMutability": "nonpayable",
1452
+ "type": "function"
1453
+ },
1454
+ {
1455
+ "inputs": [
1456
+ {
1457
+ "internalType": "bytes32",
1458
+ "name": "role",
1459
+ "type": "bytes32"
1460
+ },
1461
+ {
1462
+ "internalType": "address",
1463
+ "name": "account",
1464
+ "type": "address"
1465
+ }
1466
+ ],
1467
+ "name": "revokeRole",
1468
+ "outputs": [],
1469
+ "stateMutability": "nonpayable",
1470
+ "type": "function"
1471
+ },
1472
+ {
1473
+ "inputs": [
1474
+ {
1475
+ "internalType": "bool",
1476
+ "name": "newDepositRAACOnClaim",
1477
+ "type": "bool"
1478
+ }
1479
+ ],
1480
+ "name": "setDepositRAACOnClaim",
1481
+ "outputs": [],
1482
+ "stateMutability": "nonpayable",
1483
+ "type": "function"
1484
+ },
1485
+ {
1486
+ "inputs": [
1487
+ {
1488
+ "internalType": "address",
1489
+ "name": "distributor",
1490
+ "type": "address"
1491
+ },
1492
+ {
1493
+ "internalType": "bool",
1494
+ "name": "isApproved",
1495
+ "type": "bool"
1496
+ }
1497
+ ],
1498
+ "name": "setDistributorApproval",
1499
+ "outputs": [],
1500
+ "stateMutability": "nonpayable",
1501
+ "type": "function"
1502
+ },
1503
+ {
1504
+ "inputs": [
1505
+ {
1506
+ "internalType": "bool",
1507
+ "name": "newPaused",
1508
+ "type": "bool"
1509
+ }
1510
+ ],
1511
+ "name": "setEmergencyPaused",
1512
+ "outputs": [],
1513
+ "stateMutability": "nonpayable",
1514
+ "type": "function"
1515
+ },
1516
+ {
1517
+ "inputs": [
1518
+ {
1519
+ "internalType": "uint256",
1520
+ "name": "amount",
1521
+ "type": "uint256"
1522
+ }
1523
+ ],
1524
+ "name": "stake",
1525
+ "outputs": [],
1526
+ "stateMutability": "nonpayable",
1527
+ "type": "function"
1528
+ },
1529
+ {
1530
+ "inputs": [
1531
+ {
1532
+ "internalType": "bytes4",
1533
+ "name": "interfaceId",
1534
+ "type": "bytes4"
1535
+ }
1536
+ ],
1537
+ "name": "supportsInterface",
1538
+ "outputs": [
1539
+ {
1540
+ "internalType": "bool",
1541
+ "name": "",
1542
+ "type": "bool"
1543
+ }
1544
+ ],
1545
+ "stateMutability": "view",
1546
+ "type": "function"
1547
+ },
1548
+ {
1549
+ "inputs": [],
1550
+ "name": "syncRewardTokens",
1551
+ "outputs": [],
1552
+ "stateMutability": "nonpayable",
1553
+ "type": "function"
1554
+ },
1555
+ {
1556
+ "inputs": [],
1557
+ "name": "totalSupply",
1558
+ "outputs": [
1559
+ {
1560
+ "internalType": "uint256",
1561
+ "name": "",
1562
+ "type": "uint256"
1563
+ }
1564
+ ],
1565
+ "stateMutability": "view",
1566
+ "type": "function"
1567
+ },
1568
+ {
1569
+ "inputs": [],
1570
+ "name": "updateUserRewards",
1571
+ "outputs": [],
1572
+ "stateMutability": "nonpayable",
1573
+ "type": "function"
1574
+ },
1575
+ {
1576
+ "inputs": [
1577
+ {
1578
+ "internalType": "address",
1579
+ "name": "",
1580
+ "type": "address"
1581
+ }
1582
+ ],
1583
+ "name": "userGaugeData",
1584
+ "outputs": [
1585
+ {
1586
+ "internalType": "uint256",
1587
+ "name": "balance",
1588
+ "type": "uint256"
1589
+ },
1590
+ {
1591
+ "internalType": "uint256",
1592
+ "name": "workingBalance",
1593
+ "type": "uint256"
1594
+ },
1595
+ {
1596
+ "internalType": "uint256",
1597
+ "name": "lastUpdate",
1598
+ "type": "uint256"
1599
+ }
1600
+ ],
1601
+ "stateMutability": "view",
1602
+ "type": "function"
1603
+ },
1604
+ {
1605
+ "inputs": [
1606
+ {
1607
+ "internalType": "uint256",
1608
+ "name": "amount",
1609
+ "type": "uint256"
1610
+ }
1611
+ ],
1612
+ "name": "withdraw",
1613
+ "outputs": [],
1614
+ "stateMutability": "nonpayable",
1615
+ "type": "function"
1616
+ }
1617
+ ],
1618
+ "bytecode": "0x",
1619
+ "deployedBytecode": "0x",
1620
+ "linkReferences": {},
1621
+ "deployedLinkReferences": {}
1622
+ }