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