@raac/rpc 1.1.0-beta.63 → 1.1.0-beta.64

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 (930) hide show
  1. package/dist/RPCLibrary.js +4 -8
  2. package/dist/oracles/houses/request.js +1 -1
  3. package/dist/oracles/prime-rate/request.js +1 -1
  4. package/dist/pools/rwaVault/depositToRWAVault.js +3 -10
  5. package/dist/pools/rwaVault/getRWAVaultInfo.js +1 -9
  6. package/dist/pools/rwaVault/redeemNFTFromRWAVault.js +3 -4
  7. package/dist/scripts/index.js +1 -1
  8. package/dist/types/RPCLibrary.d.ts +0 -4
  9. package/dist/types/pools/rwaVault/depositToRWAVault.d.ts +2 -2
  10. package/dist/types/pools/rwaVault/getRWAVaultInfo.d.ts +0 -4
  11. package/dist/types/pools/rwaVault/redeemNFTFromRWAVault.d.ts +3 -2
  12. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
  13. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -1
  14. package/dist/types/typechain-types/{typechain-types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.d.ts → @openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.d.ts} +4 -4
  15. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
  16. package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +65 -10
  17. package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +2 -2
  18. package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +112 -27
  19. package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.d.ts +316 -0
  20. package/dist/types/typechain-types/{typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle.d.ts → contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle.d.ts} +33 -11
  21. package/dist/types/typechain-types/{typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts → contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle.d.ts} +9 -9
  22. package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/index.d.ts +3 -0
  23. package/dist/types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +128 -27
  24. package/dist/types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +112 -27
  25. package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +2 -0
  26. package/dist/types/typechain-types/{typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol → contracts/core/pools/LendingPool}/ERC721AssetAdapter.d.ts +20 -2
  27. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +86 -49
  28. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +69 -38
  29. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +69 -38
  30. package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +73 -38
  31. package/dist/types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +1 -2
  32. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +22 -16
  33. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +5 -1
  34. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +58 -44
  35. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +17 -13
  36. package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +85 -87
  37. package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +9 -19
  38. package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +7 -3
  39. package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +76 -2
  40. package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +5 -1
  41. package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +5 -1
  42. package/dist/types/typechain-types/{typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol → contracts/core/vaults}/ERC721VaultAdapter.d.ts +24 -2
  43. package/dist/types/typechain-types/{typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter.d.ts → contracts/core/vaults/RAACNFTVaultAdapterV2.d.ts} +79 -35
  44. package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +270 -63
  45. package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +2 -4
  46. package/dist/types/typechain-types/{typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts → contracts/interfaces/core/collectors/IDistributionTarget.d.ts} +13 -5
  47. package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +53 -2
  48. package/dist/types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +1 -0
  49. package/dist/types/typechain-types/{typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts → contracts/interfaces/core/oracles/IERC721PriceOracle.d.ts} +6 -6
  50. package/dist/types/typechain-types/{typechain-types/contracts/interfaces/IHousePrices.d.ts → contracts/interfaces/core/oracles/IRAACHousePriceOracle.d.ts} +12 -12
  51. package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePriceSyncer.d.ts +71 -0
  52. package/dist/types/typechain-types/{typechain-types/contracts/interfaces/core/oracles → contracts/interfaces/core/oracles/IRAACHousePrices.sol}/IRAACHousePrices.d.ts +20 -28
  53. package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/index.d.ts +2 -0
  54. package/dist/types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +4 -1
  55. package/dist/types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +26 -12
  56. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +66 -4
  57. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +52 -1
  58. package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +34 -24
  59. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +5 -19
  60. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +7 -3
  61. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +38 -2
  62. package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +258 -23
  63. package/dist/types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +9 -1
  64. package/dist/types/typechain-types/{typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts → contracts/mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle.d.ts} +9 -13
  65. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA.d.ts +59 -0
  66. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockCurveEMA.sol/index.d.ts +2 -0
  67. package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +128 -27
  68. package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +112 -27
  69. package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +2 -0
  70. package/dist/types/typechain-types/{typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts → contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool.d.ts} +138 -31
  71. package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +9 -1
  72. package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +9 -2
  73. package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +66 -4
  74. package/dist/types/typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts +26 -12
  75. package/dist/types/typechain-types/contracts/mocks/core/pools/index.d.ts +1 -0
  76. package/dist/types/typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts +9 -1
  77. package/dist/types/typechain-types/contracts/mocks/core/tokens/CrvUSDTokenLimited.d.ts +5 -1
  78. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
  79. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -1
  80. package/dist/types/typechain-types/{typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts → factories/@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable__factory.d.ts} +8 -4
  81. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
  82. package/dist/types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +1 -1
  83. package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +94 -21
  84. package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +1 -1
  85. package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +1 -1
  86. package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +1 -1
  87. package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +6 -2
  88. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1 -1
  89. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +1 -1
  90. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +1 -1
  91. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +1 -1
  92. package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +1 -1
  93. package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +1 -1
  94. package/dist/types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +1 -1
  95. package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1 -1
  96. package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +1 -1
  97. package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +124 -23
  98. package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +1 -1
  99. package/dist/types/typechain-types/{typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts → factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle__factory.d.ts} +118 -116
  100. package/dist/types/typechain-types/{typechain-types/factories/contracts/interfaces/core/vaults/IERC721VaultAdapter__factory.d.ts → factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle__factory.d.ts} +22 -18
  101. package/dist/types/typechain-types/{typechain-types/factories/contracts/interfaces/IHousePrices__factory.d.ts → factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle__factory.d.ts} +6 -6
  102. package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/index.d.ts +3 -0
  103. package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +199 -28
  104. package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +149 -28
  105. package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +1 -1
  106. package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +1 -1
  107. package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +1 -0
  108. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +1 -1
  109. package/dist/types/typechain-types/{typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol → factories/contracts/core/pools/LendingPool}/ERC721AssetAdapter__factory.d.ts +30 -4
  110. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +62 -25
  111. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +94 -41
  112. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +62 -25
  113. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +73 -30
  114. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +1 -1
  115. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +27 -31
  116. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +17 -3
  117. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +23 -31
  118. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +78 -64
  119. package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +1 -1
  120. package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +96 -78
  121. package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +26 -18
  122. package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +21 -3
  123. package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +1 -1
  124. package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +88 -1
  125. package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +1 -1
  126. package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +25 -3
  127. package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +22 -4
  128. package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1 -1
  129. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +1 -1
  130. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +347 -0
  131. package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterV2__factory.d.ts +417 -0
  132. package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +247 -68
  133. package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +2 -2
  134. package/dist/types/typechain-types/{typechain-types/factories/@openzeppelin/contracts/interfaces/IERC2981__factory.d.ts → factories/contracts/interfaces/core/collectors/IDistributionTarget__factory.d.ts} +13 -17
  135. package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +65 -0
  136. package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +1 -0
  137. package/dist/types/typechain-types/{typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts → factories/contracts/interfaces/core/oracles/IERC721PriceOracle__factory.d.ts} +8 -4
  138. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePriceOracle__factory.d.ts +21 -0
  139. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePriceSyncer__factory.d.ts +59 -0
  140. package/dist/types/typechain-types/{typechain-types/factories/contracts/interfaces/core/oracles → factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol}/IRAACHousePrices__factory.d.ts +28 -14
  141. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/index.d.ts +2 -0
  142. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +3 -1
  143. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +26 -10
  144. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +45 -0
  145. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +67 -0
  146. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +45 -23
  147. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +5 -15
  148. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +14 -0
  149. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +38 -0
  150. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +4 -0
  151. package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +210 -1
  152. package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +1 -1
  153. package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +1 -1
  154. package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +1 -1
  155. package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -1
  156. package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
  157. package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +1 -1
  158. package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +1 -1
  159. package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +1 -1
  160. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +11 -1
  161. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +1 -1
  162. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +1 -1
  163. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +1 -1
  164. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +1 -1
  165. package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +1 -1
  166. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +1 -1
  167. package/dist/types/typechain-types/{typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts → factories/contracts/mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle__factory.d.ts} +7 -7
  168. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA__factory.d.ts +98 -0
  169. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/index.d.ts +2 -0
  170. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +1 -1
  171. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +1 -1
  172. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +1 -1
  173. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +1 -1
  174. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +1 -1
  175. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +1 -1
  176. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +199 -28
  177. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +149 -28
  178. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +1 -0
  179. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool__factory.d.ts +958 -0
  180. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +9 -1
  181. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +68 -1
  182. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +15 -1
  183. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +27 -11
  184. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +1 -1
  185. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +1 -1
  186. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +1 -0
  187. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +1 -1
  188. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +1 -1
  189. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +1 -1
  190. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +15 -1
  191. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +1 -1
  192. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +15 -1
  193. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +1 -1
  194. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +1 -1
  195. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
  196. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -1
  197. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -1
  198. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -1
  199. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +1 -1
  200. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +1 -1
  201. package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -1
  202. package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
  203. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +1 -1
  204. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +1 -1
  205. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +1 -1
  206. package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +1 -1
  207. package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +1 -1
  208. package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +1 -1
  209. package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +9 -5
  210. package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +1 -1
  211. package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +1 -1
  212. package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +1 -1
  213. package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +1 -1
  214. package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +1 -1
  215. package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +1 -1
  216. package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +1 -1
  217. package/dist/types/typechain-types/index.d.ts +28 -14
  218. package/package.json +1 -1
  219. package/dist/pools/lendingPool/getWithdrawRequestInfo.js +0 -23
  220. package/dist/pools/lendingPool/requestWithdraw.js +0 -28
  221. package/dist/types/pools/lendingPool/getWithdrawRequestInfo.d.ts +0 -9
  222. package/dist/types/pools/lendingPool/requestWithdraw.d.ts +0 -4
  223. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/index.d.ts +0 -2
  224. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/index.d.ts +0 -2
  225. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/index.d.ts +0 -2
  226. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient.d.ts +0 -67
  227. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +0 -5
  228. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient.d.ts +0 -37
  229. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter.d.ts +0 -205
  230. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +0 -2
  231. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest.d.ts +0 -25
  232. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +0 -1
  233. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/index.d.ts +0 -6
  234. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner.d.ts +0 -69
  235. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal.d.ts +0 -69
  236. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +0 -2
  237. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/index.d.ts +0 -4
  238. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.d.ts +0 -103
  239. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver.d.ts +0 -37
  240. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable.d.ts +0 -37
  241. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface.d.ts +0 -143
  242. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +0 -4
  243. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2.d.ts +0 -35
  244. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI.d.ts +0 -529
  245. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus.d.ts +0 -109
  246. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +0 -6
  247. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus.d.ts +0 -192
  248. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus.d.ts +0 -45
  249. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus.d.ts +0 -155
  250. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +0 -3
  251. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient.d.ts +0 -25
  252. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +0 -1
  253. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -4
  254. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface.d.ts +0 -156
  255. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
  256. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock.d.ts +0 -731
  257. package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +0 -1
  258. package/dist/types/typechain-types/typechain-types/@chainlink/index.d.ts +0 -2
  259. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts +0 -159
  260. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts +0 -147
  261. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +0 -54
  262. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/Ownable2Step.d.ts +0 -77
  263. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/index.d.ts +0 -4
  264. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/index.d.ts +0 -8
  265. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts +0 -231
  266. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC2981.d.ts +0 -49
  267. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC4626.d.ts +0 -318
  268. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts +0 -78
  269. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +0 -20
  270. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +0 -20
  271. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +0 -20
  272. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +0 -3
  273. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +0 -5
  274. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +0 -141
  275. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +0 -129
  276. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.d.ts +0 -236
  277. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC4626.d.ts +0 -318
  278. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +0 -141
  279. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.d.ts +0 -61
  280. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -4
  281. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -6
  282. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +0 -20
  283. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +0 -1
  284. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/ERC721.d.ts +0 -211
  285. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +0 -199
  286. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +0 -39
  287. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.d.ts +0 -233
  288. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.d.ts +0 -221
  289. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +0 -211
  290. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -3
  291. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -7
  292. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.d.ts +0 -39
  293. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +0 -1
  294. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/index.d.ts +0 -4
  295. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Address.d.ts +0 -20
  296. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Errors.d.ts +0 -20
  297. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Nonces.d.ts +0 -25
  298. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Pausable.d.ts +0 -55
  299. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/ReentrancyGuard.d.ts +0 -20
  300. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts +0 -20
  301. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts +0 -20
  302. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/ECDSA.d.ts +0 -20
  303. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +0 -78
  304. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/MerkleProof.d.ts +0 -20
  305. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +0 -3
  306. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +0 -12
  307. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +0 -29
  308. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +0 -29
  309. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -2
  310. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/Math.d.ts +0 -20
  311. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts +0 -20
  312. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +0 -2
  313. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.d.ts +0 -68
  314. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/access/index.d.ts +0 -1
  315. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts +0 -6
  316. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +0 -2
  317. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts +0 -36
  318. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +0 -1
  319. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.d.ts +0 -69
  320. package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +0 -2
  321. package/dist/types/typechain-types/typechain-types/@openzeppelin/index.d.ts +0 -4
  322. package/dist/types/typechain-types/typechain-types/common.d.ts +0 -50
  323. package/dist/types/typechain-types/typechain-types/contracts/core/collectors/ERC20Collector.d.ts +0 -264
  324. package/dist/types/typechain-types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +0 -909
  325. package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal.d.ts +0 -53
  326. package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +0 -127
  327. package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +0 -2
  328. package/dist/types/typechain-types/typechain-types/contracts/core/collectors/RAACTokenCollector.d.ts +0 -264
  329. package/dist/types/typechain-types/typechain-types/contracts/core/collectors/RWAIndexTokenCollector.d.ts +0 -264
  330. package/dist/types/typechain-types/typechain-types/contracts/core/collectors/Treasury.d.ts +0 -298
  331. package/dist/types/typechain-types/typechain-types/contracts/core/collectors/index.d.ts +0 -7
  332. package/dist/types/typechain-types/typechain-types/contracts/core/governance/boost/BoostController.d.ts +0 -573
  333. package/dist/types/typechain-types/typechain-types/contracts/core/governance/boost/index.d.ts +0 -1
  334. package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +0 -1367
  335. package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +0 -1103
  336. package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +0 -641
  337. package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +0 -1371
  338. package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +0 -1375
  339. package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/index.d.ts +0 -5
  340. package/dist/types/typechain-types/typechain-types/contracts/core/governance/index.d.ts +0 -4
  341. package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +0 -586
  342. package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +0 -477
  343. package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/index.d.ts +0 -2
  344. package/dist/types/typechain-types/typechain-types/contracts/core/index.d.ts +0 -18
  345. package/dist/types/typechain-types/typechain-types/contracts/core/lockers/LLamaTemple.d.ts +0 -721
  346. package/dist/types/typechain-types/typechain-types/contracts/core/lockers/index.d.ts +0 -1
  347. package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +0 -808
  348. package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACMinter/index.d.ts +0 -1
  349. package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +0 -509
  350. package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
  351. package/dist/types/typechain-types/typechain-types/contracts/core/minters/index.d.ts +0 -4
  352. package/dist/types/typechain-types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +0 -183
  353. package/dist/types/typechain-types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +0 -310
  354. package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +0 -221
  355. package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +0 -227
  356. package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle.d.ts +0 -25
  357. package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +0 -37
  358. package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +0 -2
  359. package/dist/types/typechain-types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle.d.ts +0 -25
  360. package/dist/types/typechain-types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +0 -2
  361. package/dist/types/typechain-types/typechain-types/contracts/core/oracles/index.d.ts +0 -8
  362. package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +0 -241
  363. package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter.d.ts +0 -25
  364. package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle.d.ts +0 -25
  365. package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +0 -3
  366. package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
  367. package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +0 -2112
  368. package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +0 -432
  369. package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +0 -530
  370. package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +0 -485
  371. package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +0 -8
  372. package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +0 -186
  373. package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +0 -136
  374. package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +0 -283
  375. package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +0 -810
  376. package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +0 -168
  377. package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +0 -4
  378. package/dist/types/typechain-types/typechain-types/contracts/core/pools/index.d.ts +0 -4
  379. package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.d.ts +0 -203
  380. package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.d.ts +0 -231
  381. package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList.d.ts +0 -25
  382. package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +0 -2
  383. package/dist/types/typechain-types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +0 -284
  384. package/dist/types/typechain-types/typechain-types/contracts/core/primitives/WithCompliance.d.ts +0 -25
  385. package/dist/types/typechain-types/typechain-types/contracts/core/primitives/index.d.ts +0 -4
  386. package/dist/types/typechain-types/typechain-types/contracts/core/tokens/DEToken.d.ts +0 -424
  387. package/dist/types/typechain-types/typechain-types/contracts/core/tokens/DebtToken.d.ts +0 -326
  388. package/dist/types/typechain-types/typechain-types/contracts/core/tokens/IndexToken.d.ts +0 -340
  389. package/dist/types/typechain-types/typechain-types/contracts/core/tokens/LPToken.d.ts +0 -224
  390. package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +0 -897
  391. package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RAACToken.d.ts +0 -401
  392. package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RToken.d.ts +0 -543
  393. package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +0 -264
  394. package/dist/types/typechain-types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +0 -1077
  395. package/dist/types/typechain-types/typechain-types/contracts/core/tokens/index.d.ts +0 -8
  396. package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.d.ts +0 -176
  397. package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts +0 -174
  398. package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle.d.ts +0 -25
  399. package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
  400. package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
  401. package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle.d.ts +0 -47
  402. package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +0 -2
  403. package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RWAVault.d.ts +0 -560
  404. package/dist/types/typechain-types/typechain-types/contracts/core/vaults/index.d.ts +0 -6
  405. package/dist/types/typechain-types/typechain-types/contracts/index.d.ts +0 -10
  406. package/dist/types/typechain-types/typechain-types/contracts/interfaces/IComplianceRegistry.d.ts +0 -63
  407. package/dist/types/typechain-types/typechain-types/contracts/interfaces/IERC20.d.ts +0 -129
  408. package/dist/types/typechain-types/typechain-types/contracts/interfaces/INFTLiquidator.d.ts +0 -240
  409. package/dist/types/typechain-types/typechain-types/contracts/interfaces/INFTWhitelist.d.ts +0 -75
  410. package/dist/types/typechain-types/typechain-types/contracts/interfaces/IPoolManager.d.ts +0 -37
  411. package/dist/types/typechain-types/typechain-types/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +0 -164
  412. package/dist/types/typechain-types/typechain-types/contracts/interfaces/IUSDC.d.ts +0 -129
  413. package/dist/types/typechain-types/typechain-types/contracts/interfaces/IveRAACDistributor.d.ts +0 -59
  414. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/IBaseCollector.d.ts +0 -39
  415. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +0 -537
  416. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/ITreasury.d.ts +0 -120
  417. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +0 -3
  418. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/IBoostController.d.ts +0 -269
  419. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +0 -623
  420. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGauge.d.ts +0 -235
  421. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +0 -523
  422. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +0 -351
  423. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +0 -3
  424. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/index.d.ts +0 -4
  425. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +0 -551
  426. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +0 -309
  427. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/index.d.ts +0 -2
  428. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/index.d.ts +0 -16
  429. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/ILLamaLocker.d.ts +0 -332
  430. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/ILLamaTemple.d.ts +0 -302
  431. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/index.d.ts +0 -2
  432. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +0 -345
  433. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver.d.ts +0 -49
  434. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/index.d.ts +0 -2
  435. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +0 -238
  436. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
  437. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/index.d.ts +0 -4
  438. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +0 -136
  439. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IERC20PriceOracle.d.ts +0 -25
  440. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable.d.ts +0 -35
  441. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +0 -4
  442. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +0 -185
  443. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +0 -152
  444. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/IERC721Adapter.d.ts +0 -51
  445. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +0 -1163
  446. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +0 -102
  447. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/index.d.ts +0 -4
  448. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap.d.ts +0 -51
  449. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +0 -443
  450. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage.d.ts +0 -49
  451. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/index.d.ts +0 -3
  452. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/index.d.ts +0 -5
  453. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +0 -270
  454. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +0 -279
  455. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IIndexToken.d.ts +0 -187
  456. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +0 -630
  457. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRAACToken.d.ts +0 -346
  458. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +0 -385
  459. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IVaultToken.d.ts +0 -197
  460. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +0 -621
  461. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +0 -8
  462. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +0 -265
  463. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IBaseVault.d.ts +0 -83
  464. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IERC721VaultAdapter.d.ts +0 -37
  465. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +0 -87
  466. package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +0 -4
  467. package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +0 -176
  468. package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/ICurveLiquidityGaugeV5.d.ts +0 -357
  469. package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/index.d.ts +0 -2
  470. package/dist/types/typechain-types/typechain-types/contracts/interfaces/index.d.ts +0 -11
  471. package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/IAuction.d.ts +0 -137
  472. package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/IZENO.d.ts +0 -216
  473. package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/index.d.ts +0 -2
  474. package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/BoostCalculator.d.ts +0 -42
  475. package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/Checkpoints.d.ts +0 -55
  476. package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/LockManager.d.ts +0 -94
  477. package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +0 -93
  478. package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/RAACVoting.d.ts +0 -45
  479. package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/VotingPowerLib.d.ts +0 -66
  480. package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/index.d.ts +0 -3
  481. package/dist/types/typechain-types/typechain-types/contracts/libraries/index.d.ts +0 -8
  482. package/dist/types/typechain-types/typechain-types/contracts/libraries/math/TimeWeightedAverage.d.ts +0 -80
  483. package/dist/types/typechain-types/typechain-types/contracts/libraries/math/index.d.ts +0 -1
  484. package/dist/types/typechain-types/typechain-types/contracts/libraries/pools/ReserveLibrary.d.ts +0 -124
  485. package/dist/types/typechain-types/typechain-types/contracts/libraries/pools/index.d.ts +0 -1
  486. package/dist/types/typechain-types/typechain-types/contracts/libraries/utils/StringUtils.d.ts +0 -20
  487. package/dist/types/typechain-types/typechain-types/contracts/libraries/utils/index.d.ts +0 -1
  488. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +0 -134
  489. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/MockWETH.d.ts +0 -225
  490. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/index.d.ts +0 -2
  491. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +0 -350
  492. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock.d.ts +0 -56
  493. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge.d.ts +0 -35
  494. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +0 -2
  495. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/index.d.ts +0 -3
  496. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +0 -845
  497. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +0 -25
  498. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
  499. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/index.d.ts +0 -4
  500. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget.d.ts +0 -37
  501. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/TimelockTestTarget.d.ts +0 -76
  502. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/index.d.ts +0 -2
  503. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/index.d.ts +0 -18
  504. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker.d.ts +0 -394
  505. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +0 -1
  506. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/index.d.ts +0 -2
  507. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockChainlinkAggregator.d.ts +0 -151
  508. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.d.ts +0 -33
  509. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle.d.ts +0 -25
  510. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts +0 -33
  511. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
  512. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter.d.ts +0 -41
  513. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +0 -45
  514. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +0 -2
  515. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockOracle.d.ts +0 -43
  516. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle.d.ts +0 -169
  517. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockVRFCoordinatorV2.d.ts +0 -731
  518. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable.d.ts +0 -171
  519. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +0 -237
  520. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +0 -243
  521. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/index.d.ts +0 -10
  522. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +0 -121
  523. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +0 -152
  524. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +0 -1183
  525. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockPool.d.ts +0 -55
  526. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockStabilityPool.d.ts +0 -69
  527. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/index.d.ts +0 -6
  528. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis.d.ts +0 -39
  529. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList.d.ts +0 -25
  530. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +0 -2
  531. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockContract.d.ts +0 -29
  532. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockContractWithConfig.d.ts +0 -39
  533. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/RAACHousePricesMock.d.ts +0 -47
  534. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/index.d.ts +0 -6
  535. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/CrvUSDToken.d.ts +0 -212
  536. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/CrvUSDTokenLimited.d.ts +0 -234
  537. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/ERC20Mock.d.ts +0 -155
  538. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/ERC721Mock.d.ts +0 -229
  539. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockCollectableUnderlying.d.ts +0 -292
  540. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockFeeCollectorToken.d.ts +0 -216
  541. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockToken.d.ts +0 -187
  542. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockUSDC.d.ts +0 -155
  543. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockVeToken.d.ts +0 -510
  544. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/RAACMockERC20.d.ts +0 -186
  545. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/index.d.ts +0 -9
  546. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/vaults/MockVault.d.ts +0 -290
  547. package/dist/types/typechain-types/typechain-types/contracts/mocks/core/vaults/index.d.ts +0 -1
  548. package/dist/types/typechain-types/typechain-types/contracts/mocks/index.d.ts +0 -6
  549. package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/MockStringUtils.d.ts +0 -25
  550. package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +0 -204
  551. package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +0 -83
  552. package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +0 -173
  553. package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +0 -160
  554. package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/RAACVotingMock.d.ts +0 -41
  555. package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +0 -281
  556. package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +0 -3
  557. package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/index.d.ts +0 -7
  558. package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/TimeWeightedAverageMock.d.ts +0 -203
  559. package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/WadRayMathMock.d.ts +0 -78
  560. package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/index.d.ts +0 -2
  561. package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +0 -229
  562. package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation.d.ts +0 -185
  563. package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/index.d.ts +0 -2
  564. package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/MaliciousDeposit.d.ts +0 -29
  565. package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/MaliciousWithdraw.d.ts +0 -29
  566. package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VeRAACFuzzHelper.d.ts +0 -71
  567. package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +0 -100
  568. package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
  569. package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/index.d.ts +0 -3
  570. package/dist/types/typechain-types/typechain-types/contracts/zeno/Auction.d.ts +0 -275
  571. package/dist/types/typechain-types/typechain-types/contracts/zeno/AuctionFactory.d.ts +0 -209
  572. package/dist/types/typechain-types/typechain-types/contracts/zeno/ZENO.d.ts +0 -293
  573. package/dist/types/typechain-types/typechain-types/contracts/zeno/ZENOFactory.d.ts +0 -151
  574. package/dist/types/typechain-types/typechain-types/contracts/zeno/index.d.ts +0 -4
  575. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/index.d.ts +0 -1
  576. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/index.d.ts +0 -1
  577. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/index.d.ts +0 -1
  578. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient__factory.d.ts +0 -49
  579. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +0 -3
  580. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient__factory.d.ts +0 -25
  581. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter__factory.d.ts +0 -268
  582. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +0 -2
  583. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +0 -48
  584. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +0 -1
  585. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/index.d.ts +0 -3
  586. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +0 -90
  587. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +0 -86
  588. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +0 -2
  589. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/index.d.ts +0 -2
  590. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface__factory.d.ts +0 -93
  591. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver__factory.d.ts +0 -25
  592. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable__factory.d.ts +0 -33
  593. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface__factory.d.ts +0 -191
  594. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +0 -4
  595. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2__factory.d.ts +0 -33
  596. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI__factory.d.ts +0 -663
  597. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus__factory.d.ts +0 -139
  598. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +0 -4
  599. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus__factory.d.ts +0 -194
  600. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus__factory.d.ts +0 -27
  601. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus__factory.d.ts +0 -155
  602. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +0 -3
  603. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +0 -32
  604. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +0 -1
  605. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -2
  606. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface__factory.d.ts +0 -171
  607. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
  608. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +0 -944
  609. package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +0 -1
  610. package/dist/types/typechain-types/typechain-types/factories/@chainlink/index.d.ts +0 -1
  611. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +0 -181
  612. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +0 -157
  613. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.d.ts +0 -95
  614. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +0 -64
  615. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +0 -4
  616. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +0 -4
  617. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.d.ts +0 -289
  618. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4626__factory.d.ts +0 -472
  619. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +0 -46
  620. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +0 -83
  621. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +0 -71
  622. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +0 -83
  623. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +0 -3
  624. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +0 -4
  625. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +0 -241
  626. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +0 -147
  627. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit__factory.d.ts +0 -402
  628. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC4626__factory.d.ts +0 -632
  629. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +0 -177
  630. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit__factory.d.ts +0 -65
  631. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -4
  632. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -4
  633. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +0 -46
  634. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +0 -1
  635. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/ERC721__factory.d.ts +0 -337
  636. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +0 -33
  637. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +0 -227
  638. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable__factory.d.ts +0 -395
  639. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable__factory.d.ts +0 -269
  640. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +0 -261
  641. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -3
  642. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -5
  643. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder__factory.d.ts +0 -33
  644. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +0 -1
  645. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts +0 -2
  646. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +0 -42
  647. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +0 -50
  648. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Nonces__factory.d.ts +0 -33
  649. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Pausable__factory.d.ts +0 -45
  650. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/ReentrancyGuard__factory.d.ts +0 -11
  651. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +0 -34
  652. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +0 -34
  653. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +0 -42
  654. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +0 -58
  655. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +0 -26
  656. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +0 -3
  657. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +0 -9
  658. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +0 -21
  659. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +0 -21
  660. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -2
  661. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +0 -26
  662. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +0 -62
  663. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +0 -2
  664. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.d.ts +0 -82
  665. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/index.d.ts +0 -1
  666. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts +0 -3
  667. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +0 -1
  668. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +0 -1
  669. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.d.ts +0 -25
  670. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable__factory.d.ts +0 -63
  671. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +0 -2
  672. package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/index.d.ts +0 -2
  673. package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +0 -393
  674. package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +0 -1329
  675. package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal__factory.d.ts +0 -49
  676. package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +0 -223
  677. package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +0 -2
  678. package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +0 -389
  679. package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +0 -389
  680. package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +0 -437
  681. package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/index.d.ts +0 -6
  682. package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +0 -716
  683. package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/boost/index.d.ts +0 -1
  684. package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +0 -1815
  685. package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +0 -1448
  686. package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +0 -896
  687. package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +0 -1856
  688. package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +0 -1866
  689. package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +0 -5
  690. package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/index.d.ts +0 -2
  691. package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +0 -950
  692. package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +0 -797
  693. package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/index.d.ts +0 -2
  694. package/dist/types/typechain-types/typechain-types/factories/contracts/core/index.d.ts +0 -9
  695. package/dist/types/typechain-types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +0 -1052
  696. package/dist/types/typechain-types/typechain-types/factories/contracts/core/lockers/index.d.ts +0 -1
  697. package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +0 -1103
  698. package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACMinter/index.d.ts +0 -1
  699. package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +0 -717
  700. package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
  701. package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/index.d.ts +0 -2
  702. package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +0 -245
  703. package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +0 -436
  704. package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +0 -334
  705. package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +0 -336
  706. package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle__factory.d.ts +0 -17
  707. package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +0 -74
  708. package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +0 -2
  709. package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +0 -52
  710. package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle__factory.d.ts +0 -17
  711. package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +0 -2
  712. package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/index.d.ts +0 -6
  713. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +0 -403
  714. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter__factory.d.ts +0 -21
  715. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle__factory.d.ts +0 -17
  716. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +0 -3
  717. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
  718. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +0 -586
  719. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +0 -2699
  720. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +0 -744
  721. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +0 -674
  722. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +0 -6
  723. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +0 -303
  724. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +0 -275
  725. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +0 -390
  726. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +0 -277
  727. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +0 -1166
  728. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +0 -4
  729. package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/index.d.ts +0 -2
  730. package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +0 -320
  731. package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList__factory.d.ts +0 -21
  732. package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +0 -2
  733. package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry__factory.d.ts +0 -276
  734. package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/WithCompliance__factory.d.ts +0 -17
  735. package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/index.d.ts +0 -3
  736. package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +0 -741
  737. package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +0 -576
  738. package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +0 -602
  739. package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +0 -401
  740. package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +0 -1358
  741. package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +0 -652
  742. package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +0 -901
  743. package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +0 -465
  744. package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +0 -1544
  745. package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/index.d.ts +0 -8
  746. package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts +0 -285
  747. package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle__factory.d.ts +0 -17
  748. package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
  749. package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +0 -311
  750. package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +0 -307
  751. package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
  752. package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle__factory.d.ts +0 -25
  753. package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter__factory.d.ts +0 -350
  754. package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +0 -2
  755. package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +0 -861
  756. package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/index.d.ts +0 -4
  757. package/dist/types/typechain-types/typechain-types/factories/contracts/index.d.ts +0 -5
  758. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +0 -71
  759. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IERC20__factory.d.ts +0 -147
  760. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +0 -272
  761. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/INFTWhitelist__factory.d.ts +0 -77
  762. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IPoolManager__factory.d.ts +0 -43
  763. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +0 -189
  764. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IUSDC__factory.d.ts +0 -147
  765. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +0 -75
  766. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/IBaseCollector__factory.d.ts +0 -33
  767. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +0 -718
  768. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +0 -136
  769. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +0 -3
  770. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +0 -295
  771. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +0 -775
  772. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +0 -623
  773. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts +0 -425
  774. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +0 -307
  775. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +0 -3
  776. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/index.d.ts +0 -2
  777. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +0 -852
  778. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +0 -492
  779. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/index.d.ts +0 -2
  780. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/index.d.ts +0 -8
  781. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaLocker__factory.d.ts +0 -390
  782. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaTemple__factory.d.ts +0 -390
  783. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/index.d.ts +0 -2
  784. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver__factory.d.ts +0 -35
  785. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +0 -397
  786. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +0 -2
  787. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +0 -286
  788. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
  789. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/index.d.ts +0 -2
  790. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +0 -143
  791. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IERC20PriceOracle__factory.d.ts +0 -17
  792. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable__factory.d.ts +0 -25
  793. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +0 -4
  794. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +0 -233
  795. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +0 -203
  796. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IERC721Adapter__factory.d.ts +0 -53
  797. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +0 -191
  798. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +0 -1419
  799. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +0 -4
  800. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +0 -61
  801. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage__factory.d.ts +0 -56
  802. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +0 -567
  803. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +0 -3
  804. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/index.d.ts +0 -3
  805. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +0 -336
  806. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +0 -372
  807. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IIndexToken__factory.d.ts +0 -227
  808. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +0 -764
  809. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACToken__factory.d.ts +0 -436
  810. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +0 -486
  811. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IVaultToken__factory.d.ts +0 -223
  812. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +0 -761
  813. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +0 -8
  814. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +0 -329
  815. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseVault__factory.d.ts +0 -137
  816. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +0 -115
  817. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +0 -4
  818. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +0 -258
  819. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/ICurveLiquidityGaugeV5__factory.d.ts +0 -503
  820. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/index.d.ts +0 -2
  821. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/index.d.ts +0 -8
  822. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +0 -173
  823. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +0 -288
  824. package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/index.d.ts +0 -2
  825. package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +0 -54
  826. package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +0 -68
  827. package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +0 -120
  828. package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +0 -115
  829. package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +0 -92
  830. package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +0 -74
  831. package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/index.d.ts +0 -3
  832. package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/index.d.ts +0 -4
  833. package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +0 -97
  834. package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/math/index.d.ts +0 -1
  835. package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +0 -135
  836. package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/pools/index.d.ts +0 -1
  837. package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +0 -26
  838. package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/utils/index.d.ts +0 -1
  839. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +0 -165
  840. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +0 -353
  841. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +0 -2
  842. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +0 -661
  843. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +0 -65
  844. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge__factory.d.ts +0 -21
  845. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +0 -2
  846. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/index.d.ts +0 -2
  847. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +0 -1194
  848. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +0 -36
  849. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
  850. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/index.d.ts +0 -2
  851. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +0 -65
  852. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +0 -100
  853. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/index.d.ts +0 -2
  854. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/index.d.ts +0 -9
  855. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +0 -615
  856. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +0 -1
  857. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/index.d.ts +0 -1
  858. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +0 -168
  859. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle__factory.d.ts +0 -17
  860. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts +0 -42
  861. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
  862. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +0 -42
  863. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter__factory.d.ts +0 -37
  864. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +0 -66
  865. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +0 -2
  866. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +0 -62
  867. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +0 -242
  868. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +0 -944
  869. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +0 -184
  870. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +0 -352
  871. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +0 -354
  872. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +0 -9
  873. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +0 -224
  874. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +0 -1471
  875. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +0 -195
  876. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +0 -795
  877. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +0 -84
  878. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +0 -109
  879. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +0 -6
  880. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +0 -50
  881. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList__factory.d.ts +0 -21
  882. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +0 -2
  883. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +0 -53
  884. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +0 -42
  885. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +0 -68
  886. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +0 -64
  887. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/index.d.ts +0 -5
  888. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +0 -417
  889. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +0 -379
  890. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +0 -286
  891. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +0 -388
  892. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +0 -451
  893. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +0 -393
  894. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +0 -324
  895. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +0 -278
  896. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +0 -714
  897. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +0 -335
  898. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +0 -9
  899. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +0 -525
  900. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/vaults/index.d.ts +0 -1
  901. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/index.d.ts +0 -3
  902. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +0 -40
  903. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +0 -282
  904. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +0 -124
  905. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +0 -206
  906. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +0 -208
  907. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +0 -70
  908. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +0 -341
  909. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +0 -3
  910. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/index.d.ts +0 -4
  911. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +0 -247
  912. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +0 -154
  913. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/index.d.ts +0 -2
  914. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +0 -224
  915. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +0 -287
  916. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/index.d.ts +0 -2
  917. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +0 -53
  918. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +0 -53
  919. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +0 -80
  920. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +0 -17
  921. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +0 -113
  922. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
  923. package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/index.d.ts +0 -3
  924. package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +0 -287
  925. package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +0 -452
  926. package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +0 -235
  927. package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +0 -564
  928. package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/index.d.ts +0 -4
  929. package/dist/types/typechain-types/typechain-types/factories/index.d.ts +0 -3
  930. package/dist/types/typechain-types/typechain-types/index.d.ts +0 -437
