@raac/rpc 1.1.0-beta.4 → 1.1.0-beta.6

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 (482) hide show
  1. package/dist/RPCLibrary.js +52 -21
  2. package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +83 -29
  3. package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +82 -31
  4. package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +114 -5
  5. package/dist/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json +66 -4
  6. package/dist/artifacts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json +465 -0
  7. package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +497 -0
  8. package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +1065 -337
  9. package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +180 -99
  10. package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +39 -2
  11. package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +2 -29
  12. package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +158 -38
  13. package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +2 -2
  14. package/dist/artifacts/core/tokens/RToken.sol/RToken.json +2 -81
  15. package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +557 -223
  16. package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +354 -0
  17. package/dist/artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json +356 -0
  18. package/dist/artifacts/core/vaults/RWAVault.sol/RWAVault.json +1036 -0
  19. package/dist/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +622 -207
  20. package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +2 -2
  21. package/dist/artifacts/zeno/Auction.sol/Auction.json +104 -15
  22. package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +7 -2
  23. package/dist/artifacts/zeno/Zeno.sol/Zeno.json +108 -38
  24. package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +17 -2
  25. package/dist/configs/chains/17000.json +36 -0
  26. package/dist/configs/chains/8453.json +36 -0
  27. package/dist/pools/lendingPool/_helpers.js +29 -0
  28. package/dist/pools/lendingPool/adapters/erc20/getERC20AdapterBalance.js +20 -0
  29. package/dist/pools/lendingPool/adapters/erc20/getERC20AdapterInfo.js +32 -0
  30. package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.js +20 -0
  31. package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.js +32 -0
  32. package/dist/pools/lendingPool/borrowFromLendingPool.js +2 -2
  33. package/dist/pools/lendingPool/borrowFromLendingPoolWithInsurance.js +4 -3
  34. package/dist/pools/lendingPool/calculateInsuranceFee.js +3 -2
  35. package/dist/pools/lendingPool/closeLiquidation.js +3 -2
  36. package/dist/pools/lendingPool/depositAssetToLendingPool.js +60 -0
  37. package/dist/pools/lendingPool/{getPendingReward.js → getAdapters.js} +10 -6
  38. package/dist/pools/lendingPool/getHealthFactor.js +2 -2
  39. package/dist/pools/lendingPool/getLendingPoolInfo.js +4 -13
  40. package/dist/pools/lendingPool/getParameters.js +33 -0
  41. package/dist/pools/lendingPool/getPositionDebt.js +3 -2
  42. package/dist/pools/lendingPool/getPositionScaledDebt.js +3 -2
  43. package/dist/pools/lendingPool/getPositionView.js +5 -2
  44. package/dist/pools/lendingPool/getPositionsScaledDebt.js +1 -0
  45. package/dist/pools/lendingPool/getUserCollateralValue.js +1 -0
  46. package/dist/pools/lendingPool/initializeLiquidation.js +2 -2
  47. package/dist/pools/lendingPool/repayToLendingPool.js +2 -2
  48. package/dist/pools/lendingPool/{withdrawNFTFromLendingPool.js → withdrawAssetFromLendingPool.js} +5 -5
  49. package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterAssetValue.js +21 -0
  50. package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterInfo.js +30 -0
  51. package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterTotalValue.js +20 -0
  52. package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterAssetValue.js +21 -0
  53. package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterDeposits.js +20 -0
  54. package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterInfo.js +30 -0
  55. package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterTotalValue.js +20 -0
  56. package/dist/pools/rwaVault/depositToRWAVault.js +27 -0
  57. package/dist/pools/rwaVault/getNextRandomNFT.js +25 -0
  58. package/dist/pools/rwaVault/getRWAVaultInfo.js +52 -0
  59. package/dist/pools/rwaVault/redeemNFTFromRWAVault.js +27 -0
  60. package/dist/pools/rwaVault/requestRandomSeed.js +27 -0
  61. package/dist/scripts/index.js +219 -152
  62. package/dist/types/RPCLibrary.d.ts +40 -19
  63. package/dist/types/pools/lendingPool/_helpers.d.ts +8 -0
  64. package/dist/types/pools/lendingPool/adapters/erc20/getERC20AdapterBalance.d.ts +4 -0
  65. package/dist/types/pools/lendingPool/adapters/erc20/getERC20AdapterInfo.d.ts +11 -0
  66. package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.d.ts +4 -0
  67. package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.d.ts +11 -0
  68. package/dist/types/pools/lendingPool/borrowFromLendingPool.d.ts +2 -2
  69. package/dist/types/pools/lendingPool/borrowFromLendingPoolWithInsurance.d.ts +2 -2
  70. package/dist/types/pools/lendingPool/calculateInsuranceFee.d.ts +2 -2
  71. package/dist/types/pools/lendingPool/closeLiquidation.d.ts +2 -2
  72. package/dist/types/pools/lendingPool/depositAssetToLendingPool.d.ts +4 -0
  73. package/dist/types/pools/lendingPool/getAdapters.d.ts +8 -0
  74. package/dist/types/pools/lendingPool/getHealthFactor.d.ts +2 -2
  75. package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +1 -3
  76. package/dist/types/pools/lendingPool/getParameters.d.ts +17 -0
  77. package/dist/types/pools/lendingPool/getPositionDebt.d.ts +2 -2
  78. package/dist/types/pools/lendingPool/getPositionScaledDebt.d.ts +2 -2
  79. package/dist/types/pools/lendingPool/getPositionView.d.ts +17 -14
  80. package/dist/types/pools/lendingPool/initializeLiquidation.d.ts +2 -2
  81. package/dist/types/pools/lendingPool/repayToLendingPool.d.ts +2 -2
  82. package/dist/types/pools/lendingPool/withdrawAssetFromLendingPool.d.ts +4 -0
  83. package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterAssetValue.d.ts +4 -0
  84. package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterInfo.d.ts +10 -0
  85. package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterTotalValue.d.ts +4 -0
  86. package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterAssetValue.d.ts +4 -0
  87. package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterDeposits.d.ts +4 -0
  88. package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterInfo.d.ts +10 -0
  89. package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterTotalValue.d.ts +4 -0
  90. package/dist/types/pools/rwaVault/depositToRWAVault.d.ts +4 -0
  91. package/dist/types/pools/rwaVault/getNextRandomNFT.d.ts +8 -0
  92. package/dist/types/pools/rwaVault/getRWAVaultInfo.d.ts +20 -0
  93. package/dist/types/pools/rwaVault/redeemNFTFromRWAVault.d.ts +4 -0
  94. package/dist/types/pools/rwaVault/requestRandomSeed.d.ts +4 -0
  95. package/dist/types/scripts/index.d.ts +0 -1
  96. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.d.ts +103 -0
  97. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver.d.ts +37 -0
  98. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface.d.ts +143 -0
  99. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +3 -0
  100. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI.d.ts +529 -0
  101. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus.d.ts +109 -0
  102. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +6 -0
  103. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus.d.ts +192 -0
  104. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus.d.ts +45 -0
  105. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus.d.ts +155 -0
  106. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +3 -0
  107. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient.d.ts +25 -0
  108. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +1 -0
  109. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +4 -0
  110. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock.d.ts +731 -0
  111. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +1 -0
  112. package/dist/types/typechain-types/@openzeppelin/contracts/access/Ownable2Step.d.ts +77 -0
  113. package/dist/types/typechain-types/@openzeppelin/contracts/access/index.d.ts +1 -0
  114. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts +231 -0
  115. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC2981.d.ts +49 -0
  116. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
  117. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -1
  118. package/dist/types/typechain-types/@openzeppelin/contracts/utils/Errors.d.ts +20 -0
  119. package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/MerkleProof.d.ts +20 -0
  120. package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +1 -0
  121. package/dist/types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +1 -0
  122. package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +0 -1
  123. package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +30 -1
  124. package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal.d.ts +53 -0
  125. package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +115 -0
  126. package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +2 -0
  127. package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +15 -1
  128. package/dist/types/typechain-types/contracts/core/collectors/index.d.ts +2 -0
  129. package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +616 -142
  130. package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +396 -108
  131. package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +623 -0
  132. package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +609 -155
  133. package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +610 -156
  134. package/dist/types/typechain-types/contracts/core/governance/gauges/index.d.ts +1 -0
  135. package/dist/types/typechain-types/contracts/core/governance/index.d.ts +0 -2
  136. package/dist/types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +45 -67
  137. package/dist/types/typechain-types/contracts/core/index.d.ts +4 -0
  138. package/dist/types/typechain-types/contracts/core/lockers/LLamaTemple.d.ts +721 -0
  139. package/dist/types/typechain-types/contracts/core/lockers/index.d.ts +1 -0
  140. package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +69 -12
  141. package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +22 -4
  142. package/dist/types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +40 -2
  143. package/dist/types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +41 -8
  144. package/dist/types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +39 -7
  145. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +232 -0
  146. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter.d.ts +25 -0
  147. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle.d.ts +25 -0
  148. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +3 -0
  149. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.d.ts +254 -0
  150. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts +29 -0
  151. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +2 -0
  152. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +728 -205
  153. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +440 -0
  154. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +538 -0
  155. package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +485 -0
  156. package/dist/types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +7 -0
  157. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +158 -0
  158. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +124 -0
  159. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +135 -79
  160. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +140 -0
  161. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +3 -1
  162. package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.d.ts +203 -0
  163. package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +23 -1
  164. package/dist/types/typechain-types/contracts/core/primitives/WithCompliance.d.ts +25 -0
  165. package/dist/types/typechain-types/contracts/core/primitives/index.d.ts +2 -0
  166. package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +8 -8
  167. package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +94 -11
  168. package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +1 -17
  169. package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +264 -0
  170. package/dist/types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +433 -172
  171. package/dist/types/typechain-types/contracts/core/tokens/index.d.ts +1 -1
  172. package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts +174 -0
  173. package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle.d.ts +25 -0
  174. package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +2 -0
  175. package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.d.ts +178 -0
  176. package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts +29 -0
  177. package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +2 -0
  178. package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +511 -0
  179. package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +5 -0
  180. package/dist/types/typechain-types/contracts/interfaces/IComplianceRegistry.d.ts +63 -0
  181. package/dist/types/typechain-types/contracts/interfaces/INFTLiquidator.d.ts +190 -23
  182. package/dist/types/typechain-types/contracts/interfaces/INFTWhitelist.d.ts +75 -0
  183. package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +9 -0
  184. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +527 -0
  185. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +222 -40
  186. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +351 -0
  187. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +2 -1
  188. package/dist/types/typechain-types/contracts/interfaces/core/governance/index.d.ts +0 -1
  189. package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +45 -67
  190. package/dist/types/typechain-types/contracts/interfaces/core/index.d.ts +2 -0
  191. package/dist/types/typechain-types/contracts/interfaces/core/lockers/ILLamaLocker.d.ts +332 -0
  192. package/dist/types/typechain-types/contracts/interfaces/core/lockers/ILLamaTemple.d.ts +302 -0
  193. package/dist/types/typechain-types/contracts/interfaces/core/lockers/index.d.ts +2 -0
  194. package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +30 -1
  195. package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver.d.ts +49 -0
  196. package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
  197. package/dist/types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +5 -1
  198. package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +31 -24
  199. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +143 -0
  200. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/IERC721Adapter.d.ts +51 -0
  201. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +369 -150
  202. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +102 -0
  203. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/index.d.ts +3 -0
  204. package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap.d.ts +51 -0
  205. package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +19 -64
  206. package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage.d.ts +49 -0
  207. package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/index.d.ts +2 -0
  208. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +6 -6
  209. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +70 -7
  210. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IVaultToken.d.ts +197 -0
  211. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +295 -36
  212. package/dist/types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +1 -0
  213. package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +208 -0
  214. package/dist/types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +89 -0
  215. package/dist/types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +2 -0
  216. package/dist/types/typechain-types/contracts/interfaces/curve/ICurveLiquidityGaugeV5.d.ts +357 -0
  217. package/dist/types/typechain-types/contracts/interfaces/curve/index.d.ts +1 -0
  218. package/dist/types/typechain-types/contracts/interfaces/index.d.ts +2 -4
  219. package/dist/types/typechain-types/contracts/interfaces/zeno/IAuction.d.ts +18 -3
  220. package/dist/types/typechain-types/contracts/interfaces/zeno/IZENO.d.ts +31 -1
  221. package/dist/types/typechain-types/contracts/libraries/governance/LockManager.d.ts +9 -2
  222. package/dist/types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +34 -1
  223. package/dist/types/typechain-types/contracts/libraries/governance/index.d.ts +0 -3
  224. package/dist/types/typechain-types/contracts/libraries/math/TimeWeightedAverage.d.ts +1 -25
  225. package/dist/types/typechain-types/contracts/mocks/core/collectors/MockWETH.d.ts +225 -0
  226. package/dist/types/typechain-types/contracts/mocks/core/collectors/index.d.ts +1 -0
  227. package/dist/types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock.d.ts +56 -0
  228. package/dist/types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge.d.ts +35 -0
  229. package/dist/types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +2 -0
  230. package/dist/types/typechain-types/contracts/mocks/core/curve/index.d.ts +2 -0
  231. package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +2 -6
  232. package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
  233. package/dist/types/typechain-types/contracts/mocks/core/index.d.ts +4 -0
  234. package/dist/types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker.d.ts +394 -0
  235. package/dist/types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +1 -0
  236. package/dist/types/typechain-types/contracts/mocks/core/lockers/index.d.ts +2 -0
  237. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle.d.ts +25 -0
  238. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts +33 -0
  239. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +2 -0
  240. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +2 -2
  241. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockVRFCoordinatorV2.d.ts +349 -148
  242. package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +41 -8
  243. package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +39 -7
  244. package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +2 -0
  245. package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +367 -140
  246. package/dist/types/typechain-types/contracts/mocks/core/tokens/MockFeeCollectorToken.d.ts +1 -5
  247. package/dist/types/typechain-types/contracts/mocks/core/tokens/MockToken.d.ts +1 -5
  248. package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +0 -1
  249. package/dist/types/typechain-types/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +68 -139
  250. package/dist/types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +19 -9
  251. package/dist/types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +37 -18
  252. package/dist/types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +0 -3
  253. package/dist/types/typechain-types/contracts/mocks/tests/index.d.ts +0 -2
  254. package/dist/types/typechain-types/contracts/zeno/Auction.d.ts +37 -8
  255. package/dist/types/typechain-types/contracts/zeno/ZENO.d.ts +62 -6
  256. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +1 -1
  257. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +1 -1
  258. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +1 -1
  259. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface__factory.d.ts +93 -0
  260. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver__factory.d.ts +25 -0
  261. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface__factory.d.ts +191 -0
  262. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +3 -0
  263. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI__factory.d.ts +663 -0
  264. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus__factory.d.ts +139 -0
  265. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +4 -0
  266. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus__factory.d.ts +194 -0
  267. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus__factory.d.ts +27 -0
  268. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus__factory.d.ts +155 -0
  269. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +3 -0
  270. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +32 -0
  271. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +1 -0
  272. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +2 -0
  273. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +944 -0
  274. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +1 -0
  275. package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.d.ts +95 -0
  276. package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +1 -0
  277. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.d.ts +289 -0
  278. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC2981__factory.d.ts +43 -0
  279. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
  280. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +1 -1
  281. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -1
  282. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +1 -13
  283. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +50 -0
  284. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +1 -1
  285. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +9 -1
  286. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +1 -1
  287. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +26 -0
  288. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +1 -0
  289. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +1 -0
  290. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +1 -1
  291. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +0 -1
  292. package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +65 -21
  293. package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal__factory.d.ts +49 -0
  294. package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +177 -0
  295. package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +2 -0
  296. package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +15 -1
  297. package/dist/types/typechain-types/factories/contracts/core/collectors/index.d.ts +1 -0
  298. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +698 -144
  299. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +461 -137
  300. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +848 -0
  301. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +686 -162
  302. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +689 -155
  303. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +1 -0
  304. package/dist/types/typechain-types/factories/contracts/core/governance/index.d.ts +0 -1
  305. package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +42 -80
  306. package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +1 -1
  307. package/dist/types/typechain-types/factories/contracts/core/index.d.ts +2 -0
  308. package/dist/types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +1028 -0
  309. package/dist/types/typechain-types/factories/contracts/core/lockers/index.d.ts +1 -0
  310. package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +66 -25
  311. package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +5 -1
  312. package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +37 -1
  313. package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +90 -6
  314. package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +64 -9
  315. package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +49 -3
  316. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +369 -0
  317. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter__factory.d.ts +21 -0
  318. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle__factory.d.ts +17 -0
  319. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +3 -0
  320. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter__factory.d.ts +393 -0
  321. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts +21 -0
  322. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +2 -0
  323. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +578 -0
  324. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +881 -306
  325. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +716 -0
  326. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +636 -0
  327. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +5 -0
  328. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +281 -0
  329. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +227 -0
  330. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +255 -0
  331. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +151 -85
  332. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +3 -1
  333. package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry__factory.d.ts +276 -0
  334. package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +29 -1
  335. package/dist/types/typechain-types/factories/contracts/core/primitives/WithCompliance__factory.d.ts +17 -0
  336. package/dist/types/typechain-types/factories/contracts/core/primitives/index.d.ts +2 -0
  337. package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +1 -21
  338. package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +8 -8
  339. package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +1 -1
  340. package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +124 -31
  341. package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +1 -1
  342. package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +1 -61
  343. package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +465 -0
  344. package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +446 -186
  345. package/dist/types/typechain-types/factories/contracts/core/tokens/index.d.ts +1 -1
  346. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts +285 -0
  347. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle__factory.d.ts +17 -0
  348. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +2 -0
  349. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +287 -0
  350. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts +21 -0
  351. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +2 -0
  352. package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +808 -0
  353. package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +3 -0
  354. package/dist/types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +67 -0
  355. package/dist/types/typechain-types/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +213 -6
  356. package/dist/types/typechain-types/factories/contracts/interfaces/INFTWhitelist__factory.d.ts +77 -0
  357. package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +32 -0
  358. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +643 -0
  359. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +239 -65
  360. package/dist/types/typechain-types/factories/{@openzeppelin/contracts/token/ERC721/extensions/ERC721Wrapper__factory.d.ts → contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts} +209 -201
  361. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +2 -1
  362. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/index.d.ts +0 -1
  363. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +41 -79
  364. package/dist/types/typechain-types/factories/contracts/interfaces/core/index.d.ts +1 -0
  365. package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaLocker__factory.d.ts +390 -0
  366. package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaTemple__factory.d.ts +390 -0
  367. package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/index.d.ts +2 -0
  368. package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver__factory.d.ts +35 -0
  369. package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +33 -0
  370. package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
  371. package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +4 -0
  372. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +14 -0
  373. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +24 -29
  374. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +189 -0
  375. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IERC721Adapter__factory.d.ts +53 -0
  376. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +183 -0
  377. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +428 -143
  378. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +3 -0
  379. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +53 -0
  380. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage__factory.d.ts +56 -0
  381. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +26 -75
  382. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +2 -0
  383. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +6 -6
  384. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +79 -4
  385. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IVaultToken__factory.d.ts +223 -0
  386. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +355 -29
  387. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +1 -0
  388. package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +256 -0
  389. package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +119 -0
  390. package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +2 -0
  391. package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveLiquidityGaugeV5__factory.d.ts +503 -0
  392. package/dist/types/typechain-types/factories/contracts/interfaces/curve/index.d.ts +1 -0
  393. package/dist/types/typechain-types/factories/contracts/interfaces/index.d.ts +2 -4
  394. package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +44 -1
  395. package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +42 -0
  396. package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +1 -1
  397. package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +10 -1
  398. package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +47 -1
  399. package/dist/types/typechain-types/factories/contracts/libraries/governance/index.d.ts +0 -3
  400. package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -29
  401. package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
  402. package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__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 +353 -0
  405. package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +1 -0
  406. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +65 -0
  407. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge__factory.d.ts +21 -0
  408. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +2 -0
  409. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/index.d.ts +1 -0
  410. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +1 -15
  411. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
  412. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +1 -1
  413. package/dist/types/typechain-types/factories/contracts/mocks/core/index.d.ts +2 -0
  414. package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +591 -0
  415. package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +1 -0
  416. package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/index.d.ts +1 -0
  417. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle__factory.d.ts +17 -0
  418. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts +42 -0
  419. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +2 -0
  420. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +2 -2
  421. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +1 -1
  422. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +490 -166
  423. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +67 -12
  424. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +49 -3
  425. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +1 -0
  426. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +1 -21
  427. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +427 -132
  428. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +1 -1
  429. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +1 -21
  430. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +1 -1
  431. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +1 -1
  432. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +1 -1
  433. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +1 -1
  434. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +1 -21
  435. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +1 -1
  436. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +1 -1
  437. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +8 -4
  438. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
  439. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -21
  440. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -15
  441. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -15
  442. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +1 -1
  443. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +1 -1
  444. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +0 -1
  445. package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -21
  446. package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
  447. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +53 -122
  448. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +21 -12
  449. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +39 -14
  450. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +0 -3
  451. package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +1 -1
  452. package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +1 -1
  453. package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +1 -1
  454. package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +1 -1
  455. package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +1 -1
  456. package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +1 -1
  457. package/dist/types/typechain-types/factories/contracts/mocks/tests/index.d.ts +0 -1
  458. package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +5 -1
  459. package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +83 -14
  460. package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +13 -1
  461. package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +87 -31
  462. package/dist/types/typechain-types/index.d.ts +112 -42
  463. package/dist/types/utils/artifacts.d.ts +767 -226
  464. package/dist/utils/artifacts.js +13 -0
  465. package/package.json +1 -1
  466. package/dist/contracts/indexToken/getNextRandomNFT.js +0 -30
  467. package/dist/contracts/indexToken/redeemNFT.js +0 -39
  468. package/dist/pools/lendingPool/claimReward.js +0 -22
  469. package/dist/pools/lendingPool/depositNFTToLendingPool.js +0 -50
  470. package/dist/pools/lendingPool/getAllUserData.js +0 -28
  471. package/dist/pools/stabilityPool/calculateRAACRewards.js +0 -21
  472. package/dist/pools/stabilityPool/depositNFTToStabilityPool.js +0 -40
  473. package/dist/types/contracts/indexToken/getNextRandomNFT.d.ts +0 -7
  474. package/dist/types/contracts/indexToken/redeemNFT.d.ts +0 -4
  475. package/dist/types/pools/lendingPool/claimReward.d.ts +0 -4
  476. package/dist/types/pools/lendingPool/depositNFTToLendingPool.d.ts +0 -4
  477. package/dist/types/pools/lendingPool/getAllUserData.d.ts +0 -17
  478. package/dist/types/pools/lendingPool/getPendingReward.d.ts +0 -4
  479. package/dist/types/pools/lendingPool/withdrawNFTFromLendingPool.d.ts +0 -4
  480. package/dist/types/pools/stabilityPool/calculateRAACRewards.d.ts +0 -4
  481. package/dist/types/pools/stabilityPool/depositNFTToStabilityPool.d.ts +0 -4
  482. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Wrapper.d.ts +0 -261
