@raac/rpc 1.1.0-beta.5 → 1.1.0-beta.7
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 +66 -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/11155111.json +8 -3
- package/dist/configs/chains/17000.json +38 -3
- package/dist/configs/chains/8453.json +49 -14
- package/dist/configs/createConfig.js +3 -3
- package/dist/pools/lendingPool/_helpers.js +41 -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 +11 -14
- package/dist/pools/lendingPool/borrowFromLendingPoolWithInsurance.js +11 -29
- package/dist/pools/lendingPool/calculateInsuranceFee.js +12 -8
- package/dist/pools/lendingPool/closeLiquidation.js +16 -14
- package/dist/pools/lendingPool/depositAssetToLendingPool.js +22 -0
- package/dist/pools/lendingPool/depositToLendingPool.js +2 -5
- package/dist/pools/lendingPool/getAdapterAddress.js +44 -0
- package/dist/pools/lendingPool/getAdapters.js +20 -0
- package/dist/pools/lendingPool/getEligibleUserDeposits.js +2 -5
- package/dist/pools/lendingPool/getHealthFactor.js +15 -13
- package/dist/pools/lendingPool/getLendingPoolInfo.js +10 -25
- package/dist/pools/lendingPool/getLendingPoolTotalLiquidity.js +2 -6
- package/dist/pools/lendingPool/getParameters.js +29 -0
- package/dist/pools/lendingPool/getPositionDebt.js +12 -11
- package/dist/pools/lendingPool/getPositionScaledDebt.js +16 -13
- package/dist/pools/lendingPool/getPositionView.js +16 -10
- package/dist/pools/lendingPool/getPositionsScaledDebt.js +3 -5
- package/dist/pools/lendingPool/getRawUserDepositsInLendingPool.js +2 -5
- package/dist/pools/lendingPool/getUserCollateralValue.js +3 -5
- package/dist/pools/lendingPool/getWithdrawRequestInfo.js +25 -0
- package/dist/pools/lendingPool/initializeLiquidation.js +12 -12
- package/dist/pools/lendingPool/openVaultPosition.js +42 -0
- package/dist/pools/lendingPool/repayToLendingPool.js +11 -14
- package/dist/pools/lendingPool/requestWithdraw.js +28 -0
- package/dist/pools/lendingPool/types.js +2 -0
- package/dist/pools/lendingPool/withdrawAssetFromLendingPool.js +22 -0
- package/dist/pools/lendingPool/withdrawFromLendingPool.js +3 -4
- package/dist/pools/rwaVault/_helpers.js +41 -0
- package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterAssetValue.js +21 -0
- package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterInfo.js +30 -0
- package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterTotalValue.js +20 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterAssetValue.js +21 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterDeposits.js +20 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterInfo.js +30 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterTotalValue.js +20 -0
- package/dist/pools/rwaVault/depositToRWAVault.js +23 -0
- package/dist/pools/rwaVault/getAdapterAddress.js +43 -0
- package/dist/pools/rwaVault/getAdapters.js +20 -0
- package/dist/pools/rwaVault/getNextRandomNFT.js +21 -0
- package/dist/pools/rwaVault/getRWAVaultInfo.js +48 -0
- package/dist/pools/rwaVault/redeemNFTFromRWAVault.js +23 -0
- package/dist/pools/rwaVault/requestRandomSeed.js +23 -0
- package/dist/pools/rwaVault/types.js +2 -0
- package/dist/scripts/index.js +81 -64
- package/dist/types/RPCLibrary.d.ts +55 -22
- package/dist/types/configs/createConfig.d.ts +1 -1
- package/dist/types/pools/lendingPool/_helpers.d.ts +10 -0
- package/dist/types/pools/lendingPool/adapters/erc20/getERC20AdapterBalance.d.ts +3 -0
- package/dist/types/pools/lendingPool/adapters/erc20/getERC20AdapterInfo.d.ts +10 -0
- package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.d.ts +3 -0
- package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.d.ts +10 -0
- package/dist/types/pools/lendingPool/borrowFromLendingPool.d.ts +4 -3
- package/dist/types/pools/lendingPool/borrowFromLendingPoolWithInsurance.d.ts +4 -3
- package/dist/types/pools/lendingPool/calculateInsuranceFee.d.ts +3 -2
- package/dist/types/pools/lendingPool/closeLiquidation.d.ts +7 -5
- package/dist/types/pools/lendingPool/depositAssetToLendingPool.d.ts +5 -0
- package/dist/types/pools/lendingPool/getAdapterAddress.d.ts +16 -0
- package/dist/types/pools/lendingPool/getAdapters.d.ts +8 -0
- package/dist/types/pools/lendingPool/getHealthFactor.d.ts +6 -4
- package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +1 -3
- package/dist/types/pools/lendingPool/getParameters.d.ts +17 -0
- package/dist/types/pools/lendingPool/getPositionDebt.d.ts +4 -3
- package/dist/types/pools/lendingPool/getPositionScaledDebt.d.ts +8 -5
- package/dist/types/pools/lendingPool/getPositionView.d.ts +14 -18
- package/dist/types/pools/lendingPool/getWithdrawRequestInfo.d.ts +8 -0
- package/dist/types/pools/lendingPool/initializeLiquidation.d.ts +4 -3
- package/dist/types/pools/lendingPool/openVaultPosition.d.ts +4 -0
- package/dist/types/pools/lendingPool/repayToLendingPool.d.ts +4 -3
- package/dist/types/pools/lendingPool/requestWithdraw.d.ts +4 -0
- package/dist/types/pools/lendingPool/types.d.ts +7 -0
- package/dist/types/pools/lendingPool/withdrawAssetFromLendingPool.d.ts +5 -0
- package/dist/types/pools/rwaVault/_helpers.d.ts +10 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterAssetValue.d.ts +3 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterInfo.d.ts +9 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterTotalValue.d.ts +3 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterAssetValue.d.ts +3 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterDeposits.d.ts +3 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterInfo.d.ts +9 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterTotalValue.d.ts +3 -0
- package/dist/types/pools/rwaVault/depositToRWAVault.d.ts +5 -0
- package/dist/types/pools/rwaVault/getAdapterAddress.d.ts +16 -0
- package/dist/types/pools/rwaVault/getAdapters.d.ts +8 -0
- package/dist/types/pools/rwaVault/getNextRandomNFT.d.ts +8 -0
- package/dist/types/pools/rwaVault/getRWAVaultInfo.d.ts +20 -0
- package/dist/types/pools/rwaVault/redeemNFTFromRWAVault.d.ts +4 -0
- package/dist/types/pools/rwaVault/requestRandomSeed.d.ts +4 -0
- package/dist/types/pools/rwaVault/types.d.ts +7 -0
- package/dist/types/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 +460 -44
- package/dist/utils/artifacts.js +13 -2
- package/package.json +1 -1
- package/dist/artifacts/core/tokens/IndexToken.sol/IndexToken.json +0 -770
- package/dist/contracts/indexToken/getNextRandomNFT.js +0 -30
- package/dist/contracts/indexToken/redeemNFT.js +0 -39
- package/dist/pools/lendingPool/claimReward.js +0 -22
- package/dist/pools/lendingPool/depositNFTToLendingPool.js +0 -50
- package/dist/pools/lendingPool/getAllUserData.js +0 -28
- package/dist/pools/lendingPool/getPendingReward.js +0 -20
- package/dist/pools/lendingPool/getUserOfDepositedNFT.js +0 -27
- package/dist/pools/lendingPool/withdrawNFTFromLendingPool.js +0 -24
- package/dist/pools/stabilityPool/calculateRAACRewards.js +0 -21
- package/dist/pools/stabilityPool/depositNFTToStabilityPool.js +0 -40
- package/dist/types/contracts/indexToken/getNextRandomNFT.d.ts +0 -7
- package/dist/types/contracts/indexToken/redeemNFT.d.ts +0 -4
- package/dist/types/pools/lendingPool/claimReward.d.ts +0 -4
- package/dist/types/pools/lendingPool/depositNFTToLendingPool.d.ts +0 -4
- package/dist/types/pools/lendingPool/getAllUserData.d.ts +0 -17
- package/dist/types/pools/lendingPool/getPendingReward.d.ts +0 -4
- package/dist/types/pools/lendingPool/getUserOfDepositedNFT.d.ts +0 -11
- package/dist/types/pools/lendingPool/withdrawNFTFromLendingPool.d.ts +0 -4
- package/dist/types/pools/stabilityPool/calculateRAACRewards.d.ts +0 -4
- package/dist/types/pools/stabilityPool/depositNFTToStabilityPool.d.ts +0 -4
package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
14
14
|
deploymentTransaction(): ContractTransactionResponse;
|
|
15
15
|
}>;
|
|
16
16
|
connect(runner: ContractRunner | null): RWAGauge__factory;
|
|
17
|
-
static readonly bytecode = "0x60e06040523480156200001157600080fd5b5060405162002768380380620027688339810160408190526200003491620002d9565b600160009081556002805460ff191690556001600160a01b0380851660805280841660a052821660c0528390839083906a02116545850052128000009062278d009062000082903362000121565b50620000af7f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c5702233578462000121565b506161a8601755670de0b6b3a764000060185562093a806019554260008280620000da818562000339565b620000e691906200035c565b620000f2919062000376565b602b8190556029859055905062000111602282856000612710620001b8565b505050505050505050506200038c565b60008281526001602090815260408083206001600160a01b038516845290915281205460ff16620001ae5760008381526001602081815260408084206001600160a01b0387168086529252808420805460ff19169093179092559051339286917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a4506001620001b2565b5060005b92915050565b845415801590620001da575060058501548554620001d7919062000376565b84105b15620001f95760405163f0aaee6560e01b815260040160405180910390fd5b826000036200021b5760405163346ab43760e11b815260040160405180910390fd5b806000036200023d576040516319a2a9bd60e01b815260040160405180910390fd5b8385556200024c838562000376565b6001860155600285018490556003850182905560006004860155600585018390556006850181905560408051858152602081018590529081018390527f0792cf7388f234e543a10a68aeb7b96568fb90b55ddc2b2945961c80a3c3a0829060600160405180910390a15050505050565b80516001600160a01b0381168114620002d457600080fd5b919050565b600080600060608486031215620002ef57600080fd5b620002fa84620002bc565b92506200030a60208501620002bc565b91506200031a60408501620002bc565b90509250925092565b634e487b7160e01b600052601160045260246000fd5b6000826200035757634e487b7160e01b600052601260045260246000fd5b500490565b8082028115828204841417620001b257620001b262000323565b80820180821115620001b257620001b262000323565b60805160a05160c051612374620003f4600039600081816108a501528181610ffb01528181611b790152611c0201526000818161063501528181610a6601526111e60152600081816108cc01528181610be801528181610d670152610e0a01526123746000f3fe608060405234801561001057600080fd5b50600436106103825760003560e01c806395ccea67116101de578063c925c6801161010f578063ddce102f116100ad578063f77c47911161007c578063f77c4791146108a0578063f7c618c1146108c7578063f9759518146108ee578063feca3900146108f657600080fd5b8063ddce102f14610818578063df136d651461082b578063ea8d6e6114610834578063ebe2b12b1461089857600080fd5b8063d547741f116100e9578063d547741f146107ad578063d5999a5c146107c0578063d6585ecf146107ca578063d70afa96146107f157600080fd5b8063c925c68014610787578063cd63d9301461079a578063cd6606e2146107a357600080fd5b8063b45995851161017c578063be3dd87a11610156578063be3dd87a14610751578063c2c4c5c114610763578063c59d72b41461076b578063c8f33c911461077e57600080fd5b8063b45995851461070b578063b77cf9c61461071e578063b7f1aca81461073e57600080fd5b8063a217fddf116101b8578063a217fddf146106df578063a694fc3a146106e7578063a83627de146106fa578063b36fec571461070257600080fd5b806395ccea67146106a65780639d0ab89f146106b95780639e0092cb146106cc57600080fd5b80633c6b16ab116102b857806370a0823111610256578063750e1c0911610230578063750e1c091461066f5780637b0a47ee1461068257806380faa57d1461068b57806391d148541461069357600080fd5b806370a08231146105f7578063718dc3c31461061f57806372f702f31461063057600080fd5b80636219015011610292578063621901501461053457806362c3bf0d146105635780636b747dc0146105765780637001f4bb146105ee57600080fd5b80633c6b16ab1461050e5780633d18b912146105215780635c975abb1461052957600080fd5b806318160ddd116103255780632e1a7d4d116102ff5780632e1a7d4d1461047c5780632e46da29146104915780632f2ff15d146104e857806336568abe146104fb57600080fd5b806318160ddd14610448578063248a9ca314610450578063276472481461047457600080fd5b8063092c5b3b11610361578063092c5b3b146103d85780630c06f748146103ed5780630d15fd77146103f55780630ecc535f146103fe57600080fd5b80628cc2621461038757806301ffc9a7146103ad57806306aba0e1146103d0575b600080fd5b61039a61039536600461205a565b6108fe565b6040519081526020015b60405180910390f35b6103c06103bb366004612077565b61096a565b60405190151581526020016103a4565b61039a61099f565b61039a60008051602061231f83398151915281565b61039a6109af565b61039a60215481565b61042d61040c36600461205a565b600a6020526000908152604090208054600182015460029092015490919083565b604080519384526020840192909252908201526060016103a4565b601f5461039a565b61039a61045e3660046120a1565b6000908152600160208190526040909120015490565b602b5461039a565b61048f61048a3660046120a1565b6109bc565b005b6003546004546005546006546007546008546009546104b39695949392919087565b604080519788526020880196909652948601939093526060850191909152608084015260a083015260c082015260e0016103a4565b61048f6104f63660046120ba565b610ad1565b61048f6105093660046120ba565b610afd565b61048f61051c3660046120a1565b610b35565b61048f610cca565b60025460ff166103c0565b61042d61054236600461205a565b602c6020526000908152604090208054600182015460029092015490919083565b61048f6105713660046120a1565b610e77565b6040805160e08101825260105481526011546020820152601254918101919091526013546060820152601454608082015260155460a082015260165460c0820152601754601854601954601a54601b54601c54601d546105da979695949392919088565b6040516103a498979695949392919061212e565b61039a61271081565b61039a61060536600461205a565b6001600160a01b0316600090815260208052604090205490565b61039a69d3c21bcecceda100000081565b6106577f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103a4565b61048f61067d3660046120a1565b610e88565b61039a600b5481565b61039a610efe565b6103c06106a13660046120ba565b610f1b565b61048f6106b4366004612178565b610f46565b61048f6106c73660046121b2565b610f65565b61048f6106da3660046120a1565b610fc2565b61039a600081565b61048f6106f53660046120a1565b61116b565b61048f611240565b62278d0061039a565b61048f6107193660046121cf565b611304565b61039a61072c36600461205a565b600e6020526000908152604090205481565b61048f61074c3660046120a1565b611347565b61039a6a021165458500521280000081565b61048f6113ca565b61048f6107793660046120a1565b61140c565b61039a600c5481565b61039a61079536600461205a565b611476565b61039a601e5481565b61039a6201518081565b61048f6107bb3660046120ba565b611495565b61039a62278d0081565b61039a7f5c91514091af31f62f596a314af7d5be40146b2f2355969392f055e12e0982fb81565b61039a7fa1496c3abf9cd93b84db10ae569b57fafa04deeeb7ece4167616ad50e35bc56e81565b61048f6108263660046120a1565b6114bb565b61039a600d5481565b6040805160e08101825260225481526023546020820152602454918101919091526025546060820152602654608082015260275460a082015260285460c0820152602954602a54602b546108889392919084565b6040516103a494939291906121fb565b61039a611513565b6106577f000000000000000000000000000000000000000000000000000000000000000081565b6106577f000000000000000000000000000000000000000000000000000000000000000081565b61039a606481565b61039a611526565b6001600160a01b0381166000908152600a602052604081206002810154600190910154670de0b6b3a764000090610933611526565b61093d919061223d565b61094685611476565b6109509190612250565b61095a9190612267565b6109649190612289565b92915050565b60006001600160e01b03198216637965db0b60e01b148061096457506301ffc9a760e01b6001600160e01b0319831614610964565b60006109aa601f5490565b905090565b60006109aa60224261158d565b6109c4611662565b336109ce8161168c565b816000036109ef5760405163162908e360e11b815260040160405180910390fd5b336000908152602080526040902054821115610a1e57604051631e9acf1760e31b815260040160405180910390fd5b81601f6000828254610a30919061223d565b909155505033600090815260208052604081208054849290610a5390849061223d565b90915550610a8d90506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163384611726565b60405182815233907f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5906020015b60405180910390a250610ace6001600055565b50565b60008281526001602081905260409091200154610aed81611785565b610af7838361178f565b50505050565b6001600160a01b0381163314610b265760405163334bd91960e11b815260040160405180910390fd5b610b308282611808565b505050565b610b4d60008051602061231f83398151915233610f1b565b610b6a57604051635c427cd960e01b815260040160405180910390fd5b6000610b758161168c565b602954821115610b9857604051631fbe179d60e11b815260040160405180910390fd5b610bb3602283602260070154610bae62278d0090565b611875565b600b55602a8054839190600090610bcb908490612289565b90915550506040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610c37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5b919061229c565b90508062278d00600b54610c6f9190612250565b1115610c8e5760405163f16eeebd60e01b815260040160405180910390fd5b42600c556040518381527ff9a5da3a173eca8cd77c02ece3ff1467b8aa461ed3822201817f2d72fbc542839060200160405180910390a1505050565b610cd2611662565b610cda6118fa565b33610ce48161168c565b336000908152600e60205260409020546201518090610d03904261223d565b1015610d225760405163c4a8921360e01b815260040160405180910390fd5b336000908152600e60209081526040808320429055600a909152902060028101548015610e68576000600283018190556040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610db6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dda919061229c565b905080821115610dfd57604051631e9acf1760e31b815260040160405180910390fd5b610e316001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163384611726565b60405182815233907fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e04869060200160405180910390a2505b505050610e756001600055565b565b610e7f6118fa565b610ace81610fc2565b610ea060008051602061231f83398151915233610f1b565b610ebd57604051635c427cd960e01b815260040160405180910390fd5b62278d0042600082610ecf8184612267565b610eda906002612289565b610ee49190612250565b9050610ef6602282858761271061191e565b602b55505050565b6000610f08611513565b4210610f16576109aa611513565b504290565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000610f5181611785565b610b306001600160a01b0384163384611726565b610f8f7f5c91514091af31f62f596a314af7d5be40146b2f2355969392f055e12e0982fb33610f1b565b610fac57604051635c427cd960e01b815260040160405180910390fd5b8015610fba57610ace611a1a565b610ace611a74565b610fca6118fa565b33610fd48161168c565b612710821115610ff75760405163585b926360e01b815260040160405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663b731cb546040518163ffffffff1660e01b8152600401602060405180830381865afa158015611057573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107b91906122b5565b6040516370a0823160e01b81523360048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa1580156110c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e5919061229c565b90508060000361110857604051631f05dadd60e21b815260040160405180910390fd5b336000908152602c60205260409020602154611128919085908490611aad565b602155604080518481526020810183905233917ff4dbed0941210063507e7377f14a0749f60a2a982a3c2655b01d65134b924a6d910160405180910390a2505050565b611173611662565b3361117d8161168c565b8160000361119e5760405163162908e360e11b815260040160405180910390fd5b81601f60008282546111b09190612289565b9091555050336000908152602080526040812080548492906111d3908490612289565b9091555061120e90506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333085611b28565b60405182815233907f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d90602001610abb565b61125860008051602061231f83398151915233610f1b565b61127557604051635c427cd960e01b815260040160405180910390fd5b42600062278d00602b546112899190612289565b9050808210156112ac5760405163f0aaee6560e01b815260040160405180910390fd5b62278d0060006112bd60228461158d565b90506000826112cc8187612267565b6112d7906002612289565b6112e19190612250565b6000602a55602b81905590506112fd602282858561271061191e565b5050505050565b61131c60008051602061231f83398151915233610f1b565b61133957604051635c427cd960e01b815260040160405180910390fd5b601792909255601855601955565b6113717fa1496c3abf9cd93b84db10ae569b57fafa04deeeb7ece4167616ad50e35bc56e33610f1b565b61138e57604051635c427cd960e01b815260040160405180910390fd5b601e8190556040518181527ff18d722badc84ff70f53556319e6c00b5f78303309e5289063a3c5a41a7a77d5906020015b60405180910390a150565b336113d48161168c565b60405142815233907f39cf56b90e9d763f0c102996f87d848a60d5b19bd9d53e36505c49b64aa89c729060200160405180910390a250565b61142460008051602061231f83398151915233610f1b565b61144157604051635c427cd960e01b815260040160405180910390fd5b60298190556040518181527fb114240d54ce08081cbd18870dc3b6cd4091bb86ff29d2ad41906c2a2d6723d4906020016113bf565b60008061148283611b61565b905061148e8382611bec565b9392505050565b600082815260016020819052604090912001546114b181611785565b610af78383611808565b6114d360008051602061231f83398151915233610f1b565b6114f057604051635c427cd960e01b815260040160405180910390fd5b60295481111561144157604051631fbe179d60e11b815260040160405180910390fd5b600062278d00600c546109aa9190612289565b6000611531601f5490565b60000361153f5750600d5490565b601f54600b54600c54611550610efe565b61155a919061223d565b6115649190612250565b61157690670de0b6b3a7640000612250565b6115809190612267565b600d546109aa9190612289565b815460009082116115a357506003820154610964565b6000836001015483116115b657826115bc565b83600101545b60048501546002860154919250908211156116435760008560020154836115e3919061223d565b905060008187600301546115f79190612250565b9050600082118015611616575060038701546116138383612267565b14155b156116345760405163f20577e560e01b815260040160405180910390fd5b61163e8184612289565b925050505b845461164f908361223d565b6116599082612267565b95945050505050565b60026000540361168557604051633ee5aeb560e01b815260040160405180910390fd5b6002600055565b611694611526565b600d5561169f610efe565b600c556001600160a01b03811615610ace576001600160a01b0381166000908152600a602052604090206116d2826108fe565b60028201819055600d5460018301554282556040519081526001600160a01b038316907f401ccfec4c6c7ac3f3b71182750d0f8d73c0d29cc476732b0b21ab0d359da47f9060200160405180910390a25050565b6040516001600160a01b03838116602483015260448201839052610b3091859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050611dcc565b610ace8133611e34565b600061179b8383610f1b565b6118005760008381526001602081815260408084206001600160a01b0387168086529252808420805460ff19169093179092559051339286917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a4506001610964565b506000610964565b60006118148383610f1b565b156118005760008381526001602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610964565b60008284111561189857604051631fbe179d60e11b815260040160405180910390fd5b600785015460088601546118ac9086612289565b11156118cb57604051631fbe179d60e11b815260040160405180910390fd5b60006118d78386612267565b905080600003611659576040516307ced7af60e01b815260040160405180910390fd5b60025460ff1615610e755760405163d93c066560e01b815260040160405180910390fd5b84541580159061193d57506005850154855461193a9190612289565b84105b1561195b5760405163f0aaee6560e01b815260040160405180910390fd5b8260000361197c5760405163346ab43760e11b815260040160405180910390fd5b8060000361199d576040516319a2a9bd60e01b815260040160405180910390fd5b8385556119aa8385612289565b6001860155600285018490556003850182905560006004860155600585018390556006850181905560408051858152602081018590529081018390527f0792cf7388f234e543a10a68aeb7b96568fb90b55ddc2b2945961c80a3c3a0829060600160405180910390a15050505050565b611a226118fa565b6002805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a573390565b6040516001600160a01b03909116815260200160405180910390a1565b611a7c611e71565b6002805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611a57565b6000612710841115611ad25760405163585b926360e01b815260040160405180910390fd5b82600003611af357604051631f05dadd60e21b815260040160405180910390fd5b600083866001015484611b06919061223d565b611b109190612289565b94865550505060018301554260029092019190915590565b6040516001600160a01b038481166024830152838116604483015260648201839052610af79186918216906323b872dd90608401611753565b60405163395f293b60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906372be527690602401602060405180830381865afa158015611bc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610964919061229c565b600081600003611bfe57506000610964565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663b731cb546040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8291906122b5565b6040516370a0823160e01b81526001600160a01b0386811660048301529192506000918316906370a0823190602401602060405180830381865afa158015611cce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf2919061229c565b90506000826001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d58919061229c565b6040805160c0810182526017548152601854602082015260195491810191909152601c546060820152601d546080820152601b5460a08201529091506000611da1848484611e94565b9050670de0b6b3a7640000611db68289612250565b611dc09190612267565b98975050505050505050565b6000611de16001600160a01b03841683611f4d565b90508051600014158015611e06575080806020019051810190611e0491906122d2565b155b15610b3057604051635274afe760e01b81526001600160a01b03841660048201526024015b60405180910390fd5b611e3e8282610f1b565b611e6d5760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401611e2b565b5050565b60025460ff16610e7557604051638dfc202b60e01b815260040160405180910390fd5b600082600003611ea95750602081015161148e565b600083611ebe86670de0b6b3a7640000612250565b611ec89190612267565b9050600083602001518460000151611ee0919061223d565b90506000670de0b6b3a7640000611ef78385612250565b611f019190612267565b8560200151611f109190612289565b90508460200151811015611f2d578460200151935050505061148e565b8451811115611f435750508251915061148e9050565b9695505050505050565b606061148e8383600084600080856001600160a01b03168486604051611f7391906122ef565b60006040518083038185875af1925050503d8060008114611fb0576040519150601f19603f3d011682016040523d82523d6000602084013e611fb5565b606091505b5091509150611f43868383606082611fd557611fd08261201c565b61148e565b8151158015611fec57506001600160a01b0384163b155b1561201557604051639996b31560e01b81526001600160a01b0385166004820152602401611e2b565b508061148e565b80511561202c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160a01b0381168114610ace57600080fd5b60006020828403121561206c57600080fd5b813561148e81612045565b60006020828403121561208957600080fd5b81356001600160e01b03198116811461148e57600080fd5b6000602082840312156120b357600080fd5b5035919050565b600080604083850312156120cd57600080fd5b8235915060208301356120df81612045565b809150509250929050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c08301525050565b6101c0810161213d828b6120ea565b60e08201989098526101008101969096526101208601949094526101408501929092526101608401526101808301526101a090910152919050565b6000806040838503121561218b57600080fd5b823561219681612045565b946020939093013593505050565b8015158114610ace57600080fd5b6000602082840312156121c457600080fd5b813561148e816121a4565b6000806000606084860312156121e457600080fd5b505081359360208301359350604090920135919050565b610140810161220a82876120ea565b8460e0830152836101008301528261012083015295945050505050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561096457610964612227565b808202811582820484141761096457610964612227565b60008261228457634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561096457610964612227565b6000602082840312156122ae57600080fd5b5051919050565b6000602082840312156122c757600080fd5b815161148e81612045565b6000602082840312156122e457600080fd5b815161148e816121a4565b6000825160005b8181101561231057602081860181015185830152016122f6565b50600092019182525091905056fe7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c570223357a2646970667358221220e4fb90b3162f05c2d9a5bebe8eaa4d3958125a1415b9730f6ef20d993d27ffa164736f6c63430008140033";
|
|
17
|
+
static readonly bytecode = "0x610100346200026157601f62004ebf38819003918201601f191683019291906001600160401b03841183851017620002665781606092849260409687528339810103126200026157620000b262000056826200027c565b9162000072846200006a602084016200027c565b92016200027c565b600160009081556001600160a01b0394851660805291841660a05260e081905292831660c05262278d0060205591620000ab33620002b5565b5062000336565b50620000be33620003d9565b50620000ca3362000477565b50620000d63362000515565b506020549081156200024d5781420482810290808204841490151715620002395782620001039162000291565b91826014556a0211654585005212800000601255600b54801515908162000220575b506200020f57916060917f0792cf7388f234e543a10a68aeb7b96568fb90b55ddc2b2945961c80a3c3a0829382600b5562000161818462000291565b600c5582600d5581600e5581600f55806010556127106011558551928352602083015284820152a1516148eb9081620005b482396080518181816103f80152818161106b01526124f8015260a05181818161100401528181611be5015261248e015260c05181611766015260e05181818161043b01528181610f6b015281816114a0015281816134520152818161376801528181613c1a01528181613ca601528181613d6b01526144d60152f35b835163f0aaee6560e01b8152600490fd5b6200023091506010549062000291565b83103862000125565b634e487b7160e01b82526011600452602482fd5b634e487b7160e01b81526012600452602490fd5b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036200026157565b919082018092116200029f57565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b031660008181527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb49602052604081205490919060ff16620003325781805260016020526040822081835260205260408220600160ff19825416179055339160008051602062004e9f8339815191528180a4600190565b5090565b6001600160a01b031660008181527fc3eac9ead20d697480ab489ced881761c627fd3281937449e4d4d7fbf9faa2cd60205260408120549091907f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c5702233579060ff16620003d45780835260016020526040832082845260205260408320600160ff1982541617905560008051602062004e9f833981519152339380a4600190565b505090565b6001600160a01b031660008181527fbb55feefbbeeb450791a2805b5c4f111914a5147fd3ab1f161e7773d871abcc360205260408120549091907ffda1ae526c1fb38407f23e8b7712f7cfacc146f3e340a04221488331e0d420149060ff16620003d45780835260016020526040832082845260205260408320600160ff1982541617905560008051602062004e9f833981519152339380a4600190565b6001600160a01b031660008181527f0298389358dc4e56cb082b3bb11d0524b39b30d4fc48a48562a008cd6edee05f60205260408120549091907f5c91514091af31f62f596a314af7d5be40146b2f2355969392f055e12e0982fb9060ff16620003d45780835260016020526040832082845260205260408320600160ff1982541617905560008051602062004e9f833981519152339380a4600190565b6001600160a01b031660008181527fb430885b2fd8ad5c711883989efa8a81a8244e77d7ee19caf947074a66cbfadf60205260408120549091907fa1496c3abf9cd93b84db10ae569b57fafa04deeeb7ece4167616ad50e35bc56e9060ff16620003d45780835260016020526040832082845260205260408320600160ff1982541617905560008051602062004e9f833981519152339380a460019056fe608060408181526004918236101561001657600080fd5b600092833560e01c91826301ffc9a714612b815750816304a6f57614612b49578163092c5b3b14612b205781630943832014612a9a5781630a58b40e14612a395781630bfa248014612a1c5781630d15fd77146129fd57816318160ddd146129de5781631c3ebaeb14611ced578163211dc32d146129b0578163248a9ca31461298657816324ab066c14610b5857816328cae71e146129275781632d5ce3e61461288b5781632e1a7d4d1461241a5781632e46da29146123c85781632f2ff15d1461239e57816336568abe14612358578163372500ab146121dc5781633b946c7114611f6e5781633fba284a14611f4f57816348e5d9f814611ede578163588fcfd814611ec25781635953279e14611e9e5781635c975abb14611e7a5781636219015014611e2f578163671ee22714611cf25781637001f4bb14611ced5781637035ab9814611ca457816370a0823114611c6c578163728e4a6714611c1457816372f702f314611bd0578163750e1c0914611a8b5781637b0a47ee14611a6c5781637bb7bed114611a415781637c2d6e01146119dd57816380ac8228146119af57816382fd8e5d1461198957816390e87986146118fd578163912acbd9146118c157816391d148541461187a578163958da8de1461184257816395ccea67146117d6578163994e8f261461179557816399eecb3b146117515781639d0ab89f146116115781639e0092cb14611452578163a042e48d14611411578163a217fddf146113f6578163a4d24b5c146113ba578163a694fc3a14610f12578163a83627de14610ead578163b470aade14610e8f578163b66503cf14610e56578163b7f1aca814610dc6578163be3dd87a14610da0578163c4f59f9b14610ca5578163c8562f7214610c86578163c8f33c9114610c67578163c925c68014610c41578163ca37271b14610c08578163cc64278414610bc0578163cd63d93014610ba1578163d1ab58f414610b58578163d547741f14610b15578163d5999a5c14610af7578163d6585ecf14610ace578163d700c18b14610a6b578163d70afa9614610a42578163dcda162c14610a07578163dd89b7361461090d578163df136d65146108ee578163e70b9e27146108a5578163ea8d6e61146107d2578163ebe2b12b146107af578163ecc68a291461060d578163f06e22b81461048757508063f4359ce51461046a578063f77c479114610427578063f7c618c1146103e45763fe7743e9146103a057600080fd5b346103e05760203660031901126103e0576103d9602092826103c0612bd4565b6001600160a01b03811683526022865291205490613d17565b9051908152f35b5080fd5b50346103e057816003193601126103e057517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b50346103e057816003193601126103e057517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b50346103e057816003193601126103e0576020905162093a808152f35b82843461060a578060031936011261060a578080601554905b8181106105af575b50506001600160a01b0391821691821561059f5783519263133dac2960e11b8452308685015260249583858881855afa948515610595578495610571575b50835b855181101561056d576105239060208986828460051b8b010151169182895252838988200185815488811615610528575b50505050612f71565b6104e9565b6001600160a01b03191617905561053e81613f9f565b1561054c575b80858161051a565b6105558161324b565b6000805160206147b68339815191528780a289610544565b8480f35b61058e9195503d8086833e6105868183612d88565b8101906131a2565b93876104e6565b86513d86823e3d90fd5b5050505163dc1669a360e01b8152fd5b6105b881612cc2565b60018060a01b03809254600392831b1c168552602560205260ff8786205460a01c166105ee5750506105e990612f71565b6104a0565b92509293506105fc90612cc2565b9054911b1c169084806104a8565b80fd5b82843461060a578160031936011261060a57610627612bd4565b61062f612bef565b90610638612dab565b60018060a01b039182821691828552602091602483526002878720015461079f57841690811561078f57865163313ce56760e01b815283818a81885afa879181610760575b5061069257875163552b2fcd60e01b81528990fd5b9188918893868952602b865260ff858a20911660ff19825416179055878897601754985b898110610728575b505060019596975015610719575b508587526024855282872091820190848060a01b031982541617905560024291015560246106fb84544261326e565b9385875252842001556000805160206147b68339815191528280a280f35b6107229061324b565b876106cc565b888261073383612ca7565b90549060031b1c161461074e5761074990612f71565b6106b6565b5096975087965060019050808a6106be565b610781919250853d8711610788575b6107798183612d88565b81019061357a565b908a61067d565b503d61076f565b8651635c187b8d60e01b81528890fd5b865163185add2960e11b81528890fd5b5050346103e057816003193601126103e0576020906103d9601b5483549061326e565b8383346103e057816003193601126103e05780519160e08301906001600160401b03821184831017610892575061014093508152600b5491828152600c549160208201928352600d5491818101928352600e5460608201908152600f54608083019081526010549160a0840192835260c0601154940193845260125494601354966014549882519a8b525160208b015251908901525160608801525160808701525160a08601525160c085015260e0840152610100830152610120820152f35b634e487b7160e01b815260418552602490fd5b5050346103e057806003193601126103e057806020926108c3612bd4565b6108cb612bef565b6001600160a01b0391821683526028865283832091168252845220549051908152f35b5050346103e057816003193601126103e057602090601c549051908152f35b5050346103e057816003193601126103e057610927612f4e565b815b6017548110156109d6578061094061097c92612ca7565b9054600391821b1c6001600160a01b0316808652602460209081528587209192909161096c3385613593565b80610981575b5050505050612f71565b610929565b84895260288452878920338a52845261099e888a2091825461326e565b9055838852602a83528688203389528352426001888a2001550154918652602781528486209033875252838520553880808080610972565b50514281527e745e876c45796ea32ef5ef1bcbf9cef81cfd16666c9364caa1cb8a6ddbd67660203392a26001815580f35b5050346103e057816003193601126103e057602090517ffda1ae526c1fb38407f23e8b7712f7cfacc146f3e340a04221488331e0d420148152f35b5050346103e057816003193601126103e057602090516000805160206148768339815191528152f35b5050346103e057806003193601126103e0578091610a87612bd4565b610a8f612bef565b6001600160a01b039182168352602a60209081528484209290911683525220805460018201546002909201549251928392610aca9284612c91565b0390f35b5050346103e057816003193601126103e057602090516000805160206147f68339815191528152f35b5050346103e057816003193601126103e0576020905162278d008152f35b91905034610b545780600319360112610b5457610b509135610b4b6001610b3a612bef565b938387528160205286200154612e13565b612eb9565b5080f35b8280fd5b5050346103e057806003193601126103e05780602092610b76612bd4565b610b7e612bef565b6001600160a01b0391821683526029865283832091168252845220549051908152f35b5050346103e057816003193601126103e057602090601d549051908152f35b82843461060a57602036600319011261060a576001600160a01b039060ff90839083610bea612bd4565b168152602560205220548351928116835260a01c1615156020820152f35b5050346103e05760203660031901126103e057906020916001610c39610c2c612bd4565b610c34612f4e565b612f96565b925551908152f35b5050346103e05760203660031901126103e0576020906103d9610c62612bd4565b6144b9565b5050346103e057816003193601126103e057602090601b549051908152f35b5050346103e057816003193601126103e0576020906018549051908152f35b91905034610b545782600319360112610b54578283601554905b818110610d47575b50506001600160a01b0316918215610d39578390602483518095819363133dac2960e11b835230908301525afa918215610d2f5783610aca9493610d12575b50505191829182612cf8565b610d279293503d8091833e6105868183612d88565b903880610d06565b81513d85823e3d90fd5b905163dc1669a360e01b8152fd5b610d5081612cc2565b60018060a01b03809254600392831b1c168852602560205260ff8689205460a01c16610d86575050610d8190612f71565b610cbf565b92509250610d9390612cc2565b9054911b1c163880610cc7565b5050346103e057816003193601126103e057602090516a02116545850052128000008152f35b91905034610b54576020366003190112610b5457813591600080516020614876833981519152808552600160205282852033865260205260ff838620541615610e3b57847ff18d722badc84ff70f53556319e6c00b5f78303309e5289063a3c5a41a7a77d56020868681601d5551908152a180f35b604492519163e2517d3f60e01b835233908301526024820152fd5b5050346103e05736600319011261060a57610e8c610e72612bd4565b610e7a612dab565b610e83816137bf565b602435906132bb565b80f35b5050346103e057816003193601126103e05760209081549051908152f35b91905034610b545782600319360112610b5457610ec8612dab565b60145491610ed9602054809461326e565b91824210610f055784610e8c85610eef86614661565b90610ef861444a565b846013558060145561454e565b5163f0aaee6560e01b8152fd5b8383346103e057602080600319360112610b5457833591610f31612f4e565b610f39612f30565b610f42336137bf565b82156113ab57805163aa79979b60e01b815230868201526024906001600160a01b0390848184817f000000000000000000000000000000000000000000000000000000000000000086165afa9081156113a1578791611367575b501561135757610fae85601e5461326e565b601e55338652602290818552610fc7868589205461326e565b3388528286528488205561102884516323b872dd60e01b8782015261100281610ff48a30338a850161379d565b03601f198101835282612d88565b7f000000000000000000000000000000000000000000000000000000000000000061311b565b3387528185528387205490602c865261105a611048868a20549333613d17565b926110558460185461326e565b6132ae565b601855338852602c865281858920557f00000000000000000000000000000000000000000000000000000000000000001687528285528387206003810154906064601954106112bb575b503361118a575b508351908152600080516020614896833981519152853392a233865283528185205415611171576026835260ff828620541615611106575b50600080516020614756833981519152929394505b519283523392a26001815580f35b60165495600160401b87101561116057505061114361113c86600160008051602061475683398151915296979801601655612cdd565b339161322d565b33855260268252808520805460ff191660011790558493926110e3565b634e487b7160e01b86526041905284fd5b50600080516020614756833981519152929394506110f8565b338852602e865260648589205410156110ab578286526111ad8589205433613bdf565b338952602d875285892091848852868a205490602c8952878b205461271084116000146112b45761270f1984018481116112a15762093a809004925b8951956111f587612d6d565b4287528b87019182528a8701928352606087019384526080870194855260a08701958652805490600160401b82101561128e579061123891600182018155612c05565b96909661127d57518655516001860155516002850155516003840155518a83015551600590910155338752602e8552838720805461127590612f71565b9055886110ab565b634e487b7160e01b8e528d8f52898efd5b8f8f60418d92634e487b7160e01b835252fd5b50634e487b7160e01b8c5260118d52878cfd5b8b926111e9565b601e546018549154908751926112d084612d3c565b428452898401918252888401908152606084019185835260808501938452600a54600160401b8110156113435780600161130d9201600a55612c72565b95909561127d5751855551600185015551600284015551600383015551908a015560195461133a90612f71565b601955896110a4565b5050634e487b7160e01b8c5260418d52878cfd5b825163d4220bed60e01b81528790fd5b90508481813d831161139a575b61137e8183612d88565b81010312611396575180151581036113965788610f9c565b8680fd5b503d611374565b84513d89823e3d90fd5b5163162908e360e11b81528490fd5b905034610b54576020366003190112610b54576000805160206147168339815191529160209135906113ea612dab565b8160125551908152a180f35b5050346103e057816003193601126103e05751908152602090f35b5050346103e05760203660031901126103e05760209160ff9082906001600160a01b0361143c612bd4565b16815260258552205460a01c1690519015158152f35b8383346103e05760209081600319360112610b5457833591611472612f30565b61147b336137bf565b6127108311611601578151633b92eb2360e01b81526001600160a01b039190818188817f000000000000000000000000000000000000000000000000000000000000000087165afa9081156115f75790829187916115ca575b5060248551809581936370a0823160e01b8352338c840152165afa9182156115c057859261158d575b50811561157d57907ff4dbed0941210063507e7377f14a0749f60a2a982a3c2655b01d65134b924a6d929133865260238152828620601f5490836115508160018401948554818161156c575b505061326e565b9288835555600242910155601f5582519485528401523392a280f35b61157692506132ae565b8c80611549565b8251631f05dadd60e21b81528690fd5b9080925081813d83116115b9575b6115a58183612d88565b810103126115b5575190866114fd565b8480fd5b503d61159b565b83513d87823e3d90fd5b6115ea9150823d84116115f0575b6115e28183612d88565b810190613183565b886114d4565b503d6115d8565b84513d88823e3d90fd5b815163585b926360e01b81528590fd5b8383346103e05760209081600319360112610b545761162e612c37565b906000805160206147f683398151915280855260018452818520338652845260ff828620541615611733575081156116d1576002549460ff86166116c3575060016000805160206147768339815191529495611688612f30565b60ff1916176002557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258838251338152a15b519015158152a180f35b9051631785c68160e01b8152fd5b60025460ff8116156117235760008051602061477683398151915294955060ff19166002557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa838251338152a16116b9565b8151636cd6020160e01b81528690fd5b905163e2517d3f60e01b815233818701526024810191909152604490fd5b5050346103e057816003193601126103e057517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b905034610b54576020366003190112610b5457359160155483101561060a57506117c0602092612cc2565b905491519160018060a01b039160031b1c168152f35b905034610b545781600319360112610b54576117f0612bd4565b91838052600160205280842033855260205260ff8185205416156118255783610e8c602435336001600160a01b0387166130ca565b9083604492519163e2517d3f60e01b835233908301526024820152fd5b5050346103e05760203660031901126103e05760209181906001600160a01b0361186a612bd4565b168152602c845220549051908152f35b905034610b545781600319360112610b54578160209360ff9261189b612bef565b90358252600186528282206001600160a01b039091168252855220549151911615158152f35b5050346103e05760203660031901126103e05760209160ff9082906001600160a01b036118ec612bd4565b168152602b85522054169051908152f35b82843461060a578060031936011261060a5781516015805480835290835260208083019492937f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec47592915b82821061196957610aca868661195f828b0383612d88565b5191829182612cf8565b83546001600160a01b031687529586019560019384019390910190611947565b5050346103e05760203660031901126103e0576020906103d96119aa612bd4565b614260565b5050346103e057806003193601126103e0576020906103d96119cf612bd4565b6119d7612bef565b90614015565b91905034610b54576020366003190112610b54578135916119fc612dab565b8215611a335750816020917fbd6eb9cf4d6e2902587c57e3163aaafdb46e3b3f2086bdfa75c790228930a9d793835551908152a180f35b90516302e8f35960e31b8152fd5b905034610b54576020366003190112610b5457359160175483101561060a57506117c0602092612ca7565b5050346103e057816003193601126103e057602090601a549051908152f35b8383346103e05760203660031901126103e057823590611aa9612dab565b8160035480611bb8575b5015611baf575b611ac261444a565b611acf836020548361454e565b6014556127108211611ba0576020546003548181611b4257611af291504261328e565b60018101809111611b2f576000805160206147168339815191529495508382611b226020969594611b279461327b565b6145ec565b51908152a180f35b634e487b7160e01b855260118652602485fd5b611b4b9161326e565b4210611b9057611b5b814261328e565b60018101809111611b2f576000805160206147168339815191529495508382611b226020969594611b8b9461327b565b611b27565b8151632d925b7560e21b81528590fd5b5163585b926360e01b81528390fd5b60019150611aba565b602054611bc49161326e565b4210611b905785611ab3565b5050346103e057816003193601126103e057517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b5050346103e057806003193601126103e0576103d960209282611c35612bd4565b91611c3e612bef565b611c488185614015565b6001600160a01b03948516835260298852838320919094168252865220549061326e565b5050346103e05760203660031901126103e05760209181906001600160a01b03611c94612bd4565b1681526022845220549051908152f35b5050346103e057806003193601126103e05780602092611cc2612bd4565b611cca612bef565b6001600160a01b0391821683526027865283832091168252845220549051908152f35b612c55565b905034610b545760209182600319360112611e2b57611d0f612bd4565b90611d1982613ff0565b6001600160a01b039182168086526024808652828720850154835163ea7cbff160e01b815280870184905295941693908690869081875afa948515611e21579086918896611def575b50602483918551968793849263fa1af4f360e01b84528301525afa928315611de5578693611db1575b506002946024918752528420918255600182015501805415611dab575080f35b42905580f35b9092508481813d8311611dde575b611dc98183612d88565b81010312611dda5751916002611d8b565b8580fd5b503d611dbf565b82513d88823e3d90fd5b8281939297503d8311611e1a575b611e078183612d88565b8101031261139657519385906024611d62565b503d611dfd565b83513d89823e3d90fd5b8380fd5b5050346103e05760203660031901126103e0579081906001600160a01b03611e55612bd4565b16815260236020522090610aca82549160026001850154940154905193849384612c91565b5050346103e057816003193601126103e05760209060ff6002541690519015158152f35b5050346103e057816003193601126103e05760209060ff6021541690519015158152f35b5050346103e057816003193601126103e0576020905160648152f35b8383346103e05760203660031901126103e05760c0926001600160a01b0392829084611f08612bd4565b1681526024602052209081549360018301549360056002850154926003860154948601541694015494815196875260208701528501526060840152608083015260a0820152f35b5050346103e057816003193601126103e0576020906019549051908152f35b91905034610b545780600319360112610b5457611f89612bd4565b90611f92612c46565b92611f9b612dab565b8315612096576001600160a01b038381168087526025602052838720548216612086578351918285016001600160401b03811184821017612073578552818352602080840189815292895260259052848820925183546001600160a01b03191691161782555161200e919015159061355d565b60155490600160401b82101561206057509160209161204c826120468660016000805160206148568339815191529801601555612cc2565b9061322d565b5193151584526001600160a01b031692a280f35b634e487b7160e01b865260419052602485fd5b634e487b7160e01b895260418552602489fd5b8351633d873e1f60e01b81528390fd5b6001600160a01b0380841680875260256020528387205492959493928216156121cc578087526025602052828720805460ff60a01b19169055865b60158054808310156121ac5784846120e885612cc2565b929054600393841b1c16146121085750505061210390612f71565b6120d1565b9094919596979893506000199485810190811161219957916120469161213161213d9594612cc2565b9054911b1c1691612cc2565b8254908115612186575091602093916000805160206148568339815191529593019061218061216b83612cc2565b81549060018060a01b039060031b1b19169055565b5561204c565b634e487b7160e01b885260319052602487fd5b634e487b7160e01b8b526011855260248bfd5b50505050506000805160206148568339815191529293509060209161204c565b82516312a3d7e760e31b81528690fd5b82843461060a578060031936011261060a5791906121f8612f4e565b825b6017548410156123515761220d84612ca7565b905460039190911b1c6001600160a01b03169361222a338661388a565b61223385613ff0565b848252602894602095808752848420338552875284842054908161226a575b5050506122629192939450612f71565b9291906121fa565b8285528752848420338552875284842084905584516370a0823160e01b81523087820152968088602481865afa8015612347578590612317575b612262959697985080831161230f575b50816122c5575b8796959450612252565b600080516020614736833981519152906122e08333866130ca565b8387526029815287872033885281528787206122fd84825461326e565b905587519283523392a38580806122bb565b9150886122b4565b508088813d8311612340575b61232d8183612d88565b810103126115b5579651959687966122a4565b503d612323565b86513d87823e3d90fd5b6001815580f35b8383346103e057806003193601126103e057612372612bef565b90336001600160a01b0383160361238f5750610b50919235612eb9565b5163334bd91960e11b81528390fd5b91905034610b545780600319360112610b5457610b5091356123c36001610b3a612bef565b612e39565b91905034610b545782600319360112610b545760e09250600354915490600554600654600754916008549360095495815197885260208801528601526060850152608084015260a083015260c0820152f35b8383346103e057602080600319360112610b5457833591612439612f4e565b612442336137bf565b82156113ab5733845260229485835281852054841161287d5761246784601e546132ae565b601e5533855285835261247d84838720546132ae565b338652868452828620556124b284337f00000000000000000000000000000000000000000000000000000000000000006130ca565b33855285835281852054602c84526124de6124d1848820549233613d17565b916110558360185461326e565b601855338652602c8452808387205560018060a01b0390817f0000000000000000000000000000000000000000000000000000000000000000168752602497888652848820918860039384810154906064601954106127cf575b5033612695575b50508551908152600080516020614896833981519152873392a23388528552838720541561258a575b5050509060008051602061481683398151915291519283523392a26001815580f35b6026855260ff848820541615612568578695949392965b601680548083101561267557846125b784612cdd565b905490861b1c1633146125d45750506125cf90612f71565b6125a1565b9390949596979892600019948581019081116126635791612046916125fc6126089594612cdd565b9054911b1c1691612cdd565b8254908115612651575060008051602061481683398151915295969750019061263361216b83612cdd565b555b33855260268252808520805460ff191690558493928680612568565b634e487b7160e01b8852603190528787fd5b634e487b7160e01b8b52601185528b8bfd5b505050505090919350600080516020614816833981519152929450612635565b338252602e8952606488832054101561253f578389526126b88883205433613bdf565b90338352602d8a5288832090858b5289842054602c8c528a8520549061271085116000146127c75761270f1985018581116127b45762093a808e9104945b8d519161270283612d6d565b42835282019283528d8201938452606082019485526080820195865260a08201968752805490600160401b82101561279f579061274491600182018155612c05565b97909761278a57505186555160018601555160028501555186840155518783015551600590910155338952602e8752858920805461278190612f71565b9055888b61253f565b9150508f9150808b634e487b7160e01b825252fd5b5050634e487b7160e01b87525060418b528f86fd5b50634e487b7160e01b865260118b528f86fd5b8c86946126f6565b601e546018549154908a51926127e484612d3c565b4284528c84019182528b8401908152606084019185835260808501938452600a54600160401b811015612869578060016128219201600a55612c72565b959095612856575185555160018501555160028401555187830155519088015560195461284d90612f71565b6019558c612538565b5050634e487b7160e01b8652858b528f86fd5b5050634e487b7160e01b865260418b528f86fd5b90516345a5c39960e11b8152fd5b905034610b545781600319360112610b54576128a5612bd4565b916128ae612c46565b916128b7612dab565b6001600160a01b039384168086526025602052828620549094161561291957507fd0c9b7d29c9d78752c4c849829be427bcd906db1676631e06ffeb91590df9293916020918486526025835261290f8282882061355d565b519015158152a280f35b90516312a3d7e760e31b8152fd5b91905034610b54576020366003190112610b5457813592600a5484101561060a575061295460a093612c72565b508054926001820154926002830154916003840154930154938151958652602086015284015260608301526080820152f35b905034610b54576020366003190112610b5457816020936001923581528285522001549051908152f35b5050346103e057806003193601126103e0576020906103d96129d0612bd4565b6129d8612bef565b906142ef565b5050346103e057816003193601126103e057602090601e549051908152f35b5050346103e057816003193601126103e057602090601f549051908152f35b5050346103e057816003193601126103e0576020906103d961444a565b5050346103e05760203660031901126103e05760207fbece956ce1c97a5de8f427535a7bb21d29086be6e5c0d5cf5d9aa0f56e51495d91612a78612c37565b612a80612dab565b15159060ff196021541660ff83161760215551908152a180f35b91905034610b545780600319360112610b5457612ab5612bd4565b6001600160a01b03168352602d6020528083208054602435949085101561060a575060c093612ae391612c05565b50805492600182015492600283015490600560038501549385015494015494815196875260208701528501526060840152608083015260a0820152f35b5050346103e057816003193601126103e057602090516000805160206147968339815191528152f35b5050346103e05760203660031901126103e05760209181906001600160a01b03612b71612bd4565b168152602e845220549051908152f35b849134610b54576020366003190112610b54573563ffffffff60e01b8116809103610b545760209250637965db0b60e01b8114908115612bc3575b5015158152f35b6301ffc9a760e01b14905083612bbc565b600435906001600160a01b0382168203612bea57565b600080fd5b602435906001600160a01b0382168203612bea57565b8054821015612c21576000526006602060002091020190600090565b634e487b7160e01b600052603260045260246000fd5b600435908115158203612bea57565b602435908115158203612bea57565b34612bea576000366003190112612bea5760206040516127108152f35b600a54811015612c2157600a6000526005602060002091020190600090565b6040919493926060820195825260208201520152565b601754811015612c2157601760005260206000200190600090565b601554811015612c2157601560005260206000200190600090565b601654811015612c2157601660005260206000200190600090565b6020908160408183019282815285518094520193019160005b828110612d1f575050505090565b83516001600160a01b031685529381019392810192600101612d11565b60a081019081106001600160401b03821117612d5757604052565b634e487b7160e01b600052604160045260246000fd5b60c081019081106001600160401b03821117612d5757604052565b601f909101601f19168101906001600160401b03821190821017612d5757604052565b3360009081527fc3eac9ead20d697480ab489ced881761c627fd3281937449e4d4d7fbf9faa2cd60205260409020546000805160206147968339815191529060ff1615612df55750565b6044906040519063e2517d3f60e01b82523360048301526024820152fd5b80600052600160205260406000203360005260205260ff6040600020541615612df55750565b906000918083526001602052604083209160018060a01b03169182845260205260ff60408420541615600014612eb45780835260016020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b906000918083526001602052604083209160018060a01b03169182845260205260ff604084205416600014612eb4578083526001602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b60ff60025416612f3c57565b60405163d93c066560e01b8152600490fd5b600260005414612f5f576002600055565b604051633ee5aeb560e01b8152600490fd5b6000198114612f805760010190565b634e487b7160e01b600052601160045260246000fd5b60009033825260209060228252604090818420541580156130aa575b6130a457612fc0338261388a565b6001600160a01b03168084526028835281842033855283528184205493909190841561309c5781516370a0823160e01b81523060048201528481602481875afa908115613092579086918391613061575b5010613051579081836000805160206147368339815191529352602885528181203382528552818120556130468533856130ca565b51928484523393a390565b8151623857a360ea1b8152600490fd5b809250868092503d831161308b575b61307a8183612d88565b810103126103e05785905138613011565b503d613070565b83513d84823e3d90fd5b935050505090565b50505090565b506001600160a01b03818116855260248452828520600401541615612fb2565b60405163a9059cbb60e01b60208201526001600160a01b03909216602483015260448083019390935291815260808101916001600160401b03831182841017612d57576131199260405261311b565b565b906000602091828151910182855af115613177576000513d61316e57506001600160a01b0381163b155b61314c5750565b604051635274afe760e01b81526001600160a01b039091166004820152602490fd5b60011415613145565b6040513d6000823e3d90fd5b90816020910312612bea57516001600160a01b0381168103612bea5790565b906020908183820312612bea5782516001600160401b0393848211612bea570181601f82011215612bea578051938411612d57578360051b90604051946131eb85840187612d88565b85528380860192820101928311612bea578301905b82821061320e575050505090565b81516001600160a01b0381168103612bea578152908301908301613200565b919082549060031b9160018060a01b03809116831b921b1916179055565b60175490600160401b821015612d57576120468260016131199401601755612ca7565b91908201809211612f8057565b81810292918115918404141715612f8057565b8115613298570490565b634e487b7160e01b600052601260045260246000fd5b91908203918211612f8057565b90801561352e57601254811161351c5760018060a01b039182811691600091838352602090602482526040938481209160018301918254916132fc81613f9f565b156134fb575b6004850180549a808c1615613401575b50506000805160206147d683398151915298995061332f90614260565b914210156133ac575061336761336f9161335561334d4286546132ae565b86549061327b565b9087906001811161339b575b5061326e565b84549061328e565b825561337c83544261326e565b90555b61338b8360135461326e565b60135554908351928352820152a2565b6133a691508861327b565b38613361565b906133c5908690600181116133f0575b5085549061328e565b905080156133e8575b82554260028301556133e183544261326e565b905561337f565b5060016133ce565b6133fb91508761327b565b386133bc565b839b84601554905b818110613489575b509b9c6000805160206147d68339815191529c5061332f9493929081169190821561345057505081546001600160a01b0319161790555b908a99613312565b7f0000000000000000000000000000000000000000000000000000000000000000166001600160a01b0319919091161790915550613448565b8360ff8e60258e61349986612cc2565b959054600396871b1c168c525289205460a01c166134c057506134bb90612f71565b613409565b6000805160206147d68339815191529e9f50849392509361332f9695946134e78293612cc2565b9054911b1c169e9d50929394819250613411565b6135048161324b565b886000805160206147b68339815191528380a2613302565b604051631fbe179d60e11b8152600490fd5b5060408051600080825260208201526001600160a01b03909216916000805160206147d68339815191529190a2565b805460ff60a01b191691151560a01b60ff60a01b16919091179055565b90816020910312612bea575160ff81168103612bea5790565b60018060a01b03808216916000908382526020946024865260409485842092858316938486526022895287862054156137915782865260288952878620858752895287862054968982549482600485015416928315159081613764575b506136f5575b50505082156136c9576001600282015491015490814211156000146136d5576136209150426132ae565b965b87156136c957613646988698601e549485613649575b50505050505050505061326e565b90565b61367f969798999a509161366d61366760229361367a97969561327b565b94614260565b988a52528720549061327b565b61328e565b91600181116136b4575b508161369491613bdf565b915081156136ad57505b90388080808080808080613638565b905061369e565b6136c290613694929361328e565b9190613689565b50505050505091505090565b818110156136ec576136e6916132ae565b96613622565b50508496613622565b60248b518094819363ea7cbff160e01b835260048301525afa879181613731575b50613723575b89816135f6565b801561371c5792503861371c565b9091508a81813d831161375d575b6137498183612d88565b8101031261375957519038613716565b8780fd5b503d61373f565b90507f000000000000000000000000000000000000000000000000000000000000000016831415386135f0565b50505050509250505090565b6001600160a01b03918216815291166020820152604081019190915260600190565b60005b60175481101561388657806137d961382c92612ca7565b9060018060a01b03809154600393841b1c1691826000528560209360248552604094856000209461380a83876139cf565b9690809682015560024291015583169081613831575b50505050505050612f71565b6137c2565b61384f9661383f8585613593565b928361385b575b50505050613aa8565b38808085818080613820565b61387b92856000526028815282600020916000525260002091825461326e565b905538808080613846565b5050565b6001600160a01b0391908281169081158015806139b4575b6139a2571561391d57505060005b6017548110156139185780836138c861391393612ca7565b919054600392831b1c169081600052602090602482528560409384600020936138f182866139cf565b9590809582015560024291015589831690816138315750505050505050612f71565b6138b0565b505050565b9160039260009492948581526024602052604081209361393d83866139cf565b9681964260028201550155831680613959575b50505050505050565b613976966139678585613593565b92836139825750505050613aa8565b38808080808080613950565b61387b92604092825260286020528282209082526020522091825461326e565b60405163dc1669a360e01b8152600490fd5b508260005260246020528460046040600020015416156138a2565b9190601e54908115613a98576139e490614260565b926002810180548042116139ff575b50506003915001549190565b600183015490600091804210600014613a7a5750613a1e9150426132ae565b80613a33575b506003925042905538806139f3565b8254613a3e9161327b565b670de0b6b3a764000090818102918183041490151715612f8057600393613a649161328e565b613a7284840191825461326e565b905538613a24565b81811115613a9157613a8c92506132ae565b613a1e565b5050613a1e565b9261364691506003015492614260565b90939260018060a01b0380921692600095848752602090602a825260409384892095821695868a5283528489209160228452858a20549081613af2575b5050505050505050509050565b613afd8454876132ae565b9182613b0a575b50613ae5565b602154613b239392829160ff16613bbe575b505061327b565b670de0b6b3a76400009180830292830403613baa577ff16749621c2992b34cca23238ae1e06cae2b2dba7b0b5256d35b13667e9afb7596979899613b6b613b8d93889361328e565b938681556001429101558981526028855281812089825285522091825461326e565b905582519182524290820152a38038808080808080808080613b04565b634e487b7160e01b8a52601160045260248afd5b612710925090613bd181613bd793613bdf565b9061327b565b043880613b1c565b908015613d105760ff6021541615613c8f57613c169160409182918251948592839263a85bde9d60e01b845230906004850161379d565b03817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa908115613c8557600091613c59575b50905090565b82813d8311613c7e575b613c6d8183612d88565b8101031261060a5750518038613c53565b503d613c63565b513d6000823e3d90fd5b50506040516356fe702d60e01b81526020816004817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa90811561317757600091613ce2575090565b906020823d8211613d08575b81613cfb60209383612d88565b8101031261060a57505190565b3d9150613cee565b5050600090565b60ff60215416158015613f97575b613f9357610fa08083029083159084830414811715612f805760408051633b92eb2360e01b815261271093849004946004926001600160a01b03929091602091828187817f000000000000000000000000000000000000000000000000000000000000000089165afa908115613f6b57908591600091613f76575b50169383519163d2e01b2f60e01b835216908186820152608081602481885afa908115613f6b57600091613eee575b5083815115159182613ee1575b5050613dfb575b5050505050505090808211613df6575090565b905090565b819060248451809681936370a0823160e01b8352898301525afa918215613c855750600091613eb5575b509050858110613e43575050505050805b9038808080808080613de3565b613e4d908661327b565b9161177092838102938185041490151715613ea05783860293868504141715613e8b5750613e859291613e7f9161328e565b9061326e565b90613e36565b601190634e487b7160e01b6000525260246000fd5b601182634e487b7160e01b6000525260246000fd5b82813d8311613eda575b613ec98183612d88565b8101031261060a5750518038613e25565b503d613ebf565b0151421090508338613ddc565b6080813d8211613f63575b81613f0660809383612d88565b810103126103e05784519160808301906001600160401b03821184831017613f50575090606091865280518352848101518584015285810151868401520151606082015238613dcf565b634e487b7160e01b815260418952602490fd5b3d9150613ef9565b84513d6000823e3d90fd5b613f8d9150843d86116115f0576115e28183612d88565b38613da0565b5090565b508115613d25565b6017549060005b828110613fb557505050600090565b613fbe81612ca7565b905460039190911b1c6001600160a01b0390811690831614613fe857613fe390612f71565b613fa6565b505050600190565b6001600160a01b0390811660009081526024602052604090206004015416156139a257565b60018060a01b0380921660009181835260209060228252604094858520541561422b5781169081855260248352858520602a8452868620858752845286862090600381015490600281015480421180614220575b61419f575b5050858752602c8552878720549154614086916132ae565b91826140a15750505083526028815283832091835252205490565b87516370a0823160e01b81523060048201529897939591949192828a6024818a5afa998a1561419557889a614164575b506140ef916140f66140fc92670de0b6b3a76400009485918a61327b565b0491614260565b9061328e565b9481810290808204831490151715614150576136469899613bd1614123926018549061328e565b049486526028815282862091865252832054925081811160001461414857509061326e565b90509061326e565b634e487b7160e01b88526011600452602488fd5b9099508281813d831161418e575b61417c8183612d88565b810103126137595751986140ef6140d1565b503d614172565b85513d8a823e3d90fd5b600182015490814210600014614201576141ba9150426132ae565b905b811561406e57546141cc9161327b565b670de0b6b3a7640000908181029181830414901517156141505761408691613e7f6141fa926018549061328e565b903861406e565b8082111561421857614212916132ae565b906141bc565b505087614212565b506018541515614069565b1683526028815283832091835252205490565b60ff166012039060ff8211612f8057565b60ff16604d8111612f8057600a0a90565b6001600160a01b03166000818152602b602052604090205460ff16908115614294575061428f6136469161423e565b61424f565b60405163313ce56760e01b81529150602090829060049082905afa600091816142cf575b506142c35750600190565b61428f6136469161423e565b6142e891925060203d8111610788576107798183612d88565b90386142b8565b6001600160a01b039080821690811561442b578284169160009383855260209260228452604096878720541561441657614328816144b9565b91601e549384156143ff578589526024875260048a8a200154166143eb57505086516370a0823160e01b81523060048201528481602481875afa8791816143bc575b506143b75750855b8061438c5750505083526028815283832091835252205490565b9161367a6143a29261364699979598969461327b565b9483526028815283832091835252205461326e565b614372565b9091508581813d83116143e4575b6143d48183612d88565b810103126137595751903861436a565b503d6143ca565b613646989694979593506143a29250613593565b505050505083526028815283832091835252205490565b50505083526028815283832091835252205490565b5060005260286020526040600020911660005260205260406000205490565b6014548015614496576000428211614490575061447361446a82426132ae565b6020549061328e565b905b60018201809211612f8057613e7f613646926020549061327b565b90614475565b506020546144a4814261328e565b9060018201809211612f80576136469161327b565b60405163395f293b60e11b815230600482015291906020836024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa9283156131775760009361451b575b50916136469192613bdf565b6020813d8211614546575b8161453360209383612d88565b81010312611e2b5751925061364661450f565b3d9150614526565b600b5480151590816145d6575b506145c45781156145b2576145ad6000805160206148368339815191529382600b55614587848461326e565b600c5582600d5580600e556000600f558360105561271060115560405193849384612c91565b0390a1565b60405163346ab43760e11b8152600490fd5b60405163f0aaee6560e01b8152600490fd5b6145e491506010549061326e565b81103861455b565b600354801515908161464b575b506145c45781156145b2576145ad6000805160206148368339815191529382600355614625848461326e565b600455826005558060065560006007558360085561271060095560405193849384612c91565b61465991506008549061326e565b8110386145f9565b600b54908181111561470d57600c5490818111156147055750905b600f5490600d54808411614699575b506140f690613646936132ae565b6146a5908493946132ae565b90600e54916146b4818461327b565b9281151591826146f0575b50506146de576146d56140f6926136469561326e565b9293509061468b565b60405163f20577e560e01b8152600490fd5b6146fc9192508461328e565b141538806146bf565b90509061467c565b5050600e549056feb114240d54ce08081cbd18870dc3b6cd4091bb86ff29d2ad41906c2a2d6723d4540798df468d7b23d11f156fdb954cb19ad414d150722a7b6d55ba369dea792e9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3ded1f3e12429ce88e77b14ddf9c2eb89f0b9e1e0faa7e33a95d0ce1bbc90a1c2f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c570223357f3e4c2c64e71e6ba2eaab9a599bced62f9eb91d2cda610bf41aa8c80ff2cf8268a888ea653a580e40660778ee0c0dabd23a81e8e2c8dcfb938e40982a157d8195c91514091af31f62f596a314af7d5be40146b2f2355969392f055e12e0982fb7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d50792cf7388f234e543a10a68aeb7b96568fb90b55ddc2b2945961c80a3c3a08219e1fee2e38695e60ad3ef8c81759c22d6d7ee56f9b8805363820a50da468a18a1496c3abf9cd93b84db10ae569b57fafa04deeeb7ece4167616ad50e35bc56e3042bda52a74ddb3e9f32af4781d52bf053f705dba3c9e09f402f6fb9446474da2646970667358221220d372b6431c792a7cb20755a0fd8d4d8b518fbcf19445500d9b64a73c22ba27e164736f6c634300081400332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d";
|
|
18
18
|
static readonly abi: readonly [{
|
|
19
19
|
readonly inputs: readonly [{
|
|
20
20
|
readonly internalType: "address";
|
|
@@ -48,32 +48,28 @@ export declare class RWAGauge__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 RWAGauge__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 RWAGauge__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 RWAGauge__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 RWAGauge__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 RWAGauge__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 RWAGauge__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 RWAGauge__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 RWAGauge__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 RWAGauge__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 RWAGauge__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 RWAGauge__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,7 +608,17 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
429
608
|
readonly type: "function";
|
|
430
609
|
}, {
|
|
431
610
|
readonly inputs: readonly [];
|
|
432
|
-
readonly name: "
|
|
611
|
+
readonly name: "GAUGE_ADMIN";
|
|
612
|
+
readonly outputs: readonly [{
|
|
613
|
+
readonly internalType: "bytes32";
|
|
614
|
+
readonly name: "";
|
|
615
|
+
readonly type: "bytes32";
|
|
616
|
+
}];
|
|
617
|
+
readonly stateMutability: "view";
|
|
618
|
+
readonly type: "function";
|
|
619
|
+
}, {
|
|
620
|
+
readonly inputs: readonly [];
|
|
621
|
+
readonly name: "MAX_CHECKPOINTS";
|
|
433
622
|
readonly outputs: readonly [{
|
|
434
623
|
readonly internalType: "uint256";
|
|
435
624
|
readonly name: "";
|
|
@@ -439,7 +628,7 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
439
628
|
readonly type: "function";
|
|
440
629
|
}, {
|
|
441
630
|
readonly inputs: readonly [];
|
|
442
|
-
readonly name: "
|
|
631
|
+
readonly name: "MAX_MONTHLY_EMISSION";
|
|
443
632
|
readonly outputs: readonly [{
|
|
444
633
|
readonly internalType: "uint256";
|
|
445
634
|
readonly name: "";
|
|
@@ -449,7 +638,7 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
449
638
|
readonly type: "function";
|
|
450
639
|
}, {
|
|
451
640
|
readonly inputs: readonly [];
|
|
452
|
-
readonly name: "
|
|
641
|
+
readonly name: "MAX_VOTE_WEIGHT";
|
|
453
642
|
readonly outputs: readonly [{
|
|
454
643
|
readonly internalType: "uint256";
|
|
455
644
|
readonly name: "";
|
|
@@ -459,7 +648,7 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
459
648
|
readonly type: "function";
|
|
460
649
|
}, {
|
|
461
650
|
readonly inputs: readonly [];
|
|
462
|
-
readonly name: "
|
|
651
|
+
readonly name: "MONTH";
|
|
463
652
|
readonly outputs: readonly [{
|
|
464
653
|
readonly internalType: "uint256";
|
|
465
654
|
readonly name: "";
|
|
@@ -469,7 +658,7 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
469
658
|
readonly type: "function";
|
|
470
659
|
}, {
|
|
471
660
|
readonly inputs: readonly [];
|
|
472
|
-
readonly name: "
|
|
661
|
+
readonly name: "WEEK";
|
|
473
662
|
readonly outputs: readonly [{
|
|
474
663
|
readonly internalType: "uint256";
|
|
475
664
|
readonly name: "";
|
|
@@ -503,77 +692,52 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
503
692
|
readonly type: "function";
|
|
504
693
|
}, {
|
|
505
694
|
readonly inputs: readonly [];
|
|
506
|
-
readonly name: "
|
|
695
|
+
readonly name: "boostAmplificationEnabled";
|
|
507
696
|
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";
|
|
697
|
+
readonly internalType: "bool";
|
|
698
|
+
readonly name: "";
|
|
699
|
+
readonly type: "bool";
|
|
568
700
|
}];
|
|
569
701
|
readonly stateMutability: "view";
|
|
570
702
|
readonly type: "function";
|
|
571
703
|
}, {
|
|
572
|
-
readonly inputs: readonly [
|
|
573
|
-
|
|
574
|
-
|
|
704
|
+
readonly inputs: readonly [{
|
|
705
|
+
readonly internalType: "address";
|
|
706
|
+
readonly name: "token";
|
|
707
|
+
readonly type: "address";
|
|
708
|
+
}];
|
|
709
|
+
readonly name: "claimRewardToken";
|
|
710
|
+
readonly outputs: readonly [{
|
|
711
|
+
readonly internalType: "uint256";
|
|
712
|
+
readonly name: "reward";
|
|
713
|
+
readonly type: "uint256";
|
|
714
|
+
}];
|
|
575
715
|
readonly stateMutability: "nonpayable";
|
|
576
716
|
readonly type: "function";
|
|
717
|
+
}, {
|
|
718
|
+
readonly inputs: readonly [];
|
|
719
|
+
readonly name: "claimRewards";
|
|
720
|
+
readonly outputs: readonly [];
|
|
721
|
+
readonly stateMutability: "nonpayable";
|
|
722
|
+
readonly type: "function";
|
|
723
|
+
}, {
|
|
724
|
+
readonly inputs: readonly [{
|
|
725
|
+
readonly internalType: "address";
|
|
726
|
+
readonly name: "token";
|
|
727
|
+
readonly type: "address";
|
|
728
|
+
}, {
|
|
729
|
+
readonly internalType: "address";
|
|
730
|
+
readonly name: "user";
|
|
731
|
+
readonly type: "address";
|
|
732
|
+
}];
|
|
733
|
+
readonly name: "claimedRewards";
|
|
734
|
+
readonly outputs: readonly [{
|
|
735
|
+
readonly internalType: "uint256";
|
|
736
|
+
readonly name: "";
|
|
737
|
+
readonly type: "uint256";
|
|
738
|
+
}];
|
|
739
|
+
readonly stateMutability: "view";
|
|
740
|
+
readonly type: "function";
|
|
577
741
|
}, {
|
|
578
742
|
readonly inputs: readonly [];
|
|
579
743
|
readonly name: "controller";
|
|
@@ -597,7 +761,43 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
597
761
|
}, {
|
|
598
762
|
readonly inputs: readonly [{
|
|
599
763
|
readonly internalType: "address";
|
|
600
|
-
readonly name: "
|
|
764
|
+
readonly name: "";
|
|
765
|
+
readonly type: "address";
|
|
766
|
+
}];
|
|
767
|
+
readonly name: "distributors";
|
|
768
|
+
readonly outputs: readonly [{
|
|
769
|
+
readonly internalType: "address";
|
|
770
|
+
readonly name: "distributor";
|
|
771
|
+
readonly type: "address";
|
|
772
|
+
}, {
|
|
773
|
+
readonly internalType: "bool";
|
|
774
|
+
readonly name: "isApproved";
|
|
775
|
+
readonly type: "bool";
|
|
776
|
+
}];
|
|
777
|
+
readonly stateMutability: "view";
|
|
778
|
+
readonly type: "function";
|
|
779
|
+
}, {
|
|
780
|
+
readonly inputs: readonly [{
|
|
781
|
+
readonly internalType: "uint256";
|
|
782
|
+
readonly name: "";
|
|
783
|
+
readonly type: "uint256";
|
|
784
|
+
}];
|
|
785
|
+
readonly name: "distributorsList";
|
|
786
|
+
readonly outputs: readonly [{
|
|
787
|
+
readonly internalType: "address";
|
|
788
|
+
readonly name: "";
|
|
789
|
+
readonly type: "address";
|
|
790
|
+
}];
|
|
791
|
+
readonly stateMutability: "view";
|
|
792
|
+
readonly type: "function";
|
|
793
|
+
}, {
|
|
794
|
+
readonly inputs: readonly [{
|
|
795
|
+
readonly internalType: "address";
|
|
796
|
+
readonly name: "token";
|
|
797
|
+
readonly type: "address";
|
|
798
|
+
}, {
|
|
799
|
+
readonly internalType: "address";
|
|
800
|
+
readonly name: "user";
|
|
601
801
|
readonly type: "address";
|
|
602
802
|
}];
|
|
603
803
|
readonly name: "earned";
|
|
@@ -608,6 +808,24 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
608
808
|
}];
|
|
609
809
|
readonly stateMutability: "view";
|
|
610
810
|
readonly type: "function";
|
|
811
|
+
}, {
|
|
812
|
+
readonly inputs: readonly [{
|
|
813
|
+
readonly internalType: "address";
|
|
814
|
+
readonly name: "token";
|
|
815
|
+
readonly type: "address";
|
|
816
|
+
}, {
|
|
817
|
+
readonly internalType: "address";
|
|
818
|
+
readonly name: "user";
|
|
819
|
+
readonly type: "address";
|
|
820
|
+
}];
|
|
821
|
+
readonly name: "earnedRewards";
|
|
822
|
+
readonly outputs: readonly [{
|
|
823
|
+
readonly internalType: "uint256";
|
|
824
|
+
readonly name: "";
|
|
825
|
+
readonly type: "uint256";
|
|
826
|
+
}];
|
|
827
|
+
readonly stateMutability: "view";
|
|
828
|
+
readonly type: "function";
|
|
611
829
|
}, {
|
|
612
830
|
readonly inputs: readonly [{
|
|
613
831
|
readonly internalType: "address";
|
|
@@ -624,33 +842,55 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
624
842
|
readonly type: "function";
|
|
625
843
|
}, {
|
|
626
844
|
readonly inputs: readonly [];
|
|
627
|
-
readonly name: "
|
|
845
|
+
readonly name: "gaugeController";
|
|
628
846
|
readonly outputs: readonly [{
|
|
629
|
-
readonly internalType: "
|
|
847
|
+
readonly internalType: "contract IGaugeController";
|
|
630
848
|
readonly name: "";
|
|
631
|
-
readonly type: "
|
|
849
|
+
readonly type: "address";
|
|
632
850
|
}];
|
|
633
851
|
readonly stateMutability: "view";
|
|
634
852
|
readonly type: "function";
|
|
635
853
|
}, {
|
|
636
|
-
readonly inputs: readonly [
|
|
637
|
-
|
|
854
|
+
readonly inputs: readonly [{
|
|
855
|
+
readonly internalType: "address";
|
|
856
|
+
readonly name: "token";
|
|
857
|
+
readonly type: "address";
|
|
858
|
+
}];
|
|
859
|
+
readonly name: "getDecimalAdjustment";
|
|
638
860
|
readonly outputs: readonly [{
|
|
639
861
|
readonly internalType: "uint256";
|
|
640
862
|
readonly name: "";
|
|
641
863
|
readonly type: "uint256";
|
|
642
864
|
}];
|
|
643
|
-
readonly stateMutability: "
|
|
865
|
+
readonly stateMutability: "view";
|
|
866
|
+
readonly type: "function";
|
|
867
|
+
}, {
|
|
868
|
+
readonly inputs: readonly [{
|
|
869
|
+
readonly internalType: "address";
|
|
870
|
+
readonly name: "distributor";
|
|
871
|
+
readonly type: "address";
|
|
872
|
+
}];
|
|
873
|
+
readonly name: "getDistributorApproval";
|
|
874
|
+
readonly outputs: readonly [{
|
|
875
|
+
readonly internalType: "bool";
|
|
876
|
+
readonly name: "";
|
|
877
|
+
readonly type: "bool";
|
|
878
|
+
}];
|
|
879
|
+
readonly stateMutability: "view";
|
|
644
880
|
readonly type: "function";
|
|
645
881
|
}, {
|
|
646
882
|
readonly inputs: readonly [];
|
|
647
|
-
readonly name: "
|
|
648
|
-
readonly outputs: readonly [
|
|
649
|
-
|
|
883
|
+
readonly name: "getDistributors";
|
|
884
|
+
readonly outputs: readonly [{
|
|
885
|
+
readonly internalType: "address[]";
|
|
886
|
+
readonly name: "";
|
|
887
|
+
readonly type: "address[]";
|
|
888
|
+
}];
|
|
889
|
+
readonly stateMutability: "view";
|
|
650
890
|
readonly type: "function";
|
|
651
891
|
}, {
|
|
652
892
|
readonly inputs: readonly [];
|
|
653
|
-
readonly name: "
|
|
893
|
+
readonly name: "getNextPeriodTime";
|
|
654
894
|
readonly outputs: readonly [{
|
|
655
895
|
readonly internalType: "uint256";
|
|
656
896
|
readonly name: "";
|
|
@@ -658,6 +898,16 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
658
898
|
}];
|
|
659
899
|
readonly stateMutability: "view";
|
|
660
900
|
readonly type: "function";
|
|
901
|
+
}, {
|
|
902
|
+
readonly inputs: readonly [];
|
|
903
|
+
readonly name: "getRewardTokens";
|
|
904
|
+
readonly outputs: readonly [{
|
|
905
|
+
readonly internalType: "address[]";
|
|
906
|
+
readonly name: "";
|
|
907
|
+
readonly type: "address[]";
|
|
908
|
+
}];
|
|
909
|
+
readonly stateMutability: "view";
|
|
910
|
+
readonly type: "function";
|
|
661
911
|
}, {
|
|
662
912
|
readonly inputs: readonly [{
|
|
663
913
|
readonly internalType: "bytes32";
|
|
@@ -673,18 +923,12 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
673
923
|
readonly stateMutability: "view";
|
|
674
924
|
readonly type: "function";
|
|
675
925
|
}, {
|
|
676
|
-
readonly inputs: readonly [
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
readonly
|
|
680
|
-
readonly name: "";
|
|
681
|
-
readonly type: "uint256";
|
|
926
|
+
readonly inputs: readonly [{
|
|
927
|
+
readonly internalType: "address";
|
|
928
|
+
readonly name: "account";
|
|
929
|
+
readonly type: "address";
|
|
682
930
|
}];
|
|
683
|
-
readonly
|
|
684
|
-
readonly type: "function";
|
|
685
|
-
}, {
|
|
686
|
-
readonly inputs: readonly [];
|
|
687
|
-
readonly name: "getTotalWeight";
|
|
931
|
+
readonly name: "getUserWeight";
|
|
688
932
|
readonly outputs: readonly [{
|
|
689
933
|
readonly internalType: "uint256";
|
|
690
934
|
readonly name: "";
|
|
@@ -698,7 +942,7 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
698
942
|
readonly name: "account";
|
|
699
943
|
readonly type: "address";
|
|
700
944
|
}];
|
|
701
|
-
readonly name: "
|
|
945
|
+
readonly name: "getWorkingBalance";
|
|
702
946
|
readonly outputs: readonly [{
|
|
703
947
|
readonly internalType: "uint256";
|
|
704
948
|
readonly name: "";
|
|
@@ -739,12 +983,8 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
739
983
|
readonly stateMutability: "view";
|
|
740
984
|
readonly type: "function";
|
|
741
985
|
}, {
|
|
742
|
-
readonly inputs: readonly [
|
|
743
|
-
|
|
744
|
-
readonly name: "";
|
|
745
|
-
readonly type: "address";
|
|
746
|
-
}];
|
|
747
|
-
readonly name: "lastClaimTime";
|
|
986
|
+
readonly inputs: readonly [];
|
|
987
|
+
readonly name: "historicalCheckpointCount";
|
|
748
988
|
readonly outputs: readonly [{
|
|
749
989
|
readonly internalType: "uint256";
|
|
750
990
|
readonly name: "";
|
|
@@ -753,15 +993,49 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
753
993
|
readonly stateMutability: "view";
|
|
754
994
|
readonly type: "function";
|
|
755
995
|
}, {
|
|
756
|
-
readonly inputs: readonly [
|
|
757
|
-
readonly name: "lastTimeRewardApplicable";
|
|
758
|
-
readonly outputs: readonly [{
|
|
996
|
+
readonly inputs: readonly [{
|
|
759
997
|
readonly internalType: "uint256";
|
|
760
998
|
readonly name: "";
|
|
761
999
|
readonly type: "uint256";
|
|
762
1000
|
}];
|
|
1001
|
+
readonly name: "historicalCheckpoints";
|
|
1002
|
+
readonly outputs: readonly [{
|
|
1003
|
+
readonly internalType: "uint256";
|
|
1004
|
+
readonly name: "timestamp";
|
|
1005
|
+
readonly type: "uint256";
|
|
1006
|
+
}, {
|
|
1007
|
+
readonly internalType: "uint256";
|
|
1008
|
+
readonly name: "totalSupply";
|
|
1009
|
+
readonly type: "uint256";
|
|
1010
|
+
}, {
|
|
1011
|
+
readonly internalType: "uint256";
|
|
1012
|
+
readonly name: "workingSupply";
|
|
1013
|
+
readonly type: "uint256";
|
|
1014
|
+
}, {
|
|
1015
|
+
readonly internalType: "uint256";
|
|
1016
|
+
readonly name: "rewardPerToken";
|
|
1017
|
+
readonly type: "uint256";
|
|
1018
|
+
}, {
|
|
1019
|
+
readonly internalType: "uint256";
|
|
1020
|
+
readonly name: "rewardRate";
|
|
1021
|
+
readonly type: "uint256";
|
|
1022
|
+
}];
|
|
763
1023
|
readonly stateMutability: "view";
|
|
764
1024
|
readonly type: "function";
|
|
1025
|
+
}, {
|
|
1026
|
+
readonly inputs: readonly [{
|
|
1027
|
+
readonly internalType: "address";
|
|
1028
|
+
readonly name: "token";
|
|
1029
|
+
readonly type: "address";
|
|
1030
|
+
}, {
|
|
1031
|
+
readonly internalType: "address";
|
|
1032
|
+
readonly name: "distributor";
|
|
1033
|
+
readonly type: "address";
|
|
1034
|
+
}];
|
|
1035
|
+
readonly name: "initializeRewardToken";
|
|
1036
|
+
readonly outputs: readonly [];
|
|
1037
|
+
readonly stateMutability: "nonpayable";
|
|
1038
|
+
readonly type: "function";
|
|
765
1039
|
}, {
|
|
766
1040
|
readonly inputs: readonly [];
|
|
767
1041
|
readonly name: "lastUpdateTime";
|
|
@@ -774,6 +1048,24 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
774
1048
|
readonly type: "function";
|
|
775
1049
|
}, {
|
|
776
1050
|
readonly inputs: readonly [{
|
|
1051
|
+
readonly internalType: "address";
|
|
1052
|
+
readonly name: "distributor";
|
|
1053
|
+
readonly type: "address";
|
|
1054
|
+
}, {
|
|
1055
|
+
readonly internalType: "bool";
|
|
1056
|
+
readonly name: "shouldAddDistributor";
|
|
1057
|
+
readonly type: "bool";
|
|
1058
|
+
}];
|
|
1059
|
+
readonly name: "manageDistributor";
|
|
1060
|
+
readonly outputs: readonly [];
|
|
1061
|
+
readonly stateMutability: "nonpayable";
|
|
1062
|
+
readonly type: "function";
|
|
1063
|
+
}, {
|
|
1064
|
+
readonly inputs: readonly [{
|
|
1065
|
+
readonly internalType: "address";
|
|
1066
|
+
readonly name: "token";
|
|
1067
|
+
readonly type: "address";
|
|
1068
|
+
}, {
|
|
777
1069
|
readonly internalType: "uint256";
|
|
778
1070
|
readonly name: "amount";
|
|
779
1071
|
readonly type: "uint256";
|
|
@@ -792,6 +1084,34 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
792
1084
|
}];
|
|
793
1085
|
readonly stateMutability: "view";
|
|
794
1086
|
readonly type: "function";
|
|
1087
|
+
}, {
|
|
1088
|
+
readonly inputs: readonly [{
|
|
1089
|
+
readonly internalType: "address";
|
|
1090
|
+
readonly name: "token";
|
|
1091
|
+
readonly type: "address";
|
|
1092
|
+
}, {
|
|
1093
|
+
readonly internalType: "address";
|
|
1094
|
+
readonly name: "user";
|
|
1095
|
+
readonly type: "address";
|
|
1096
|
+
}];
|
|
1097
|
+
readonly name: "pendingRewards";
|
|
1098
|
+
readonly outputs: readonly [{
|
|
1099
|
+
readonly internalType: "uint256";
|
|
1100
|
+
readonly name: "";
|
|
1101
|
+
readonly type: "uint256";
|
|
1102
|
+
}];
|
|
1103
|
+
readonly stateMutability: "view";
|
|
1104
|
+
readonly type: "function";
|
|
1105
|
+
}, {
|
|
1106
|
+
readonly inputs: readonly [];
|
|
1107
|
+
readonly name: "periodDuration";
|
|
1108
|
+
readonly outputs: readonly [{
|
|
1109
|
+
readonly internalType: "uint256";
|
|
1110
|
+
readonly name: "";
|
|
1111
|
+
readonly type: "uint256";
|
|
1112
|
+
}];
|
|
1113
|
+
readonly stateMutability: "view";
|
|
1114
|
+
readonly type: "function";
|
|
795
1115
|
}, {
|
|
796
1116
|
readonly inputs: readonly [];
|
|
797
1117
|
readonly name: "periodFinish";
|
|
@@ -881,6 +1201,40 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
881
1201
|
readonly outputs: readonly [];
|
|
882
1202
|
readonly stateMutability: "nonpayable";
|
|
883
1203
|
readonly type: "function";
|
|
1204
|
+
}, {
|
|
1205
|
+
readonly inputs: readonly [{
|
|
1206
|
+
readonly internalType: "address";
|
|
1207
|
+
readonly name: "";
|
|
1208
|
+
readonly type: "address";
|
|
1209
|
+
}];
|
|
1210
|
+
readonly name: "rewardData";
|
|
1211
|
+
readonly outputs: readonly [{
|
|
1212
|
+
readonly internalType: "uint256";
|
|
1213
|
+
readonly name: "rate";
|
|
1214
|
+
readonly type: "uint256";
|
|
1215
|
+
}, {
|
|
1216
|
+
readonly internalType: "uint256";
|
|
1217
|
+
readonly name: "periodFinish";
|
|
1218
|
+
readonly type: "uint256";
|
|
1219
|
+
}, {
|
|
1220
|
+
readonly internalType: "uint256";
|
|
1221
|
+
readonly name: "lastUpdateTime";
|
|
1222
|
+
readonly type: "uint256";
|
|
1223
|
+
}, {
|
|
1224
|
+
readonly internalType: "uint256";
|
|
1225
|
+
readonly name: "rewardPerTokenStored";
|
|
1226
|
+
readonly type: "uint256";
|
|
1227
|
+
}, {
|
|
1228
|
+
readonly internalType: "address";
|
|
1229
|
+
readonly name: "distributor";
|
|
1230
|
+
readonly type: "address";
|
|
1231
|
+
}, {
|
|
1232
|
+
readonly internalType: "uint256";
|
|
1233
|
+
readonly name: "integral";
|
|
1234
|
+
readonly type: "uint256";
|
|
1235
|
+
}];
|
|
1236
|
+
readonly stateMutability: "view";
|
|
1237
|
+
readonly type: "function";
|
|
884
1238
|
}, {
|
|
885
1239
|
readonly inputs: readonly [];
|
|
886
1240
|
readonly name: "rewardPerTokenStored";
|
|
@@ -911,21 +1265,59 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
911
1265
|
}];
|
|
912
1266
|
readonly stateMutability: "view";
|
|
913
1267
|
readonly type: "function";
|
|
1268
|
+
}, {
|
|
1269
|
+
readonly inputs: readonly [{
|
|
1270
|
+
readonly internalType: "address";
|
|
1271
|
+
readonly name: "";
|
|
1272
|
+
readonly type: "address";
|
|
1273
|
+
}];
|
|
1274
|
+
readonly name: "rewardTokenDecimals";
|
|
1275
|
+
readonly outputs: readonly [{
|
|
1276
|
+
readonly internalType: "uint8";
|
|
1277
|
+
readonly name: "";
|
|
1278
|
+
readonly type: "uint8";
|
|
1279
|
+
}];
|
|
1280
|
+
readonly stateMutability: "view";
|
|
1281
|
+
readonly type: "function";
|
|
914
1282
|
}, {
|
|
915
1283
|
readonly inputs: readonly [{
|
|
916
1284
|
readonly internalType: "uint256";
|
|
917
|
-
readonly name: "
|
|
918
|
-
readonly type: "uint256";
|
|
919
|
-
}, {
|
|
920
|
-
readonly internalType: "uint256";
|
|
921
|
-
readonly name: "_minBoost";
|
|
1285
|
+
readonly name: "";
|
|
922
1286
|
readonly type: "uint256";
|
|
1287
|
+
}];
|
|
1288
|
+
readonly name: "rewardTokens";
|
|
1289
|
+
readonly outputs: readonly [{
|
|
1290
|
+
readonly internalType: "address";
|
|
1291
|
+
readonly name: "";
|
|
1292
|
+
readonly type: "address";
|
|
1293
|
+
}];
|
|
1294
|
+
readonly stateMutability: "view";
|
|
1295
|
+
readonly type: "function";
|
|
1296
|
+
}, {
|
|
1297
|
+
readonly inputs: readonly [{
|
|
1298
|
+
readonly internalType: "address";
|
|
1299
|
+
readonly name: "";
|
|
1300
|
+
readonly type: "address";
|
|
923
1301
|
}, {
|
|
1302
|
+
readonly internalType: "address";
|
|
1303
|
+
readonly name: "";
|
|
1304
|
+
readonly type: "address";
|
|
1305
|
+
}];
|
|
1306
|
+
readonly name: "rewards";
|
|
1307
|
+
readonly outputs: readonly [{
|
|
924
1308
|
readonly internalType: "uint256";
|
|
925
|
-
readonly name: "
|
|
1309
|
+
readonly name: "";
|
|
926
1310
|
readonly type: "uint256";
|
|
927
1311
|
}];
|
|
928
|
-
readonly
|
|
1312
|
+
readonly stateMutability: "view";
|
|
1313
|
+
readonly type: "function";
|
|
1314
|
+
}, {
|
|
1315
|
+
readonly inputs: readonly [{
|
|
1316
|
+
readonly internalType: "bool";
|
|
1317
|
+
readonly name: "enabled";
|
|
1318
|
+
readonly type: "bool";
|
|
1319
|
+
}];
|
|
1320
|
+
readonly name: "setBoostAmplificationEnabled";
|
|
929
1321
|
readonly outputs: readonly [];
|
|
930
1322
|
readonly stateMutability: "nonpayable";
|
|
931
1323
|
readonly type: "function";
|
|
@@ -941,8 +1333,22 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
941
1333
|
readonly type: "function";
|
|
942
1334
|
}, {
|
|
943
1335
|
readonly inputs: readonly [{
|
|
1336
|
+
readonly internalType: "address";
|
|
1337
|
+
readonly name: "distributor";
|
|
1338
|
+
readonly type: "address";
|
|
1339
|
+
}, {
|
|
944
1340
|
readonly internalType: "bool";
|
|
945
|
-
readonly name: "
|
|
1341
|
+
readonly name: "isApproved";
|
|
1342
|
+
readonly type: "bool";
|
|
1343
|
+
}];
|
|
1344
|
+
readonly name: "setDistributorApproval";
|
|
1345
|
+
readonly outputs: readonly [];
|
|
1346
|
+
readonly stateMutability: "nonpayable";
|
|
1347
|
+
readonly type: "function";
|
|
1348
|
+
}, {
|
|
1349
|
+
readonly inputs: readonly [{
|
|
1350
|
+
readonly internalType: "bool";
|
|
1351
|
+
readonly name: "newPaused";
|
|
946
1352
|
readonly type: "bool";
|
|
947
1353
|
}];
|
|
948
1354
|
readonly name: "setEmergencyPaused";
|
|
@@ -952,30 +1358,30 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
952
1358
|
}, {
|
|
953
1359
|
readonly inputs: readonly [{
|
|
954
1360
|
readonly internalType: "uint256";
|
|
955
|
-
readonly name: "
|
|
1361
|
+
readonly name: "weight";
|
|
956
1362
|
readonly type: "uint256";
|
|
957
1363
|
}];
|
|
958
|
-
readonly name: "
|
|
1364
|
+
readonly name: "setInitialWeight";
|
|
959
1365
|
readonly outputs: readonly [];
|
|
960
1366
|
readonly stateMutability: "nonpayable";
|
|
961
1367
|
readonly type: "function";
|
|
962
1368
|
}, {
|
|
963
1369
|
readonly inputs: readonly [{
|
|
964
1370
|
readonly internalType: "uint256";
|
|
965
|
-
readonly name: "
|
|
1371
|
+
readonly name: "emission";
|
|
966
1372
|
readonly type: "uint256";
|
|
967
1373
|
}];
|
|
968
|
-
readonly name: "
|
|
1374
|
+
readonly name: "setMaxEmission";
|
|
969
1375
|
readonly outputs: readonly [];
|
|
970
1376
|
readonly stateMutability: "nonpayable";
|
|
971
1377
|
readonly type: "function";
|
|
972
1378
|
}, {
|
|
973
1379
|
readonly inputs: readonly [{
|
|
974
1380
|
readonly internalType: "uint256";
|
|
975
|
-
readonly name: "
|
|
1381
|
+
readonly name: "newPeriodDuration";
|
|
976
1382
|
readonly type: "uint256";
|
|
977
1383
|
}];
|
|
978
|
-
readonly name: "
|
|
1384
|
+
readonly name: "setPeriodDuration";
|
|
979
1385
|
readonly outputs: readonly [];
|
|
980
1386
|
readonly stateMutability: "nonpayable";
|
|
981
1387
|
readonly type: "function";
|
|
@@ -1013,6 +1419,22 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
1013
1419
|
}];
|
|
1014
1420
|
readonly stateMutability: "view";
|
|
1015
1421
|
readonly type: "function";
|
|
1422
|
+
}, {
|
|
1423
|
+
readonly inputs: readonly [{
|
|
1424
|
+
readonly internalType: "address";
|
|
1425
|
+
readonly name: "token";
|
|
1426
|
+
readonly type: "address";
|
|
1427
|
+
}];
|
|
1428
|
+
readonly name: "syncRewardData";
|
|
1429
|
+
readonly outputs: readonly [];
|
|
1430
|
+
readonly stateMutability: "nonpayable";
|
|
1431
|
+
readonly type: "function";
|
|
1432
|
+
}, {
|
|
1433
|
+
readonly inputs: readonly [];
|
|
1434
|
+
readonly name: "syncRewardTokens";
|
|
1435
|
+
readonly outputs: readonly [];
|
|
1436
|
+
readonly stateMutability: "nonpayable";
|
|
1437
|
+
readonly type: "function";
|
|
1016
1438
|
}, {
|
|
1017
1439
|
readonly inputs: readonly [];
|
|
1018
1440
|
readonly name: "totalSupply";
|
|
@@ -1039,24 +1461,78 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
1039
1461
|
readonly outputs: readonly [];
|
|
1040
1462
|
readonly stateMutability: "nonpayable";
|
|
1041
1463
|
readonly type: "function";
|
|
1464
|
+
}, {
|
|
1465
|
+
readonly inputs: readonly [];
|
|
1466
|
+
readonly name: "updateUserRewards";
|
|
1467
|
+
readonly outputs: readonly [];
|
|
1468
|
+
readonly stateMutability: "nonpayable";
|
|
1469
|
+
readonly type: "function";
|
|
1042
1470
|
}, {
|
|
1043
1471
|
readonly inputs: readonly [{
|
|
1044
1472
|
readonly internalType: "address";
|
|
1045
1473
|
readonly name: "";
|
|
1046
1474
|
readonly type: "address";
|
|
1047
1475
|
}];
|
|
1048
|
-
readonly name: "
|
|
1476
|
+
readonly name: "userCheckpointCounts";
|
|
1049
1477
|
readonly outputs: readonly [{
|
|
1050
1478
|
readonly internalType: "uint256";
|
|
1051
|
-
readonly name: "
|
|
1479
|
+
readonly name: "";
|
|
1480
|
+
readonly type: "uint256";
|
|
1481
|
+
}];
|
|
1482
|
+
readonly stateMutability: "view";
|
|
1483
|
+
readonly type: "function";
|
|
1484
|
+
}, {
|
|
1485
|
+
readonly inputs: readonly [{
|
|
1486
|
+
readonly internalType: "address";
|
|
1487
|
+
readonly name: "";
|
|
1488
|
+
readonly type: "address";
|
|
1489
|
+
}, {
|
|
1490
|
+
readonly internalType: "uint256";
|
|
1491
|
+
readonly name: "";
|
|
1492
|
+
readonly type: "uint256";
|
|
1493
|
+
}];
|
|
1494
|
+
readonly name: "userCheckpoints";
|
|
1495
|
+
readonly outputs: readonly [{
|
|
1496
|
+
readonly internalType: "uint256";
|
|
1497
|
+
readonly name: "timestamp";
|
|
1498
|
+
readonly type: "uint256";
|
|
1499
|
+
}, {
|
|
1500
|
+
readonly internalType: "uint256";
|
|
1501
|
+
readonly name: "balance";
|
|
1502
|
+
readonly type: "uint256";
|
|
1503
|
+
}, {
|
|
1504
|
+
readonly internalType: "uint256";
|
|
1505
|
+
readonly name: "workingBalance";
|
|
1506
|
+
readonly type: "uint256";
|
|
1507
|
+
}, {
|
|
1508
|
+
readonly internalType: "uint256";
|
|
1509
|
+
readonly name: "rewardPerToken";
|
|
1510
|
+
readonly type: "uint256";
|
|
1511
|
+
}, {
|
|
1512
|
+
readonly internalType: "uint256";
|
|
1513
|
+
readonly name: "slope";
|
|
1052
1514
|
readonly type: "uint256";
|
|
1053
1515
|
}, {
|
|
1054
1516
|
readonly internalType: "uint256";
|
|
1055
|
-
readonly name: "
|
|
1517
|
+
readonly name: "bias";
|
|
1056
1518
|
readonly type: "uint256";
|
|
1519
|
+
}];
|
|
1520
|
+
readonly stateMutability: "view";
|
|
1521
|
+
readonly type: "function";
|
|
1522
|
+
}, {
|
|
1523
|
+
readonly inputs: readonly [{
|
|
1524
|
+
readonly internalType: "address";
|
|
1525
|
+
readonly name: "";
|
|
1526
|
+
readonly type: "address";
|
|
1057
1527
|
}, {
|
|
1528
|
+
readonly internalType: "address";
|
|
1529
|
+
readonly name: "";
|
|
1530
|
+
readonly type: "address";
|
|
1531
|
+
}];
|
|
1532
|
+
readonly name: "userClaimedRewards";
|
|
1533
|
+
readonly outputs: readonly [{
|
|
1058
1534
|
readonly internalType: "uint256";
|
|
1059
|
-
readonly name: "
|
|
1535
|
+
readonly name: "";
|
|
1060
1536
|
readonly type: "uint256";
|
|
1061
1537
|
}];
|
|
1062
1538
|
readonly stateMutability: "view";
|
|
@@ -1066,32 +1542,66 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
1066
1542
|
readonly internalType: "address";
|
|
1067
1543
|
readonly name: "";
|
|
1068
1544
|
readonly type: "address";
|
|
1545
|
+
}, {
|
|
1546
|
+
readonly internalType: "address";
|
|
1547
|
+
readonly name: "";
|
|
1548
|
+
readonly type: "address";
|
|
1069
1549
|
}];
|
|
1070
|
-
readonly name: "
|
|
1550
|
+
readonly name: "userRewardData";
|
|
1071
1551
|
readonly outputs: readonly [{
|
|
1072
1552
|
readonly internalType: "uint256";
|
|
1073
|
-
readonly name: "
|
|
1553
|
+
readonly name: "integral";
|
|
1074
1554
|
readonly type: "uint256";
|
|
1075
1555
|
}, {
|
|
1076
1556
|
readonly internalType: "uint256";
|
|
1077
|
-
readonly name: "
|
|
1557
|
+
readonly name: "lastUpdate";
|
|
1078
1558
|
readonly type: "uint256";
|
|
1079
1559
|
}, {
|
|
1080
1560
|
readonly internalType: "uint256";
|
|
1081
|
-
readonly name: "
|
|
1561
|
+
readonly name: "claimable";
|
|
1082
1562
|
readonly type: "uint256";
|
|
1083
1563
|
}];
|
|
1084
1564
|
readonly stateMutability: "view";
|
|
1085
1565
|
readonly type: "function";
|
|
1086
1566
|
}, {
|
|
1087
1567
|
readonly inputs: readonly [{
|
|
1568
|
+
readonly internalType: "address";
|
|
1569
|
+
readonly name: "";
|
|
1570
|
+
readonly type: "address";
|
|
1571
|
+
}, {
|
|
1572
|
+
readonly internalType: "address";
|
|
1573
|
+
readonly name: "";
|
|
1574
|
+
readonly type: "address";
|
|
1575
|
+
}];
|
|
1576
|
+
readonly name: "userRewardPerTokenPaid";
|
|
1577
|
+
readonly outputs: readonly [{
|
|
1578
|
+
readonly internalType: "uint256";
|
|
1579
|
+
readonly name: "";
|
|
1580
|
+
readonly type: "uint256";
|
|
1581
|
+
}];
|
|
1582
|
+
readonly stateMutability: "view";
|
|
1583
|
+
readonly type: "function";
|
|
1584
|
+
}, {
|
|
1585
|
+
readonly inputs: readonly [{
|
|
1586
|
+
readonly internalType: "address";
|
|
1587
|
+
readonly name: "";
|
|
1588
|
+
readonly type: "address";
|
|
1589
|
+
}];
|
|
1590
|
+
readonly name: "userVotes";
|
|
1591
|
+
readonly outputs: readonly [{
|
|
1088
1592
|
readonly internalType: "uint256";
|
|
1089
1593
|
readonly name: "direction";
|
|
1090
1594
|
readonly type: "uint256";
|
|
1595
|
+
}, {
|
|
1596
|
+
readonly internalType: "uint256";
|
|
1597
|
+
readonly name: "weight";
|
|
1598
|
+
readonly type: "uint256";
|
|
1599
|
+
}, {
|
|
1600
|
+
readonly internalType: "uint256";
|
|
1601
|
+
readonly name: "timestamp";
|
|
1602
|
+
readonly type: "uint256";
|
|
1091
1603
|
}];
|
|
1092
|
-
readonly
|
|
1093
|
-
readonly outputs: readonly [];
|
|
1094
|
-
readonly stateMutability: "nonpayable";
|
|
1604
|
+
readonly stateMutability: "view";
|
|
1095
1605
|
readonly type: "function";
|
|
1096
1606
|
}, {
|
|
1097
1607
|
readonly inputs: readonly [{
|
|
@@ -1099,7 +1609,7 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
1099
1609
|
readonly name: "direction";
|
|
1100
1610
|
readonly type: "uint256";
|
|
1101
1611
|
}];
|
|
1102
|
-
readonly name: "
|
|
1612
|
+
readonly name: "voteDirection";
|
|
1103
1613
|
readonly outputs: readonly [];
|
|
1104
1614
|
readonly stateMutability: "nonpayable";
|
|
1105
1615
|
readonly type: "function";
|
|
@@ -1147,6 +1657,30 @@ export declare class RWAGauge__factory extends ContractFactory {
|
|
|
1147
1657
|
readonly outputs: readonly [];
|
|
1148
1658
|
readonly stateMutability: "nonpayable";
|
|
1149
1659
|
readonly type: "function";
|
|
1660
|
+
}, {
|
|
1661
|
+
readonly inputs: readonly [{
|
|
1662
|
+
readonly internalType: "address";
|
|
1663
|
+
readonly name: "";
|
|
1664
|
+
readonly type: "address";
|
|
1665
|
+
}];
|
|
1666
|
+
readonly name: "workingBalances";
|
|
1667
|
+
readonly outputs: readonly [{
|
|
1668
|
+
readonly internalType: "uint256";
|
|
1669
|
+
readonly name: "";
|
|
1670
|
+
readonly type: "uint256";
|
|
1671
|
+
}];
|
|
1672
|
+
readonly stateMutability: "view";
|
|
1673
|
+
readonly type: "function";
|
|
1674
|
+
}, {
|
|
1675
|
+
readonly inputs: readonly [];
|
|
1676
|
+
readonly name: "workingSupply";
|
|
1677
|
+
readonly outputs: readonly [{
|
|
1678
|
+
readonly internalType: "uint256";
|
|
1679
|
+
readonly name: "";
|
|
1680
|
+
readonly type: "uint256";
|
|
1681
|
+
}];
|
|
1682
|
+
readonly stateMutability: "view";
|
|
1683
|
+
readonly type: "function";
|
|
1150
1684
|
}];
|
|
1151
1685
|
static createInterface(): RWAGaugeInterface;
|
|
1152
1686
|
static connect(address: string, runner?: ContractRunner | null): RWAGauge;
|