@raac/rpc 1.1.0-beta.5 → 1.1.0-beta.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/RPCLibrary.js +86 -23
- package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +204 -249
- package/dist/artifacts/core/collectors/RAACTokenCollector.sol/RAACTokenCollector.json +485 -0
- package/dist/artifacts/core/collectors/RWAIndexTokenCollector.sol/RWAIndexTokenCollector.json +485 -0
- package/dist/artifacts/core/collectors/Treasury.sol/Treasury.json +550 -0
- package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +82 -122
- package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +271 -6
- package/dist/artifacts/core/oracles/RAACHousePriceOracle.sol/RAACHousePriceOracle.json +414 -0
- package/dist/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json +7 -2
- package/dist/artifacts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json +510 -0
- package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +515 -0
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +1101 -421
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +459 -120
- package/dist/artifacts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.json +397 -0
- package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +219 -12
- package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +101 -8
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +322 -43
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +2 -2
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +22 -21
- package/dist/artifacts/core/tokens/RWAIndexToken.sol/RWAIndexToken.json +591 -0
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +565 -209
- package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +389 -0
- package/dist/artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json +383 -0
- package/dist/artifacts/core/vaults/RWAVault.sol/RWAVault.json +1103 -0
- package/dist/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +622 -207
- package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +2 -2
- package/dist/artifacts/zeno/Auction.sol/Auction.json +165 -9
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +44 -2
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +114 -17
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +2 -2
- package/dist/configs/chains/11155111.json +77 -22
- package/dist/configs/chains/17000.json +63 -3
- package/dist/configs/chains/18453.json +187 -0
- package/dist/configs/chains/8453.json +90 -12
- package/dist/configs/chains/index.js +2 -0
- package/dist/configs/createConfig.js +3 -3
- package/dist/minter/get.js +1 -3
- package/dist/minter/getApy.js +2 -2
- package/dist/nfts/approveNFT.js +25 -0
- package/dist/nfts/getApprovalForAll.js +32 -0
- package/dist/nfts/getNFTApproval.js +33 -0
- package/dist/nfts/getOwnerOfNFT.js +39 -0
- package/dist/nfts/setApprovalForAll.js +34 -0
- package/dist/oracles/chainlink-networks-config.js +252 -0
- package/dist/oracles/houses/config.js +19 -0
- package/dist/oracles/houses/request.js +152 -0
- package/dist/oracles/prime-rate/config.js +49 -0
- package/dist/oracles/prime-rate/request.js +152 -0
- package/dist/pools/lendingPool/_helpers.js +40 -0
- package/dist/pools/lendingPool/adapters/erc20/getERC20AdapterBalance.js +20 -0
- package/dist/pools/lendingPool/adapters/erc20/getERC20AdapterInfo.js +32 -0
- package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.js +21 -0
- package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.js +33 -0
- package/dist/pools/lendingPool/borrowFromLendingPool.js +11 -12
- package/dist/pools/lendingPool/borrowFromLendingPoolWithInsurance.js +35 -22
- package/dist/pools/lendingPool/calculateInsuranceFee.js +12 -8
- package/dist/pools/lendingPool/closeLiquidation.js +16 -14
- package/dist/pools/lendingPool/depositAssetToLendingPool.js +22 -0
- package/dist/pools/lendingPool/depositToLendingPool.js +2 -5
- package/dist/pools/lendingPool/getAdapterAddress.js +44 -0
- package/dist/pools/lendingPool/getAdapters.js +20 -0
- package/dist/pools/lendingPool/getEligibleUserDeposits.js +2 -5
- package/dist/pools/lendingPool/getHealthFactor.js +15 -13
- package/dist/pools/lendingPool/getLendingPoolInfo.js +21 -37
- package/dist/pools/lendingPool/getLendingPoolTotalLiquidity.js +2 -6
- package/dist/pools/lendingPool/getParameters.js +30 -0
- package/dist/pools/lendingPool/getPositionDebt.js +12 -11
- package/dist/pools/lendingPool/getPositionScaledDebt.js +16 -13
- package/dist/pools/lendingPool/getPositionView.js +16 -10
- package/dist/pools/lendingPool/getPositionsScaledDebt.js +3 -5
- package/dist/pools/lendingPool/getRawUserDepositsInLendingPool.js +2 -5
- package/dist/pools/lendingPool/getUserCollateralValue.js +3 -5
- package/dist/pools/lendingPool/getWithdrawRequestInfo.js +23 -0
- package/dist/pools/lendingPool/initializeLiquidation.js +12 -12
- package/dist/pools/lendingPool/openVaultPosition.js +39 -0
- package/dist/pools/lendingPool/repayToLendingPool.js +11 -14
- package/dist/pools/lendingPool/requestWithdraw.js +28 -0
- package/dist/pools/lendingPool/types.js +2 -0
- package/dist/pools/lendingPool/vaultOpened.js +22 -0
- package/dist/pools/lendingPool/withdrawAssetFromLendingPool.js +21 -0
- package/dist/pools/lendingPool/withdrawFromLendingPool.js +8 -6
- package/dist/pools/rwaVault/_helpers.js +40 -0
- package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterAssetValue.js +21 -0
- package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterInfo.js +30 -0
- package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterTotalValue.js +20 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterAssetValue.js +21 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterDeposits.js +20 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterInfo.js +30 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterTotalValue.js +20 -0
- package/dist/pools/rwaVault/depositToRWAVault.js +31 -0
- package/dist/pools/rwaVault/getAdapterAddress.js +43 -0
- package/dist/pools/rwaVault/getAdapters.js +20 -0
- package/dist/pools/rwaVault/getNextRandomNFT.js +21 -0
- package/dist/pools/rwaVault/getRWAVaultInfo.js +45 -0
- package/dist/pools/rwaVault/redeemNFTFromRWAVault.js +23 -0
- package/dist/pools/rwaVault/requestRandomSeed.js +23 -0
- package/dist/pools/rwaVault/types.js +2 -0
- 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 +158 -47
- package/dist/types/RPCLibrary.d.ts +76 -23
- package/dist/types/configs/chains/index.d.ts +5 -3
- package/dist/types/configs/createConfig.d.ts +1 -1
- package/dist/types/configs/index.d.ts +2 -1
- package/dist/types/nfts/approveNFT.d.ts +9 -0
- package/dist/types/nfts/getApprovalForAll.d.ts +14 -0
- package/dist/types/nfts/getNFTApproval.d.ts +14 -0
- package/dist/types/nfts/getOwnerOfNFT.d.ts +13 -0
- package/dist/types/nfts/setApprovalForAll.d.ts +14 -0
- package/dist/types/oracles/chainlink-networks-config.d.ts +222 -0
- package/dist/types/oracles/houses/config.d.ts +13 -0
- package/dist/types/oracles/houses/request.d.ts +1 -0
- package/dist/types/oracles/prime-rate/config.d.ts +13 -0
- package/dist/types/oracles/prime-rate/request.d.ts +1 -0
- package/dist/types/pools/lendingPool/_helpers.d.ts +10 -0
- package/dist/types/pools/lendingPool/adapters/erc20/getERC20AdapterBalance.d.ts +3 -0
- package/dist/types/pools/lendingPool/adapters/erc20/getERC20AdapterInfo.d.ts +10 -0
- package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.d.ts +5 -0
- package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.d.ts +12 -0
- package/dist/types/pools/lendingPool/borrowFromLendingPool.d.ts +4 -3
- package/dist/types/pools/lendingPool/borrowFromLendingPoolWithInsurance.d.ts +4 -3
- package/dist/types/pools/lendingPool/calculateInsuranceFee.d.ts +3 -2
- package/dist/types/pools/lendingPool/closeLiquidation.d.ts +7 -5
- package/dist/types/pools/lendingPool/depositAssetToLendingPool.d.ts +5 -0
- package/dist/types/pools/lendingPool/getAdapterAddress.d.ts +16 -0
- package/dist/types/pools/lendingPool/getAdapters.d.ts +8 -0
- package/dist/types/pools/lendingPool/getHealthFactor.d.ts +6 -4
- package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +1 -3
- package/dist/types/pools/lendingPool/getParameters.d.ts +18 -0
- package/dist/types/pools/lendingPool/getPositionDebt.d.ts +4 -3
- package/dist/types/pools/lendingPool/getPositionScaledDebt.d.ts +8 -5
- package/dist/types/pools/lendingPool/getPositionView.d.ts +14 -18
- package/dist/types/pools/lendingPool/getWithdrawRequestInfo.d.ts +9 -0
- package/dist/types/pools/lendingPool/initializeLiquidation.d.ts +4 -3
- package/dist/types/pools/lendingPool/openVaultPosition.d.ts +4 -0
- package/dist/types/pools/lendingPool/repayToLendingPool.d.ts +4 -3
- package/dist/types/pools/lendingPool/requestWithdraw.d.ts +4 -0
- package/dist/types/pools/lendingPool/types.d.ts +7 -0
- package/dist/types/pools/lendingPool/vaultOpened.d.ts +11 -0
- package/dist/types/pools/lendingPool/withdrawAssetFromLendingPool.d.ts +4 -0
- package/dist/types/pools/rwaVault/_helpers.d.ts +10 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterAssetValue.d.ts +3 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterInfo.d.ts +9 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterTotalValue.d.ts +3 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterAssetValue.d.ts +3 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterDeposits.d.ts +3 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterInfo.d.ts +9 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterTotalValue.d.ts +3 -0
- package/dist/types/pools/rwaVault/depositToRWAVault.d.ts +5 -0
- package/dist/types/pools/rwaVault/getAdapterAddress.d.ts +16 -0
- package/dist/types/pools/rwaVault/getAdapters.d.ts +8 -0
- package/dist/types/pools/rwaVault/getNextRandomNFT.d.ts +8 -0
- package/dist/types/pools/rwaVault/getRWAVaultInfo.d.ts +20 -0
- package/dist/types/pools/rwaVault/redeemNFTFromRWAVault.d.ts +4 -0
- package/dist/types/pools/rwaVault/requestRandomSeed.d.ts +4 -0
- package/dist/types/pools/rwaVault/types.d.ts +7 -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/shared/interfaces/AggregatorV3Interface.d.ts +103 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver.d.ts +37 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface.d.ts +143 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI.d.ts +529 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus.d.ts +109 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +6 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus.d.ts +192 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus.d.ts +45 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus.d.ts +155 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient.d.ts +25 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +4 -3
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock.d.ts +731 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/Ownable2Step.d.ts +77 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts +231 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC2981.d.ts +49 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC4626.d.ts +318 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
- 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/Errors.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/MerkleProof.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/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 +142 -166
- package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal.d.ts +53 -0
- package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +127 -0
- package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +2 -0
- 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 +61 -46
- package/dist/types/typechain-types/contracts/core/collectors/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +733 -145
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +396 -108
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +641 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +726 -158
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +727 -159
- package/dist/types/typechain-types/contracts/core/governance/gauges/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/governance/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +45 -71
- package/dist/types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +33 -3
- package/dist/types/typechain-types/contracts/core/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/lockers/LLamaTemple.d.ts +721 -0
- package/dist/types/typechain-types/contracts/core/lockers/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +69 -52
- package/dist/types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +36 -20
- package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +22 -4
- package/dist/types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +146 -2
- package/dist/types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +41 -8
- package/dist/types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +39 -7
- 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 +241 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.d.ts +263 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts +29 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +753 -288
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +432 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +530 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +485 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +7 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +186 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +136 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +366 -132
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +168 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +3 -1
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.d.ts +203 -0
- 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 +154 -8
- package/dist/types/typechain-types/contracts/core/primitives/WithCompliance.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/primitives/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +49 -9
- package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +12 -124
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +209 -40
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +11 -35
- package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +264 -0
- package/dist/types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +433 -172
- package/dist/types/typechain-types/contracts/core/tokens/index.d.ts +1 -1
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.d.ts +176 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts +174 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.d.ts +188 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts +29 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +2 -0
- 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 +560 -0
- package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/interfaces/IComplianceRegistry.d.ts +63 -0
- package/dist/types/typechain-types/contracts/interfaces/INFTLiquidator.d.ts +190 -23
- package/dist/types/typechain-types/contracts/interfaces/INFTWhitelist.d.ts +75 -0
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +94 -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 +623 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +222 -40
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +351 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +2 -1
- package/dist/types/typechain-types/contracts/interfaces/core/governance/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +45 -71
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +33 -3
- package/dist/types/typechain-types/contracts/interfaces/core/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/lockers/ILLamaLocker.d.ts +332 -0
- package/dist/types/typechain-types/contracts/interfaces/core/lockers/ILLamaTemple.d.ts +302 -0
- package/dist/types/typechain-types/contracts/interfaces/core/lockers/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +31 -38
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver.d.ts +49 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
- 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 +52 -2
- 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 +12 -65
- 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 +152 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/IERC721Adapter.d.ts +51 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +370 -189
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +102 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap.d.ts +51 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +173 -101
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage.d.ts +49 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/index.d.ts +2 -0
- 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 +7 -28
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +159 -34
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +7 -19
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IVaultToken.d.ts +197 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +295 -36
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +265 -0
- 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 +87 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +33 -1
- package/dist/types/typechain-types/contracts/interfaces/curve/ICurveLiquidityGaugeV5.d.ts +357 -0
- package/dist/types/typechain-types/contracts/interfaces/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/index.d.ts +2 -4
- package/dist/types/typechain-types/contracts/interfaces/zeno/IAuction.d.ts +18 -3
- package/dist/types/typechain-types/contracts/interfaces/zeno/IZENO.d.ts +31 -1
- package/dist/types/typechain-types/contracts/libraries/governance/LockManager.d.ts +9 -2
- package/dist/types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +34 -1
- package/dist/types/typechain-types/contracts/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/contracts/libraries/math/TimeWeightedAverage.d.ts +1 -25
- package/dist/types/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +23 -58
- package/dist/types/typechain-types/contracts/mocks/core/collectors/MockWETH.d.ts +225 -0
- package/dist/types/typechain-types/contracts/mocks/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +350 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock.d.ts +56 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge.d.ts +35 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +2 -6
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
- 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/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker.d.ts +394 -0
- package/dist/types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/lockers/index.d.ts +2 -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/MockERC20PriceOracle.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts +33 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +2 -2
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle.d.ts +169 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockVRFCoordinatorV2.d.ts +349 -148
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable.d.ts +171 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +41 -8
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +39 -7
- package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +4 -0
- 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 +370 -181
- 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/MockFeeCollectorToken.d.ts +1 -5
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockToken.d.ts +1 -5
- package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +1 -1
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +68 -139
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +19 -9
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +37 -18
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +0 -3
- 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/mocks/tests/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/zeno/Auction.d.ts +68 -8
- package/dist/types/typechain-types/contracts/zeno/AuctionFactory.d.ts +34 -2
- package/dist/types/typechain-types/contracts/zeno/ZENO.d.ts +62 -6
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface__factory.d.ts +93 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface__factory.d.ts +191 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI__factory.d.ts +663 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus__factory.d.ts +139 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus__factory.d.ts +194 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus__factory.d.ts +27 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus__factory.d.ts +155 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +32 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +2 -2
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +944 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.d.ts +95 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.d.ts +289 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC2981__factory.d.ts +43 -0
- 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 +2 -0
- 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 +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +50 -0
- 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 -1
- 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 +26 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +1 -0
- 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/contracts/core/collectors/ERC20Collector__factory.d.ts +393 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +162 -195
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal__factory.d.ts +49 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +223 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +2 -0
- 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 +102 -51
- package/dist/types/typechain-types/factories/contracts/core/collectors/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +850 -118
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +461 -137
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +896 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +835 -133
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +846 -134
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +55 -81
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +25 -1
- package/dist/types/typechain-types/factories/contracts/core/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +1052 -0
- package/dist/types/typechain-types/factories/contracts/core/lockers/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +66 -95
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +47 -10
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +41 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +212 -7
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +68 -9
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +53 -3
- 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 +403 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter__factory.d.ts +407 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +586 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +897 -358
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +744 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +674 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +5 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +303 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +275 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +277 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +382 -113
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +3 -1
- 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/ComplianceRegistry__factory.d.ts +276 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +187 -11
- package/dist/types/typechain-types/factories/contracts/core/primitives/WithCompliance__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +77 -7
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +8 -183
- 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 +253 -38
- 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 +16 -56
- package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +465 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +451 -171
- package/dist/types/typechain-types/factories/contracts/core/tokens/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts +285 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +2 -0
- 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 +307 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +2 -0
- 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 +861 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +71 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +213 -6
- package/dist/types/typechain-types/factories/contracts/interfaces/INFTWhitelist__factory.d.ts +77 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +87 -84
- 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 +775 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +239 -65
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts +425 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +2 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +54 -80
- 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/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaLocker__factory.d.ts +390 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaTemple__factory.d.ts +390 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver__factory.d.ts +35 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +33 -60
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +23 -16
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +66 -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 +6 -99
- 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 +203 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IERC721Adapter__factory.d.ts +53 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +191 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +461 -212
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +61 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage__factory.d.ts +56 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +191 -105
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +2 -0
- 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 +6 -30
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +163 -26
- 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/tokens/IVaultToken__factory.d.ts +223 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +355 -29
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +329 -0
- 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 +115 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +64 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveLiquidityGaugeV5__factory.d.ts +503 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/index.d.ts +2 -4
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +48 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +42 -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 +10 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +47 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -29
- 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 +353 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +1 -0
- 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/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +65 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +1 -15
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
- 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/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +615 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/index.d.ts +1 -0
- 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.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +2 -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 +2 -2
- 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 +490 -166
- 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 +71 -12
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +53 -3
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +1 -11
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +458 -189
- 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 +1 -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/MockContract__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +1 -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 +8 -4
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -15
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -15
- 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 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +53 -122
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +21 -12
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +39 -14
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +0 -3
- 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/mocks/tests/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +38 -1
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +142 -10
- package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +13 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +91 -15
- package/dist/types/typechain-types/index.d.ts +150 -42
- 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/dist/types/utils/artifacts.d.ts +1266 -265
- package/dist/types/utils/contracts.d.ts +4 -2
- package/dist/types/wallet/assets/approveNFT.d.ts +0 -0
- package/dist/types/wallet/assets/getAllowance.d.ts +1 -1
- package/dist/types/wallet/assets/getBalance.d.ts +5 -1
- package/dist/utils/artifacts.js +27 -3
- package/dist/wallet/assets/approveNFT.js +0 -0
- package/dist/wallet/assets/getAllowance.js +3 -3
- package/dist/wallet/assets/getBalance.js +20 -6
- package/package.json +4 -2
- package/dist/artifacts/core/tokens/IndexToken.sol/IndexToken.json +0 -770
- package/dist/contracts/indexToken/getNextRandomNFT.js +0 -30
- package/dist/contracts/indexToken/redeemNFT.js +0 -39
- package/dist/pools/lendingPool/claimReward.js +0 -22
- package/dist/pools/lendingPool/depositNFTToLendingPool.js +0 -50
- package/dist/pools/lendingPool/getAllUserData.js +0 -28
- package/dist/pools/lendingPool/getPendingReward.js +0 -20
- package/dist/pools/lendingPool/getUserOfDepositedNFT.js +0 -27
- package/dist/pools/lendingPool/withdrawNFTFromLendingPool.js +0 -24
- package/dist/pools/stabilityPool/calculateRAACRewards.js +0 -21
- package/dist/pools/stabilityPool/depositNFTToStabilityPool.js +0 -40
- package/dist/types/contracts/indexToken/getNextRandomNFT.d.ts +0 -7
- package/dist/types/contracts/indexToken/redeemNFT.d.ts +0 -4
- package/dist/types/pools/lendingPool/claimReward.d.ts +0 -4
- package/dist/types/pools/lendingPool/depositNFTToLendingPool.d.ts +0 -4
- package/dist/types/pools/lendingPool/getAllUserData.d.ts +0 -17
- package/dist/types/pools/lendingPool/getPendingReward.d.ts +0 -4
- package/dist/types/pools/lendingPool/getUserOfDepositedNFT.d.ts +0 -11
- package/dist/types/pools/lendingPool/withdrawNFTFromLendingPool.d.ts +0 -4
- package/dist/types/pools/stabilityPool/calculateRAACRewards.d.ts +0 -4
- package/dist/types/pools/stabilityPool/depositNFTToStabilityPool.d.ts +0 -4
|
@@ -0,0 +1,1856 @@
|
|
|
1
|
+
import { ContractFactory, ContractTransactionResponse } from "ethers";
|
|
2
|
+
import type { Signer, AddressLike, ContractDeployTransaction, ContractRunner } from "ethers";
|
|
3
|
+
import type { NonPayableOverrides } from "../../../../../common";
|
|
4
|
+
import type { RAACGauge, RAACGaugeInterface } from "../../../../../contracts/core/governance/gauges/RAACGauge";
|
|
5
|
+
type RAACGaugeConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
|
|
6
|
+
export declare class RAACGauge__factory extends ContractFactory {
|
|
7
|
+
constructor(...args: RAACGaugeConstructorParams);
|
|
8
|
+
getDeployTransaction(_rewardToken: AddressLike, _stakingToken: AddressLike, _controller: AddressLike, overrides?: NonPayableOverrides & {
|
|
9
|
+
from?: string;
|
|
10
|
+
}): Promise<ContractDeployTransaction>;
|
|
11
|
+
deploy(_rewardToken: AddressLike, _stakingToken: AddressLike, _controller: AddressLike, overrides?: NonPayableOverrides & {
|
|
12
|
+
from?: string;
|
|
13
|
+
}): Promise<RAACGauge & {
|
|
14
|
+
deploymentTransaction(): ContractTransactionResponse;
|
|
15
|
+
}>;
|
|
16
|
+
connect(runner: ContractRunner | null): RAACGauge__factory;
|
|
17
|
+
static readonly bytecode = "0x610100346200027857601f620052e238819003918201601f191683019291906001600160401b038411838510176200027d5781606092849260409687528339810103126200027857620000bc620000568262000293565b9162000072846200006a6020840162000293565b920162000293565b600160009081556002805460ff191690556001600160a01b0394851660805291841660a05260e081905292831660c05262093a80601f5591620000b533620002cc565b506200034d565b50620000c833620003f0565b50620000d4336200048e565b50620000e0336200052c565b50601f549081156200026457814204828102908082048414901517156200025057826200010d91620002a8565b91826014556969e10de76676d0800000601255600b54801515908162000237575b506200022657916060917f0792cf7388f234e543a10a68aeb7b96568fb90b55ddc2b2945961c80a3c3a0829382600b556200016a8184620002a8565b600c5582600d5581600e5581600f55806010556127106011558551928352602083015284820152a151614cf79081620005cb82396080518181816104240152818161115c01526125c6015260a0518181816110f401528181611c4f0152818161255d0152614134015260c0518181816117cf01526137c7015260e0518181816104670152818161105c01528181611509015281816132d1015281816138f201528181613ebb01528181613fc10152818161406401526149020152f35b835163f0aaee6560e01b8152600490fd5b62000247915060105490620002a8565b8310386200012e565b634e487b7160e01b82526011600452602482fd5b634e487b7160e01b81526012600452602490fd5b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036200027857565b91908201809211620002b657565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b031660008181527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb49602052604081205490919060ff16620003495781805260016020526040822081835260205260408220600160ff198254161790553391600080516020620052c28339815191528180a4600190565b5090565b6001600160a01b031660008181527fc3eac9ead20d697480ab489ced881761c627fd3281937449e4d4d7fbf9faa2cd60205260408120549091907f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c5702233579060ff16620003eb5780835260016020526040832082845260205260408320600160ff19825416179055600080516020620052c2833981519152339380a4600190565b505090565b6001600160a01b031660008181527fbb55feefbbeeb450791a2805b5c4f111914a5147fd3ab1f161e7773d871abcc360205260408120549091907ffda1ae526c1fb38407f23e8b7712f7cfacc146f3e340a04221488331e0d420149060ff16620003eb5780835260016020526040832082845260205260408320600160ff19825416179055600080516020620052c2833981519152339380a4600190565b6001600160a01b031660008181527f0298389358dc4e56cb082b3bb11d0524b39b30d4fc48a48562a008cd6edee05f60205260408120549091907f5c91514091af31f62f596a314af7d5be40146b2f2355969392f055e12e0982fb9060ff16620003eb5780835260016020526040832082845260205260408320600160ff19825416179055600080516020620052c2833981519152339380a4600190565b6001600160a01b031660008181527fb430885b2fd8ad5c711883989efa8a81a8244e77d7ee19caf947074a66cbfadf60205260408120549091907fa1496c3abf9cd93b84db10ae569b57fafa04deeeb7ece4167616ad50e35bc56e9060ff16620003eb5780835260016020526040832082845260205260408320600160ff19825416179055600080516020620052c2833981519152339380a460019056fe608060408181526004918236101561001657600080fd5b600092833560e01c91826301ffc9a714612af55750816304a6f57614612abd578163092c5b3b14612a945781630943832014612a0e5781630a58b40e146129af5781630bfa2480146129925781630d15fd771461297357816318160ddd146129545781631c3ebaeb14611d57578163211dc32d14612926578163248a9ca3146128fc57816324ab066c14610c2457816328cae71e1461289d5781632d5ce3e6146128015781632e1a7d4d146124e95781632e46da29146124975781632f2ff15d1461246d57816336568abe14612427578163372500ab146123bd5781633b946c711461213f5781633fba284a1461212057816342d8b3741461209557816348e5d9f81461200c578163588fcfd814611ff05781635953279e14611fcd57816359d79d8314611f955781635c975abb14611f715781636219015014611f26578163671ee22714611ddc5781636f6c278814611d5c5781637001f4bb14611d575781637035ab9814611d0e57816370a0823114611cd6578163728e4a6714611c7e57816372f702f314611c3a578163750e1c0914611af55781637b0a47ee14611ad65781637bb7bed114611aab5781637c2d6e0114611a4657816380ac822814611a1857816382fd8e5d146119f257816390e8798614611966578163912acbd91461192a57816391d14854146118e3578163958da8de146118ab57816395ccea671461183f578163994e8f26146117fe57816399eecb3b146117ba5781639d0ab89f1461167a5781639e0092cb146114bb578163a042e48d1461147a578163a217fddf1461145f578163a4d24b5c14611423578163a694fc3a14611003578163a83627de14610f54578163b470aade14610f35578163b66503cf14610efc578163b7f1aca814610e6c578163c4f59f9b14610d71578163c8562f7214610d52578163c8f33c9114610d33578163c925c68014610d0d578163ca37271b14610cd4578163cc64278414610c8c578163cd63d93014610c6d578163d1ab58f414610c24578163d547741f14610be1578163d6585ecf14610bb8578163d700c18b14610b55578163d70afa9614610b2c578163dcda162c14610af1578163dd89b736146109f3578163df136d65146109d4578163e58b2152146109af578163e70b9e2714610966578163ea8d6e611461091e578163ebe2b12b146108fa578163ecc68a2914610749578163ee72782d14610691578163f06e22b81461050e57508063f294d1b7146104b3578063f4359ce514610496578063f77c479114610453578063f7c618c1146104105763fe7743e9146103cc57600080fd5b3461040c57602036600319011261040c57610405602092826103ec612b48565b6001600160a01b03811683526022865291205490614012565b9051908152f35b5080fd5b503461040c578160031936011261040c57517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b503461040c578160031936011261040c57517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b503461040c578160031936011261040c576020905162093a808152f35b50903461050b57602036600319011261050b576001600160a01b036104d6612b48565b1681526024602052819020600681015480156104ff57600790915b015482519182526020820152f35b506007601254916104f1565b80fd5b82843461050b578060031936011261050b578080601554905b818110610636575b50506001600160a01b039182169182156106265783519263133dac2960e11b8452308685015260249583858881855afa94851561061c5784956105f8575b50835b85518110156105f4576105aa9060208986828460051b8b0101511691828952528389882001858154888116156105af575b50505050612f9d565b610570565b6001600160a01b0319161790556105c5816142b1565b156105d3575b8085816105a1565b6105dc816130a6565b600080516020614bc28339815191528780a2896105cb565b8480f35b6106159195503d8086833e61060d8183612d17565b81019061301b565b938761056d565b86513d86823e3d90fd5b5050505163dc1669a360e01b8152fd5b61063f81612c36565b60018060a01b03809254600392831b1c168552602560205260ff8786205460a01c1661067557505061067090612f9d565b610527565b925092935061068390612c36565b9054911b1c1690848061052f565b50503461040c578160031936011261040c5761014091606082516106b481612c95565b83516106bf81612cc6565b838152836020820152838582015283838201528360808201528360a08201528360c082015281528260208201528284820152015280516106fe81612c95565b610706612d3a565b91828252601254602083019081526107336013549280850193845260606014549501948552518095612d7e565b5160e08401525161010083015251610120820152f35b82843461050b578160031936011261050b57610763612b48565b61076b612b63565b90610774612dbf565b60018060a01b03918282169182855260209160248352600287872001546108ea5784169081156108da57865163313ce56760e01b815283818a81885afa8791816108ab575b506107ce57875163552b2fcd60e01b81528990fd5b9188918893868952602a865260ff858a20911660ff1982541617905587968890601654915b828110610874575b50505090919293949515610865575b50848652602484528286209182019060018060a01b0319825416179055600242910155602461083b601f54426130cb565b928486525283209060018201556006601254910155600080516020614bc28339815191528280a280f35b61086e906130a6565b8661080a565b888261087f83612c1b565b90549060031b1c161461089a5761089590612f9d565b6107f3565b50600198508a9150819050806107fb565b6108cc919250853d87116108d3575b6108c48183612d17565b810190613562565b908a6107b9565b503d6108ba565b8651635c187b8d60e01b81528890fd5b865163185add2960e11b81528890fd5b50503461040c578160031936011261040c57602090610405601a54601f54906130cb565b50503461040c578160031936011261040c576101409061093c612d3a565b906012546013549061095360145493518095612d7e565b60e0840152610100830152610120820152f35b50503461040c578060031936011261040c5780602092610984612b48565b61098c612b63565b6001600160a01b0391821683526027865283832091168252845220549051908152f35b50503461040c578160031936011261040c57602090516969e10de76676d08000008152f35b50503461040c578160031936011261040c57602090601b549051908152f35b50503461040c578160031936011261040c57610a0d612f7a565b815b601654811015610ac05780610a26610a6292612c1b565b9054600391821b1c6001600160a01b03168086526024602090815285872092909190610a52338361357b565b80610a67575b5050505050612f9d565b610a0f565b82895260278452878920338a528452610a84888a209182546130cb565b90558188526029835286882033895283528688209342600186015501548093558652602681528486209033875252838520553880808080610a58565b50514281527e745e876c45796ea32ef5ef1bcbf9cef81cfd16666c9364caa1cb8a6ddbd67660203392a26001815580f35b50503461040c578160031936011261040c57602090517ffda1ae526c1fb38407f23e8b7712f7cfacc146f3e340a04221488331e0d420148152f35b50503461040c578160031936011261040c5760209051600080516020614c828339815191528152f35b50503461040c578060031936011261040c578091610b71612b48565b610b79612b63565b6001600160a01b039182168352602960209081528484209290911683525220805460018201546002909201549251928392610bb49284612c05565b0390f35b50503461040c578160031936011261040c5760209051600080516020614c028339815191528152f35b91905034610c205780600319360112610c2057610c1c9135610c176001610c06612b63565b938387528160205286200154612e27565b612ecd565b5080f35b8280fd5b50503461040c578060031936011261040c5780602092610c42612b48565b610c4a612b63565b6001600160a01b0391821683526028865283832091168252845220549051908152f35b50503461040c578160031936011261040c57602090601c549051908152f35b82843461050b57602036600319011261050b576001600160a01b039060ff90839083610cb6612b48565b168152602560205220548351928116835260a01c1615156020820152f35b50503461040c57602036600319011261040c57906020916001610d05610cf8612b48565b610d00612f7a565b612fc2565b925551908152f35b50503461040c57602036600319011261040c57602090610405610d2e612b48565b6148e5565b50503461040c578160031936011261040c57602090601a549051908152f35b50503461040c578160031936011261040c576020906017549051908152f35b91905034610c205782600319360112610c20578283601554905b818110610e13575b50506001600160a01b0316918215610e05578390602483518095819363133dac2960e11b835230908301525afa918215610dfb5783610bb49493610dde575b50505191829182612c51565b610df39293503d8091833e61060d8183612d17565b903880610dd2565b81513d85823e3d90fd5b905163dc1669a360e01b8152fd5b610e1c81612c36565b60018060a01b03809254600392831b1c168852602560205260ff8689205460a01c16610e52575050610e4d90612f9d565b610d8b565b92509250610e5f90612c36565b9054911b1c163880610d93565b91905034610c20576020366003190112610c2057813591600080516020614c82833981519152808552600160205282852033865260205260ff838620541615610ee157847ff18d722badc84ff70f53556319e6c00b5f78303309e5289063a3c5a41a7a77d56020868681601c5551908152a180f35b604492519163e2517d3f60e01b835233908301526024820152fd5b50503461040c5736600319011261050b57610f32610f18612b48565b610f20612dbf565b610f2981613b53565b60243590613118565b80f35b50503461040c578160031936011261040c57602090601f549051908152f35b905034610c205782600319360112610c2057610f6e612dbf565b610f7d601454601f54906130cb565b90814210610ff55750610f8f90614a8d565b90610f9861487f565b918360135582601455835b601654811015610fe65780610fba610fe192612c1b565b905460039190911b1c6001600160a01b031686526024602052838620600701869055612f9d565b610fa3565b84610f328386601f549061497a565b825163f0aaee6560e01b8152fd5b83833461040c57602080600319360112610c2057833591611022612f7a565b61102a612f5c565b61103333613b53565b821561141457805163aa79979b60e01b815230868201526001600160a01b0390602490848183817f000000000000000000000000000000000000000000000000000000000000000087165afa90811561140a5787916113dd575b50156113cd5761109f85601d546130cb565b601d55338652602284526110b685848820546130cb565b338752602285528387205561111883516323b872dd60e01b868201526110f2816110e4893033888501613923565b03601f198101835282612d17565b7f000000000000000000000000000000000000000000000000000000000000000061341d565b338652602284528286205491602b855261114b611139858920549433614012565b93611146856017546130cb565b61310b565b601755338752602b855282848820557f000000000000000000000000000000000000000000000000000000000000000016865280845282862096600388015497606460185410611322575b50336111d7575b505090600080516020614b6283398151915292918151908152600080516020614ca2833981519152833392a2519283523392a26001815580f35b338752602d8552606484882054101561119d57602285526111fb8488205433613e98565b97338852602c8652848820906022875285892054602b8852868a2054906127108c1160001461131b5761270f198c018c81116113095762093a809004935b88519061124582612cfc565b4282528a8201928352898201938452606082019485526080820195865260a082019d8e52805490600160401b8210156112f7579061128891600182018155612b79565b9790976112e75750916005959391600080516020614b628339815191529b9c9d9593518855516001880155516002870155516003860155519084015551910155338652602d83528186206112dc8154612f9d565b90558594938761119d565b634e487b7160e01b8d528c87528cfd5b634e487b7160e01b8e5260418852888efd5b634e487b7160e01b8c5260118652868cfd5b8a93611239565b601d5460175491549086519261133784612ce1565b42845288840191825287840190815260608401918c835260808501938452600a54600160401b8110156113bb578060016113749201600a55612be6565b9590956113aa5751855551600185015551600284015551600383015551908201556018546113a190612f9d565b60185588611196565b634e487b7160e01b8d528c8752878dfd5b634e487b7160e01b8d5260418752878dfd5b825163d4220bed60e01b81528790fd5b6113fd9150853d8711611403575b6113f58183612d17565b810190612f44565b8861108d565b503d6113eb565b84513d89823e3d90fd5b5163162908e360e11b81528490fd5b905034610c20576020366003190112610c2057600080516020614b42833981519152916020913590611453612dbf565b8160125551908152a180f35b50503461040c578160031936011261040c5751908152602090f35b50503461040c57602036600319011261040c5760209160ff9082906001600160a01b036114a5612b48565b16815260258552205460a01c1690519015158152f35b83833461040c5760209081600319360112610c20578335916114db612f5c565b6114e433613b53565b612710831161166a578151633b92eb2360e01b81526001600160a01b039190818188817f000000000000000000000000000000000000000000000000000000000000000087165afa908115611660579082918791611633575b5060248551809581936370a0823160e01b8352338c840152165afa9182156116295785926115f6575b5081156115e657907ff4dbed0941210063507e7377f14a0749f60a2a982a3c2655b01d65134b924a6d929133865260238152828620601e5490836115b9816001840194855481816115d5575b50506130cb565b9288835555600242910155601e5582519485528401523392a280f35b6115df925061310b565b8c806115b2565b8251631f05dadd60e21b81528690fd5b9080925081813d8311611622575b61160e8183612d17565b8101031261161e57519086611566565b8480fd5b503d611604565b83513d87823e3d90fd5b6116539150823d8411611659575b61164b8183612d17565b810190612ffc565b8861153d565b503d611641565b84513d88823e3d90fd5b815163585b926360e01b81528590fd5b83833461040c5760209081600319360112610c2057611697612bab565b90600080516020614c0283398151915280855260018452818520338652845260ff82862054161561179c5750811561173a576002549460ff861661172c57506001600080516020614b8283398151915294956116f1612f5c565b60ff1916176002557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258838251338152a15b519015158152a180f35b9051631785c68160e01b8152fd5b60025460ff81161561178c57600080516020614b8283398151915294955060ff19166002557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa838251338152a1611722565b8151636cd6020160e01b81528690fd5b905163e2517d3f60e01b815233818701526024810191909152604490fd5b50503461040c578160031936011261040c57517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b905034610c20576020366003190112610c2057359160155483101561050b5750611829602092612c36565b905491519160018060a01b039160031b1c168152f35b905034610c205781600319360112610c2057611859612b48565b91838052600160205280842033855260205260ff81852054161561188e5783610f32602435336001600160a01b0387166133e4565b9083604492519163e2517d3f60e01b835233908301526024820152fd5b50503461040c57602036600319011261040c5760209181906001600160a01b036118d3612b48565b168152602b845220549051908152f35b905034610c205781600319360112610c20578160209360ff92611904612b63565b90358252600186528282206001600160a01b039091168252855220549151911615158152f35b50503461040c57602036600319011261040c5760209160ff9082906001600160a01b03611955612b48565b168152602a85522054169051908152f35b82843461050b578060031936011261050b5781516015805480835290835260208083019492937f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec47592915b8282106119d257610bb486866119c8828b0383612d17565b5191829182612c51565b83546001600160a01b0316875295860195600193840193909101906119b0565b50503461040c57602036600319011261040c57602090610405611a13612b48565b614572565b50503461040c578060031936011261040c57602090610405611a38612b48565b611a40612b63565b90614327565b91905034610c20576020366003190112610c2057813591611a65612dbf565b8215611a9d5750816020917fbd6eb9cf4d6e2902587c57e3163aaafdb46e3b3f2086bdfa75c790228930a9d793601f5551908152a180f35b90516302e8f35960e31b8152fd5b905034610c20576020366003190112610c2057359160165483101561050b5750611829602092612c1b565b50503461040c578160031936011261040c576020906019549051908152f35b83833461040c57602036600319011261040c57823590611b13612dbf565b8160035480611c22575b5015611c19575b611b2c61487f565b611b3983601f548361497a565b6014556127108211611c0a57601f546003548181611bac57611b5c9150426130eb565b60018101809111611b9957600080516020614b428339815191529495508382611b8c6020969594611b91946130d8565b614a18565b51908152a180f35b634e487b7160e01b855260118652602485fd5b611bb5916130cb565b4210611bfa57611bc581426130eb565b60018101809111611b9957600080516020614b428339815191529495508382611b8c6020969594611bf5946130d8565b611b91565b8151632d925b7560e21b81528590fd5b5163585b926360e01b81528390fd5b60019150611b24565b601f54611c2e916130cb565b4210611bfa5785611b1d565b50503461040c578160031936011261040c57517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b50503461040c578060031936011261040c5761040560209282611c9f612b48565b91611ca8612b63565b611cb28185614327565b6001600160a01b0394851683526028885283832091909416825286522054906130cb565b50503461040c57602036600319011261040c5760209181906001600160a01b03611cfe612b48565b1681526022845220549051908152f35b50503461040c578060031936011261040c5780602092611d2c612b48565b611d34612b63565b6001600160a01b0391821683526026865283832091168252845220549051908152f35b612bc9565b905034610c205781600319360112610c2057611d76612b48565b60243591611d82612dbf565b8215611dce57506001600160a01b0316808452602160209081528385208390559251918252917f59e5fa1917d251feba39029f9e5a5f822195eb84317c1863fcab88fcfe5dd48891a280f35b8351630f0e32f360e41b8152fd5b905034610c2057602080600319360112611f2257611df8612b48565b91611e0283614302565b6001600160a01b038381168087526024808552868820840154875163ea7cbff160e01b81528086018490529316949293908390859081885afa938415611f18578894611ee5575b5081602484928951978893849263fa1af4f360e01b84528301525afa938415611edb578794611ea5575b50946024611e8a9260029789525286209384613a7a565b50508255600182015501805415611e9f575080f35b42905580f35b959093508186813d8311611ed4575b611ebe8183612d17565b81010312611ed0579451926024611e73565b8680fd5b503d611eb4565b86513d89823e3d90fd5b9093508281813d8311611f11575b611efd8183612d17565b81010312611f0d57519281611e49565b8780fd5b503d611ef3565b87513d8a823e3d90fd5b8380fd5b50503461040c57602036600319011261040c579081906001600160a01b03611f4c612b48565b16815260236020522090610bb482549160026001850154940154905193849384612c05565b50503461040c578160031936011261040c5760209060ff6002541690519015158152f35b50503461040c57602036600319011261040c5760209181906001600160a01b03611fbd612b48565b1681526021845220549051908152f35b50503461040c578160031936011261040c5760209060ff82541690519015158152f35b50503461040c578160031936011261040c576020905160648152f35b8391503461040c57602036600319011261040c57610100926001600160a01b0392819084612038612b48565b1681526024602052209081549360018301549360028401549160038501549185015416916005850154936007600687015496015496815198895260208901528701526060860152608085015260a084015260c083015260e0820152f35b905034610c205781600319360112610c20576120af612b48565b602435916120bb612dbf565b6120c4826142b1565b1561211257506001600160a01b0316808452602460209081528385206006018390559251918252917f2c6ef76c9db616917a01f7cb90d142bdbdeb172d77681f3099205aa5c88a044291a280f35b8351630c76021160e01b8152fd5b50503461040c578160031936011261040c576020906018549051908152f35b91905034610c205780600319360112610c205761215a612b48565b90612163612bba565b9261216c612dbf565b8315612280576001600160a01b038381168087526025602052838720548216612270578351918285016001600160401b0381118482101761225d578552818352602080840189815292895260259052848820925183546001600160a01b0319169116178255516121df9190151590613545565b60155490600160401b82101561224a57509160209161223682612217866001600080516020614c628339815191529801601555612c36565b90919082549060031b9160018060a01b03809116831b921b1916179055565b5193151584526001600160a01b031692a280f35b634e487b7160e01b865260419052602485fd5b634e487b7160e01b895260418552602489fd5b8351633d873e1f60e01b81528390fd5b6001600160a01b038084168087526025602052838720549095949392908216156123af578587526025602052828720805460ff60a01b19169055865b601580548083101561238f57908491896122d585612c36565b949054600395861b1c16146122f5575050506122f090612f9d565b6122bc565b929094939195969798506000199283810190811161237c57906122178561231e61232b94612c36565b9054908a1b1c1691612c36565b83549081156123695750916020959391600080516020614c62833981519152979593019261235884612c36565b81939154921b1b1916905555612236565b634e487b7160e01b8a5260319052602489fd5b634e487b7160e01b8b526011835260248bfd5b5050505050600080516020614c6283398151915292935090602091612236565b82516312a3d7e760e31b8152fd5b833461050b578060031936011261050b576123d6612f7a565b805b60165481101561241f57806124146123f261241a93612c1b565b905460039190911b1c6001600160a01b031661240e3382613c1e565b33613945565b50612f9d565b6123d8565b506001815580f35b83833461040c578060031936011261040c57612441612b63565b90336001600160a01b0383160361245e5750610c1c919235612ecd565b5163334bd91960e11b81528390fd5b91905034610c205780600319360112610c2057610c1c91356124926001610c06612b63565b612e4d565b91905034610c205782600319360112610c205760e09250600354915490600554600654600754916008549360095495815197885260208801528601526060850152608084015260a083015260c0820152f35b83833461040c57602080600319360112610c2057833591612508612f7a565b61251133613b53565b8215611414573384526022948583528185205484116127f35761253684601d5461310b565b601d5533855285835261254c848387205461310b565b3386528684528286205561258184337f00000000000000000000000000000000000000000000000000000000000000006133e4565b3385528583528185205490602b84526125ae6125a1848820549333614012565b92611146846017546130cb565b601755338652602b8452818387205560018060a01b037f00000000000000000000000000000000000000000000000000000000000000001686526024908185528387209760038901549860646018541061275a575b5033612645575b50505090600080516020614c2283398151915292918151908152600080516020614ca2833981519152833392a2519283523392a26001815580f35b338852602d8652606485892054101561260a578086526126688589205433613e98565b98338952602c875285892091875285892054602b8852868a2054906127108c116000146127535761270f198c018c81116113095762093a809004935b8851906126b082612cfc565b4282528a8201928352898201938452606082019485526080820195865260a082019d8e52805490600160401b8210156112f757906126f391600182018155612b79565b9790976112e75750916005959391600080516020614c228339815191529b9c9d9593518855516001880155516002870155516003860155519084015551910155338652602d83528186206127478154612f9d565b9055859493878061260a565b8a936126a4565b601d5460175491549087519261276f84612ce1565b42845289840191825288840190815260608401918d835260808501938452600a54600160401b8110156112f7578060016127ac9201600a55612be6565b9590956127e25751855551600185015551600284015551600383015551908301556018546127d990612f9d565b60185589612603565b634e487b7160e01b8e528d8852888efd5b90516345a5c39960e11b8152fd5b905034610c205781600319360112610c205761281b612b48565b91612824612bba565b9161282d612dbf565b6001600160a01b039384168086526025602052828620549094161561288f57507fd0c9b7d29c9d78752c4c849829be427bcd906db1676631e06ffeb91590df9293916020918486526025835261288582828820613545565b519015158152a280f35b90516312a3d7e760e31b8152fd5b91905034610c20576020366003190112610c2057813592600a5484101561050b57506128ca60a093612be6565b508054926001820154926002830154916003840154930154938151958652602086015284015260608301526080820152f35b905034610c20576020366003190112610c2057816020936001923581528285522001549051908152f35b50503461040c578060031936011261040c57602090610405612946612b48565b61294e612b63565b90614601565b50503461040c578160031936011261040c57602090601d549051908152f35b50503461040c578160031936011261040c57602090601e549051908152f35b50503461040c578160031936011261040c5760209061040561487f565b50503461040c57602036600319011261040c5760207fbece956ce1c97a5de8f427535a7bb21d29086be6e5c0d5cf5d9aa0f56e51495d916129ee612bab565b6129f6612dbf565b15159060ff1983541660ff831617835551908152a180f35b91905034610c205780600319360112610c2057612a29612b48565b6001600160a01b03168352602c6020528083208054602435949085101561050b575060c093612a5791612b79565b50805492600182015492600283015490600560038501549385015494015494815196875260208701528501526060840152608083015260a0820152f35b50503461040c578160031936011261040c5760209051600080516020614ba28339815191528152f35b50503461040c57602036600319011261040c5760209181906001600160a01b03612ae5612b48565b168152602d845220549051908152f35b849134610c20576020366003190112610c20573563ffffffff60e01b8116809103610c205760209250637965db0b60e01b8114908115612b37575b5015158152f35b6301ffc9a760e01b14905083612b30565b600435906001600160a01b0382168203612b5e57565b600080fd5b602435906001600160a01b0382168203612b5e57565b8054821015612b95576000526006602060002091020190600090565b634e487b7160e01b600052603260045260246000fd5b600435908115158203612b5e57565b602435908115158203612b5e57565b34612b5e576000366003190112612b5e5760206040516127108152f35b600a54811015612b9557600a6000526005602060002091020190600090565b6040919493926060820195825260208201520152565b601654811015612b9557601660005260206000200190600090565b601554811015612b9557601560005260206000200190600090565b6020908160408183019282815285518094520193019160005b828110612c78575050505090565b83516001600160a01b031685529381019392810192600101612c6a565b608081019081106001600160401b03821117612cb057604052565b634e487b7160e01b600052604160045260246000fd5b60e081019081106001600160401b03821117612cb057604052565b60a081019081106001600160401b03821117612cb057604052565b60c081019081106001600160401b03821117612cb057604052565b601f909101601f19168101906001600160401b03821190821017612cb057604052565b60405190612d4782612cc6565b600b548252600c546020830152600d546040830152600e546060830152600f54608083015260105460a083015260115460c0830152565b60c08091805184526020810151602085015260408101516040850152606081015160608501526080810151608085015260a081015160a08501520151910152565b3360009081527fc3eac9ead20d697480ab489ced881761c627fd3281937449e4d4d7fbf9faa2cd6020526040902054600080516020614ba28339815191529060ff1615612e095750565b6044906040519063e2517d3f60e01b82523360048301526024820152fd5b80600052600160205260406000203360005260205260ff6040600020541615612e095750565b906000918083526001602052604083209160018060a01b03169182845260205260ff60408420541615600014612ec85780835260016020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b906000918083526001602052604083209160018060a01b03169182845260205260ff604084205416600014612ec8578083526001602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b90816020910312612b5e57518015158103612b5e5790565b60ff60025416612f6857565b60405163d93c066560e01b8152600490fd5b600260005414612f8b576002600055565b604051633ee5aeb560e01b8152600490fd5b6000198114612fac5760010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038181166000908152602460205260409020600401541615612ff657612ff39061240e3382613c1e565b90565b50600090565b90816020910312612b5e57516001600160a01b0381168103612b5e5790565b906020908183820312612b5e5782516001600160401b0393848211612b5e570181601f82011215612b5e578051938411612cb0578360051b906040519461306485840187612d17565b85528380860192820101928311612b5e578301905b828210613087575050505090565b81516001600160a01b0381168103612b5e578152908301908301613079565b60165490600160401b821015612cb0576122178260016130c99401601655612c1b565b565b91908201809211612fac57565b81810292918115918404141715612fac57565b81156130f5570490565b634e487b7160e01b600052601260045260246000fd5b91908203918211612fac57565b9080156133b55760018060a01b039182811691600091838352602090602482526040938481209160068301548015156000146133ac575b851161339b576001830191825491613166816142b1565b1561337a575b6004850180549a808c1615613280575b5050600080516020614be283398151915298995061319990614572565b9142101561322957506131d16131da916131bf6131b742865461310b565b8654906130d8565b90879060018111613218575b506130cb565b601f54906130eb565b82556131e8601f54426130cb565b90555b6131f7836013546130cb565b601355600781016132098482546130cb565b905554908351928352820152a2565b6132239150886130d8565b386131cb565b906132439086906001811161326f575b50601f54906130eb565b90508015613267575b8255426002830155613260601f54426130cb565b90556131eb565b50600161324c565b61327a9150876130d8565b38613239565b839b84601554905b818110613308575b509b9c600080516020614be28339815191529c50613199949392908116919082156132cf57505081546001600160a01b0319161790555b908a9961317c565b7f0000000000000000000000000000000000000000000000000000000000000000166001600160a01b03199190911617909155506132c7565b8360ff8e60258e61331886612c36565b959054600396871b1c168c525289205460a01c1661333f575061333a90612f9d565b613288565b600080516020614be28339815191529e9f5084939250936131999695946133668293612c36565b9054911b1c169e9d50929394819250613290565b613383816130a6565b88600080516020614bc28339815191528380a261316c565b8551631fbe179d60e11b8152600490fd5b5060125461314f565b5060408051600080825260208201526001600160a01b0390921691600080516020614be28339815191529190a2565b60405163a9059cbb60e01b60208201526001600160a01b0390921660248301526044808301939093529181526130c99161341d82612c95565b60018060a01b031690600080826020829451910182865af13d156134d5573d6001600160401b0381116134c157604051613478939291613467601f8201601f191660200183612d17565b8152809260203d92013e5b836134e2565b80519081151591826134a6575b505061348e5750565b60249060405190635274afe760e01b82526004820152fd5b6134b99250602080918301019101612f44565b153880613485565b634e487b7160e01b83526041600452602483fd5b6134789150606090613472565b9061350957508051156134f757805190602001fd5b604051630a12f52160e11b8152600490fd5b8151158061353c575b61351a575090565b604051639996b31560e01b81526001600160a01b039091166004820152602490fd5b50803b15613512565b805460ff60a01b191691151560a01b60ff60a01b16919091179055565b90816020910312612b5e575160ff81168103612b5e5790565b6001600160a01b03808216600081815260246020908152604080832096851680845260228352818420549398979596909491931561391a5781895260278352838920858a5283528389205495805497806004830154169085821515806138ee575b61377b575b505050871561374f5760016002820154910154908142111560001461375b5761360b91504261310b565b965b871561374f578997601d549182613632575b5050505050505050612ff39293506130cb565b61364d929394959697995090613647916130d8565b92614572565b96808a52602b8552858a205460175490811560001461373857505061368592613680918b5260228652868b2054906130d8565b6130eb565b945b60018111613720575b5090806024928451938480926370a0823160e01b82523060048301525afa928315613717575086926136e2575b5050612ff39394508083116136da575b849381808080808061361f565b9150386136cd565b90809250813d8311613710575b6136f98183612d17565b8101031261161e57612ff3939450518493386136bd565b503d6136ef565b513d88823e3d90fd5b9161372f6024938293976130eb565b95919250613690565b9092506136809150613749936130d8565b94613687565b50949750505050505050565b818110156137725761376c9161310b565b9661360d565b5050889661360d565b60249288519384809263ea7cbff160e01b82528960048301525afa8c92816138bb575b506137aa575b856135e1565b81156137a457865163395f293b60e11b81523060048201529299507f00000000000000000000000000000000000000000000000000000000000000001691908582602481865afa9182156138815786908d9361388b575b5087516306aba0e160e01b81529293839060049082905afa918215613881578c9261384e575b5081156138445761383b92613680916130d8565b965b38806137a4565b505050889661383d565b9091508581813d831161387a575b6138668183612d17565b8101031261387657519038613827565b8b80fd5b503d61385c565b87513d8e823e3d90fd5b809350813d83116138b4575b6138a18183612d17565b8101031261387657856004925192613801565b503d613897565b9092508681813d83116138e7575b6138d38183612d17565b810103126138e35751913861379e565b8c80fd5b503d6138c9565b50817f0000000000000000000000000000000000000000000000000000000000000000168314156135dc565b50505050505050565b6001600160a01b03918216815291166020820152604081019190915260600190565b60009160009061395481614302565b6001600160a01b03908116808352602760209081526040808520938616808652938252808520549294928061398e575b5050505050505090565b909192939480969750845260278352818420858552835283828120558151906370a0823160e01b825230600483015283826024818a5afa918215611629578592613a4b575b5081811115613a435750905b81968215613984577f540798df468d7b23d11f156fdb954cb19ad414d150722a7b6d55ba369dea792e94613a158484938a6133e4565b87815260288552818120878252855220613a308382546130cb565b905551908152a338808080808080613984565b9050906139df565b9091508381813d8311613a73575b613a638183612d17565b8101031261161e575190386139d3565b503d613a59565b9190601d54908115613b4357613a8f90614572565b92600281018054804211613aaa575b50506003915001549190565b600183015490600091804210600014613b255750613ac991504261310b565b80613ade575b50600392504290553880613a9e565b8254613ae9916130d8565b670de0b6b3a764000090818102918183041490151715612fac57600393613b0f916130eb565b613b1d8484019182546130cb565b905538613acf565b81811115613b3c57613b37925061310b565b613ac9565b5050613ac9565b92612ff391506003015492614572565b60005b601654811015613c1a5780613b6d613bc092612c1b565b9060018060a01b03809154600393841b1c16918260005285602093602485526040948560002094613b9e8387613a7a565b9690809682015560024291015583169081613bc5575b50505050505050612f9d565b613b56565b613be396613bd3858561357b565b9283613bef575b50505050613d62565b38808085818080613bb4565b613c0f9285600052602781528260002091600052526000209182546130cb565b905538808080613bda565b5050565b6001600160a01b039190828116908115801580613d47575b613d355715613cb157505060005b601654811015613cac578083613c5c613ca793612c1b565b919054600392831b1c16908160005260209060248252856040938460002093613c858286613a7a565b959080958201556002429101558983169081613bc55750505050505050612f9d565b613c44565b505050565b91600392600094929485815260246020526040812093613cd18386613a7a565b9681964260028201550155831680613cec5750505050505050565b613d0996613cfa858561357b565b9283613d155750505050613d62565b3880808080808061391a565b613c0f9260409282526027602052828220908252602052209182546130cb565b60405163dc1669a360e01b8152600490fd5b50826000526024602052846004604060002001541615613c36565b90939260018060a01b03809216926000958487526020906029825260409384892095821695868a5283528489209160228452858a20549081613dac575b5050505050505050509050565b613db784548761310b565b9182613dc4575b50613d9f565b8554613ddc9392829160ff16613e77575b50506130d8565b670de0b6b3a76400009180830292830403613e63577ff16749621c2992b34cca23238ae1e06cae2b2dba7b0b5256d35b13667e9afb7596979899613e24613e469388936130eb565b93868155600142910155898152602785528181208982528552209182546130cb565b905582519182524290820152a38038808080808080808080613dbe565b634e487b7160e01b8a52601160045260248afd5b612710925090613e8a81613e9093613e98565b906130d8565b043880613dd5565b90801561400b57602060ff81541615613fa9576040805163a85bde9d60e01b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169491939091849183918291613efd91309060048501613923565b0381875afa60009181613f7a575b50613f735750806004938351948580926356fe702d60e01b82525afa918215613f695750600091613f3d575b50905090565b82813d8311613f62575b613f518183612d17565b8101031261050b5750518038613f37565b503d613f47565b513d6000823e3d90fd5b9250505090565b90918482813d8311613fa2575b613f918183612d17565b8101031261050b5750519038613f0b565b503d613f87565b6040516356fe702d60e01b81529250905080826004817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa908115613fff57600091613f3d5750905090565b6040513d6000823e3d90fd5b5050600090565b90602060ff8154161580156142a9575b613f3757610fa08083029183159184840414821715612fac5760408051633b92eb2360e01b815261271094859004966001600160a01b039390929181816004817f000000000000000000000000000000000000000000000000000000000000000089165afa90811561429e57908591600091614281575b50835163d2e01b2f60e01b815294861660048601819052911693608081602481885afa9081156142765760009161421d575b5083815115159182614210575b50506140f6575b505050505050508082116140f1575090565b905090565b81906024849a98999a51809681936370a0823160e01b835260048301525afa9283156142055790879392916000936141d0575b5060219061416894957f00000000000000000000000000000000000000000000000000000000000000001660005252600020549081156141c8576130d8565b048481106141825750505050805b388080808080806140df565b61418c90856130d8565b9061177091828102928184041490151715612fac5783850293858504141715612fac576141c2926141bc916130eb565b906130cb565b90614176565b8391506130d8565b919350918282813d83116141fe575b6141e98183612d17565b8101031261050b575051869290916021614129565b503d6141df565b82513d6000823e3d90fd5b01514210905083386140d8565b906080823d821161426e575b8161423660809383612d17565b8101031261050b5750606084519161424d83612c95565b805183528481015185840152858101518684015201516060820152386140cb565b3d9150614229565b84513d6000823e3d90fd5b6142989150833d85116116595761164b8183612d17565b38614099565b83513d6000823e3d90fd5b508115614022565b6016549060005b8281106142c757505050600090565b6142d081612c1b565b905460039190911b1c6001600160a01b03908116908316146142fa576142f590612f9d565b6142b8565b505050600190565b6001600160a01b039081166000908152602460205260409020600401541615613d3557565b60018060a01b0380921660009181835260209060228252604094858520541561453d578116908185526024835285852060298452868620858752845286862090600381015490600281015480421180614532575b6144b1575b5050858752602b85528787205491546143989161310b565b91826143b35750505083526027815283832091835252205490565b87516370a0823160e01b81523060048201529897939591949192828a6024818a5afa998a156144a757889a614476575b506144019161440861440e92670de0b6b3a76400009485918a6130d8565b0491614572565b906130eb565b948181029080820483149015171561446257612ff39899613e8a61443592601754906130eb565b049486526027815282862091865252832054925081811160001461445a5750906130cb565b9050906130cb565b634e487b7160e01b88526011600452602488fd5b9099508281813d83116144a0575b61448e8183612d17565b81010312611f0d5751986144016143e3565b503d614484565b85513d8a823e3d90fd5b600182015490814210600014614513576144cc91504261310b565b905b811561438057546144de916130d8565b670de0b6b3a76400009081810291818304149015171561446257614398916141bc61450c92601754906130eb565b9038614380565b8082111561452a576145249161310b565b906144ce565b505087614524565b50601754151561437b565b1683526027815283832091835252205490565b60ff166012039060ff8211612fac57565b60ff16604d8111612fac57600a0a90565b6001600160a01b03166000818152602a602052604090205460ff169081156145a657506145a1612ff391614550565b614561565b60405163313ce56760e01b81529150602090829060049082905afa600091816145e1575b506145d55750600190565b6145a1612ff391614550565b6145fa91925060203d81116108d3576108c48183612d17565b90386145ca565b6001600160a01b03919082811690811561485d57838316916000938385526020926022845260409687872054156148485761463b836148e5565b50601d54156148485783875260248552600488882001541661473657505084516370a0823160e01b81523060048201528281602481855afa859181614703575b506146fe5750835b8061469b575083526027815283832091835252205490565b91849284612ff39795939652602b82528484205490811515806146f3575b156146ea576146d4916146cb916130d8565b601754906130eb565b945b8352602781528383209183525220546130cb565b505082946146d6565b5060175415156146b9565b614683565b9091508381813d831161472f575b61471b8183612d17565b8101031261472b5751903861467b565b8580fd5b503d614711565b90614747919796949295939761357b565b95818352602b81528383205496601754801561482f57670de0b6b3a764000098898102908082048b149015171561481b5790614782916130eb565b9785516370a0823160e01b815230600482015283816024818b5afa9081156148115786916147e2575b50612ff398996147ba916130d8565b0490818111156147da5750948352602781528383209183525220546130cb565b9050946146d6565b90508381813d831161480a575b6147f98183612d17565b8101031261472b5751612ff36147ab565b503d6147ef565b87513d88823e3d90fd5b634e487b7160e01b86526011600452602486fd5b5050938252602784528282209082529092529020549150565b50505083526027815283832091835252205490565b5060009291925260276020526040600020911660005260205260406000205490565b60145480156148c25760004282116148bc575061489f6131d1824261310b565b905b60018201809211612fac576141bc612ff392601f54906130d8565b906148a1565b50601f546148d081426130eb565b9060018201809211612fac57612ff3916130d8565b60405163395f293b60e11b815230600482015291906020836024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa928315613fff57600093614947575b5091612ff39192613e98565b6020813d8211614972575b8161495f60209383612d17565b81010312611f2257519250612ff361493b565b3d9150614952565b600b548015159081614a02575b506149f05781156149de576149d9600080516020614c428339815191529382600b556149b384846130cb565b600c5582600d5580600e556000600f558360105561271060115560405193849384612c05565b0390a1565b60405163346ab43760e11b8152600490fd5b60405163f0aaee6560e01b8152600490fd5b614a109150601054906130cb565b811038614987565b6003548015159081614a77575b506149f05781156149de576149d9600080516020614c428339815191529382600355614a5184846130cb565b600455826005558060065560006007558360085561271060095560405193849384612c05565b614a859150600854906130cb565b811038614a25565b600b549081811115614b3957600c549081811115614b315750905b600f5490600d54808411614ac5575b5061440890612ff39361310b565b614ad19084939461310b565b90600e5491614ae081846130d8565b928115159182614b1c575b5050614b0a57614b0161440892612ff3956130cb565b92935090614ab7565b60405163f20577e560e01b8152600490fd5b614b28919250846130eb565b14153880614aeb565b905090614aa8565b5050600e549056feb114240d54ce08081cbd18870dc3b6cd4091bb86ff29d2ad41906c2a2d6723d49e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3ded1f3e12429ce88e77b14ddf9c2eb89f0b9e1e0faa7e33a95d0ce1bbc90a1c2f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c570223357f3e4c2c64e71e6ba2eaab9a599bced62f9eb91d2cda610bf41aa8c80ff2cf8268a888ea653a580e40660778ee0c0dabd23a81e8e2c8dcfb938e40982a157d8195c91514091af31f62f596a314af7d5be40146b2f2355969392f055e12e0982fb7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d50792cf7388f234e543a10a68aeb7b96568fb90b55ddc2b2945961c80a3c3a08219e1fee2e38695e60ad3ef8c81759c22d6d7ee56f9b8805363820a50da468a18a1496c3abf9cd93b84db10ae569b57fafa04deeeb7ece4167616ad50e35bc56e3042bda52a74ddb3e9f32af4781d52bf053f705dba3c9e09f402f6fb9446474da2646970667358221220ee98e1920d721684104005462c2539ac50f4b7e8e04ed51c5e871e3f2c4f88a964736f6c634300081400332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d";
|
|
18
|
+
static readonly abi: readonly [{
|
|
19
|
+
readonly inputs: readonly [{
|
|
20
|
+
readonly internalType: "address";
|
|
21
|
+
readonly name: "_rewardToken";
|
|
22
|
+
readonly type: "address";
|
|
23
|
+
}, {
|
|
24
|
+
readonly internalType: "address";
|
|
25
|
+
readonly name: "_stakingToken";
|
|
26
|
+
readonly type: "address";
|
|
27
|
+
}, {
|
|
28
|
+
readonly internalType: "address";
|
|
29
|
+
readonly name: "_controller";
|
|
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: "AlreadyPaused";
|
|
69
|
+
readonly type: "error";
|
|
70
|
+
}, {
|
|
71
|
+
readonly inputs: readonly [];
|
|
72
|
+
readonly name: "DistributorAlreadyAdded";
|
|
73
|
+
readonly type: "error";
|
|
74
|
+
}, {
|
|
75
|
+
readonly inputs: readonly [];
|
|
76
|
+
readonly name: "DistributorNotAdded";
|
|
77
|
+
readonly type: "error";
|
|
78
|
+
}, {
|
|
79
|
+
readonly inputs: readonly [];
|
|
80
|
+
readonly name: "DistributorNotApproved";
|
|
81
|
+
readonly type: "error";
|
|
82
|
+
}, {
|
|
83
|
+
readonly inputs: readonly [];
|
|
84
|
+
readonly name: "EmissionCapExceeded";
|
|
85
|
+
readonly type: "error";
|
|
86
|
+
}, {
|
|
87
|
+
readonly inputs: readonly [];
|
|
88
|
+
readonly name: "EnforcedPause";
|
|
89
|
+
readonly type: "error";
|
|
90
|
+
}, {
|
|
91
|
+
readonly inputs: readonly [];
|
|
92
|
+
readonly name: "ExpectedPause";
|
|
93
|
+
readonly type: "error";
|
|
94
|
+
}, {
|
|
95
|
+
readonly inputs: readonly [];
|
|
96
|
+
readonly name: "FailedInnerCall";
|
|
97
|
+
readonly type: "error";
|
|
98
|
+
}, {
|
|
99
|
+
readonly inputs: readonly [];
|
|
100
|
+
readonly name: "FailedToGetTokenDecimals";
|
|
101
|
+
readonly type: "error";
|
|
102
|
+
}, {
|
|
103
|
+
readonly inputs: readonly [];
|
|
104
|
+
readonly name: "GaugeNotActive";
|
|
105
|
+
readonly type: "error";
|
|
106
|
+
}, {
|
|
107
|
+
readonly inputs: readonly [];
|
|
108
|
+
readonly name: "InsufficientBalance";
|
|
109
|
+
readonly type: "error";
|
|
110
|
+
}, {
|
|
111
|
+
readonly inputs: readonly [];
|
|
112
|
+
readonly name: "InsufficientRewardTokenBalance";
|
|
113
|
+
readonly type: "error";
|
|
114
|
+
}, {
|
|
115
|
+
readonly inputs: readonly [];
|
|
116
|
+
readonly name: "InsufficientStakedBalance";
|
|
117
|
+
readonly type: "error";
|
|
118
|
+
}, {
|
|
119
|
+
readonly inputs: readonly [];
|
|
120
|
+
readonly name: "InvalidAddress";
|
|
121
|
+
readonly type: "error";
|
|
122
|
+
}, {
|
|
123
|
+
readonly inputs: readonly [];
|
|
124
|
+
readonly name: "InvalidAmount";
|
|
125
|
+
readonly type: "error";
|
|
126
|
+
}, {
|
|
127
|
+
readonly inputs: readonly [];
|
|
128
|
+
readonly name: "InvalidBoostRatio";
|
|
129
|
+
readonly type: "error";
|
|
130
|
+
}, {
|
|
131
|
+
readonly inputs: readonly [];
|
|
132
|
+
readonly name: "InvalidCheckpointIndex";
|
|
133
|
+
readonly type: "error";
|
|
134
|
+
}, {
|
|
135
|
+
readonly inputs: readonly [];
|
|
136
|
+
readonly name: "InvalidDistributor";
|
|
137
|
+
readonly type: "error";
|
|
138
|
+
}, {
|
|
139
|
+
readonly inputs: readonly [];
|
|
140
|
+
readonly name: "InvalidPeriod";
|
|
141
|
+
readonly type: "error";
|
|
142
|
+
}, {
|
|
143
|
+
readonly inputs: readonly [];
|
|
144
|
+
readonly name: "InvalidToken";
|
|
145
|
+
readonly type: "error";
|
|
146
|
+
}, {
|
|
147
|
+
readonly inputs: readonly [];
|
|
148
|
+
readonly name: "InvalidWeight";
|
|
149
|
+
readonly type: "error";
|
|
150
|
+
}, {
|
|
151
|
+
readonly inputs: readonly [];
|
|
152
|
+
readonly name: "NoDistributorSet";
|
|
153
|
+
readonly type: "error";
|
|
154
|
+
}, {
|
|
155
|
+
readonly inputs: readonly [];
|
|
156
|
+
readonly name: "NoVotingPower";
|
|
157
|
+
readonly type: "error";
|
|
158
|
+
}, {
|
|
159
|
+
readonly inputs: readonly [];
|
|
160
|
+
readonly name: "NotPaused";
|
|
161
|
+
readonly type: "error";
|
|
162
|
+
}, {
|
|
163
|
+
readonly inputs: readonly [];
|
|
164
|
+
readonly name: "PeriodNotElapsed";
|
|
165
|
+
readonly type: "error";
|
|
166
|
+
}, {
|
|
167
|
+
readonly inputs: readonly [];
|
|
168
|
+
readonly name: "PeriodNotElapsed";
|
|
169
|
+
readonly type: "error";
|
|
170
|
+
}, {
|
|
171
|
+
readonly inputs: readonly [];
|
|
172
|
+
readonly name: "ReentrancyGuardReentrantCall";
|
|
173
|
+
readonly type: "error";
|
|
174
|
+
}, {
|
|
175
|
+
readonly inputs: readonly [];
|
|
176
|
+
readonly name: "RewardCapExceeded";
|
|
177
|
+
readonly type: "error";
|
|
178
|
+
}, {
|
|
179
|
+
readonly inputs: readonly [{
|
|
180
|
+
readonly internalType: "address";
|
|
181
|
+
readonly name: "token";
|
|
182
|
+
readonly type: "address";
|
|
183
|
+
}];
|
|
184
|
+
readonly name: "SafeERC20FailedOperation";
|
|
185
|
+
readonly type: "error";
|
|
186
|
+
}, {
|
|
187
|
+
readonly inputs: readonly [];
|
|
188
|
+
readonly name: "TokenAlreadyAdded";
|
|
189
|
+
readonly type: "error";
|
|
190
|
+
}, {
|
|
191
|
+
readonly inputs: readonly [];
|
|
192
|
+
readonly name: "TokenAlreadyInitialized";
|
|
193
|
+
readonly type: "error";
|
|
194
|
+
}, {
|
|
195
|
+
readonly inputs: readonly [];
|
|
196
|
+
readonly name: "TokenNotAdded";
|
|
197
|
+
readonly type: "error";
|
|
198
|
+
}, {
|
|
199
|
+
readonly inputs: readonly [];
|
|
200
|
+
readonly name: "UnauthorizedCaller";
|
|
201
|
+
readonly type: "error";
|
|
202
|
+
}, {
|
|
203
|
+
readonly inputs: readonly [];
|
|
204
|
+
readonly name: "ValueOverflow";
|
|
205
|
+
readonly type: "error";
|
|
206
|
+
}, {
|
|
207
|
+
readonly inputs: readonly [];
|
|
208
|
+
readonly name: "WeightUpdateTooEarly";
|
|
209
|
+
readonly type: "error";
|
|
210
|
+
}, {
|
|
211
|
+
readonly inputs: readonly [];
|
|
212
|
+
readonly name: "ZeroDuration";
|
|
213
|
+
readonly type: "error";
|
|
214
|
+
}, {
|
|
215
|
+
readonly inputs: readonly [];
|
|
216
|
+
readonly name: "ZeroWeight";
|
|
217
|
+
readonly type: "error";
|
|
218
|
+
}, {
|
|
219
|
+
readonly anonymous: false;
|
|
220
|
+
readonly inputs: readonly [{
|
|
221
|
+
readonly indexed: false;
|
|
222
|
+
readonly internalType: "bool";
|
|
223
|
+
readonly name: "enabled";
|
|
224
|
+
readonly type: "bool";
|
|
225
|
+
}];
|
|
226
|
+
readonly name: "BoostAmplificationToggled";
|
|
227
|
+
readonly type: "event";
|
|
228
|
+
}, {
|
|
229
|
+
readonly anonymous: false;
|
|
230
|
+
readonly inputs: readonly [{
|
|
231
|
+
readonly indexed: true;
|
|
232
|
+
readonly internalType: "address";
|
|
233
|
+
readonly name: "user";
|
|
234
|
+
readonly type: "address";
|
|
235
|
+
}, {
|
|
236
|
+
readonly indexed: false;
|
|
237
|
+
readonly internalType: "uint256";
|
|
238
|
+
readonly name: "timestamp";
|
|
239
|
+
readonly type: "uint256";
|
|
240
|
+
}];
|
|
241
|
+
readonly name: "Checkpoint";
|
|
242
|
+
readonly type: "event";
|
|
243
|
+
}, {
|
|
244
|
+
readonly anonymous: false;
|
|
245
|
+
readonly inputs: readonly [{
|
|
246
|
+
readonly indexed: true;
|
|
247
|
+
readonly internalType: "address";
|
|
248
|
+
readonly name: "user";
|
|
249
|
+
readonly type: "address";
|
|
250
|
+
}, {
|
|
251
|
+
readonly indexed: false;
|
|
252
|
+
readonly internalType: "uint256";
|
|
253
|
+
readonly name: "direction";
|
|
254
|
+
readonly type: "uint256";
|
|
255
|
+
}, {
|
|
256
|
+
readonly indexed: false;
|
|
257
|
+
readonly internalType: "uint256";
|
|
258
|
+
readonly name: "votingPower";
|
|
259
|
+
readonly type: "uint256";
|
|
260
|
+
}];
|
|
261
|
+
readonly name: "DirectionVoted";
|
|
262
|
+
readonly type: "event";
|
|
263
|
+
}, {
|
|
264
|
+
readonly anonymous: false;
|
|
265
|
+
readonly inputs: readonly [{
|
|
266
|
+
readonly indexed: false;
|
|
267
|
+
readonly internalType: "uint256";
|
|
268
|
+
readonly name: "newCap";
|
|
269
|
+
readonly type: "uint256";
|
|
270
|
+
}];
|
|
271
|
+
readonly name: "DistributionCapUpdated";
|
|
272
|
+
readonly type: "event";
|
|
273
|
+
}, {
|
|
274
|
+
readonly anonymous: false;
|
|
275
|
+
readonly inputs: readonly [{
|
|
276
|
+
readonly indexed: true;
|
|
277
|
+
readonly internalType: "address";
|
|
278
|
+
readonly name: "distributor";
|
|
279
|
+
readonly type: "address";
|
|
280
|
+
}, {
|
|
281
|
+
readonly indexed: false;
|
|
282
|
+
readonly internalType: "bool";
|
|
283
|
+
readonly name: "isApproved";
|
|
284
|
+
readonly type: "bool";
|
|
285
|
+
}];
|
|
286
|
+
readonly name: "DistributorApprovalUpdated";
|
|
287
|
+
readonly type: "event";
|
|
288
|
+
}, {
|
|
289
|
+
readonly anonymous: false;
|
|
290
|
+
readonly inputs: readonly [{
|
|
291
|
+
readonly indexed: true;
|
|
292
|
+
readonly internalType: "address";
|
|
293
|
+
readonly name: "distributor";
|
|
294
|
+
readonly type: "address";
|
|
295
|
+
}, {
|
|
296
|
+
readonly indexed: false;
|
|
297
|
+
readonly internalType: "bool";
|
|
298
|
+
readonly name: "distributorAdded";
|
|
299
|
+
readonly type: "bool";
|
|
300
|
+
}];
|
|
301
|
+
readonly name: "DistributorUpdated";
|
|
302
|
+
readonly type: "event";
|
|
303
|
+
}, {
|
|
304
|
+
readonly anonymous: false;
|
|
305
|
+
readonly inputs: readonly [{
|
|
306
|
+
readonly indexed: false;
|
|
307
|
+
readonly internalType: "bool";
|
|
308
|
+
readonly name: "paused";
|
|
309
|
+
readonly type: "bool";
|
|
310
|
+
}];
|
|
311
|
+
readonly name: "EmergencyPauseUpdated";
|
|
312
|
+
readonly type: "event";
|
|
313
|
+
}, {
|
|
314
|
+
readonly anonymous: false;
|
|
315
|
+
readonly inputs: readonly [{
|
|
316
|
+
readonly indexed: false;
|
|
317
|
+
readonly internalType: "uint256";
|
|
318
|
+
readonly name: "newCap";
|
|
319
|
+
readonly type: "uint256";
|
|
320
|
+
}];
|
|
321
|
+
readonly name: "EmissionCapUpdated";
|
|
322
|
+
readonly type: "event";
|
|
323
|
+
}, {
|
|
324
|
+
readonly anonymous: false;
|
|
325
|
+
readonly inputs: readonly [{
|
|
326
|
+
readonly indexed: false;
|
|
327
|
+
readonly internalType: "uint256";
|
|
328
|
+
readonly name: "newEmission";
|
|
329
|
+
readonly type: "uint256";
|
|
330
|
+
}];
|
|
331
|
+
readonly name: "EmissionUpdated";
|
|
332
|
+
readonly type: "event";
|
|
333
|
+
}, {
|
|
334
|
+
readonly anonymous: false;
|
|
335
|
+
readonly inputs: readonly [{
|
|
336
|
+
readonly indexed: false;
|
|
337
|
+
readonly internalType: "address";
|
|
338
|
+
readonly name: "account";
|
|
339
|
+
readonly type: "address";
|
|
340
|
+
}];
|
|
341
|
+
readonly name: "Paused";
|
|
342
|
+
readonly type: "event";
|
|
343
|
+
}, {
|
|
344
|
+
readonly anonymous: false;
|
|
345
|
+
readonly inputs: readonly [{
|
|
346
|
+
readonly indexed: false;
|
|
347
|
+
readonly internalType: "uint256";
|
|
348
|
+
readonly name: "startTime";
|
|
349
|
+
readonly type: "uint256";
|
|
350
|
+
}, {
|
|
351
|
+
readonly indexed: false;
|
|
352
|
+
readonly internalType: "uint256";
|
|
353
|
+
readonly name: "duration";
|
|
354
|
+
readonly type: "uint256";
|
|
355
|
+
}, {
|
|
356
|
+
readonly indexed: false;
|
|
357
|
+
readonly internalType: "uint256";
|
|
358
|
+
readonly name: "initialValue";
|
|
359
|
+
readonly type: "uint256";
|
|
360
|
+
}];
|
|
361
|
+
readonly name: "PeriodCreated";
|
|
362
|
+
readonly type: "event";
|
|
363
|
+
}, {
|
|
364
|
+
readonly anonymous: false;
|
|
365
|
+
readonly inputs: readonly [{
|
|
366
|
+
readonly indexed: false;
|
|
367
|
+
readonly internalType: "uint256";
|
|
368
|
+
readonly name: "newDuration";
|
|
369
|
+
readonly type: "uint256";
|
|
370
|
+
}];
|
|
371
|
+
readonly name: "PeriodDurationUpdated";
|
|
372
|
+
readonly type: "event";
|
|
373
|
+
}, {
|
|
374
|
+
readonly anonymous: false;
|
|
375
|
+
readonly inputs: readonly [{
|
|
376
|
+
readonly indexed: false;
|
|
377
|
+
readonly internalType: "uint256";
|
|
378
|
+
readonly name: "timestamp";
|
|
379
|
+
readonly type: "uint256";
|
|
380
|
+
}, {
|
|
381
|
+
readonly indexed: false;
|
|
382
|
+
readonly internalType: "uint256";
|
|
383
|
+
readonly name: "avgWeight";
|
|
384
|
+
readonly type: "uint256";
|
|
385
|
+
}];
|
|
386
|
+
readonly name: "PeriodUpdated";
|
|
387
|
+
readonly type: "event";
|
|
388
|
+
}, {
|
|
389
|
+
readonly anonymous: false;
|
|
390
|
+
readonly inputs: readonly [{
|
|
391
|
+
readonly indexed: true;
|
|
392
|
+
readonly internalType: "address";
|
|
393
|
+
readonly name: "token";
|
|
394
|
+
readonly type: "address";
|
|
395
|
+
}, {
|
|
396
|
+
readonly indexed: false;
|
|
397
|
+
readonly internalType: "uint256";
|
|
398
|
+
readonly name: "amount";
|
|
399
|
+
readonly type: "uint256";
|
|
400
|
+
}, {
|
|
401
|
+
readonly indexed: false;
|
|
402
|
+
readonly internalType: "uint256";
|
|
403
|
+
readonly name: "rewardRate";
|
|
404
|
+
readonly type: "uint256";
|
|
405
|
+
}];
|
|
406
|
+
readonly name: "RewardNotified";
|
|
407
|
+
readonly type: "event";
|
|
408
|
+
}, {
|
|
409
|
+
readonly anonymous: false;
|
|
410
|
+
readonly inputs: readonly [{
|
|
411
|
+
readonly indexed: true;
|
|
412
|
+
readonly internalType: "address";
|
|
413
|
+
readonly name: "user";
|
|
414
|
+
readonly type: "address";
|
|
415
|
+
}, {
|
|
416
|
+
readonly indexed: true;
|
|
417
|
+
readonly internalType: "address";
|
|
418
|
+
readonly name: "token";
|
|
419
|
+
readonly type: "address";
|
|
420
|
+
}, {
|
|
421
|
+
readonly indexed: false;
|
|
422
|
+
readonly internalType: "uint256";
|
|
423
|
+
readonly name: "amount";
|
|
424
|
+
readonly type: "uint256";
|
|
425
|
+
}];
|
|
426
|
+
readonly name: "RewardPaid";
|
|
427
|
+
readonly type: "event";
|
|
428
|
+
}, {
|
|
429
|
+
readonly anonymous: false;
|
|
430
|
+
readonly inputs: readonly [{
|
|
431
|
+
readonly indexed: true;
|
|
432
|
+
readonly internalType: "address";
|
|
433
|
+
readonly name: "token";
|
|
434
|
+
readonly type: "address";
|
|
435
|
+
}];
|
|
436
|
+
readonly name: "RewardTokenAdded";
|
|
437
|
+
readonly type: "event";
|
|
438
|
+
}, {
|
|
439
|
+
readonly anonymous: false;
|
|
440
|
+
readonly inputs: readonly [{
|
|
441
|
+
readonly indexed: true;
|
|
442
|
+
readonly internalType: "bytes32";
|
|
443
|
+
readonly name: "role";
|
|
444
|
+
readonly type: "bytes32";
|
|
445
|
+
}, {
|
|
446
|
+
readonly indexed: true;
|
|
447
|
+
readonly internalType: "bytes32";
|
|
448
|
+
readonly name: "previousAdminRole";
|
|
449
|
+
readonly type: "bytes32";
|
|
450
|
+
}, {
|
|
451
|
+
readonly indexed: true;
|
|
452
|
+
readonly internalType: "bytes32";
|
|
453
|
+
readonly name: "newAdminRole";
|
|
454
|
+
readonly type: "bytes32";
|
|
455
|
+
}];
|
|
456
|
+
readonly name: "RoleAdminChanged";
|
|
457
|
+
readonly type: "event";
|
|
458
|
+
}, {
|
|
459
|
+
readonly anonymous: false;
|
|
460
|
+
readonly inputs: readonly [{
|
|
461
|
+
readonly indexed: true;
|
|
462
|
+
readonly internalType: "bytes32";
|
|
463
|
+
readonly name: "role";
|
|
464
|
+
readonly type: "bytes32";
|
|
465
|
+
}, {
|
|
466
|
+
readonly indexed: true;
|
|
467
|
+
readonly internalType: "address";
|
|
468
|
+
readonly name: "account";
|
|
469
|
+
readonly type: "address";
|
|
470
|
+
}, {
|
|
471
|
+
readonly indexed: true;
|
|
472
|
+
readonly internalType: "address";
|
|
473
|
+
readonly name: "sender";
|
|
474
|
+
readonly type: "address";
|
|
475
|
+
}];
|
|
476
|
+
readonly name: "RoleGranted";
|
|
477
|
+
readonly type: "event";
|
|
478
|
+
}, {
|
|
479
|
+
readonly anonymous: false;
|
|
480
|
+
readonly inputs: readonly [{
|
|
481
|
+
readonly indexed: true;
|
|
482
|
+
readonly internalType: "bytes32";
|
|
483
|
+
readonly name: "role";
|
|
484
|
+
readonly type: "bytes32";
|
|
485
|
+
}, {
|
|
486
|
+
readonly indexed: true;
|
|
487
|
+
readonly internalType: "address";
|
|
488
|
+
readonly name: "account";
|
|
489
|
+
readonly type: "address";
|
|
490
|
+
}, {
|
|
491
|
+
readonly indexed: true;
|
|
492
|
+
readonly internalType: "address";
|
|
493
|
+
readonly name: "sender";
|
|
494
|
+
readonly type: "address";
|
|
495
|
+
}];
|
|
496
|
+
readonly name: "RoleRevoked";
|
|
497
|
+
readonly type: "event";
|
|
498
|
+
}, {
|
|
499
|
+
readonly anonymous: false;
|
|
500
|
+
readonly inputs: readonly [{
|
|
501
|
+
readonly indexed: true;
|
|
502
|
+
readonly internalType: "address";
|
|
503
|
+
readonly name: "user";
|
|
504
|
+
readonly type: "address";
|
|
505
|
+
}, {
|
|
506
|
+
readonly indexed: false;
|
|
507
|
+
readonly internalType: "uint256";
|
|
508
|
+
readonly name: "amount";
|
|
509
|
+
readonly type: "uint256";
|
|
510
|
+
}];
|
|
511
|
+
readonly name: "Staked";
|
|
512
|
+
readonly type: "event";
|
|
513
|
+
}, {
|
|
514
|
+
readonly anonymous: false;
|
|
515
|
+
readonly inputs: readonly [{
|
|
516
|
+
readonly indexed: true;
|
|
517
|
+
readonly internalType: "address";
|
|
518
|
+
readonly name: "token";
|
|
519
|
+
readonly type: "address";
|
|
520
|
+
}, {
|
|
521
|
+
readonly indexed: false;
|
|
522
|
+
readonly internalType: "uint256";
|
|
523
|
+
readonly name: "ratio";
|
|
524
|
+
readonly type: "uint256";
|
|
525
|
+
}];
|
|
526
|
+
readonly name: "TokenBoostRatioUpdated";
|
|
527
|
+
readonly type: "event";
|
|
528
|
+
}, {
|
|
529
|
+
readonly anonymous: false;
|
|
530
|
+
readonly inputs: readonly [{
|
|
531
|
+
readonly indexed: true;
|
|
532
|
+
readonly internalType: "address";
|
|
533
|
+
readonly name: "token";
|
|
534
|
+
readonly type: "address";
|
|
535
|
+
}, {
|
|
536
|
+
readonly indexed: false;
|
|
537
|
+
readonly internalType: "uint256";
|
|
538
|
+
readonly name: "newEmissionCap";
|
|
539
|
+
readonly type: "uint256";
|
|
540
|
+
}];
|
|
541
|
+
readonly name: "TokenEmissionCapUpdated";
|
|
542
|
+
readonly type: "event";
|
|
543
|
+
}, {
|
|
544
|
+
readonly anonymous: false;
|
|
545
|
+
readonly inputs: readonly [{
|
|
546
|
+
readonly indexed: false;
|
|
547
|
+
readonly internalType: "address";
|
|
548
|
+
readonly name: "account";
|
|
549
|
+
readonly type: "address";
|
|
550
|
+
}];
|
|
551
|
+
readonly name: "Unpaused";
|
|
552
|
+
readonly type: "event";
|
|
553
|
+
}, {
|
|
554
|
+
readonly anonymous: false;
|
|
555
|
+
readonly inputs: readonly [{
|
|
556
|
+
readonly indexed: true;
|
|
557
|
+
readonly internalType: "address";
|
|
558
|
+
readonly name: "user";
|
|
559
|
+
readonly type: "address";
|
|
560
|
+
}, {
|
|
561
|
+
readonly indexed: true;
|
|
562
|
+
readonly internalType: "address";
|
|
563
|
+
readonly name: "token";
|
|
564
|
+
readonly type: "address";
|
|
565
|
+
}, {
|
|
566
|
+
readonly indexed: false;
|
|
567
|
+
readonly internalType: "uint256";
|
|
568
|
+
readonly name: "newIntegral";
|
|
569
|
+
readonly type: "uint256";
|
|
570
|
+
}, {
|
|
571
|
+
readonly indexed: false;
|
|
572
|
+
readonly internalType: "uint256";
|
|
573
|
+
readonly name: "timestamp";
|
|
574
|
+
readonly type: "uint256";
|
|
575
|
+
}];
|
|
576
|
+
readonly name: "UserRewardDataUpdated";
|
|
577
|
+
readonly type: "event";
|
|
578
|
+
}, {
|
|
579
|
+
readonly anonymous: false;
|
|
580
|
+
readonly inputs: readonly [{
|
|
581
|
+
readonly indexed: true;
|
|
582
|
+
readonly internalType: "address";
|
|
583
|
+
readonly name: "user";
|
|
584
|
+
readonly type: "address";
|
|
585
|
+
}, {
|
|
586
|
+
readonly indexed: false;
|
|
587
|
+
readonly internalType: "uint256";
|
|
588
|
+
readonly name: "timestamp";
|
|
589
|
+
readonly type: "uint256";
|
|
590
|
+
}];
|
|
591
|
+
readonly name: "UserRewardsUpdated";
|
|
592
|
+
readonly type: "event";
|
|
593
|
+
}, {
|
|
594
|
+
readonly anonymous: false;
|
|
595
|
+
readonly inputs: readonly [{
|
|
596
|
+
readonly indexed: true;
|
|
597
|
+
readonly internalType: "address";
|
|
598
|
+
readonly name: "user";
|
|
599
|
+
readonly type: "address";
|
|
600
|
+
}, {
|
|
601
|
+
readonly indexed: false;
|
|
602
|
+
readonly internalType: "uint256";
|
|
603
|
+
readonly name: "amount";
|
|
604
|
+
readonly type: "uint256";
|
|
605
|
+
}];
|
|
606
|
+
readonly name: "Withdrawn";
|
|
607
|
+
readonly type: "event";
|
|
608
|
+
}, {
|
|
609
|
+
readonly anonymous: false;
|
|
610
|
+
readonly inputs: readonly [{
|
|
611
|
+
readonly indexed: true;
|
|
612
|
+
readonly internalType: "address";
|
|
613
|
+
readonly name: "user";
|
|
614
|
+
readonly type: "address";
|
|
615
|
+
}, {
|
|
616
|
+
readonly indexed: false;
|
|
617
|
+
readonly internalType: "uint256";
|
|
618
|
+
readonly name: "newWorkingBalance";
|
|
619
|
+
readonly type: "uint256";
|
|
620
|
+
}];
|
|
621
|
+
readonly name: "WorkingBalanceUpdated";
|
|
622
|
+
readonly type: "event";
|
|
623
|
+
}, {
|
|
624
|
+
readonly inputs: readonly [];
|
|
625
|
+
readonly name: "CONTROLLER_ROLE";
|
|
626
|
+
readonly outputs: readonly [{
|
|
627
|
+
readonly internalType: "bytes32";
|
|
628
|
+
readonly name: "";
|
|
629
|
+
readonly type: "bytes32";
|
|
630
|
+
}];
|
|
631
|
+
readonly stateMutability: "view";
|
|
632
|
+
readonly type: "function";
|
|
633
|
+
}, {
|
|
634
|
+
readonly inputs: readonly [];
|
|
635
|
+
readonly name: "DEFAULT_ADMIN_ROLE";
|
|
636
|
+
readonly outputs: readonly [{
|
|
637
|
+
readonly internalType: "bytes32";
|
|
638
|
+
readonly name: "";
|
|
639
|
+
readonly type: "bytes32";
|
|
640
|
+
}];
|
|
641
|
+
readonly stateMutability: "view";
|
|
642
|
+
readonly type: "function";
|
|
643
|
+
}, {
|
|
644
|
+
readonly inputs: readonly [];
|
|
645
|
+
readonly name: "EMERGENCY_ADMIN";
|
|
646
|
+
readonly outputs: readonly [{
|
|
647
|
+
readonly internalType: "bytes32";
|
|
648
|
+
readonly name: "";
|
|
649
|
+
readonly type: "bytes32";
|
|
650
|
+
}];
|
|
651
|
+
readonly stateMutability: "view";
|
|
652
|
+
readonly type: "function";
|
|
653
|
+
}, {
|
|
654
|
+
readonly inputs: readonly [];
|
|
655
|
+
readonly name: "FEE_ADMIN";
|
|
656
|
+
readonly outputs: readonly [{
|
|
657
|
+
readonly internalType: "bytes32";
|
|
658
|
+
readonly name: "";
|
|
659
|
+
readonly type: "bytes32";
|
|
660
|
+
}];
|
|
661
|
+
readonly stateMutability: "view";
|
|
662
|
+
readonly type: "function";
|
|
663
|
+
}, {
|
|
664
|
+
readonly inputs: readonly [];
|
|
665
|
+
readonly name: "GAUGE_ADMIN";
|
|
666
|
+
readonly outputs: readonly [{
|
|
667
|
+
readonly internalType: "bytes32";
|
|
668
|
+
readonly name: "";
|
|
669
|
+
readonly type: "bytes32";
|
|
670
|
+
}];
|
|
671
|
+
readonly stateMutability: "view";
|
|
672
|
+
readonly type: "function";
|
|
673
|
+
}, {
|
|
674
|
+
readonly inputs: readonly [];
|
|
675
|
+
readonly name: "MAX_CHECKPOINTS";
|
|
676
|
+
readonly outputs: readonly [{
|
|
677
|
+
readonly internalType: "uint256";
|
|
678
|
+
readonly name: "";
|
|
679
|
+
readonly type: "uint256";
|
|
680
|
+
}];
|
|
681
|
+
readonly stateMutability: "view";
|
|
682
|
+
readonly type: "function";
|
|
683
|
+
}, {
|
|
684
|
+
readonly inputs: readonly [];
|
|
685
|
+
readonly name: "MAX_VOTE_WEIGHT";
|
|
686
|
+
readonly outputs: readonly [{
|
|
687
|
+
readonly internalType: "uint256";
|
|
688
|
+
readonly name: "";
|
|
689
|
+
readonly type: "uint256";
|
|
690
|
+
}];
|
|
691
|
+
readonly stateMutability: "view";
|
|
692
|
+
readonly type: "function";
|
|
693
|
+
}, {
|
|
694
|
+
readonly inputs: readonly [];
|
|
695
|
+
readonly name: "MAX_WEEKLY_EMISSION";
|
|
696
|
+
readonly outputs: readonly [{
|
|
697
|
+
readonly internalType: "uint256";
|
|
698
|
+
readonly name: "";
|
|
699
|
+
readonly type: "uint256";
|
|
700
|
+
}];
|
|
701
|
+
readonly stateMutability: "view";
|
|
702
|
+
readonly type: "function";
|
|
703
|
+
}, {
|
|
704
|
+
readonly inputs: readonly [];
|
|
705
|
+
readonly name: "WEEK";
|
|
706
|
+
readonly outputs: readonly [{
|
|
707
|
+
readonly internalType: "uint256";
|
|
708
|
+
readonly name: "";
|
|
709
|
+
readonly type: "uint256";
|
|
710
|
+
}];
|
|
711
|
+
readonly stateMutability: "view";
|
|
712
|
+
readonly type: "function";
|
|
713
|
+
}, {
|
|
714
|
+
readonly inputs: readonly [];
|
|
715
|
+
readonly name: "WEIGHT_PRECISION";
|
|
716
|
+
readonly outputs: readonly [{
|
|
717
|
+
readonly internalType: "uint256";
|
|
718
|
+
readonly name: "";
|
|
719
|
+
readonly type: "uint256";
|
|
720
|
+
}];
|
|
721
|
+
readonly stateMutability: "view";
|
|
722
|
+
readonly type: "function";
|
|
723
|
+
}, {
|
|
724
|
+
readonly inputs: readonly [{
|
|
725
|
+
readonly internalType: "address";
|
|
726
|
+
readonly name: "account";
|
|
727
|
+
readonly type: "address";
|
|
728
|
+
}];
|
|
729
|
+
readonly name: "balanceOf";
|
|
730
|
+
readonly outputs: readonly [{
|
|
731
|
+
readonly internalType: "uint256";
|
|
732
|
+
readonly name: "";
|
|
733
|
+
readonly type: "uint256";
|
|
734
|
+
}];
|
|
735
|
+
readonly stateMutability: "view";
|
|
736
|
+
readonly type: "function";
|
|
737
|
+
}, {
|
|
738
|
+
readonly inputs: readonly [];
|
|
739
|
+
readonly name: "boostAmplificationEnabled";
|
|
740
|
+
readonly outputs: readonly [{
|
|
741
|
+
readonly internalType: "bool";
|
|
742
|
+
readonly name: "";
|
|
743
|
+
readonly type: "bool";
|
|
744
|
+
}];
|
|
745
|
+
readonly stateMutability: "view";
|
|
746
|
+
readonly type: "function";
|
|
747
|
+
}, {
|
|
748
|
+
readonly inputs: readonly [{
|
|
749
|
+
readonly internalType: "address";
|
|
750
|
+
readonly name: "token";
|
|
751
|
+
readonly type: "address";
|
|
752
|
+
}];
|
|
753
|
+
readonly name: "claimRewardToken";
|
|
754
|
+
readonly outputs: readonly [{
|
|
755
|
+
readonly internalType: "uint256";
|
|
756
|
+
readonly name: "reward";
|
|
757
|
+
readonly type: "uint256";
|
|
758
|
+
}];
|
|
759
|
+
readonly stateMutability: "nonpayable";
|
|
760
|
+
readonly type: "function";
|
|
761
|
+
}, {
|
|
762
|
+
readonly inputs: readonly [];
|
|
763
|
+
readonly name: "claimRewards";
|
|
764
|
+
readonly outputs: readonly [];
|
|
765
|
+
readonly stateMutability: "nonpayable";
|
|
766
|
+
readonly type: "function";
|
|
767
|
+
}, {
|
|
768
|
+
readonly inputs: readonly [{
|
|
769
|
+
readonly internalType: "address";
|
|
770
|
+
readonly name: "token";
|
|
771
|
+
readonly type: "address";
|
|
772
|
+
}, {
|
|
773
|
+
readonly internalType: "address";
|
|
774
|
+
readonly name: "user";
|
|
775
|
+
readonly type: "address";
|
|
776
|
+
}];
|
|
777
|
+
readonly name: "claimedRewards";
|
|
778
|
+
readonly outputs: readonly [{
|
|
779
|
+
readonly internalType: "uint256";
|
|
780
|
+
readonly name: "";
|
|
781
|
+
readonly type: "uint256";
|
|
782
|
+
}];
|
|
783
|
+
readonly stateMutability: "view";
|
|
784
|
+
readonly type: "function";
|
|
785
|
+
}, {
|
|
786
|
+
readonly inputs: readonly [];
|
|
787
|
+
readonly name: "controller";
|
|
788
|
+
readonly outputs: readonly [{
|
|
789
|
+
readonly internalType: "address";
|
|
790
|
+
readonly name: "";
|
|
791
|
+
readonly type: "address";
|
|
792
|
+
}];
|
|
793
|
+
readonly stateMutability: "view";
|
|
794
|
+
readonly type: "function";
|
|
795
|
+
}, {
|
|
796
|
+
readonly inputs: readonly [];
|
|
797
|
+
readonly name: "distributionCap";
|
|
798
|
+
readonly outputs: readonly [{
|
|
799
|
+
readonly internalType: "uint256";
|
|
800
|
+
readonly name: "";
|
|
801
|
+
readonly type: "uint256";
|
|
802
|
+
}];
|
|
803
|
+
readonly stateMutability: "view";
|
|
804
|
+
readonly type: "function";
|
|
805
|
+
}, {
|
|
806
|
+
readonly inputs: readonly [{
|
|
807
|
+
readonly internalType: "address";
|
|
808
|
+
readonly name: "";
|
|
809
|
+
readonly type: "address";
|
|
810
|
+
}];
|
|
811
|
+
readonly name: "distributors";
|
|
812
|
+
readonly outputs: readonly [{
|
|
813
|
+
readonly internalType: "address";
|
|
814
|
+
readonly name: "distributor";
|
|
815
|
+
readonly type: "address";
|
|
816
|
+
}, {
|
|
817
|
+
readonly internalType: "bool";
|
|
818
|
+
readonly name: "isApproved";
|
|
819
|
+
readonly type: "bool";
|
|
820
|
+
}];
|
|
821
|
+
readonly stateMutability: "view";
|
|
822
|
+
readonly type: "function";
|
|
823
|
+
}, {
|
|
824
|
+
readonly inputs: readonly [{
|
|
825
|
+
readonly internalType: "uint256";
|
|
826
|
+
readonly name: "";
|
|
827
|
+
readonly type: "uint256";
|
|
828
|
+
}];
|
|
829
|
+
readonly name: "distributorsList";
|
|
830
|
+
readonly outputs: readonly [{
|
|
831
|
+
readonly internalType: "address";
|
|
832
|
+
readonly name: "";
|
|
833
|
+
readonly type: "address";
|
|
834
|
+
}];
|
|
835
|
+
readonly stateMutability: "view";
|
|
836
|
+
readonly type: "function";
|
|
837
|
+
}, {
|
|
838
|
+
readonly inputs: readonly [{
|
|
839
|
+
readonly internalType: "address";
|
|
840
|
+
readonly name: "token";
|
|
841
|
+
readonly type: "address";
|
|
842
|
+
}, {
|
|
843
|
+
readonly internalType: "address";
|
|
844
|
+
readonly name: "user";
|
|
845
|
+
readonly type: "address";
|
|
846
|
+
}];
|
|
847
|
+
readonly name: "earned";
|
|
848
|
+
readonly outputs: readonly [{
|
|
849
|
+
readonly internalType: "uint256";
|
|
850
|
+
readonly name: "";
|
|
851
|
+
readonly type: "uint256";
|
|
852
|
+
}];
|
|
853
|
+
readonly stateMutability: "view";
|
|
854
|
+
readonly type: "function";
|
|
855
|
+
}, {
|
|
856
|
+
readonly inputs: readonly [{
|
|
857
|
+
readonly internalType: "address";
|
|
858
|
+
readonly name: "token";
|
|
859
|
+
readonly type: "address";
|
|
860
|
+
}, {
|
|
861
|
+
readonly internalType: "address";
|
|
862
|
+
readonly name: "user";
|
|
863
|
+
readonly type: "address";
|
|
864
|
+
}];
|
|
865
|
+
readonly name: "earnedRewards";
|
|
866
|
+
readonly outputs: readonly [{
|
|
867
|
+
readonly internalType: "uint256";
|
|
868
|
+
readonly name: "";
|
|
869
|
+
readonly type: "uint256";
|
|
870
|
+
}];
|
|
871
|
+
readonly stateMutability: "view";
|
|
872
|
+
readonly type: "function";
|
|
873
|
+
}, {
|
|
874
|
+
readonly inputs: readonly [{
|
|
875
|
+
readonly internalType: "address";
|
|
876
|
+
readonly name: "token";
|
|
877
|
+
readonly type: "address";
|
|
878
|
+
}, {
|
|
879
|
+
readonly internalType: "uint256";
|
|
880
|
+
readonly name: "amount";
|
|
881
|
+
readonly type: "uint256";
|
|
882
|
+
}];
|
|
883
|
+
readonly name: "emergencyWithdraw";
|
|
884
|
+
readonly outputs: readonly [];
|
|
885
|
+
readonly stateMutability: "nonpayable";
|
|
886
|
+
readonly type: "function";
|
|
887
|
+
}, {
|
|
888
|
+
readonly inputs: readonly [];
|
|
889
|
+
readonly name: "gaugeController";
|
|
890
|
+
readonly outputs: readonly [{
|
|
891
|
+
readonly internalType: "contract IGaugeController";
|
|
892
|
+
readonly name: "";
|
|
893
|
+
readonly type: "address";
|
|
894
|
+
}];
|
|
895
|
+
readonly stateMutability: "view";
|
|
896
|
+
readonly type: "function";
|
|
897
|
+
}, {
|
|
898
|
+
readonly inputs: readonly [{
|
|
899
|
+
readonly internalType: "address";
|
|
900
|
+
readonly name: "token";
|
|
901
|
+
readonly type: "address";
|
|
902
|
+
}];
|
|
903
|
+
readonly name: "getDecimalAdjustment";
|
|
904
|
+
readonly outputs: readonly [{
|
|
905
|
+
readonly internalType: "uint256";
|
|
906
|
+
readonly name: "";
|
|
907
|
+
readonly type: "uint256";
|
|
908
|
+
}];
|
|
909
|
+
readonly stateMutability: "view";
|
|
910
|
+
readonly type: "function";
|
|
911
|
+
}, {
|
|
912
|
+
readonly inputs: readonly [{
|
|
913
|
+
readonly internalType: "address";
|
|
914
|
+
readonly name: "distributor";
|
|
915
|
+
readonly type: "address";
|
|
916
|
+
}];
|
|
917
|
+
readonly name: "getDistributorApproval";
|
|
918
|
+
readonly outputs: readonly [{
|
|
919
|
+
readonly internalType: "bool";
|
|
920
|
+
readonly name: "";
|
|
921
|
+
readonly type: "bool";
|
|
922
|
+
}];
|
|
923
|
+
readonly stateMutability: "view";
|
|
924
|
+
readonly type: "function";
|
|
925
|
+
}, {
|
|
926
|
+
readonly inputs: readonly [];
|
|
927
|
+
readonly name: "getDistributors";
|
|
928
|
+
readonly outputs: readonly [{
|
|
929
|
+
readonly internalType: "address[]";
|
|
930
|
+
readonly name: "";
|
|
931
|
+
readonly type: "address[]";
|
|
932
|
+
}];
|
|
933
|
+
readonly stateMutability: "view";
|
|
934
|
+
readonly type: "function";
|
|
935
|
+
}, {
|
|
936
|
+
readonly inputs: readonly [];
|
|
937
|
+
readonly name: "getNextPeriodTime";
|
|
938
|
+
readonly outputs: readonly [{
|
|
939
|
+
readonly internalType: "uint256";
|
|
940
|
+
readonly name: "";
|
|
941
|
+
readonly type: "uint256";
|
|
942
|
+
}];
|
|
943
|
+
readonly stateMutability: "view";
|
|
944
|
+
readonly type: "function";
|
|
945
|
+
}, {
|
|
946
|
+
readonly inputs: readonly [];
|
|
947
|
+
readonly name: "getPeriodState";
|
|
948
|
+
readonly outputs: readonly [{
|
|
949
|
+
readonly components: readonly [{
|
|
950
|
+
readonly components: readonly [{
|
|
951
|
+
readonly internalType: "uint256";
|
|
952
|
+
readonly name: "startTime";
|
|
953
|
+
readonly type: "uint256";
|
|
954
|
+
}, {
|
|
955
|
+
readonly internalType: "uint256";
|
|
956
|
+
readonly name: "endTime";
|
|
957
|
+
readonly type: "uint256";
|
|
958
|
+
}, {
|
|
959
|
+
readonly internalType: "uint256";
|
|
960
|
+
readonly name: "lastUpdateTime";
|
|
961
|
+
readonly type: "uint256";
|
|
962
|
+
}, {
|
|
963
|
+
readonly internalType: "uint256";
|
|
964
|
+
readonly name: "value";
|
|
965
|
+
readonly type: "uint256";
|
|
966
|
+
}, {
|
|
967
|
+
readonly internalType: "uint256";
|
|
968
|
+
readonly name: "weightedSum";
|
|
969
|
+
readonly type: "uint256";
|
|
970
|
+
}, {
|
|
971
|
+
readonly internalType: "uint256";
|
|
972
|
+
readonly name: "totalDuration";
|
|
973
|
+
readonly type: "uint256";
|
|
974
|
+
}, {
|
|
975
|
+
readonly internalType: "uint256";
|
|
976
|
+
readonly name: "weight";
|
|
977
|
+
readonly type: "uint256";
|
|
978
|
+
}];
|
|
979
|
+
readonly internalType: "struct TimeWeightedAverage.Period";
|
|
980
|
+
readonly name: "votingPeriod";
|
|
981
|
+
readonly type: "tuple";
|
|
982
|
+
}, {
|
|
983
|
+
readonly internalType: "uint256";
|
|
984
|
+
readonly name: "emission";
|
|
985
|
+
readonly type: "uint256";
|
|
986
|
+
}, {
|
|
987
|
+
readonly internalType: "uint256";
|
|
988
|
+
readonly name: "distributed";
|
|
989
|
+
readonly type: "uint256";
|
|
990
|
+
}, {
|
|
991
|
+
readonly internalType: "uint256";
|
|
992
|
+
readonly name: "periodStartTime";
|
|
993
|
+
readonly type: "uint256";
|
|
994
|
+
}];
|
|
995
|
+
readonly internalType: "struct IBaseGauge.PeriodState";
|
|
996
|
+
readonly name: "";
|
|
997
|
+
readonly type: "tuple";
|
|
998
|
+
}];
|
|
999
|
+
readonly stateMutability: "view";
|
|
1000
|
+
readonly type: "function";
|
|
1001
|
+
}, {
|
|
1002
|
+
readonly inputs: readonly [];
|
|
1003
|
+
readonly name: "getRewardTokens";
|
|
1004
|
+
readonly outputs: readonly [{
|
|
1005
|
+
readonly internalType: "address[]";
|
|
1006
|
+
readonly name: "";
|
|
1007
|
+
readonly type: "address[]";
|
|
1008
|
+
}];
|
|
1009
|
+
readonly stateMutability: "view";
|
|
1010
|
+
readonly type: "function";
|
|
1011
|
+
}, {
|
|
1012
|
+
readonly inputs: readonly [{
|
|
1013
|
+
readonly internalType: "bytes32";
|
|
1014
|
+
readonly name: "role";
|
|
1015
|
+
readonly type: "bytes32";
|
|
1016
|
+
}];
|
|
1017
|
+
readonly name: "getRoleAdmin";
|
|
1018
|
+
readonly outputs: readonly [{
|
|
1019
|
+
readonly internalType: "bytes32";
|
|
1020
|
+
readonly name: "";
|
|
1021
|
+
readonly type: "bytes32";
|
|
1022
|
+
}];
|
|
1023
|
+
readonly stateMutability: "view";
|
|
1024
|
+
readonly type: "function";
|
|
1025
|
+
}, {
|
|
1026
|
+
readonly inputs: readonly [{
|
|
1027
|
+
readonly internalType: "address";
|
|
1028
|
+
readonly name: "token";
|
|
1029
|
+
readonly type: "address";
|
|
1030
|
+
}];
|
|
1031
|
+
readonly name: "getTokenEmissionState";
|
|
1032
|
+
readonly outputs: readonly [{
|
|
1033
|
+
readonly internalType: "uint256";
|
|
1034
|
+
readonly name: "emissionCap_";
|
|
1035
|
+
readonly type: "uint256";
|
|
1036
|
+
}, {
|
|
1037
|
+
readonly internalType: "uint256";
|
|
1038
|
+
readonly name: "distributed_";
|
|
1039
|
+
readonly type: "uint256";
|
|
1040
|
+
}];
|
|
1041
|
+
readonly stateMutability: "view";
|
|
1042
|
+
readonly type: "function";
|
|
1043
|
+
}, {
|
|
1044
|
+
readonly inputs: readonly [{
|
|
1045
|
+
readonly internalType: "address";
|
|
1046
|
+
readonly name: "account";
|
|
1047
|
+
readonly type: "address";
|
|
1048
|
+
}];
|
|
1049
|
+
readonly name: "getUserWeight";
|
|
1050
|
+
readonly outputs: readonly [{
|
|
1051
|
+
readonly internalType: "uint256";
|
|
1052
|
+
readonly name: "";
|
|
1053
|
+
readonly type: "uint256";
|
|
1054
|
+
}];
|
|
1055
|
+
readonly stateMutability: "view";
|
|
1056
|
+
readonly type: "function";
|
|
1057
|
+
}, {
|
|
1058
|
+
readonly inputs: readonly [{
|
|
1059
|
+
readonly internalType: "address";
|
|
1060
|
+
readonly name: "account";
|
|
1061
|
+
readonly type: "address";
|
|
1062
|
+
}];
|
|
1063
|
+
readonly name: "getWorkingBalance";
|
|
1064
|
+
readonly outputs: readonly [{
|
|
1065
|
+
readonly internalType: "uint256";
|
|
1066
|
+
readonly name: "";
|
|
1067
|
+
readonly type: "uint256";
|
|
1068
|
+
}];
|
|
1069
|
+
readonly stateMutability: "view";
|
|
1070
|
+
readonly type: "function";
|
|
1071
|
+
}, {
|
|
1072
|
+
readonly inputs: readonly [{
|
|
1073
|
+
readonly internalType: "bytes32";
|
|
1074
|
+
readonly name: "role";
|
|
1075
|
+
readonly type: "bytes32";
|
|
1076
|
+
}, {
|
|
1077
|
+
readonly internalType: "address";
|
|
1078
|
+
readonly name: "account";
|
|
1079
|
+
readonly type: "address";
|
|
1080
|
+
}];
|
|
1081
|
+
readonly name: "grantRole";
|
|
1082
|
+
readonly outputs: readonly [];
|
|
1083
|
+
readonly stateMutability: "nonpayable";
|
|
1084
|
+
readonly type: "function";
|
|
1085
|
+
}, {
|
|
1086
|
+
readonly inputs: readonly [{
|
|
1087
|
+
readonly internalType: "bytes32";
|
|
1088
|
+
readonly name: "role";
|
|
1089
|
+
readonly type: "bytes32";
|
|
1090
|
+
}, {
|
|
1091
|
+
readonly internalType: "address";
|
|
1092
|
+
readonly name: "account";
|
|
1093
|
+
readonly type: "address";
|
|
1094
|
+
}];
|
|
1095
|
+
readonly name: "hasRole";
|
|
1096
|
+
readonly outputs: readonly [{
|
|
1097
|
+
readonly internalType: "bool";
|
|
1098
|
+
readonly name: "";
|
|
1099
|
+
readonly type: "bool";
|
|
1100
|
+
}];
|
|
1101
|
+
readonly stateMutability: "view";
|
|
1102
|
+
readonly type: "function";
|
|
1103
|
+
}, {
|
|
1104
|
+
readonly inputs: readonly [];
|
|
1105
|
+
readonly name: "historicalCheckpointCount";
|
|
1106
|
+
readonly outputs: readonly [{
|
|
1107
|
+
readonly internalType: "uint256";
|
|
1108
|
+
readonly name: "";
|
|
1109
|
+
readonly type: "uint256";
|
|
1110
|
+
}];
|
|
1111
|
+
readonly stateMutability: "view";
|
|
1112
|
+
readonly type: "function";
|
|
1113
|
+
}, {
|
|
1114
|
+
readonly inputs: readonly [{
|
|
1115
|
+
readonly internalType: "uint256";
|
|
1116
|
+
readonly name: "";
|
|
1117
|
+
readonly type: "uint256";
|
|
1118
|
+
}];
|
|
1119
|
+
readonly name: "historicalCheckpoints";
|
|
1120
|
+
readonly outputs: readonly [{
|
|
1121
|
+
readonly internalType: "uint256";
|
|
1122
|
+
readonly name: "timestamp";
|
|
1123
|
+
readonly type: "uint256";
|
|
1124
|
+
}, {
|
|
1125
|
+
readonly internalType: "uint256";
|
|
1126
|
+
readonly name: "totalSupply";
|
|
1127
|
+
readonly type: "uint256";
|
|
1128
|
+
}, {
|
|
1129
|
+
readonly internalType: "uint256";
|
|
1130
|
+
readonly name: "workingSupply";
|
|
1131
|
+
readonly type: "uint256";
|
|
1132
|
+
}, {
|
|
1133
|
+
readonly internalType: "uint256";
|
|
1134
|
+
readonly name: "rewardPerToken";
|
|
1135
|
+
readonly type: "uint256";
|
|
1136
|
+
}, {
|
|
1137
|
+
readonly internalType: "uint256";
|
|
1138
|
+
readonly name: "rewardRate";
|
|
1139
|
+
readonly type: "uint256";
|
|
1140
|
+
}];
|
|
1141
|
+
readonly stateMutability: "view";
|
|
1142
|
+
readonly type: "function";
|
|
1143
|
+
}, {
|
|
1144
|
+
readonly inputs: readonly [{
|
|
1145
|
+
readonly internalType: "address";
|
|
1146
|
+
readonly name: "token";
|
|
1147
|
+
readonly type: "address";
|
|
1148
|
+
}, {
|
|
1149
|
+
readonly internalType: "address";
|
|
1150
|
+
readonly name: "distributor";
|
|
1151
|
+
readonly type: "address";
|
|
1152
|
+
}];
|
|
1153
|
+
readonly name: "initializeRewardToken";
|
|
1154
|
+
readonly outputs: readonly [];
|
|
1155
|
+
readonly stateMutability: "nonpayable";
|
|
1156
|
+
readonly type: "function";
|
|
1157
|
+
}, {
|
|
1158
|
+
readonly inputs: readonly [];
|
|
1159
|
+
readonly name: "lastUpdateTime";
|
|
1160
|
+
readonly outputs: readonly [{
|
|
1161
|
+
readonly internalType: "uint256";
|
|
1162
|
+
readonly name: "";
|
|
1163
|
+
readonly type: "uint256";
|
|
1164
|
+
}];
|
|
1165
|
+
readonly stateMutability: "view";
|
|
1166
|
+
readonly type: "function";
|
|
1167
|
+
}, {
|
|
1168
|
+
readonly inputs: readonly [{
|
|
1169
|
+
readonly internalType: "address";
|
|
1170
|
+
readonly name: "distributor";
|
|
1171
|
+
readonly type: "address";
|
|
1172
|
+
}, {
|
|
1173
|
+
readonly internalType: "bool";
|
|
1174
|
+
readonly name: "shouldAddDistributor";
|
|
1175
|
+
readonly type: "bool";
|
|
1176
|
+
}];
|
|
1177
|
+
readonly name: "manageDistributor";
|
|
1178
|
+
readonly outputs: readonly [];
|
|
1179
|
+
readonly stateMutability: "nonpayable";
|
|
1180
|
+
readonly type: "function";
|
|
1181
|
+
}, {
|
|
1182
|
+
readonly inputs: readonly [{
|
|
1183
|
+
readonly internalType: "address";
|
|
1184
|
+
readonly name: "token";
|
|
1185
|
+
readonly type: "address";
|
|
1186
|
+
}, {
|
|
1187
|
+
readonly internalType: "uint256";
|
|
1188
|
+
readonly name: "amount";
|
|
1189
|
+
readonly type: "uint256";
|
|
1190
|
+
}];
|
|
1191
|
+
readonly name: "notifyRewardAmount";
|
|
1192
|
+
readonly outputs: readonly [];
|
|
1193
|
+
readonly stateMutability: "nonpayable";
|
|
1194
|
+
readonly type: "function";
|
|
1195
|
+
}, {
|
|
1196
|
+
readonly inputs: readonly [];
|
|
1197
|
+
readonly name: "paused";
|
|
1198
|
+
readonly outputs: readonly [{
|
|
1199
|
+
readonly internalType: "bool";
|
|
1200
|
+
readonly name: "";
|
|
1201
|
+
readonly type: "bool";
|
|
1202
|
+
}];
|
|
1203
|
+
readonly stateMutability: "view";
|
|
1204
|
+
readonly type: "function";
|
|
1205
|
+
}, {
|
|
1206
|
+
readonly inputs: readonly [{
|
|
1207
|
+
readonly internalType: "address";
|
|
1208
|
+
readonly name: "token";
|
|
1209
|
+
readonly type: "address";
|
|
1210
|
+
}, {
|
|
1211
|
+
readonly internalType: "address";
|
|
1212
|
+
readonly name: "user";
|
|
1213
|
+
readonly type: "address";
|
|
1214
|
+
}];
|
|
1215
|
+
readonly name: "pendingRewards";
|
|
1216
|
+
readonly outputs: readonly [{
|
|
1217
|
+
readonly internalType: "uint256";
|
|
1218
|
+
readonly name: "";
|
|
1219
|
+
readonly type: "uint256";
|
|
1220
|
+
}];
|
|
1221
|
+
readonly stateMutability: "view";
|
|
1222
|
+
readonly type: "function";
|
|
1223
|
+
}, {
|
|
1224
|
+
readonly inputs: readonly [];
|
|
1225
|
+
readonly name: "periodDuration";
|
|
1226
|
+
readonly outputs: readonly [{
|
|
1227
|
+
readonly internalType: "uint256";
|
|
1228
|
+
readonly name: "";
|
|
1229
|
+
readonly type: "uint256";
|
|
1230
|
+
}];
|
|
1231
|
+
readonly stateMutability: "view";
|
|
1232
|
+
readonly type: "function";
|
|
1233
|
+
}, {
|
|
1234
|
+
readonly inputs: readonly [];
|
|
1235
|
+
readonly name: "periodFinish";
|
|
1236
|
+
readonly outputs: readonly [{
|
|
1237
|
+
readonly internalType: "uint256";
|
|
1238
|
+
readonly name: "";
|
|
1239
|
+
readonly type: "uint256";
|
|
1240
|
+
}];
|
|
1241
|
+
readonly stateMutability: "view";
|
|
1242
|
+
readonly type: "function";
|
|
1243
|
+
}, {
|
|
1244
|
+
readonly inputs: readonly [];
|
|
1245
|
+
readonly name: "periodState";
|
|
1246
|
+
readonly outputs: readonly [{
|
|
1247
|
+
readonly components: readonly [{
|
|
1248
|
+
readonly internalType: "uint256";
|
|
1249
|
+
readonly name: "startTime";
|
|
1250
|
+
readonly type: "uint256";
|
|
1251
|
+
}, {
|
|
1252
|
+
readonly internalType: "uint256";
|
|
1253
|
+
readonly name: "endTime";
|
|
1254
|
+
readonly type: "uint256";
|
|
1255
|
+
}, {
|
|
1256
|
+
readonly internalType: "uint256";
|
|
1257
|
+
readonly name: "lastUpdateTime";
|
|
1258
|
+
readonly type: "uint256";
|
|
1259
|
+
}, {
|
|
1260
|
+
readonly internalType: "uint256";
|
|
1261
|
+
readonly name: "value";
|
|
1262
|
+
readonly type: "uint256";
|
|
1263
|
+
}, {
|
|
1264
|
+
readonly internalType: "uint256";
|
|
1265
|
+
readonly name: "weightedSum";
|
|
1266
|
+
readonly type: "uint256";
|
|
1267
|
+
}, {
|
|
1268
|
+
readonly internalType: "uint256";
|
|
1269
|
+
readonly name: "totalDuration";
|
|
1270
|
+
readonly type: "uint256";
|
|
1271
|
+
}, {
|
|
1272
|
+
readonly internalType: "uint256";
|
|
1273
|
+
readonly name: "weight";
|
|
1274
|
+
readonly type: "uint256";
|
|
1275
|
+
}];
|
|
1276
|
+
readonly internalType: "struct TimeWeightedAverage.Period";
|
|
1277
|
+
readonly name: "votingPeriod";
|
|
1278
|
+
readonly type: "tuple";
|
|
1279
|
+
}, {
|
|
1280
|
+
readonly internalType: "uint256";
|
|
1281
|
+
readonly name: "emission";
|
|
1282
|
+
readonly type: "uint256";
|
|
1283
|
+
}, {
|
|
1284
|
+
readonly internalType: "uint256";
|
|
1285
|
+
readonly name: "distributed";
|
|
1286
|
+
readonly type: "uint256";
|
|
1287
|
+
}, {
|
|
1288
|
+
readonly internalType: "uint256";
|
|
1289
|
+
readonly name: "periodStartTime";
|
|
1290
|
+
readonly type: "uint256";
|
|
1291
|
+
}];
|
|
1292
|
+
readonly stateMutability: "view";
|
|
1293
|
+
readonly type: "function";
|
|
1294
|
+
}, {
|
|
1295
|
+
readonly inputs: readonly [{
|
|
1296
|
+
readonly internalType: "bytes32";
|
|
1297
|
+
readonly name: "role";
|
|
1298
|
+
readonly type: "bytes32";
|
|
1299
|
+
}, {
|
|
1300
|
+
readonly internalType: "address";
|
|
1301
|
+
readonly name: "callerConfirmation";
|
|
1302
|
+
readonly type: "address";
|
|
1303
|
+
}];
|
|
1304
|
+
readonly name: "renounceRole";
|
|
1305
|
+
readonly outputs: readonly [];
|
|
1306
|
+
readonly stateMutability: "nonpayable";
|
|
1307
|
+
readonly type: "function";
|
|
1308
|
+
}, {
|
|
1309
|
+
readonly inputs: readonly [{
|
|
1310
|
+
readonly internalType: "bytes32";
|
|
1311
|
+
readonly name: "role";
|
|
1312
|
+
readonly type: "bytes32";
|
|
1313
|
+
}, {
|
|
1314
|
+
readonly internalType: "address";
|
|
1315
|
+
readonly name: "account";
|
|
1316
|
+
readonly type: "address";
|
|
1317
|
+
}];
|
|
1318
|
+
readonly name: "revokeRole";
|
|
1319
|
+
readonly outputs: readonly [];
|
|
1320
|
+
readonly stateMutability: "nonpayable";
|
|
1321
|
+
readonly type: "function";
|
|
1322
|
+
}, {
|
|
1323
|
+
readonly inputs: readonly [{
|
|
1324
|
+
readonly internalType: "address";
|
|
1325
|
+
readonly name: "";
|
|
1326
|
+
readonly type: "address";
|
|
1327
|
+
}];
|
|
1328
|
+
readonly name: "rewardData";
|
|
1329
|
+
readonly outputs: readonly [{
|
|
1330
|
+
readonly internalType: "uint256";
|
|
1331
|
+
readonly name: "rate";
|
|
1332
|
+
readonly type: "uint256";
|
|
1333
|
+
}, {
|
|
1334
|
+
readonly internalType: "uint256";
|
|
1335
|
+
readonly name: "periodFinish";
|
|
1336
|
+
readonly type: "uint256";
|
|
1337
|
+
}, {
|
|
1338
|
+
readonly internalType: "uint256";
|
|
1339
|
+
readonly name: "lastUpdateTime";
|
|
1340
|
+
readonly type: "uint256";
|
|
1341
|
+
}, {
|
|
1342
|
+
readonly internalType: "uint256";
|
|
1343
|
+
readonly name: "rewardPerTokenStored";
|
|
1344
|
+
readonly type: "uint256";
|
|
1345
|
+
}, {
|
|
1346
|
+
readonly internalType: "address";
|
|
1347
|
+
readonly name: "distributor";
|
|
1348
|
+
readonly type: "address";
|
|
1349
|
+
}, {
|
|
1350
|
+
readonly internalType: "uint256";
|
|
1351
|
+
readonly name: "integral";
|
|
1352
|
+
readonly type: "uint256";
|
|
1353
|
+
}, {
|
|
1354
|
+
readonly internalType: "uint256";
|
|
1355
|
+
readonly name: "emissionCap";
|
|
1356
|
+
readonly type: "uint256";
|
|
1357
|
+
}, {
|
|
1358
|
+
readonly internalType: "uint256";
|
|
1359
|
+
readonly name: "distributed";
|
|
1360
|
+
readonly type: "uint256";
|
|
1361
|
+
}];
|
|
1362
|
+
readonly stateMutability: "view";
|
|
1363
|
+
readonly type: "function";
|
|
1364
|
+
}, {
|
|
1365
|
+
readonly inputs: readonly [];
|
|
1366
|
+
readonly name: "rewardPerTokenStored";
|
|
1367
|
+
readonly outputs: readonly [{
|
|
1368
|
+
readonly internalType: "uint256";
|
|
1369
|
+
readonly name: "";
|
|
1370
|
+
readonly type: "uint256";
|
|
1371
|
+
}];
|
|
1372
|
+
readonly stateMutability: "view";
|
|
1373
|
+
readonly type: "function";
|
|
1374
|
+
}, {
|
|
1375
|
+
readonly inputs: readonly [];
|
|
1376
|
+
readonly name: "rewardRate";
|
|
1377
|
+
readonly outputs: readonly [{
|
|
1378
|
+
readonly internalType: "uint256";
|
|
1379
|
+
readonly name: "";
|
|
1380
|
+
readonly type: "uint256";
|
|
1381
|
+
}];
|
|
1382
|
+
readonly stateMutability: "view";
|
|
1383
|
+
readonly type: "function";
|
|
1384
|
+
}, {
|
|
1385
|
+
readonly inputs: readonly [];
|
|
1386
|
+
readonly name: "rewardToken";
|
|
1387
|
+
readonly outputs: readonly [{
|
|
1388
|
+
readonly internalType: "contract IERC20";
|
|
1389
|
+
readonly name: "";
|
|
1390
|
+
readonly type: "address";
|
|
1391
|
+
}];
|
|
1392
|
+
readonly stateMutability: "view";
|
|
1393
|
+
readonly type: "function";
|
|
1394
|
+
}, {
|
|
1395
|
+
readonly inputs: readonly [{
|
|
1396
|
+
readonly internalType: "address";
|
|
1397
|
+
readonly name: "";
|
|
1398
|
+
readonly type: "address";
|
|
1399
|
+
}];
|
|
1400
|
+
readonly name: "rewardTokenDecimals";
|
|
1401
|
+
readonly outputs: readonly [{
|
|
1402
|
+
readonly internalType: "uint8";
|
|
1403
|
+
readonly name: "";
|
|
1404
|
+
readonly type: "uint8";
|
|
1405
|
+
}];
|
|
1406
|
+
readonly stateMutability: "view";
|
|
1407
|
+
readonly type: "function";
|
|
1408
|
+
}, {
|
|
1409
|
+
readonly inputs: readonly [{
|
|
1410
|
+
readonly internalType: "uint256";
|
|
1411
|
+
readonly name: "";
|
|
1412
|
+
readonly type: "uint256";
|
|
1413
|
+
}];
|
|
1414
|
+
readonly name: "rewardTokens";
|
|
1415
|
+
readonly outputs: readonly [{
|
|
1416
|
+
readonly internalType: "address";
|
|
1417
|
+
readonly name: "";
|
|
1418
|
+
readonly type: "address";
|
|
1419
|
+
}];
|
|
1420
|
+
readonly stateMutability: "view";
|
|
1421
|
+
readonly type: "function";
|
|
1422
|
+
}, {
|
|
1423
|
+
readonly inputs: readonly [{
|
|
1424
|
+
readonly internalType: "address";
|
|
1425
|
+
readonly name: "";
|
|
1426
|
+
readonly type: "address";
|
|
1427
|
+
}, {
|
|
1428
|
+
readonly internalType: "address";
|
|
1429
|
+
readonly name: "";
|
|
1430
|
+
readonly type: "address";
|
|
1431
|
+
}];
|
|
1432
|
+
readonly name: "rewards";
|
|
1433
|
+
readonly outputs: readonly [{
|
|
1434
|
+
readonly internalType: "uint256";
|
|
1435
|
+
readonly name: "";
|
|
1436
|
+
readonly type: "uint256";
|
|
1437
|
+
}];
|
|
1438
|
+
readonly stateMutability: "view";
|
|
1439
|
+
readonly type: "function";
|
|
1440
|
+
}, {
|
|
1441
|
+
readonly inputs: readonly [{
|
|
1442
|
+
readonly internalType: "bool";
|
|
1443
|
+
readonly name: "enabled";
|
|
1444
|
+
readonly type: "bool";
|
|
1445
|
+
}];
|
|
1446
|
+
readonly name: "setBoostAmplificationEnabled";
|
|
1447
|
+
readonly outputs: readonly [];
|
|
1448
|
+
readonly stateMutability: "nonpayable";
|
|
1449
|
+
readonly type: "function";
|
|
1450
|
+
}, {
|
|
1451
|
+
readonly inputs: readonly [{
|
|
1452
|
+
readonly internalType: "uint256";
|
|
1453
|
+
readonly name: "newCap";
|
|
1454
|
+
readonly type: "uint256";
|
|
1455
|
+
}];
|
|
1456
|
+
readonly name: "setDistributionCap";
|
|
1457
|
+
readonly outputs: readonly [];
|
|
1458
|
+
readonly stateMutability: "nonpayable";
|
|
1459
|
+
readonly type: "function";
|
|
1460
|
+
}, {
|
|
1461
|
+
readonly inputs: readonly [{
|
|
1462
|
+
readonly internalType: "address";
|
|
1463
|
+
readonly name: "distributor";
|
|
1464
|
+
readonly type: "address";
|
|
1465
|
+
}, {
|
|
1466
|
+
readonly internalType: "bool";
|
|
1467
|
+
readonly name: "isApproved";
|
|
1468
|
+
readonly type: "bool";
|
|
1469
|
+
}];
|
|
1470
|
+
readonly name: "setDistributorApproval";
|
|
1471
|
+
readonly outputs: readonly [];
|
|
1472
|
+
readonly stateMutability: "nonpayable";
|
|
1473
|
+
readonly type: "function";
|
|
1474
|
+
}, {
|
|
1475
|
+
readonly inputs: readonly [{
|
|
1476
|
+
readonly internalType: "bool";
|
|
1477
|
+
readonly name: "newPaused";
|
|
1478
|
+
readonly type: "bool";
|
|
1479
|
+
}];
|
|
1480
|
+
readonly name: "setEmergencyPaused";
|
|
1481
|
+
readonly outputs: readonly [];
|
|
1482
|
+
readonly stateMutability: "nonpayable";
|
|
1483
|
+
readonly type: "function";
|
|
1484
|
+
}, {
|
|
1485
|
+
readonly inputs: readonly [{
|
|
1486
|
+
readonly internalType: "uint256";
|
|
1487
|
+
readonly name: "weight";
|
|
1488
|
+
readonly type: "uint256";
|
|
1489
|
+
}];
|
|
1490
|
+
readonly name: "setInitialWeight";
|
|
1491
|
+
readonly outputs: readonly [];
|
|
1492
|
+
readonly stateMutability: "nonpayable";
|
|
1493
|
+
readonly type: "function";
|
|
1494
|
+
}, {
|
|
1495
|
+
readonly inputs: readonly [{
|
|
1496
|
+
readonly internalType: "uint256";
|
|
1497
|
+
readonly name: "emission";
|
|
1498
|
+
readonly type: "uint256";
|
|
1499
|
+
}];
|
|
1500
|
+
readonly name: "setMaxEmission";
|
|
1501
|
+
readonly outputs: readonly [];
|
|
1502
|
+
readonly stateMutability: "nonpayable";
|
|
1503
|
+
readonly type: "function";
|
|
1504
|
+
}, {
|
|
1505
|
+
readonly inputs: readonly [{
|
|
1506
|
+
readonly internalType: "uint256";
|
|
1507
|
+
readonly name: "newPeriodDuration";
|
|
1508
|
+
readonly type: "uint256";
|
|
1509
|
+
}];
|
|
1510
|
+
readonly name: "setPeriodDuration";
|
|
1511
|
+
readonly outputs: readonly [];
|
|
1512
|
+
readonly stateMutability: "nonpayable";
|
|
1513
|
+
readonly type: "function";
|
|
1514
|
+
}, {
|
|
1515
|
+
readonly inputs: readonly [{
|
|
1516
|
+
readonly internalType: "address";
|
|
1517
|
+
readonly name: "token";
|
|
1518
|
+
readonly type: "address";
|
|
1519
|
+
}, {
|
|
1520
|
+
readonly internalType: "uint256";
|
|
1521
|
+
readonly name: "ratio";
|
|
1522
|
+
readonly type: "uint256";
|
|
1523
|
+
}];
|
|
1524
|
+
readonly name: "setTokenBoostRatio";
|
|
1525
|
+
readonly outputs: readonly [];
|
|
1526
|
+
readonly stateMutability: "nonpayable";
|
|
1527
|
+
readonly type: "function";
|
|
1528
|
+
}, {
|
|
1529
|
+
readonly inputs: readonly [{
|
|
1530
|
+
readonly internalType: "address";
|
|
1531
|
+
readonly name: "token";
|
|
1532
|
+
readonly type: "address";
|
|
1533
|
+
}, {
|
|
1534
|
+
readonly internalType: "uint256";
|
|
1535
|
+
readonly name: "emissionCap";
|
|
1536
|
+
readonly type: "uint256";
|
|
1537
|
+
}];
|
|
1538
|
+
readonly name: "setTokenEmissionCap";
|
|
1539
|
+
readonly outputs: readonly [];
|
|
1540
|
+
readonly stateMutability: "nonpayable";
|
|
1541
|
+
readonly type: "function";
|
|
1542
|
+
}, {
|
|
1543
|
+
readonly inputs: readonly [{
|
|
1544
|
+
readonly internalType: "uint256";
|
|
1545
|
+
readonly name: "amount";
|
|
1546
|
+
readonly type: "uint256";
|
|
1547
|
+
}];
|
|
1548
|
+
readonly name: "stake";
|
|
1549
|
+
readonly outputs: readonly [];
|
|
1550
|
+
readonly stateMutability: "nonpayable";
|
|
1551
|
+
readonly type: "function";
|
|
1552
|
+
}, {
|
|
1553
|
+
readonly inputs: readonly [];
|
|
1554
|
+
readonly name: "stakingToken";
|
|
1555
|
+
readonly outputs: readonly [{
|
|
1556
|
+
readonly internalType: "contract IERC20";
|
|
1557
|
+
readonly name: "";
|
|
1558
|
+
readonly type: "address";
|
|
1559
|
+
}];
|
|
1560
|
+
readonly stateMutability: "view";
|
|
1561
|
+
readonly type: "function";
|
|
1562
|
+
}, {
|
|
1563
|
+
readonly inputs: readonly [{
|
|
1564
|
+
readonly internalType: "bytes4";
|
|
1565
|
+
readonly name: "interfaceId";
|
|
1566
|
+
readonly type: "bytes4";
|
|
1567
|
+
}];
|
|
1568
|
+
readonly name: "supportsInterface";
|
|
1569
|
+
readonly outputs: readonly [{
|
|
1570
|
+
readonly internalType: "bool";
|
|
1571
|
+
readonly name: "";
|
|
1572
|
+
readonly type: "bool";
|
|
1573
|
+
}];
|
|
1574
|
+
readonly stateMutability: "view";
|
|
1575
|
+
readonly type: "function";
|
|
1576
|
+
}, {
|
|
1577
|
+
readonly inputs: readonly [{
|
|
1578
|
+
readonly internalType: "address";
|
|
1579
|
+
readonly name: "token";
|
|
1580
|
+
readonly type: "address";
|
|
1581
|
+
}];
|
|
1582
|
+
readonly name: "syncRewardData";
|
|
1583
|
+
readonly outputs: readonly [];
|
|
1584
|
+
readonly stateMutability: "nonpayable";
|
|
1585
|
+
readonly type: "function";
|
|
1586
|
+
}, {
|
|
1587
|
+
readonly inputs: readonly [];
|
|
1588
|
+
readonly name: "syncRewardTokens";
|
|
1589
|
+
readonly outputs: readonly [];
|
|
1590
|
+
readonly stateMutability: "nonpayable";
|
|
1591
|
+
readonly type: "function";
|
|
1592
|
+
}, {
|
|
1593
|
+
readonly inputs: readonly [{
|
|
1594
|
+
readonly internalType: "address";
|
|
1595
|
+
readonly name: "";
|
|
1596
|
+
readonly type: "address";
|
|
1597
|
+
}];
|
|
1598
|
+
readonly name: "tokenBoostRatios";
|
|
1599
|
+
readonly outputs: readonly [{
|
|
1600
|
+
readonly internalType: "uint256";
|
|
1601
|
+
readonly name: "";
|
|
1602
|
+
readonly type: "uint256";
|
|
1603
|
+
}];
|
|
1604
|
+
readonly stateMutability: "view";
|
|
1605
|
+
readonly type: "function";
|
|
1606
|
+
}, {
|
|
1607
|
+
readonly inputs: readonly [];
|
|
1608
|
+
readonly name: "totalSupply";
|
|
1609
|
+
readonly outputs: readonly [{
|
|
1610
|
+
readonly internalType: "uint256";
|
|
1611
|
+
readonly name: "";
|
|
1612
|
+
readonly type: "uint256";
|
|
1613
|
+
}];
|
|
1614
|
+
readonly stateMutability: "view";
|
|
1615
|
+
readonly type: "function";
|
|
1616
|
+
}, {
|
|
1617
|
+
readonly inputs: readonly [];
|
|
1618
|
+
readonly name: "totalVotes";
|
|
1619
|
+
readonly outputs: readonly [{
|
|
1620
|
+
readonly internalType: "uint256";
|
|
1621
|
+
readonly name: "";
|
|
1622
|
+
readonly type: "uint256";
|
|
1623
|
+
}];
|
|
1624
|
+
readonly stateMutability: "view";
|
|
1625
|
+
readonly type: "function";
|
|
1626
|
+
}, {
|
|
1627
|
+
readonly inputs: readonly [];
|
|
1628
|
+
readonly name: "updatePeriod";
|
|
1629
|
+
readonly outputs: readonly [];
|
|
1630
|
+
readonly stateMutability: "nonpayable";
|
|
1631
|
+
readonly type: "function";
|
|
1632
|
+
}, {
|
|
1633
|
+
readonly inputs: readonly [];
|
|
1634
|
+
readonly name: "updateUserRewards";
|
|
1635
|
+
readonly outputs: readonly [];
|
|
1636
|
+
readonly stateMutability: "nonpayable";
|
|
1637
|
+
readonly type: "function";
|
|
1638
|
+
}, {
|
|
1639
|
+
readonly inputs: readonly [{
|
|
1640
|
+
readonly internalType: "address";
|
|
1641
|
+
readonly name: "";
|
|
1642
|
+
readonly type: "address";
|
|
1643
|
+
}];
|
|
1644
|
+
readonly name: "userCheckpointCounts";
|
|
1645
|
+
readonly outputs: readonly [{
|
|
1646
|
+
readonly internalType: "uint256";
|
|
1647
|
+
readonly name: "";
|
|
1648
|
+
readonly type: "uint256";
|
|
1649
|
+
}];
|
|
1650
|
+
readonly stateMutability: "view";
|
|
1651
|
+
readonly type: "function";
|
|
1652
|
+
}, {
|
|
1653
|
+
readonly inputs: readonly [{
|
|
1654
|
+
readonly internalType: "address";
|
|
1655
|
+
readonly name: "";
|
|
1656
|
+
readonly type: "address";
|
|
1657
|
+
}, {
|
|
1658
|
+
readonly internalType: "uint256";
|
|
1659
|
+
readonly name: "";
|
|
1660
|
+
readonly type: "uint256";
|
|
1661
|
+
}];
|
|
1662
|
+
readonly name: "userCheckpoints";
|
|
1663
|
+
readonly outputs: readonly [{
|
|
1664
|
+
readonly internalType: "uint256";
|
|
1665
|
+
readonly name: "timestamp";
|
|
1666
|
+
readonly type: "uint256";
|
|
1667
|
+
}, {
|
|
1668
|
+
readonly internalType: "uint256";
|
|
1669
|
+
readonly name: "balance";
|
|
1670
|
+
readonly type: "uint256";
|
|
1671
|
+
}, {
|
|
1672
|
+
readonly internalType: "uint256";
|
|
1673
|
+
readonly name: "workingBalance";
|
|
1674
|
+
readonly type: "uint256";
|
|
1675
|
+
}, {
|
|
1676
|
+
readonly internalType: "uint256";
|
|
1677
|
+
readonly name: "rewardPerToken";
|
|
1678
|
+
readonly type: "uint256";
|
|
1679
|
+
}, {
|
|
1680
|
+
readonly internalType: "uint256";
|
|
1681
|
+
readonly name: "slope";
|
|
1682
|
+
readonly type: "uint256";
|
|
1683
|
+
}, {
|
|
1684
|
+
readonly internalType: "uint256";
|
|
1685
|
+
readonly name: "bias";
|
|
1686
|
+
readonly type: "uint256";
|
|
1687
|
+
}];
|
|
1688
|
+
readonly stateMutability: "view";
|
|
1689
|
+
readonly type: "function";
|
|
1690
|
+
}, {
|
|
1691
|
+
readonly inputs: readonly [{
|
|
1692
|
+
readonly internalType: "address";
|
|
1693
|
+
readonly name: "";
|
|
1694
|
+
readonly type: "address";
|
|
1695
|
+
}, {
|
|
1696
|
+
readonly internalType: "address";
|
|
1697
|
+
readonly name: "";
|
|
1698
|
+
readonly type: "address";
|
|
1699
|
+
}];
|
|
1700
|
+
readonly name: "userClaimedRewards";
|
|
1701
|
+
readonly outputs: readonly [{
|
|
1702
|
+
readonly internalType: "uint256";
|
|
1703
|
+
readonly name: "";
|
|
1704
|
+
readonly type: "uint256";
|
|
1705
|
+
}];
|
|
1706
|
+
readonly stateMutability: "view";
|
|
1707
|
+
readonly type: "function";
|
|
1708
|
+
}, {
|
|
1709
|
+
readonly inputs: readonly [{
|
|
1710
|
+
readonly internalType: "address";
|
|
1711
|
+
readonly name: "";
|
|
1712
|
+
readonly type: "address";
|
|
1713
|
+
}, {
|
|
1714
|
+
readonly internalType: "address";
|
|
1715
|
+
readonly name: "";
|
|
1716
|
+
readonly type: "address";
|
|
1717
|
+
}];
|
|
1718
|
+
readonly name: "userRewardData";
|
|
1719
|
+
readonly outputs: readonly [{
|
|
1720
|
+
readonly internalType: "uint256";
|
|
1721
|
+
readonly name: "integral";
|
|
1722
|
+
readonly type: "uint256";
|
|
1723
|
+
}, {
|
|
1724
|
+
readonly internalType: "uint256";
|
|
1725
|
+
readonly name: "lastUpdate";
|
|
1726
|
+
readonly type: "uint256";
|
|
1727
|
+
}, {
|
|
1728
|
+
readonly internalType: "uint256";
|
|
1729
|
+
readonly name: "claimable";
|
|
1730
|
+
readonly type: "uint256";
|
|
1731
|
+
}];
|
|
1732
|
+
readonly stateMutability: "view";
|
|
1733
|
+
readonly type: "function";
|
|
1734
|
+
}, {
|
|
1735
|
+
readonly inputs: readonly [{
|
|
1736
|
+
readonly internalType: "address";
|
|
1737
|
+
readonly name: "";
|
|
1738
|
+
readonly type: "address";
|
|
1739
|
+
}, {
|
|
1740
|
+
readonly internalType: "address";
|
|
1741
|
+
readonly name: "";
|
|
1742
|
+
readonly type: "address";
|
|
1743
|
+
}];
|
|
1744
|
+
readonly name: "userRewardPerTokenPaid";
|
|
1745
|
+
readonly outputs: readonly [{
|
|
1746
|
+
readonly internalType: "uint256";
|
|
1747
|
+
readonly name: "";
|
|
1748
|
+
readonly type: "uint256";
|
|
1749
|
+
}];
|
|
1750
|
+
readonly stateMutability: "view";
|
|
1751
|
+
readonly type: "function";
|
|
1752
|
+
}, {
|
|
1753
|
+
readonly inputs: readonly [{
|
|
1754
|
+
readonly internalType: "address";
|
|
1755
|
+
readonly name: "";
|
|
1756
|
+
readonly type: "address";
|
|
1757
|
+
}];
|
|
1758
|
+
readonly name: "userVotes";
|
|
1759
|
+
readonly outputs: readonly [{
|
|
1760
|
+
readonly internalType: "uint256";
|
|
1761
|
+
readonly name: "direction";
|
|
1762
|
+
readonly type: "uint256";
|
|
1763
|
+
}, {
|
|
1764
|
+
readonly internalType: "uint256";
|
|
1765
|
+
readonly name: "weight";
|
|
1766
|
+
readonly type: "uint256";
|
|
1767
|
+
}, {
|
|
1768
|
+
readonly internalType: "uint256";
|
|
1769
|
+
readonly name: "timestamp";
|
|
1770
|
+
readonly type: "uint256";
|
|
1771
|
+
}];
|
|
1772
|
+
readonly stateMutability: "view";
|
|
1773
|
+
readonly type: "function";
|
|
1774
|
+
}, {
|
|
1775
|
+
readonly inputs: readonly [{
|
|
1776
|
+
readonly internalType: "uint256";
|
|
1777
|
+
readonly name: "direction";
|
|
1778
|
+
readonly type: "uint256";
|
|
1779
|
+
}];
|
|
1780
|
+
readonly name: "voteDirection";
|
|
1781
|
+
readonly outputs: readonly [];
|
|
1782
|
+
readonly stateMutability: "nonpayable";
|
|
1783
|
+
readonly type: "function";
|
|
1784
|
+
}, {
|
|
1785
|
+
readonly inputs: readonly [];
|
|
1786
|
+
readonly name: "weightPeriod";
|
|
1787
|
+
readonly outputs: readonly [{
|
|
1788
|
+
readonly internalType: "uint256";
|
|
1789
|
+
readonly name: "startTime";
|
|
1790
|
+
readonly type: "uint256";
|
|
1791
|
+
}, {
|
|
1792
|
+
readonly internalType: "uint256";
|
|
1793
|
+
readonly name: "endTime";
|
|
1794
|
+
readonly type: "uint256";
|
|
1795
|
+
}, {
|
|
1796
|
+
readonly internalType: "uint256";
|
|
1797
|
+
readonly name: "lastUpdateTime";
|
|
1798
|
+
readonly type: "uint256";
|
|
1799
|
+
}, {
|
|
1800
|
+
readonly internalType: "uint256";
|
|
1801
|
+
readonly name: "value";
|
|
1802
|
+
readonly type: "uint256";
|
|
1803
|
+
}, {
|
|
1804
|
+
readonly internalType: "uint256";
|
|
1805
|
+
readonly name: "weightedSum";
|
|
1806
|
+
readonly type: "uint256";
|
|
1807
|
+
}, {
|
|
1808
|
+
readonly internalType: "uint256";
|
|
1809
|
+
readonly name: "totalDuration";
|
|
1810
|
+
readonly type: "uint256";
|
|
1811
|
+
}, {
|
|
1812
|
+
readonly internalType: "uint256";
|
|
1813
|
+
readonly name: "weight";
|
|
1814
|
+
readonly type: "uint256";
|
|
1815
|
+
}];
|
|
1816
|
+
readonly stateMutability: "view";
|
|
1817
|
+
readonly type: "function";
|
|
1818
|
+
}, {
|
|
1819
|
+
readonly inputs: readonly [{
|
|
1820
|
+
readonly internalType: "uint256";
|
|
1821
|
+
readonly name: "amount";
|
|
1822
|
+
readonly type: "uint256";
|
|
1823
|
+
}];
|
|
1824
|
+
readonly name: "withdraw";
|
|
1825
|
+
readonly outputs: readonly [];
|
|
1826
|
+
readonly stateMutability: "nonpayable";
|
|
1827
|
+
readonly type: "function";
|
|
1828
|
+
}, {
|
|
1829
|
+
readonly inputs: readonly [{
|
|
1830
|
+
readonly internalType: "address";
|
|
1831
|
+
readonly name: "";
|
|
1832
|
+
readonly type: "address";
|
|
1833
|
+
}];
|
|
1834
|
+
readonly name: "workingBalances";
|
|
1835
|
+
readonly outputs: readonly [{
|
|
1836
|
+
readonly internalType: "uint256";
|
|
1837
|
+
readonly name: "";
|
|
1838
|
+
readonly type: "uint256";
|
|
1839
|
+
}];
|
|
1840
|
+
readonly stateMutability: "view";
|
|
1841
|
+
readonly type: "function";
|
|
1842
|
+
}, {
|
|
1843
|
+
readonly inputs: readonly [];
|
|
1844
|
+
readonly name: "workingSupply";
|
|
1845
|
+
readonly outputs: readonly [{
|
|
1846
|
+
readonly internalType: "uint256";
|
|
1847
|
+
readonly name: "";
|
|
1848
|
+
readonly type: "uint256";
|
|
1849
|
+
}];
|
|
1850
|
+
readonly stateMutability: "view";
|
|
1851
|
+
readonly type: "function";
|
|
1852
|
+
}];
|
|
1853
|
+
static createInterface(): RAACGaugeInterface;
|
|
1854
|
+
static connect(address: string, runner?: ContractRunner | null): RAACGauge;
|
|
1855
|
+
}
|
|
1856
|
+
export {};
|