@raac/rpc 1.2.0-beta.4 → 1.2.0-beta.5

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 (495) hide show
  1. package/dist/RPCLibrary.js +212 -0
  2. package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +2 -2
  3. package/dist/artifacts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.json +15 -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 +0 -25
  8. package/dist/artifacts/core/governance/gauges/GaugeController.sol/GaugeController.json +2 -22
  9. package/dist/artifacts/core/governance/gauges/GaugeRewardsDistributor.sol/GaugeRewardsDistributor.json +2 -2
  10. package/dist/artifacts/core/governance/gauges/RAACGauge.sol/RAACGauge.json +2 -27
  11. package/dist/artifacts/core/governance/gauges/RWAGauge.sol/RWAGauge.json +2 -27
  12. package/dist/artifacts/core/governance/proposals/Governance.sol/Governance.json +2 -2
  13. package/dist/artifacts/core/governance/proposals/TimelockController.sol/TimelockController.json +2 -2
  14. package/dist/artifacts/core/lockers/RAACBotLocker.sol/RAACBotLocker.json +915 -0
  15. package/dist/artifacts/core/lockers/RAACLiquidLocker.sol/RAACLiquidLocker.json +2158 -0
  16. package/dist/artifacts/core/lockers/RAACMaturityVault.sol/RAACMaturityVault.json +911 -0
  17. package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +59 -741
  18. package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +106 -2
  19. package/dist/artifacts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.json +2 -2
  20. package/dist/artifacts/core/oracles/RAACHousePriceOracle.sol/RAACHousePriceOracle.json +2 -2
  21. package/dist/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json +2 -2
  22. package/dist/artifacts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json +15 -2
  23. package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +15 -2
  24. package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +20 -49
  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 +21 -2
  29. package/dist/artifacts/core/tokens/LeRAAC.sol/LiquidEscrowedRAAC.json +621 -0
  30. package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +101 -74
  31. package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +24 -322
  32. package/dist/artifacts/core/tokens/RToken.sol/RToken.json +2 -2
  33. package/dist/artifacts/core/tokens/RWAIndexToken.sol/RWAIndexToken.json +66 -2
  34. package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +45 -32
  35. package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +15 -2
  36. package/dist/artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json +15 -2
  37. package/dist/artifacts/core/vaults/RWAVault.sol/RWAVault.json +46 -2
  38. package/dist/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +2 -2
  39. package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +2 -2
  40. package/dist/artifacts/zap/AladdinZap.sol/AladdinZap.json +398 -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/8453.json +34 -2
  46. package/dist/contracts/getContractAddress.js +2 -0
  47. package/dist/contracts/lockers/botLocker/_helpers.js +19 -0
  48. package/dist/contracts/lockers/botLocker/claim.js +16 -0
  49. package/dist/contracts/lockers/botLocker/getClaimable.js +12 -0
  50. package/dist/contracts/lockers/botLocker/getClaimables.js +16 -0
  51. package/dist/contracts/lockers/botLocker/getClaimedRewards.js +13 -0
  52. package/dist/contracts/lockers/botLocker/getLockedTokenIds.js +10 -0
  53. package/dist/contracts/lockers/botLocker/getLocks.js +27 -0
  54. package/dist/contracts/lockers/botLocker/getRewardTokenCount.js +10 -0
  55. package/dist/contracts/lockers/botLocker/getRewardTokens.js +9 -0
  56. package/dist/contracts/lockers/botLocker/lock.js +17 -0
  57. package/dist/contracts/lockers/botLocker/unlock.js +17 -0
  58. package/dist/contracts/lockers/botLocker/unlockAndClaim.js +16 -0
  59. package/dist/contracts/lockers/liquidLocker/_helpers.js +19 -0
  60. package/dist/contracts/lockers/liquidLocker/borrow.js +17 -0
  61. package/dist/contracts/lockers/liquidLocker/deposit.js +17 -0
  62. package/dist/contracts/lockers/liquidLocker/donate.js +16 -0
  63. package/dist/contracts/lockers/liquidLocker/getConfig.js +52 -0
  64. package/dist/contracts/lockers/liquidLocker/getGlobalInfo.js +39 -0
  65. package/dist/contracts/lockers/liquidLocker/getUserInfo.js +28 -0
  66. package/dist/contracts/lockers/liquidLocker/getUserLocks.js +26 -0
  67. package/dist/contracts/lockers/liquidLocker/harvest.js +17 -0
  68. package/dist/contracts/lockers/liquidLocker/isKeeper.js +9 -0
  69. package/dist/contracts/lockers/liquidLocker/processVaultExpiredLocks.js +17 -0
  70. package/dist/contracts/lockers/liquidLocker/repay.js +17 -0
  71. package/dist/contracts/lockers/liquidLocker/requestUnlock.js +17 -0
  72. package/dist/contracts/lockers/liquidLocker/voteGauge.js +17 -0
  73. package/dist/contracts/lockers/liquidLocker/voteGovernance.js +16 -0
  74. package/dist/contracts/lockers/liquidLocker/withdrawUnlocked.js +16 -0
  75. package/dist/contracts/lockers/maturityVault/_helpers.js +19 -0
  76. package/dist/contracts/lockers/maturityVault/claim.js +16 -0
  77. package/dist/contracts/lockers/maturityVault/deposit.js +17 -0
  78. package/dist/contracts/lockers/maturityVault/depositFor.js +16 -0
  79. package/dist/contracts/lockers/maturityVault/distribute.js +17 -0
  80. package/dist/contracts/lockers/maturityVault/exit.js +16 -0
  81. package/dist/contracts/lockers/maturityVault/getConfig.js +26 -0
  82. package/dist/contracts/lockers/maturityVault/getGlobalInfo.js +45 -0
  83. package/dist/contracts/lockers/maturityVault/getUserInfo.js +18 -0
  84. package/dist/contracts/lockers/maturityVault/harvest.js +16 -0
  85. package/dist/contracts/lockers/maturityVault/isWhitelisted.js +9 -0
  86. package/dist/contracts/lockers/maturityVault/updatePendingDistribution.js +16 -0
  87. package/dist/contracts/lockers/maturityVault/withdraw.js +16 -0
  88. package/dist/contracts/lockers/maturityVault/withdrawAll.js +16 -0
  89. package/dist/contracts/tokens/leRAAC/_helpers.js +19 -0
  90. package/dist/contracts/tokens/leRAAC/approve.js +13 -0
  91. package/dist/contracts/tokens/leRAAC/burn.js +16 -0
  92. package/dist/contracts/tokens/leRAAC/burnFrom.js +16 -0
  93. package/dist/contracts/tokens/leRAAC/getAllowance.js +11 -0
  94. package/dist/contracts/tokens/leRAAC/getBalance.js +11 -0
  95. package/dist/contracts/tokens/leRAAC/getMinterInfo.js +15 -0
  96. package/dist/contracts/tokens/leRAAC/getTotalSupply.js +11 -0
  97. package/dist/contracts/tokens/leRAAC/transfer.js +13 -0
  98. package/dist/contracts/tokens/leRAAC/transferFrom.js +13 -0
  99. package/dist/contracts/zap/aladdin/_helpers.js +19 -0
  100. package/dist/contracts/zap/aladdin/_types.js +38 -0
  101. package/dist/contracts/zap/aladdin/decodeRoute.js +36 -0
  102. package/dist/contracts/zap/aladdin/encodeRoute.js +34 -0
  103. package/dist/contracts/zap/aladdin/getCurvePoolToken.js +13 -0
  104. package/dist/contracts/zap/aladdin/getOwner.js +9 -0
  105. package/dist/contracts/zap/aladdin/getPool2Token.js +12 -0
  106. package/dist/contracts/zap/aladdin/getRoutes.js +16 -0
  107. package/dist/contracts/zap/aladdin/getVersion.js +9 -0
  108. package/dist/contracts/zap/aladdin/rescue.js +16 -0
  109. package/dist/contracts/zap/aladdin/updatePoolTokens.js +19 -0
  110. package/dist/contracts/zap/aladdin/updateRoute.js +31 -0
  111. package/dist/contracts/zap/aladdin/validateRoute.js +80 -0
  112. package/dist/contracts/zap/aladdin/zap.js +18 -0
  113. package/dist/contracts/zap/aladdin/zapFrom.js +18 -0
  114. package/dist/contracts/zap/aladdin/zapWithRoutes.js +28 -0
  115. package/dist/contracts/zap/codec.js +423 -0
  116. package/dist/minter/_helpers.js +19 -0
  117. package/dist/minter/activate.js +18 -0
  118. package/dist/minter/addDistributionPool.js +17 -0
  119. package/dist/minter/calculateScheduledMintableAmount.js +14 -0
  120. package/dist/minter/get.js +44 -112
  121. package/dist/minter/getApy.js +55 -19
  122. package/dist/minter/getDistributionPools.js +39 -0
  123. package/dist/minter/getEmissionPerSecond.js +25 -0
  124. package/dist/minter/getPoolInfo.js +23 -0
  125. package/dist/minter/isPaused.js +9 -0
  126. package/dist/minter/manageDistributionPool.js +18 -0
  127. package/dist/minter/pause.js +24 -0
  128. package/dist/minter/removeDistributionPool.js +20 -0
  129. package/dist/minter/tick.js +12 -24
  130. package/dist/tests/liquidLocker.test.js +262 -0
  131. package/dist/tests/test.js +1 -1
  132. package/dist/types/RPCLibrary.d.ts +171 -0
  133. package/dist/types/contracts/lockers/botLocker/_helpers.d.ts +4 -0
  134. package/dist/types/contracts/lockers/botLocker/claim.d.ts +6 -0
  135. package/dist/types/contracts/lockers/botLocker/getClaimable.d.ts +6 -0
  136. package/dist/types/contracts/lockers/botLocker/getClaimables.d.ts +10 -0
  137. package/dist/types/contracts/lockers/botLocker/getClaimedRewards.d.ts +7 -0
  138. package/dist/types/contracts/lockers/botLocker/getLockedTokenIds.d.ts +3 -0
  139. package/dist/types/contracts/lockers/botLocker/getLocks.d.ts +15 -0
  140. package/dist/types/contracts/lockers/botLocker/getRewardTokenCount.d.ts +3 -0
  141. package/dist/types/contracts/lockers/botLocker/getRewardTokens.d.ts +3 -0
  142. package/dist/types/contracts/lockers/botLocker/lock.d.ts +7 -0
  143. package/dist/types/contracts/lockers/botLocker/unlock.d.ts +7 -0
  144. package/dist/types/contracts/lockers/botLocker/unlockAndClaim.d.ts +6 -0
  145. package/dist/types/contracts/lockers/liquidLocker/_helpers.d.ts +4 -0
  146. package/dist/types/contracts/lockers/liquidLocker/borrow.d.ts +7 -0
  147. package/dist/types/contracts/lockers/liquidLocker/deposit.d.ts +7 -0
  148. package/dist/types/contracts/lockers/liquidLocker/donate.d.ts +6 -0
  149. package/dist/types/contracts/lockers/liquidLocker/getConfig.d.ts +27 -0
  150. package/dist/types/contracts/lockers/liquidLocker/getGlobalInfo.d.ts +24 -0
  151. package/dist/types/contracts/lockers/liquidLocker/getUserInfo.d.ts +21 -0
  152. package/dist/types/contracts/lockers/liquidLocker/getUserLocks.d.ts +17 -0
  153. package/dist/types/contracts/lockers/liquidLocker/harvest.d.ts +7 -0
  154. package/dist/types/contracts/lockers/liquidLocker/isKeeper.d.ts +3 -0
  155. package/dist/types/contracts/lockers/liquidLocker/processVaultExpiredLocks.d.ts +7 -0
  156. package/dist/types/contracts/lockers/liquidLocker/repay.d.ts +7 -0
  157. package/dist/types/contracts/lockers/liquidLocker/requestUnlock.d.ts +7 -0
  158. package/dist/types/contracts/lockers/liquidLocker/voteGauge.d.ts +7 -0
  159. package/dist/types/contracts/lockers/liquidLocker/voteGovernance.d.ts +6 -0
  160. package/dist/types/contracts/lockers/liquidLocker/withdrawUnlocked.d.ts +6 -0
  161. package/dist/types/contracts/lockers/maturityVault/_helpers.d.ts +4 -0
  162. package/dist/types/contracts/lockers/maturityVault/claim.d.ts +6 -0
  163. package/dist/types/contracts/lockers/maturityVault/deposit.d.ts +7 -0
  164. package/dist/types/contracts/lockers/maturityVault/depositFor.d.ts +6 -0
  165. package/dist/types/contracts/lockers/maturityVault/distribute.d.ts +7 -0
  166. package/dist/types/contracts/lockers/maturityVault/exit.d.ts +6 -0
  167. package/dist/types/contracts/lockers/maturityVault/getConfig.d.ts +12 -0
  168. package/dist/types/contracts/lockers/maturityVault/getGlobalInfo.d.ts +32 -0
  169. package/dist/types/contracts/lockers/maturityVault/getUserInfo.d.ts +14 -0
  170. package/dist/types/contracts/lockers/maturityVault/harvest.d.ts +6 -0
  171. package/dist/types/contracts/lockers/maturityVault/isWhitelisted.d.ts +3 -0
  172. package/dist/types/contracts/lockers/maturityVault/updatePendingDistribution.d.ts +6 -0
  173. package/dist/types/contracts/lockers/maturityVault/withdraw.d.ts +6 -0
  174. package/dist/types/contracts/lockers/maturityVault/withdrawAll.d.ts +6 -0
  175. package/dist/types/contracts/tokens/leRAAC/_helpers.d.ts +4 -0
  176. package/dist/types/contracts/tokens/leRAAC/approve.d.ts +3 -0
  177. package/dist/types/contracts/tokens/leRAAC/burn.d.ts +6 -0
  178. package/dist/types/contracts/tokens/leRAAC/burnFrom.d.ts +6 -0
  179. package/dist/types/contracts/tokens/leRAAC/getAllowance.d.ts +3 -0
  180. package/dist/types/contracts/tokens/leRAAC/getBalance.d.ts +3 -0
  181. package/dist/types/contracts/tokens/leRAAC/getMinterInfo.d.ts +8 -0
  182. package/dist/types/contracts/tokens/leRAAC/getTotalSupply.d.ts +3 -0
  183. package/dist/types/contracts/tokens/leRAAC/transfer.d.ts +3 -0
  184. package/dist/types/contracts/tokens/leRAAC/transferFrom.d.ts +3 -0
  185. package/dist/types/contracts/zap/aladdin/_helpers.d.ts +4 -0
  186. package/dist/types/contracts/zap/aladdin/_types.d.ts +44 -0
  187. package/dist/types/contracts/zap/aladdin/decodeRoute.d.ts +14 -0
  188. package/dist/types/contracts/zap/aladdin/encodeRoute.d.ts +18 -0
  189. package/dist/types/contracts/zap/aladdin/getCurvePoolToken.d.ts +8 -0
  190. package/dist/types/contracts/zap/aladdin/getOwner.d.ts +3 -0
  191. package/dist/types/contracts/zap/aladdin/getPool2Token.d.ts +6 -0
  192. package/dist/types/contracts/zap/aladdin/getRoutes.d.ts +13 -0
  193. package/dist/types/contracts/zap/aladdin/getVersion.d.ts +3 -0
  194. package/dist/types/contracts/zap/aladdin/rescue.d.ts +6 -0
  195. package/dist/types/contracts/zap/aladdin/updatePoolTokens.d.ts +6 -0
  196. package/dist/types/contracts/zap/aladdin/updateRoute.d.ts +13 -0
  197. package/dist/types/contracts/zap/aladdin/validateRoute.d.ts +26 -0
  198. package/dist/types/contracts/zap/aladdin/zap.d.ts +8 -0
  199. package/dist/types/contracts/zap/aladdin/zapFrom.d.ts +8 -0
  200. package/dist/types/contracts/zap/aladdin/zapWithRoutes.d.ts +11 -0
  201. package/dist/types/contracts/zap/codec.d.ts +36 -0
  202. package/dist/types/minter/_helpers.d.ts +4 -0
  203. package/dist/types/minter/activate.d.ts +8 -0
  204. package/dist/types/minter/addDistributionPool.d.ts +7 -0
  205. package/dist/types/minter/calculateScheduledMintableAmount.d.ts +8 -0
  206. package/dist/types/minter/get.d.ts +28 -16
  207. package/dist/types/minter/getApy.d.ts +19 -2
  208. package/dist/types/minter/getDistributionPools.d.ts +16 -0
  209. package/dist/types/minter/getEmissionPerSecond.d.ts +8 -0
  210. package/dist/types/minter/getPoolInfo.d.ts +13 -0
  211. package/dist/types/minter/isPaused.d.ts +3 -0
  212. package/dist/types/minter/manageDistributionPool.d.ts +8 -0
  213. package/dist/types/minter/pause.d.ts +6 -0
  214. package/dist/types/minter/removeDistributionPool.d.ts +10 -0
  215. package/dist/types/minter/tick.d.ts +7 -3
  216. package/dist/types/tests/liquidLocker.test.d.ts +18 -0
  217. package/dist/types/typechain-types/@openzeppelin/{contracts-v3/token/ERC20/IERC20.d.ts → contracts/token/ERC20/extensions/ERC20Capped.d.ts} +34 -18
  218. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +1 -0
  219. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts +2 -0
  220. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.d.ts +155 -0
  221. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/token/ERC20/index.d.ts +1 -0
  222. package/dist/types/typechain-types/@openzeppelin/index.d.ts +0 -2
  223. package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +15 -1
  224. package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +1 -25
  225. package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +1 -13
  226. package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +1 -25
  227. package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +1 -25
  228. package/dist/types/typechain-types/contracts/core/lockers/RAACLiquidLocker.d.ts +101 -171
  229. package/dist/types/typechain-types/contracts/core/lockers/RAACMaturityVault.d.ts +5 -38
  230. package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +58 -418
  231. package/dist/types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +108 -2
  232. package/dist/types/typechain-types/contracts/core/oracles/KYCVerifyModule.sol/IKYCVerifyModule.d.ts +25 -0
  233. package/dist/types/typechain-types/{@openzeppelin/contracts-v3/access/Ownable.d.ts → contracts/core/oracles/KYCVerifyModule.sol/KYCVerifyModule.d.ts} +10 -6
  234. package/dist/types/typechain-types/contracts/core/oracles/KYCVerifyModule.sol/index.d.ts +2 -0
  235. package/dist/types/typechain-types/contracts/core/oracles/PmUSDToUSDOracle.d.ts +338 -0
  236. package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +60 -4
  237. package/dist/types/typechain-types/contracts/core/oracles/ZkMeKYCVerifyModule.sol/ZKMEKYCVerifyModule.d.ts +110 -0
  238. package/dist/types/typechain-types/contracts/core/oracles/ZkMeKYCVerifyModule.sol/index.d.ts +1 -0
  239. package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +5 -0
  240. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +15 -1
  241. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.d.ts +15 -1
  242. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +9 -23
  243. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +8 -4
  244. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +8 -4
  245. package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +8 -4
  246. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +70 -1
  247. package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +16 -1
  248. package/dist/types/typechain-types/contracts/core/tokens/LeRAAC.sol/LiquidEscrowedRAAC.d.ts +3 -3
  249. package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +65 -50
  250. package/dist/types/typechain-types/contracts/core/tokens/RAACToken.d.ts +6 -191
  251. package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +62 -1
  252. package/dist/types/typechain-types/contracts/core/tokens/SToken.d.ts +804 -0
  253. package/dist/types/typechain-types/contracts/core/tokens/index.d.ts +1 -0
  254. package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.d.ts +15 -1
  255. package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.d.ts +15 -1
  256. package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapterV2.d.ts +15 -1
  257. package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +28 -2
  258. package/dist/types/typechain-types/contracts/index.d.ts +2 -0
  259. package/dist/types/typechain-types/contracts/interfaces/IZap.d.ts +15 -1
  260. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +1 -25
  261. package/dist/types/typechain-types/contracts/interfaces/core/lockers/IRaacLiquidLocker.d.ts +30 -37
  262. package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +68 -205
  263. package/dist/types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +100 -2
  264. package/dist/types/typechain-types/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable.d.ts +15 -1
  265. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +1 -19
  266. package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap.d.ts +70 -1
  267. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +16 -1
  268. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +36 -25
  269. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACToken.d.ts +2 -179
  270. package/dist/types/typechain-types/contracts/interfaces/core/tokens/ISToken.d.ts +454 -0
  271. package/dist/types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +1 -0
  272. package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +15 -1
  273. package/dist/types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +19 -3
  274. package/dist/types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +47 -1
  275. package/dist/types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +47 -1
  276. package/dist/types/typechain-types/contracts/mocks/core/index.d.ts +2 -0
  277. package/dist/types/typechain-types/contracts/mocks/core/minters/MockRAACMinterRewardsReceiver.d.ts +181 -0
  278. package/dist/types/typechain-types/contracts/mocks/core/minters/index.d.ts +1 -0
  279. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable.d.ts +15 -1
  280. package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +1 -19
  281. package/dist/types/typechain-types/contracts/mocks/core/tokens/MockFeeOnTransferToken.d.ts +163 -0
  282. package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +1 -0
  283. package/dist/types/typechain-types/contracts/mocks/libraries/index.d.ts +2 -0
  284. package/dist/types/typechain-types/contracts/mocks/libraries/minters/EmissionScheduleMock.d.ts +91 -0
  285. package/dist/types/typechain-types/contracts/mocks/libraries/minters/index.d.ts +1 -0
  286. package/dist/types/typechain-types/contracts/rwaf/ChainlinkOracleAdapter.sol/ChainlinkOracleAdapter.d.ts +212 -0
  287. package/dist/types/typechain-types/contracts/rwaf/ChainlinkOracleAdapter.sol/IRWACoordinator.d.ts +67 -0
  288. package/dist/types/typechain-types/contracts/rwaf/ChainlinkOracleAdapter.sol/index.d.ts +2 -0
  289. package/dist/types/typechain-types/contracts/rwaf/TokenBlender.sol/ITokenBlender.d.ts +331 -0
  290. package/dist/types/typechain-types/contracts/rwaf/TokenBlender.sol/TokenBlender.d.ts +671 -0
  291. package/dist/types/typechain-types/contracts/rwaf/TokenBlender.sol/index.d.ts +2 -0
  292. package/dist/types/typechain-types/contracts/rwaf/index.d.ts +4 -0
  293. package/dist/types/typechain-types/contracts/zap/AladdinZap.d.ts +15 -1
  294. package/dist/types/typechain-types/contracts/zap/index.d.ts +0 -2
  295. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +1 -1
  296. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +1 -1
  297. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +1 -1
  298. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +1 -1
  299. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +1 -1
  300. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped__factory.d.ts +271 -0
  301. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +1 -0
  302. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +1 -1
  303. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +1 -1
  304. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +1 -1
  305. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +1 -1
  306. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +1 -1
  307. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +1 -1
  308. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +1 -1
  309. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +1 -1
  310. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts +1 -0
  311. package/dist/types/typechain-types/factories/@openzeppelin/{contracts-v3/token/ERC20/IERC20__factory.d.ts → contracts-upgradeable/token/ERC20/ERC20Upgradeable__factory.d.ts} +122 -10
  312. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/token/ERC20/index.d.ts +1 -0
  313. package/dist/types/typechain-types/factories/@openzeppelin/index.d.ts +0 -1
  314. package/dist/types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +1 -1
  315. package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +1 -1
  316. package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +11 -1
  317. package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +1 -1
  318. package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +1 -1
  319. package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +1 -1
  320. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +0 -20
  321. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1 -17
  322. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +1 -1
  323. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +1 -21
  324. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +1 -21
  325. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/VeBoostProxy__factory.d.ts +1 -1
  326. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/VeBoost__factory.d.ts +1 -1
  327. package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +1 -1
  328. package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +1 -1
  329. package/dist/types/typechain-types/factories/contracts/core/lockers/RAACBotLocker__factory.d.ts +1 -1
  330. package/dist/types/typechain-types/factories/contracts/core/lockers/RAACLiquidLocker__factory.d.ts +129 -197
  331. package/dist/types/typechain-types/factories/contracts/core/lockers/RAACMaturityVault__factory.d.ts +11 -51
  332. package/dist/types/typechain-types/factories/contracts/core/lockers/RAACNFTLocker__factory.d.ts +1 -1
  333. package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +28 -557
  334. package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +1 -1
  335. package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +81 -1
  336. package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle__factory.d.ts +1 -1
  337. package/dist/types/typechain-types/factories/contracts/core/oracles/KYCVerifyModule.sol/IKYCVerifyModule__factory.d.ts +25 -0
  338. package/dist/types/typechain-types/factories/{@openzeppelin/contracts-v3/access/Ownable__factory.d.ts → contracts/core/oracles/KYCVerifyModule.sol/KYCVerifyModule__factory.d.ts} +38 -4
  339. package/dist/types/typechain-types/factories/contracts/core/oracles/KYCVerifyModule.sol/index.d.ts +2 -0
  340. package/dist/types/typechain-types/factories/contracts/core/oracles/PmUSDToUSDOracle__factory.d.ts +443 -0
  341. package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +1 -1
  342. package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +1 -1
  343. package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +97 -3
  344. package/dist/types/typechain-types/factories/contracts/core/oracles/ZkMeKYCVerifyModule.sol/ZKMEKYCVerifyModule__factory.d.ts +181 -0
  345. package/dist/types/typechain-types/factories/contracts/core/oracles/ZkMeKYCVerifyModule.sol/index.d.ts +1 -0
  346. package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +1 -1
  347. package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +3 -0
  348. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +11 -1
  349. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter__factory.d.ts +11 -1
  350. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +9 -5
  351. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +9 -31
  352. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +9 -5
  353. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +9 -5
  354. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +1 -1
  355. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +62 -3
  356. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +1 -1
  357. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +1 -1
  358. package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +1 -1
  359. package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +1 -1
  360. package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +16 -1
  361. package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +1 -1
  362. package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +1 -1
  363. package/dist/types/typechain-types/factories/contracts/core/tokens/LeRAAC.sol/LiquidEscrowedRAAC__factory.d.ts +7 -3
  364. package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +79 -58
  365. package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +21 -252
  366. package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +1 -1
  367. package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +51 -1
  368. package/dist/types/typechain-types/factories/contracts/core/tokens/SToken__factory.d.ts +1153 -0
  369. package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1 -1
  370. package/dist/types/typechain-types/factories/contracts/core/tokens/index.d.ts +1 -0
  371. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +11 -1
  372. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +11 -1
  373. package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterOracle.sol/RAACNFTVaultAdapterOracle__factory.d.ts +1 -1
  374. package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterV2__factory.d.ts +11 -1
  375. package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +35 -1
  376. package/dist/types/typechain-types/factories/contracts/index.d.ts +1 -0
  377. package/dist/types/typechain-types/factories/contracts/interfaces/IZap__factory.d.ts +18 -0
  378. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +0 -20
  379. package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/IRaacLiquidLocker__factory.d.ts +26 -29
  380. package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +44 -230
  381. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +70 -0
  382. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable__factory.d.ts +18 -0
  383. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +0 -26
  384. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +55 -0
  385. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +15 -0
  386. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +28 -15
  387. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACToken__factory.d.ts +0 -219
  388. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/ISToken__factory.d.ts +564 -0
  389. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +1 -0
  390. package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +10 -0
  391. package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +10 -0
  392. package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +66 -0
  393. package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +1 -1
  394. package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +1 -1
  395. package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +1 -1
  396. package/dist/types/typechain-types/factories/contracts/libraries/governance/RagequitLib__factory.d.ts +1 -1
  397. package/dist/types/typechain-types/factories/contracts/libraries/governance/RewardLib__factory.d.ts +1 -1
  398. package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -1
  399. package/dist/types/typechain-types/factories/contracts/libraries/pools/LendingPoolFeeLibrary__factory.d.ts +1 -1
  400. package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
  401. package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +1 -1
  402. package/dist/types/typechain-types/factories/contracts/mocks/ERC20BurnableMock__factory.d.ts +1 -1
  403. package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +1 -1
  404. package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +1 -1
  405. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +67 -1
  406. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +1 -1
  407. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +1 -1
  408. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/libraries/LockManagerMock__factory.d.ts +1 -1
  409. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +1 -1
  410. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +1 -1
  411. package/dist/types/typechain-types/factories/contracts/mocks/core/index.d.ts +1 -0
  412. package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +1 -1
  413. package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/MockLamaLocker__factory.d.ts +1 -1
  414. package/dist/types/typechain-types/factories/contracts/mocks/core/minters/MockRAACMinterRewardsReceiver__factory.d.ts +184 -0
  415. package/dist/types/typechain-types/factories/contracts/mocks/core/minters/index.d.ts +1 -0
  416. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +1 -1
  417. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA__factory.d.ts +1 -1
  418. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +1 -1
  419. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +1 -1
  420. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +1 -1
  421. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +1 -1
  422. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +1 -1
  423. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +19 -1
  424. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +1 -1
  425. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +1 -1
  426. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool__factory.d.ts +1 -1
  427. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +1 -1
  428. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +1 -27
  429. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +1 -1
  430. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +1 -1
  431. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +1 -1
  432. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +1 -1
  433. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +1 -1
  434. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +1 -1
  435. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +1 -1
  436. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +1 -1
  437. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +1 -1
  438. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +1 -1
  439. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +1 -1
  440. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +1 -1
  441. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
  442. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -1
  443. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -1
  444. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeOnTransferToken__factory.d.ts +306 -0
  445. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -1
  446. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +1 -1
  447. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +1 -1
  448. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +1 -0
  449. package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -1
  450. package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
  451. package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockTimeUtils__factory.d.ts +1 -1
  452. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +1 -1
  453. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +1 -1
  454. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RagequitHarness__factory.d.ts +1 -1
  455. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RewardIntegralCalculatorMock.sol/MockRewardIntegralCalculator__factory.d.ts +1 -1
  456. package/dist/types/typechain-types/factories/contracts/mocks/libraries/index.d.ts +1 -0
  457. package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +1 -1
  458. package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +1 -1
  459. package/dist/types/typechain-types/factories/contracts/mocks/libraries/minters/EmissionScheduleMock__factory.d.ts +115 -0
  460. package/dist/types/typechain-types/factories/contracts/mocks/libraries/minters/index.d.ts +1 -0
  461. package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +1 -1
  462. package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +1 -1
  463. package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +1 -1
  464. package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +1 -1
  465. package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +1 -1
  466. package/dist/types/typechain-types/factories/contracts/rwaf/ChainlinkOracleAdapter.sol/ChainlinkOracleAdapter__factory.d.ts +295 -0
  467. package/dist/types/typechain-types/factories/contracts/rwaf/ChainlinkOracleAdapter.sol/IRWACoordinator__factory.d.ts +43 -0
  468. package/dist/types/typechain-types/factories/contracts/rwaf/ChainlinkOracleAdapter.sol/index.d.ts +2 -0
  469. package/dist/types/typechain-types/factories/contracts/rwaf/TokenBlender.sol/ITokenBlender__factory.d.ts +409 -0
  470. package/dist/types/typechain-types/factories/contracts/rwaf/TokenBlender.sol/TokenBlender__factory.d.ts +990 -0
  471. package/dist/types/typechain-types/factories/contracts/rwaf/TokenBlender.sol/index.d.ts +2 -0
  472. package/dist/types/typechain-types/factories/contracts/rwaf/index.d.ts +2 -0
  473. package/dist/types/typechain-types/factories/contracts/zap/AladdinZap__factory.d.ts +19 -1
  474. package/dist/types/typechain-types/factories/contracts/zap/index.d.ts +0 -2
  475. package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +1 -1
  476. package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +1 -1
  477. package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +1 -1
  478. package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +1 -1
  479. package/dist/types/typechain-types/index.d.ts +34 -8
  480. package/dist/types/utils/artifacts.d.ts +616 -95
  481. package/dist/utils/artifacts.js +16 -0
  482. package/dist/utils/contracts.js +1 -1
  483. package/package.json +1 -1
  484. package/dist/types/typechain-types/@openzeppelin/contracts-v3/access/index.d.ts +0 -1
  485. package/dist/types/typechain-types/@openzeppelin/contracts-v3/index.d.ts +0 -4
  486. package/dist/types/typechain-types/@openzeppelin/contracts-v3/token/ERC20/index.d.ts +0 -1
  487. package/dist/types/typechain-types/contracts/zap/AladdinCRVZap.d.ts +0 -83
  488. package/dist/types/typechain-types/contracts/zap/AladdinConvexVaultZap.d.ts +0 -172
  489. package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/access/index.d.ts +0 -1
  490. package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/index.d.ts +0 -2
  491. package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/token/ERC20/index.d.ts +0 -1
  492. package/dist/types/typechain-types/factories/contracts/zap/AladdinCRVZap__factory.d.ts +0 -107
  493. package/dist/types/typechain-types/factories/contracts/zap/AladdinConvexVaultZap__factory.d.ts +0 -208
  494. /package/dist/types/typechain-types/@openzeppelin/{contracts-v3 → contracts-upgradeable}/token/index.d.ts +0 -0
  495. /package/dist/types/typechain-types/factories/@openzeppelin/{contracts-v3 → contracts-upgradeable}/token/index.d.ts +0 -0
