@raac/rpc 1.1.0-beta.73 → 1.1.0-beta.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +2 -29
- package/dist/artifacts/core/collectors/RAACTokenCollector.sol/RAACTokenCollector.json +2 -29
- package/dist/artifacts/core/collectors/RWAIndexTokenCollector.sol/RWAIndexTokenCollector.json +2 -29
- package/dist/artifacts/core/collectors/Treasury.sol/Treasury.json +2 -29
- package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +2 -2
- package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +2 -2
- package/dist/artifacts/core/oracles/RAACHousePriceOracle.sol/RAACHousePriceOracle.json +2 -2
- package/dist/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json +2 -2
- package/dist/artifacts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json +2 -29
- package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +2 -2
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +80 -51
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +55 -34
- package/dist/artifacts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.json +2 -2
- package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +2 -2
- package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +2 -29
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +2 -29
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +2 -2
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +2 -47
- package/dist/artifacts/core/tokens/RWAIndexToken.sol/RWAIndexToken.json +2 -2
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +2 -29
- package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +2 -29
- package/dist/artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json +2 -2
- package/dist/artifacts/core/vaults/RWAVault.sol/RWAVault.json +2 -2
- package/dist/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +2 -2
- package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +2 -2
- package/dist/artifacts/zeno/Auction.sol/Auction.json +2 -29
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +2 -2
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +2 -29
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +2 -2
- package/dist/pools/lendingPool/getLendingPoolInfo.js +3 -0
- package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC1967.d.ts +65 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/{contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts → @openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.d.ts} +23 -16
- package/dist/types/typechain-types/@openzeppelin/contracts/{utils/math/Math.d.ts → proxy/ERC1967/ERC1967Utils.d.ts} +4 -4
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/ERC1967/index.d.ts +2 -0
- package/dist/types/typechain-types/{contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle.d.ts → @openzeppelin/contracts/proxy/Proxy.d.ts} +6 -11
- package/dist/types/typechain-types/{contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle.d.ts → @openzeppelin/contracts/proxy/beacon/IBeacon.d.ts} +9 -9
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/beacon/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/index.d.ts +7 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.d.ts +74 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.d.ts +80 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.d.ts +51 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.d.ts +24 -2
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +31 -18
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +8 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +8 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +8 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +16 -4
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +43 -4
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +1 -15
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +1 -15
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +38 -2
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +5 -15
- package/dist/types/typechain-types/contracts/{mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts → libraries/pools/LendingPoolFeeLibrary.d.ts} +6 -11
- package/dist/types/typechain-types/contracts/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +1 -15
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +1 -15
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation.d.ts +2 -2
- 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/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1967__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy__factory.d.ts +71 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils__factory.d.ts +50 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/Proxy__factory.d.ts +10 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/IBeacon__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.d.ts +115 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy__factory.d.ts +56 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.d.ts +102 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/index.d.ts +2 -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 -13
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +9 -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 +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +0 -20
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +1 -25
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle__factory.d.ts +38 -4
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +9 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +34 -38
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +9 -29
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +9 -21
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +19 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +32 -20
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +45 -27
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +1 -1
- 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 +1 -21
- 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 +1 -35
- package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterV2__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +4 -14
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +38 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +10 -14
- package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/pools/LendingPoolFeeLibrary__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +1 -25
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +5 -15
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +1 -15
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +1 -21
- 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 +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +7 -3
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +1 -21
- package/dist/types/typechain-types/index.d.ts +22 -2
- package/package.json +1 -1
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2.d.ts +0 -35
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface.d.ts +0 -156
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC4626.d.ts +0 -318
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC4626.d.ts +0 -318
- package/dist/types/typechain-types/contracts/core/governance/boost/BoostController.d.ts +0 -573
- package/dist/types/typechain-types/contracts/core/governance/boost/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.d.ts +0 -263
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts +0 -29
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +0 -283
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.d.ts +0 -203
- package/dist/types/typechain-types/contracts/core/tokens/IndexToken.d.ts +0 -340
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts +0 -174
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.d.ts +0 -188
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter.d.ts +0 -218
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle.d.ts +0 -47
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/interfaces/IHousePrices.d.ts +0 -29
- package/dist/types/typechain-types/contracts/interfaces/IPoolManager.d.ts +0 -37
- package/dist/types/typechain-types/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +0 -164
- package/dist/types/typechain-types/contracts/interfaces/IveRAACDistributor.d.ts +0 -59
- package/dist/types/typechain-types/contracts/interfaces/core/governance/IBoostController.d.ts +0 -269
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGauge.d.ts +0 -235
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +0 -57
- package/dist/types/typechain-types/contracts/libraries/governance/Checkpoints.d.ts +0 -55
- package/dist/types/typechain-types/contracts/libraries/governance/RAACVoting.d.ts +0 -45
- package/dist/types/typechain-types/contracts/libraries/governance/VotingPowerLib.d.ts +0 -66
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +0 -845
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts +0 -33
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockVeToken.d.ts +0 -510
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +0 -83
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/RAACVotingMock.d.ts +0 -41
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +0 -281
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +0 -100
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2__factory.d.ts +0 -33
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface__factory.d.ts +0 -171
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4626__factory.d.ts +0 -472
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC4626__factory.d.ts +0 -632
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +0 -26
- package/dist/types/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +0 -716
- package/dist/types/typechain-types/factories/contracts/core/governance/boost/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter__factory.d.ts +0 -407
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts +0 -21
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +0 -390
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry__factory.d.ts +0 -276
- package/dist/types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +0 -602
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts +0 -285
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +0 -307
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts +0 -21
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle__factory.d.ts +0 -25
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter__factory.d.ts +0 -350
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/interfaces/IHousePrices__factory.d.ts +0 -21
- package/dist/types/typechain-types/factories/contracts/interfaces/IPoolManager__factory.d.ts +0 -43
- package/dist/types/typechain-types/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +0 -189
- package/dist/types/typechain-types/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +0 -75
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +0 -295
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +0 -307
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +0 -53
- package/dist/types/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +0 -68
- package/dist/types/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +0 -92
- package/dist/types/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +0 -74
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +0 -1194
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts +0 -42
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +0 -714
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +0 -124
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +0 -70
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +0 -341
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +0 -17
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +0 -113
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
|
@@ -1,573 +0,0 @@
|
|
|
1
|
-
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
|
-
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../../common";
|
|
3
|
-
export interface BoostControllerInterface extends Interface {
|
|
4
|
-
getFunction(nameOrSignature: "DEFAULT_ADMIN_ROLE" | "EMERGENCY_ADMIN" | "MANAGER_ROLE" | "MAX_BOOST" | "MAX_DELEGATION_DURATION" | "MIN_BOOST" | "MIN_DELEGATION_DURATION" | "calculateBoost" | "delegateBoost" | "getBoostMultiplier" | "getPoolBoost" | "getRoleAdmin" | "getUserBoost" | "getWorkingBalance" | "grantRole" | "hasRole" | "modifySupportedPool" | "paused" | "removeBoostDelegation" | "renounceRole" | "revokeRole" | "setBoostParameters" | "setEmergencyShutdown" | "supportedPools" | "supportsInterface" | "updateUserBoost" | "veToken"): FunctionFragment;
|
|
5
|
-
getEvent(nameOrSignatureOrTopic: "BoostDelegated" | "BoostParametersUpdated" | "BoostUpdated" | "DelegationRemoved" | "EmergencyShutdown" | "Paused" | "PoolAdded" | "PoolBoostUpdated" | "PoolRemoved" | "RoleAdminChanged" | "RoleGranted" | "RoleRevoked" | "Unpaused"): EventFragment;
|
|
6
|
-
encodeFunctionData(functionFragment: "DEFAULT_ADMIN_ROLE", values?: undefined): string;
|
|
7
|
-
encodeFunctionData(functionFragment: "EMERGENCY_ADMIN", values?: undefined): string;
|
|
8
|
-
encodeFunctionData(functionFragment: "MANAGER_ROLE", values?: undefined): string;
|
|
9
|
-
encodeFunctionData(functionFragment: "MAX_BOOST", values?: undefined): string;
|
|
10
|
-
encodeFunctionData(functionFragment: "MAX_DELEGATION_DURATION", values?: undefined): string;
|
|
11
|
-
encodeFunctionData(functionFragment: "MIN_BOOST", values?: undefined): string;
|
|
12
|
-
encodeFunctionData(functionFragment: "MIN_DELEGATION_DURATION", values?: undefined): string;
|
|
13
|
-
encodeFunctionData(functionFragment: "calculateBoost", values: [AddressLike, AddressLike, BigNumberish]): string;
|
|
14
|
-
encodeFunctionData(functionFragment: "delegateBoost", values: [AddressLike, BigNumberish, BigNumberish]): string;
|
|
15
|
-
encodeFunctionData(functionFragment: "getBoostMultiplier", values: [AddressLike, AddressLike]): string;
|
|
16
|
-
encodeFunctionData(functionFragment: "getPoolBoost", values: [AddressLike]): string;
|
|
17
|
-
encodeFunctionData(functionFragment: "getRoleAdmin", values: [BytesLike]): string;
|
|
18
|
-
encodeFunctionData(functionFragment: "getUserBoost", values: [AddressLike, AddressLike]): string;
|
|
19
|
-
encodeFunctionData(functionFragment: "getWorkingBalance", values: [AddressLike, AddressLike]): string;
|
|
20
|
-
encodeFunctionData(functionFragment: "grantRole", values: [BytesLike, AddressLike]): string;
|
|
21
|
-
encodeFunctionData(functionFragment: "hasRole", values: [BytesLike, AddressLike]): string;
|
|
22
|
-
encodeFunctionData(functionFragment: "modifySupportedPool", values: [AddressLike, boolean]): string;
|
|
23
|
-
encodeFunctionData(functionFragment: "paused", values?: undefined): string;
|
|
24
|
-
encodeFunctionData(functionFragment: "removeBoostDelegation", values: [AddressLike]): string;
|
|
25
|
-
encodeFunctionData(functionFragment: "renounceRole", values: [BytesLike, AddressLike]): string;
|
|
26
|
-
encodeFunctionData(functionFragment: "revokeRole", values: [BytesLike, AddressLike]): string;
|
|
27
|
-
encodeFunctionData(functionFragment: "setBoostParameters", values: [BigNumberish, BigNumberish, BigNumberish]): string;
|
|
28
|
-
encodeFunctionData(functionFragment: "setEmergencyShutdown", values: [boolean]): string;
|
|
29
|
-
encodeFunctionData(functionFragment: "supportedPools", values: [AddressLike]): string;
|
|
30
|
-
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
|
|
31
|
-
encodeFunctionData(functionFragment: "updateUserBoost", values: [AddressLike, AddressLike]): string;
|
|
32
|
-
encodeFunctionData(functionFragment: "veToken", values?: undefined): string;
|
|
33
|
-
decodeFunctionResult(functionFragment: "DEFAULT_ADMIN_ROLE", data: BytesLike): Result;
|
|
34
|
-
decodeFunctionResult(functionFragment: "EMERGENCY_ADMIN", data: BytesLike): Result;
|
|
35
|
-
decodeFunctionResult(functionFragment: "MANAGER_ROLE", data: BytesLike): Result;
|
|
36
|
-
decodeFunctionResult(functionFragment: "MAX_BOOST", data: BytesLike): Result;
|
|
37
|
-
decodeFunctionResult(functionFragment: "MAX_DELEGATION_DURATION", data: BytesLike): Result;
|
|
38
|
-
decodeFunctionResult(functionFragment: "MIN_BOOST", data: BytesLike): Result;
|
|
39
|
-
decodeFunctionResult(functionFragment: "MIN_DELEGATION_DURATION", data: BytesLike): Result;
|
|
40
|
-
decodeFunctionResult(functionFragment: "calculateBoost", data: BytesLike): Result;
|
|
41
|
-
decodeFunctionResult(functionFragment: "delegateBoost", data: BytesLike): Result;
|
|
42
|
-
decodeFunctionResult(functionFragment: "getBoostMultiplier", data: BytesLike): Result;
|
|
43
|
-
decodeFunctionResult(functionFragment: "getPoolBoost", data: BytesLike): Result;
|
|
44
|
-
decodeFunctionResult(functionFragment: "getRoleAdmin", data: BytesLike): Result;
|
|
45
|
-
decodeFunctionResult(functionFragment: "getUserBoost", data: BytesLike): Result;
|
|
46
|
-
decodeFunctionResult(functionFragment: "getWorkingBalance", data: BytesLike): Result;
|
|
47
|
-
decodeFunctionResult(functionFragment: "grantRole", data: BytesLike): Result;
|
|
48
|
-
decodeFunctionResult(functionFragment: "hasRole", data: BytesLike): Result;
|
|
49
|
-
decodeFunctionResult(functionFragment: "modifySupportedPool", data: BytesLike): Result;
|
|
50
|
-
decodeFunctionResult(functionFragment: "paused", data: BytesLike): Result;
|
|
51
|
-
decodeFunctionResult(functionFragment: "removeBoostDelegation", data: BytesLike): Result;
|
|
52
|
-
decodeFunctionResult(functionFragment: "renounceRole", data: BytesLike): Result;
|
|
53
|
-
decodeFunctionResult(functionFragment: "revokeRole", data: BytesLike): Result;
|
|
54
|
-
decodeFunctionResult(functionFragment: "setBoostParameters", data: BytesLike): Result;
|
|
55
|
-
decodeFunctionResult(functionFragment: "setEmergencyShutdown", data: BytesLike): Result;
|
|
56
|
-
decodeFunctionResult(functionFragment: "supportedPools", data: BytesLike): Result;
|
|
57
|
-
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
|
|
58
|
-
decodeFunctionResult(functionFragment: "updateUserBoost", data: BytesLike): Result;
|
|
59
|
-
decodeFunctionResult(functionFragment: "veToken", data: BytesLike): Result;
|
|
60
|
-
}
|
|
61
|
-
export declare namespace BoostDelegatedEvent {
|
|
62
|
-
type InputTuple = [
|
|
63
|
-
from: AddressLike,
|
|
64
|
-
to: AddressLike,
|
|
65
|
-
amount: BigNumberish,
|
|
66
|
-
duration: BigNumberish
|
|
67
|
-
];
|
|
68
|
-
type OutputTuple = [
|
|
69
|
-
from: string,
|
|
70
|
-
to: string,
|
|
71
|
-
amount: bigint,
|
|
72
|
-
duration: bigint
|
|
73
|
-
];
|
|
74
|
-
interface OutputObject {
|
|
75
|
-
from: string;
|
|
76
|
-
to: string;
|
|
77
|
-
amount: bigint;
|
|
78
|
-
duration: bigint;
|
|
79
|
-
}
|
|
80
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
81
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
82
|
-
type Log = TypedEventLog<Event>;
|
|
83
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
84
|
-
}
|
|
85
|
-
export declare namespace BoostParametersUpdatedEvent {
|
|
86
|
-
type InputTuple = [
|
|
87
|
-
maxBoost: BigNumberish,
|
|
88
|
-
minBoost: BigNumberish,
|
|
89
|
-
boostWindow: BigNumberish
|
|
90
|
-
];
|
|
91
|
-
type OutputTuple = [
|
|
92
|
-
maxBoost: bigint,
|
|
93
|
-
minBoost: bigint,
|
|
94
|
-
boostWindow: bigint
|
|
95
|
-
];
|
|
96
|
-
interface OutputObject {
|
|
97
|
-
maxBoost: bigint;
|
|
98
|
-
minBoost: bigint;
|
|
99
|
-
boostWindow: bigint;
|
|
100
|
-
}
|
|
101
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
102
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
103
|
-
type Log = TypedEventLog<Event>;
|
|
104
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
105
|
-
}
|
|
106
|
-
export declare namespace BoostUpdatedEvent {
|
|
107
|
-
type InputTuple = [
|
|
108
|
-
user: AddressLike,
|
|
109
|
-
pool: AddressLike,
|
|
110
|
-
newBoost: BigNumberish
|
|
111
|
-
];
|
|
112
|
-
type OutputTuple = [user: string, pool: string, newBoost: bigint];
|
|
113
|
-
interface OutputObject {
|
|
114
|
-
user: string;
|
|
115
|
-
pool: string;
|
|
116
|
-
newBoost: bigint;
|
|
117
|
-
}
|
|
118
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
119
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
120
|
-
type Log = TypedEventLog<Event>;
|
|
121
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
122
|
-
}
|
|
123
|
-
export declare namespace DelegationRemovedEvent {
|
|
124
|
-
type InputTuple = [
|
|
125
|
-
from: AddressLike,
|
|
126
|
-
to: AddressLike,
|
|
127
|
-
amount: BigNumberish
|
|
128
|
-
];
|
|
129
|
-
type OutputTuple = [from: string, to: string, amount: bigint];
|
|
130
|
-
interface OutputObject {
|
|
131
|
-
from: string;
|
|
132
|
-
to: string;
|
|
133
|
-
amount: bigint;
|
|
134
|
-
}
|
|
135
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
136
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
137
|
-
type Log = TypedEventLog<Event>;
|
|
138
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
139
|
-
}
|
|
140
|
-
export declare namespace EmergencyShutdownEvent {
|
|
141
|
-
type InputTuple = [caller: AddressLike, paused: boolean];
|
|
142
|
-
type OutputTuple = [caller: string, paused: boolean];
|
|
143
|
-
interface OutputObject {
|
|
144
|
-
caller: string;
|
|
145
|
-
paused: boolean;
|
|
146
|
-
}
|
|
147
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
148
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
149
|
-
type Log = TypedEventLog<Event>;
|
|
150
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
151
|
-
}
|
|
152
|
-
export declare namespace PausedEvent {
|
|
153
|
-
type InputTuple = [account: AddressLike];
|
|
154
|
-
type OutputTuple = [account: string];
|
|
155
|
-
interface OutputObject {
|
|
156
|
-
account: string;
|
|
157
|
-
}
|
|
158
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
159
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
160
|
-
type Log = TypedEventLog<Event>;
|
|
161
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
162
|
-
}
|
|
163
|
-
export declare namespace PoolAddedEvent {
|
|
164
|
-
type InputTuple = [pool: AddressLike];
|
|
165
|
-
type OutputTuple = [pool: string];
|
|
166
|
-
interface OutputObject {
|
|
167
|
-
pool: string;
|
|
168
|
-
}
|
|
169
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
170
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
171
|
-
type Log = TypedEventLog<Event>;
|
|
172
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
173
|
-
}
|
|
174
|
-
export declare namespace PoolBoostUpdatedEvent {
|
|
175
|
-
type InputTuple = [
|
|
176
|
-
pool: AddressLike,
|
|
177
|
-
totalBoost: BigNumberish,
|
|
178
|
-
workingSupply: BigNumberish
|
|
179
|
-
];
|
|
180
|
-
type OutputTuple = [
|
|
181
|
-
pool: string,
|
|
182
|
-
totalBoost: bigint,
|
|
183
|
-
workingSupply: bigint
|
|
184
|
-
];
|
|
185
|
-
interface OutputObject {
|
|
186
|
-
pool: string;
|
|
187
|
-
totalBoost: bigint;
|
|
188
|
-
workingSupply: bigint;
|
|
189
|
-
}
|
|
190
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
191
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
192
|
-
type Log = TypedEventLog<Event>;
|
|
193
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
194
|
-
}
|
|
195
|
-
export declare namespace PoolRemovedEvent {
|
|
196
|
-
type InputTuple = [pool: AddressLike];
|
|
197
|
-
type OutputTuple = [pool: string];
|
|
198
|
-
interface OutputObject {
|
|
199
|
-
pool: string;
|
|
200
|
-
}
|
|
201
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
202
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
203
|
-
type Log = TypedEventLog<Event>;
|
|
204
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
205
|
-
}
|
|
206
|
-
export declare namespace RoleAdminChangedEvent {
|
|
207
|
-
type InputTuple = [
|
|
208
|
-
role: BytesLike,
|
|
209
|
-
previousAdminRole: BytesLike,
|
|
210
|
-
newAdminRole: BytesLike
|
|
211
|
-
];
|
|
212
|
-
type OutputTuple = [
|
|
213
|
-
role: string,
|
|
214
|
-
previousAdminRole: string,
|
|
215
|
-
newAdminRole: string
|
|
216
|
-
];
|
|
217
|
-
interface OutputObject {
|
|
218
|
-
role: string;
|
|
219
|
-
previousAdminRole: string;
|
|
220
|
-
newAdminRole: string;
|
|
221
|
-
}
|
|
222
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
223
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
224
|
-
type Log = TypedEventLog<Event>;
|
|
225
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
226
|
-
}
|
|
227
|
-
export declare namespace RoleGrantedEvent {
|
|
228
|
-
type InputTuple = [
|
|
229
|
-
role: BytesLike,
|
|
230
|
-
account: AddressLike,
|
|
231
|
-
sender: AddressLike
|
|
232
|
-
];
|
|
233
|
-
type OutputTuple = [role: string, account: string, sender: string];
|
|
234
|
-
interface OutputObject {
|
|
235
|
-
role: string;
|
|
236
|
-
account: string;
|
|
237
|
-
sender: string;
|
|
238
|
-
}
|
|
239
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
240
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
241
|
-
type Log = TypedEventLog<Event>;
|
|
242
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
243
|
-
}
|
|
244
|
-
export declare namespace RoleRevokedEvent {
|
|
245
|
-
type InputTuple = [
|
|
246
|
-
role: BytesLike,
|
|
247
|
-
account: AddressLike,
|
|
248
|
-
sender: AddressLike
|
|
249
|
-
];
|
|
250
|
-
type OutputTuple = [role: string, account: string, sender: string];
|
|
251
|
-
interface OutputObject {
|
|
252
|
-
role: string;
|
|
253
|
-
account: string;
|
|
254
|
-
sender: string;
|
|
255
|
-
}
|
|
256
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
257
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
258
|
-
type Log = TypedEventLog<Event>;
|
|
259
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
260
|
-
}
|
|
261
|
-
export declare namespace UnpausedEvent {
|
|
262
|
-
type InputTuple = [account: AddressLike];
|
|
263
|
-
type OutputTuple = [account: string];
|
|
264
|
-
interface OutputObject {
|
|
265
|
-
account: string;
|
|
266
|
-
}
|
|
267
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
268
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
269
|
-
type Log = TypedEventLog<Event>;
|
|
270
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
271
|
-
}
|
|
272
|
-
export interface BoostController extends BaseContract {
|
|
273
|
-
connect(runner?: ContractRunner | null): BoostController;
|
|
274
|
-
waitForDeployment(): Promise<this>;
|
|
275
|
-
interface: BoostControllerInterface;
|
|
276
|
-
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
277
|
-
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
278
|
-
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
279
|
-
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
280
|
-
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
281
|
-
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
282
|
-
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
283
|
-
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
284
|
-
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
285
|
-
DEFAULT_ADMIN_ROLE: TypedContractMethod<[], [string], "view">;
|
|
286
|
-
EMERGENCY_ADMIN: TypedContractMethod<[], [string], "view">;
|
|
287
|
-
MANAGER_ROLE: TypedContractMethod<[], [string], "view">;
|
|
288
|
-
MAX_BOOST: TypedContractMethod<[], [bigint], "view">;
|
|
289
|
-
MAX_DELEGATION_DURATION: TypedContractMethod<[], [bigint], "view">;
|
|
290
|
-
MIN_BOOST: TypedContractMethod<[], [bigint], "view">;
|
|
291
|
-
MIN_DELEGATION_DURATION: TypedContractMethod<[], [bigint], "view">;
|
|
292
|
-
calculateBoost: TypedContractMethod<[
|
|
293
|
-
user: AddressLike,
|
|
294
|
-
pool: AddressLike,
|
|
295
|
-
amount: BigNumberish
|
|
296
|
-
], [
|
|
297
|
-
[bigint, bigint] & {
|
|
298
|
-
boostBasisPoints: bigint;
|
|
299
|
-
boostedAmount: bigint;
|
|
300
|
-
}
|
|
301
|
-
], "view">;
|
|
302
|
-
delegateBoost: TypedContractMethod<[
|
|
303
|
-
to: AddressLike,
|
|
304
|
-
amount: BigNumberish,
|
|
305
|
-
duration: BigNumberish
|
|
306
|
-
], [
|
|
307
|
-
void
|
|
308
|
-
], "nonpayable">;
|
|
309
|
-
getBoostMultiplier: TypedContractMethod<[
|
|
310
|
-
user: AddressLike,
|
|
311
|
-
pool: AddressLike
|
|
312
|
-
], [
|
|
313
|
-
bigint
|
|
314
|
-
], "view">;
|
|
315
|
-
getPoolBoost: TypedContractMethod<[
|
|
316
|
-
pool: AddressLike
|
|
317
|
-
], [
|
|
318
|
-
[
|
|
319
|
-
bigint,
|
|
320
|
-
bigint,
|
|
321
|
-
bigint,
|
|
322
|
-
bigint
|
|
323
|
-
] & {
|
|
324
|
-
totalBoost: bigint;
|
|
325
|
-
workingSupply: bigint;
|
|
326
|
-
baseSupply: bigint;
|
|
327
|
-
lastUpdateTime: bigint;
|
|
328
|
-
}
|
|
329
|
-
], "view">;
|
|
330
|
-
getRoleAdmin: TypedContractMethod<[role: BytesLike], [string], "view">;
|
|
331
|
-
getUserBoost: TypedContractMethod<[
|
|
332
|
-
user: AddressLike,
|
|
333
|
-
pool: AddressLike
|
|
334
|
-
], [
|
|
335
|
-
[
|
|
336
|
-
bigint,
|
|
337
|
-
bigint,
|
|
338
|
-
string,
|
|
339
|
-
bigint
|
|
340
|
-
] & {
|
|
341
|
-
amount: bigint;
|
|
342
|
-
expiry: bigint;
|
|
343
|
-
delegatedTo: string;
|
|
344
|
-
lastUpdateTime: bigint;
|
|
345
|
-
}
|
|
346
|
-
], "view">;
|
|
347
|
-
getWorkingBalance: TypedContractMethod<[
|
|
348
|
-
user: AddressLike,
|
|
349
|
-
pool: AddressLike
|
|
350
|
-
], [
|
|
351
|
-
bigint
|
|
352
|
-
], "view">;
|
|
353
|
-
grantRole: TypedContractMethod<[
|
|
354
|
-
role: BytesLike,
|
|
355
|
-
account: AddressLike
|
|
356
|
-
], [
|
|
357
|
-
void
|
|
358
|
-
], "nonpayable">;
|
|
359
|
-
hasRole: TypedContractMethod<[
|
|
360
|
-
role: BytesLike,
|
|
361
|
-
account: AddressLike
|
|
362
|
-
], [
|
|
363
|
-
boolean
|
|
364
|
-
], "view">;
|
|
365
|
-
modifySupportedPool: TypedContractMethod<[
|
|
366
|
-
pool: AddressLike,
|
|
367
|
-
isSupported: boolean
|
|
368
|
-
], [
|
|
369
|
-
void
|
|
370
|
-
], "nonpayable">;
|
|
371
|
-
paused: TypedContractMethod<[], [boolean], "view">;
|
|
372
|
-
removeBoostDelegation: TypedContractMethod<[
|
|
373
|
-
from: AddressLike
|
|
374
|
-
], [
|
|
375
|
-
void
|
|
376
|
-
], "nonpayable">;
|
|
377
|
-
renounceRole: TypedContractMethod<[
|
|
378
|
-
role: BytesLike,
|
|
379
|
-
callerConfirmation: AddressLike
|
|
380
|
-
], [
|
|
381
|
-
void
|
|
382
|
-
], "nonpayable">;
|
|
383
|
-
revokeRole: TypedContractMethod<[
|
|
384
|
-
role: BytesLike,
|
|
385
|
-
account: AddressLike
|
|
386
|
-
], [
|
|
387
|
-
void
|
|
388
|
-
], "nonpayable">;
|
|
389
|
-
setBoostParameters: TypedContractMethod<[
|
|
390
|
-
maxBoost: BigNumberish,
|
|
391
|
-
minBoost: BigNumberish,
|
|
392
|
-
boostWindow: BigNumberish
|
|
393
|
-
], [
|
|
394
|
-
void
|
|
395
|
-
], "nonpayable">;
|
|
396
|
-
setEmergencyShutdown: TypedContractMethod<[
|
|
397
|
-
paused: boolean
|
|
398
|
-
], [
|
|
399
|
-
void
|
|
400
|
-
], "nonpayable">;
|
|
401
|
-
supportedPools: TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
402
|
-
supportsInterface: TypedContractMethod<[
|
|
403
|
-
interfaceId: BytesLike
|
|
404
|
-
], [
|
|
405
|
-
boolean
|
|
406
|
-
], "view">;
|
|
407
|
-
updateUserBoost: TypedContractMethod<[
|
|
408
|
-
user: AddressLike,
|
|
409
|
-
pool: AddressLike
|
|
410
|
-
], [
|
|
411
|
-
void
|
|
412
|
-
], "nonpayable">;
|
|
413
|
-
veToken: TypedContractMethod<[], [string], "view">;
|
|
414
|
-
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
415
|
-
getFunction(nameOrSignature: "DEFAULT_ADMIN_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
416
|
-
getFunction(nameOrSignature: "EMERGENCY_ADMIN"): TypedContractMethod<[], [string], "view">;
|
|
417
|
-
getFunction(nameOrSignature: "MANAGER_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
418
|
-
getFunction(nameOrSignature: "MAX_BOOST"): TypedContractMethod<[], [bigint], "view">;
|
|
419
|
-
getFunction(nameOrSignature: "MAX_DELEGATION_DURATION"): TypedContractMethod<[], [bigint], "view">;
|
|
420
|
-
getFunction(nameOrSignature: "MIN_BOOST"): TypedContractMethod<[], [bigint], "view">;
|
|
421
|
-
getFunction(nameOrSignature: "MIN_DELEGATION_DURATION"): TypedContractMethod<[], [bigint], "view">;
|
|
422
|
-
getFunction(nameOrSignature: "calculateBoost"): TypedContractMethod<[
|
|
423
|
-
user: AddressLike,
|
|
424
|
-
pool: AddressLike,
|
|
425
|
-
amount: BigNumberish
|
|
426
|
-
], [
|
|
427
|
-
[bigint, bigint] & {
|
|
428
|
-
boostBasisPoints: bigint;
|
|
429
|
-
boostedAmount: bigint;
|
|
430
|
-
}
|
|
431
|
-
], "view">;
|
|
432
|
-
getFunction(nameOrSignature: "delegateBoost"): TypedContractMethod<[
|
|
433
|
-
to: AddressLike,
|
|
434
|
-
amount: BigNumberish,
|
|
435
|
-
duration: BigNumberish
|
|
436
|
-
], [
|
|
437
|
-
void
|
|
438
|
-
], "nonpayable">;
|
|
439
|
-
getFunction(nameOrSignature: "getBoostMultiplier"): TypedContractMethod<[
|
|
440
|
-
user: AddressLike,
|
|
441
|
-
pool: AddressLike
|
|
442
|
-
], [
|
|
443
|
-
bigint
|
|
444
|
-
], "view">;
|
|
445
|
-
getFunction(nameOrSignature: "getPoolBoost"): TypedContractMethod<[
|
|
446
|
-
pool: AddressLike
|
|
447
|
-
], [
|
|
448
|
-
[
|
|
449
|
-
bigint,
|
|
450
|
-
bigint,
|
|
451
|
-
bigint,
|
|
452
|
-
bigint
|
|
453
|
-
] & {
|
|
454
|
-
totalBoost: bigint;
|
|
455
|
-
workingSupply: bigint;
|
|
456
|
-
baseSupply: bigint;
|
|
457
|
-
lastUpdateTime: bigint;
|
|
458
|
-
}
|
|
459
|
-
], "view">;
|
|
460
|
-
getFunction(nameOrSignature: "getRoleAdmin"): TypedContractMethod<[role: BytesLike], [string], "view">;
|
|
461
|
-
getFunction(nameOrSignature: "getUserBoost"): TypedContractMethod<[
|
|
462
|
-
user: AddressLike,
|
|
463
|
-
pool: AddressLike
|
|
464
|
-
], [
|
|
465
|
-
[
|
|
466
|
-
bigint,
|
|
467
|
-
bigint,
|
|
468
|
-
string,
|
|
469
|
-
bigint
|
|
470
|
-
] & {
|
|
471
|
-
amount: bigint;
|
|
472
|
-
expiry: bigint;
|
|
473
|
-
delegatedTo: string;
|
|
474
|
-
lastUpdateTime: bigint;
|
|
475
|
-
}
|
|
476
|
-
], "view">;
|
|
477
|
-
getFunction(nameOrSignature: "getWorkingBalance"): TypedContractMethod<[
|
|
478
|
-
user: AddressLike,
|
|
479
|
-
pool: AddressLike
|
|
480
|
-
], [
|
|
481
|
-
bigint
|
|
482
|
-
], "view">;
|
|
483
|
-
getFunction(nameOrSignature: "grantRole"): TypedContractMethod<[
|
|
484
|
-
role: BytesLike,
|
|
485
|
-
account: AddressLike
|
|
486
|
-
], [
|
|
487
|
-
void
|
|
488
|
-
], "nonpayable">;
|
|
489
|
-
getFunction(nameOrSignature: "hasRole"): TypedContractMethod<[
|
|
490
|
-
role: BytesLike,
|
|
491
|
-
account: AddressLike
|
|
492
|
-
], [
|
|
493
|
-
boolean
|
|
494
|
-
], "view">;
|
|
495
|
-
getFunction(nameOrSignature: "modifySupportedPool"): TypedContractMethod<[
|
|
496
|
-
pool: AddressLike,
|
|
497
|
-
isSupported: boolean
|
|
498
|
-
], [
|
|
499
|
-
void
|
|
500
|
-
], "nonpayable">;
|
|
501
|
-
getFunction(nameOrSignature: "paused"): TypedContractMethod<[], [boolean], "view">;
|
|
502
|
-
getFunction(nameOrSignature: "removeBoostDelegation"): TypedContractMethod<[from: AddressLike], [void], "nonpayable">;
|
|
503
|
-
getFunction(nameOrSignature: "renounceRole"): TypedContractMethod<[
|
|
504
|
-
role: BytesLike,
|
|
505
|
-
callerConfirmation: AddressLike
|
|
506
|
-
], [
|
|
507
|
-
void
|
|
508
|
-
], "nonpayable">;
|
|
509
|
-
getFunction(nameOrSignature: "revokeRole"): TypedContractMethod<[
|
|
510
|
-
role: BytesLike,
|
|
511
|
-
account: AddressLike
|
|
512
|
-
], [
|
|
513
|
-
void
|
|
514
|
-
], "nonpayable">;
|
|
515
|
-
getFunction(nameOrSignature: "setBoostParameters"): TypedContractMethod<[
|
|
516
|
-
maxBoost: BigNumberish,
|
|
517
|
-
minBoost: BigNumberish,
|
|
518
|
-
boostWindow: BigNumberish
|
|
519
|
-
], [
|
|
520
|
-
void
|
|
521
|
-
], "nonpayable">;
|
|
522
|
-
getFunction(nameOrSignature: "setEmergencyShutdown"): TypedContractMethod<[paused: boolean], [void], "nonpayable">;
|
|
523
|
-
getFunction(nameOrSignature: "supportedPools"): TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
524
|
-
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
|
|
525
|
-
getFunction(nameOrSignature: "updateUserBoost"): TypedContractMethod<[
|
|
526
|
-
user: AddressLike,
|
|
527
|
-
pool: AddressLike
|
|
528
|
-
], [
|
|
529
|
-
void
|
|
530
|
-
], "nonpayable">;
|
|
531
|
-
getFunction(nameOrSignature: "veToken"): TypedContractMethod<[], [string], "view">;
|
|
532
|
-
getEvent(key: "BoostDelegated"): TypedContractEvent<BoostDelegatedEvent.InputTuple, BoostDelegatedEvent.OutputTuple, BoostDelegatedEvent.OutputObject>;
|
|
533
|
-
getEvent(key: "BoostParametersUpdated"): TypedContractEvent<BoostParametersUpdatedEvent.InputTuple, BoostParametersUpdatedEvent.OutputTuple, BoostParametersUpdatedEvent.OutputObject>;
|
|
534
|
-
getEvent(key: "BoostUpdated"): TypedContractEvent<BoostUpdatedEvent.InputTuple, BoostUpdatedEvent.OutputTuple, BoostUpdatedEvent.OutputObject>;
|
|
535
|
-
getEvent(key: "DelegationRemoved"): TypedContractEvent<DelegationRemovedEvent.InputTuple, DelegationRemovedEvent.OutputTuple, DelegationRemovedEvent.OutputObject>;
|
|
536
|
-
getEvent(key: "EmergencyShutdown"): TypedContractEvent<EmergencyShutdownEvent.InputTuple, EmergencyShutdownEvent.OutputTuple, EmergencyShutdownEvent.OutputObject>;
|
|
537
|
-
getEvent(key: "Paused"): TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
538
|
-
getEvent(key: "PoolAdded"): TypedContractEvent<PoolAddedEvent.InputTuple, PoolAddedEvent.OutputTuple, PoolAddedEvent.OutputObject>;
|
|
539
|
-
getEvent(key: "PoolBoostUpdated"): TypedContractEvent<PoolBoostUpdatedEvent.InputTuple, PoolBoostUpdatedEvent.OutputTuple, PoolBoostUpdatedEvent.OutputObject>;
|
|
540
|
-
getEvent(key: "PoolRemoved"): TypedContractEvent<PoolRemovedEvent.InputTuple, PoolRemovedEvent.OutputTuple, PoolRemovedEvent.OutputObject>;
|
|
541
|
-
getEvent(key: "RoleAdminChanged"): TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
542
|
-
getEvent(key: "RoleGranted"): TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
543
|
-
getEvent(key: "RoleRevoked"): TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
544
|
-
getEvent(key: "Unpaused"): TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
545
|
-
filters: {
|
|
546
|
-
"BoostDelegated(address,address,uint256,uint256)": TypedContractEvent<BoostDelegatedEvent.InputTuple, BoostDelegatedEvent.OutputTuple, BoostDelegatedEvent.OutputObject>;
|
|
547
|
-
BoostDelegated: TypedContractEvent<BoostDelegatedEvent.InputTuple, BoostDelegatedEvent.OutputTuple, BoostDelegatedEvent.OutputObject>;
|
|
548
|
-
"BoostParametersUpdated(uint256,uint256,uint256)": TypedContractEvent<BoostParametersUpdatedEvent.InputTuple, BoostParametersUpdatedEvent.OutputTuple, BoostParametersUpdatedEvent.OutputObject>;
|
|
549
|
-
BoostParametersUpdated: TypedContractEvent<BoostParametersUpdatedEvent.InputTuple, BoostParametersUpdatedEvent.OutputTuple, BoostParametersUpdatedEvent.OutputObject>;
|
|
550
|
-
"BoostUpdated(address,address,uint256)": TypedContractEvent<BoostUpdatedEvent.InputTuple, BoostUpdatedEvent.OutputTuple, BoostUpdatedEvent.OutputObject>;
|
|
551
|
-
BoostUpdated: TypedContractEvent<BoostUpdatedEvent.InputTuple, BoostUpdatedEvent.OutputTuple, BoostUpdatedEvent.OutputObject>;
|
|
552
|
-
"DelegationRemoved(address,address,uint256)": TypedContractEvent<DelegationRemovedEvent.InputTuple, DelegationRemovedEvent.OutputTuple, DelegationRemovedEvent.OutputObject>;
|
|
553
|
-
DelegationRemoved: TypedContractEvent<DelegationRemovedEvent.InputTuple, DelegationRemovedEvent.OutputTuple, DelegationRemovedEvent.OutputObject>;
|
|
554
|
-
"EmergencyShutdown(address,bool)": TypedContractEvent<EmergencyShutdownEvent.InputTuple, EmergencyShutdownEvent.OutputTuple, EmergencyShutdownEvent.OutputObject>;
|
|
555
|
-
EmergencyShutdown: TypedContractEvent<EmergencyShutdownEvent.InputTuple, EmergencyShutdownEvent.OutputTuple, EmergencyShutdownEvent.OutputObject>;
|
|
556
|
-
"Paused(address)": TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
557
|
-
Paused: TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
558
|
-
"PoolAdded(address)": TypedContractEvent<PoolAddedEvent.InputTuple, PoolAddedEvent.OutputTuple, PoolAddedEvent.OutputObject>;
|
|
559
|
-
PoolAdded: TypedContractEvent<PoolAddedEvent.InputTuple, PoolAddedEvent.OutputTuple, PoolAddedEvent.OutputObject>;
|
|
560
|
-
"PoolBoostUpdated(address,uint256,uint256)": TypedContractEvent<PoolBoostUpdatedEvent.InputTuple, PoolBoostUpdatedEvent.OutputTuple, PoolBoostUpdatedEvent.OutputObject>;
|
|
561
|
-
PoolBoostUpdated: TypedContractEvent<PoolBoostUpdatedEvent.InputTuple, PoolBoostUpdatedEvent.OutputTuple, PoolBoostUpdatedEvent.OutputObject>;
|
|
562
|
-
"PoolRemoved(address)": TypedContractEvent<PoolRemovedEvent.InputTuple, PoolRemovedEvent.OutputTuple, PoolRemovedEvent.OutputObject>;
|
|
563
|
-
PoolRemoved: TypedContractEvent<PoolRemovedEvent.InputTuple, PoolRemovedEvent.OutputTuple, PoolRemovedEvent.OutputObject>;
|
|
564
|
-
"RoleAdminChanged(bytes32,bytes32,bytes32)": TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
565
|
-
RoleAdminChanged: TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
566
|
-
"RoleGranted(bytes32,address,address)": TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
567
|
-
RoleGranted: TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
568
|
-
"RoleRevoked(bytes32,address,address)": TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
569
|
-
RoleRevoked: TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
570
|
-
"Unpaused(address)": TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
571
|
-
Unpaused: TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
572
|
-
};
|
|
573
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { BoostController } from "./BoostController";
|