@@ -1,632 +0,0 @@
1
- import { type ContractRunner } from "ethers";
2
- import type { ERC4626, ERC4626Interface } from "../../../../../../@openzeppelin/contracts/token/ERC20/extensions/ERC4626";
3
- export declare class ERC4626__factory {
4
- static readonly abi: readonly [{
5
- readonly inputs: readonly [{
6
- readonly internalType: "address";
7
- readonly name: "target";
8
- readonly type: "address";
9
- }];
10
- readonly name: "AddressEmptyCode";
11
- readonly type: "error";
12
- }, {
13
- readonly inputs: readonly [{
14
- readonly internalType: "address";
15
- readonly name: "account";
16
- readonly type: "address";
17
- }];
18
- readonly name: "AddressInsufficientBalance";
19
- readonly type: "error";
20
- }, {
21
- readonly inputs: readonly [{
22
- readonly internalType: "address";
23
- readonly name: "spender";
24
- readonly type: "address";
25
- }, {
26
- readonly internalType: "uint256";
27
- readonly name: "allowance";
28
- readonly type: "uint256";
29
- }, {
30
- readonly internalType: "uint256";
31
- readonly name: "needed";
32
- readonly type: "uint256";
33
- }];
34
- readonly name: "ERC20InsufficientAllowance";
35
- readonly type: "error";
36
- }, {
37
- readonly inputs: readonly [{
38
- readonly internalType: "address";
39
- readonly name: "sender";
40
- readonly type: "address";
41
- }, {
42
- readonly internalType: "uint256";
43
- readonly name: "balance";
44
- readonly type: "uint256";
45
- }, {
46
- readonly internalType: "uint256";
47
- readonly name: "needed";
48
- readonly type: "uint256";
49
- }];
50
- readonly name: "ERC20InsufficientBalance";
51
- readonly type: "error";
52
- }, {
53
- readonly inputs: readonly [{
54
- readonly internalType: "address";
55
- readonly name: "approver";
56
- readonly type: "address";
57
- }];
58
- readonly name: "ERC20InvalidApprover";
59
- readonly type: "error";
60
- }, {
61
- readonly inputs: readonly [{
62
- readonly internalType: "address";
63
- readonly name: "receiver";
64
- readonly type: "address";
65
- }];
66
- readonly name: "ERC20InvalidReceiver";
67
- readonly type: "error";
68
- }, {
69
- readonly inputs: readonly [{
70
- readonly internalType: "address";
71
- readonly name: "sender";
72
- readonly type: "address";
73
- }];
74
- readonly name: "ERC20InvalidSender";
75
- readonly type: "error";
76
- }, {
77
- readonly inputs: readonly [{
78
- readonly internalType: "address";
79
- readonly name: "spender";
80
- readonly type: "address";
81
- }];
82
- readonly name: "ERC20InvalidSpender";
83
- readonly type: "error";
84
- }, {
85
- readonly inputs: readonly [{
86
- readonly internalType: "address";
87
- readonly name: "receiver";
88
- readonly type: "address";
89
- }, {
90
- readonly internalType: "uint256";
91
- readonly name: "assets";
92
- readonly type: "uint256";
93
- }, {
94
- readonly internalType: "uint256";
95
- readonly name: "max";
96
- readonly type: "uint256";
97
- }];
98
- readonly name: "ERC4626ExceededMaxDeposit";
99
- readonly type: "error";
100
- }, {
101
- readonly inputs: readonly [{
102
- readonly internalType: "address";
103
- readonly name: "receiver";
104
- readonly type: "address";
105
- }, {
106
- readonly internalType: "uint256";
107
- readonly name: "shares";
108
- readonly type: "uint256";
109
- }, {
110
- readonly internalType: "uint256";
111
- readonly name: "max";
112
- readonly type: "uint256";
113
- }];
114
- readonly name: "ERC4626ExceededMaxMint";
115
- readonly type: "error";
116
- }, {
117
- readonly inputs: readonly [{
118
- readonly internalType: "address";
119
- readonly name: "owner";
120
- readonly type: "address";
121
- }, {
122
- readonly internalType: "uint256";
123
- readonly name: "shares";
124
- readonly type: "uint256";
125
- }, {
126
- readonly internalType: "uint256";
127
- readonly name: "max";
128
- readonly type: "uint256";
129
- }];
130
- readonly name: "ERC4626ExceededMaxRedeem";
131
- readonly type: "error";
132
- }, {
133
- readonly inputs: readonly [{
134
- readonly internalType: "address";
135
- readonly name: "owner";
136
- readonly type: "address";
137
- }, {
138
- readonly internalType: "uint256";
139
- readonly name: "assets";
140
- readonly type: "uint256";
141
- }, {
142
- readonly internalType: "uint256";
143
- readonly name: "max";
144
- readonly type: "uint256";
145
- }];
146
- readonly name: "ERC4626ExceededMaxWithdraw";
147
- readonly type: "error";
148
- }, {
149
- readonly inputs: readonly [];
150
- readonly name: "FailedInnerCall";
151
- readonly type: "error";
152
- }, {
153
- readonly inputs: readonly [];
154
- readonly name: "MathOverflowedMulDiv";
155
- readonly type: "error";
156
- }, {
157
- readonly inputs: readonly [{
158
- readonly internalType: "address";
159
- readonly name: "token";
160
- readonly type: "address";
161
- }];
162
- readonly name: "SafeERC20FailedOperation";
163
- readonly type: "error";
164
- }, {
165
- readonly anonymous: false;
166
- readonly inputs: readonly [{
167
- readonly indexed: true;
168
- readonly internalType: "address";
169
- readonly name: "owner";
170
- readonly type: "address";
171
- }, {
172
- readonly indexed: true;
173
- readonly internalType: "address";
174
- readonly name: "spender";
175
- readonly type: "address";
176
- }, {
177
- readonly indexed: false;
178
- readonly internalType: "uint256";
179
- readonly name: "value";
180
- readonly type: "uint256";
181
- }];
182
- readonly name: "Approval";
183
- readonly type: "event";
184
- }, {
185
- readonly anonymous: false;
186
- readonly inputs: readonly [{
187
- readonly indexed: true;
188
- readonly internalType: "address";
189
- readonly name: "sender";
190
- readonly type: "address";
191
- }, {
192
- readonly indexed: true;
193
- readonly internalType: "address";
194
- readonly name: "owner";
195
- readonly type: "address";
196
- }, {
197
- readonly indexed: false;
198
- readonly internalType: "uint256";
199
- readonly name: "assets";
200
- readonly type: "uint256";
201
- }, {
202
- readonly indexed: false;
203
- readonly internalType: "uint256";
204
- readonly name: "shares";
205
- readonly type: "uint256";
206
- }];
207
- readonly name: "Deposit";
208
- readonly type: "event";
209
- }, {
210
- readonly anonymous: false;
211
- readonly inputs: readonly [{
212
- readonly indexed: true;
213
- readonly internalType: "address";
214
- readonly name: "from";
215
- readonly type: "address";
216
- }, {
217
- readonly indexed: true;
218
- readonly internalType: "address";
219
- readonly name: "to";
220
- readonly type: "address";
221
- }, {
222
- readonly indexed: false;
223
- readonly internalType: "uint256";
224
- readonly name: "value";
225
- readonly type: "uint256";
226
- }];
227
- readonly name: "Transfer";
228
- readonly type: "event";
229
- }, {
230
- readonly anonymous: false;
231
- readonly inputs: readonly [{
232
- readonly indexed: true;
233
- readonly internalType: "address";
234
- readonly name: "sender";
235
- readonly type: "address";
236
- }, {
237
- readonly indexed: true;
238
- readonly internalType: "address";
239
- readonly name: "receiver";
240
- readonly type: "address";
241
- }, {
242
- readonly indexed: true;
243
- readonly internalType: "address";
244
- readonly name: "owner";
245
- readonly type: "address";
246
- }, {
247
- readonly indexed: false;
248
- readonly internalType: "uint256";
249
- readonly name: "assets";
250
- readonly type: "uint256";
251
- }, {
252
- readonly indexed: false;
253
- readonly internalType: "uint256";
254
- readonly name: "shares";
255
- readonly type: "uint256";
256
- }];
257
- readonly name: "Withdraw";
258
- readonly type: "event";
259
- }, {
260
- readonly inputs: readonly [{
261
- readonly internalType: "address";
262
- readonly name: "owner";
263
- readonly type: "address";
264
- }, {
265
- readonly internalType: "address";
266
- readonly name: "spender";
267
- readonly type: "address";
268
- }];
269
- readonly name: "allowance";
270
- readonly outputs: readonly [{
271
- readonly internalType: "uint256";
272
- readonly name: "";
273
- readonly type: "uint256";
274
- }];
275
- readonly stateMutability: "view";
276
- readonly type: "function";
277
- }, {
278
- readonly inputs: readonly [{
279
- readonly internalType: "address";
280
- readonly name: "spender";
281
- readonly type: "address";
282
- }, {
283
- readonly internalType: "uint256";
284
- readonly name: "value";
285
- readonly type: "uint256";
286
- }];
287
- readonly name: "approve";
288
- readonly outputs: readonly [{
289
- readonly internalType: "bool";
290
- readonly name: "";
291
- readonly type: "bool";
292
- }];
293
- readonly stateMutability: "nonpayable";
294
- readonly type: "function";
295
- }, {
296
- readonly inputs: readonly [];
297
- readonly name: "asset";
298
- readonly outputs: readonly [{
299
- readonly internalType: "address";
300
- readonly name: "";
301
- readonly type: "address";
302
- }];
303
- readonly stateMutability: "view";
304
- readonly type: "function";
305
- }, {
306
- readonly inputs: readonly [{
307
- readonly internalType: "address";
308
- readonly name: "account";
309
- readonly type: "address";
310
- }];
311
- readonly name: "balanceOf";
312
- readonly outputs: readonly [{
313
- readonly internalType: "uint256";
314
- readonly name: "";
315
- readonly type: "uint256";
316
- }];
317
- readonly stateMutability: "view";
318
- readonly type: "function";
319
- }, {
320
- readonly inputs: readonly [{
321
- readonly internalType: "uint256";
322
- readonly name: "shares";
323
- readonly type: "uint256";
324
- }];
325
- readonly name: "convertToAssets";
326
- readonly outputs: readonly [{
327
- readonly internalType: "uint256";
328
- readonly name: "";
329
- readonly type: "uint256";
330
- }];
331
- readonly stateMutability: "view";
332
- readonly type: "function";
333
- }, {
334
- readonly inputs: readonly [{
335
- readonly internalType: "uint256";
336
- readonly name: "assets";
337
- readonly type: "uint256";
338
- }];
339
- readonly name: "convertToShares";
340
- readonly outputs: readonly [{
341
- readonly internalType: "uint256";
342
- readonly name: "";
343
- readonly type: "uint256";
344
- }];
345
- readonly stateMutability: "view";
346
- readonly type: "function";
347
- }, {
348
- readonly inputs: readonly [];
349
- readonly name: "decimals";
350
- readonly outputs: readonly [{
351
- readonly internalType: "uint8";
352
- readonly name: "";
353
- readonly type: "uint8";
354
- }];
355
- readonly stateMutability: "view";
356
- readonly type: "function";
357
- }, {
358
- readonly inputs: readonly [{
359
- readonly internalType: "uint256";
360
- readonly name: "assets";
361
- readonly type: "uint256";
362
- }, {
363
- readonly internalType: "address";
364
- readonly name: "receiver";
365
- readonly type: "address";
366
- }];
367
- readonly name: "deposit";
368
- readonly outputs: readonly [{
369
- readonly internalType: "uint256";
370
- readonly name: "";
371
- readonly type: "uint256";
372
- }];
373
- readonly stateMutability: "nonpayable";
374
- readonly type: "function";
375
- }, {
376
- readonly inputs: readonly [{
377
- readonly internalType: "address";
378
- readonly name: "";
379
- readonly type: "address";
380
- }];
381
- readonly name: "maxDeposit";
382
- readonly outputs: readonly [{
383
- readonly internalType: "uint256";
384
- readonly name: "";
385
- readonly type: "uint256";
386
- }];
387
- readonly stateMutability: "view";
388
- readonly type: "function";
389
- }, {
390
- readonly inputs: readonly [{
391
- readonly internalType: "address";
392
- readonly name: "";
393
- readonly type: "address";
394
- }];
395
- readonly name: "maxMint";
396
- readonly outputs: readonly [{
397
- readonly internalType: "uint256";
398
- readonly name: "";
399
- readonly type: "uint256";
400
- }];
401
- readonly stateMutability: "view";
402
- readonly type: "function";
403
- }, {
404
- readonly inputs: readonly [{
405
- readonly internalType: "address";
406
- readonly name: "owner";
407
- readonly type: "address";
408
- }];
409
- readonly name: "maxRedeem";
410
- readonly outputs: readonly [{
411
- readonly internalType: "uint256";
412
- readonly name: "";
413
- readonly type: "uint256";
414
- }];
415
- readonly stateMutability: "view";
416
- readonly type: "function";
417
- }, {
418
- readonly inputs: readonly [{
419
- readonly internalType: "address";
420
- readonly name: "owner";
421
- readonly type: "address";
422
- }];
423
- readonly name: "maxWithdraw";
424
- readonly outputs: readonly [{
425
- readonly internalType: "uint256";
426
- readonly name: "";
427
- readonly type: "uint256";
428
- }];
429
- readonly stateMutability: "view";
430
- readonly type: "function";
431
- }, {
432
- readonly inputs: readonly [{
433
- readonly internalType: "uint256";
434
- readonly name: "shares";
435
- readonly type: "uint256";
436
- }, {
437
- readonly internalType: "address";
438
- readonly name: "receiver";
439
- readonly type: "address";
440
- }];
441
- readonly name: "mint";
442
- readonly outputs: readonly [{
443
- readonly internalType: "uint256";
444
- readonly name: "";
445
- readonly type: "uint256";
446
- }];
447
- readonly stateMutability: "nonpayable";
448
- readonly type: "function";
449
- }, {
450
- readonly inputs: readonly [];
451
- readonly name: "name";
452
- readonly outputs: readonly [{
453
- readonly internalType: "string";
454
- readonly name: "";
455
- readonly type: "string";
456
- }];
457
- readonly stateMutability: "view";
458
- readonly type: "function";
459
- }, {
460
- readonly inputs: readonly [{
461
- readonly internalType: "uint256";
462
- readonly name: "assets";
463
- readonly type: "uint256";
464
- }];
465
- readonly name: "previewDeposit";
466
- readonly outputs: readonly [{
467
- readonly internalType: "uint256";
468
- readonly name: "";
469
- readonly type: "uint256";
470
- }];
471
- readonly stateMutability: "view";
472
- readonly type: "function";
473
- }, {
474
- readonly inputs: readonly [{
475
- readonly internalType: "uint256";
476
- readonly name: "shares";
477
- readonly type: "uint256";
478
- }];
479
- readonly name: "previewMint";
480
- readonly outputs: readonly [{
481
- readonly internalType: "uint256";
482
- readonly name: "";
483
- readonly type: "uint256";
484
- }];
485
- readonly stateMutability: "view";
486
- readonly type: "function";
487
- }, {
488
- readonly inputs: readonly [{
489
- readonly internalType: "uint256";
490
- readonly name: "shares";
491
- readonly type: "uint256";
492
- }];
493
- readonly name: "previewRedeem";
494
- readonly outputs: readonly [{
495
- readonly internalType: "uint256";
496
- readonly name: "";
497
- readonly type: "uint256";
498
- }];
499
- readonly stateMutability: "view";
500
- readonly type: "function";
501
- }, {
502
- readonly inputs: readonly [{
503
- readonly internalType: "uint256";
504
- readonly name: "assets";
505
- readonly type: "uint256";
506
- }];
507
- readonly name: "previewWithdraw";
508
- readonly outputs: readonly [{
509
- readonly internalType: "uint256";
510
- readonly name: "";
511
- readonly type: "uint256";
512
- }];
513
- readonly stateMutability: "view";
514
- readonly type: "function";
515
- }, {
516
- readonly inputs: readonly [{
517
- readonly internalType: "uint256";
518
- readonly name: "shares";
519
- readonly type: "uint256";
520
- }, {
521
- readonly internalType: "address";
522
- readonly name: "receiver";
523
- readonly type: "address";
524
- }, {
525
- readonly internalType: "address";
526
- readonly name: "owner";
527
- readonly type: "address";
528
- }];
529
- readonly name: "redeem";
530
- readonly outputs: readonly [{
531
- readonly internalType: "uint256";
532
- readonly name: "";
533
- readonly type: "uint256";
534
- }];
535
- readonly stateMutability: "nonpayable";
536
- readonly type: "function";
537
- }, {
538
- readonly inputs: readonly [];
539
- readonly name: "symbol";
540
- readonly outputs: readonly [{
541
- readonly internalType: "string";
542
- readonly name: "";
543
- readonly type: "string";
544
- }];
545
- readonly stateMutability: "view";
546
- readonly type: "function";
547
- }, {
548
- readonly inputs: readonly [];
549
- readonly name: "totalAssets";
550
- readonly outputs: readonly [{
551
- readonly internalType: "uint256";
552
- readonly name: "";
553
- readonly type: "uint256";
554
- }];
555
- readonly stateMutability: "view";
556
- readonly type: "function";
557
- }, {
558
- readonly inputs: readonly [];
559
- readonly name: "totalSupply";
560
- readonly outputs: readonly [{
561
- readonly internalType: "uint256";
562
- readonly name: "";
563
- readonly type: "uint256";
564
- }];
565
- readonly stateMutability: "view";
566
- readonly type: "function";
567
- }, {
568
- readonly inputs: readonly [{
569
- readonly internalType: "address";
570
- readonly name: "to";
571
- readonly type: "address";
572
- }, {
573
- readonly internalType: "uint256";
574
- readonly name: "value";
575
- readonly type: "uint256";
576
- }];
577
- readonly name: "transfer";
578
- readonly outputs: readonly [{
579
- readonly internalType: "bool";
580
- readonly name: "";
581
- readonly type: "bool";
582
- }];
583
- readonly stateMutability: "nonpayable";
584
- readonly type: "function";
585
- }, {
586
- readonly inputs: readonly [{
587
- readonly internalType: "address";
588
- readonly name: "from";
589
- readonly type: "address";
590
- }, {
591
- readonly internalType: "address";
592
- readonly name: "to";
593
- readonly type: "address";
594
- }, {
595
- readonly internalType: "uint256";
596
- readonly name: "value";
597
- readonly type: "uint256";
598
- }];
599
- readonly name: "transferFrom";
600
- readonly outputs: readonly [{
601
- readonly internalType: "bool";
602
- readonly name: "";
603
- readonly type: "bool";
604
- }];
605
- readonly stateMutability: "nonpayable";
606
- readonly type: "function";
607
- }, {
608
- readonly inputs: readonly [{
609
- readonly internalType: "uint256";
610
- readonly name: "assets";
611
- readonly type: "uint256";
612
- }, {
613
- readonly internalType: "address";
614
- readonly name: "receiver";
615
- readonly type: "address";
616
- }, {
617
- readonly internalType: "address";
618
- readonly name: "owner";
619
- readonly type: "address";
620
- }];
621
- readonly name: "withdraw";
622
- readonly outputs: readonly [{
623
- readonly internalType: "uint256";
624
- readonly name: "";
625
- readonly type: "uint256";
626
- }];
627
- readonly stateMutability: "nonpayable";
628
- readonly type: "function";
629
- }];
630
- static createInterface(): ERC4626Interface;
631
- static connect(address: string, runner?: ContractRunner | null): ERC4626;
632
- }