@@ -1,140 +1,60 @@
1
1
  import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
2
2
  import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../../common";
3
3
  export interface RAACMinterInterface extends Interface {
4
- getFunction(nameOrSignature: "BASE_EMISSION_UPDATE_INTERVAL" | "BLOCKS_PER_DAY" | "DEFAULT_ADMIN_ROLE" | "EMERGENCY_SHUTDOWN_ROLE" | "INITIAL_RATE" | "MAX_ADJUSTMENT_FACTOR" | "MAX_BENCHMARK_RATE" | "MAX_EMISSION_UPDATE_INTERVAL" | "MAX_SUPPLY" | "MAX_UTILIZATION_TARGET" | "PAUSER_ROLE" | "UPDATER_ROLE" | "addDistributionPool" | "adjustmentFactor" | "benchmarkRate" | "distributionPools" | "emergencyShutdown" | "emissionRate" | "emissionUpdateInterval" | "excessTokens" | "getRoleAdmin" | "grantRole" | "hasRole" | "lastEmissionUpdateTimestamp" | "lastUpdateBlock" | "lendingPool" | "manageDistributionPool" | "maxEmissionRate" | "minEmissionRate" | "owner" | "pause" | "paused" | "poolInfo" | "raacToken" | "removeDistributionPool" | "renounceOwnership" | "renounceRole" | "revokeRole" | "setAdjustmentFactor" | "setEmissionUpdateInterval" | "setLendingPool" | "setMaxEmissionRate" | "setMinEmissionRate" | "setStabilityPool" | "setUtilizationTarget" | "stabilityPool" | "supportsInterface" | "tick" | "totalWeight" | "transferOwnership" | "unpause" | "updateBenchmarkRate" | "updateEmissionRate" | "utilizationTarget"): FunctionFragment;
5
- getEvent(nameOrSignatureOrTopic: "AdjustmentFactorUpdated" | "BenchmarkRateUpdated" | "DistributionFailed" | "DistributionPoolAdded" | "DistributionPoolRemoved" | "DistributionPoolUpdated" | "EmergencyShutdown" | "EmissionRateUpdated" | "EmissionUpdateIntervalUpdated" | "LastUpdateBlockSet" | "MaxEmissionRateUpdated" | "MinEmissionRateUpdated" | "OwnershipTransferred" | "ParameterUpdated" | "Paused" | "RAACMinted" | "RAACTokenOwnershipTransferInitiated" | "RAACTokenOwnershipTransferred" | "RewardsDistributed" | "RoleAdminChanged" | "RoleGranted" | "RoleRevoked" | "Unpaused" | "UtilizationTargetUpdated"): EventFragment;
6
- encodeFunctionData(functionFragment: "BASE_EMISSION_UPDATE_INTERVAL", values?: undefined): string;
7
- encodeFunctionData(functionFragment: "BLOCKS_PER_DAY", values?: undefined): string;
4
+ getFunction(nameOrSignature: "DEFAULT_ADMIN_ROLE" | "MAX_SUPPLY" | "PAUSER_ROLE" | "UPDATER_ROLE" | "activate" | "addDistributionPool" | "calculateScheduledMintableAmount" | "distributionPools" | "excessTokens" | "getRoleAdmin" | "grantRole" | "hasRole" | "lastUpdateBlockTimestamp" | "manageDistributionPool" | "mintingStartAtTimestamp" | "pause" | "paused" | "poolInfo" | "raacToken" | "removeDistributionPool" | "renounceRole" | "revokeRole" | "supportsInterface" | "tick" | "totalWeight" | "unpause"): FunctionFragment;
5
+ getEvent(nameOrSignatureOrTopic: "DistributionFailed" | "DistributionPoolAdded" | "DistributionPoolRemoved" | "DistributionPoolUpdated" | "EmergencyShutdown" | "MintingActivated" | "Paused" | "RewardsDistributed" | "RoleAdminChanged" | "RoleGranted" | "RoleRevoked" | "Unpaused"): EventFragment;
8
6
  encodeFunctionData(functionFragment: "DEFAULT_ADMIN_ROLE", values?: undefined): string;
9
- encodeFunctionData(functionFragment: "EMERGENCY_SHUTDOWN_ROLE", values?: undefined): string;
10
- encodeFunctionData(functionFragment: "INITIAL_RATE", values?: undefined): string;
11
- encodeFunctionData(functionFragment: "MAX_ADJUSTMENT_FACTOR", values?: undefined): string;
12
- encodeFunctionData(functionFragment: "MAX_BENCHMARK_RATE", values?: undefined): string;
13
- encodeFunctionData(functionFragment: "MAX_EMISSION_UPDATE_INTERVAL", values?: undefined): string;
14
7
  encodeFunctionData(functionFragment: "MAX_SUPPLY", values?: undefined): string;
15
- encodeFunctionData(functionFragment: "MAX_UTILIZATION_TARGET", values?: undefined): string;
16
8
  encodeFunctionData(functionFragment: "PAUSER_ROLE", values?: undefined): string;
17
9
  encodeFunctionData(functionFragment: "UPDATER_ROLE", values?: undefined): string;
10
+ encodeFunctionData(functionFragment: "activate", values?: undefined): string;
18
11
  encodeFunctionData(functionFragment: "addDistributionPool", values: [AddressLike, BigNumberish]): string;
19
- encodeFunctionData(functionFragment: "adjustmentFactor", values?: undefined): string;
20
- encodeFunctionData(functionFragment: "benchmarkRate", values?: undefined): string;
12
+ encodeFunctionData(functionFragment: "calculateScheduledMintableAmount", values: [BigNumberish, BigNumberish]): string;
21
13
  encodeFunctionData(functionFragment: "distributionPools", values: [BigNumberish]): string;
22
- encodeFunctionData(functionFragment: "emergencyShutdown", values: [boolean, BigNumberish]): string;
23
- encodeFunctionData(functionFragment: "emissionRate", values?: undefined): string;
24
- encodeFunctionData(functionFragment: "emissionUpdateInterval", values?: undefined): string;
25
14
  encodeFunctionData(functionFragment: "excessTokens", values?: undefined): string;
26
15
  encodeFunctionData(functionFragment: "getRoleAdmin", values: [BytesLike]): string;
27
16
  encodeFunctionData(functionFragment: "grantRole", values: [BytesLike, AddressLike]): string;
28
17
  encodeFunctionData(functionFragment: "hasRole", values: [BytesLike, AddressLike]): string;
29
- encodeFunctionData(functionFragment: "lastEmissionUpdateTimestamp", values?: undefined): string;
30
- encodeFunctionData(functionFragment: "lastUpdateBlock", values?: undefined): string;
31
- encodeFunctionData(functionFragment: "lendingPool", values?: undefined): string;
18
+ encodeFunctionData(functionFragment: "lastUpdateBlockTimestamp", values?: undefined): string;
32
19
  encodeFunctionData(functionFragment: "manageDistributionPool", values: [AddressLike, BigNumberish]): string;
33
- encodeFunctionData(functionFragment: "maxEmissionRate", values?: undefined): string;
34
- encodeFunctionData(functionFragment: "minEmissionRate", values?: undefined): string;
35
- encodeFunctionData(functionFragment: "owner", values?: undefined): string;
36
- encodeFunctionData(functionFragment: "pause", values: [boolean, BigNumberish]): string;
20
+ encodeFunctionData(functionFragment: "mintingStartAtTimestamp", values?: undefined): string;
21
+ encodeFunctionData(functionFragment: "pause", values?: undefined): string;
37
22
  encodeFunctionData(functionFragment: "paused", values?: undefined): string;
38
23
  encodeFunctionData(functionFragment: "poolInfo", values: [AddressLike]): string;
39
24
  encodeFunctionData(functionFragment: "raacToken", values?: undefined): string;
40
- encodeFunctionData(functionFragment: "removeDistributionPool", values: [AddressLike]): string;
41
- encodeFunctionData(functionFragment: "renounceOwnership", values?: undefined): string;
25
+ encodeFunctionData(functionFragment: "removeDistributionPool", values: [AddressLike, boolean]): string;
42
26
  encodeFunctionData(functionFragment: "renounceRole", values: [BytesLike, AddressLike]): string;
43
27
  encodeFunctionData(functionFragment: "revokeRole", values: [BytesLike, AddressLike]): string;
44
- encodeFunctionData(functionFragment: "setAdjustmentFactor", values: [BigNumberish]): string;
45
- encodeFunctionData(functionFragment: "setEmissionUpdateInterval", values: [BigNumberish]): string;
46
- encodeFunctionData(functionFragment: "setLendingPool", values: [AddressLike]): string;
47
- encodeFunctionData(functionFragment: "setMaxEmissionRate", values: [BigNumberish]): string;
48
- encodeFunctionData(functionFragment: "setMinEmissionRate", values: [BigNumberish]): string;
49
- encodeFunctionData(functionFragment: "setStabilityPool", values: [AddressLike]): string;
50
- encodeFunctionData(functionFragment: "setUtilizationTarget", values: [BigNumberish]): string;
51
- encodeFunctionData(functionFragment: "stabilityPool", values?: undefined): string;
52
28
  encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
53
29
  encodeFunctionData(functionFragment: "tick", values?: undefined): string;
54
30
  encodeFunctionData(functionFragment: "totalWeight", values?: undefined): string;
55
- encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
56
- encodeFunctionData(functionFragment: "unpause", values: [boolean, BigNumberish]): string;
57
- encodeFunctionData(functionFragment: "updateBenchmarkRate", values: [BigNumberish]): string;
58
- encodeFunctionData(functionFragment: "updateEmissionRate", values: [BigNumberish]): string;
59
- encodeFunctionData(functionFragment: "utilizationTarget", values?: undefined): string;
60
- decodeFunctionResult(functionFragment: "BASE_EMISSION_UPDATE_INTERVAL", data: BytesLike): Result;
61
- decodeFunctionResult(functionFragment: "BLOCKS_PER_DAY", data: BytesLike): Result;
31
+ encodeFunctionData(functionFragment: "unpause", values?: undefined): string;
62
32
  decodeFunctionResult(functionFragment: "DEFAULT_ADMIN_ROLE", data: BytesLike): Result;
63
- decodeFunctionResult(functionFragment: "EMERGENCY_SHUTDOWN_ROLE", data: BytesLike): Result;
64
- decodeFunctionResult(functionFragment: "INITIAL_RATE", data: BytesLike): Result;
65
- decodeFunctionResult(functionFragment: "MAX_ADJUSTMENT_FACTOR", data: BytesLike): Result;
66
- decodeFunctionResult(functionFragment: "MAX_BENCHMARK_RATE", data: BytesLike): Result;
67
- decodeFunctionResult(functionFragment: "MAX_EMISSION_UPDATE_INTERVAL", data: BytesLike): Result;
68
33
  decodeFunctionResult(functionFragment: "MAX_SUPPLY", data: BytesLike): Result;
69
- decodeFunctionResult(functionFragment: "MAX_UTILIZATION_TARGET", data: BytesLike): Result;
70
34
  decodeFunctionResult(functionFragment: "PAUSER_ROLE", data: BytesLike): Result;
71
35
  decodeFunctionResult(functionFragment: "UPDATER_ROLE", data: BytesLike): Result;
36
+ decodeFunctionResult(functionFragment: "activate", data: BytesLike): Result;
72
37
  decodeFunctionResult(functionFragment: "addDistributionPool", data: BytesLike): Result;
73
- decodeFunctionResult(functionFragment: "adjustmentFactor", data: BytesLike): Result;
74
- decodeFunctionResult(functionFragment: "benchmarkRate", data: BytesLike): Result;
38
+ decodeFunctionResult(functionFragment: "calculateScheduledMintableAmount", data: BytesLike): Result;
75
39
  decodeFunctionResult(functionFragment: "distributionPools", data: BytesLike): Result;
76
- decodeFunctionResult(functionFragment: "emergencyShutdown", data: BytesLike): Result;
77
- decodeFunctionResult(functionFragment: "emissionRate", data: BytesLike): Result;
78
- decodeFunctionResult(functionFragment: "emissionUpdateInterval", data: BytesLike): Result;
79
40
  decodeFunctionResult(functionFragment: "excessTokens", data: BytesLike): Result;
80
41
  decodeFunctionResult(functionFragment: "getRoleAdmin", data: BytesLike): Result;
81
42
  decodeFunctionResult(functionFragment: "grantRole", data: BytesLike): Result;
82
43
  decodeFunctionResult(functionFragment: "hasRole", data: BytesLike): Result;
83
- decodeFunctionResult(functionFragment: "lastEmissionUpdateTimestamp", data: BytesLike): Result;
84
- decodeFunctionResult(functionFragment: "lastUpdateBlock", data: BytesLike): Result;
85
- decodeFunctionResult(functionFragment: "lendingPool", data: BytesLike): Result;
44
+ decodeFunctionResult(functionFragment: "lastUpdateBlockTimestamp", data: BytesLike): Result;
86
45
  decodeFunctionResult(functionFragment: "manageDistributionPool", data: BytesLike): Result;
87
- decodeFunctionResult(functionFragment: "maxEmissionRate", data: BytesLike): Result;
88
- decodeFunctionResult(functionFragment: "minEmissionRate", data: BytesLike): Result;
89
- decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
46
+ decodeFunctionResult(functionFragment: "mintingStartAtTimestamp", data: BytesLike): Result;
90
47
  decodeFunctionResult(functionFragment: "pause", data: BytesLike): Result;
91
48
  decodeFunctionResult(functionFragment: "paused", data: BytesLike): Result;
92
49
  decodeFunctionResult(functionFragment: "poolInfo", data: BytesLike): Result;
93
50
  decodeFunctionResult(functionFragment: "raacToken", data: BytesLike): Result;
94
51
  decodeFunctionResult(functionFragment: "removeDistributionPool", data: BytesLike): Result;
95
- decodeFunctionResult(functionFragment: "renounceOwnership", data: BytesLike): Result;
96
52
  decodeFunctionResult(functionFragment: "renounceRole", data: BytesLike): Result;
97
53
  decodeFunctionResult(functionFragment: "revokeRole", data: BytesLike): Result;
98
- decodeFunctionResult(functionFragment: "setAdjustmentFactor", data: BytesLike): Result;
99
- decodeFunctionResult(functionFragment: "setEmissionUpdateInterval", data: BytesLike): Result;
100
- decodeFunctionResult(functionFragment: "setLendingPool", data: BytesLike): Result;
101
- decodeFunctionResult(functionFragment: "setMaxEmissionRate", data: BytesLike): Result;
102
- decodeFunctionResult(functionFragment: "setMinEmissionRate", data: BytesLike): Result;
103
- decodeFunctionResult(functionFragment: "setStabilityPool", data: BytesLike): Result;
104
- decodeFunctionResult(functionFragment: "setUtilizationTarget", data: BytesLike): Result;
105
- decodeFunctionResult(functionFragment: "stabilityPool", data: BytesLike): Result;
106
54
  decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
107
55
  decodeFunctionResult(functionFragment: "tick", data: BytesLike): Result;
108
56
  decodeFunctionResult(functionFragment: "totalWeight", data: BytesLike): Result;
109
- decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
110
57
  decodeFunctionResult(functionFragment: "unpause", data: BytesLike): Result;
111
- decodeFunctionResult(functionFragment: "updateBenchmarkRate", data: BytesLike): Result;
112
- decodeFunctionResult(functionFragment: "updateEmissionRate", data: BytesLike): Result;
113
- decodeFunctionResult(functionFragment: "utilizationTarget", data: BytesLike): Result;
114
- }
115
- export declare namespace AdjustmentFactorUpdatedEvent {
116
- type InputTuple = [oldFactor: BigNumberish, newFactor: BigNumberish];
117
- type OutputTuple = [oldFactor: bigint, newFactor: bigint];
118
- interface OutputObject {
119
- oldFactor: bigint;
120
- newFactor: bigint;
121
- }
122
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
123
- type Filter = TypedDeferredTopicFilter<Event>;
124
- type Log = TypedEventLog<Event>;
125
- type LogDescription = TypedLogDescription<Event>;
126
- }
127
- export declare namespace BenchmarkRateUpdatedEvent {
128
- type InputTuple = [oldRate: BigNumberish, newRate: BigNumberish];
129
- type OutputTuple = [oldRate: bigint, newRate: bigint];
130
- interface OutputObject {
131
- oldRate: bigint;
132
- newRate: bigint;
133
- }
134
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
135
- type Filter = TypedDeferredTopicFilter<Event>;
136
- type Log = TypedEventLog<Event>;
137
- type LogDescription = TypedLogDescription<Event>;
138
58
  }
