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