@raac/rpc 1.1.0-beta.5 → 1.1.0-beta.6
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 +52 -23
- package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +83 -29
- package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +82 -31
- package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +114 -5
- package/dist/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json +2 -2
- package/dist/artifacts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json +465 -0
- package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +497 -0
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +1065 -337
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +180 -99
- package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +20 -2
- package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +2 -29
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +158 -38
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +2 -2
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +2 -29
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +553 -224
- package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +354 -0
- package/dist/artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json +356 -0
- package/dist/artifacts/core/vaults/RWAVault.sol/RWAVault.json +1036 -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 +89 -15
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +2 -2
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +108 -38
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +2 -2
- package/dist/configs/chains/17000.json +36 -0
- package/dist/configs/chains/8453.json +36 -0
- package/dist/pools/lendingPool/_helpers.js +29 -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 +20 -0
- package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.js +32 -0
- package/dist/pools/lendingPool/borrowFromLendingPool.js +2 -2
- package/dist/pools/lendingPool/borrowFromLendingPoolWithInsurance.js +4 -3
- package/dist/pools/lendingPool/calculateInsuranceFee.js +3 -2
- package/dist/pools/lendingPool/closeLiquidation.js +3 -2
- package/dist/pools/lendingPool/depositAssetToLendingPool.js +60 -0
- package/dist/pools/lendingPool/{getPendingReward.js → getAdapters.js} +10 -6
- package/dist/pools/lendingPool/getHealthFactor.js +2 -2
- package/dist/pools/lendingPool/getLendingPoolInfo.js +4 -13
- package/dist/pools/lendingPool/getParameters.js +33 -0
- package/dist/pools/lendingPool/getPositionDebt.js +3 -2
- package/dist/pools/lendingPool/getPositionScaledDebt.js +3 -2
- package/dist/pools/lendingPool/getPositionView.js +5 -2
- package/dist/pools/lendingPool/getPositionsScaledDebt.js +1 -0
- package/dist/pools/lendingPool/getUserCollateralValue.js +1 -0
- package/dist/pools/lendingPool/initializeLiquidation.js +2 -2
- package/dist/pools/lendingPool/repayToLendingPool.js +2 -2
- package/dist/pools/lendingPool/{withdrawNFTFromLendingPool.js → withdrawAssetFromLendingPool.js} +5 -5
- 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 +27 -0
- package/dist/pools/rwaVault/getNextRandomNFT.js +25 -0
- package/dist/pools/rwaVault/getRWAVaultInfo.js +52 -0
- package/dist/pools/rwaVault/redeemNFTFromRWAVault.js +27 -0
- package/dist/pools/rwaVault/requestRandomSeed.js +27 -0
- package/dist/scripts/index.js +219 -152
- package/dist/types/RPCLibrary.d.ts +40 -21
- package/dist/types/pools/lendingPool/_helpers.d.ts +8 -0
- package/dist/types/pools/lendingPool/adapters/erc20/getERC20AdapterBalance.d.ts +4 -0
- package/dist/types/pools/lendingPool/adapters/erc20/getERC20AdapterInfo.d.ts +11 -0
- package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.d.ts +4 -0
- package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.d.ts +11 -0
- package/dist/types/pools/lendingPool/borrowFromLendingPool.d.ts +2 -2
- package/dist/types/pools/lendingPool/borrowFromLendingPoolWithInsurance.d.ts +2 -2
- package/dist/types/pools/lendingPool/calculateInsuranceFee.d.ts +2 -2
- package/dist/types/pools/lendingPool/closeLiquidation.d.ts +2 -2
- package/dist/types/pools/lendingPool/depositAssetToLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/getAdapters.d.ts +8 -0
- package/dist/types/pools/lendingPool/getHealthFactor.d.ts +2 -2
- package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +1 -3
- package/dist/types/pools/lendingPool/getParameters.d.ts +17 -0
- package/dist/types/pools/lendingPool/getPositionDebt.d.ts +2 -2
- package/dist/types/pools/lendingPool/getPositionScaledDebt.d.ts +2 -2
- package/dist/types/pools/lendingPool/getPositionView.d.ts +17 -14
- package/dist/types/pools/lendingPool/initializeLiquidation.d.ts +2 -2
- package/dist/types/pools/lendingPool/repayToLendingPool.d.ts +2 -2
- package/dist/types/pools/lendingPool/withdrawAssetFromLendingPool.d.ts +4 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterAssetValue.d.ts +4 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterInfo.d.ts +10 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterTotalValue.d.ts +4 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterAssetValue.d.ts +4 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterDeposits.d.ts +4 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterInfo.d.ts +10 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterTotalValue.d.ts +4 -0
- package/dist/types/pools/rwaVault/depositToRWAVault.d.ts +4 -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/scripts/index.d.ts +0 -1
- 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 -0
- 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/index.d.ts +2 -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/@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/collectors/FeeCollector.d.ts +30 -1
- 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 +115 -0
- package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +15 -1
- package/dist/types/typechain-types/contracts/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +616 -142
- 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 +623 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +609 -155
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +610 -156
- 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 -67
- 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 -12
- package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +22 -4
- package/dist/types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +40 -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/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +232 -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 +254 -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 +728 -205
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +440 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +538 -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 +158 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +124 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +135 -79
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +140 -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/RAACHousePrices.d.ts +23 -1
- package/dist/types/typechain-types/contracts/core/primitives/WithCompliance.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/primitives/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +6 -15
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +94 -11
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +1 -17
- 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.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 +178 -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/RWAVault.d.ts +511 -0
- package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +5 -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 +9 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +527 -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 -67
- 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 +30 -1
- 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/oracles/IBaseVRFv2Consumer.d.ts +5 -1
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +31 -24
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +143 -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 +369 -150
- 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 +19 -64
- 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/IDebtToken.d.ts +6 -15
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +70 -7
- 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 +208 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +89 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +2 -0
- 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/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/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 +2 -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/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/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/MockVRFCoordinatorV2.d.ts +349 -148
- 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 +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +367 -140
- 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 +0 -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/tests/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/zeno/Auction.d.ts +37 -8
- 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 -0
- 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/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 +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 +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 +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/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/FeeCollector__factory.d.ts +65 -21
- 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 +177 -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/Treasury__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +698 -144
- 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 +848 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +686 -162
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +689 -155
- 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 +42 -80
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +1 -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 +1028 -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 -25
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +37 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +90 -6
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +64 -9
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +49 -3
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +369 -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 +393 -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 +578 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +881 -306
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +716 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +636 -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 +281 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +227 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +255 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +151 -85
- 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__factory.d.ts +276 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +29 -1
- 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 +1 -21
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +7 -11
- 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 +124 -31
- 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 -61
- 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 +446 -186
- 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/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +287 -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/RWAVault__factory.d.ts +808 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +67 -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 +32 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +643 -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 +41 -79
- 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 -0
- 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 +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +14 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +24 -29
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +189 -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 +183 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +428 -143
- 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 +53 -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 +26 -75
- 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/IDebtToken__factory.d.ts +6 -10
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +79 -4
- 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 +256 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +119 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +2 -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 +44 -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 +1 -1
- 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/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 +1 -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/TimelockTestTarget__factory.d.ts +1 -1
- 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 +591 -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/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/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/MockVRFCoordinatorV2__factory.d.ts +490 -166
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +67 -12
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +49 -3
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +427 -132
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +1 -1
- 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/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/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 -21
- 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 +0 -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 +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/ReserveLibraryMock__factory.d.ts +1 -1
- 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 +5 -1
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +83 -14
- 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 +87 -31
- package/dist/types/typechain-types/index.d.ts +112 -40
- package/dist/types/utils/artifacts.d.ts +713 -166
- package/dist/utils/artifacts.js +13 -0
- package/package.json +1 -1
- 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/getUserOfDepositedNFT.js +0 -27
- 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
|
@@ -14,7 +14,7 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
14
14
|
deploymentTransaction(): ContractTransactionResponse;
|
|
15
15
|
}>;
|
|
16
16
|
connect(runner: ContractRunner | null): RAACGauge__factory;
|
|
17
|
-
static readonly bytecode = "0x60e06040523480156200001157600080fd5b5060405162002766380380620027668339810160408190526200003491620002d8565b600160009081556002805460ff191690556001600160a01b0380851660805280841660a052821660c0528390839083906969e10de76676d08000009062093a809062000081903362000120565b50620000ae7f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c5702233578462000120565b506161a8601755670de0b6b3a764000060185562093a806019554260008280620000d9818562000338565b620000e591906200035b565b620000f1919062000375565b602b8190556029859055905062000110602282856000612710620001b7565b505050505050505050506200038b565b60008281526001602090815260408083206001600160a01b038516845290915281205460ff16620001ad5760008381526001602081815260408084206001600160a01b0387168086529252808420805460ff19169093179092559051339286917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a4506001620001b1565b5060005b92915050565b845415801590620001d9575060058501548554620001d6919062000375565b84105b15620001f85760405163f0aaee6560e01b815260040160405180910390fd5b826000036200021a5760405163346ab43760e11b815260040160405180910390fd5b806000036200023c576040516319a2a9bd60e01b815260040160405180910390fd5b8385556200024b838562000375565b6001860155600285018490556003850182905560006004860155600585018390556006850181905560408051858152602081018590529081018390527f0792cf7388f234e543a10a68aeb7b96568fb90b55ddc2b2945961c80a3c3a0829060600160405180910390a15050505050565b80516001600160a01b0381168114620002d357600080fd5b919050565b600080600060608486031215620002ee57600080fd5b620002f984620002bb565b92506200030960208501620002bb565b91506200031960408501620002bb565b90509250925092565b634e487b7160e01b600052601160045260246000fd5b6000826200035657634e487b7160e01b600052601260045260246000fd5b500490565b8082028115828204841417620001b157620001b162000322565b80820180821115620001b157620001b162000322565b60805160a05160c051612373620003f3600039600081816108a40152818161106b01528181611b780152611c0101526000818161064801528181610ad601526112560152600081816108cb01528181610c5801528181610dd70152610e7a01526123736000f3fe608060405234801561001057600080fd5b50600436106103825760003560e01c806391d14854116101de578063cd63d9301161010f578063e58b2152116100ad578063f77c47911161007c578063f77c47911461089f578063f7c618c1146108c6578063f9759518146108ed578063feca3900146108f557600080fd5b8063e58b215214610818578063ea8d6e6114610829578063ebe2b12b1461088d578063f4359ce51461089557600080fd5b8063d6585ecf116100e9578063d6585ecf146107ae578063d70afa96146107d5578063ddce102f146107fc578063df136d651461080f57600080fd5b8063cd63d93014610788578063cd6606e214610791578063d547741f1461079b57600080fd5b8063b36fec571161017c578063b7f1aca811610156578063b7f1aca814610751578063c2c4c5c114610764578063c8f33c911461076c578063c925c6801461077557600080fd5b8063b36fec5714610715578063b45995851461071e578063b77cf9c61461073157600080fd5b80639e0092cb116101b85780639e0092cb146106df578063a217fddf146106f2578063a694fc3a146106fa578063a83627de1461070d57600080fd5b806391d14854146106a657806395ccea67146106b95780639d0ab89f146106cc57600080fd5b806336568abe116102b85780637001f4bb1161025657806372f702f31161023057806372f702f314610643578063750e1c09146106825780637b0a47ee1461069557806380faa57d1461069e57600080fd5b80637001f4bb1461060157806370a082311461060a578063718dc3c31461063257600080fd5b80635c975abb116102925780635c975abb1461053c5780636219015014610547578063677726da146105765780636b747dc01461058957600080fd5b806336568abe1461050e5780633c6b16ab146105215780633d18b9121461053457600080fd5b806318160ddd1161032557806327647248116102ff57806327647248146104895780632e1a7d4d146104915780632e46da29146104a45780632f2ff15d146104fb57600080fd5b806318160ddd146104485780631ea2543014610450578063248a9ca31461046557600080fd5b8063092c5b3b11610361578063092c5b3b146103d85780630c06f748146103ed5780630d15fd77146103f55780630ecc535f146103fe57600080fd5b80628cc2621461038757806301ffc9a7146103ad57806306aba0e1146103d0575b600080fd5b61039a610395366004612059565b6108fd565b6040519081526020015b60405180910390f35b6103c06103bb366004612076565b610969565b60405190151581526020016103a4565b61039a61099e565b61039a60008051602061231e83398151915281565b61039a6109ae565b61039a60215481565b61042d61040c366004612059565b600a6020526000908152604090208054600182015460029092015490919083565b604080519384526020840192909252908201526060016103a4565b601f5461039a565b61046361045e3660046120a0565b6109bb565b005b61039a6104733660046120a0565b6000908152600160208190526040909120015490565b602b5461039a565b61046361049f3660046120a0565b610a2c565b6003546004546005546006546007546008546009546104c69695949392919087565b604080519788526020880196909652948601939093526060850191909152608084015260a083015260c082015260e0016103a4565b6104636105093660046120b9565b610b41565b61046361051c3660046120b9565b610b6d565b61046361052f3660046120a0565b610ba5565b610463610d3a565b60025460ff166103c0565b61042d610555366004612059565b602c6020526000908152604090208054600182015460029092015490919083565b6104636105843660046120a0565b610ee7565b6040805160e08101825260105481526011546020820152601254918101919091526013546060820152601454608082015260155460a082015260165460c0820152601754601854601954601a54601b54601c54601d546105ed979695949392919088565b6040516103a498979695949392919061212d565b61039a61271081565b61039a610618366004612059565b6001600160a01b0316600090815260208052604090205490565b61039a69d3c21bcecceda100000081565b61066a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103a4565b6104636106903660046120a0565b610ef8565b61039a600b5481565b61039a610f6e565b6103c06106b43660046120b9565b610f8b565b6104636106c7366004612177565b610fb6565b6104636106da3660046121b1565b610fd5565b6104636106ed3660046120a0565b611032565b61039a600081565b6104636107083660046120a0565b6111db565b6104636112b0565b62093a8061039a565b61046361072c3660046121ce565b611374565b61039a61073f366004612059565b600e6020526000908152604090205481565b61046361075f3660046120a0565b6113b7565b610463611433565b61039a600c5481565b61039a610783366004612059565b611475565b61039a601e5481565b61039a6201518081565b6104636107a93660046120b9565b611494565b61039a7f5c91514091af31f62f596a314af7d5be40146b2f2355969392f055e12e0982fb81565b61039a7fa1496c3abf9cd93b84db10ae569b57fafa04deeeb7ece4167616ad50e35bc56e81565b61046361080a3660046120a0565b6114ba565b61039a600d5481565b61039a6969e10de76676d080000081565b6040805160e08101825260225481526023546020820152602454918101919091526025546060820152602654608082015260275460a082015260285460c0820152602954602a54602b5461087d9392919084565b6040516103a494939291906121fa565b61039a611512565b61039a62093a8081565b61066a7f000000000000000000000000000000000000000000000000000000000000000081565b61066a7f000000000000000000000000000000000000000000000000000000000000000081565b61039a606481565b61039a611525565b6001600160a01b0381166000908152600a602052604081206002810154600190910154670de0b6b3a764000090610932611525565b61093c919061223c565b61094585611475565b61094f919061224f565b6109599190612266565b6109639190612288565b92915050565b60006001600160e01b03198216637965db0b60e01b148061096357506301ffc9a760e01b6001600160e01b0319831614610963565b60006109a9601f5490565b905090565b60006109a960224261158c565b6109d360008051602061231e83398151915233610f8b565b6109f057604051635c427cd960e01b815260040160405180910390fd5b60298190556040518181527fb114240d54ce08081cbd18870dc3b6cd4091bb86ff29d2ad41906c2a2d6723d4906020015b60405180910390a150565b610a34611661565b33610a3e8161168b565b81600003610a5f5760405163162908e360e11b815260040160405180910390fd5b336000908152602080526040902054821115610a8e57604051631e9acf1760e31b815260040160405180910390fd5b81601f6000828254610aa0919061223c565b909155505033600090815260208052604081208054849290610ac390849061223c565b90915550610afd90506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163384611725565b60405182815233907f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5906020015b60405180910390a250610b3e6001600055565b50565b60008281526001602081905260409091200154610b5d81611784565b610b67838361178e565b50505050565b6001600160a01b0381163314610b965760405163334bd91960e11b815260040160405180910390fd5b610ba08282611807565b505050565b610bbd60008051602061231e83398151915233610f8b565b610bda57604051635c427cd960e01b815260040160405180910390fd5b6000610be58161168b565b602954821115610c0857604051631fbe179d60e11b815260040160405180910390fd5b610c23602283602260070154610c1e62093a8090565b611874565b600b55602a8054839190600090610c3b908490612288565b90915550506040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610ca7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccb919061229b565b90508062093a80600b54610cdf919061224f565b1115610cfe5760405163f16eeebd60e01b815260040160405180910390fd5b42600c556040518381527ff9a5da3a173eca8cd77c02ece3ff1467b8aa461ed3822201817f2d72fbc542839060200160405180910390a1505050565b610d42611661565b610d4a6118f9565b33610d548161168b565b336000908152600e60205260409020546201518090610d73904261223c565b1015610d925760405163c4a8921360e01b815260040160405180910390fd5b336000908152600e60209081526040808320429055600a909152902060028101548015610ed8576000600283018190556040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610e26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4a919061229b565b905080821115610e6d57604051631e9acf1760e31b815260040160405180910390fd5b610ea16001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163384611725565b60405182815233907fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e04869060200160405180910390a2505b505050610ee56001600055565b565b610eef6118f9565b610b3e81611032565b610f1060008051602061231e83398151915233610f8b565b610f2d57604051635c427cd960e01b815260040160405180910390fd5b62093a8042600082610f3f8184612266565b610f4a906002612288565b610f54919061224f565b9050610f66602282858761271061191d565b602b55505050565b6000610f78611512565b4210610f86576109a9611512565b504290565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000610fc181611784565b610ba06001600160a01b0384163384611725565b610fff7f5c91514091af31f62f596a314af7d5be40146b2f2355969392f055e12e0982fb33610f8b565b61101c57604051635c427cd960e01b815260040160405180910390fd5b801561102a57610b3e611a19565b610b3e611a73565b61103a6118f9565b336110448161168b565b6127108211156110675760405163585b926360e01b815260040160405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663b731cb546040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110eb91906122b4565b6040516370a0823160e01b81523360048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015611131573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611155919061229b565b90508060000361117857604051631f05dadd60e21b815260040160405180910390fd5b336000908152602c60205260409020602154611198919085908490611aac565b602155604080518481526020810183905233917ff4dbed0941210063507e7377f14a0749f60a2a982a3c2655b01d65134b924a6d910160405180910390a2505050565b6111e3611661565b336111ed8161168b565b8160000361120e5760405163162908e360e11b815260040160405180910390fd5b81601f60008282546112209190612288565b909155505033600090815260208052604081208054849290611243908490612288565b9091555061127e90506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333085611b27565b60405182815233907f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d90602001610b2b565b6112c860008051602061231e83398151915233610f8b565b6112e557604051635c427cd960e01b815260040160405180910390fd5b42600062093a80602b546112f99190612288565b90508082101561131c5760405163f0aaee6560e01b815260040160405180910390fd5b62093a80600061132d60228461158c565b905060008261133c8187612266565b611347906002612288565b611351919061224f565b6000602a55602b819055905061136d602282858561271061191d565b5050505050565b61138c60008051602061231e83398151915233610f8b565b6113a957604051635c427cd960e01b815260040160405180910390fd5b601792909255601855601955565b6113e17fa1496c3abf9cd93b84db10ae569b57fafa04deeeb7ece4167616ad50e35bc56e33610f8b565b6113fe57604051635c427cd960e01b815260040160405180910390fd5b601e8190556040518181527ff18d722badc84ff70f53556319e6c00b5f78303309e5289063a3c5a41a7a77d590602001610a21565b3361143d8161168b565b60405142815233907f39cf56b90e9d763f0c102996f87d848a60d5b19bd9d53e36505c49b64aa89c729060200160405180910390a250565b60008061148183611b60565b905061148d8382611beb565b9392505050565b600082815260016020819052604090912001546114b081611784565b610b678383611807565b6114d260008051602061231e83398151915233610f8b565b6114ef57604051635c427cd960e01b815260040160405180910390fd5b6029548111156109f057604051631fbe179d60e11b815260040160405180910390fd5b600062093a80600c546109a99190612288565b6000611530601f5490565b60000361153e5750600d5490565b601f54600b54600c5461154f610f6e565b611559919061223c565b611563919061224f565b61157590670de0b6b3a764000061224f565b61157f9190612266565b600d546109a99190612288565b815460009082116115a257506003820154610963565b6000836001015483116115b557826115bb565b83600101545b60048501546002860154919250908211156116425760008560020154836115e2919061223c565b905060008187600301546115f6919061224f565b9050600082118015611615575060038701546116128383612266565b14155b156116335760405163f20577e560e01b815260040160405180910390fd5b61163d8184612288565b925050505b845461164e908361223c565b6116589082612266565b95945050505050565b60026000540361168457604051633ee5aeb560e01b815260040160405180910390fd5b6002600055565b611693611525565b600d5561169e610f6e565b600c556001600160a01b03811615610b3e576001600160a01b0381166000908152600a602052604090206116d1826108fd565b60028201819055600d5460018301554282556040519081526001600160a01b038316907f401ccfec4c6c7ac3f3b71182750d0f8d73c0d29cc476732b0b21ab0d359da47f9060200160405180910390a25050565b6040516001600160a01b03838116602483015260448201839052610ba091859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050611dcb565b610b3e8133611e33565b600061179a8383610f8b565b6117ff5760008381526001602081815260408084206001600160a01b0387168086529252808420805460ff19169093179092559051339286917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a4506001610963565b506000610963565b60006118138383610f8b565b156117ff5760008381526001602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610963565b60008284111561189757604051631fbe179d60e11b815260040160405180910390fd5b600785015460088601546118ab9086612288565b11156118ca57604051631fbe179d60e11b815260040160405180910390fd5b60006118d68386612266565b905080600003611658576040516307ced7af60e01b815260040160405180910390fd5b60025460ff1615610ee55760405163d93c066560e01b815260040160405180910390fd5b84541580159061193c5750600585015485546119399190612288565b84105b1561195a5760405163f0aaee6560e01b815260040160405180910390fd5b8260000361197b5760405163346ab43760e11b815260040160405180910390fd5b8060000361199c576040516319a2a9bd60e01b815260040160405180910390fd5b8385556119a98385612288565b6001860155600285018490556003850182905560006004860155600585018390556006850181905560408051858152602081018590529081018390527f0792cf7388f234e543a10a68aeb7b96568fb90b55ddc2b2945961c80a3c3a0829060600160405180910390a15050505050565b611a216118f9565b6002805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a563390565b6040516001600160a01b03909116815260200160405180910390a1565b611a7b611e70565b6002805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611a56565b6000612710841115611ad15760405163585b926360e01b815260040160405180910390fd5b82600003611af257604051631f05dadd60e21b815260040160405180910390fd5b600083866001015484611b05919061223c565b611b0f9190612288565b94865550505060018301554260029092019190915590565b6040516001600160a01b038481166024830152838116604483015260648201839052610b679186918216906323b872dd90608401611752565b60405163395f293b60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906372be527690602401602060405180830381865afa158015611bc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610963919061229b565b600081600003611bfd57506000610963565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663b731cb546040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8191906122b4565b6040516370a0823160e01b81526001600160a01b0386811660048301529192506000918316906370a0823190602401602060405180830381865afa158015611ccd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf1919061229b565b90506000826001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d57919061229b565b6040805160c0810182526017548152601854602082015260195491810191909152601c546060820152601d546080820152601b5460a08201529091506000611da0848484611e93565b9050670de0b6b3a7640000611db5828961224f565b611dbf9190612266565b98975050505050505050565b6000611de06001600160a01b03841683611f4c565b90508051600014158015611e05575080806020019051810190611e0391906122d1565b155b15610ba057604051635274afe760e01b81526001600160a01b03841660048201526024015b60405180910390fd5b611e3d8282610f8b565b611e6c5760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401611e2a565b5050565b60025460ff16610ee557604051638dfc202b60e01b815260040160405180910390fd5b600082600003611ea85750602081015161148d565b600083611ebd86670de0b6b3a764000061224f565b611ec79190612266565b9050600083602001518460000151611edf919061223c565b90506000670de0b6b3a7640000611ef6838561224f565b611f009190612266565b8560200151611f0f9190612288565b90508460200151811015611f2c578460200151935050505061148d565b8451811115611f425750508251915061148d9050565b9695505050505050565b606061148d8383600084600080856001600160a01b03168486604051611f7291906122ee565b60006040518083038185875af1925050503d8060008114611faf576040519150601f19603f3d011682016040523d82523d6000602084013e611fb4565b606091505b5091509150611f42868383606082611fd457611fcf8261201b565b61148d565b8151158015611feb57506001600160a01b0384163b155b1561201457604051639996b31560e01b81526001600160a01b0385166004820152602401611e2a565b508061148d565b80511561202b5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160a01b0381168114610b3e57600080fd5b60006020828403121561206b57600080fd5b813561148d81612044565b60006020828403121561208857600080fd5b81356001600160e01b03198116811461148d57600080fd5b6000602082840312156120b257600080fd5b5035919050565b600080604083850312156120cc57600080fd5b8235915060208301356120de81612044565b809150509250929050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c08301525050565b6101c0810161213c828b6120e9565b60e08201989098526101008101969096526101208601949094526101408501929092526101608401526101808301526101a090910152919050565b6000806040838503121561218a57600080fd5b823561219581612044565b946020939093013593505050565b8015158114610b3e57600080fd5b6000602082840312156121c357600080fd5b813561148d816121a3565b6000806000606084860312156121e357600080fd5b505081359360208301359350604090920135919050565b610140810161220982876120e9565b8460e0830152836101008301528261012083015295945050505050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561096357610963612226565b808202811582820484141761096357610963612226565b60008261228357634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561096357610963612226565b6000602082840312156122ad57600080fd5b5051919050565b6000602082840312156122c657600080fd5b815161148d81612044565b6000602082840312156122e357600080fd5b815161148d816121a3565b6000825160005b8181101561230f57602081860181015185830152016122f5565b50600092019182525091905056fe7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c570223357a264697066735822122048951a8a1ff32d842405aac9d4f8240bd5430b9a79d83e0548ea84fc943e1a6564736f6c63430008140033";
|
|
17
|
+
static readonly bytecode = "0x610100346200026057601f62004e9438819003918201601f191683019291906001600160401b03841183851017620002655781606092849260409687528339810103126200026057620000b262000056826200027b565b9162000072846200006a602084016200027b565b92016200027b565b600160009081556001600160a01b0394851660805291841660a05260e081905292831660c05262093a8060205591620000ab33620002b4565b5062000335565b50620000be33620003d8565b50620000ca3362000476565b50620000d63362000514565b506020549081156200024c5781420482810290808204841490151715620002385782620001039162000290565b91826014556969e10de76676d0800000601255600b5480151590816200021f575b506200020e57916060917f0792cf7388f234e543a10a68aeb7b96568fb90b55ddc2b2945961c80a3c3a0829382600b5562000160818462000290565b600c5582600d5581600e5581600f55806010556127106011558551928352602083015284820152a1516148c19081620005b382396080518181816103ed0152818161104101526124ce015260a051818181610fda01528181611bbb0152612464015260c0518161173c015260e05181818161043001528181610f4101528181611476015281816134280152818161373e01528181613bf001528181613c7c01528181613d4101526144ac0152f35b835163f0aaee6560e01b8152600490fd5b6200022f91506010549062000290565b83103862000124565b634e487b7160e01b82526011600452602482fd5b634e487b7160e01b81526012600452602490fd5b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036200026057565b919082018092116200029e57565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b031660008181527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb49602052604081205490919060ff16620003315781805260016020526040822081835260205260408220600160ff19825416179055339160008051602062004e748339815191528180a4600190565b5090565b6001600160a01b031660008181527fc3eac9ead20d697480ab489ced881761c627fd3281937449e4d4d7fbf9faa2cd60205260408120549091907f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c5702233579060ff16620003d35780835260016020526040832082845260205260408320600160ff1982541617905560008051602062004e74833981519152339380a4600190565b505090565b6001600160a01b031660008181527fbb55feefbbeeb450791a2805b5c4f111914a5147fd3ab1f161e7773d871abcc360205260408120549091907ffda1ae526c1fb38407f23e8b7712f7cfacc146f3e340a04221488331e0d420149060ff16620003d35780835260016020526040832082845260205260408320600160ff1982541617905560008051602062004e74833981519152339380a4600190565b6001600160a01b031660008181527f0298389358dc4e56cb082b3bb11d0524b39b30d4fc48a48562a008cd6edee05f60205260408120549091907f5c91514091af31f62f596a314af7d5be40146b2f2355969392f055e12e0982fb9060ff16620003d35780835260016020526040832082845260205260408320600160ff1982541617905560008051602062004e74833981519152339380a4600190565b6001600160a01b031660008181527fb430885b2fd8ad5c711883989efa8a81a8244e77d7ee19caf947074a66cbfadf60205260408120549091907fa1496c3abf9cd93b84db10ae569b57fafa04deeeb7ece4167616ad50e35bc56e9060ff16620003d35780835260016020526040832082845260205260408320600160ff1982541617905560008051602062004e74833981519152339380a460019056fe608060408181526004918236101561001657600080fd5b600092833560e01c91826301ffc9a714612b575750816304a6f57614612b1f578163092c5b3b14612af65781630943832014612a705781630a58b40e14612a0f5781630bfa2480146129f25781630d15fd77146129d357816318160ddd146129b45781631c3ebaeb14611cc3578163211dc32d14612986578163248a9ca31461295c57816324ab066c14610b5457816328cae71e146128fd5781632d5ce3e6146128615781632e1a7d4d146123f05781632e46da291461239e5781632f2ff15d1461237457816336568abe1461232e578163372500ab146121b25781633b946c7114611f445781633fba284a14611f2557816348e5d9f814611eb4578163588fcfd814611e985781635953279e14611e745781635c975abb14611e505781636219015014611e05578163671ee22714611cc85781637001f4bb14611cc35781637035ab9814611c7a57816370a0823114611c42578163728e4a6714611bea57816372f702f314611ba6578163750e1c0914611a615781637b0a47ee14611a425781637bb7bed114611a175781637c2d6e01146119b357816380ac82281461198557816382fd8e5d1461195f57816390e87986146118d3578163912acbd91461189757816391d1485414611850578163958da8de1461181857816395ccea67146117ac578163994e8f261461176b57816399eecb3b146117275781639d0ab89f146115e75781639e0092cb14611428578163a042e48d146113e7578163a217fddf146113cc578163a4d24b5c14611390578163a694fc3a14610ee8578163a83627de14610e83578163b470aade14610e65578163b66503cf14610e2c578163b7f1aca814610d9c578163c4f59f9b14610ca1578163c8562f7214610c82578163c8f33c9114610c63578163c925c68014610c3d578163ca37271b14610c04578163cc64278414610bbc578163cd63d93014610b9d578163d1ab58f414610b54578163d547741f14610b11578163d6585ecf14610ae8578163d700c18b14610a85578163d70afa9614610a5c578163dcda162c14610a21578163dd89b73614610927578163df136d6514610908578163e58b2152146108e3578163e70b9e271461089a578163ea8d6e61146107c7578163ebe2b12b146107a4578163ecc68a2914610602578163f06e22b81461047c57508063f4359ce51461045f578063f77c47911461041c578063f7c618c1146103d95763fe7743e91461039557600080fd5b346103d55760203660031901126103d5576103ce602092826103b5612baa565b6001600160a01b03811683526022865291205490613ced565b9051908152f35b5080fd5b50346103d557816003193601126103d557517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b50346103d557816003193601126103d557517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b50346103d557816003193601126103d5576020905162093a808152f35b8284346105ff57806003193601126105ff578080601554905b8181106105a4575b50506001600160a01b039182169182156105945783519263133dac2960e11b8452308685015260249583858881855afa94851561058a578495610566575b50835b8551811015610562576105189060208986828460051b8b01015116918289525283898820018581548881161561051d575b50505050612f47565b6104de565b6001600160a01b03191617905561053381613f75565b15610541575b80858161050f565b61054a81613221565b60008051602061478c8339815191528780a289610539565b8480f35b6105839195503d8086833e61057b8183612d5e565b810190613178565b93876104db565b86513d86823e3d90fd5b5050505163dc1669a360e01b8152fd5b6105ad81612c98565b60018060a01b03809254600392831b1c168552602560205260ff8786205460a01c166105e35750506105de90612f47565b610495565b92509293506105f190612c98565b9054911b1c1690848061049d565b80fd5b8284346105ff57816003193601126105ff5761061c612baa565b610624612bc5565b9061062d612d81565b60018060a01b039182821691828552602091602483526002878720015461079457841690811561078457865163313ce56760e01b815283818a81885afa879181610755575b5061068757875163552b2fcd60e01b81528990fd5b9188918893868952602b865260ff858a20911660ff19825416179055878897601754985b89811061071d575b50506001959697501561070e575b508587526024855282872091820190848060a01b031982541617905560024291015560246106f0845442613244565b93858752528420015560008051602061478c8339815191528280a280f35b61071790613221565b876106c1565b888261072883612c7d565b90549060031b1c16146107435761073e90612f47565b6106ab565b5096975087965060019050808a6106b3565b610776919250853d871161077d575b61076e8183612d5e565b810190613550565b908a610672565b503d610764565b8651635c187b8d60e01b81528890fd5b865163185add2960e11b81528890fd5b5050346103d557816003193601126103d5576020906103ce601b54835490613244565b8383346103d557816003193601126103d55780519160e08301906001600160401b03821184831017610887575061014093508152600b5491828152600c549160208201928352600d5491818101928352600e5460608201908152600f54608083019081526010549160a0840192835260c0601154940193845260125494601354966014549882519a8b525160208b015251908901525160608801525160808701525160a08601525160c085015260e0840152610100830152610120820152f35b634e487b7160e01b815260418552602490fd5b5050346103d557806003193601126103d557806020926108b8612baa565b6108c0612bc5565b6001600160a01b0391821683526028865283832091168252845220549051908152f35b5050346103d557816003193601126103d557602090516969e10de76676d08000008152f35b5050346103d557816003193601126103d557602090601c549051908152f35b5050346103d557816003193601126103d557610941612f24565b815b6017548110156109f0578061095a61099692612c7d565b9054600391821b1c6001600160a01b031680865260246020908152858720919290916109863385613569565b8061099b575b5050505050612f47565b610943565b84895260288452878920338a5284526109b8888a20918254613244565b9055838852602a83528688203389528352426001888a200155015491865260278152848620903387525283852055388080808061098c565b50514281527e745e876c45796ea32ef5ef1bcbf9cef81cfd16666c9364caa1cb8a6ddbd67660203392a26001815580f35b5050346103d557816003193601126103d557602090517ffda1ae526c1fb38407f23e8b7712f7cfacc146f3e340a04221488331e0d420148152f35b5050346103d557816003193601126103d5576020905160008051602061484c8339815191528152f35b5050346103d557806003193601126103d5578091610aa1612baa565b610aa9612bc5565b6001600160a01b039182168352602a60209081528484209290911683525220805460018201546002909201549251928392610ae49284612c67565b0390f35b5050346103d557816003193601126103d557602090516000805160206147cc8339815191528152f35b91905034610b505780600319360112610b5057610b4c9135610b476001610b36612bc5565b938387528160205286200154612de9565b612e8f565b5080f35b8280fd5b5050346103d557806003193601126103d55780602092610b72612baa565b610b7a612bc5565b6001600160a01b0391821683526029865283832091168252845220549051908152f35b5050346103d557816003193601126103d557602090601d549051908152f35b8284346105ff5760203660031901126105ff576001600160a01b039060ff90839083610be6612baa565b168152602560205220548351928116835260a01c1615156020820152f35b5050346103d55760203660031901126103d557906020916001610c35610c28612baa565b610c30612f24565b612f6c565b925551908152f35b5050346103d55760203660031901126103d5576020906103ce610c5e612baa565b61448f565b5050346103d557816003193601126103d557602090601b549051908152f35b5050346103d557816003193601126103d5576020906018549051908152f35b91905034610b505782600319360112610b50578283601554905b818110610d43575b50506001600160a01b0316918215610d35578390602483518095819363133dac2960e11b835230908301525afa918215610d2b5783610ae49493610d0e575b50505191829182612cce565b610d239293503d8091833e61057b8183612d5e565b903880610d02565b81513d85823e3d90fd5b905163dc1669a360e01b8152fd5b610d4c81612c98565b60018060a01b03809254600392831b1c168852602560205260ff8689205460a01c16610d82575050610d7d90612f47565b610cbb565b92509250610d8f90612c98565b9054911b1c163880610cc3565b91905034610b50576020366003190112610b505781359160008051602061484c833981519152808552600160205282852033865260205260ff838620541615610e1157847ff18d722badc84ff70f53556319e6c00b5f78303309e5289063a3c5a41a7a77d56020868681601d5551908152a180f35b604492519163e2517d3f60e01b835233908301526024820152fd5b5050346103d5573660031901126105ff57610e62610e48612baa565b610e50612d81565b610e5981613795565b60243590613291565b80f35b5050346103d557816003193601126103d55760209081549051908152f35b91905034610b505782600319360112610b5057610e9e612d81565b60145491610eaf6020548094613244565b91824210610edb5784610e6285610ec586614637565b90610ece614420565b8460135580601455614524565b5163f0aaee6560e01b8152fd5b8383346103d557602080600319360112610b5057833591610f07612f24565b610f0f612f06565b610f1833613795565b821561138157805163aa79979b60e01b815230868201526024906001600160a01b0390848184817f000000000000000000000000000000000000000000000000000000000000000086165afa90811561137757879161133d575b501561132d57610f8485601e54613244565b601e55338652602290818552610f9d8685892054613244565b33885282865284882055610ffe84516323b872dd60e01b87820152610fd881610fca8a30338a8501613773565b03601f198101835282612d5e565b7f00000000000000000000000000000000000000000000000000000000000000006130f1565b3387528185528387205490602c865261103061101e868a20549333613ced565b9261102b84601854613244565b613284565b601855338852602c865281858920557f0000000000000000000000000000000000000000000000000000000000000000168752828552838720600381015490606460195410611291575b5033611160575b50835190815260008051602061486c833981519152853392a233865283528185205415611147576026835260ff8286205416156110dc575b5060008051602061472c833981519152929394505b519283523392a26001815580f35b60165495600160401b87101561113657505061111961111286600160008051602061472c83398151915296979801601655612cb3565b3391613203565b33855260268252808520805460ff191660011790558493926110b9565b634e487b7160e01b86526041905284fd5b5060008051602061472c833981519152929394506110ce565b338852602e86526064858920541015611081578286526111838589205433613bb5565b338952602d875285892091848852868a205490602c8952878b2054612710841160001461128a5761270f1984018481116112775762093a809004925b8951956111cb87612d43565b4287528b87019182528a8701928352606087019384526080870194855260a08701958652805490600160401b821015611264579061120e91600182018155612bdb565b96909661125357518655516001860155516002850155516003840155518a83015551600590910155338752602e8552838720805461124b90612f47565b905588611081565b634e487b7160e01b8e528d8f52898efd5b8f8f60418d92634e487b7160e01b835252fd5b50634e487b7160e01b8c5260118d52878cfd5b8b926111bf565b601e546018549154908751926112a684612d12565b428452898401918252888401908152606084019185835260808501938452600a54600160401b811015611319578060016112e39201600a55612c48565b9590956112535751855551600185015551600284015551600383015551908a015560195461131090612f47565b6019558961107a565b5050634e487b7160e01b8c5260418d52878cfd5b825163d4220bed60e01b81528790fd5b90508481813d8311611370575b6113548183612d5e565b8101031261136c5751801515810361136c5788610f72565b8680fd5b503d61134a565b84513d89823e3d90fd5b5163162908e360e11b81528490fd5b905034610b50576020366003190112610b50576000805160206146ec8339815191529160209135906113c0612d81565b8160125551908152a180f35b5050346103d557816003193601126103d55751908152602090f35b5050346103d55760203660031901126103d55760209160ff9082906001600160a01b03611412612baa565b16815260258552205460a01c1690519015158152f35b8383346103d55760209081600319360112610b5057833591611448612f06565b61145133613795565b61271083116115d7578151633b92eb2360e01b81526001600160a01b039190818188817f000000000000000000000000000000000000000000000000000000000000000087165afa9081156115cd5790829187916115a0575b5060248551809581936370a0823160e01b8352338c840152165afa918215611596578592611563575b50811561155357907ff4dbed0941210063507e7377f14a0749f60a2a982a3c2655b01d65134b924a6d929133865260238152828620601f54908361152681600184019485548181611542575b5050613244565b9288835555600242910155601f5582519485528401523392a280f35b61154c9250613284565b8c8061151f565b8251631f05dadd60e21b81528690fd5b9080925081813d831161158f575b61157b8183612d5e565b8101031261158b575190866114d3565b8480fd5b503d611571565b83513d87823e3d90fd5b6115c09150823d84116115c6575b6115b88183612d5e565b810190613159565b886114aa565b503d6115ae565b84513d88823e3d90fd5b815163585b926360e01b81528590fd5b8383346103d55760209081600319360112610b5057611604612c0d565b906000805160206147cc83398151915280855260018452818520338652845260ff828620541615611709575081156116a7576002549460ff86166116995750600160008051602061474c833981519152949561165e612f06565b60ff1916176002557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258838251338152a15b519015158152a180f35b9051631785c68160e01b8152fd5b60025460ff8116156116f95760008051602061474c83398151915294955060ff19166002557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa838251338152a161168f565b8151636cd6020160e01b81528690fd5b905163e2517d3f60e01b815233818701526024810191909152604490fd5b5050346103d557816003193601126103d557517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b905034610b50576020366003190112610b505735916015548310156105ff5750611796602092612c98565b905491519160018060a01b039160031b1c168152f35b905034610b505781600319360112610b50576117c6612baa565b91838052600160205280842033855260205260ff8185205416156117fb5783610e62602435336001600160a01b0387166130a0565b9083604492519163e2517d3f60e01b835233908301526024820152fd5b5050346103d55760203660031901126103d55760209181906001600160a01b03611840612baa565b168152602c845220549051908152f35b905034610b505781600319360112610b50578160209360ff92611871612bc5565b90358252600186528282206001600160a01b039091168252855220549151911615158152f35b5050346103d55760203660031901126103d55760209160ff9082906001600160a01b036118c2612baa565b168152602b85522054169051908152f35b8284346105ff57806003193601126105ff5781516015805480835290835260208083019492937f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec47592915b82821061193f57610ae48686611935828b0383612d5e565b5191829182612cce565b83546001600160a01b03168752958601956001938401939091019061191d565b5050346103d55760203660031901126103d5576020906103ce611980612baa565b614236565b5050346103d557806003193601126103d5576020906103ce6119a5612baa565b6119ad612bc5565b90613feb565b91905034610b50576020366003190112610b50578135916119d2612d81565b8215611a095750816020917fbd6eb9cf4d6e2902587c57e3163aaafdb46e3b3f2086bdfa75c790228930a9d793835551908152a180f35b90516302e8f35960e31b8152fd5b905034610b50576020366003190112610b505735916017548310156105ff5750611796602092612c7d565b5050346103d557816003193601126103d557602090601a549051908152f35b8383346103d55760203660031901126103d557823590611a7f612d81565b8160035480611b8e575b5015611b85575b611a98614420565b611aa58360205483614524565b6014556127108211611b76576020546003548181611b1857611ac8915042613264565b60018101809111611b05576000805160206146ec8339815191529495508382611af86020969594611afd94613251565b6145c2565b51908152a180f35b634e487b7160e01b855260118652602485fd5b611b2191613244565b4210611b6657611b318142613264565b60018101809111611b05576000805160206146ec8339815191529495508382611af86020969594611b6194613251565b611afd565b8151632d925b7560e21b81528590fd5b5163585b926360e01b81528390fd5b60019150611a90565b602054611b9a91613244565b4210611b665785611a89565b5050346103d557816003193601126103d557517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b5050346103d557806003193601126103d5576103ce60209282611c0b612baa565b91611c14612bc5565b611c1e8185613feb565b6001600160a01b039485168352602988528383209190941682528652205490613244565b5050346103d55760203660031901126103d55760209181906001600160a01b03611c6a612baa565b1681526022845220549051908152f35b5050346103d557806003193601126103d55780602092611c98612baa565b611ca0612bc5565b6001600160a01b0391821683526027865283832091168252845220549051908152f35b612c2b565b905034610b505760209182600319360112611e0157611ce5612baa565b90611cef82613fc6565b6001600160a01b039182168086526024808652828720850154835163ea7cbff160e01b815280870184905295941693908690869081875afa948515611df7579086918896611dc5575b50602483918551968793849263fa1af4f360e01b84528301525afa928315611dbb578693611d87575b506002946024918752528420918255600182015501805415611d81575080f35b42905580f35b9092508481813d8311611db4575b611d9f8183612d5e565b81010312611db05751916002611d61565b8580fd5b503d611d95565b82513d88823e3d90fd5b8281939297503d8311611df0575b611ddd8183612d5e565b8101031261136c57519385906024611d38565b503d611dd3565b83513d89823e3d90fd5b8380fd5b5050346103d55760203660031901126103d5579081906001600160a01b03611e2b612baa565b16815260236020522090610ae482549160026001850154940154905193849384612c67565b5050346103d557816003193601126103d55760209060ff6002541690519015158152f35b5050346103d557816003193601126103d55760209060ff6021541690519015158152f35b5050346103d557816003193601126103d5576020905160648152f35b8383346103d55760203660031901126103d55760c0926001600160a01b0392829084611ede612baa565b1681526024602052209081549360018301549360056002850154926003860154948601541694015494815196875260208701528501526060840152608083015260a0820152f35b5050346103d557816003193601126103d5576020906019549051908152f35b91905034610b505780600319360112610b5057611f5f612baa565b90611f68612c1c565b92611f71612d81565b831561206c576001600160a01b03838116808752602560205283872054821661205c578351918285016001600160401b03811184821017612049578552818352602080840189815292895260259052848820925183546001600160a01b031916911617825551611fe49190151590613533565b60155490600160401b8210156120365750916020916120228261201c86600160008051602061482c8339815191529801601555612c98565b90613203565b5193151584526001600160a01b031692a280f35b634e487b7160e01b865260419052602485fd5b634e487b7160e01b895260418552602489fd5b8351633d873e1f60e01b81528390fd5b6001600160a01b0380841680875260256020528387205492959493928216156121a2578087526025602052828720805460ff60a01b19169055865b60158054808310156121825784846120be85612c98565b929054600393841b1c16146120de575050506120d990612f47565b6120a7565b9094919596979893506000199485810190811161216f579161201c916121076121139594612c98565b9054911b1c1691612c98565b825490811561215c5750916020939160008051602061482c8339815191529593019061215661214183612c98565b81549060018060a01b039060031b1b19169055565b55612022565b634e487b7160e01b885260319052602487fd5b634e487b7160e01b8b526011855260248bfd5b505050505060008051602061482c83398151915292935090602091612022565b82516312a3d7e760e31b81528690fd5b8284346105ff57806003193601126105ff5791906121ce612f24565b825b601754841015612327576121e384612c7d565b905460039190911b1c6001600160a01b0316936122003386613860565b61220985613fc6565b8482526028946020958087528484203385528752848420549081612240575b5050506122389192939450612f47565b9291906121d0565b8285528752848420338552875284842084905584516370a0823160e01b81523087820152968088602481865afa801561231d5785906122ed575b61223895969798508083116122e5575b508161229b575b8796959450612228565b60008051602061470c833981519152906122b68333866130a0565b8387526029815287872033885281528787206122d3848254613244565b905587519283523392a3858080612291565b91508861228a565b508088813d8311612316575b6123038183612d5e565b8101031261158b5796519596879661227a565b503d6122f9565b86513d87823e3d90fd5b6001815580f35b8383346103d557806003193601126103d557612348612bc5565b90336001600160a01b038316036123655750610b4c919235612e8f565b5163334bd91960e11b81528390fd5b91905034610b505780600319360112610b5057610b4c91356123996001610b36612bc5565b612e0f565b91905034610b505782600319360112610b505760e09250600354915490600554600654600754916008549360095495815197885260208801528601526060850152608084015260a083015260c0820152f35b8383346103d557602080600319360112610b505783359161240f612f24565b61241833613795565b8215611381573384526022948583528185205484116128535761243d84601e54613284565b601e553385528583526124538483872054613284565b3386528684528286205561248884337f00000000000000000000000000000000000000000000000000000000000000006130a0565b33855285835281852054602c84526124b46124a7848820549233613ced565b9161102b83601854613244565b601855338652602c8452808387205560018060a01b0390817f0000000000000000000000000000000000000000000000000000000000000000168752602497888652848820918860039384810154906064601954106127a5575b503361266b575b5050855190815260008051602061486c833981519152873392a233885285528387205415612560575b505050906000805160206147ec83398151915291519283523392a26001815580f35b6026855260ff84882054161561253e578695949392965b601680548083101561264b578461258d84612cb3565b905490861b1c1633146125aa5750506125a590612f47565b612577565b939094959697989260001994858101908111612639579161201c916125d26125de9594612cb3565b9054911b1c1691612cb3565b825490811561262757506000805160206147ec83398151915295969750019061260961214183612cb3565b555b33855260268252808520805460ff19169055849392868061253e565b634e487b7160e01b8852603190528787fd5b634e487b7160e01b8b52601185528b8bfd5b5050505050909193506000805160206147ec83398151915292945061260b565b338252602e895260648883205410156125155783895261268e8883205433613bb5565b90338352602d8a5288832090858b5289842054602c8c528a85205490612710851160001461279d5761270f19850185811161278a5762093a808e9104945b8d51916126d883612d43565b42835282019283528d8201938452606082019485526080820195865260a08201968752805490600160401b821015612775579061271a91600182018155612bdb565b97909761276057505186555160018601555160028501555186840155518783015551600590910155338952602e8752858920805461275790612f47565b9055888b612515565b9150508f9150808b634e487b7160e01b825252fd5b5050634e487b7160e01b87525060418b528f86fd5b50634e487b7160e01b865260118b528f86fd5b8c86946126cc565b601e546018549154908a51926127ba84612d12565b4284528c84019182528b8401908152606084019185835260808501938452600a54600160401b81101561283f578060016127f79201600a55612c48565b95909561282c575185555160018501555160028401555187830155519088015560195461282390612f47565b6019558c61250e565b5050634e487b7160e01b8652858b528f86fd5b5050634e487b7160e01b865260418b528f86fd5b90516345a5c39960e11b8152fd5b905034610b505781600319360112610b505761287b612baa565b91612884612c1c565b9161288d612d81565b6001600160a01b03938416808652602560205282862054909416156128ef57507fd0c9b7d29c9d78752c4c849829be427bcd906db1676631e06ffeb91590df929391602091848652602583526128e582828820613533565b519015158152a280f35b90516312a3d7e760e31b8152fd5b91905034610b50576020366003190112610b5057813592600a548410156105ff575061292a60a093612c48565b508054926001820154926002830154916003840154930154938151958652602086015284015260608301526080820152f35b905034610b50576020366003190112610b5057816020936001923581528285522001549051908152f35b5050346103d557806003193601126103d5576020906103ce6129a6612baa565b6129ae612bc5565b906142c5565b5050346103d557816003193601126103d557602090601e549051908152f35b5050346103d557816003193601126103d557602090601f549051908152f35b5050346103d557816003193601126103d5576020906103ce614420565b5050346103d55760203660031901126103d55760207fbece956ce1c97a5de8f427535a7bb21d29086be6e5c0d5cf5d9aa0f56e51495d91612a4e612c0d565b612a56612d81565b15159060ff196021541660ff83161760215551908152a180f35b91905034610b505780600319360112610b5057612a8b612baa565b6001600160a01b03168352602d602052808320805460243594908510156105ff575060c093612ab991612bdb565b50805492600182015492600283015490600560038501549385015494015494815196875260208701528501526060840152608083015260a0820152f35b5050346103d557816003193601126103d5576020905160008051602061476c8339815191528152f35b5050346103d55760203660031901126103d55760209181906001600160a01b03612b47612baa565b168152602e845220549051908152f35b849134610b50576020366003190112610b50573563ffffffff60e01b8116809103610b505760209250637965db0b60e01b8114908115612b99575b5015158152f35b6301ffc9a760e01b14905083612b92565b600435906001600160a01b0382168203612bc057565b600080fd5b602435906001600160a01b0382168203612bc057565b8054821015612bf7576000526006602060002091020190600090565b634e487b7160e01b600052603260045260246000fd5b600435908115158203612bc057565b602435908115158203612bc057565b34612bc0576000366003190112612bc05760206040516127108152f35b600a54811015612bf757600a6000526005602060002091020190600090565b6040919493926060820195825260208201520152565b601754811015612bf757601760005260206000200190600090565b601554811015612bf757601560005260206000200190600090565b601654811015612bf757601660005260206000200190600090565b6020908160408183019282815285518094520193019160005b828110612cf5575050505090565b83516001600160a01b031685529381019392810192600101612ce7565b60a081019081106001600160401b03821117612d2d57604052565b634e487b7160e01b600052604160045260246000fd5b60c081019081106001600160401b03821117612d2d57604052565b601f909101601f19168101906001600160401b03821190821017612d2d57604052565b3360009081527fc3eac9ead20d697480ab489ced881761c627fd3281937449e4d4d7fbf9faa2cd602052604090205460008051602061476c8339815191529060ff1615612dcb5750565b6044906040519063e2517d3f60e01b82523360048301526024820152fd5b80600052600160205260406000203360005260205260ff6040600020541615612dcb5750565b906000918083526001602052604083209160018060a01b03169182845260205260ff60408420541615600014612e8a5780835260016020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b906000918083526001602052604083209160018060a01b03169182845260205260ff604084205416600014612e8a578083526001602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b60ff60025416612f1257565b60405163d93c066560e01b8152600490fd5b600260005414612f35576002600055565b604051633ee5aeb560e01b8152600490fd5b6000198114612f565760010190565b634e487b7160e01b600052601160045260246000fd5b6000903382526020906022825260409081842054158015613080575b61307a57612f963382613860565b6001600160a01b0316808452602883528184203385528352818420549390919084156130725781516370a0823160e01b81523060048201528481602481875afa908115613068579086918391613037575b50106130275790818360008051602061470c83398151915293526028855281812033825285528181205561301c8533856130a0565b51928484523393a390565b8151623857a360ea1b8152600490fd5b809250868092503d8311613061575b6130508183612d5e565b810103126103d55785905138612fe7565b503d613046565b83513d84823e3d90fd5b935050505090565b50505090565b506001600160a01b03818116855260248452828520600401541615612f88565b60405163a9059cbb60e01b60208201526001600160a01b03909216602483015260448083019390935291815260808101916001600160401b03831182841017612d2d576130ef926040526130f1565b565b906000602091828151910182855af11561314d576000513d61314457506001600160a01b0381163b155b6131225750565b604051635274afe760e01b81526001600160a01b039091166004820152602490fd5b6001141561311b565b6040513d6000823e3d90fd5b90816020910312612bc057516001600160a01b0381168103612bc05790565b906020908183820312612bc05782516001600160401b0393848211612bc0570181601f82011215612bc0578051938411612d2d578360051b90604051946131c185840187612d5e565b85528380860192820101928311612bc0578301905b8282106131e4575050505090565b81516001600160a01b0381168103612bc05781529083019083016131d6565b919082549060031b9160018060a01b03809116831b921b1916179055565b60175490600160401b821015612d2d5761201c8260016130ef9401601755612c7d565b91908201809211612f5657565b81810292918115918404141715612f5657565b811561326e570490565b634e487b7160e01b600052601260045260246000fd5b91908203918211612f5657565b9080156135045760125481116134f25760018060a01b039182811691600091838352602090602482526040938481209160018301918254916132d281613f75565b156134d1575b6004850180549a808c16156133d7575b50506000805160206147ac83398151915298995061330590614236565b91421015613382575061333d6133459161332b613323428654613284565b865490613251565b90879060018111613371575b50613244565b845490613264565b8255613352835442613244565b90555b61336183601354613244565b60135554908351928352820152a2565b61337c915088613251565b38613337565b9061339b908690600181116133c6575b50855490613264565b905080156133be575b82554260028301556133b7835442613244565b9055613355565b5060016133a4565b6133d1915087613251565b38613392565b839b84601554905b81811061345f575b509b9c6000805160206147ac8339815191529c506133059493929081169190821561342657505081546001600160a01b0319161790555b908a996132e8565b7f0000000000000000000000000000000000000000000000000000000000000000166001600160a01b031991909116179091555061341e565b8360ff8e60258e61346f86612c98565b959054600396871b1c168c525289205460a01c16613496575061349190612f47565b6133df565b6000805160206147ac8339815191529e9f5084939250936133059695946134bd8293612c98565b9054911b1c169e9d509293948192506133e7565b6134da81613221565b8860008051602061478c8339815191528380a26132d8565b604051631fbe179d60e11b8152600490fd5b5060408051600080825260208201526001600160a01b03909216916000805160206147ac8339815191529190a2565b805460ff60a01b191691151560a01b60ff60a01b16919091179055565b90816020910312612bc0575160ff81168103612bc05790565b60018060a01b0380821691600090838252602094602486526040948584209285831693848652602289528786205415613767578286526028895287862085875289528786205496898254948260048501541692831515908161373a575b506136cb575b505050821561369f576001600282015491015490814211156000146136ab576135f6915042613284565b965b871561369f5761361c988698601e54948561361f575b505050505050505050613244565b90565b613655969798999a509161364361363d602293613650979695613251565b94614236565b988a525287205490613251565b613264565b916001811161368a575b508161366a91613bb5565b9150811561368357505b9038808080808080808061360e565b9050613674565b6136989061366a9293613264565b919061365f565b50505050505091505090565b818110156136c2576136bc91613284565b966135f8565b505084966135f8565b60248b518094819363ea7cbff160e01b835260048301525afa879181613707575b506136f9575b89816135cc565b80156136f2579250386136f2565b9091508a81813d8311613733575b61371f8183612d5e565b8101031261372f575190386136ec565b8780fd5b503d613715565b90507f000000000000000000000000000000000000000000000000000000000000000016831415386135c6565b50505050509250505090565b6001600160a01b03918216815291166020820152604081019190915260600190565b60005b60175481101561385c57806137af61380292612c7d565b9060018060a01b03809154600393841b1c169182600052856020936024855260409485600020946137e083876139a5565b9690809682015560024291015583169081613807575b50505050505050612f47565b613798565b613825966138158585613569565b9283613831575b50505050613a7e565b388080858180806137f6565b613851928560005260288152826000209160005252600020918254613244565b90553880808061381c565b5050565b6001600160a01b03919082811690811580158061398a575b61397857156138f357505060005b6017548110156138ee57808361389e6138e993612c7d565b919054600392831b1c169081600052602090602482528560409384600020936138c782866139a5565b9590809582015560024291015589831690816138075750505050505050612f47565b613886565b505050565b9160039260009492948581526024602052604081209361391383866139a5565b968196426002820155015583168061392f575b50505050505050565b61394c9661393d8585613569565b92836139585750505050613a7e565b38808080808080613926565b613851926040928252602860205282822090825260205220918254613244565b60405163dc1669a360e01b8152600490fd5b50826000526024602052846004604060002001541615613878565b9190601e54908115613a6e576139ba90614236565b926002810180548042116139d5575b50506003915001549190565b600183015490600091804210600014613a5057506139f4915042613284565b80613a09575b506003925042905538806139c9565b8254613a1491613251565b670de0b6b3a764000090818102918183041490151715612f5657600393613a3a91613264565b613a48848401918254613244565b9055386139fa565b81811115613a6757613a629250613284565b6139f4565b50506139f4565b9261361c91506003015492614236565b90939260018060a01b0380921692600095848752602090602a825260409384892095821695868a5283528489209160228452858a20549081613ac8575b5050505050505050509050565b613ad3845487613284565b9182613ae0575b50613abb565b602154613af99392829160ff16613b94575b5050613251565b670de0b6b3a76400009180830292830403613b80577ff16749621c2992b34cca23238ae1e06cae2b2dba7b0b5256d35b13667e9afb7596979899613b41613b63938893613264565b9386815560014291015589815260288552818120898252855220918254613244565b905582519182524290820152a38038808080808080808080613ada565b634e487b7160e01b8a52601160045260248afd5b612710925090613ba781613bad93613bb5565b90613251565b043880613af2565b908015613ce65760ff6021541615613c6557613bec9160409182918251948592839263a85bde9d60e01b8452309060048501613773565b03817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa908115613c5b57600091613c2f575b50905090565b82813d8311613c54575b613c438183612d5e565b810103126105ff5750518038613c29565b503d613c39565b513d6000823e3d90fd5b50506040516356fe702d60e01b81526020816004817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa90811561314d57600091613cb8575090565b906020823d8211613cde575b81613cd160209383612d5e565b810103126105ff57505190565b3d9150613cc4565b5050600090565b60ff60215416158015613f6d575b613f6957610fa08083029083159084830414811715612f565760408051633b92eb2360e01b815261271093849004946004926001600160a01b03929091602091828187817f000000000000000000000000000000000000000000000000000000000000000089165afa908115613f4157908591600091613f4c575b50169383519163d2e01b2f60e01b835216908186820152608081602481885afa908115613f4157600091613ec4575b5083815115159182613eb7575b5050613dd1575b5050505050505090808211613dcc575090565b905090565b819060248451809681936370a0823160e01b8352898301525afa918215613c5b5750600091613e8b575b509050858110613e19575050505050805b9038808080808080613db9565b613e239086613251565b9161177092838102938185041490151715613e765783860293868504141715613e615750613e5b9291613e5591613264565b90613244565b90613e0c565b601190634e487b7160e01b6000525260246000fd5b601182634e487b7160e01b6000525260246000fd5b82813d8311613eb0575b613e9f8183612d5e565b810103126105ff5750518038613dfb565b503d613e95565b0151421090508338613db2565b6080813d8211613f39575b81613edc60809383612d5e565b810103126103d55784519160808301906001600160401b03821184831017613f26575090606091865280518352848101518584015285810151868401520151606082015238613da5565b634e487b7160e01b815260418952602490fd5b3d9150613ecf565b84513d6000823e3d90fd5b613f639150843d86116115c6576115b88183612d5e565b38613d76565b5090565b508115613cfb565b6017549060005b828110613f8b57505050600090565b613f9481612c7d565b905460039190911b1c6001600160a01b0390811690831614613fbe57613fb990612f47565b613f7c565b505050600190565b6001600160a01b03908116600090815260246020526040902060040154161561397857565b60018060a01b038092166000918183526020906022825260409485852054156142015781169081855260248352858520602a84528686208587528452868620906003810154906002810154804211806141f6575b614175575b5050858752602c855287872054915461405c91613284565b91826140775750505083526028815283832091835252205490565b87516370a0823160e01b81523060048201529897939591949192828a6024818a5afa998a1561416b57889a61413a575b506140c5916140cc6140d292670de0b6b3a76400009485918a613251565b0491614236565b90613264565b94818102908082048314901517156141265761361c9899613ba76140f99260185490613264565b049486526028815282862091865252832054925081811160001461411e575090613244565b905090613244565b634e487b7160e01b88526011600452602488fd5b9099508281813d8311614164575b6141528183612d5e565b8101031261372f5751986140c56140a7565b503d614148565b85513d8a823e3d90fd5b6001820154908142106000146141d757614190915042613284565b905b811561404457546141a291613251565b670de0b6b3a7640000908181029181830414901517156141265761405c91613e556141d09260185490613264565b9038614044565b808211156141ee576141e891613284565b90614192565b5050876141e8565b50601854151561403f565b1683526028815283832091835252205490565b60ff166012039060ff8211612f5657565b60ff16604d8111612f5657600a0a90565b6001600160a01b03166000818152602b602052604090205460ff1690811561426a575061426561361c91614214565b614225565b60405163313ce56760e01b81529150602090829060049082905afa600091816142a5575b506142995750600190565b61426561361c91614214565b6142be91925060203d811161077d5761076e8183612d5e565b903861428e565b6001600160a01b039080821690811561440157828416916000938385526020926022845260409687872054156143ec576142fe8161448f565b91601e549384156143d5578589526024875260048a8a200154166143c157505086516370a0823160e01b81523060048201528481602481875afa879181614392575b5061438d5750855b806143625750505083526028815283832091835252205490565b916136506143789261361c999795989694613251565b94835260288152838320918352522054613244565b614348565b9091508581813d83116143ba575b6143aa8183612d5e565b8101031261372f57519038614340565b503d6143a0565b61361c989694979593506143789250613569565b505050505083526028815283832091835252205490565b50505083526028815283832091835252205490565b5060005260286020526040600020911660005260205260406000205490565b601454801561446c57600042821161446657506144496144408242613284565b60205490613264565b905b60018201809211612f5657613e5561361c9260205490613251565b9061444b565b5060205461447a8142613264565b9060018201809211612f565761361c91613251565b60405163395f293b60e11b815230600482015291906020836024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa92831561314d576000936144f1575b509161361c9192613bb5565b6020813d821161451c575b8161450960209383612d5e565b81010312611e015751925061361c6144e5565b3d91506144fc565b600b5480151590816145ac575b5061459a5781156145885761458360008051602061480c8339815191529382600b5561455d8484613244565b600c5582600d5580600e556000600f558360105561271060115560405193849384612c67565b0390a1565b60405163346ab43760e11b8152600490fd5b60405163f0aaee6560e01b8152600490fd5b6145ba915060105490613244565b811038614531565b6003548015159081614621575b5061459a5781156145885761458360008051602061480c83398151915293826003556145fb8484613244565b600455826005558060065560006007558360085561271060095560405193849384612c67565b61462f915060085490613244565b8110386145cf565b600b5490818111156146e357600c5490818111156146db5750905b600f5490600d5480841161466f575b506140cc9061361c93613284565b61467b90849394613284565b90600e549161468a8184613251565b9281151591826146c6575b50506146b4576146ab6140cc9261361c95613244565b92935090614661565b60405163f20577e560e01b8152600490fd5b6146d291925084613264565b14153880614695565b905090614652565b5050600e549056feb114240d54ce08081cbd18870dc3b6cd4091bb86ff29d2ad41906c2a2d6723d4540798df468d7b23d11f156fdb954cb19ad414d150722a7b6d55ba369dea792e9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3ded1f3e12429ce88e77b14ddf9c2eb89f0b9e1e0faa7e33a95d0ce1bbc90a1c2f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c570223357f3e4c2c64e71e6ba2eaab9a599bced62f9eb91d2cda610bf41aa8c80ff2cf8268a888ea653a580e40660778ee0c0dabd23a81e8e2c8dcfb938e40982a157d8195c91514091af31f62f596a314af7d5be40146b2f2355969392f055e12e0982fb7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d50792cf7388f234e543a10a68aeb7b96568fb90b55ddc2b2945961c80a3c3a08219e1fee2e38695e60ad3ef8c81759c22d6d7ee56f9b8805363820a50da468a18a1496c3abf9cd93b84db10ae569b57fafa04deeeb7ece4167616ad50e35bc56e3042bda52a74ddb3e9f32af4781d52bf053f705dba3c9e09f402f6fb9446474da264697066735822122095fe6839c354aad5e643dc86404e47f8e2f7ea532b863b2a2bd58e284a64739164736f6c634300081400332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d";
|
|
18
18
|
static readonly abi: readonly [{
|
|
19
19
|
readonly inputs: readonly [{
|
|
20
20
|
readonly internalType: "address";
|
|
@@ -48,32 +48,28 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
48
48
|
readonly name: "AccessControlUnauthorizedAccount";
|
|
49
49
|
readonly type: "error";
|
|
50
50
|
}, {
|
|
51
|
-
readonly inputs: readonly [
|
|
52
|
-
|
|
53
|
-
readonly name: "target";
|
|
54
|
-
readonly type: "address";
|
|
55
|
-
}];
|
|
56
|
-
readonly name: "AddressEmptyCode";
|
|
51
|
+
readonly inputs: readonly [];
|
|
52
|
+
readonly name: "AlreadyPaused";
|
|
57
53
|
readonly type: "error";
|
|
58
54
|
}, {
|
|
59
|
-
readonly inputs: readonly [
|
|
60
|
-
|
|
61
|
-
readonly name: "account";
|
|
62
|
-
readonly type: "address";
|
|
63
|
-
}];
|
|
64
|
-
readonly name: "AddressInsufficientBalance";
|
|
55
|
+
readonly inputs: readonly [];
|
|
56
|
+
readonly name: "DistributorAlreadyAdded";
|
|
65
57
|
readonly type: "error";
|
|
66
58
|
}, {
|
|
67
59
|
readonly inputs: readonly [];
|
|
68
|
-
readonly name: "
|
|
60
|
+
readonly name: "DistributorNotAdded";
|
|
69
61
|
readonly type: "error";
|
|
70
62
|
}, {
|
|
71
63
|
readonly inputs: readonly [];
|
|
72
|
-
readonly name: "
|
|
64
|
+
readonly name: "DistributorNotApproved";
|
|
73
65
|
readonly type: "error";
|
|
74
66
|
}, {
|
|
75
67
|
readonly inputs: readonly [];
|
|
76
|
-
readonly name: "
|
|
68
|
+
readonly name: "EmissionCapExceeded";
|
|
69
|
+
readonly type: "error";
|
|
70
|
+
}, {
|
|
71
|
+
readonly inputs: readonly [];
|
|
72
|
+
readonly name: "EnforcedPause";
|
|
77
73
|
readonly type: "error";
|
|
78
74
|
}, {
|
|
79
75
|
readonly inputs: readonly [];
|
|
@@ -81,7 +77,11 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
81
77
|
readonly type: "error";
|
|
82
78
|
}, {
|
|
83
79
|
readonly inputs: readonly [];
|
|
84
|
-
readonly name: "
|
|
80
|
+
readonly name: "FailedToGetTokenDecimals";
|
|
81
|
+
readonly type: "error";
|
|
82
|
+
}, {
|
|
83
|
+
readonly inputs: readonly [];
|
|
84
|
+
readonly name: "GaugeNotActive";
|
|
85
85
|
readonly type: "error";
|
|
86
86
|
}, {
|
|
87
87
|
readonly inputs: readonly [];
|
|
@@ -89,20 +89,52 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
89
89
|
readonly type: "error";
|
|
90
90
|
}, {
|
|
91
91
|
readonly inputs: readonly [];
|
|
92
|
-
readonly name: "
|
|
92
|
+
readonly name: "InsufficientRewardTokenBalance";
|
|
93
|
+
readonly type: "error";
|
|
94
|
+
}, {
|
|
95
|
+
readonly inputs: readonly [];
|
|
96
|
+
readonly name: "InsufficientStakedBalance";
|
|
97
|
+
readonly type: "error";
|
|
98
|
+
}, {
|
|
99
|
+
readonly inputs: readonly [];
|
|
100
|
+
readonly name: "InvalidAddress";
|
|
93
101
|
readonly type: "error";
|
|
94
102
|
}, {
|
|
95
103
|
readonly inputs: readonly [];
|
|
96
104
|
readonly name: "InvalidAmount";
|
|
97
105
|
readonly type: "error";
|
|
106
|
+
}, {
|
|
107
|
+
readonly inputs: readonly [];
|
|
108
|
+
readonly name: "InvalidCheckpointIndex";
|
|
109
|
+
readonly type: "error";
|
|
110
|
+
}, {
|
|
111
|
+
readonly inputs: readonly [];
|
|
112
|
+
readonly name: "InvalidDistributor";
|
|
113
|
+
readonly type: "error";
|
|
114
|
+
}, {
|
|
115
|
+
readonly inputs: readonly [];
|
|
116
|
+
readonly name: "InvalidPeriod";
|
|
117
|
+
readonly type: "error";
|
|
118
|
+
}, {
|
|
119
|
+
readonly inputs: readonly [];
|
|
120
|
+
readonly name: "InvalidToken";
|
|
121
|
+
readonly type: "error";
|
|
98
122
|
}, {
|
|
99
123
|
readonly inputs: readonly [];
|
|
100
124
|
readonly name: "InvalidWeight";
|
|
101
125
|
readonly type: "error";
|
|
126
|
+
}, {
|
|
127
|
+
readonly inputs: readonly [];
|
|
128
|
+
readonly name: "NoDistributorSet";
|
|
129
|
+
readonly type: "error";
|
|
102
130
|
}, {
|
|
103
131
|
readonly inputs: readonly [];
|
|
104
132
|
readonly name: "NoVotingPower";
|
|
105
133
|
readonly type: "error";
|
|
134
|
+
}, {
|
|
135
|
+
readonly inputs: readonly [];
|
|
136
|
+
readonly name: "NotPaused";
|
|
137
|
+
readonly type: "error";
|
|
106
138
|
}, {
|
|
107
139
|
readonly inputs: readonly [];
|
|
108
140
|
readonly name: "PeriodNotElapsed";
|
|
@@ -127,6 +159,18 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
127
159
|
}];
|
|
128
160
|
readonly name: "SafeERC20FailedOperation";
|
|
129
161
|
readonly type: "error";
|
|
162
|
+
}, {
|
|
163
|
+
readonly inputs: readonly [];
|
|
164
|
+
readonly name: "TokenAlreadyAdded";
|
|
165
|
+
readonly type: "error";
|
|
166
|
+
}, {
|
|
167
|
+
readonly inputs: readonly [];
|
|
168
|
+
readonly name: "TokenAlreadyInitialized";
|
|
169
|
+
readonly type: "error";
|
|
170
|
+
}, {
|
|
171
|
+
readonly inputs: readonly [];
|
|
172
|
+
readonly name: "TokenNotAdded";
|
|
173
|
+
readonly type: "error";
|
|
130
174
|
}, {
|
|
131
175
|
readonly inputs: readonly [];
|
|
132
176
|
readonly name: "UnauthorizedCaller";
|
|
@@ -137,16 +181,26 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
137
181
|
readonly type: "error";
|
|
138
182
|
}, {
|
|
139
183
|
readonly inputs: readonly [];
|
|
140
|
-
readonly name: "
|
|
184
|
+
readonly name: "WeightUpdateTooEarly";
|
|
141
185
|
readonly type: "error";
|
|
142
186
|
}, {
|
|
143
187
|
readonly inputs: readonly [];
|
|
144
|
-
readonly name: "
|
|
188
|
+
readonly name: "ZeroDuration";
|
|
145
189
|
readonly type: "error";
|
|
146
190
|
}, {
|
|
147
191
|
readonly inputs: readonly [];
|
|
148
192
|
readonly name: "ZeroWeight";
|
|
149
193
|
readonly type: "error";
|
|
194
|
+
}, {
|
|
195
|
+
readonly anonymous: false;
|
|
196
|
+
readonly inputs: readonly [{
|
|
197
|
+
readonly indexed: false;
|
|
198
|
+
readonly internalType: "bool";
|
|
199
|
+
readonly name: "enabled";
|
|
200
|
+
readonly type: "bool";
|
|
201
|
+
}];
|
|
202
|
+
readonly name: "BoostAmplificationToggled";
|
|
203
|
+
readonly type: "event";
|
|
150
204
|
}, {
|
|
151
205
|
readonly anonymous: false;
|
|
152
206
|
readonly inputs: readonly [{
|
|
@@ -192,6 +246,56 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
192
246
|
}];
|
|
193
247
|
readonly name: "DistributionCapUpdated";
|
|
194
248
|
readonly type: "event";
|
|
249
|
+
}, {
|
|
250
|
+
readonly anonymous: false;
|
|
251
|
+
readonly inputs: readonly [{
|
|
252
|
+
readonly indexed: true;
|
|
253
|
+
readonly internalType: "address";
|
|
254
|
+
readonly name: "distributor";
|
|
255
|
+
readonly type: "address";
|
|
256
|
+
}, {
|
|
257
|
+
readonly indexed: false;
|
|
258
|
+
readonly internalType: "bool";
|
|
259
|
+
readonly name: "isApproved";
|
|
260
|
+
readonly type: "bool";
|
|
261
|
+
}];
|
|
262
|
+
readonly name: "DistributorApprovalUpdated";
|
|
263
|
+
readonly type: "event";
|
|
264
|
+
}, {
|
|
265
|
+
readonly anonymous: false;
|
|
266
|
+
readonly inputs: readonly [{
|
|
267
|
+
readonly indexed: true;
|
|
268
|
+
readonly internalType: "address";
|
|
269
|
+
readonly name: "distributor";
|
|
270
|
+
readonly type: "address";
|
|
271
|
+
}, {
|
|
272
|
+
readonly indexed: false;
|
|
273
|
+
readonly internalType: "bool";
|
|
274
|
+
readonly name: "distributorAdded";
|
|
275
|
+
readonly type: "bool";
|
|
276
|
+
}];
|
|
277
|
+
readonly name: "DistributorUpdated";
|
|
278
|
+
readonly type: "event";
|
|
279
|
+
}, {
|
|
280
|
+
readonly anonymous: false;
|
|
281
|
+
readonly inputs: readonly [{
|
|
282
|
+
readonly indexed: false;
|
|
283
|
+
readonly internalType: "bool";
|
|
284
|
+
readonly name: "paused";
|
|
285
|
+
readonly type: "bool";
|
|
286
|
+
}];
|
|
287
|
+
readonly name: "EmergencyPauseUpdated";
|
|
288
|
+
readonly type: "event";
|
|
289
|
+
}, {
|
|
290
|
+
readonly anonymous: false;
|
|
291
|
+
readonly inputs: readonly [{
|
|
292
|
+
readonly indexed: false;
|
|
293
|
+
readonly internalType: "uint256";
|
|
294
|
+
readonly name: "newCap";
|
|
295
|
+
readonly type: "uint256";
|
|
296
|
+
}];
|
|
297
|
+
readonly name: "EmissionCapUpdated";
|
|
298
|
+
readonly type: "event";
|
|
195
299
|
}, {
|
|
196
300
|
readonly anonymous: false;
|
|
197
301
|
readonly inputs: readonly [{
|
|
@@ -232,6 +336,16 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
232
336
|
}];
|
|
233
337
|
readonly name: "PeriodCreated";
|
|
234
338
|
readonly type: "event";
|
|
339
|
+
}, {
|
|
340
|
+
readonly anonymous: false;
|
|
341
|
+
readonly inputs: readonly [{
|
|
342
|
+
readonly indexed: false;
|
|
343
|
+
readonly internalType: "uint256";
|
|
344
|
+
readonly name: "newDuration";
|
|
345
|
+
readonly type: "uint256";
|
|
346
|
+
}];
|
|
347
|
+
readonly name: "PeriodDurationUpdated";
|
|
348
|
+
readonly type: "event";
|
|
235
349
|
}, {
|
|
236
350
|
readonly anonymous: false;
|
|
237
351
|
readonly inputs: readonly [{
|
|
@@ -250,10 +364,20 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
250
364
|
}, {
|
|
251
365
|
readonly anonymous: false;
|
|
252
366
|
readonly inputs: readonly [{
|
|
367
|
+
readonly indexed: true;
|
|
368
|
+
readonly internalType: "address";
|
|
369
|
+
readonly name: "token";
|
|
370
|
+
readonly type: "address";
|
|
371
|
+
}, {
|
|
253
372
|
readonly indexed: false;
|
|
254
373
|
readonly internalType: "uint256";
|
|
255
374
|
readonly name: "amount";
|
|
256
375
|
readonly type: "uint256";
|
|
376
|
+
}, {
|
|
377
|
+
readonly indexed: false;
|
|
378
|
+
readonly internalType: "uint256";
|
|
379
|
+
readonly name: "rewardRate";
|
|
380
|
+
readonly type: "uint256";
|
|
257
381
|
}];
|
|
258
382
|
readonly name: "RewardNotified";
|
|
259
383
|
readonly type: "event";
|
|
@@ -264,10 +388,15 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
264
388
|
readonly internalType: "address";
|
|
265
389
|
readonly name: "user";
|
|
266
390
|
readonly type: "address";
|
|
391
|
+
}, {
|
|
392
|
+
readonly indexed: true;
|
|
393
|
+
readonly internalType: "address";
|
|
394
|
+
readonly name: "token";
|
|
395
|
+
readonly type: "address";
|
|
267
396
|
}, {
|
|
268
397
|
readonly indexed: false;
|
|
269
398
|
readonly internalType: "uint256";
|
|
270
|
-
readonly name: "
|
|
399
|
+
readonly name: "amount";
|
|
271
400
|
readonly type: "uint256";
|
|
272
401
|
}];
|
|
273
402
|
readonly name: "RewardPaid";
|
|
@@ -277,15 +406,10 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
277
406
|
readonly inputs: readonly [{
|
|
278
407
|
readonly indexed: true;
|
|
279
408
|
readonly internalType: "address";
|
|
280
|
-
readonly name: "
|
|
409
|
+
readonly name: "token";
|
|
281
410
|
readonly type: "address";
|
|
282
|
-
}, {
|
|
283
|
-
readonly indexed: false;
|
|
284
|
-
readonly internalType: "uint256";
|
|
285
|
-
readonly name: "reward";
|
|
286
|
-
readonly type: "uint256";
|
|
287
411
|
}];
|
|
288
|
-
readonly name: "
|
|
412
|
+
readonly name: "RewardTokenAdded";
|
|
289
413
|
readonly type: "event";
|
|
290
414
|
}, {
|
|
291
415
|
readonly anonymous: false;
|
|
@@ -372,6 +496,46 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
372
496
|
}];
|
|
373
497
|
readonly name: "Unpaused";
|
|
374
498
|
readonly type: "event";
|
|
499
|
+
}, {
|
|
500
|
+
readonly anonymous: false;
|
|
501
|
+
readonly inputs: readonly [{
|
|
502
|
+
readonly indexed: true;
|
|
503
|
+
readonly internalType: "address";
|
|
504
|
+
readonly name: "user";
|
|
505
|
+
readonly type: "address";
|
|
506
|
+
}, {
|
|
507
|
+
readonly indexed: true;
|
|
508
|
+
readonly internalType: "address";
|
|
509
|
+
readonly name: "token";
|
|
510
|
+
readonly type: "address";
|
|
511
|
+
}, {
|
|
512
|
+
readonly indexed: false;
|
|
513
|
+
readonly internalType: "uint256";
|
|
514
|
+
readonly name: "newIntegral";
|
|
515
|
+
readonly type: "uint256";
|
|
516
|
+
}, {
|
|
517
|
+
readonly indexed: false;
|
|
518
|
+
readonly internalType: "uint256";
|
|
519
|
+
readonly name: "timestamp";
|
|
520
|
+
readonly type: "uint256";
|
|
521
|
+
}];
|
|
522
|
+
readonly name: "UserRewardDataUpdated";
|
|
523
|
+
readonly type: "event";
|
|
524
|
+
}, {
|
|
525
|
+
readonly anonymous: false;
|
|
526
|
+
readonly inputs: readonly [{
|
|
527
|
+
readonly indexed: true;
|
|
528
|
+
readonly internalType: "address";
|
|
529
|
+
readonly name: "user";
|
|
530
|
+
readonly type: "address";
|
|
531
|
+
}, {
|
|
532
|
+
readonly indexed: false;
|
|
533
|
+
readonly internalType: "uint256";
|
|
534
|
+
readonly name: "timestamp";
|
|
535
|
+
readonly type: "uint256";
|
|
536
|
+
}];
|
|
537
|
+
readonly name: "UserRewardsUpdated";
|
|
538
|
+
readonly type: "event";
|
|
375
539
|
}, {
|
|
376
540
|
readonly anonymous: false;
|
|
377
541
|
readonly inputs: readonly [{
|
|
@@ -387,6 +551,21 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
387
551
|
}];
|
|
388
552
|
readonly name: "Withdrawn";
|
|
389
553
|
readonly type: "event";
|
|
554
|
+
}, {
|
|
555
|
+
readonly anonymous: false;
|
|
556
|
+
readonly inputs: readonly [{
|
|
557
|
+
readonly indexed: true;
|
|
558
|
+
readonly internalType: "address";
|
|
559
|
+
readonly name: "user";
|
|
560
|
+
readonly type: "address";
|
|
561
|
+
}, {
|
|
562
|
+
readonly indexed: false;
|
|
563
|
+
readonly internalType: "uint256";
|
|
564
|
+
readonly name: "newWorkingBalance";
|
|
565
|
+
readonly type: "uint256";
|
|
566
|
+
}];
|
|
567
|
+
readonly name: "WorkingBalanceUpdated";
|
|
568
|
+
readonly type: "event";
|
|
390
569
|
}, {
|
|
391
570
|
readonly inputs: readonly [];
|
|
392
571
|
readonly name: "CONTROLLER_ROLE";
|
|
@@ -429,17 +608,17 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
429
608
|
readonly type: "function";
|
|
430
609
|
}, {
|
|
431
610
|
readonly inputs: readonly [];
|
|
432
|
-
readonly name: "
|
|
611
|
+
readonly name: "GAUGE_ADMIN";
|
|
433
612
|
readonly outputs: readonly [{
|
|
434
|
-
readonly internalType: "
|
|
613
|
+
readonly internalType: "bytes32";
|
|
435
614
|
readonly name: "";
|
|
436
|
-
readonly type: "
|
|
615
|
+
readonly type: "bytes32";
|
|
437
616
|
}];
|
|
438
617
|
readonly stateMutability: "view";
|
|
439
618
|
readonly type: "function";
|
|
440
619
|
}, {
|
|
441
620
|
readonly inputs: readonly [];
|
|
442
|
-
readonly name: "
|
|
621
|
+
readonly name: "MAX_CHECKPOINTS";
|
|
443
622
|
readonly outputs: readonly [{
|
|
444
623
|
readonly internalType: "uint256";
|
|
445
624
|
readonly name: "";
|
|
@@ -449,7 +628,7 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
449
628
|
readonly type: "function";
|
|
450
629
|
}, {
|
|
451
630
|
readonly inputs: readonly [];
|
|
452
|
-
readonly name: "
|
|
631
|
+
readonly name: "MAX_VOTE_WEIGHT";
|
|
453
632
|
readonly outputs: readonly [{
|
|
454
633
|
readonly internalType: "uint256";
|
|
455
634
|
readonly name: "";
|
|
@@ -459,7 +638,7 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
459
638
|
readonly type: "function";
|
|
460
639
|
}, {
|
|
461
640
|
readonly inputs: readonly [];
|
|
462
|
-
readonly name: "
|
|
641
|
+
readonly name: "MAX_WEEKLY_EMISSION";
|
|
463
642
|
readonly outputs: readonly [{
|
|
464
643
|
readonly internalType: "uint256";
|
|
465
644
|
readonly name: "";
|
|
@@ -503,81 +682,56 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
503
682
|
readonly type: "function";
|
|
504
683
|
}, {
|
|
505
684
|
readonly inputs: readonly [];
|
|
506
|
-
readonly name: "
|
|
685
|
+
readonly name: "boostAmplificationEnabled";
|
|
507
686
|
readonly outputs: readonly [{
|
|
508
|
-
readonly
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
readonly type: "uint256";
|
|
512
|
-
}, {
|
|
513
|
-
readonly internalType: "uint256";
|
|
514
|
-
readonly name: "endTime";
|
|
515
|
-
readonly type: "uint256";
|
|
516
|
-
}, {
|
|
517
|
-
readonly internalType: "uint256";
|
|
518
|
-
readonly name: "lastUpdateTime";
|
|
519
|
-
readonly type: "uint256";
|
|
520
|
-
}, {
|
|
521
|
-
readonly internalType: "uint256";
|
|
522
|
-
readonly name: "value";
|
|
523
|
-
readonly type: "uint256";
|
|
524
|
-
}, {
|
|
525
|
-
readonly internalType: "uint256";
|
|
526
|
-
readonly name: "weightedSum";
|
|
527
|
-
readonly type: "uint256";
|
|
528
|
-
}, {
|
|
529
|
-
readonly internalType: "uint256";
|
|
530
|
-
readonly name: "totalDuration";
|
|
531
|
-
readonly type: "uint256";
|
|
532
|
-
}, {
|
|
533
|
-
readonly internalType: "uint256";
|
|
534
|
-
readonly name: "weight";
|
|
535
|
-
readonly type: "uint256";
|
|
536
|
-
}];
|
|
537
|
-
readonly internalType: "struct TimeWeightedAverage.Period";
|
|
538
|
-
readonly name: "boostPeriod";
|
|
539
|
-
readonly type: "tuple";
|
|
540
|
-
}, {
|
|
541
|
-
readonly internalType: "uint256";
|
|
542
|
-
readonly name: "maxBoost";
|
|
543
|
-
readonly type: "uint256";
|
|
544
|
-
}, {
|
|
545
|
-
readonly internalType: "uint256";
|
|
546
|
-
readonly name: "minBoost";
|
|
547
|
-
readonly type: "uint256";
|
|
548
|
-
}, {
|
|
549
|
-
readonly internalType: "uint256";
|
|
550
|
-
readonly name: "boostWindow";
|
|
551
|
-
readonly type: "uint256";
|
|
552
|
-
}, {
|
|
553
|
-
readonly internalType: "uint256";
|
|
554
|
-
readonly name: "baseWeight";
|
|
555
|
-
readonly type: "uint256";
|
|
556
|
-
}, {
|
|
557
|
-
readonly internalType: "uint256";
|
|
558
|
-
readonly name: "votingPower";
|
|
559
|
-
readonly type: "uint256";
|
|
560
|
-
}, {
|
|
561
|
-
readonly internalType: "uint256";
|
|
562
|
-
readonly name: "totalWeight";
|
|
563
|
-
readonly type: "uint256";
|
|
564
|
-
}, {
|
|
565
|
-
readonly internalType: "uint256";
|
|
566
|
-
readonly name: "totalVotingPower";
|
|
567
|
-
readonly type: "uint256";
|
|
687
|
+
readonly internalType: "bool";
|
|
688
|
+
readonly name: "";
|
|
689
|
+
readonly type: "bool";
|
|
568
690
|
}];
|
|
569
691
|
readonly stateMutability: "view";
|
|
570
692
|
readonly type: "function";
|
|
571
693
|
}, {
|
|
572
|
-
readonly inputs: readonly [
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
readonly
|
|
579
|
-
|
|
580
|
-
|
|
694
|
+
readonly inputs: readonly [{
|
|
695
|
+
readonly internalType: "address";
|
|
696
|
+
readonly name: "token";
|
|
697
|
+
readonly type: "address";
|
|
698
|
+
}];
|
|
699
|
+
readonly name: "claimRewardToken";
|
|
700
|
+
readonly outputs: readonly [{
|
|
701
|
+
readonly internalType: "uint256";
|
|
702
|
+
readonly name: "reward";
|
|
703
|
+
readonly type: "uint256";
|
|
704
|
+
}];
|
|
705
|
+
readonly stateMutability: "nonpayable";
|
|
706
|
+
readonly type: "function";
|
|
707
|
+
}, {
|
|
708
|
+
readonly inputs: readonly [];
|
|
709
|
+
readonly name: "claimRewards";
|
|
710
|
+
readonly outputs: readonly [];
|
|
711
|
+
readonly stateMutability: "nonpayable";
|
|
712
|
+
readonly type: "function";
|
|
713
|
+
}, {
|
|
714
|
+
readonly inputs: readonly [{
|
|
715
|
+
readonly internalType: "address";
|
|
716
|
+
readonly name: "token";
|
|
717
|
+
readonly type: "address";
|
|
718
|
+
}, {
|
|
719
|
+
readonly internalType: "address";
|
|
720
|
+
readonly name: "user";
|
|
721
|
+
readonly type: "address";
|
|
722
|
+
}];
|
|
723
|
+
readonly name: "claimedRewards";
|
|
724
|
+
readonly outputs: readonly [{
|
|
725
|
+
readonly internalType: "uint256";
|
|
726
|
+
readonly name: "";
|
|
727
|
+
readonly type: "uint256";
|
|
728
|
+
}];
|
|
729
|
+
readonly stateMutability: "view";
|
|
730
|
+
readonly type: "function";
|
|
731
|
+
}, {
|
|
732
|
+
readonly inputs: readonly [];
|
|
733
|
+
readonly name: "controller";
|
|
734
|
+
readonly outputs: readonly [{
|
|
581
735
|
readonly internalType: "address";
|
|
582
736
|
readonly name: "";
|
|
583
737
|
readonly type: "address";
|
|
@@ -597,7 +751,43 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
597
751
|
}, {
|
|
598
752
|
readonly inputs: readonly [{
|
|
599
753
|
readonly internalType: "address";
|
|
600
|
-
readonly name: "
|
|
754
|
+
readonly name: "";
|
|
755
|
+
readonly type: "address";
|
|
756
|
+
}];
|
|
757
|
+
readonly name: "distributors";
|
|
758
|
+
readonly outputs: readonly [{
|
|
759
|
+
readonly internalType: "address";
|
|
760
|
+
readonly name: "distributor";
|
|
761
|
+
readonly type: "address";
|
|
762
|
+
}, {
|
|
763
|
+
readonly internalType: "bool";
|
|
764
|
+
readonly name: "isApproved";
|
|
765
|
+
readonly type: "bool";
|
|
766
|
+
}];
|
|
767
|
+
readonly stateMutability: "view";
|
|
768
|
+
readonly type: "function";
|
|
769
|
+
}, {
|
|
770
|
+
readonly inputs: readonly [{
|
|
771
|
+
readonly internalType: "uint256";
|
|
772
|
+
readonly name: "";
|
|
773
|
+
readonly type: "uint256";
|
|
774
|
+
}];
|
|
775
|
+
readonly name: "distributorsList";
|
|
776
|
+
readonly outputs: readonly [{
|
|
777
|
+
readonly internalType: "address";
|
|
778
|
+
readonly name: "";
|
|
779
|
+
readonly type: "address";
|
|
780
|
+
}];
|
|
781
|
+
readonly stateMutability: "view";
|
|
782
|
+
readonly type: "function";
|
|
783
|
+
}, {
|
|
784
|
+
readonly inputs: readonly [{
|
|
785
|
+
readonly internalType: "address";
|
|
786
|
+
readonly name: "token";
|
|
787
|
+
readonly type: "address";
|
|
788
|
+
}, {
|
|
789
|
+
readonly internalType: "address";
|
|
790
|
+
readonly name: "user";
|
|
601
791
|
readonly type: "address";
|
|
602
792
|
}];
|
|
603
793
|
readonly name: "earned";
|
|
@@ -608,6 +798,24 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
608
798
|
}];
|
|
609
799
|
readonly stateMutability: "view";
|
|
610
800
|
readonly type: "function";
|
|
801
|
+
}, {
|
|
802
|
+
readonly inputs: readonly [{
|
|
803
|
+
readonly internalType: "address";
|
|
804
|
+
readonly name: "token";
|
|
805
|
+
readonly type: "address";
|
|
806
|
+
}, {
|
|
807
|
+
readonly internalType: "address";
|
|
808
|
+
readonly name: "user";
|
|
809
|
+
readonly type: "address";
|
|
810
|
+
}];
|
|
811
|
+
readonly name: "earnedRewards";
|
|
812
|
+
readonly outputs: readonly [{
|
|
813
|
+
readonly internalType: "uint256";
|
|
814
|
+
readonly name: "";
|
|
815
|
+
readonly type: "uint256";
|
|
816
|
+
}];
|
|
817
|
+
readonly stateMutability: "view";
|
|
818
|
+
readonly type: "function";
|
|
611
819
|
}, {
|
|
612
820
|
readonly inputs: readonly [{
|
|
613
821
|
readonly internalType: "address";
|
|
@@ -624,33 +832,55 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
624
832
|
readonly type: "function";
|
|
625
833
|
}, {
|
|
626
834
|
readonly inputs: readonly [];
|
|
627
|
-
readonly name: "
|
|
835
|
+
readonly name: "gaugeController";
|
|
628
836
|
readonly outputs: readonly [{
|
|
629
|
-
readonly internalType: "
|
|
837
|
+
readonly internalType: "contract IGaugeController";
|
|
630
838
|
readonly name: "";
|
|
631
|
-
readonly type: "
|
|
839
|
+
readonly type: "address";
|
|
632
840
|
}];
|
|
633
841
|
readonly stateMutability: "view";
|
|
634
842
|
readonly type: "function";
|
|
635
843
|
}, {
|
|
636
|
-
readonly inputs: readonly [
|
|
637
|
-
|
|
844
|
+
readonly inputs: readonly [{
|
|
845
|
+
readonly internalType: "address";
|
|
846
|
+
readonly name: "token";
|
|
847
|
+
readonly type: "address";
|
|
848
|
+
}];
|
|
849
|
+
readonly name: "getDecimalAdjustment";
|
|
638
850
|
readonly outputs: readonly [{
|
|
639
851
|
readonly internalType: "uint256";
|
|
640
852
|
readonly name: "";
|
|
641
853
|
readonly type: "uint256";
|
|
642
854
|
}];
|
|
643
|
-
readonly stateMutability: "
|
|
855
|
+
readonly stateMutability: "view";
|
|
856
|
+
readonly type: "function";
|
|
857
|
+
}, {
|
|
858
|
+
readonly inputs: readonly [{
|
|
859
|
+
readonly internalType: "address";
|
|
860
|
+
readonly name: "distributor";
|
|
861
|
+
readonly type: "address";
|
|
862
|
+
}];
|
|
863
|
+
readonly name: "getDistributorApproval";
|
|
864
|
+
readonly outputs: readonly [{
|
|
865
|
+
readonly internalType: "bool";
|
|
866
|
+
readonly name: "";
|
|
867
|
+
readonly type: "bool";
|
|
868
|
+
}];
|
|
869
|
+
readonly stateMutability: "view";
|
|
644
870
|
readonly type: "function";
|
|
645
871
|
}, {
|
|
646
872
|
readonly inputs: readonly [];
|
|
647
|
-
readonly name: "
|
|
648
|
-
readonly outputs: readonly [
|
|
649
|
-
|
|
873
|
+
readonly name: "getDistributors";
|
|
874
|
+
readonly outputs: readonly [{
|
|
875
|
+
readonly internalType: "address[]";
|
|
876
|
+
readonly name: "";
|
|
877
|
+
readonly type: "address[]";
|
|
878
|
+
}];
|
|
879
|
+
readonly stateMutability: "view";
|
|
650
880
|
readonly type: "function";
|
|
651
881
|
}, {
|
|
652
882
|
readonly inputs: readonly [];
|
|
653
|
-
readonly name: "
|
|
883
|
+
readonly name: "getNextPeriodTime";
|
|
654
884
|
readonly outputs: readonly [{
|
|
655
885
|
readonly internalType: "uint256";
|
|
656
886
|
readonly name: "";
|
|
@@ -658,6 +888,16 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
658
888
|
}];
|
|
659
889
|
readonly stateMutability: "view";
|
|
660
890
|
readonly type: "function";
|
|
891
|
+
}, {
|
|
892
|
+
readonly inputs: readonly [];
|
|
893
|
+
readonly name: "getRewardTokens";
|
|
894
|
+
readonly outputs: readonly [{
|
|
895
|
+
readonly internalType: "address[]";
|
|
896
|
+
readonly name: "";
|
|
897
|
+
readonly type: "address[]";
|
|
898
|
+
}];
|
|
899
|
+
readonly stateMutability: "view";
|
|
900
|
+
readonly type: "function";
|
|
661
901
|
}, {
|
|
662
902
|
readonly inputs: readonly [{
|
|
663
903
|
readonly internalType: "bytes32";
|
|
@@ -673,18 +913,12 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
673
913
|
readonly stateMutability: "view";
|
|
674
914
|
readonly type: "function";
|
|
675
915
|
}, {
|
|
676
|
-
readonly inputs: readonly [
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
readonly
|
|
680
|
-
readonly name: "";
|
|
681
|
-
readonly type: "uint256";
|
|
916
|
+
readonly inputs: readonly [{
|
|
917
|
+
readonly internalType: "address";
|
|
918
|
+
readonly name: "account";
|
|
919
|
+
readonly type: "address";
|
|
682
920
|
}];
|
|
683
|
-
readonly
|
|
684
|
-
readonly type: "function";
|
|
685
|
-
}, {
|
|
686
|
-
readonly inputs: readonly [];
|
|
687
|
-
readonly name: "getTotalWeight";
|
|
921
|
+
readonly name: "getUserWeight";
|
|
688
922
|
readonly outputs: readonly [{
|
|
689
923
|
readonly internalType: "uint256";
|
|
690
924
|
readonly name: "";
|
|
@@ -698,7 +932,7 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
698
932
|
readonly name: "account";
|
|
699
933
|
readonly type: "address";
|
|
700
934
|
}];
|
|
701
|
-
readonly name: "
|
|
935
|
+
readonly name: "getWorkingBalance";
|
|
702
936
|
readonly outputs: readonly [{
|
|
703
937
|
readonly internalType: "uint256";
|
|
704
938
|
readonly name: "";
|
|
@@ -739,12 +973,8 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
739
973
|
readonly stateMutability: "view";
|
|
740
974
|
readonly type: "function";
|
|
741
975
|
}, {
|
|
742
|
-
readonly inputs: readonly [
|
|
743
|
-
|
|
744
|
-
readonly name: "";
|
|
745
|
-
readonly type: "address";
|
|
746
|
-
}];
|
|
747
|
-
readonly name: "lastClaimTime";
|
|
976
|
+
readonly inputs: readonly [];
|
|
977
|
+
readonly name: "historicalCheckpointCount";
|
|
748
978
|
readonly outputs: readonly [{
|
|
749
979
|
readonly internalType: "uint256";
|
|
750
980
|
readonly name: "";
|
|
@@ -753,15 +983,49 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
753
983
|
readonly stateMutability: "view";
|
|
754
984
|
readonly type: "function";
|
|
755
985
|
}, {
|
|
756
|
-
readonly inputs: readonly [
|
|
757
|
-
readonly name: "lastTimeRewardApplicable";
|
|
758
|
-
readonly outputs: readonly [{
|
|
986
|
+
readonly inputs: readonly [{
|
|
759
987
|
readonly internalType: "uint256";
|
|
760
988
|
readonly name: "";
|
|
761
989
|
readonly type: "uint256";
|
|
762
990
|
}];
|
|
991
|
+
readonly name: "historicalCheckpoints";
|
|
992
|
+
readonly outputs: readonly [{
|
|
993
|
+
readonly internalType: "uint256";
|
|
994
|
+
readonly name: "timestamp";
|
|
995
|
+
readonly type: "uint256";
|
|
996
|
+
}, {
|
|
997
|
+
readonly internalType: "uint256";
|
|
998
|
+
readonly name: "totalSupply";
|
|
999
|
+
readonly type: "uint256";
|
|
1000
|
+
}, {
|
|
1001
|
+
readonly internalType: "uint256";
|
|
1002
|
+
readonly name: "workingSupply";
|
|
1003
|
+
readonly type: "uint256";
|
|
1004
|
+
}, {
|
|
1005
|
+
readonly internalType: "uint256";
|
|
1006
|
+
readonly name: "rewardPerToken";
|
|
1007
|
+
readonly type: "uint256";
|
|
1008
|
+
}, {
|
|
1009
|
+
readonly internalType: "uint256";
|
|
1010
|
+
readonly name: "rewardRate";
|
|
1011
|
+
readonly type: "uint256";
|
|
1012
|
+
}];
|
|
763
1013
|
readonly stateMutability: "view";
|
|
764
1014
|
readonly type: "function";
|
|
1015
|
+
}, {
|
|
1016
|
+
readonly inputs: readonly [{
|
|
1017
|
+
readonly internalType: "address";
|
|
1018
|
+
readonly name: "token";
|
|
1019
|
+
readonly type: "address";
|
|
1020
|
+
}, {
|
|
1021
|
+
readonly internalType: "address";
|
|
1022
|
+
readonly name: "distributor";
|
|
1023
|
+
readonly type: "address";
|
|
1024
|
+
}];
|
|
1025
|
+
readonly name: "initializeRewardToken";
|
|
1026
|
+
readonly outputs: readonly [];
|
|
1027
|
+
readonly stateMutability: "nonpayable";
|
|
1028
|
+
readonly type: "function";
|
|
765
1029
|
}, {
|
|
766
1030
|
readonly inputs: readonly [];
|
|
767
1031
|
readonly name: "lastUpdateTime";
|
|
@@ -774,6 +1038,24 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
774
1038
|
readonly type: "function";
|
|
775
1039
|
}, {
|
|
776
1040
|
readonly inputs: readonly [{
|
|
1041
|
+
readonly internalType: "address";
|
|
1042
|
+
readonly name: "distributor";
|
|
1043
|
+
readonly type: "address";
|
|
1044
|
+
}, {
|
|
1045
|
+
readonly internalType: "bool";
|
|
1046
|
+
readonly name: "shouldAddDistributor";
|
|
1047
|
+
readonly type: "bool";
|
|
1048
|
+
}];
|
|
1049
|
+
readonly name: "manageDistributor";
|
|
1050
|
+
readonly outputs: readonly [];
|
|
1051
|
+
readonly stateMutability: "nonpayable";
|
|
1052
|
+
readonly type: "function";
|
|
1053
|
+
}, {
|
|
1054
|
+
readonly inputs: readonly [{
|
|
1055
|
+
readonly internalType: "address";
|
|
1056
|
+
readonly name: "token";
|
|
1057
|
+
readonly type: "address";
|
|
1058
|
+
}, {
|
|
777
1059
|
readonly internalType: "uint256";
|
|
778
1060
|
readonly name: "amount";
|
|
779
1061
|
readonly type: "uint256";
|
|
@@ -792,6 +1074,34 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
792
1074
|
}];
|
|
793
1075
|
readonly stateMutability: "view";
|
|
794
1076
|
readonly type: "function";
|
|
1077
|
+
}, {
|
|
1078
|
+
readonly inputs: readonly [{
|
|
1079
|
+
readonly internalType: "address";
|
|
1080
|
+
readonly name: "token";
|
|
1081
|
+
readonly type: "address";
|
|
1082
|
+
}, {
|
|
1083
|
+
readonly internalType: "address";
|
|
1084
|
+
readonly name: "user";
|
|
1085
|
+
readonly type: "address";
|
|
1086
|
+
}];
|
|
1087
|
+
readonly name: "pendingRewards";
|
|
1088
|
+
readonly outputs: readonly [{
|
|
1089
|
+
readonly internalType: "uint256";
|
|
1090
|
+
readonly name: "";
|
|
1091
|
+
readonly type: "uint256";
|
|
1092
|
+
}];
|
|
1093
|
+
readonly stateMutability: "view";
|
|
1094
|
+
readonly type: "function";
|
|
1095
|
+
}, {
|
|
1096
|
+
readonly inputs: readonly [];
|
|
1097
|
+
readonly name: "periodDuration";
|
|
1098
|
+
readonly outputs: readonly [{
|
|
1099
|
+
readonly internalType: "uint256";
|
|
1100
|
+
readonly name: "";
|
|
1101
|
+
readonly type: "uint256";
|
|
1102
|
+
}];
|
|
1103
|
+
readonly stateMutability: "view";
|
|
1104
|
+
readonly type: "function";
|
|
795
1105
|
}, {
|
|
796
1106
|
readonly inputs: readonly [];
|
|
797
1107
|
readonly name: "periodFinish";
|
|
@@ -881,6 +1191,40 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
881
1191
|
readonly outputs: readonly [];
|
|
882
1192
|
readonly stateMutability: "nonpayable";
|
|
883
1193
|
readonly type: "function";
|
|
1194
|
+
}, {
|
|
1195
|
+
readonly inputs: readonly [{
|
|
1196
|
+
readonly internalType: "address";
|
|
1197
|
+
readonly name: "";
|
|
1198
|
+
readonly type: "address";
|
|
1199
|
+
}];
|
|
1200
|
+
readonly name: "rewardData";
|
|
1201
|
+
readonly outputs: readonly [{
|
|
1202
|
+
readonly internalType: "uint256";
|
|
1203
|
+
readonly name: "rate";
|
|
1204
|
+
readonly type: "uint256";
|
|
1205
|
+
}, {
|
|
1206
|
+
readonly internalType: "uint256";
|
|
1207
|
+
readonly name: "periodFinish";
|
|
1208
|
+
readonly type: "uint256";
|
|
1209
|
+
}, {
|
|
1210
|
+
readonly internalType: "uint256";
|
|
1211
|
+
readonly name: "lastUpdateTime";
|
|
1212
|
+
readonly type: "uint256";
|
|
1213
|
+
}, {
|
|
1214
|
+
readonly internalType: "uint256";
|
|
1215
|
+
readonly name: "rewardPerTokenStored";
|
|
1216
|
+
readonly type: "uint256";
|
|
1217
|
+
}, {
|
|
1218
|
+
readonly internalType: "address";
|
|
1219
|
+
readonly name: "distributor";
|
|
1220
|
+
readonly type: "address";
|
|
1221
|
+
}, {
|
|
1222
|
+
readonly internalType: "uint256";
|
|
1223
|
+
readonly name: "integral";
|
|
1224
|
+
readonly type: "uint256";
|
|
1225
|
+
}];
|
|
1226
|
+
readonly stateMutability: "view";
|
|
1227
|
+
readonly type: "function";
|
|
884
1228
|
}, {
|
|
885
1229
|
readonly inputs: readonly [];
|
|
886
1230
|
readonly name: "rewardPerTokenStored";
|
|
@@ -911,21 +1255,59 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
911
1255
|
}];
|
|
912
1256
|
readonly stateMutability: "view";
|
|
913
1257
|
readonly type: "function";
|
|
1258
|
+
}, {
|
|
1259
|
+
readonly inputs: readonly [{
|
|
1260
|
+
readonly internalType: "address";
|
|
1261
|
+
readonly name: "";
|
|
1262
|
+
readonly type: "address";
|
|
1263
|
+
}];
|
|
1264
|
+
readonly name: "rewardTokenDecimals";
|
|
1265
|
+
readonly outputs: readonly [{
|
|
1266
|
+
readonly internalType: "uint8";
|
|
1267
|
+
readonly name: "";
|
|
1268
|
+
readonly type: "uint8";
|
|
1269
|
+
}];
|
|
1270
|
+
readonly stateMutability: "view";
|
|
1271
|
+
readonly type: "function";
|
|
914
1272
|
}, {
|
|
915
1273
|
readonly inputs: readonly [{
|
|
916
1274
|
readonly internalType: "uint256";
|
|
917
|
-
readonly name: "
|
|
918
|
-
readonly type: "uint256";
|
|
919
|
-
}, {
|
|
920
|
-
readonly internalType: "uint256";
|
|
921
|
-
readonly name: "_minBoost";
|
|
1275
|
+
readonly name: "";
|
|
922
1276
|
readonly type: "uint256";
|
|
1277
|
+
}];
|
|
1278
|
+
readonly name: "rewardTokens";
|
|
1279
|
+
readonly outputs: readonly [{
|
|
1280
|
+
readonly internalType: "address";
|
|
1281
|
+
readonly name: "";
|
|
1282
|
+
readonly type: "address";
|
|
1283
|
+
}];
|
|
1284
|
+
readonly stateMutability: "view";
|
|
1285
|
+
readonly type: "function";
|
|
1286
|
+
}, {
|
|
1287
|
+
readonly inputs: readonly [{
|
|
1288
|
+
readonly internalType: "address";
|
|
1289
|
+
readonly name: "";
|
|
1290
|
+
readonly type: "address";
|
|
923
1291
|
}, {
|
|
1292
|
+
readonly internalType: "address";
|
|
1293
|
+
readonly name: "";
|
|
1294
|
+
readonly type: "address";
|
|
1295
|
+
}];
|
|
1296
|
+
readonly name: "rewards";
|
|
1297
|
+
readonly outputs: readonly [{
|
|
924
1298
|
readonly internalType: "uint256";
|
|
925
|
-
readonly name: "
|
|
1299
|
+
readonly name: "";
|
|
926
1300
|
readonly type: "uint256";
|
|
927
1301
|
}];
|
|
928
|
-
readonly
|
|
1302
|
+
readonly stateMutability: "view";
|
|
1303
|
+
readonly type: "function";
|
|
1304
|
+
}, {
|
|
1305
|
+
readonly inputs: readonly [{
|
|
1306
|
+
readonly internalType: "bool";
|
|
1307
|
+
readonly name: "enabled";
|
|
1308
|
+
readonly type: "bool";
|
|
1309
|
+
}];
|
|
1310
|
+
readonly name: "setBoostAmplificationEnabled";
|
|
929
1311
|
readonly outputs: readonly [];
|
|
930
1312
|
readonly stateMutability: "nonpayable";
|
|
931
1313
|
readonly type: "function";
|
|
@@ -941,8 +1323,22 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
941
1323
|
readonly type: "function";
|
|
942
1324
|
}, {
|
|
943
1325
|
readonly inputs: readonly [{
|
|
1326
|
+
readonly internalType: "address";
|
|
1327
|
+
readonly name: "distributor";
|
|
1328
|
+
readonly type: "address";
|
|
1329
|
+
}, {
|
|
944
1330
|
readonly internalType: "bool";
|
|
945
|
-
readonly name: "
|
|
1331
|
+
readonly name: "isApproved";
|
|
1332
|
+
readonly type: "bool";
|
|
1333
|
+
}];
|
|
1334
|
+
readonly name: "setDistributorApproval";
|
|
1335
|
+
readonly outputs: readonly [];
|
|
1336
|
+
readonly stateMutability: "nonpayable";
|
|
1337
|
+
readonly type: "function";
|
|
1338
|
+
}, {
|
|
1339
|
+
readonly inputs: readonly [{
|
|
1340
|
+
readonly internalType: "bool";
|
|
1341
|
+
readonly name: "newPaused";
|
|
946
1342
|
readonly type: "bool";
|
|
947
1343
|
}];
|
|
948
1344
|
readonly name: "setEmergencyPaused";
|
|
@@ -952,30 +1348,30 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
952
1348
|
}, {
|
|
953
1349
|
readonly inputs: readonly [{
|
|
954
1350
|
readonly internalType: "uint256";
|
|
955
|
-
readonly name: "
|
|
1351
|
+
readonly name: "weight";
|
|
956
1352
|
readonly type: "uint256";
|
|
957
1353
|
}];
|
|
958
|
-
readonly name: "
|
|
1354
|
+
readonly name: "setInitialWeight";
|
|
959
1355
|
readonly outputs: readonly [];
|
|
960
1356
|
readonly stateMutability: "nonpayable";
|
|
961
1357
|
readonly type: "function";
|
|
962
1358
|
}, {
|
|
963
1359
|
readonly inputs: readonly [{
|
|
964
1360
|
readonly internalType: "uint256";
|
|
965
|
-
readonly name: "
|
|
1361
|
+
readonly name: "emission";
|
|
966
1362
|
readonly type: "uint256";
|
|
967
1363
|
}];
|
|
968
|
-
readonly name: "
|
|
1364
|
+
readonly name: "setMaxEmission";
|
|
969
1365
|
readonly outputs: readonly [];
|
|
970
1366
|
readonly stateMutability: "nonpayable";
|
|
971
1367
|
readonly type: "function";
|
|
972
1368
|
}, {
|
|
973
1369
|
readonly inputs: readonly [{
|
|
974
1370
|
readonly internalType: "uint256";
|
|
975
|
-
readonly name: "
|
|
1371
|
+
readonly name: "newPeriodDuration";
|
|
976
1372
|
readonly type: "uint256";
|
|
977
1373
|
}];
|
|
978
|
-
readonly name: "
|
|
1374
|
+
readonly name: "setPeriodDuration";
|
|
979
1375
|
readonly outputs: readonly [];
|
|
980
1376
|
readonly stateMutability: "nonpayable";
|
|
981
1377
|
readonly type: "function";
|
|
@@ -1013,6 +1409,22 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
1013
1409
|
}];
|
|
1014
1410
|
readonly stateMutability: "view";
|
|
1015
1411
|
readonly type: "function";
|
|
1412
|
+
}, {
|
|
1413
|
+
readonly inputs: readonly [{
|
|
1414
|
+
readonly internalType: "address";
|
|
1415
|
+
readonly name: "token";
|
|
1416
|
+
readonly type: "address";
|
|
1417
|
+
}];
|
|
1418
|
+
readonly name: "syncRewardData";
|
|
1419
|
+
readonly outputs: readonly [];
|
|
1420
|
+
readonly stateMutability: "nonpayable";
|
|
1421
|
+
readonly type: "function";
|
|
1422
|
+
}, {
|
|
1423
|
+
readonly inputs: readonly [];
|
|
1424
|
+
readonly name: "syncRewardTokens";
|
|
1425
|
+
readonly outputs: readonly [];
|
|
1426
|
+
readonly stateMutability: "nonpayable";
|
|
1427
|
+
readonly type: "function";
|
|
1016
1428
|
}, {
|
|
1017
1429
|
readonly inputs: readonly [];
|
|
1018
1430
|
readonly name: "totalSupply";
|
|
@@ -1039,24 +1451,78 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
1039
1451
|
readonly outputs: readonly [];
|
|
1040
1452
|
readonly stateMutability: "nonpayable";
|
|
1041
1453
|
readonly type: "function";
|
|
1454
|
+
}, {
|
|
1455
|
+
readonly inputs: readonly [];
|
|
1456
|
+
readonly name: "updateUserRewards";
|
|
1457
|
+
readonly outputs: readonly [];
|
|
1458
|
+
readonly stateMutability: "nonpayable";
|
|
1459
|
+
readonly type: "function";
|
|
1042
1460
|
}, {
|
|
1043
1461
|
readonly inputs: readonly [{
|
|
1044
1462
|
readonly internalType: "address";
|
|
1045
1463
|
readonly name: "";
|
|
1046
1464
|
readonly type: "address";
|
|
1047
1465
|
}];
|
|
1048
|
-
readonly name: "
|
|
1466
|
+
readonly name: "userCheckpointCounts";
|
|
1049
1467
|
readonly outputs: readonly [{
|
|
1050
1468
|
readonly internalType: "uint256";
|
|
1051
|
-
readonly name: "
|
|
1469
|
+
readonly name: "";
|
|
1470
|
+
readonly type: "uint256";
|
|
1471
|
+
}];
|
|
1472
|
+
readonly stateMutability: "view";
|
|
1473
|
+
readonly type: "function";
|
|
1474
|
+
}, {
|
|
1475
|
+
readonly inputs: readonly [{
|
|
1476
|
+
readonly internalType: "address";
|
|
1477
|
+
readonly name: "";
|
|
1478
|
+
readonly type: "address";
|
|
1479
|
+
}, {
|
|
1480
|
+
readonly internalType: "uint256";
|
|
1481
|
+
readonly name: "";
|
|
1482
|
+
readonly type: "uint256";
|
|
1483
|
+
}];
|
|
1484
|
+
readonly name: "userCheckpoints";
|
|
1485
|
+
readonly outputs: readonly [{
|
|
1486
|
+
readonly internalType: "uint256";
|
|
1487
|
+
readonly name: "timestamp";
|
|
1488
|
+
readonly type: "uint256";
|
|
1489
|
+
}, {
|
|
1490
|
+
readonly internalType: "uint256";
|
|
1491
|
+
readonly name: "balance";
|
|
1492
|
+
readonly type: "uint256";
|
|
1493
|
+
}, {
|
|
1494
|
+
readonly internalType: "uint256";
|
|
1495
|
+
readonly name: "workingBalance";
|
|
1496
|
+
readonly type: "uint256";
|
|
1497
|
+
}, {
|
|
1498
|
+
readonly internalType: "uint256";
|
|
1499
|
+
readonly name: "rewardPerToken";
|
|
1500
|
+
readonly type: "uint256";
|
|
1501
|
+
}, {
|
|
1502
|
+
readonly internalType: "uint256";
|
|
1503
|
+
readonly name: "slope";
|
|
1052
1504
|
readonly type: "uint256";
|
|
1053
1505
|
}, {
|
|
1054
1506
|
readonly internalType: "uint256";
|
|
1055
|
-
readonly name: "
|
|
1507
|
+
readonly name: "bias";
|
|
1056
1508
|
readonly type: "uint256";
|
|
1509
|
+
}];
|
|
1510
|
+
readonly stateMutability: "view";
|
|
1511
|
+
readonly type: "function";
|
|
1512
|
+
}, {
|
|
1513
|
+
readonly inputs: readonly [{
|
|
1514
|
+
readonly internalType: "address";
|
|
1515
|
+
readonly name: "";
|
|
1516
|
+
readonly type: "address";
|
|
1057
1517
|
}, {
|
|
1518
|
+
readonly internalType: "address";
|
|
1519
|
+
readonly name: "";
|
|
1520
|
+
readonly type: "address";
|
|
1521
|
+
}];
|
|
1522
|
+
readonly name: "userClaimedRewards";
|
|
1523
|
+
readonly outputs: readonly [{
|
|
1058
1524
|
readonly internalType: "uint256";
|
|
1059
|
-
readonly name: "
|
|
1525
|
+
readonly name: "";
|
|
1060
1526
|
readonly type: "uint256";
|
|
1061
1527
|
}];
|
|
1062
1528
|
readonly stateMutability: "view";
|
|
@@ -1066,32 +1532,66 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
1066
1532
|
readonly internalType: "address";
|
|
1067
1533
|
readonly name: "";
|
|
1068
1534
|
readonly type: "address";
|
|
1535
|
+
}, {
|
|
1536
|
+
readonly internalType: "address";
|
|
1537
|
+
readonly name: "";
|
|
1538
|
+
readonly type: "address";
|
|
1069
1539
|
}];
|
|
1070
|
-
readonly name: "
|
|
1540
|
+
readonly name: "userRewardData";
|
|
1071
1541
|
readonly outputs: readonly [{
|
|
1072
1542
|
readonly internalType: "uint256";
|
|
1073
|
-
readonly name: "
|
|
1543
|
+
readonly name: "integral";
|
|
1074
1544
|
readonly type: "uint256";
|
|
1075
1545
|
}, {
|
|
1076
1546
|
readonly internalType: "uint256";
|
|
1077
|
-
readonly name: "
|
|
1547
|
+
readonly name: "lastUpdate";
|
|
1078
1548
|
readonly type: "uint256";
|
|
1079
1549
|
}, {
|
|
1080
1550
|
readonly internalType: "uint256";
|
|
1081
|
-
readonly name: "
|
|
1551
|
+
readonly name: "claimable";
|
|
1552
|
+
readonly type: "uint256";
|
|
1553
|
+
}];
|
|
1554
|
+
readonly stateMutability: "view";
|
|
1555
|
+
readonly type: "function";
|
|
1556
|
+
}, {
|
|
1557
|
+
readonly inputs: readonly [{
|
|
1558
|
+
readonly internalType: "address";
|
|
1559
|
+
readonly name: "";
|
|
1560
|
+
readonly type: "address";
|
|
1561
|
+
}, {
|
|
1562
|
+
readonly internalType: "address";
|
|
1563
|
+
readonly name: "";
|
|
1564
|
+
readonly type: "address";
|
|
1565
|
+
}];
|
|
1566
|
+
readonly name: "userRewardPerTokenPaid";
|
|
1567
|
+
readonly outputs: readonly [{
|
|
1568
|
+
readonly internalType: "uint256";
|
|
1569
|
+
readonly name: "";
|
|
1082
1570
|
readonly type: "uint256";
|
|
1083
1571
|
}];
|
|
1084
1572
|
readonly stateMutability: "view";
|
|
1085
1573
|
readonly type: "function";
|
|
1086
1574
|
}, {
|
|
1087
1575
|
readonly inputs: readonly [{
|
|
1576
|
+
readonly internalType: "address";
|
|
1577
|
+
readonly name: "";
|
|
1578
|
+
readonly type: "address";
|
|
1579
|
+
}];
|
|
1580
|
+
readonly name: "userVotes";
|
|
1581
|
+
readonly outputs: readonly [{
|
|
1088
1582
|
readonly internalType: "uint256";
|
|
1089
1583
|
readonly name: "direction";
|
|
1090
1584
|
readonly type: "uint256";
|
|
1585
|
+
}, {
|
|
1586
|
+
readonly internalType: "uint256";
|
|
1587
|
+
readonly name: "weight";
|
|
1588
|
+
readonly type: "uint256";
|
|
1589
|
+
}, {
|
|
1590
|
+
readonly internalType: "uint256";
|
|
1591
|
+
readonly name: "timestamp";
|
|
1592
|
+
readonly type: "uint256";
|
|
1091
1593
|
}];
|
|
1092
|
-
readonly
|
|
1093
|
-
readonly outputs: readonly [];
|
|
1094
|
-
readonly stateMutability: "nonpayable";
|
|
1594
|
+
readonly stateMutability: "view";
|
|
1095
1595
|
readonly type: "function";
|
|
1096
1596
|
}, {
|
|
1097
1597
|
readonly inputs: readonly [{
|
|
@@ -1099,7 +1599,7 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
1099
1599
|
readonly name: "direction";
|
|
1100
1600
|
readonly type: "uint256";
|
|
1101
1601
|
}];
|
|
1102
|
-
readonly name: "
|
|
1602
|
+
readonly name: "voteDirection";
|
|
1103
1603
|
readonly outputs: readonly [];
|
|
1104
1604
|
readonly stateMutability: "nonpayable";
|
|
1105
1605
|
readonly type: "function";
|
|
@@ -1147,6 +1647,30 @@ export declare class RAACGauge__factory extends ContractFactory {
|
|
|
1147
1647
|
readonly outputs: readonly [];
|
|
1148
1648
|
readonly stateMutability: "nonpayable";
|
|
1149
1649
|
readonly type: "function";
|
|
1650
|
+
}, {
|
|
1651
|
+
readonly inputs: readonly [{
|
|
1652
|
+
readonly internalType: "address";
|
|
1653
|
+
readonly name: "";
|
|
1654
|
+
readonly type: "address";
|
|
1655
|
+
}];
|
|
1656
|
+
readonly name: "workingBalances";
|
|
1657
|
+
readonly outputs: readonly [{
|
|
1658
|
+
readonly internalType: "uint256";
|
|
1659
|
+
readonly name: "";
|
|
1660
|
+
readonly type: "uint256";
|
|
1661
|
+
}];
|
|
1662
|
+
readonly stateMutability: "view";
|
|
1663
|
+
readonly type: "function";
|
|
1664
|
+
}, {
|
|
1665
|
+
readonly inputs: readonly [];
|
|
1666
|
+
readonly name: "workingSupply";
|
|
1667
|
+
readonly outputs: readonly [{
|
|
1668
|
+
readonly internalType: "uint256";
|
|
1669
|
+
readonly name: "";
|
|
1670
|
+
readonly type: "uint256";
|
|
1671
|
+
}];
|
|
1672
|
+
readonly stateMutability: "view";
|
|
1673
|
+
readonly type: "function";
|
|
1150
1674
|
}];
|
|
1151
1675
|
static createInterface(): RAACGaugeInterface;
|
|
1152
1676
|
static connect(address: string, runner?: ContractRunner | null): RAACGauge;
|