139
59
  export declare namespace DistributionFailedEvent {
140
60
  type InputTuple = [pool: AddressLike, amount: BigNumberish];
@@ -186,98 +106,30 @@ export declare namespace DistributionPoolUpdatedEvent {
186
106
  export declare namespace EmergencyShutdownEvent {
187
107
  type InputTuple = [
188
108
  initiator: AddressLike,
189
- lastUpdateBlock: BigNumberish
109
+ lastUpdateBlockTimestamp: BigNumberish
110
+ ];
111
+ type OutputTuple = [
112
+ initiator: string,
113
+ lastUpdateBlockTimestamp: bigint
190
114
  ];
191
- type OutputTuple = [initiator: string, lastUpdateBlock: bigint];
192
115
  interface OutputObject {
193
116
  initiator: string;
194
- lastUpdateBlock: bigint;
195
- }
196
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
197
- type Filter = TypedDeferredTopicFilter<Event>;
198
- type Log = TypedEventLog<Event>;
199
- type LogDescription = TypedLogDescription<Event>;
200
- }
201
- export declare namespace EmissionRateUpdatedEvent {
202
- type InputTuple = [oldRate: BigNumberish, newRate: BigNumberish];
203
- type OutputTuple = [oldRate: bigint, newRate: bigint];
204
- interface OutputObject {
205
- oldRate: bigint;
206
- newRate: bigint;
117
+ lastUpdateBlockTimestamp: bigint;
207
118
  }
208
119
  type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
209
120
  type Filter = TypedDeferredTopicFilter<Event>;
210
121
  type Log = TypedEventLog<Event>;
211
122
  type LogDescription = TypedLogDescription<Event>;
212
123
  }
213
- export declare namespace EmissionUpdateIntervalUpdatedEvent {
124
+ export declare namespace MintingActivatedEvent {
214
125
  type InputTuple = [
215
- oldInterval: BigNumberish,
216
- newInterval: BigNumberish
126
+ startTimestamp: BigNumberish,
127
+ startBlock: BigNumberish
217
128
  ];
218
- type OutputTuple = [oldInterval: bigint, newInterval: bigint];
219
- interface OutputObject {
220
- oldInterval: bigint;
221
- newInterval: bigint;
222
- }
223
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
224
- type Filter = TypedDeferredTopicFilter<Event>;
225
- type Log = TypedEventLog<Event>;
226
- type LogDescription = TypedLogDescription<Event>;
227
- }
228
- export declare namespace LastUpdateBlockSetEvent {
229
- type InputTuple = [newLastUpdateBlock: BigNumberish];
230
- type OutputTuple = [newLastUpdateBlock: bigint];
231
- interface OutputObject {
232
- newLastUpdateBlock: bigint;
233
- }
234
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
235
- type Filter = TypedDeferredTopicFilter<Event>;
236
- type Log = TypedEventLog<Event>;
237
- type LogDescription = TypedLogDescription<Event>;
238
- }
239
- export declare namespace MaxEmissionRateUpdatedEvent {
240
- type InputTuple = [oldRate: BigNumberish, newRate: BigNumberish];
241
- type OutputTuple = [oldRate: bigint, newRate: bigint];
242
- interface OutputObject {
243
- oldRate: bigint;
244
- newRate: bigint;
245
- }
246
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
247
- type Filter = TypedDeferredTopicFilter<Event>;
248
- type Log = TypedEventLog<Event>;
249
- type LogDescription = TypedLogDescription<Event>;
250
- }
251
- export declare namespace MinEmissionRateUpdatedEvent {
252
- type InputTuple = [oldRate: BigNumberish, newRate: BigNumberish];
253
- type OutputTuple = [oldRate: bigint, newRate: bigint];
254
- interface OutputObject {
255
- oldRate: bigint;
256
- newRate: bigint;
257
- }
258
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
259
- type Filter = TypedDeferredTopicFilter<Event>;
260
- type Log = TypedEventLog<Event>;
261
- type LogDescription = TypedLogDescription<Event>;
262
- }
263
- export declare namespace OwnershipTransferredEvent {
264
- type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
265
- type OutputTuple = [previousOwner: string, newOwner: string];
266
- interface OutputObject {
267
- previousOwner: string;
268
- newOwner: string;
269
- }
270
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
271
- type Filter = TypedDeferredTopicFilter<Event>;
272
- type Log = TypedEventLog<Event>;
273
- type LogDescription = TypedLogDescription<Event>;
274
- }
275
- export declare namespace ParameterUpdatedEvent {
276
- type InputTuple = [parameter: string, newValue: BigNumberish];
277
- type OutputTuple = [parameter: string, newValue: bigint];
129
+ type OutputTuple = [startTimestamp: bigint, startBlock: bigint];
278
130
  interface OutputObject {
279
- parameter: string;
280
- newValue: bigint;
131
+ startTimestamp: bigint;
132
+ startBlock: bigint;
281
133
  }
282
134
  type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
283
135
  type Filter = TypedDeferredTopicFilter<Event>;
@@ -295,40 +147,6 @@ export declare namespace PausedEvent {
295
147
  type Log = TypedEventLog<Event>;
296
148
  type LogDescription = TypedLogDescription<Event>;
297
149
  }
298
- export declare namespace RAACMintedEvent {
299
- type InputTuple = [amount: BigNumberish];
300
- type OutputTuple = [amount: bigint];
301
- interface OutputObject {
302
- amount: bigint;
303
- }
304
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
305
- type Filter = TypedDeferredTopicFilter<Event>;
306
- type Log = TypedEventLog<Event>;
307
- type LogDescription = TypedLogDescription<Event>;
308
- }
309
- export declare namespace RAACTokenOwnershipTransferInitiatedEvent {
310
- type InputTuple = [newOwner: AddressLike, effectiveTime: BigNumberish];
311
- type OutputTuple = [newOwner: string, effectiveTime: bigint];
312
- interface OutputObject {
313
- newOwner: string;
314
- effectiveTime: bigint;
315
- }
316
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
317
- type Filter = TypedDeferredTopicFilter<Event>;
318
- type Log = TypedEventLog<Event>;
319
- type LogDescription = TypedLogDescription<Event>;
320
- }
321
- export declare namespace RAACTokenOwnershipTransferredEvent {
322
- type InputTuple = [newOwner: AddressLike];
323
- type OutputTuple = [newOwner: string];
324
- interface OutputObject {
325
- newOwner: string;
326
- }
327
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
328
- type Filter = TypedDeferredTopicFilter<Event>;
329
- type Log = TypedEventLog<Event>;
330
- type LogDescription = TypedLogDescription<Event>;
331
- }
332
150
  export declare namespace RewardsDistributedEvent {
333
151
  type InputTuple = [pool: AddressLike, amount: BigNumberish];
334
152
  type OutputTuple = [pool: string, amount: bigint];
@@ -407,18 +225,6 @@ export declare namespace UnpausedEvent {
407
225
  type Log = TypedEventLog<Event>;
408
226
  type LogDescription = TypedLogDescription<Event>;
409
227
  }
410
- export declare namespace UtilizationTargetUpdatedEvent {
411
- type InputTuple = [oldTarget: BigNumberish, newTarget: BigNumberish];
412
- type OutputTuple = [oldTarget: bigint, newTarget: bigint];
413
- interface OutputObject {
414
- oldTarget: bigint;
415
- newTarget: bigint;
416
- }
417
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
418
- type Filter = TypedDeferredTopicFilter<Event>;
419
- type Log = TypedEventLog<Event>;
420
- type LogDescription = TypedLogDescription<Event>;
421
- }
422
228
  export interface RAACMinter extends BaseContract {
423
229
  connect(runner?: ContractRunner | null): RAACMinter;
424
230
  waitForDeployment(): Promise<this>;
@@ -432,39 +238,28 @@ export interface RAACMinter extends BaseContract {
432
238
  listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
433
239
  listeners(eventName?: string): Promise<Array<Listener>>;
434
240
  removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
435
- BASE_EMISSION_UPDATE_INTERVAL: TypedContractMethod<[], [bigint], "view">;
436
- BLOCKS_PER_DAY: TypedContractMethod<[], [bigint], "view">;
437
241
  DEFAULT_ADMIN_ROLE: TypedContractMethod<[], [string], "view">;
438
- EMERGENCY_SHUTDOWN_ROLE: TypedContractMethod<[], [string], "view">;
439
- INITIAL_RATE: TypedContractMethod<[], [bigint], "view">;
440
- MAX_ADJUSTMENT_FACTOR: TypedContractMethod<[], [bigint], "view">;
441
- MAX_BENCHMARK_RATE: TypedContractMethod<[], [bigint], "view">;
442
- MAX_EMISSION_UPDATE_INTERVAL: TypedContractMethod<[], [bigint], "view">;
443
242
  MAX_SUPPLY: TypedContractMethod<[], [bigint], "view">;
444
- MAX_UTILIZATION_TARGET: TypedContractMethod<[], [bigint], "view">;
445
243
  PAUSER_ROLE: TypedContractMethod<[], [string], "view">;
446
244
  UPDATER_ROLE: TypedContractMethod<[], [string], "view">;
245
+ activate: TypedContractMethod<[], [void], "nonpayable">;
447
246
  addDistributionPool: TypedContractMethod<[
448
247
  pool: AddressLike,
449
248
  weight: BigNumberish
450
249
  ], [
451
250
  void
452
251
  ], "nonpayable">;
453
- adjustmentFactor: TypedContractMethod<[], [bigint], "view">;
454
- benchmarkRate: TypedContractMethod<[], [bigint], "view">;
252
+ calculateScheduledMintableAmount: TypedContractMethod<[
253
+ startPeriod: BigNumberish,
254
+ endPeriod: BigNumberish
255
+ ], [
256
+ bigint
257
+ ], "view">;
455
258
  distributionPools: TypedContractMethod<[
456
259
  arg0: BigNumberish
457
260
  ], [
458
261
  string
459
262
  ], "view">;
460
- emergencyShutdown: TypedContractMethod<[
461
- updateLastBlock: boolean,
462
- newLastUpdateBlock: BigNumberish
463
- ], [
464
- void
465
- ], "nonpayable">;
466
- emissionRate: TypedContractMethod<[], [bigint], "view">;
467
- emissionUpdateInterval: TypedContractMethod<[], [bigint], "view">;
468
263
  excessTokens: TypedContractMethod<[], [bigint], "view">;
469
264
  getRoleAdmin: TypedContractMethod<[role: BytesLike], [string], "view">;
470
265
  grantRole: TypedContractMethod<[
@@ -479,24 +274,15 @@ export interface RAACMinter extends BaseContract {
479
274
  ], [
480
275
  boolean
481
276
  ], "view">;
482
- lastEmissionUpdateTimestamp: TypedContractMethod<[], [bigint], "view">;
483
- lastUpdateBlock: TypedContractMethod<[], [bigint], "view">;
484
- lendingPool: TypedContractMethod<[], [string], "view">;
277
+ lastUpdateBlockTimestamp: TypedContractMethod<[], [bigint], "view">;
485
278
  manageDistributionPool: TypedContractMethod<[
486
279
  pool: AddressLike,
487
280
  weight: BigNumberish
488
281
  ], [
489
282
  void
490
283
  ], "nonpayable">;
491
- maxEmissionRate: TypedContractMethod<[], [bigint], "view">;
492
- minEmissionRate: TypedContractMethod<[], [bigint], "view">;
493
- owner: TypedContractMethod<[], [string], "view">;
494
- pause: TypedContractMethod<[
495
- updateLastBlock: boolean,
496
- newLastUpdateBlock: BigNumberish
497
- ], [
498
- void
499
- ], "nonpayable">;
284
+ mintingStartAtTimestamp: TypedContractMethod<[], [bigint], "view">;
285
+ pause: TypedContractMethod<[], [void], "nonpayable">;
500
286
  paused: TypedContractMethod<[], [boolean], "view">;
501
287
  poolInfo: TypedContractMethod<[
502
288
  arg0: AddressLike
@@ -515,11 +301,11 @@ export interface RAACMinter extends BaseContract {
515
301
  ], "view">;
516
302
  raacToken: TypedContractMethod<[], [string], "view">;
517
303
  removeDistributionPool: TypedContractMethod<[
518
- pool: AddressLike
304
+ pool: AddressLike,
305
+ excludeTick: boolean
519
306
  ], [
520
307
  void
521
308
  ], "nonpayable">;
522
- renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
523
309
  renounceRole: TypedContractMethod<[
524
310
  role: BytesLike,
525
311
  callerConfirmation: AddressLike
@@ -532,42 +318,6 @@ export interface RAACMinter extends BaseContract {
532
318
  ], [
533
319
  void
534
320
  ], "nonpayable">;
535
- setAdjustmentFactor: TypedContractMethod<[
536
- _adjustmentFactor: BigNumberish
537
- ], [
538
- void
539
- ], "nonpayable">;
540
- setEmissionUpdateInterval: TypedContractMethod<[
541
- _emissionUpdateInterval: BigNumberish
542
- ], [
543
- void
544
- ], "nonpayable">;
545
- setLendingPool: TypedContractMethod<[
546
- _lendingPool: AddressLike
547
- ], [
548
- void
549
- ], "nonpayable">;
550
- setMaxEmissionRate: TypedContractMethod<[
551
- _maxEmissionRate: BigNumberish
552
- ], [
553
- void
554
- ], "nonpayable">;
555
- setMinEmissionRate: TypedContractMethod<[
556
- _minEmissionRate: BigNumberish
557
- ], [
558
- void
559
- ], "nonpayable">;
560
- setStabilityPool: TypedContractMethod<[
561
- _stabilityPool: AddressLike
562
- ], [
563
- void
564
- ], "nonpayable">;
565
- setUtilizationTarget: TypedContractMethod<[
566
- _utilizationTarget: BigNumberish
567
- ], [
568
- void
569
- ], "nonpayable">;
570
- stabilityPool: TypedContractMethod<[], [string], "view">;
571
321
  supportsInterface: TypedContractMethod<[
572
322
  interfaceId: BytesLike
573
323
  ], [
@@ -575,58 +325,26 @@ export interface RAACMinter extends BaseContract {
575
325
  ], "view">;
576
326
  tick: TypedContractMethod<[], [void], "nonpayable">;
577
327
  totalWeight: TypedContractMethod<[], [bigint], "view">;
578
- transferOwnership: TypedContractMethod<[
579
- newOwner: AddressLike
580
- ], [
581
- void
582
- ], "nonpayable">;
583
- unpause: TypedContractMethod<[
584
- updateLastBlock: boolean,
585
- newLastUpdateBlock: BigNumberish
586
- ], [
587
- void
588
- ], "nonpayable">;
589
- updateBenchmarkRate: TypedContractMethod<[
590
- _newRate: BigNumberish
591
- ], [
592
- void
593
- ], "nonpayable">;
594
- updateEmissionRate: TypedContractMethod<[
595
- _newRate: BigNumberish
596
- ], [
597
- void
598
- ], "nonpayable">;
599
- utilizationTarget: TypedContractMethod<[], [bigint], "view">;
328
+ unpause: TypedContractMethod<[], [void], "nonpayable">;
600
329
  getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
601
- getFunction(nameOrSignature: "BASE_EMISSION_UPDATE_INTERVAL"): TypedContractMethod<[], [bigint], "view">;
602
- getFunction(nameOrSignature: "BLOCKS_PER_DAY"): TypedContractMethod<[], [bigint], "view">;
603
330
  getFunction(nameOrSignature: "DEFAULT_ADMIN_ROLE"): TypedContractMethod<[], [string], "view">;
604
- getFunction(nameOrSignature: "EMERGENCY_SHUTDOWN_ROLE"): TypedContractMethod<[], [string], "view">;
605
- getFunction(nameOrSignature: "INITIAL_RATE"): TypedContractMethod<[], [bigint], "view">;
606
- getFunction(nameOrSignature: "MAX_ADJUSTMENT_FACTOR"): TypedContractMethod<[], [bigint], "view">;
607
- getFunction(nameOrSignature: "MAX_BENCHMARK_RATE"): TypedContractMethod<[], [bigint], "view">;
608
- getFunction(nameOrSignature: "MAX_EMISSION_UPDATE_INTERVAL"): TypedContractMethod<[], [bigint], "view">;
609
331
  getFunction(nameOrSignature: "MAX_SUPPLY"): TypedContractMethod<[], [bigint], "view">;
610
- getFunction(nameOrSignature: "MAX_UTILIZATION_TARGET"): TypedContractMethod<[], [bigint], "view">;
611
332
  getFunction(nameOrSignature: "PAUSER_ROLE"): TypedContractMethod<[], [string], "view">;
612
333
  getFunction(nameOrSignature: "UPDATER_ROLE"): TypedContractMethod<[], [string], "view">;
334
+ getFunction(nameOrSignature: "activate"): TypedContractMethod<[], [void], "nonpayable">;
613
335
  getFunction(nameOrSignature: "addDistributionPool"): TypedContractMethod<[
614
336
  pool: AddressLike,
615
337
  weight: BigNumberish
616
338
  ], [
617
339
  void
618
340
  ], "nonpayable">;
619
- getFunction(nameOrSignature: "adjustmentFactor"): TypedContractMethod<[], [bigint], "view">;
620
- getFunction(nameOrSignature: "benchmarkRate"): TypedContractMethod<[], [bigint], "view">;
621
- getFunction(nameOrSignature: "distributionPools"): TypedContractMethod<[arg0: BigNumberish], [string], "view">;
622
- getFunction(nameOrSignature: "emergencyShutdown"): TypedContractMethod<[
623
- updateLastBlock: boolean,
624
- newLastUpdateBlock: BigNumberish
341
+ getFunction(nameOrSignature: "calculateScheduledMintableAmount"): TypedContractMethod<[
342
+ startPeriod: BigNumberish,
343
+ endPeriod: BigNumberish
625
344
  ], [
626
- void
627
- ], "nonpayable">;
628
- getFunction(nameOrSignature: "emissionRate"): TypedContractMethod<[], [bigint], "view">;
629
- getFunction(nameOrSignature: "emissionUpdateInterval"): TypedContractMethod<[], [bigint], "view">;
345
+ bigint
346
+ ], "view">;
347
+ getFunction(nameOrSignature: "distributionPools"): TypedContractMethod<[arg0: BigNumberish], [string], "view">;
630
348
  getFunction(nameOrSignature: "excessTokens"): TypedContractMethod<[], [bigint], "view">;
631
349
  getFunction(nameOrSignature: "getRoleAdmin"): TypedContractMethod<[role: BytesLike], [string], "view">;
632
350
  getFunction(nameOrSignature: "grantRole"): TypedContractMethod<[
@@ -641,24 +359,15 @@ export interface RAACMinter extends BaseContract {
641
359
  ], [
642
360
  boolean
643
361
  ], "view">;
644
- getFunction(nameOrSignature: "lastEmissionUpdateTimestamp"): TypedContractMethod<[], [bigint], "view">;
645
- getFunction(nameOrSignature: "lastUpdateBlock"): TypedContractMethod<[], [bigint], "view">;
646
- getFunction(nameOrSignature: "lendingPool"): TypedContractMethod<[], [string], "view">;
362
+ getFunction(nameOrSignature: "lastUpdateBlockTimestamp"): TypedContractMethod<[], [bigint], "view">;
647
363
  getFunction(nameOrSignature: "manageDistributionPool"): TypedContractMethod<[
648
364
  pool: AddressLike,
649
365
  weight: BigNumberish
650
366
  ], [
651
367
  void
652
368
  ], "nonpayable">;
653
- getFunction(nameOrSignature: "maxEmissionRate"): TypedContractMethod<[], [bigint], "view">;
654
- getFunction(nameOrSignature: "minEmissionRate"): TypedContractMethod<[], [bigint], "view">;
655
- getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
656
- getFunction(nameOrSignature: "pause"): TypedContractMethod<[
657
- updateLastBlock: boolean,
658
- newLastUpdateBlock: BigNumberish
659
- ], [
660
- void
661
- ], "nonpayable">;
369
+ getFunction(nameOrSignature: "mintingStartAtTimestamp"): TypedContractMethod<[], [bigint], "view">;
370
+ getFunction(nameOrSignature: "pause"): TypedContractMethod<[], [void], "nonpayable">;
662
371
  getFunction(nameOrSignature: "paused"): TypedContractMethod<[], [boolean], "view">;
663
372
  getFunction(nameOrSignature: "poolInfo"): TypedContractMethod<[
664
373
  arg0: AddressLike
@@ -676,8 +385,12 @@ export interface RAACMinter extends BaseContract {
676
385
  }
677
386
  ], "view">;
678
387
  getFunction(nameOrSignature: "raacToken"): TypedContractMethod<[], [string], "view">;
679
- getFunction(nameOrSignature: "removeDistributionPool"): TypedContractMethod<[pool: AddressLike], [void], "nonpayable">;
680
- getFunction(nameOrSignature: "renounceOwnership"): TypedContractMethod<[], [void], "nonpayable">;
388
+ getFunction(nameOrSignature: "removeDistributionPool"): TypedContractMethod<[
389
+ pool: AddressLike,
390
+ excludeTick: boolean
391
+ ], [
392
+ void
393
+ ], "nonpayable">;
681
394
  getFunction(nameOrSignature: "renounceRole"): TypedContractMethod<[
682
395
  role: BytesLike,
683
396
  callerConfirmation: AddressLike
@@ -690,76 +403,23 @@ export interface RAACMinter extends BaseContract {
690
403
  ], [
691
404
  void
692
405
  ], "nonpayable">;
693
- getFunction(nameOrSignature: "setAdjustmentFactor"): TypedContractMethod<[
694
- _adjustmentFactor: BigNumberish
695
- ], [
696
- void
697
- ], "nonpayable">;
698
- getFunction(nameOrSignature: "setEmissionUpdateInterval"): TypedContractMethod<[
699
- _emissionUpdateInterval: BigNumberish
700
- ], [
701
- void
702
- ], "nonpayable">;
703
- getFunction(nameOrSignature: "setLendingPool"): TypedContractMethod<[_lendingPool: AddressLike], [void], "nonpayable">;
704
- getFunction(nameOrSignature: "setMaxEmissionRate"): TypedContractMethod<[
705
- _maxEmissionRate: BigNumberish
706
- ], [
707
- void
708
- ], "nonpayable">;
709
- getFunction(nameOrSignature: "setMinEmissionRate"): TypedContractMethod<[
710
- _minEmissionRate: BigNumberish
711
- ], [
712
- void
713
- ], "nonpayable">;
714
- getFunction(nameOrSignature: "setStabilityPool"): TypedContractMethod<[_stabilityPool: AddressLike], [void], "nonpayable">;
715
- getFunction(nameOrSignature: "setUtilizationTarget"): TypedContractMethod<[
716
- _utilizationTarget: BigNumberish
717
- ], [
718
- void
719
- ], "nonpayable">;
720
- getFunction(nameOrSignature: "stabilityPool"): TypedContractMethod<[], [string], "view">;
721
406
  getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
722
407
  getFunction(nameOrSignature: "tick"): TypedContractMethod<[], [void], "nonpayable">;
723
408
  getFunction(nameOrSignature: "totalWeight"): TypedContractMethod<[], [bigint], "view">;
724
- getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
725
- getFunction(nameOrSignature: "unpause"): TypedContractMethod<[
726
- updateLastBlock: boolean,
727
- newLastUpdateBlock: BigNumberish
728
- ], [
729
- void
730
- ], "nonpayable">;
731
- getFunction(nameOrSignature: "updateBenchmarkRate"): TypedContractMethod<[_newRate: BigNumberish], [void], "nonpayable">;
732
- getFunction(nameOrSignature: "updateEmissionRate"): TypedContractMethod<[_newRate: BigNumberish], [void], "nonpayable">;
733
- getFunction(nameOrSignature: "utilizationTarget"): TypedContractMethod<[], [bigint], "view">;
734
- getEvent(key: "AdjustmentFactorUpdated"): TypedContractEvent<AdjustmentFactorUpdatedEvent.InputTuple, AdjustmentFactorUpdatedEvent.OutputTuple, AdjustmentFactorUpdatedEvent.OutputObject>;
735
- getEvent(key: "BenchmarkRateUpdated"): TypedContractEvent<BenchmarkRateUpdatedEvent.InputTuple, BenchmarkRateUpdatedEvent.OutputTuple, BenchmarkRateUpdatedEvent.OutputObject>;
409
+ getFunction(nameOrSignature: "unpause"): TypedContractMethod<[], [void], "nonpayable">;
736
410
  getEvent(key: "DistributionFailed"): TypedContractEvent<DistributionFailedEvent.InputTuple, DistributionFailedEvent.OutputTuple, DistributionFailedEvent.OutputObject>;
737
411
  getEvent(key: "DistributionPoolAdded"): TypedContractEvent<DistributionPoolAddedEvent.InputTuple, DistributionPoolAddedEvent.OutputTuple, DistributionPoolAddedEvent.OutputObject>;
738
412
  getEvent(key: "DistributionPoolRemoved"): TypedContractEvent<DistributionPoolRemovedEvent.InputTuple, DistributionPoolRemovedEvent.OutputTuple, DistributionPoolRemovedEvent.OutputObject>;
739
413
  getEvent(key: "DistributionPoolUpdated"): TypedContractEvent<DistributionPoolUpdatedEvent.InputTuple, DistributionPoolUpdatedEvent.OutputTuple, DistributionPoolUpdatedEvent.OutputObject>;
740
414
  getEvent(key: "EmergencyShutdown"): TypedContractEvent<EmergencyShutdownEvent.InputTuple, EmergencyShutdownEvent.OutputTuple, EmergencyShutdownEvent.OutputObject>;
741
- getEvent(key: "EmissionRateUpdated"): TypedContractEvent<EmissionRateUpdatedEvent.InputTuple, EmissionRateUpdatedEvent.OutputTuple, EmissionRateUpdatedEvent.OutputObject>;
742
- getEvent(key: "EmissionUpdateIntervalUpdated"): TypedContractEvent<EmissionUpdateIntervalUpdatedEvent.InputTuple, EmissionUpdateIntervalUpdatedEvent.OutputTuple, EmissionUpdateIntervalUpdatedEvent.OutputObject>;
743
- getEvent(key: "LastUpdateBlockSet"): TypedContractEvent<LastUpdateBlockSetEvent.InputTuple, LastUpdateBlockSetEvent.OutputTuple, LastUpdateBlockSetEvent.OutputObject>;
744
- getEvent(key: "MaxEmissionRateUpdated"): TypedContractEvent<MaxEmissionRateUpdatedEvent.InputTuple, MaxEmissionRateUpdatedEvent.OutputTuple, MaxEmissionRateUpdatedEvent.OutputObject>;
745
- getEvent(key: "MinEmissionRateUpdated"): TypedContractEvent<MinEmissionRateUpdatedEvent.InputTuple, MinEmissionRateUpdatedEvent.OutputTuple, MinEmissionRateUpdatedEvent.OutputObject>;
746
- getEvent(key: "OwnershipTransferred"): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
747
- getEvent(key: "ParameterUpdated"): TypedContractEvent<ParameterUpdatedEvent.InputTuple, ParameterUpdatedEvent.OutputTuple, ParameterUpdatedEvent.OutputObject>;
415
+ getEvent(key: "MintingActivated"): TypedContractEvent<MintingActivatedEvent.InputTuple, MintingActivatedEvent.OutputTuple, MintingActivatedEvent.OutputObject>;
748
416
  getEvent(key: "Paused"): TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
749
- getEvent(key: "RAACMinted"): TypedContractEvent<RAACMintedEvent.InputTuple, RAACMintedEvent.OutputTuple, RAACMintedEvent.OutputObject>;
750
- getEvent(key: "RAACTokenOwnershipTransferInitiated"): TypedContractEvent<RAACTokenOwnershipTransferInitiatedEvent.InputTuple, RAACTokenOwnershipTransferInitiatedEvent.OutputTuple, RAACTokenOwnershipTransferInitiatedEvent.OutputObject>;
751
- getEvent(key: "RAACTokenOwnershipTransferred"): TypedContractEvent<RAACTokenOwnershipTransferredEvent.InputTuple, RAACTokenOwnershipTransferredEvent.OutputTuple, RAACTokenOwnershipTransferredEvent.OutputObject>;
752
417
  getEvent(key: "RewardsDistributed"): TypedContractEvent<RewardsDistributedEvent.InputTuple, RewardsDistributedEvent.OutputTuple, RewardsDistributedEvent.OutputObject>;
753
418
  getEvent(key: "RoleAdminChanged"): TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
754
419
  getEvent(key: "RoleGranted"): TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
755
420
  getEvent(key: "RoleRevoked"): TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
756
421
  getEvent(key: "Unpaused"): TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
757
- getEvent(key: "UtilizationTargetUpdated"): TypedContractEvent<UtilizationTargetUpdatedEvent.InputTuple, UtilizationTargetUpdatedEvent.OutputTuple, UtilizationTargetUpdatedEvent.OutputObject>;
758
422
  filters: {
759
- "AdjustmentFactorUpdated(uint256,uint256)": TypedContractEvent<AdjustmentFactorUpdatedEvent.InputTuple, AdjustmentFactorUpdatedEvent.OutputTuple, AdjustmentFactorUpdatedEvent.OutputObject>;
760
- AdjustmentFactorUpdated: TypedContractEvent<AdjustmentFactorUpdatedEvent.InputTuple, AdjustmentFactorUpdatedEvent.OutputTuple, AdjustmentFactorUpdatedEvent.OutputObject>;
761
- "BenchmarkRateUpdated(uint256,uint256)": TypedContractEvent<BenchmarkRateUpdatedEvent.InputTuple, BenchmarkRateUpdatedEvent.OutputTuple, BenchmarkRateUpdatedEvent.OutputObject>;
762
- BenchmarkRateUpdated: TypedContractEvent<BenchmarkRateUpdatedEvent.InputTuple, BenchmarkRateUpdatedEvent.OutputTuple, BenchmarkRateUpdatedEvent.OutputObject>;
763
423
  "DistributionFailed(address,uint256)": TypedContractEvent<DistributionFailedEvent.InputTuple, DistributionFailedEvent.OutputTuple, DistributionFailedEvent.OutputObject>;
764
424
  DistributionFailed: TypedContractEvent<DistributionFailedEvent.InputTuple, DistributionFailedEvent.OutputTuple, DistributionFailedEvent.OutputObject>;
765
425
  "DistributionPoolAdded(address,uint256)": TypedContractEvent<DistributionPoolAddedEvent.InputTuple, DistributionPoolAddedEvent.OutputTuple, DistributionPoolAddedEvent.OutputObject>;
@@ -770,28 +430,10 @@ export interface RAACMinter extends BaseContract {
770
430
  DistributionPoolUpdated: TypedContractEvent<DistributionPoolUpdatedEvent.InputTuple, DistributionPoolUpdatedEvent.OutputTuple, DistributionPoolUpdatedEvent.OutputObject>;
771
431
  "EmergencyShutdown(address,uint256)": TypedContractEvent<EmergencyShutdownEvent.InputTuple, EmergencyShutdownEvent.OutputTuple, EmergencyShutdownEvent.OutputObject>;
772
432
  EmergencyShutdown: TypedContractEvent<EmergencyShutdownEvent.InputTuple, EmergencyShutdownEvent.OutputTuple, EmergencyShutdownEvent.OutputObject>;
773
- "EmissionRateUpdated(uint256,uint256)": TypedContractEvent<EmissionRateUpdatedEvent.InputTuple, EmissionRateUpdatedEvent.OutputTuple, EmissionRateUpdatedEvent.OutputObject>;
774
- EmissionRateUpdated: TypedContractEvent<EmissionRateUpdatedEvent.InputTuple, EmissionRateUpdatedEvent.OutputTuple, EmissionRateUpdatedEvent.OutputObject>;
775
- "EmissionUpdateIntervalUpdated(uint256,uint256)": TypedContractEvent<EmissionUpdateIntervalUpdatedEvent.InputTuple, EmissionUpdateIntervalUpdatedEvent.OutputTuple, EmissionUpdateIntervalUpdatedEvent.OutputObject>;
776
- EmissionUpdateIntervalUpdated: TypedContractEvent<EmissionUpdateIntervalUpdatedEvent.InputTuple, EmissionUpdateIntervalUpdatedEvent.OutputTuple, EmissionUpdateIntervalUpdatedEvent.OutputObject>;
777
- "LastUpdateBlockSet(uint256)": TypedContractEvent<LastUpdateBlockSetEvent.InputTuple, LastUpdateBlockSetEvent.OutputTuple, LastUpdateBlockSetEvent.OutputObject>;
778
- LastUpdateBlockSet: TypedContractEvent<LastUpdateBlockSetEvent.InputTuple, LastUpdateBlockSetEvent.OutputTuple, LastUpdateBlockSetEvent.OutputObject>;
779
- "MaxEmissionRateUpdated(uint256,uint256)": TypedContractEvent<MaxEmissionRateUpdatedEvent.InputTuple, MaxEmissionRateUpdatedEvent.OutputTuple, MaxEmissionRateUpdatedEvent.OutputObject>;
780
- MaxEmissionRateUpdated: TypedContractEvent<MaxEmissionRateUpdatedEvent.InputTuple, MaxEmissionRateUpdatedEvent.OutputTuple, MaxEmissionRateUpdatedEvent.OutputObject>;
781
- "MinEmissionRateUpdated(uint256,uint256)": TypedContractEvent<MinEmissionRateUpdatedEvent.InputTuple, MinEmissionRateUpdatedEvent.OutputTuple, MinEmissionRateUpdatedEvent.OutputObject>;
782
- MinEmissionRateUpdated: TypedContractEvent<MinEmissionRateUpdatedEvent.InputTuple, MinEmissionRateUpdatedEvent.OutputTuple, MinEmissionRateUpdatedEvent.OutputObject>;
783
- "OwnershipTransferred(address,address)": TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
784
- OwnershipTransferred: TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
785
- "ParameterUpdated(string,uint256)": TypedContractEvent<ParameterUpdatedEvent.InputTuple, ParameterUpdatedEvent.OutputTuple, ParameterUpdatedEvent.OutputObject>;
786
- ParameterUpdated: TypedContractEvent<ParameterUpdatedEvent.InputTuple, ParameterUpdatedEvent.OutputTuple, ParameterUpdatedEvent.OutputObject>;
433
+ "MintingActivated(uint256,uint256)": TypedContractEvent<MintingActivatedEvent.InputTuple, MintingActivatedEvent.OutputTuple, MintingActivatedEvent.OutputObject>;
434
+ MintingActivated: TypedContractEvent<MintingActivatedEvent.InputTuple, MintingActivatedEvent.OutputTuple, MintingActivatedEvent.OutputObject>;
787
435
  "Paused(address)": TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
788
436
  Paused: TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
789
- "RAACMinted(uint256)": TypedContractEvent<RAACMintedEvent.InputTuple, RAACMintedEvent.OutputTuple, RAACMintedEvent.OutputObject>;
790
- RAACMinted: TypedContractEvent<RAACMintedEvent.InputTuple, RAACMintedEvent.OutputTuple, RAACMintedEvent.OutputObject>;
791
- "RAACTokenOwnershipTransferInitiated(address,uint256)": TypedContractEvent<RAACTokenOwnershipTransferInitiatedEvent.InputTuple, RAACTokenOwnershipTransferInitiatedEvent.OutputTuple, RAACTokenOwnershipTransferInitiatedEvent.OutputObject>;
792
- RAACTokenOwnershipTransferInitiated: TypedContractEvent<RAACTokenOwnershipTransferInitiatedEvent.InputTuple, RAACTokenOwnershipTransferInitiatedEvent.OutputTuple, RAACTokenOwnershipTransferInitiatedEvent.OutputObject>;
793
- "RAACTokenOwnershipTransferred(address)": TypedContractEvent<RAACTokenOwnershipTransferredEvent.InputTuple, RAACTokenOwnershipTransferredEvent.OutputTuple, RAACTokenOwnershipTransferredEvent.OutputObject>;
794
- RAACTokenOwnershipTransferred: TypedContractEvent<RAACTokenOwnershipTransferredEvent.InputTuple, RAACTokenOwnershipTransferredEvent.OutputTuple, RAACTokenOwnershipTransferredEvent.OutputObject>;
795
437
  "RewardsDistributed(address,uint256)": TypedContractEvent<RewardsDistributedEvent.InputTuple, RewardsDistributedEvent.OutputTuple, RewardsDistributedEvent.OutputObject>;
796
438
  RewardsDistributed: TypedContractEvent<RewardsDistributedEvent.InputTuple, RewardsDistributedEvent.OutputTuple, RewardsDistributedEvent.OutputObject>;
797
439
  "RoleAdminChanged(bytes32,bytes32,bytes32)": TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
@@ -802,7 +444,5 @@ export interface RAACMinter extends BaseContract {
802
444
  RoleRevoked: TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
803
445
  "Unpaused(address)": TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
804
446
  Unpaused: TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
805
- "UtilizationTargetUpdated(uint256,uint256)": TypedContractEvent<UtilizationTargetUpdatedEvent.InputTuple, UtilizationTargetUpdatedEvent.OutputTuple, UtilizationTargetUpdatedEvent.OutputObject>;
806
- UtilizationTargetUpdated: TypedContractEvent<UtilizationTargetUpdatedEvent.InputTuple, UtilizationTargetUpdatedEvent.OutputTuple, UtilizationTargetUpdatedEvent.OutputObject>;
807
447
  };
808
448
  }