@@ -0,0 +1,1028 @@
1
+ import { ContractFactory, ContractTransactionResponse } from "ethers";
2
+ import type { Signer, AddressLike, ContractDeployTransaction, ContractRunner } from "ethers";
3
+ import type { NonPayableOverrides } from "../../../../common";
4
+ import type { LLamaTemple, LLamaTempleInterface } from "../../../../contracts/core/lockers/LLamaTemple";
5
+ type LLamaTempleConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
6
+ export declare class LLamaTemple__factory extends ContractFactory {
7
+ constructor(...args: LLamaTempleConstructorParams);
8
+ getDeployTransaction(_nft: AddressLike, _locker: AddressLike, _owner: AddressLike, overrides?: NonPayableOverrides & {
9
+ from?: string;
10
+ }): Promise<ContractDeployTransaction>;
11
+ deploy(_nft: AddressLike, _locker: AddressLike, _owner: AddressLike, overrides?: NonPayableOverrides & {
12
+ from?: string;
13
+ }): Promise<LLamaTemple & {
14
+ deploymentTransaction(): ContractTransactionResponse;
15
+ }>;
16
+ connect(runner: ContractRunner | null): LLamaTemple__factory;
17
+ static readonly bytecode = "0x6080346200014457601f62002f8738819003918201601f19168301916001600160401b03831184841017620001495780849260609460405283398101031262000144576200004d816200015f565b906200006a604062000062602084016200015f565b92016200015f565b906001600160a01b038083169182156200012b576200011a94600054938360018060a01b0319958287821617600055167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a360018055600160ff19601254161760125560035490610100600160a81b039060081b1690610100600160a81b0319161760035516906004541617600455620001078162000174565b506200011381620001f5565b5062000298565b50604051612c309081620003378239f35b604051631e4fbdf760e01b815260006004820152602490fd5b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036200014457565b6001600160a01b031660008181527fac33ff75c19e70fe83507db0d683fd3465c996598dc972688b7ace676c89077b602052604081205490919060ff16620001f15781805260026020526040822081835260205260408220600160ff19825416179055339160008051602062002f678339815191528180a4600190565b5090565b6001600160a01b031660008181527faa2c41c8db999cab41dbf71397ccd99cf3349690c12e02929b93abbcc53e5b9360205260408120549091907f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9060ff16620002935780835260026020526040832082845260205260408320600160ff1982541617905560008051602062002f67833981519152339380a4600190565b505090565b6001600160a01b031660008181527f94996c563abb815835b318c981fa050298066bd55a6db8b3a8c1aff30a38e7ef60205260408120549091907f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b089060ff16620002935780835260026020526040832082845260205260408320600160ff1982541617905560008051602062002f67833981519152339380a460019056fe60806040908082526004918236101561001757600080fd5b600092833560e01c92836301ffc9a714611cd3575082630e00ee2114611cb7578263150b7a0214611c105782631e83409a14611bb2578263248a9ca314611b865782632aceb534146119d65782632f2ff15d146119ad578263303657f31461155957826332cb6b0c1461153c57826336568abe146114f65782633a583d75146114605782633f4ba83a146113f557826344b056ed1461131357826347ccca02146112e6578263499df2e4146112a45782635431c94e146111a557826356154389146111645782635c975abb146111405782635d36598f14610bd557826368ef292414610bb15782636d81b8dd14610b17578263715018a614610acf5782637bb7bed114610a8d5782638456cb5914610a325782638da5cb5b14610a0a57826391d14854146109c25782639fd4557414610994578263a217fddf14610979578263a70b9f0c1461095b578263b9e35db0146108b6578263c2abb40a1461081a578263c4f59f9b14610755578263c935125f146106f1578263d4570c1c146106bc578263d547741f1461067d578263d7b96d4e14610654578263e15fec181461057e578263e63ab1e914610555578263e9e3665314610509578263ec87621c146104e0578263f21b3a1214610395578263f2fde38b1461031f578263f4dadc61146102c657508163f90de52714610234575063fff6cae91461021657600080fd5b3461023157806003193601126102315761022e61237e565b80f35b80fd5b9050346102c257602090816003193601126102be576001600160a01b03610259611d26565b168352600f8252808320815190819485928583549182815201928252858220915b868282106102a75785906102a38861029484890385611db6565b51928284938452830190611e2c565b0390f35b83548552889550909301926001928301920161027a565b8280fd5b5080fd5b9150346102be5760203660031901126102be578060a09383358152600e60205220600180851b03815416926001820154926002830154916003840154930154938151958652602086015284015260608301526080820152f35b909150346102be5760203660031901126102be5761033b611d26565b9061034461217f565b6001600160a01b0391821692831561037f57505082546001600160a01b031981168317845516600080516020612bdb8339815191528380a380f35b51631e4fbdf760e01b8152908101849052602490fd5b8382346102c257806003193601126102c257823590602435906103b6612238565b6103be612256565b60ff60125416156104d15781845260206010815260ff8286205416156104c157838552600e815281852080549091906001600160a01b031633036104b15760038201918254928584146104a157338852601183528488208489528352848820805460001981019190821161048e57553388526011835284882086895283528488208054906001820180921161048e5755859055429088015582519485528401528201527fb6821b2a56d72ea5ecc944bf1bf66fb7e2e3e9edb83676ca7b3729947efcab6090606090a16001805580f35b634e487b7160e01b8a5260118b5260248afd5b8451634a7f394f60e01b81528990fd5b8251634a7f394f60e01b81528790fd5b81516310879dfb60e31b81528690fd5b51635481cae760e01b81528490fd5b8382346102c257816003193601126102c25760209051600080516020612b9b8339815191528152f35b8382346102c25760ff8160209361051f36611f02565b61054087855183819483830196873781018683820152038084520182611db6565b51902081526010855220541690519015158152f35b8382346102c257816003193601126102c25760209051600080516020612bbb8339815191528152f35b8382346102c257602090816003193601126102be576001600160a01b036105a3611d26565b168352600f8252808320918151808483829654938481520190875283872092875b8582821061063e575050506105db92500384611db6565b8251906105e7826122e2565b93855b8381106105fe578451806102a38882611e90565b8061060c6106399284612356565b518852600e845261061e868920612279565b6106288289612356565b526106338188612356565b506121ab565b6105ea565b85548452600195860195899550930192016105c4565b909150346102be57826003193601126102be575490516001600160a01b03909116815260209150f35b9150346102be57806003193601126102be576106b891356106b360016106a1611d41565b93838752600260205286200154612062565b612108565b5080f35b8382346102c257806003193601126102c2576020906106ea6106dc611d26565b6106e4611d41565b90612a89565b9051908152f35b909150346102be5760203660031901126102be5735908115158092036102be577f75d4276fb2300787f700487a5a35f807d62e64634ab1e7e100b159a9745640ea9160209161073e612018565b60ff196012541660ff83161760125551908152a180f35b5082346102315780600319360112610231578151600580548083529083526020939284830192909183907f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db090845b8181106107fd57505050816107b9910382611db6565b83519485948186019282875251809352850193925b8281106107dd57505050500390f35b83516001600160a01b0316855286955093810193928101926001016107ce565b82546001600160a01b0316845292880192600192830192016107a3565b9150346102be5761082a36611f02565b610832612018565b6108546020845183819483830196873781018883820152038084520182611db6565b51902091828452601060205260ff82852054166108a8575081835260106020528220805460ff191660011790557f221882008283517cfe70738a0f77181938eb9a54e147a544e31a8c2ff70bbf418280a280f35b90516332bc557360e21b8152fd5b50823461023157602091826003193601126102c2576108d3611d26565b92600554906108e18261285a565b6001600160a01b0395861695909490815b848110610906578551806102a38982611dd9565b808261091461095693611f4c565b90549060031b1c168985526007865287852081865286528785205488519161093b83611d9b565b82528682015261094b828a612356565b526106338189612356565b6108f2565b8382346102c257816003193601126102c2576020905162093a808152f35b8382346102c257816003193601126102c25751908152602090f35b909150346102be5760203660031901126102be578160209360ff923581526010855220541690519015158152f35b909150346102be57816003193601126102be578160209360ff926109e4611d41565b90358252600286528282206001600160a01b039091168252855220549151911615158152f35b8382346102c257816003193601126102c257905490516001600160a01b039091168152602090f35b8382346102c257816003193601126102c25760207f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25891610a70611fb0565b610a78612238565b600160ff19600354161760035551338152a180f35b909150346102be5760203660031901126102be5735916005548310156102315750610ab9602092611f4c565b905491519160018060a01b039160031b1c168152f35b8334610231578060031936011261023157610ae861217f565b80546001600160a01b03198116825581906001600160a01b0316600080516020612bdb8339815191528280a380f35b9150346102be57610b2736611f02565b610b2f612018565b610b516020845183819483830196873781018883820152038084520182611db6565b51902091828452601060205260ff828520541615610ba3575081835260106020528220805460ff191690557fd4ef677ab9168b8fb72b16deb4a8c2773c0959e26df50eb9461d2563b01236998280a280f35b9051636ba24dfd60e01b8152fd5b8382346102c257816003193601126102c25760209060ff6012541690519015158152f35b9150346102be5760209081600319360112610dcf5782356001600160401b03811161113c57610c079036908501611e60565b929093610c12612256565b831561112e57338652600a8252855b848110610f575750610c3161237e565b80546001600160a01b039290831687813b15610231578551635d36598f60e01b8152918290818381610c668c8e8b840161220f565b03925af18015610f4d57610f3e575b50610c7f336128bb565b50670de0b6b3a76400008502670de0b6b3a763ffff1986820401610f2b57338852600a8252848820610cb28282546122be565b9055610cc081600d546122be565b600d5560055490885b828110610ec257505050338752600a81528387205415610dd3575b600a9033885252600080516020612b7b833981519152610d0d84882054855191829133836126fc565b0390a185805b858110610d565750835133907e2078e61f1dc37aed5aac005620fc14a55c9972fd624a93a558eaa18440de159080610d4c898b8361220f565b0390a26001805580f35b8360035460081c16610d6982888a6121d0565b3590803b15610dcf578651632142170760e11b81529184918391829084908290610d979033308d85016121e0565b03925af18015610dc55790610db19291610db657506121ab565b610d13565b610dbf90611d57565b38610633565b86513d85823e3d90fd5b8380fd5b600b8152838720805460ff191690559493929190865b600c80549081831015610eb257610dff83611f7d565b905460039391841b1c86163314610e2157505050610e1c906121ab565b610de9565b9091926000999495969798991991828101908111610e9f5790610e5788610e4a610e5d94611f7d565b905490881b1c1691611f7d565b90612a42565b81548015610e8c57600a9493929187910192610e7884611f7d565b81939154921b1b19169055555b9050610ce4565b634e487b7160e01b8b526031865260248bfd5b634e487b7160e01b8c526011875260248cfd5b5050509091929394600a90610e85565b89610ef1610eec848a8a610ed587611f4c565b90549060031b1c169485815260098a522054612717565b612a60565b90338c5260068652888c20908c528552878b2080548c8382019384129112908015821691151617610e9f5755610f26906121ab565b610cc9565b634e487b7160e01b885260118352602488fd5b610f4790611d57565b38610c75565b85513d8a823e3d90fd5b9395929091610f678588886121d0565b3590818552600e91828252610f7d848720612279565b983360018060a01b038b51160361111e57828a01516224ea00810180911161110b5742106110fb57338752600f835284872098875b8a54808210156110eb578490610fc8838e611f98565b929054600393841b1c14610fe6575050610fe1906121ab565b610fb2565b90929b9160009d949b979699989a9d19918281019081116110d85761101e6110116110359286611f98565b905490871b1c9285611f98565b819391549060031b91821b91600019901b19161790565b9055815480156110c55781019261104c8484611f98565b81939154921b1b19169055555b338a526011908187526060888c209101518b528652868a2080549160001983019283116110b45750906110af949392915589528452878386822082815582600182015582600282015582600382015501556121ab565b610c21565b634e487b7160e01b8c52865260248bfd5b634e487b7160e01b8e526031895260248efd5b634e487b7160e01b8f5260118a5260248ffd5b5050985096929194939598611059565b84516373d6795360e01b81528690fd5b634e487b7160e01b885260118752602488fd5b8451634a7f394f60e01b81528690fd5b8251634a7f394f60e01b8152fd5b8480fd5b8382346102c257816003193601126102c25760209060ff6003541690519015158152f35b8382346102c257806003193601126102c25760209181906001600160a01b0361118b611d26565b168152601184528181206024358252845220549051908152f35b9150346102be57806003193601126102be576111bf611d26565b916111c8611d41565b9084805260209360028552838620338752855260ff848720541615611287576001600160a01b0390838216156112775716938351916370a0823160e01b835230908301528082602481885afa93841561126e5750859361123e575b50508161122e578380f35b61123792612979565b3880808380f35b9080929350813d8311611267575b6112568183611db6565b81010312610dcf5751903880611223565b503d61124c565b513d87823e3d90fd5b8451634a7f394f60e01b81528390fd5b835163e2517d3f60e01b8152338184015260248101879052604490fd5b8382346102c257602080926112dc6112bb36611f02565b85949194519381859284840197883782019083820152038084520182611db6565b5190209051908152f35b8382346102c257816003193601126102c257600354905160089190911c6001600160a01b03168152602090f35b8382346102c257816003193601126102c25781825b61045781106113b8575061133b906122e2565b9082805b6104578210611355578251806102a38682611e90565b818552600e60205282852080549092906001600160a01b0316611384575b61137e9192506121ab565b9061133f565b6113af8261139e61139861137e95926121ab565b95612279565b6113a88289612356565b5286612356565b50829150611373565b808452600e602052828420546001600160a01b03166113e0575b6113db906121ab565b611328565b906113ed6113db916121ab565b9190506113d2565b909150346102be57826003193601126102be57611410611fb0565b6003549060ff821615611452575060ff1916600355513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90602090a180f35b8251638dfc202b60e01b8152fd5b50823461023157602091826003193601126102c25761147d611d26565b926005549061148b8261285a565b935b8281106114a1578351806102a38782611dd9565b806114ae6114f192611f4c565b905460039190911b1c6001600160a01b03166114ca8189612a89565b8651916114d683611d9b565b8252848201526114e68288612356565b526106338187612356565b61148d565b8382346102c257806003193601126102c257611510611d41565b90336001600160a01b0383160361152d57506106b8919235612108565b5163334bd91960e11b81528390fd5b8382346102c257816003193601126102c257602090516104578152f35b9150346102be57806003193601126102be5781356001600160401b038111610dcf576115889036908401611e60565b91909260248035611597612238565b61159f612256565b841561199d578087526020906010825260ff85892054161561198d576115c361237e565b875b868110611868575033885260119081835285892090895282528488206115ec878254612202565b9055670de0b6b3a7640000860290670de0b6b3a763ffff1987830401611858579088939291338552600a8352868520611626838254612202565b905561163482600d54612202565b600d5560055491855b8381106117ce5750505050338352600b8152848320805460ff81161561177a575b5050600a9033845252600080516020612b7b83398151915261168985842054865191829133836126fc565b0390a160018060a01b03908160035460081c16908285541690823b1561113c5760448592836001958a51968795869463a22cb46560e01b86528c8601528401525af1801561177057611761575b5082541691823b156102c25761170492868387938751968795869485936342cb086360e11b8552840161220f565b03925af1801561175757917fffd806d2d894faffc67e28336bf4017f117cdaeaf18520f7d85fe0fb4899df1d9391610d4c93611748575b505191829133958361220f565b61175190611d57565b3861173b565b82513d87823e3d90fd5b61176a90611d57565b386116d6565b85513d85823e3d90fd5b60ff19166001179055600c5491925090600160401b8110156117bc578792916117b56117ae836001600a9501600c55611f7d565b3391612a42565b903861165e565b634e487b7160e01b8852604184528288fd5b909192939495611806610eec848b6117e586611f4c565b905460039190911b1c6001600160a01b031680865260098b52942054612717565b90338d5260068752898d20908d528652888c2080548d8382039312818412811691841390151617611847575561183b906121ab565b908a959493929161163d565b634e487b7160e01b8d52848952878dfd5b634e487b7160e01b895284528288fd5b61187381888a6121d0565b3560018060a01b0360038b82825460081c16803b156102c25781856118b1928c838f51809681958294632142170760e11b84523090339085016121e0565b03925af1801561198357928a9289928d9695611974575b508551946118d586611d80565b338652838601904282528787019789895260608801938c8552600e60808a01974289528c8352522096511660018060a01b0319875416178655519560019687870155516002860155519084015551910155338b52600f8552878b20805491600160401b83101561196257826119569261101e9261195d979695018155611f98565b90556121ab565b6115c5565b634e487b7160e01b8d5260418952878dfd5b61197d90611d57565b386118c8565b8b513d84823e3d90fd5b84516310879dfb60e31b81528490fd5b8351634a7f394f60e01b81528390fd5b9150346102be57806003193601126102be576106b891356119d160016106a1611d41565b612088565b8390346102c257602092836003193601126102be57926001600160a01b036119fc611d26565b168352600f81528383209184519283838254918281520191865283862090865b818110611b725750505083611a32910384611db6565b825191611a3e83612a10565b611a47846122cb565b90611a5488519283611db6565b848252611a60856122cb565b8284019590601f1901368737611a7581612a10565b94885b828110611af057505050918091611aad8994611aa09a519a8b9960808b5260808b0190611e2c565b90898203858b0152611e2c565b938785039088015251928381520193955b828110611ad95785806102a387878382036060850152611e2c565b865185529581019587955093810193600101611abe565b80611b04611b66928b9d9a9c98999b612356565b5187528b611b4b82600e92838c5260018d8c200154611b23838b612356565b52611b2e8282612356565b518b52838c5260038d8c200154611b45838c612356565b52612356565b5188528852828988200154611b60828c612356565b526121ab565b99979594989699611a78565b825484529285019260019283019201611a1c565b909150346102be5760203660031901126102be5781602093600192358152600285522001549051908152f35b9083346102315760203660031901126102315750611bce611d26565b91611bd7612256565b6001600160a01b03831615611c025750611bf36102a3926128bb565b90600180555191829182611dd9565b9051634e46966960e11b8152fd5b90833461023157608036600319011261023157611c2b611d26565b50611c34611d41565b50606435926001600160401b03908185116102be57366023860112156102be5784810135918211611ca45750825193611c77601f8301601f191660200186611db6565b81855236602483830101116102be57906020948160248794018483013701015251630a85bd0160e11b8152f35b634e487b7160e01b835260419052602482fd5b9150346102be57826003193601126102be576020925051908152f35b8491346102be5760203660031901126102be573563ffffffff60e01b81168091036102be5760209250637965db0b60e01b8114908115611d15575b5015158152f35b6301ffc9a760e01b14905083611d0e565b600435906001600160a01b0382168203611d3c57565b600080fd5b602435906001600160a01b0382168203611d3c57565b6001600160401b038111611d6a57604052565b634e487b7160e01b600052604160045260246000fd5b60a081019081106001600160401b03821117611d6a57604052565b604081019081106001600160401b03821117611d6a57604052565b601f909101601f19168101906001600160401b03821190821017611d6a57604052565b60208082019080835283518092528060408094019401926000905b838210611e0357505050505090565b845180516001600160a01b03168752830151868401529485019493820193600190910190611df4565b90815180825260208080930193019160005b828110611e4c575050505090565b835185529381019392810192600101611e3e565b9181601f84011215611d3c578235916001600160401b038311611d3c576020808501948460051b010111611d3c57565b60208082019080835283518092528060408094019401926000905b838210611eba57505050505090565b845180516001600160a01b0316875280840151878501528082015187830152606080820151908801526080908101519087015260a09095019493820193600190910190611eab565b906020600319830112611d3c576001600160401b039160043590838211611d3c5780602383011215611d3c578160040135938411611d3c5760248483010111611d3c576024019190565b600554811015611f6757600560005260206000200190600090565b634e487b7160e01b600052603260045260246000fd5b600c54811015611f6757600c60005260206000200190600090565b8054821015611f675760005260206000200190600090565b3360009081527faa2c41c8db999cab41dbf71397ccd99cf3349690c12e02929b93abbcc53e5b936020526040902054600080516020612bbb8339815191529060ff1615611ffa5750565b6044906040519063e2517d3f60e01b82523360048301526024820152fd5b3360009081527f94996c563abb815835b318c981fa050298066bd55a6db8b3a8c1aff30a38e7ef6020526040902054600080516020612b9b8339815191529060ff1615611ffa5750565b80600052600260205260406000203360005260205260ff6040600020541615611ffa5750565b906000918083526002602052604083209160018060a01b03169182845260205260ff604084205416156000146121035780835260026020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b906000918083526002602052604083209160018060a01b03169182845260205260ff604084205416600014612103578083526002602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b6000546001600160a01b0316330361219357565b60405163118cdaa760e01b8152336004820152602490fd5b60001981146121ba5760010190565b634e487b7160e01b600052601160045260246000fd5b9190811015611f675760051b0190565b6001600160a01b03918216815291166020820152604081019190915260600190565b919082018092116121ba57565b602080825281018390526001600160fb1b038311611d3c5760409260051b809284830137010190565b60ff6003541661224457565b60405163d93c066560e01b8152600490fd5b600260015414612267576002600155565b604051633ee5aeb560e01b8152600490fd5b9060405161228681611d80565b82546001600160a01b031681526001830154602082015260028301546040820152600383015460608201526004909201546080830152565b919082039182116121ba57565b6001600160401b038111611d6a5760051b60200190565b906122ec826122cb565b6040906122fb82519182611db6565b838152809361230c601f19916122cb565b019160005b83811061231e5750505050565b602090825161232c81611d80565b60008152826000818301526000858301526000606083015260006080830152828601015201612311565b8051821015611f675760209160051b010190565b51906001600160a01b0382168203611d3c57565b600480546040805163c4f59f9b60e01b815292939290916000916001600160a01b0391839082908890829086165afa9081156126f2578391612657575b50825b815181101561244a57826123d28284612356565b5116808552600860205285852080549060ff8216156123fd575b5050506123f8906121ab565b6123be565b6001809260ff19161790556005805491600160401b83101561243757820190556123f8929161242f91610e5790611f4c565b9038806123ec565b634e487b7160e01b885260418b52602488fd5b50509080929181818754166024855180978193630f41a04d60e11b8352308c8401525af193841561264d578294612590575b50815b845181101561258757816124938287612356565b515116602090816124a48489612356565b51015191821580158061257c575b6124c9575b505050506124c4906121ab565b61247f565b8287526008825260ff88882054161561256c5761255c57600d54801561254c57918391600961251d7fe34918ff1c7084970068b53fd71ad6d8b04e9f15d3886cbf006443e6cdc52ea6956124c4989761279e565b91838a5252612530898920918254612202565b90556125408851928392836126fc565b0390a1903880806124b7565b8751633a7be37b60e01b81528b90fd5b8651633853986560e01b81528a90fd5b875163dfde867160e01b81528b90fd5b50600d5415156124b2565b50505050509050565b9093503d8083833e6125a28183611db6565b8101906020908181840312610dcf578051906001600160401b03821161113c57019082601f83011215610dcf5781516125da816122cb565b936125e787519586611db6565b818552828086019260061b85010193818511612649578301915b848310612614575050505050923861247c565b878383031261264957838891825161262b81611d9b565b6126348661236a565b81528286015183820152815201920191612601565b8680fd5b83513d84823e3d90fd5b90503d8084833e6126688183611db6565b810190602090818184031261113c578051906001600160401b0382116126ee57019180601f8401121561113c5782516126a0816122cb565b936126ad88519586611db6565b818552838086019260051b820101928311612649578301905b8282106126d75750505050386123bb565b8380916126e38461236a565b8152019101906126c6565b8580fd5b84513d85823e3d90fd5b6001600160a01b039091168152602081019190915260400190565b906000198183098183029182808310920391808303921461278d57670de0b6b3a7640000908282111561277a577faccb18165bd6fe31ae1cf318dc5b51eee0e1ba569b88cd74c1773b91fac10669940990828211900360ee1b910360121c170290565b634e487b7160005260116020526024601cfd5b5050670de0b6b3a764000091500490565b670de0b6b3a7640000916000198383099280830292838086109503948086039514612836578483111561281d579082910981600003821680920460028082600302188083028203028083028203028083028203028083028203028083028203028092029003029360018380600003040190848311900302920304170290565b82634e487b71600052156003026011186020526024601cfd5b505080925015612844570490565b634e487b7160e01b600052601260045260246000fd5b90612864826122cb565b60409061287382519182611db6565b8381528093612884601f19916122cb565b0191600090815b848110612899575050505050565b60209082516128a781611d9b565b84815282858183015282870101520161288b565b906128c461237e565b6005916128d1835461285a565b9160005b845481101561297257806128eb61293692611f4c565b905460039190911b1c6001600160a01b03166129078133612a89565b8061293b575b6040519161291a83611d9b565b8252602082015261292b8287612356565b526106338186612356565b6128d5565b3360005260206007815260409081600020908460005252600020612960828254612202565b905561296d818784612979565b61290d565b5092505090565b916020916129a36129b16000936040519283918783019563a9059cbb60e01b8752602484016126fc565b03601f198101835282611db6565b519082855af115612a04576000513d6129fb57506001600160a01b0381163b155b6129d95750565b604051635274afe760e01b81526001600160a01b039091166004820152602490fd5b600114156129d2565b6040513d6000823e3d90fd5b90612a1a826122cb565b612a276040519182611db6565b8281528092612a38601f19916122cb565b0190602036910137565b919082549060031b9160018060a01b03809116831b921b1916179055565b6001600160ff1b038111612a715790565b6024906040519063123baf0360e11b82526004820152fd5b6001600160a01b039182166000818152600860209081526040808320549295919490939260ff1615612b69571691828552600a845280852054908115612b6157612afc92600686528187208188528652818720549487526007865281872090875285526009818720549552852054612717565b9083811315612b3057808210612b2a57612b15916122be565b8181111561210357612b2792506122be565b90565b50505090565b600160ff1b8114612b4d5790612b4891840390612202565b612b15565b634e487b7160e01b84526011600452602484fd5b505050505090565b835163dfde867160e01b8152600490fdfee6382c9ed5c0c33bb05042f73cf6cbe9cb25639f9a711e094ee563bc9cb80e2c241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0865d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0a2646970667358221220f9cdde94b2b1691eb4b1edddb9c6252ab1a88db99526d53d2aab78123b24f0ce64736f6c634300081400332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d";
18
+ static readonly abi: readonly [{
19
+ readonly inputs: readonly [{
20
+ readonly internalType: "address";
21
+ readonly name: "_nft";
22
+ readonly type: "address";
23
+ }, {
24
+ readonly internalType: "address";
25
+ readonly name: "_locker";
26
+ readonly type: "address";
27
+ }, {
28
+ readonly internalType: "address";
29
+ readonly name: "_owner";
30
+ readonly type: "address";
31
+ }];
32
+ readonly stateMutability: "nonpayable";
33
+ readonly type: "constructor";
34
+ }, {
35
+ readonly inputs: readonly [];
36
+ readonly name: "AccessControlBadConfirmation";
37
+ readonly type: "error";
38
+ }, {
39
+ readonly inputs: readonly [{
40
+ readonly internalType: "address";
41
+ readonly name: "account";
42
+ readonly type: "address";
43
+ }, {
44
+ readonly internalType: "bytes32";
45
+ readonly name: "neededRole";
46
+ readonly type: "bytes32";
47
+ }];
48
+ readonly name: "AccessControlUnauthorizedAccount";
49
+ readonly type: "error";
50
+ }, {
51
+ readonly inputs: readonly [];
52
+ readonly name: "ClassAlreadyExists";
53
+ readonly type: "error";
54
+ }, {
55
+ readonly inputs: readonly [];
56
+ readonly name: "ClassAlreadySelected";
57
+ readonly type: "error";
58
+ }, {
59
+ readonly inputs: readonly [];
60
+ readonly name: "ClassDoesNotExist";
61
+ readonly type: "error";
62
+ }, {
63
+ readonly inputs: readonly [];
64
+ readonly name: "ClassNotModifiable";
65
+ readonly type: "error";
66
+ }, {
67
+ readonly inputs: readonly [];
68
+ readonly name: "EnforcedPause";
69
+ readonly type: "error";
70
+ }, {
71
+ readonly inputs: readonly [];
72
+ readonly name: "ExpectedPause";
73
+ readonly type: "error";
74
+ }, {
75
+ readonly inputs: readonly [];
76
+ readonly name: "InvalidAction";
77
+ readonly type: "error";
78
+ }, {
79
+ readonly inputs: readonly [];
80
+ readonly name: "InvalidClass";
81
+ readonly type: "error";
82
+ }, {
83
+ readonly inputs: readonly [];
84
+ readonly name: "InvalidRecipient";
85
+ readonly type: "error";
86
+ }, {
87
+ readonly inputs: readonly [];
88
+ readonly name: "InvalidRewardAmount";
89
+ readonly type: "error";
90
+ }, {
91
+ readonly inputs: readonly [];
92
+ readonly name: "InvalidRewardToken";
93
+ readonly type: "error";
94
+ }, {
95
+ readonly inputs: readonly [];
96
+ readonly name: "InvalidTotalShares";
97
+ readonly type: "error";
98
+ }, {
99
+ readonly inputs: readonly [];
100
+ readonly name: "InvalidUnlockWindow";
101
+ readonly type: "error";
102
+ }, {
103
+ readonly inputs: readonly [];
104
+ readonly name: "NotSynced";
105
+ readonly type: "error";
106
+ }, {
107
+ readonly inputs: readonly [{
108
+ readonly internalType: "address";
109
+ readonly name: "owner";
110
+ readonly type: "address";
111
+ }];
112
+ readonly name: "OwnableInvalidOwner";
113
+ readonly type: "error";
114
+ }, {
115
+ readonly inputs: readonly [{
116
+ readonly internalType: "address";
117
+ readonly name: "account";
118
+ readonly type: "address";
119
+ }];
120
+ readonly name: "OwnableUnauthorizedAccount";
121
+ readonly type: "error";
122
+ }, {
123
+ readonly inputs: readonly [];
124
+ readonly name: "ReentrancyGuardReentrantCall";
125
+ readonly type: "error";
126
+ }, {
127
+ readonly inputs: readonly [{
128
+ readonly internalType: "uint256";
129
+ readonly name: "value";
130
+ readonly type: "uint256";
131
+ }];
132
+ readonly name: "SafeCastOverflowedUintToInt";
133
+ readonly type: "error";
134
+ }, {
135
+ readonly inputs: readonly [{
136
+ readonly internalType: "address";
137
+ readonly name: "token";
138
+ readonly type: "address";
139
+ }];
140
+ readonly name: "SafeERC20FailedOperation";
141
+ readonly type: "error";
142
+ }, {
143
+ readonly anonymous: false;
144
+ readonly inputs: readonly [{
145
+ readonly indexed: true;
146
+ readonly internalType: "bytes32";
147
+ readonly name: "className";
148
+ readonly type: "bytes32";
149
+ }];
150
+ readonly name: "ClassAdded";
151
+ readonly type: "event";
152
+ }, {
153
+ readonly anonymous: false;
154
+ readonly inputs: readonly [{
155
+ readonly indexed: false;
156
+ readonly internalType: "uint256";
157
+ readonly name: "tokenId";
158
+ readonly type: "uint256";
159
+ }, {
160
+ readonly indexed: false;
161
+ readonly internalType: "bytes32";
162
+ readonly name: "oldClass";
163
+ readonly type: "bytes32";
164
+ }, {
165
+ readonly indexed: false;
166
+ readonly internalType: "bytes32";
167
+ readonly name: "newClass";
168
+ readonly type: "bytes32";
169
+ }];
170
+ readonly name: "ClassChanged";
171
+ readonly type: "event";
172
+ }, {
173
+ readonly anonymous: false;
174
+ readonly inputs: readonly [{
175
+ readonly indexed: false;
176
+ readonly internalType: "bool";
177
+ readonly name: "isModifiable";
178
+ readonly type: "bool";
179
+ }];
180
+ readonly name: "ClassModifiableSet";
181
+ readonly type: "event";
182
+ }, {
183
+ readonly anonymous: false;
184
+ readonly inputs: readonly [{
185
+ readonly indexed: true;
186
+ readonly internalType: "bytes32";
187
+ readonly name: "className";
188
+ readonly type: "bytes32";
189
+ }];
190
+ readonly name: "ClassRemoved";
191
+ readonly type: "event";
192
+ }, {
193
+ readonly anonymous: false;
194
+ readonly inputs: readonly [{
195
+ readonly indexed: true;
196
+ readonly internalType: "address";
197
+ readonly name: "account";
198
+ readonly type: "address";
199
+ }, {
200
+ readonly indexed: true;
201
+ readonly internalType: "bytes32";
202
+ readonly name: "className";
203
+ readonly type: "bytes32";
204
+ }];
205
+ readonly name: "ClassSelected";
206
+ readonly type: "event";
207
+ }, {
208
+ readonly anonymous: false;
209
+ readonly inputs: readonly [{
210
+ readonly indexed: true;
211
+ readonly internalType: "address";
212
+ readonly name: "owner";
213
+ readonly type: "address";
214
+ }, {
215
+ readonly indexed: false;
216
+ readonly internalType: "uint256[]";
217
+ readonly name: "tokenIds";
218
+ readonly type: "uint256[]";
219
+ }];
220
+ readonly name: "Locked";
221
+ readonly type: "event";
222
+ }, {
223
+ readonly anonymous: false;
224
+ readonly inputs: readonly [{
225
+ readonly indexed: true;
226
+ readonly internalType: "address";
227
+ readonly name: "previousOwner";
228
+ readonly type: "address";
229
+ }, {
230
+ readonly indexed: true;
231
+ readonly internalType: "address";
232
+ readonly name: "newOwner";
233
+ readonly type: "address";
234
+ }];
235
+ readonly name: "OwnershipTransferred";
236
+ readonly type: "event";
237
+ }, {
238
+ readonly anonymous: false;
239
+ readonly inputs: readonly [{
240
+ readonly indexed: false;
241
+ readonly internalType: "address";
242
+ readonly name: "account";
243
+ readonly type: "address";
244
+ }];
245
+ readonly name: "Paused";
246
+ readonly type: "event";
247
+ }, {
248
+ readonly anonymous: false;
249
+ readonly inputs: readonly [{
250
+ readonly indexed: false;
251
+ readonly internalType: "address";
252
+ readonly name: "token";
253
+ readonly type: "address";
254
+ }, {
255
+ readonly indexed: false;
256
+ readonly internalType: "uint256";
257
+ readonly name: "amount";
258
+ readonly type: "uint256";
259
+ }];
260
+ readonly name: "RewardDistributed";
261
+ readonly type: "event";
262
+ }, {
263
+ readonly anonymous: false;
264
+ readonly inputs: readonly [{
265
+ readonly indexed: false;
266
+ readonly internalType: "address";
267
+ readonly name: "token";
268
+ readonly type: "address";
269
+ }, {
270
+ readonly indexed: false;
271
+ readonly internalType: "uint256";
272
+ readonly name: "amount";
273
+ readonly type: "uint256";
274
+ }];
275
+ readonly name: "RewardSynced";
276
+ readonly type: "event";
277
+ }, {
278
+ readonly anonymous: false;
279
+ readonly inputs: readonly [{
280
+ readonly indexed: true;
281
+ readonly internalType: "bytes32";
282
+ readonly name: "role";
283
+ readonly type: "bytes32";
284
+ }, {
285
+ readonly indexed: true;
286
+ readonly internalType: "bytes32";
287
+ readonly name: "previousAdminRole";
288
+ readonly type: "bytes32";
289
+ }, {
290
+ readonly indexed: true;
291
+ readonly internalType: "bytes32";
292
+ readonly name: "newAdminRole";
293
+ readonly type: "bytes32";
294
+ }];
295
+ readonly name: "RoleAdminChanged";
296
+ readonly type: "event";
297
+ }, {
298
+ readonly anonymous: false;
299
+ readonly inputs: readonly [{
300
+ readonly indexed: true;
301
+ readonly internalType: "bytes32";
302
+ readonly name: "role";
303
+ readonly type: "bytes32";
304
+ }, {
305
+ readonly indexed: true;
306
+ readonly internalType: "address";
307
+ readonly name: "account";
308
+ readonly type: "address";
309
+ }, {
310
+ readonly indexed: true;
311
+ readonly internalType: "address";
312
+ readonly name: "sender";
313
+ readonly type: "address";
314
+ }];
315
+ readonly name: "RoleGranted";
316
+ readonly type: "event";
317
+ }, {
318
+ readonly anonymous: false;
319
+ readonly inputs: readonly [{
320
+ readonly indexed: true;
321
+ readonly internalType: "bytes32";
322
+ readonly name: "role";
323
+ readonly type: "bytes32";
324
+ }, {
325
+ readonly indexed: true;
326
+ readonly internalType: "address";
327
+ readonly name: "account";
328
+ readonly type: "address";
329
+ }, {
330
+ readonly indexed: true;
331
+ readonly internalType: "address";
332
+ readonly name: "sender";
333
+ readonly type: "address";
334
+ }];
335
+ readonly name: "RoleRevoked";
336
+ readonly type: "event";
337
+ }, {
338
+ readonly anonymous: false;
339
+ readonly inputs: readonly [{
340
+ readonly indexed: false;
341
+ readonly internalType: "address";
342
+ readonly name: "account";
343
+ readonly type: "address";
344
+ }, {
345
+ readonly indexed: false;
346
+ readonly internalType: "uint256";
347
+ readonly name: "newShares";
348
+ readonly type: "uint256";
349
+ }];
350
+ readonly name: "SharesUpdated";
351
+ readonly type: "event";
352
+ }, {
353
+ readonly anonymous: false;
354
+ readonly inputs: readonly [{
355
+ readonly indexed: true;
356
+ readonly internalType: "address";
357
+ readonly name: "owner";
358
+ readonly type: "address";
359
+ }, {
360
+ readonly indexed: false;
361
+ readonly internalType: "uint256[]";
362
+ readonly name: "tokenIds";
363
+ readonly type: "uint256[]";
364
+ }];
365
+ readonly name: "Unlocked";
366
+ readonly type: "event";
367
+ }, {
368
+ readonly anonymous: false;
369
+ readonly inputs: readonly [{
370
+ readonly indexed: false;
371
+ readonly internalType: "address";
372
+ readonly name: "account";
373
+ readonly type: "address";
374
+ }];
375
+ readonly name: "Unpaused";
376
+ readonly type: "event";
377
+ }, {
378
+ readonly inputs: readonly [];
379
+ readonly name: "DEFAULT_ADMIN_ROLE";
380
+ readonly outputs: readonly [{
381
+ readonly internalType: "bytes32";
382
+ readonly name: "";
383
+ readonly type: "bytes32";
384
+ }];
385
+ readonly stateMutability: "view";
386
+ readonly type: "function";
387
+ }, {
388
+ readonly inputs: readonly [];
389
+ readonly name: "EPOCH_DURATION";
390
+ readonly outputs: readonly [{
391
+ readonly internalType: "uint256";
392
+ readonly name: "";
393
+ readonly type: "uint256";
394
+ }];
395
+ readonly stateMutability: "view";
396
+ readonly type: "function";
397
+ }, {
398
+ readonly inputs: readonly [];
399
+ readonly name: "LOCK_DURATION_IN_EPOCH";
400
+ readonly outputs: readonly [{
401
+ readonly internalType: "uint256";
402
+ readonly name: "";
403
+ readonly type: "uint256";
404
+ }];
405
+ readonly stateMutability: "view";
406
+ readonly type: "function";
407
+ }, {
408
+ readonly inputs: readonly [];
409
+ readonly name: "MANAGER_ROLE";
410
+ readonly outputs: readonly [{
411
+ readonly internalType: "bytes32";
412
+ readonly name: "";
413
+ readonly type: "bytes32";
414
+ }];
415
+ readonly stateMutability: "view";
416
+ readonly type: "function";
417
+ }, {
418
+ readonly inputs: readonly [];
419
+ readonly name: "MAX_SUPPLY";
420
+ readonly outputs: readonly [{
421
+ readonly internalType: "uint256";
422
+ readonly name: "";
423
+ readonly type: "uint256";
424
+ }];
425
+ readonly stateMutability: "view";
426
+ readonly type: "function";
427
+ }, {
428
+ readonly inputs: readonly [];
429
+ readonly name: "PAUSER_ROLE";
430
+ readonly outputs: readonly [{
431
+ readonly internalType: "bytes32";
432
+ readonly name: "";
433
+ readonly type: "bytes32";
434
+ }];
435
+ readonly stateMutability: "view";
436
+ readonly type: "function";
437
+ }, {
438
+ readonly inputs: readonly [{
439
+ readonly internalType: "string";
440
+ readonly name: "className_";
441
+ readonly type: "string";
442
+ }];
443
+ readonly name: "addClass";
444
+ readonly outputs: readonly [];
445
+ readonly stateMutability: "nonpayable";
446
+ readonly type: "function";
447
+ }, {
448
+ readonly inputs: readonly [{
449
+ readonly internalType: "bytes32";
450
+ readonly name: "";
451
+ readonly type: "bytes32";
452
+ }];
453
+ readonly name: "availableClasses";
454
+ readonly outputs: readonly [{
455
+ readonly internalType: "bool";
456
+ readonly name: "";
457
+ readonly type: "bool";
458
+ }];
459
+ readonly stateMutability: "view";
460
+ readonly type: "function";
461
+ }, {
462
+ readonly inputs: readonly [{
463
+ readonly internalType: "uint256";
464
+ readonly name: "tokenId_";
465
+ readonly type: "uint256";
466
+ }, {
467
+ readonly internalType: "bytes32";
468
+ readonly name: "newClassHash_";
469
+ readonly type: "bytes32";
470
+ }];
471
+ readonly name: "changeClass";
472
+ readonly outputs: readonly [];
473
+ readonly stateMutability: "nonpayable";
474
+ readonly type: "function";
475
+ }, {
476
+ readonly inputs: readonly [{
477
+ readonly internalType: "address";
478
+ readonly name: "recipient_";
479
+ readonly type: "address";
480
+ }];
481
+ readonly name: "claim";
482
+ readonly outputs: readonly [{
483
+ readonly components: readonly [{
484
+ readonly internalType: "address";
485
+ readonly name: "token";
486
+ readonly type: "address";
487
+ }, {
488
+ readonly internalType: "uint256";
489
+ readonly name: "amount";
490
+ readonly type: "uint256";
491
+ }];
492
+ readonly internalType: "struct ILLamaLocker.Claimable[]";
493
+ readonly name: "results";
494
+ readonly type: "tuple[]";
495
+ }];
496
+ readonly stateMutability: "nonpayable";
497
+ readonly type: "function";
498
+ }, {
499
+ readonly inputs: readonly [{
500
+ readonly internalType: "address";
501
+ readonly name: "account_";
502
+ readonly type: "address";
503
+ }, {
504
+ readonly internalType: "address";
505
+ readonly name: "token_";
506
+ readonly type: "address";
507
+ }];
508
+ readonly name: "claimable";
509
+ readonly outputs: readonly [{
510
+ readonly internalType: "uint256";
511
+ readonly name: "";
512
+ readonly type: "uint256";
513
+ }];
514
+ readonly stateMutability: "view";
515
+ readonly type: "function";
516
+ }, {
517
+ readonly inputs: readonly [{
518
+ readonly internalType: "address";
519
+ readonly name: "account_";
520
+ readonly type: "address";
521
+ }];
522
+ readonly name: "claimables";
523
+ readonly outputs: readonly [{
524
+ readonly components: readonly [{
525
+ readonly internalType: "address";
526
+ readonly name: "token";
527
+ readonly type: "address";
528
+ }, {
529
+ readonly internalType: "uint256";
530
+ readonly name: "amount";
531
+ readonly type: "uint256";
532
+ }];
533
+ readonly internalType: "struct ILLamaLocker.Claimable[]";
534
+ readonly name: "results";
535
+ readonly type: "tuple[]";
536
+ }];
537
+ readonly stateMutability: "view";
538
+ readonly type: "function";
539
+ }, {
540
+ readonly inputs: readonly [{
541
+ readonly internalType: "address";
542
+ readonly name: "account_";
543
+ readonly type: "address";
544
+ }];
545
+ readonly name: "getAccountDetails";
546
+ readonly outputs: readonly [{
547
+ readonly internalType: "uint256[]";
548
+ readonly name: "tokenIds";
549
+ readonly type: "uint256[]";
550
+ }, {
551
+ readonly internalType: "uint256[]";
552
+ readonly name: "lockedAts";
553
+ readonly type: "uint256[]";
554
+ }, {
555
+ readonly internalType: "bytes32[]";
556
+ readonly name: "selectedClasses";
557
+ readonly type: "bytes32[]";
558
+ }, {
559
+ readonly internalType: "uint256[]";
560
+ readonly name: "selectedAts";
561
+ readonly type: "uint256[]";
562
+ }];
563
+ readonly stateMutability: "view";
564
+ readonly type: "function";
565
+ }, {
566
+ readonly inputs: readonly [{
567
+ readonly internalType: "address";
568
+ readonly name: "user";
569
+ readonly type: "address";
570
+ }, {
571
+ readonly internalType: "bytes32";
572
+ readonly name: "classHash";
573
+ readonly type: "bytes32";
574
+ }];
575
+ readonly name: "getCategoryCount";
576
+ readonly outputs: readonly [{
577
+ readonly internalType: "uint256";
578
+ readonly name: "";
579
+ readonly type: "uint256";
580
+ }];
581
+ readonly stateMutability: "view";
582
+ readonly type: "function";
583
+ }, {
584
+ readonly inputs: readonly [{
585
+ readonly internalType: "address";
586
+ readonly name: "account_";
587
+ readonly type: "address";
588
+ }];
589
+ readonly name: "getClaimedRewards";
590
+ readonly outputs: readonly [{
591
+ readonly components: readonly [{
592
+ readonly internalType: "address";
593
+ readonly name: "token";
594
+ readonly type: "address";
595
+ }, {
596
+ readonly internalType: "uint256";
597
+ readonly name: "amount";
598
+ readonly type: "uint256";
599
+ }];
600
+ readonly internalType: "struct ILLamaLocker.Claimable[]";
601
+ readonly name: "results";
602
+ readonly type: "tuple[]";
603
+ }];
604
+ readonly stateMutability: "view";
605
+ readonly type: "function";
606
+ }, {
607
+ readonly inputs: readonly [{
608
+ readonly internalType: "string";
609
+ readonly name: "className_";
610
+ readonly type: "string";
611
+ }];
612
+ readonly name: "getClassHash";
613
+ readonly outputs: readonly [{
614
+ readonly internalType: "bytes32";
615
+ readonly name: "";
616
+ readonly type: "bytes32";
617
+ }];
618
+ readonly stateMutability: "pure";
619
+ readonly type: "function";
620
+ }, {
621
+ readonly inputs: readonly [{
622
+ readonly internalType: "address";
623
+ readonly name: "user";
624
+ readonly type: "address";
625
+ }];
626
+ readonly name: "getLockedTokenIds";
627
+ readonly outputs: readonly [{
628
+ readonly internalType: "uint256[]";
629
+ readonly name: "";
630
+ readonly type: "uint256[]";
631
+ }];
632
+ readonly stateMutability: "view";
633
+ readonly type: "function";
634
+ }, {
635
+ readonly inputs: readonly [];
636
+ readonly name: "getLocks";
637
+ readonly outputs: readonly [{
638
+ readonly components: readonly [{
639
+ readonly internalType: "address";
640
+ readonly name: "owner";
641
+ readonly type: "address";
642
+ }, {
643
+ readonly internalType: "uint256";
644
+ readonly name: "lockedAt";
645
+ readonly type: "uint256";
646
+ }, {
647
+ readonly internalType: "uint256";
648
+ readonly name: "tokenId";
649
+ readonly type: "uint256";
650
+ }, {
651
+ readonly internalType: "bytes32";
652
+ readonly name: "classHash";
653
+ readonly type: "bytes32";
654
+ }, {
655
+ readonly internalType: "uint256";
656
+ readonly name: "classSelectedAt";
657
+ readonly type: "uint256";
658
+ }];
659
+ readonly internalType: "struct ILLamaTemple.NFTLock[]";
660
+ readonly name: "results";
661
+ readonly type: "tuple[]";
662
+ }];
663
+ readonly stateMutability: "view";
664
+ readonly type: "function";
665
+ }, {
666
+ readonly inputs: readonly [{
667
+ readonly internalType: "address";
668
+ readonly name: "owner_";
669
+ readonly type: "address";
670
+ }];
671
+ readonly name: "getLocksByOwner";
672
+ readonly outputs: readonly [{
673
+ readonly components: readonly [{
674
+ readonly internalType: "address";
675
+ readonly name: "owner";
676
+ readonly type: "address";
677
+ }, {
678
+ readonly internalType: "uint256";
679
+ readonly name: "lockedAt";
680
+ readonly type: "uint256";
681
+ }, {
682
+ readonly internalType: "uint256";
683
+ readonly name: "tokenId";
684
+ readonly type: "uint256";
685
+ }, {
686
+ readonly internalType: "bytes32";
687
+ readonly name: "classHash";
688
+ readonly type: "bytes32";
689
+ }, {
690
+ readonly internalType: "uint256";
691
+ readonly name: "classSelectedAt";
692
+ readonly type: "uint256";
693
+ }];
694
+ readonly internalType: "struct ILLamaTemple.NFTLock[]";
695
+ readonly name: "results";
696
+ readonly type: "tuple[]";
697
+ }];
698
+ readonly stateMutability: "view";
699
+ readonly type: "function";
700
+ }, {
701
+ readonly inputs: readonly [];
702
+ readonly name: "getRewardTokens";
703
+ readonly outputs: readonly [{
704
+ readonly internalType: "address[]";
705
+ readonly name: "";
706
+ readonly type: "address[]";
707
+ }];
708
+ readonly stateMutability: "view";
709
+ readonly type: "function";
710
+ }, {
711
+ readonly inputs: readonly [{
712
+ readonly internalType: "bytes32";
713
+ readonly name: "role";
714
+ readonly type: "bytes32";
715
+ }];
716
+ readonly name: "getRoleAdmin";
717
+ readonly outputs: readonly [{
718
+ readonly internalType: "bytes32";
719
+ readonly name: "";
720
+ readonly type: "bytes32";
721
+ }];
722
+ readonly stateMutability: "view";
723
+ readonly type: "function";
724
+ }, {
725
+ readonly inputs: readonly [{
726
+ readonly internalType: "bytes32";
727
+ readonly name: "role";
728
+ readonly type: "bytes32";
729
+ }, {
730
+ readonly internalType: "address";
731
+ readonly name: "account";
732
+ readonly type: "address";
733
+ }];
734
+ readonly name: "grantRole";
735
+ readonly outputs: readonly [];
736
+ readonly stateMutability: "nonpayable";
737
+ readonly type: "function";
738
+ }, {
739
+ readonly inputs: readonly [{
740
+ readonly internalType: "bytes32";
741
+ readonly name: "role";
742
+ readonly type: "bytes32";
743
+ }, {
744
+ readonly internalType: "address";
745
+ readonly name: "account";
746
+ readonly type: "address";
747
+ }];
748
+ readonly name: "hasRole";
749
+ readonly outputs: readonly [{
750
+ readonly internalType: "bool";
751
+ readonly name: "";
752
+ readonly type: "bool";
753
+ }];
754
+ readonly stateMutability: "view";
755
+ readonly type: "function";
756
+ }, {
757
+ readonly inputs: readonly [{
758
+ readonly internalType: "string";
759
+ readonly name: "className_";
760
+ readonly type: "string";
761
+ }];
762
+ readonly name: "isClassAvailable";
763
+ readonly outputs: readonly [{
764
+ readonly internalType: "bool";
765
+ readonly name: "";
766
+ readonly type: "bool";
767
+ }];
768
+ readonly stateMutability: "view";
769
+ readonly type: "function";
770
+ }, {
771
+ readonly inputs: readonly [];
772
+ readonly name: "isClassModifiable";
773
+ readonly outputs: readonly [{
774
+ readonly internalType: "bool";
775
+ readonly name: "";
776
+ readonly type: "bool";
777
+ }];
778
+ readonly stateMutability: "view";
779
+ readonly type: "function";
780
+ }, {
781
+ readonly inputs: readonly [{
782
+ readonly internalType: "uint256[]";
783
+ readonly name: "tokenIds_";
784
+ readonly type: "uint256[]";
785
+ }, {
786
+ readonly internalType: "bytes32";
787
+ readonly name: "classHash_";
788
+ readonly type: "bytes32";
789
+ }];
790
+ readonly name: "lock";
791
+ readonly outputs: readonly [];
792
+ readonly stateMutability: "nonpayable";
793
+ readonly type: "function";
794
+ }, {
795
+ readonly inputs: readonly [];
796
+ readonly name: "locker";
797
+ readonly outputs: readonly [{
798
+ readonly internalType: "contract ILLamaLocker";
799
+ readonly name: "";
800
+ readonly type: "address";
801
+ }];
802
+ readonly stateMutability: "view";
803
+ readonly type: "function";
804
+ }, {
805
+ readonly inputs: readonly [{
806
+ readonly internalType: "uint256";
807
+ readonly name: "";
808
+ readonly type: "uint256";
809
+ }];
810
+ readonly name: "locks";
811
+ readonly outputs: readonly [{
812
+ readonly internalType: "address";
813
+ readonly name: "owner";
814
+ readonly type: "address";
815
+ }, {
816
+ readonly internalType: "uint256";
817
+ readonly name: "lockedAt";
818
+ readonly type: "uint256";
819
+ }, {
820
+ readonly internalType: "uint256";
821
+ readonly name: "tokenId";
822
+ readonly type: "uint256";
823
+ }, {
824
+ readonly internalType: "bytes32";
825
+ readonly name: "classHash";
826
+ readonly type: "bytes32";
827
+ }, {
828
+ readonly internalType: "uint256";
829
+ readonly name: "classSelectedAt";
830
+ readonly type: "uint256";
831
+ }];
832
+ readonly stateMutability: "view";
833
+ readonly type: "function";
834
+ }, {
835
+ readonly inputs: readonly [];
836
+ readonly name: "nft";
837
+ readonly outputs: readonly [{
838
+ readonly internalType: "contract IERC721";
839
+ readonly name: "";
840
+ readonly type: "address";
841
+ }];
842
+ readonly stateMutability: "view";
843
+ readonly type: "function";
844
+ }, {
845
+ readonly inputs: readonly [{
846
+ readonly internalType: "address";
847
+ readonly name: "";
848
+ readonly type: "address";
849
+ }, {
850
+ readonly internalType: "address";
851
+ readonly name: "";
852
+ readonly type: "address";
853
+ }, {
854
+ readonly internalType: "uint256";
855
+ readonly name: "";
856
+ readonly type: "uint256";
857
+ }, {
858
+ readonly internalType: "bytes";
859
+ readonly name: "";
860
+ readonly type: "bytes";
861
+ }];
862
+ readonly name: "onERC721Received";
863
+ readonly outputs: readonly [{
864
+ readonly internalType: "bytes4";
865
+ readonly name: "";
866
+ readonly type: "bytes4";
867
+ }];
868
+ readonly stateMutability: "nonpayable";
869
+ readonly type: "function";
870
+ }, {
871
+ readonly inputs: readonly [];
872
+ readonly name: "owner";
873
+ readonly outputs: readonly [{
874
+ readonly internalType: "address";
875
+ readonly name: "";
876
+ readonly type: "address";
877
+ }];
878
+ readonly stateMutability: "view";
879
+ readonly type: "function";
880
+ }, {
881
+ readonly inputs: readonly [];
882
+ readonly name: "pause";
883
+ readonly outputs: readonly [];
884
+ readonly stateMutability: "nonpayable";
885
+ readonly type: "function";
886
+ }, {
887
+ readonly inputs: readonly [];
888
+ readonly name: "paused";
889
+ readonly outputs: readonly [{
890
+ readonly internalType: "bool";
891
+ readonly name: "";
892
+ readonly type: "bool";
893
+ }];
894
+ readonly stateMutability: "view";
895
+ readonly type: "function";
896
+ }, {
897
+ readonly inputs: readonly [{
898
+ readonly internalType: "string";
899
+ readonly name: "className_";
900
+ readonly type: "string";
901
+ }];
902
+ readonly name: "removeClass";
903
+ readonly outputs: readonly [];
904
+ readonly stateMutability: "nonpayable";
905
+ readonly type: "function";
906
+ }, {
907
+ readonly inputs: readonly [];
908
+ readonly name: "renounceOwnership";
909
+ readonly outputs: readonly [];
910
+ readonly stateMutability: "nonpayable";
911
+ readonly type: "function";
912
+ }, {
913
+ readonly inputs: readonly [{
914
+ readonly internalType: "bytes32";
915
+ readonly name: "role";
916
+ readonly type: "bytes32";
917
+ }, {
918
+ readonly internalType: "address";
919
+ readonly name: "callerConfirmation";
920
+ readonly type: "address";
921
+ }];
922
+ readonly name: "renounceRole";
923
+ readonly outputs: readonly [];
924
+ readonly stateMutability: "nonpayable";
925
+ readonly type: "function";
926
+ }, {
927
+ readonly inputs: readonly [{
928
+ readonly internalType: "address";
929
+ readonly name: "token_";
930
+ readonly type: "address";
931
+ }, {
932
+ readonly internalType: "address";
933
+ readonly name: "recipient_";
934
+ readonly type: "address";
935
+ }];
936
+ readonly name: "rescueTokens";
937
+ readonly outputs: readonly [];
938
+ readonly stateMutability: "nonpayable";
939
+ readonly type: "function";
940
+ }, {
941
+ readonly inputs: readonly [{
942
+ readonly internalType: "bytes32";
943
+ readonly name: "role";
944
+ readonly type: "bytes32";
945
+ }, {
946
+ readonly internalType: "address";
947
+ readonly name: "account";
948
+ readonly type: "address";
949
+ }];
950
+ readonly name: "revokeRole";
951
+ readonly outputs: readonly [];
952
+ readonly stateMutability: "nonpayable";
953
+ readonly type: "function";
954
+ }, {
955
+ readonly inputs: readonly [{
956
+ readonly internalType: "uint256";
957
+ readonly name: "";
958
+ readonly type: "uint256";
959
+ }];
960
+ readonly name: "rewardTokens";
961
+ readonly outputs: readonly [{
962
+ readonly internalType: "address";
963
+ readonly name: "";
964
+ readonly type: "address";
965
+ }];
966
+ readonly stateMutability: "view";
967
+ readonly type: "function";
968
+ }, {
969
+ readonly inputs: readonly [{
970
+ readonly internalType: "bool";
971
+ readonly name: "isModifiable_";
972
+ readonly type: "bool";
973
+ }];
974
+ readonly name: "setClassModifiable";
975
+ readonly outputs: readonly [];
976
+ readonly stateMutability: "nonpayable";
977
+ readonly type: "function";
978
+ }, {
979
+ readonly inputs: readonly [{
980
+ readonly internalType: "bytes4";
981
+ readonly name: "interfaceId";
982
+ readonly type: "bytes4";
983
+ }];
984
+ readonly name: "supportsInterface";
985
+ readonly outputs: readonly [{
986
+ readonly internalType: "bool";
987
+ readonly name: "";
988
+ readonly type: "bool";
989
+ }];
990
+ readonly stateMutability: "view";
991
+ readonly type: "function";
992
+ }, {
993
+ readonly inputs: readonly [];
994
+ readonly name: "sync";
995
+ readonly outputs: readonly [];
996
+ readonly stateMutability: "nonpayable";
997
+ readonly type: "function";
998
+ }, {
999
+ readonly inputs: readonly [{
1000
+ readonly internalType: "address";
1001
+ readonly name: "newOwner";
1002
+ readonly type: "address";
1003
+ }];
1004
+ readonly name: "transferOwnership";
1005
+ readonly outputs: readonly [];
1006
+ readonly stateMutability: "nonpayable";
1007
+ readonly type: "function";
1008
+ }, {
1009
+ readonly inputs: readonly [{
1010
+ readonly internalType: "uint256[]";
1011
+ readonly name: "tokenIds_";
1012
+ readonly type: "uint256[]";
1013
+ }];
1014
+ readonly name: "unlock";
1015
+ readonly outputs: readonly [];
1016
+ readonly stateMutability: "nonpayable";
1017
+ readonly type: "function";
1018
+ }, {
1019
+ readonly inputs: readonly [];
1020
+ readonly name: "unpause";
1021
+ readonly outputs: readonly [];
1022
+ readonly stateMutability: "nonpayable";
1023
+ readonly type: "function";
1024
+ }];
1025
+ static createInterface(): LLamaTempleInterface;
1026
+ static connect(address: string, runner?: ContractRunner | null): LLamaTemple;
1027
+ }
1028
+ export {};