@raac/rpc 1.1.0-beta.4 → 1.1.0-beta.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/RPCLibrary.js +52 -21
- 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 +66 -4
- 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 +39 -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 -81
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +557 -223
- 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 +104 -15
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +7 -2
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +108 -38
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +17 -2
- package/dist/configs/chains/17000.json +36 -0
- package/dist/configs/chains/8453.json +36 -0
- package/dist/pools/lendingPool/_helpers.js +29 -0
- package/dist/pools/lendingPool/adapters/erc20/getERC20AdapterBalance.js +20 -0
- package/dist/pools/lendingPool/adapters/erc20/getERC20AdapterInfo.js +32 -0
- package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.js +20 -0
- package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.js +32 -0
- package/dist/pools/lendingPool/borrowFromLendingPool.js +2 -2
- package/dist/pools/lendingPool/borrowFromLendingPoolWithInsurance.js +4 -3
- package/dist/pools/lendingPool/calculateInsuranceFee.js +3 -2
- package/dist/pools/lendingPool/closeLiquidation.js +3 -2
- package/dist/pools/lendingPool/depositAssetToLendingPool.js +60 -0
- package/dist/pools/lendingPool/{getPendingReward.js → getAdapters.js} +10 -6
- package/dist/pools/lendingPool/getHealthFactor.js +2 -2
- package/dist/pools/lendingPool/getLendingPoolInfo.js +4 -13
- package/dist/pools/lendingPool/getParameters.js +33 -0
- package/dist/pools/lendingPool/getPositionDebt.js +3 -2
- package/dist/pools/lendingPool/getPositionScaledDebt.js +3 -2
- package/dist/pools/lendingPool/getPositionView.js +5 -2
- package/dist/pools/lendingPool/getPositionsScaledDebt.js +1 -0
- package/dist/pools/lendingPool/getUserCollateralValue.js +1 -0
- package/dist/pools/lendingPool/initializeLiquidation.js +2 -2
- package/dist/pools/lendingPool/repayToLendingPool.js +2 -2
- package/dist/pools/lendingPool/{withdrawNFTFromLendingPool.js → withdrawAssetFromLendingPool.js} +5 -5
- package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterAssetValue.js +21 -0
- package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterInfo.js +30 -0
- package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterTotalValue.js +20 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterAssetValue.js +21 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterDeposits.js +20 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterInfo.js +30 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterTotalValue.js +20 -0
- package/dist/pools/rwaVault/depositToRWAVault.js +27 -0
- package/dist/pools/rwaVault/getNextRandomNFT.js +25 -0
- package/dist/pools/rwaVault/getRWAVaultInfo.js +52 -0
- package/dist/pools/rwaVault/redeemNFTFromRWAVault.js +27 -0
- package/dist/pools/rwaVault/requestRandomSeed.js +27 -0
- package/dist/scripts/index.js +219 -152
- package/dist/types/RPCLibrary.d.ts +40 -19
- package/dist/types/pools/lendingPool/_helpers.d.ts +8 -0
- package/dist/types/pools/lendingPool/adapters/erc20/getERC20AdapterBalance.d.ts +4 -0
- package/dist/types/pools/lendingPool/adapters/erc20/getERC20AdapterInfo.d.ts +11 -0
- package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.d.ts +4 -0
- package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.d.ts +11 -0
- package/dist/types/pools/lendingPool/borrowFromLendingPool.d.ts +2 -2
- package/dist/types/pools/lendingPool/borrowFromLendingPoolWithInsurance.d.ts +2 -2
- package/dist/types/pools/lendingPool/calculateInsuranceFee.d.ts +2 -2
- package/dist/types/pools/lendingPool/closeLiquidation.d.ts +2 -2
- package/dist/types/pools/lendingPool/depositAssetToLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/getAdapters.d.ts +8 -0
- package/dist/types/pools/lendingPool/getHealthFactor.d.ts +2 -2
- package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +1 -3
- package/dist/types/pools/lendingPool/getParameters.d.ts +17 -0
- package/dist/types/pools/lendingPool/getPositionDebt.d.ts +2 -2
- package/dist/types/pools/lendingPool/getPositionScaledDebt.d.ts +2 -2
- package/dist/types/pools/lendingPool/getPositionView.d.ts +17 -14
- package/dist/types/pools/lendingPool/initializeLiquidation.d.ts +2 -2
- package/dist/types/pools/lendingPool/repayToLendingPool.d.ts +2 -2
- package/dist/types/pools/lendingPool/withdrawAssetFromLendingPool.d.ts +4 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterAssetValue.d.ts +4 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterInfo.d.ts +10 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterTotalValue.d.ts +4 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterAssetValue.d.ts +4 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterDeposits.d.ts +4 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterInfo.d.ts +10 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterTotalValue.d.ts +4 -0
- package/dist/types/pools/rwaVault/depositToRWAVault.d.ts +4 -0
- package/dist/types/pools/rwaVault/getNextRandomNFT.d.ts +8 -0
- package/dist/types/pools/rwaVault/getRWAVaultInfo.d.ts +20 -0
- package/dist/types/pools/rwaVault/redeemNFTFromRWAVault.d.ts +4 -0
- package/dist/types/pools/rwaVault/requestRandomSeed.d.ts +4 -0
- package/dist/types/scripts/index.d.ts +0 -1
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.d.ts +103 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver.d.ts +37 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface.d.ts +143 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI.d.ts +529 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus.d.ts +109 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +6 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus.d.ts +192 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus.d.ts +45 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus.d.ts +155 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient.d.ts +25 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +4 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock.d.ts +731 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/Ownable2Step.d.ts +77 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts +231 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC2981.d.ts +49 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -1
- 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 +8 -8
- 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 -6
- 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/token/ERC721/extensions/index.d.ts +0 -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 +8 -8
- 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/{@openzeppelin/contracts/token/ERC721/extensions/ERC721Wrapper__factory.d.ts → contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts} +209 -201
- 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 -6
- 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 -42
- package/dist/types/utils/artifacts.d.ts +767 -226
- package/dist/utils/artifacts.js +13 -0
- package/package.json +1 -1
- package/dist/contracts/indexToken/getNextRandomNFT.js +0 -30
- package/dist/contracts/indexToken/redeemNFT.js +0 -39
- package/dist/pools/lendingPool/claimReward.js +0 -22
- package/dist/pools/lendingPool/depositNFTToLendingPool.js +0 -50
- package/dist/pools/lendingPool/getAllUserData.js +0 -28
- package/dist/pools/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/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/@openzeppelin/contracts/token/ERC721/extensions/ERC721Wrapper.d.ts +0 -261
|
@@ -5,16 +5,16 @@ import type { LendingPool, LendingPoolInterface } from "../../../../../contracts
|
|
|
5
5
|
type LendingPoolConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
|
|
6
6
|
export declare class LendingPool__factory extends ContractFactory {
|
|
7
7
|
constructor(...args: LendingPoolConstructorParams);
|
|
8
|
-
getDeployTransaction(_reserveAssetAddress: AddressLike, _rTokenAddress: AddressLike, _debtTokenAddress: AddressLike,
|
|
8
|
+
getDeployTransaction(_reserveAssetAddress: AddressLike, _rTokenAddress: AddressLike, _debtTokenAddress: AddressLike, _liquidationProxyAddress: AddressLike, _vaultProxy: AddressLike, _complianceRegistry: AddressLike, _initialPrimeRate: BigNumberish, _admin: AddressLike, overrides?: NonPayableOverrides & {
|
|
9
9
|
from?: string;
|
|
10
10
|
}): Promise<ContractDeployTransaction>;
|
|
11
|
-
deploy(_reserveAssetAddress: AddressLike, _rTokenAddress: AddressLike, _debtTokenAddress: AddressLike,
|
|
11
|
+
deploy(_reserveAssetAddress: AddressLike, _rTokenAddress: AddressLike, _debtTokenAddress: AddressLike, _liquidationProxyAddress: AddressLike, _vaultProxy: AddressLike, _complianceRegistry: AddressLike, _initialPrimeRate: BigNumberish, _admin: AddressLike, overrides?: NonPayableOverrides & {
|
|
12
12
|
from?: string;
|
|
13
13
|
}): Promise<LendingPool & {
|
|
14
14
|
deploymentTransaction(): ContractTransactionResponse;
|
|
15
15
|
}>;
|
|
16
16
|
connect(runner: ContractRunner | null): LendingPool__factory;
|
|
17
|
-
static readonly bytecode = "0x60a0604052601e805460ff60a01b1916600160a01b17905561012c6029556107d0602b55602c805460ff191690553480156200003a57600080fd5b50604051620062fd380380620062fd8339810160408190526200005d91620002f5565b33806200008457604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6200008f8162000261565b50600180556002805460ff191690556001600160a01b0386161580620000bc57506001600160a01b038516155b80620000cf57506001600160a01b038416155b80620000e257506001600160a01b038316155b80620000f557506001600160a01b038216155b80620000ff575080155b156200011e576040516303988b8160e61b815260040160405180910390fd5b601b80546001600160a01b03199081166001600160a01b03898116918217909355858316608052601980548316868516179055601c80548316898516908117909155601d8054841694891694851790557b033b2e3c9fd0803ce800000000000000033b2e3c9fd0803ce80000006008556009805464ffffffffff19164264ffffffffff1617905560038054841690911790556004805483169091179055600580549091169091179055600c819055620001da816109c4620002b1565b600d55600c54620001ee90611388620002b1565b600e55600c546200020290619c40620002b1565b600f556200021f6b033b2e3c9fd0803ce8000000611f40620002b1565b6010555050600060115550506b033b2e3c9fd0803ce8000000600a819055600b555050611f40602655670de0b6b3a76400006027556203f4806028556200036d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081156113881983900484111517620002ca57600080fd5b506127109102611388010490565b80516001600160a01b0381168114620002f057600080fd5b919050565b60008060008060008060c087890312156200030f57600080fd5b6200031a87620002d8565b95506200032a60208801620002d8565b94506200033a60408801620002d8565b93506200034a60608801620002d8565b92506200035a60808801620002d8565b915060a087015190509295509295509295565b608051615f4a620003b36000396000818161094801528181610a1801528181611051015281816129ce01528181613382015281816134b401526135970152615f4a6000f3fe608060405234801561001057600080fd5b50600436106104965760003560e01c80638aabb2d111610262578063c4f8911c11610151578063e91a7ca6116100ce578063f2fde38b11610092578063f2fde38b14610ddd578063f5b3b9e714610df0578063f8d8989814610e03578063f91c3b0d14610e16578063fbf4a61214610e29578063fbfa77cf14610e3857600080fd5b8063e91a7ca614610c84578063e9f2838e14610c97578063ec915ee614610ca4578063ef5bac2514610d05578063f1caf09f14610dca57600080fd5b8063d5db7d5d11610115578063d5db7d5d14610c25578063d81a698614610c38578063d8aed14514610c4b578063e5711e8b14610c5e578063e65896c914610c7157600080fd5b8063c4f8911c14610b1f578063c6d6916c14610b32578063c891091314610b45578063cd3293de14610b68578063d17e988314610c1257600080fd5b8063a8de4834116101df578063b88a802f116101a3578063b88a802f14610a4d578063bf4eccdf14610a55578063bfd91c2314610a68578063c1be667714610a88578063c415b95c14610b0c57600080fd5b8063a8de4834146109e5578063a90d728f146109f8578063a9bf805c14610a00578063ac919fd414610a13578063b6b55f2514610a3a57600080fd5b806397c4fac71161022657806397c4fac71461099057806398d721e0146109995780639daa54b4146109ac578063a42dce80146109bf578063a5b350c9146109d257600080fd5b80638aabb2d1146109205780638aee8127146109335780638bc2ff5b146109465780638da5cb5b1461096c578063929761791461097d57600080fd5b80632a5bf6d2116103895780635c975abb11610306578063768bab45116102ca578063768bab451461088e5780637bc7780b146108a157806383ba103f146108a95780638429d51f146108bc5780638456cb5914610907578063883c6b241461090f57600080fd5b80635c975abb146108155780636061ffc3146108205780636817031b14610860578063715018a61461087357806375417da61461087b57600080fd5b80633f4ba83a1161034d5780633f4ba83a1461073e5780634031234c1461074657806340c65f721461074f5780634df9d6ba14610762578063523a19ac1461077557600080fd5b80632a5bf6d21461067e5780632ab414fc146106915780632e1a7d4d146106a45780633adbb5af146106b75780633e20bf141461071a57600080fd5b8063150b7a02116104175780631d00ac3a116103db5780631d00ac3a146106285780631d4bf4a0146106485780631d8557d7146106505780632630c12f1461065857806327156a681461066b57600080fd5b8063150b7a02146105c457806316a6c4c5146105f057806316c621e0146105f95780631705ffad1461060c57806319c2d37e1461061557600080fd5b80630c34b9141161045e5780630c34b914146105195780630c42dcaf146105825780630c679a7b1461058b5780630d4085121461059e5780630ecbcdab146105b157600080fd5b8063023245d71461049b578063048c661d146104b0578063057e9b7b146104e057806309bf1e73146104f75780630ab30d8a14610501575b600080fd5b6104ae6104a93660046156ef565b610e4b565b005b601e546104c3906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6104e960275481565b6040519081526020016104d7565b6104e96203f48081565b600854600160801b90046001600160801b03166104e9565b610521611102565b6040516104d79190600061010082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e083015160e083015292915050565b6104e9611f4081565b6104ae61059936600461571d565b611198565b6104e96105ac36600461573a565b6111c2565b6104ae6105bf366004615766565b61123e565b6105d76105d23660046157cb565b611288565b6040516001600160e01b031990911681526020016104d7565b6104e960285481565b6104ae6106073660046156ef565b611299565b6104e9602b5481565b6104e961062336600461573a565b61134a565b61063b61063636600461573a565b6113c3565b6040516104d791906158db565b6021546104e9565b6104ae611499565b6019546104c3906001600160a01b031681565b6104e961067936600461571d565b6114a7565b6104e961068c36600461571d565b6114cc565b6104ae61069f3660046158e9565b61153b565b6104ae6106b23660046156ef565b611a41565b6106ca6106c536600461573a565b611b18565b6040516104d79190600060c08201905082518252602083015115156020830152604083015160408301526060830151606083015260808301511515608083015260a083015160a083015292915050565b601e5461072e90600160a01b900460ff1681565b60405190151581526020016104d7565b6104ae611bcd565b6104e960265481565b601c546104c3906001600160a01b031681565b6104e961077036600461571d565b611bdd565b61080061078336600461573a565b6001600160a01b0391909116600090815260126020908152604080832093835292815290829020825160c0810184528154808252600183015460ff90811615159483019490945260028301549482019490945260038201546060820181905260048301549093161515608082015260059091015460a09091015291565b604080519283526020830191909152016104d7565b60025460ff1661072e565b60145460155460165461083b926001600160a01b0316919083565b604080516001600160a01b0390941684526020840192909252908201526060016104d7565b6104ae61086e36600461571d565b611c7f565b6104ae611f1d565b6104e961088936600461571d565b611f2f565b6104ae61089c36600461573a565b611fb6565b600c546104e9565b6104e96108b736600461573a565b6120a0565b6020546021546022546023546024546025546108da95949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c0016104d7565b6104ae6120d4565b6008546001600160801b03166104e9565b6104ae61092e3660046156ef565b6120e4565b6104ae61094136600461571d565b61226e565b7f00000000000000000000000000000000000000000000000000000000000000006104c3565b6000546001600160a01b03166104c3565b6104e961098b3660046156ef565b6122c2565b6104e960295481565b6104ae6109a736600461571d565b612358565b6104e96109ba36600461571d565b612408565b6104ae6109cd36600461571d565b61248b565b6104e96109e036600461573a565b61250c565b6104ae6109f336600461590b565b6125b5565b6104e9612652565b601a546104c3906001600160a01b031681565b6104c37f000000000000000000000000000000000000000000000000000000000000000081565b6104ae610a483660046156ef565b61272c565b61072e61282e565b6104ae610a6336600461573a565b61284d565b610a7b610a7636600461571d565b612bb0565b6040516104d79190615989565b610add610a9636600461573a565b6012602090815260009283526040808420909152908252902080546001820154600283015460038401546004850154600590950154939460ff938416949293919291169086565b6040805196875294151560208701529385019290925260608401521515608083015260a082015260c0016104d7565b601f546104c3906001600160a01b031681565b6104ae610b2d3660046156ef565b612e24565b6104ae610b4036600461571d565b612e5b565b6104e9610b5336600461571d565b60136020526000908152604090206001015481565b600354600454600554600654600754600854600954610bb4966001600160a01b0390811696811695169392916001600160801b0380821692600160801b909204169064ffffffffff1688565b604080516001600160a01b03998a16815297891660208901529590971694860194909452606085019290925260808401526001600160801b0390811660a08401521660c082015264ffffffffff90911660e0820152610100016104d7565b6104e9610c2036600461571d565b612f63565b601b546104c3906001600160a01b031681565b6104ae610c46366004615766565b61302d565b6104ae610c59366004615766565b61321b565b6104ae610c6c3660046159ff565b613258565b6104e9610c7f36600461571d565b6132c9565b6104ae610c923660046156ef565b613346565b602c5461072e9060ff1681565b600a54600b54600c54600d54600e54600f54601054601154610cca979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016104d7565b610dbd6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091525060408051610100810182526003546001600160a01b039081168252600454811660208301526005541691810191909152600654606082015260075460808201526008546001600160801b0380821660a0840152600160801b9091041660c082015260095464ffffffffff1660e082015290565b6040516104d79190615a40565b6104c3610dd83660046156ef565b613565565b6104ae610deb36600461571d565b613626565b6104e9610dfe366004615abe565b613661565b601d546104c3906001600160a01b031681565b6104ae610e2436600461573a565b613693565b6104e9670de0b6b3a764000081565b602a546104c3906001600160a01b031681565b610e536137c8565b610e5b6137f2565b3360009081526012602090815260408083208484529091529020600181015460ff1615610e9b576040516367c11db560e01b815260040160405180910390fd5b336000908152601360209081526040808320858452600281019092529091205460ff16610edb5760405163346fad7360e01b815260040160405180910390fd5b610ee76003600a613816565b6000610ef3338561134a565b90508015610f14576040516302c9375f60e21b815260040160405180910390fd5b60008481526002830160209081526040808320805460ff19169055602d909152812080546001600160a01b03191690558254610f5290600190615b09565b67ffffffffffffffff811115610f6a57610f6a615788565b604051908082528060200260200182016040528015610f93578160200160208202803683370190505b5090506000805b84548110156110265786856000018281548110610fb957610fb9615b1c565b90600052602060002001541461101457846000018181548110610fde57610fde615b1c565b9060005260206000200154838381518110610ffb57610ffb615b1c565b60209081029190910101528161101081615b32565b9250505b8061101e81615b32565b915050610f9a565b5081516110399085906020850190615652565b50604051632142170760e11b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342842e0e9061108a90309033908b90600401615b4b565b600060405180830381600087803b1580156110a457600080fd5b505af11580156110b8573d6000803e3d6000fd5b50506040518881523392507f2aa1b4c95f3b2da9c955947fca584743ea0d457708fadf209c093061e98c4ccb915060200160405180910390a250505050506110ff60018055565b50565b61114a60405180610100016040528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b506040805161010081018252600a548152600b546020820152600c5491810191909152600d546060820152600e546080820152600f5460a082015260105460c082015260115460e082015290565b6111a0613820565b601a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000806111ce836122c2565b905060006111dc858561250c565b905060018110156111fc57676765c793fa10079d601b1b92505050611238565b60006112136026548461384d90919063ffffffff16565b90508161122882670de0b6b3a7640000615b6f565b6112329190615b86565b93505050505b92915050565b6112466137c8565b61124e6137f2565b80806000036112705760405163162908e360e11b815260040160405180910390fd5b61127a8383613873565b5061128460018055565b5050565b630a85bd0160e11b5b949350505050565b6112a16137c8565b6014546001600160a01b03166112ca57604051632506892760e01b815260040160405180910390fd5b806000036112eb5760405163162908e360e11b815260040160405180910390fd5b601454611303906001600160a01b0316333084613b1e565b61130c81613b7e565b60405181815233907fe79ffd9a88f13c8c49fb545410401d9877ab90d9dcf7b15d4dc0601993a0d9139060200160405180910390a26110ff60018055565b6001600160a01b0382166000908152601260209081526040808320848452825291829020825160c0810184528154808252600183015460ff908116151594830194909452600283015494820194909452600382015460608201526004820154909216151560808301526005015460a09091015292915050565b6113cb615699565b6113d3615699565b6001600160a01b0384166000908152601260209081526040808320868452825291829020825160c0808201855282548252600183015460ff90811615159483018590526002840154958301958652600384015460608085019190915260048501549091161515608080850191825260059095015460a085015290870194909452935191850191909152805184529051151591830191909152611475858561250c565b602083015261148485856111c2565b60408301526060015160a08201529392505050565b6114a56003600a613816565b565b6000806114b3836114cc565b905060006114c084612f63565b90506112918183615ba8565b600354604051630481930d60e21b81526001600160a01b03838116600483015260009216906312064c3490602401602060405180830381865afa158015611517573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112389190615bbb565b611543613820565b600082600781111561155757611557615bd4565b03611602576127108111156115b35760405162461bcd60e51b815260206004820152601d60248201527f496e76616c6964206c69717569646174696f6e207468726573686f6c6400000060448201526064015b60405180910390fd5b60268190556027546028546040805184815260208101939093528201527fafabe1c7d6c2e86cbfc67a8ba53d25a7f8ef59b97d972dd4bf7d7525ba7fdddf906060015b60405180910390a15050565b600182600781111561161657611616615bd4565b0361166157602781905560265460285460408051928352602083018490528201527fafabe1c7d6c2e86cbfc67a8ba53d25a7f8ef59b97d972dd4bf7d7525ba7fdddf906060016115f6565b600282600781111561167557611675615bd4565b0361171c57620151808110158015611690575062093a808111155b6116d35760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a590819dc9858d9481c195c9a5bd960621b60448201526064016115aa565b602881905560265460275460408051928352602083019190915281018290527fafabe1c7d6c2e86cbfc67a8ba53d25a7f8ef59b97d972dd4bf7d7525ba7fdddf906060016115f6565b600382600781111561173057611730615bd4565b036117ce576127108111156117875760405162461bcd60e51b815260206004820152601860248201527f526174696f2063616e6e6f74206578636565642031303025000000000000000060448201526064016115aa565b602b80549082905560408051828152602081018490527fab45a8374e3d1f623df0e88a957317731ccc02ed377e5b0213661f85bf60b73191015b60405180910390a1505050565b60048260078111156117e2576117e2615bd4565b036118785760018111156118305760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420626f6f6c65616e2076616c756560581b60448201526064016115aa565b602c805460ff19166001831490811790915560405160ff909116151581527f0565da69314136ea081c6239b9813f6ef6d213f57210dfef1d470af55b0235f3906020016115f6565b600582600781111561188c5761188c615bd4565b036119305760018111156118da5760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420626f6f6c65616e2076616c756560581b60448201526064016115aa565b601e8054600160a01b60018414810260ff60a01b199092169190911791829055604051910460ff16151581527f932a526fd95bf1b5aab775a957e284733f02db3a9824802cbcbb4fbca239cbe1906020016115f6565b600682600781111561194457611944615bd4565b036119d1576127108111156119935760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420696e737572616e63652066656560581b60448201526064016115aa565b602980549082905560408051828152602081018490527f87c461d1c2c7c5cd98495e5517aa11d9df56d0819cc4e8e53d9664c4b18f6db191016117c1565b60078260078111156119e5576119e5615bd4565b03611a2857601180549082905560408051828152602081018490527f1d830358c94d390366ad7162b72e731448e195f3576e63b1f57f5e43c719c5aa91016117c1565b604051630309cb8760e51b815260040160405180910390fd5b611a496137c8565b611a516137f2565b8080600003611a735760405163162908e360e11b815260040160405180910390fd5b602c5460ff1615611a97576040516370a7336d60e11b815260040160405180910390fd5b611aa033613c01565b611aac6003600a613816565b611ab582613ca8565b6000806000611ac86003600a8733613fd1565b925092509250611ad66140f9565b60405183815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243649060200160405180910390a2505050506110ff60018055565b611b556040518060c00160405280600081526020016000151581526020016000815260200160008152602001600015158152602001600081525090565b506001600160a01b0382166000908152601260209081526040808320848452825291829020825160c08101845281548152600182015460ff908116151593820193909352600282015493810193909352600381015460608401526004810154909116151560808301526005015460a082015292915050565b611bd5613820565b6114a56142af565b6014546000906001600160a01b0316611bf857506000919050565b6000611c03836114a7565b905080600003611c165750600092915050565b6001600160a01b038316600090815260176020526040812054601554670de0b6b3a764000091611c4591615b09565b611c4f9084615b6f565b611c599190615b86565b6001600160a01b0385166000908152601860205260409020549091506112919082615ba8565b611c87613820565b602a546001600160a01b03828116911614801590611caf5750602a546001600160a01b031615155b15611e1357602a5460405163ce96cb7760e01b81523060048201526001600160a01b039091169063ce96cb7790602401602060405180830381865afa925050508015611d18575060408051601f3d908101601f19168201909252611d1591810190615bbb565b60015b611e0857611d24615bea565b806308c379a003611d815750611d38615c05565b80611d435750611d9a565b602a546040516001600160a01b03909116907fc4cede9b2b63ba72d39d2f630b4b742e1cada59d7a073ac4e10da9ac7b2eb10590600090a250611e13565b634e487b7103611d9a57611d93615c8f565b90611d4357505b3d808015611dc4576040519150601f19603f3d011682016040523d82523d6000602084013e611dc9565b606091505b50602a546040516001600160a01b03909116907fc4cede9b2b63ba72d39d2f630b4b742e1cada59d7a073ac4e10da9ac7b2eb10590600090a250611e13565b611e1181614301565b505b602a80546001600160a01b031981166001600160a01b0384811691821790935560048054604080516338d52e0f60e01b815290519486169591909116936338d52e0f928281019260209291908290030181865afa158015611e78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9c9190615caf565b6001600160a01b031614158015611ebb57506001600160a01b03821615155b15611ed957604051631b3b488360e11b815260040160405180910390fd5b816001600160a01b0316816001600160a01b03167f483bdedaaf23706a9800ac1af0d852b34927780d79f9d6ba60a80c7cad75ea3960405160405180910390a35050565b611f25613820565b6114a560006144c0565b600080805b6001600160a01b0384166000908152601360205260409020548111611faf576001600160a01b038416600090815260136020908152604080832084845260020190915290205460ff1615611f9d576000611f8d826122c2565b9050611f998184615ba8565b9250505b80611fa781615b32565b915050611f34565b5092915050565b611fbe613820565b611fca6003600a613816565b6001600160a01b0382166120365760405162461bcd60e51b815260206004820152602d60248201527f4c656e64696e67506f6f6c3a20526563697069656e742063616e6e6f7420626560448201526c207a65726f206164647265737360981b60648201526084016115aa565b60035460405163768bab4560e01b81526001600160a01b038481166004830152602482018490529091169063768bab4590604401600060405180830381600087803b15801561208457600080fd5b505af1158015612098573d6000803e3d6000fd5b505050505050565b6001600160a01b03821660009081526012602090815260408083208484529091528120600581015481546112919190615b09565b6120dc613820565b6114a5614510565b6120ec6137c8565b6120f46137f2565b3360008181526012602090815260408083208584529091529020600181015460ff166121335760405163013e5dc360e61b815260040160405180910390fd5b6001600160a01b038216600090815260136020908152604080832086845260020190915290205460ff1661217a5760405163346fad7360e01b815260040160405180910390fd5b602854816002015461218c9190615ba8565b4211156121ac57604051634b3c322760e11b815260040160405180910390fd5b600481015460ff166121d157604051632d1118e960e21b815260040160405180910390fd5b6121dd6003600a613816565b60006121e9838561250c565b9050801561220a576040516312bf4cab60e01b815260040160405180910390fd5b60018201805460ff1990811690915560006002840181905560048401805490921690915560405185916001600160a01b038616917fd66fca94ddede030b58f223f22d6b43407a443bd68e2e73d38ab7675cf480acc9190a35050506110ff60018055565b612276613820565b6014546001600160a01b0316156122a05760405163b6de9a7160e01b815260040160405180910390fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b60195460405163b94fe91760e01b815260048101839052600091829182916001600160a01b03169063b94fe917906024016040805180830381865afa15801561230f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123339190615ccc565b9150915081600003611faf57604051633b0c4c3160e11b815260040160405180910390fd5b612360613820565b6001600160a01b038116612387576040516303988b8160e61b815260040160405180910390fd5b601e546001600160a01b03908116908216036123b65760405163aba916dd60e01b815260040160405180910390fd5b601e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f593eaf5e0e1afc1c041a664a437fdae719a628836785d06572b008e6ca5c189d90600090a35050565b600080805b6001600160a01b038416600090815260136020526040902054811015611faf576001600160a01b0384166000908152601360205260409020805461246d9186918490811061245d5761245d615b1c565b906000526020600020015461250c565b6124779083615ba8565b91508061248381615b32565b91505061240d565b612493613820565b6001600160a01b0381166124ba576040516303988b8160e61b815260040160405180910390fd5b601f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f5d16ad41baeb009cd23eb8f6c7cde5c2e0cd5acf4a33926ab488875c37c37f3890600090a35050565b6001600160a01b03821660009081526012602090815260408083208484528252808320815160c08101835281548152600182015460ff9081161515948201949094526002820154928101929092526003810154606083018190526004820154909316151560808301526005015460a082015260085490916125a9916125a19190600160801b90046001600160801b0316615b09565b82519061454d565b81516112919190615ba8565b6125bd6137c8565b6125c56137f2565b81806000036125e75760405163162908e360e11b815260040160405180910390fd5b601e54600160a01b900460ff16612611576040516312cefcd560e31b815260040160405180910390fd5b6001600160a01b038216612638576040516303988b8160e61b815260040160405180910390fd5b612643848484614590565b5061264d60018055565b505050565b601f546000906001600160a01b0316331461267f576040516282b42960e81b815260040160405180910390fd5b602a546001600160a01b03166126c65760405162461bcd60e51b815260206004820152600c60248201526b139bc81d985d5b1d081cd95d60a21b60448201526064016115aa565b60045460218054426022556000909155601f546001600160a01b03928316926126f2918491168361488e565b6040518181527f7edfb0d5d58c6a3d398df94a9bdfa2b33f3fa42ae40d72ebdc717d2db3953ee59060200160405180910390a19150505b90565b6127346137c8565b61273c6137f2565b808060000361275e5760405163162908e360e11b815260040160405180910390fd5b61276733613c01565b6127736003600a613816565b60006127836003600a85336148bf565b33600090815260136020526040812060010154919250036127b8573360009081526013602052604090206001018390556127e0565b33600090815260136020526040812060010180548592906127da908490615ba8565b90915550505b6127e86140f9565b604080518481526020810183905233917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15910160405180910390a250506110ff60018055565b60006128386137c8565b61284133613c01565b50600161272960018055565b6128556137c8565b601e546001600160a01b0316331461287f576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03821660009081526012602090815260408083208484529091529020600181015460ff166128c75760405163013e5dc360e61b815260040160405180910390fd5b6001600160a01b038316600090815260136020908152604080832085845260020190915290205460ff1661290e5760405163346fad7360e01b815260040160405180910390fd5b61291a6003600a613816565b600481015460ff16801561293f5750602854816002015461293b9190615ba8565b4211155b1561295d576040516363e5f12d60e11b815260040160405180910390fd5b6000612969848461250c565b60018301805460ff199081169091556000600280860182905560048087018054851690556001600160a01b03808a1684526013602090815260408086208b87529094019052928290208054909416909355601e5490516323b872dd60e01b81529394507f00000000000000000000000000000000000000000000000000000000000000008216936323b872dd93612a069330931691899101615b4b565b600060405180830381600087803b158015612a2057600080fd5b505af1158015612a34573d6000803e3d6000fd5b5050506000848152602d602052604080822080546001600160a01b03191690556005546008549151636f3df85160e11b81529293508392839283926001600160a01b03169163de7bf0a291612aa3918c918a91600160801b9091046001600160801b0316908d90600401615cf0565b6080604051808303816000875af1158015612ac2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ae69190615d1f565b600854600160801b90046001600160801b031660038b810191909155546004549498509296509094509250612b2a916001600160a01b039081169133911687613b1e565b6000808755600587018190556007849055612b4c90600390600a908790614a03565b601e5487906001600160a01b03808b1691167f3f2ad1b98f8838e6f90c126ac5f8a9875c7acf2a56aeb8a630c0fa475b07056a88612b89856122c2565b6040805192835260208301919091520160405180910390a450505050505061128460018055565b612bdb6040518060800160405280606081526020016000815260200160008152602001606081525090565b6001600160a01b0382166000908152601360209081526040808320815160808101835260608082529381018590529182019390935281810191909152815460408051602080840282018101909252828152918491830182828015612c5e57602002820191906000526020600020905b815481526020019060010190808311612c4a575b5050509183525050815467ffffffffffffffff811115612c8057612c80615788565b604051908082528060200260200182016040528015612cb957816020015b612ca6615699565b815260200190600190039081612c9e5790505b506060820152600060208201819052604082018190525b8254811015612e1c57306001600160a01b0316631d00ac3a86856000018481548110612cfe57612cfe615b1c565b6000918252602090912001546040516001600160e01b031960e085901b1681526001600160a01b039092166004830152602482015260440160e060405180830381865afa158015612d53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d779190615d6a565b82606001518281518110612d8d57612d8d615b1c565b602002602001018190525081606001518181518110612dae57612dae615b1c565b60200260200101516020015182602001818151612dcb9190615ba8565b9052508254612df690849083908110612de657612de6615b1c565b90600052602060002001546122c2565b82604001818151612e079190615ba8565b90525080612e1481615b32565b915050612cd0565b509392505050565b601a546001600160a01b03163314612e4e576040516282b42960e81b815260040160405180910390fd5b6110ff6003600a83614b55565b6003546001600160a01b03163314612eb55760405162461bcd60e51b815260206004820152601e60248201527f4f6e6c792052546f6b656e2063616e207570646174652072657761726473000060448201526064016115aa565b6000612ec0826114a7565b90508015612f43576001600160a01b038216600090815260176020526040812054601554670de0b6b3a764000091612ef791615b09565b612f019084615b6f565b612f0b9190615b86565b90508015612f41576001600160a01b03831660009081526018602052604081208054839290612f3b908490615ba8565b90915550505b505b506015546001600160a01b03909116600090815260176020526040902055565b601e546000906001600160a01b0316612f7e57506000919050565b601e546040516001600160a01b038481166024830152600092839291169060440160408051601f198184030181529181526020820180516001600160e01b031663c084b10b60e01b17905251612fd49190615df9565b600060405180830381855afa9150503d806000811461300f576040519150601f19603f3d011682016040523d82523d6000602084013e613014565b606091505b5091509150808060200190518101906112919190615bbb565b6130356137c8565b61303d6137f2565b33600081815260126020908152604080832086845290915281209161306290856120a0565b90506000613071338686613661565b601b54601f54604051636eb1769f60e11b81523360048201526001600160a01b039182166024820152929350839291169063dd62ed3e90604401602060405180830381865afa1580156130c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130ec9190615bbb565b101561310b576040516339e067d560e21b815260040160405180910390fd5b601b546040516370a0823160e01b815233600482015282916001600160a01b0316906370a0823190602401602060405180830381865afa158015613153573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131779190615bbb565b101561319657604051631e9acf1760e31b815260040160405180910390fd5b6131a08585613873565b6131a981614c2e565b60048301805460ff191660011790556131c28483615ba8565b8360050160008282546131d59190615ba8565b909155505060405182815285907fd5c2dc3f0ec76ece0185d374bca424347955bce9b5e7b08757bb8e1bb8d9c0a99060200160405180910390a250505061128460018055565b6132236137c8565b61322b6137f2565b808060000361324d5760405163162908e360e11b815260040160405180910390fd5b61127a838333614590565b613260613820565b6003546001600160a01b03908116908416036132b55760405162461bcd60e51b815260206004820152601460248201527321b0b73737ba103932b9b1bab290292a37b5b2b760611b60448201526064016115aa565b61264d6001600160a01b038416838361488e565b600080805b6001600160a01b038416600090815260136020526040902054811015611faf576001600160a01b038416600090815260136020908152604080832084845260020190915290205460ff161561333457613327848261250c565b6133319083615ba8565b91505b8061333e81615b32565b9150506132ce565b61334e6137c8565b6133566137f2565b6133626003600a613816565b6040516331a9108f60e11b81526004810182905233906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa1580156133c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133ed9190615caf565b6001600160a01b031614613414576040516384b359d160e01b815260040160405180910390fd5b336000908152601360209081526040808320848452600281019092529091205460ff16156134555760405163e8edca8360e01b815260040160405180910390fd5b60008281526002820160209081526040808320805460ff191660019081179091558454908101855584845282842001859055848352602d9091529081902080546001600160a01b031916339081179091559051632142170760e11b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316916342842e0e916134f4919030908790600401615b4b565b600060405180830381600087803b15801561350e57600080fd5b505af1158015613522573d6000803e3d6000fd5b50506040518481523392507f1c4b8380f61aea3d5d98cbadaf2e6b2e4f3d8ca8c0fce1290b26ac267158745f915060200160405180910390a2506110ff60018055565b6000818152602d60205260408120546001600160a01b031661360a576040516331a9108f60e11b8152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690636352211e90602401602060405180830381865afa1580156135e6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112389190615caf565b506000908152602d60205260409020546001600160a01b031690565b61362e613820565b6001600160a01b03811661365857604051631e4fbdf760e01b8152600060048201526024016115aa565b6110ff816144c0565b60008061366e85856120a0565b905061368860295484836136829190615ba8565b9061384d565b9150505b9392505050565b61369b6137c8565b6136a36137f2565b6001600160a01b03821660009081526012602090815260408083208484529091529020600181015460ff16156136ec5760405163b84f7eb560e01b815260040160405180910390fd5b6001600160a01b038316600090815260136020908152604080832085845260020190915290205460ff166137335760405163346fad7360e01b815260040160405180910390fd5b61373f6003600a613816565b600061374b84846111c2565b9050602754811061376f5760405163317416e560e11b815260040160405180910390fd5b6001828101805460ff1916909117905542600283015560405183906001600160a01b0386169033907f4601ff28b457321206747d0540f02cfb8a9d6bf3021146378e8544e1817e20e790600090a4505061128460018055565b6002600154036137eb57604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b60025460ff16156114a55760405163d93c066560e01b815260040160405180910390fd5b6112848282614d21565b6000546001600160a01b031633146114a55760405163118cdaa760e01b81523360048201526024016115aa565b60008115611388198390048411151761386557600080fd5b506127109102611388010490565b3360009081526012602090815260408083208584529091529020600181015460ff16156138b357604051630bff073160e31b815260040160405180910390fd5b336000908152601360209081526040808320868452600281019092529091205460ff166138f35760405163346fad7360e01b815260040160405180910390fd5b60006138fe856122c2565b90508060000361392157604051638dc8d9b360e01b815260040160405180910390fd5b61392d6003600a613816565b61393684613ca8565b600061394d6026548361384d90919063ffffffff16565b90508461395a338861134a565b6139649190615ba8565b81101561398457604051630369fbd160e51b815260040160405180910390fd5b600554600854604051639ceeaca760e01b81523360048201819052602482015260448101889052600160801b9091046001600160801b0316606482015260848101889052600091829182916001600160a01b031690639ceeaca79060a4016060604051808303816000875af1158015613a01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a259190615e28565b600854600160801b90046001600160801b031660038b81019190915554604051635c921eb960e01b8152336004820152602481018d905293965091945092506001600160a01b031690635c921eb990604401600060405180830381600087803b158015613a9157600080fd5b505af1158015613aa5573d6000803e3d6000fd5b5050505081876000016000828254613abd9190615ba8565b90915550506007819055613ad66003600a60008b614a03565b613ade6140f9565b60405188815233907fcbc04eca7e9da35cb1393a6135a199ca52e450d5e9251cbd99f7847d33a367509060200160405180910390a2505050505050505050565b613b7884856001600160a01b03166323b872dd868686604051602401613b4693929190615b4b565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050614e53565b50505050565b6014546001600160a01b0316613ba757604051632506892760e01b815260040160405180910390fd5b6006546000819003613bb7575050565b811561128457600081613bd284670de0b6b3a7640000615b6f565b613bdc9190615b86565b90508060146001016000828254613bf39190615ba8565b909155505042601655505050565b6014546001600160a01b0316613c145750565b6000613c1f82611bdd565b90508015611284576001600160a01b038083166000908152601860209081526040808320839055601554601790925290912055601454613c619116838361488e565b816001600160a01b03167fe34918ff1c7084970068b53fd71ad6d8b04e9f15d3886cbf006443e6cdc52ea682604051613c9c91815260200190565b60405180910390a25050565b602a546001600160a01b0316613cbb5750565b600480546003546040516370a0823160e01b81526001600160a01b03918216938101939093526000929116906370a0823190602401602060405180830381865afa158015613d0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d319190615bbb565b905081811015611284576000613d478284615b09565b602a5460405163ce96cb7760e01b81523060048201529192506000916001600160a01b039091169063ce96cb7790602401602060405180830381865afa158015613d95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613db99190615bbb565b90506000613dc78285615ba8565b905082811015613e305760405162461bcd60e51b815260206004820152602e60248201527f4e6f7420656e6f756768206c697175696469747920746f2066756c66696c6c2060448201526d1d1a19481dda5d1a191c985dd85b60921b60648201526084016115aa565b6006546000613e3f8783615b09565b905060008115613e5a57602b54613e5790839061384d565b90505b8585811115613e665750845b8015613e7557613e7581614301565b600480546040516370a0823160e01b815230928101929092526001600160a01b0316906370a0823190602401602060405180830381865afa158015613ebe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ee29190615bbb565b600480546003546040516370a0823160e01b81526001600160a01b039182169381019390935216906370a0823190602401602060405180830381865afa158015613f30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f549190615bbb565b613f5e9190615ba8565b975088881015613fc65760405162461bcd60e51b815260206004820152602d60248201527f496e73756666696369656e74206c69717569646974792061667465722076617560448201526c1b1d081dda5d1a191c985dd85b609a1b60648201526084016115aa565b505050505050505050565b60008060006001851015613ff85760405163162908e360e11b815260040160405180910390fd5b6140028787614d21565b86546005880154604051636b81068560e11b8152600092839283926001600160a01b039092169163d7020d0a9161404b918b9182918e916001600160801b031690600401615e5d565b6060604051808303816000875af115801561406a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061408e9190615e8e565b9250925092508295506140a48a8a600084614a03565b60408051828152602081018590526001600160a01b038916917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568910160405180910390a2999198508997509095505050505050565b602a546001600160a01b031661410b57565b600654602b5460009061411f90839061384d565b600480546003546040516370a0823160e01b81526001600160a01b039182169381019390935292935060009216906370a0823190602401602060405180830381865afa158015614173573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141979190615bbb565b9050818111156141be5760006141ad8383615b09565b90506141b881614eb6565b50614275565b818110156142755760006141d28284615b09565b90506000602a60009054906101000a90046001600160a01b03166001600160a01b03166301e1d1146040518163ffffffff1660e01b8152600401602060405180830381865afa158015614229573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061424d9190615bbb565b9050600081831161425e5782614260565b815b905080156142715761427181614301565b5050505b6020805460408051848152928301919091527f8f9497c27f572ff1a65e8b2c7a0706d466466ae0b5efc78462b5f0021da6695691016117c1565b6142b76150ec565b6002805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b602a546040516328c0620360e01b8152600160048201526000916001600160a01b0316906328c0620390602401602060405180830381865afa15801561434b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061436f9190615bbb565b602a54604051632d182be560e21b815260048101859052306024820181905260448201529192506000916001600160a01b039091169063b460af94906064016020604051808303816000875af11580156143cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143f19190615bbb565b90506000602060030154831115614454576023546000906144129085615b09565b9050670de0b6b3a76400006144278285615b6f565b6144319190615b86565b915081602060010160008282546144489190615ba8565b90915550614458915050565b5060005b60006144648286615b09565b600354600454919250614484916001600160a01b0390811691168361488e565b6020548511156144985760006020556144b3565b84602060000160008282546144ad9190615b09565b90915550505b5050506023555042602455565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6145186137f2565b6002805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586142e43390565b600081156b019d971e4fe8401e74000000198390048411151761456f57600080fd5b50676765c793fa10079d601b1b91026b019d971e4fe8401e74000000010490565b816000036145b15760405163162908e360e11b815260040160405180910390fd5b6001600160a01b0381166145d8576040516303988b8160e61b815260040160405180910390fd5b6001600160a01b0381166000908152601360209081526040808320868452600281019092529091205460ff166146215760405163346fad7360e01b815260040160405180910390fd5b61462d6003600a613816565b6001600160a01b03821660009081526012602090815260408083208784529091529020600181015460ff1680156146695750600481015460ff16155b156146875760405163224aae4f60e21b815260040160405180910390fd5b600181015460ff1680156146ab575060285481600201546146a89190615ba8565b42115b156146c957604051634b3c322760e11b815260040160405180910390fd5b60006146d5848761250c565b905060008186116146e657856146e8565b815b9050600080600080600360020160009054906101000a90046001600160a01b03166001600160a01b031663de7bf0a28a87600360050160109054906101000a90046001600160801b03168f6040518563ffffffff1660e01b81526004016147529493929190615cf0565b6080604051808303816000875af1158015614771573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147959190615d1f565b600854600160801b90046001600160801b031660038c8101919091555460045494985092965090945092506147d9916001600160a01b039081169133911688613b1e565b600783905580156147fe57808760000160008282546147f89190615ba8565b90915550505b865461480b908390615b09565b8088556005880154111561482157865460058801555b865460000361483257600060058801555b6148416003600a876000614a03565b6040518581526001600160a01b038a169033907f05f2eeda0e08e4b437f487c8d7d29b14537d15e3488170dc3de5dbdf8dac46849060200160405180910390a35050505050505050505050565b6040516001600160a01b0383811660248301526044820183905261264d91859182169063a9059cbb90606401613b46565b600060018310156148e35760405163162908e360e11b815260040160405180910390fd5b6148ed8585614d21565b8454600186015461490d916001600160a01b039182169133911686613b1e565b8454600586015460405163b3f1c93d60e01b81526000928392839283926001600160a01b03169163b3f1c93d916149589130918b918d916001600160801b0390911690600401615e5d565b6080604051808303816000875af1158015614977573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061499b9190615ebc565b93509350935093508294506149b38989896000614a03565b60408051888152602081018790526001600160a01b038816917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15910160405180910390a250505050949350505050565b8115614a3057614a128261510f565b6001600160801b03168460030154614a2a9190615ba8565b60038501555b8015614a82578084600301541015614a5b5760405163bb55fd2760e01b815260040160405180910390fd5b614a648161510f565b6001600160801b03168460030154614a7c9190615b09565b60038501555b600384015460048501546000614a988787615147565b90506000614aa688886151a8565b90506000614abc89600301548a60040154615203565b9050614ae0886002015489600301548a600401548b600501548c600601548661524f565b600189018190556007890154614af891839187615339565b8855614b048989614d21565b875460018901546040517f48f4f83c2f1843e8fd7ef13ffcff40fca5055dc1b9b074cd9dd0f9a8a8e09dd992614b4292908252602082015260400190565b60405180910390a1505050505050505050565b6001811015614b775760405163824c180760e01b815260040160405180910390fd5b60028201548015614bda576000614b90826101f461384d565b90506000828411614baa57614ba58484615b09565b614bb4565b614bb48385615b09565b905081811115614bd757604051631a8b543360e21b815260040160405180910390fd5b50505b60028301829055614bee8484600080614a03565b60408051828152602081018490527fd45d1eb66419c036e2fa401916c7db417696f889cf4ab8ca92272327e8e1c83e91015b60405180910390a150505050565b601f546001600160a01b0316614c57576040516303988b8160e61b815260040160405180910390fd5b80600003614c785760405163162908e360e11b815260040160405180910390fd5b601f5460048054604051636033e31560e01b81526001600160a01b0391821692810192909252336024830152604482018490527f65991ea5d80f7b6dc8c32648f59c5a653beb10caddae8fefad6966b35a0a65f1606483015290911690636033e315906084016020604051808303816000875af1158015614cfd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112849190615ef9565b6006820154600090614d3a9064ffffffffff1642615b09565b90506001811015614d4a57505050565b60058301546001600160801b03166001811015614d7a57604051630a1cf3ed60e21b815260040160405180910390fd5b82546005850154614d96919084906001600160801b0316615380565b6005850180546fffffffffffffffffffffffffffffffff19166001600160801b0392831617908190556001850154614dda9290918591600160801b9091041661539d565b6005850180546001600160801b03908116600160801b93821684028181179384905560068901805464ffffffffff19164264ffffffffff16179055604080519184169092178152939092041660208301527ff92a3abee06d57c996e7e19eb34560241fdc1fe67e9ebd503177710bf9fd82049101614c20565b6000614e686001600160a01b038416836153b9565b90508051600014158015614e8d575080806020019051810190614e8b9190615ef9565b155b1561264d57604051635274afe760e01b81526001600160a01b03841660048201526024016115aa565b600354604051635c921eb960e01b8152306004820152602481018390526001600160a01b0390911690635c921eb990604401600060405180830381600087803b158015614f0257600080fd5b505af1158015614f16573d6000803e3d6000fd5b505060048054602a5460405163095ea7b360e01b81526001600160a01b03918216938101939093526024830186905216925063095ea7b391506044016020604051808303816000875af1158015614f71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614f959190615ef9565b50602a54604051636e553f6560e01b8152600481018390523060248201526000916001600160a01b031690636e553f65906044016020604051808303816000875af1158015614fe8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061500c9190615bbb565b602a546040516328c0620360e01b81526000600482018190529293506001600160a01b03909116906328c0620390602401602060405180830381865afa15801561505a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061507e9190615bbb565b9050600082116150c75760405162461bcd60e51b815260206004820152601460248201527315985d5b1d0819195c1bdcda5d0819985a5b195960621b60448201526064016115aa565b82602060000160008282546150dc9190615ba8565b9091555050602355505042602555565b60025460ff166114a557604051638dfc202b60e01b815260040160405180910390fd5b60006001600160801b03821115615143576040516306dfcc6560e41b815260806004820152602481018390526044016115aa565b5090565b600682015460009081906151629064ffffffffff1642615b09565b905060018110156151795750506004820154611238565b6005840154600184015461129191600160801b90046001600160801b0316906151a290846153c7565b9061454d565b600682015460009081906151c39064ffffffffff1642615b09565b905060018110156151e357505060058201546001600160801b0316611238565b60058401548354611291916001600160801b0316906151a2908483615416565b600060018310156152205750676765c793fa10079d601b1b611238565b600061523e6152396152328587615ba8565b859061544a565b61510f565b6001600160801b0316949350505050565b600085871115806152605750838710155b8061526b5750858511155b806152765750838510155b156152945760405163abc83fed60e01b815260040160405180910390fd5b60008383116152d65760006152a9888a615b09565b905060006152c1866152bb878561454d565b9061544a565b90506152cd818a615ba8565b9250505061532e565b60006152e28585615b09565b905060006152fb86676765c793fa10079d601b1b615b09565b905060006153098b89615b09565b9050600061531b836152bb868561454d565b9050615327818d615ba8565b9450505050505b979650505050505050565b6000600182101561534c57506000611291565b6000615358868661454d565b90506000615366828661454d565b905060006153748284615b09565b98975050505050505050565b60008061538e858585615416565b9050613688615239828561454d565b6000806153aa85856153c7565b9050613688615239848361454d565b606061368c83836000615487565b600060018210156153e45750676765c793fa10079d601b1b611238565b60006153f4846301e1338061544a565b90506000615402828561454d565b905061540d81615524565b95945050505050565b6000806154238486615b6f565b90506154336301e1338082615b86565b905061368881676765c793fa10079d601b1b615ba8565b60008115676765c793fa10079d601b1b6002840419048411171561546d57600080fd5b50676765c793fa10079d601b1b9190910260028204010490565b6060814710156154ac5760405163cd78605960e01b81523060048201526024016115aa565b600080856001600160a01b031684866040516154c89190615df9565b60006040518083038185875af1925050503d8060008114615505576040519150601f19603f3d011682016040523d82523d6000602084013e61550a565b606091505b509150915061551a8683836155cd565b9695505050505050565b6000816000036155405750676765c793fa10079d601b1b919050565b506b169e43a85eb381aa580000006b1363156bbee3016d700000006b1027e72f1f128130880000006b0cecb8f27f4200f3a00000006b09b18ab5df7180b6b80000006b06765c793fa10079d000000086800204808702919091048087029290920480870293909304808702949094048087029590950495010101010101676765c793fa10079d601b1b0190565b6060826155e2576155dd82615629565b61368c565b81511580156155f957506001600160a01b0384163b155b1561562257604051639996b31560e01b81526001600160a01b03851660048201526024016115aa565b508061368c565b8051156156395780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b82805482825590600052602060002090810192821561568d579160200282015b8281111561568d578251825591602001919060010190615672565b506151439291506156da565b6040518060e0016040528060008152602001600081526020016000815260200160001515815260200160008152602001600081526020016000151581525090565b5b8082111561514357600081556001016156db565b60006020828403121561570157600080fd5b5035919050565b6001600160a01b03811681146110ff57600080fd5b60006020828403121561572f57600080fd5b813561368c81615708565b6000806040838503121561574d57600080fd5b823561575881615708565b946020939093013593505050565b6000806040838503121561577957600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156157c4576157c4615788565b6040525050565b600080600080608085870312156157e157600080fd5b84356157ec81615708565b93506020858101356157fd81615708565b935060408601359250606086013567ffffffffffffffff8082111561582157600080fd5b818801915088601f83011261583557600080fd5b81358181111561584757615847615788565b604051915061585f601f8201601f191685018361579e565b808252898482850101111561587357600080fd5b808484018584013760008482840101525080935050505092959194509250565b8051825260208101516020830152604081015160408301526060810151151560608301526080810151608083015260a081015160a083015260c0810151151560c08301525050565b60e081016112388284615893565b600080604083850312156158fc57600080fd5b82356008811061575857600080fd5b60008060006060848603121561592057600080fd5b8335925060208401359150604084013561593981615708565b809150509250925092565b600081518084526020808501945080840160005b8381101561597e5761596b878351615893565b60e0969096019590820190600101615958565b509495945050505050565b60208082528251608083830152805160a0840181905260009291820190839060c08601905b808310156159ce57835182529284019260019290920191908401906159ae565b508387015160408701526040870151606087015260608701519350601f1986820301608087015261532e8185615944565b600080600060608486031215615a1457600080fd5b8335615a1f81615708565b92506020840135615a2f81615708565b929592945050506040919091013590565b60006101008201905060018060a01b0380845116835280602085015116602084015280604085015116604084015250606083015160608301526080830151608083015260a08301516001600160801b0380821660a08501528060c08601511660c0850152505060e0830151611faf60e084018264ffffffffff169052565b600080600060608486031215615ad357600080fd5b8335615ade81615708565b95602085013595506040909401359392505050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561123857611238615af3565b634e487b7160e01b600052603260045260246000fd5b600060018201615b4457615b44615af3565b5060010190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b808202811582820484141761123857611238615af3565b600082615ba357634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561123857611238615af3565b600060208284031215615bcd57600080fd5b5051919050565b634e487b7160e01b600052602160045260246000fd5b600060033d11156127295760046000803e5060005160e01c90565b600060443d1015615c135790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715615c4357505050505090565b8285019150815181811115615c5b5750505050505090565b843d8701016020828501011115615c755750505050505090565b615c846020828601018761579e565b509095945050505050565b60008060233d1115615cab576020600460003e50506000516001905b9091565b600060208284031215615cc157600080fd5b815161368c81615708565b60008060408385031215615cdf57600080fd5b505080516020909101519092909150565b6001600160a01b0394909416845260208401929092526001600160801b03166040830152606082015260800190565b60008060008060808587031215615d3557600080fd5b505082516020840151604085015160609095015191969095509092509050565b80518015158114615d6557600080fd5b919050565b600060e08284031215615d7c57600080fd5b60405160e0810181811067ffffffffffffffff82111715615d9f57615d9f615788565b8060405250825181526020830151602082015260408301516040820152615dc860608401615d55565b60608201526080830151608082015260a083015160a0820152615ded60c08401615d55565b60c08201529392505050565b6000825160005b81811015615e1a5760208186018101518583015201615e00565b506000920191825250919050565b600080600060608486031215615e3d57600080fd5b615e4684615d55565b925060208401519150604084015190509250925092565b6001600160a01b03948516815292909316602083015260408201526001600160801b03909116606082015260800190565b600080600060608486031215615ea357600080fd5b8351925060208401519150604084015190509250925092565b60008060008060808587031215615ed257600080fd5b615edb85615d55565b60208601516040870151606090970151919890975090945092505050565b600060208284031215615f0b57600080fd5b61368c82615d5556fea264697066735822122085790ad8a34ebf38e48587fd6cfb2d6f5a50229056245092ddebc2e6bc8f63c264736f6c63430008140033";
|
|
17
|
+
static readonly bytecode = "0x34620000e857620066e53881900360a0601f8201601f19168101906001600160401b03821190821017620000ed5761010092829160405260a03912620000e857620000976200004d62000103565b620000576200011a565b6200006162000131565b6200006b62000148565b6200007562000160565b906200008062000178565b9261016051946200009062000190565b96620001a8565b604051615fe59081620006e08239608051818181610b1d01528181610f1a0152818161256e0152818161266d0152818161272801528181612a2001528181612d3f0152818161325201526133ee0152f35b600080fd5b634e487b7160e01b600052604160045260246000fd5b60a051906001600160a01b0382168203620000e857565b60c051906001600160a01b0382168203620000e857565b60e051906001600160a01b0382168203620000e857565b61010051906001600160a01b0382168203620000e857565b61012051906001600160a01b0382168203620000e857565b61014051906001600160a01b0382168203620000e857565b61018051906001600160a01b0382168203620000e857565b969593909433156200047b57602f8054336001600160a01b0319821681179092556001600160a01b0392919083167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a36001603055169687156200044657620002c16200030a9662000268620002e394620002466200030598620004439d60805260018060a01b031660018060a01b03196033541617603355565b603480546001600160a01b0319166001600160a01b0392909216919091179055565b7b033b2e3c9fd0803ce800000000000000033b2e3c9fd0803ce80000006005556006805464ffffffffff19164264ffffffffff16179055600080546001600160a01b0319166001600160a01b0392909216919091179055565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b600955565b620003206200031b6009546200063b565b600a55565b620003366200033160095462000672565b600b55565b6200034c62000347600954620006a8565b600c55565b620003626b0295be96e640669720000000600d55565b6200036d6000600e55565b620003836b033b2e3c9fd0803ce8000000600755565b620003996b033b2e3c9fd0803ce8000000600855565b620003a5611f40602555565b620003b7670de0b6b3a7640000602655565b620003c46203f480602755565b620003d96a084595161401484a000000602b55565b620003ee6a084595161401484a000000602c55565b620003fa6107d0602a55565b6200040661012c602855565b62000419600160ff196024541617602455565b62000425610708602d55565b6200043081620004ab565b506200043c8162000534565b50620005e1565b50565b60405162461bcd60e51b815260206004820152600d60248201526c5a65726f20726567697374727960981b6044820152606490fd5b604051631e4fbdf760e01b815260006004820152602490fd5b9060018060a01b0316600052602052604060002090565b6000808052603260205260ff620004e2837ebcd6ff29ae71d399fb597d99792fa72d0863bd723b9ab11f79d0b8d8ac5bc862000494565b54166200052f57808052603260205262000500826040832062000494565b805460ff1916600117905533916001600160a01b031690600080516020620066c58339815191528180a4600190565b905090565b7f71840dc4906352362b0cdaf79870196c8e42acafade72d5d5a6d59291253ceb1600081815260326020529060ff6200058e847f08ae08a1778cb01871246af592e3e907ec9ba7bc1cc0b308a58e75fd2ee1dfba62000494565b5416620005db578082526032602052620005ac836040842062000494565b805460ff1916600117905533926001600160a01b031691600080516020620066c58339815191529080a4600190565b50905090565b7fba279271fb7bbf76a6f3df3cc57bf80647fcafdea60ec3383d90f459de74e7c0600081815260326020529060ff6200058e847f4be98a500fedc87dbf83b0f2e386ce313ece8458dab0590898ef9a4135d1921462000494565b7e1a36e2eb1c432ca57a786c226809d495182a9930be0ded288ce703afb7e90d8111620000e8576113886109c46127109202010490565b7e0d1b71758e219652bd3c36113404ea4a8c154c985f06f694467381d7dbf4868111620000e85761271090611388809102010490565b7e01a36e2eb1c432ca57a786c226809d495182a9930be0ded288ce703afb7e908111620000e857611388619c40612710920201049056fe6080604052600436101561001257600080fd5b60003560e01c806301ffc9a7146105bd57806302768de4146105b8578063048c661d146105b3578063086c33e1146105ae57806309bf1e73146105a95780630ab30d8a146105a45780630c34b9141461059f5780630c42dcaf1461059a5780630c679a7b14610595578063150b7a0214610590578063152f15841461058b57806316c621e0146105865780631a7fd200146105815780631d4bf4a01461057c5780631d8557d71461057757806322f2caf1146105725780632445eee51461056d578063248a9ca31461056857806327156a68146105635780632a5bf6d21461055e5780632a7e7849146105595780632ab414fc146105545780632e1a7d4d1461054f5780632f17682b146104be5780632f2ff15d1461054a57806332128b031461054557806334176a6d1461054057806336568abe1461053b5780633f4ba83a146105365780634df9d6ba146105315780634ef501ac1461052c57806353f35770146105275780635c975abb146105225780636061ffc31461051d578063618295df14610518578063640bc491146105135780636817031b1461050e578063715018a614610509578063745400c91461050457806375417da6146104ff578063768bab45146104fa5780637bc7780b146104f55780638429d51f146104f05780638456cb59146104eb578063883c6b24146104e657806389035730146104e1578063893a5372146104dc5780638ad7cacc146104d75780638aee8127146104d25780638d7081e4146104cd5780638da5cb5b146104c85780638def3ec2146104c35780638f7e8498146104be57806391d14854146104b95780639632b92a146104b457806398c2b108146104af57806398d721e0146104aa5780639daa54b41461042d578063a013f9c6146104a5578063a217fddf146104a0578063a42dce801461049b578063a51e896314610496578063a90d728f14610491578063a9bf805c1461048c578063aaf6379914610487578063b21cfc7114610482578063b6b55f251461047d578063b82e16e314610478578063b88a802f14610473578063ba7466941461046e578063c415b95c14610469578063c4f8911c14610464578063c6d6916c1461045f578063c89109131461045a578063c939ad6114610455578063cac89c5c14610450578063cd3293de1461044b578063d017e97814610446578063d17e988314610441578063d547741f1461043c578063de597d5b14610437578063e5711e8b14610432578063e65896c91461042d578063ec915ee614610428578063ef16b0e014610423578063ef5bac251461041e578063f2fde38b14610419578063f36c8f5c14610414578063fbf4a6121461040f578063fbfa77cf1461040a5763fe64cc0b1461040557600080fd5b6137b9565b613790565b61376d565b613744565b6136ca565b613606565b613536565b6134dc565b6127f8565b61344b565b61338a565b613348565b613321565b613305565b61328d565b61323c565b61319a565b61315a565b613074565b612fa5565b612f7c565b612e7f565b612e4d565b612da4565b612cfa565b612c0e565b612b98565b612b6f565b612a83565b6129f3565b612980565b612964565b61291b565b612785565b6126ca565b61260f565b6125cb565b6115cb565b612510565b6124e7565b6124cb565b61246c565b612330565b612286565b6121fc565b6121d3565b612179565b612131565b612113565b612017565b611f57565b611f33565b611ee4565b611c80565b611c57565b611b3b565b611b04565b611ae1565b611a87565b6119fe565b6119a1565b611937565b6118ec565b61185c565b61164e565b61160c565b6114e7565b610f89565b610ebc565b610e5d565b610e36565b610e07565b610d23565b610c73565b610c5a565b610c3c565b610bb7565b610ae9565b610aa7565b610963565b61085a565b61083d565b61077d565b61075c565b61073e565b61071a565b61066b565b610623565b346106135760203660031901126106135760043563ffffffff60e01b811680910361061357602090637965db0b60e01b8114908115610602575b506040519015158152f35b6301ffc9a760e01b149050386105f7565b600080fd5b600091031261061357565b34610613576000366003190112610613576020604051600080516020615f708339815191528152f35b6001600160a01b031690565b6001600160a01b03909116815260200190565b34610613576000366003190112610613576017546040516001600160a01b039091168152602090f35b6001600160a01b0381160361061357565b9181601f84011215610613578235916001600160401b038311610613576020838186019501011161061357565b6060600319820112610613576004356106ea81610694565b916024356106f781610694565b91604435906001600160401b03821161061357610716916004016106a5565b9091565b3461061357602061073661072d366106d2565b92919091614bc7565b604051908152f35b346106135760003660031901126106135760206040516203f4808152f35b3461061357600036600319011261061357602060055460801c604051908152f35b3461061357600036600319011261061357610796614ee2565b506108396107a2610928565b600754815260085460208201526009546040820152600a546060820152600b546080820152600c5460a0820152600d5460c0820152600e5460e08201526040519182918291909160e080610100830194805184526020810151602085015260408101516040850152606081015160608501526080810151608085015260a081015160a085015260c081015160c08501520151910152565b0390f35b34610613576000366003190112610613576020604051611f408152f35b346106135760203660031901126106135760043561087781610694565b61087f613904565b601680546001600160a01b0319166001600160a01b0392909216919091179055005b634e487b7160e01b600052604160045260246000fd5b6001600160401b0381116108ca57604052565b6108a1565b60c081019081106001600160401b038211176108ca57604052565b606081019081106001600160401b038211176108ca57604052565b601f909101601f19168101906001600160401b038211908210176108ca57604052565b6040519061010082016001600160401b038111838210176108ca57604052565b6001600160401b0381116108ca57601f01601f191660200190565b346106135760803660031901126106135761097f600435610694565b61098a602435610694565b6064356001600160401b0381116106135736602382011215610613578060040135906109b582610948565b916109c36040519384610905565b8083523660248284010111610613576000928160246020940184830137010152604051630a85bd0160e11b8152602090f35b6001600160a01b03166000908152602080526040902090565b6001600160a01b0316600090815260146020526040902090565b6001600160a01b0316600090815260156020526040902090565b6001600160a01b0316600090815260106020526040902090565b6001600160a01b0316600090815260226020526040902090565b6001600160a01b03166000908152600f6020526040902090565b9060018060a01b0316600052602052604060002090565b3461061357602036600319011261061357600435610ac481610694565b60018060a01b03166000526023602052602060ff604060002054166040519015158152f35b3461061357602036600319011261061357610b02613bcd565b60405163fe575a8760e01b81523360048201526020816024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa908115610bb257600091610b84575b50610b7257610b6660043561490c565b610b706001603055565b005b604051632652747360e21b8152600490fd5b610ba5915060203d8111610bab575b610b9d8183610905565b810190613a6b565b38610b56565b503d610b93565b613a82565b3461061357602036600319011261061357600435610bd481610694565b610bdc613904565b6001600160a01b03908116908115610c2a57603380546001600160a01b031981168417909155167f748f1f5793b18b83e17ec58dd942771a149a2da21e05fe50ced8c278143c6d71600080a3005b6040516303988b8160e61b8152600490fd5b34610613576000366003190112610613576020601a54604051908152f35b3461061357600036600319011261061357610b7061582c565b3461061357602036600319011261061357600435610c9081610694565b610c98613904565b6001600160a01b03811660008181526020805260408120549092919060ff16610d115782526020805260408220805460ff191660011790557fa77e7c594c11a0d5d9d8e6a9132ac0db912dc0f34f5fb7d94860fe38d16410bd90610d0b90610cff8161396e565b60405191829182610658565b0390a180f35b60405163dc37823360e01b8152600490fd5b346106135760803660031901126106135760048035610d4181610694565b6024356001600160401b03811161061357610d5f90369084016106a5565b6044359160643593610d7085610694565b610d78613bcd565b610d80613baf565b8315610df6576001600160a01b03818116600090815260208052604090205460ff1615610de55760ff6024541615610dd457851615610dc357610b6695506145cd565b6040516303988b8160e61b81528690fd5b6040516312cefcd560e31b81528790fd5b604051630867d69960e11b81528790fd5b60405163162908e360e11b81528690fd5b346106135760203660031901126106135760043560005260326020526020600160406000200154604051908152f35b34610613576020366003190112610613576020610736600435610e5881610694565b614ba9565b34610613576020366003190112610613576020610736600435610e7f81610694565b614af3565b90604060031983011261061357600435610e9d81610694565b91602435906001600160401b03821161061357610716916004016106a5565b3461061357610eca36610e84565b90610ed3613bcd565b610edb613baf565b6001600160a01b03838116600090815260208052604090205460ff1615610f775760206024916040519283809263fe575a8760e01b82523360048301527f0000000000000000000000000000000000000000000000000000000000000000165afa908115610bb257600091610f59575b50610b7257610b6692613e08565b610f71915060203d8111610bab57610b9d8183610905565b38610f4b565b604051630867d69960e11b8152600490fd5b3461061357604080600319360112610613576004908135600d8110156106135760243592610fb682613930565b600a8214908180156114d4575b80156114c3575b80156114b0575b801561149d575b801561148a575b8015611478575b8015611465575b8015611452575b610ffd84613930565b600684148091811561143d575b8115611428575b8115611413575b156113a45750600080516020615f70833981519152600052603260205261107061106c611065337f4be98a500fedc87dbf83b0f2e386ce313ece8458dab0590898ef9a4135d19214610a90565b5460ff1690565b1590565b611395575b60009261108185613930565b156110e45750905083156110d657602b5484116110c857506110c3600080516020615f1083398151915293602c54936110b982602c55565b5193849384613950565b0390a1005b8251635bf62a1160e01b8152fd5b8251635b9ad34160e11b8152fd5b6110ed84613930565b600984036111245750905083156110d657506110c3600080516020615f1083398151915293602b549361111f82602b55565b6110b9565b61112d84613930565b83611155575050506110c3600080516020615f10833981519152936025549361111f82602555565b61115e84613930565b60018403611189575050506110c3600080516020615f10833981519152936026549361111f82602655565b61119284613930565b600284036111e95750905062015180841080156111dd575b6111cf57506110c3600080516020615f10833981519152936027549361111f82602755565b825163d7c43e0f60e01b8152fd5b5062093a8084116111aa565b6111f284613930565b6003840361121d575050506110c3600080516020615f1083398151915293602a549361111f82602a55565b61122984959395613930565b83820361127857506001851161126a57506024805461ff0019166001861460081b61ff0016179055600080516020615f10833981519152936110c3916110b9565b905163af979eb560e01b8152fd5b61128184613930565b600584036112c057506001851161126a5750836110c39161111f6001600080516020615f10833981519152971460ff8019602454169115151617602455565b600080516020615f1083398151915295929491506112dd84613930565b156112f457506110c3906028549361111f82602855565b6112fd83613930565b6007830361131757506110c390600e549361111f82600e55565b61132083613930565b6008830361133a57506110c3906029549361111f82602955565b61134383613930565b600b830361135d57506110c390602d549361111f82602d55565b9261136783613930565b600c831461137a575b906110c3916110b9565b92506110c390602e549361138d82602e55565b909150611370565b508351634ca8886760e01b8152fd5b1561140457600080516020615ed083398151915260005260326020526113f061106c611065337f08ae08a1778cb01871246af592e3e907ec9ba7bc1cc0b308a58e75fd2ee1dfba610a90565b1561107557508351634ca8886760e01b8152fd5b508351630309cb8760e51b8152fd5b905061141e85613930565b600c851490611018565b905061143385613930565b6008851490611011565b905061144885613930565b600785149061100a565b5061145c83613930565b600b8314610ff4565b5061146f83613930565b60058314610fed565b5061148283613930565b808314610fe6565b5061149483613930565b60038314610fdf565b506114a783613930565b60028314610fd8565b506114ba83613930565b60018314610fd1565b506114cd83613930565b8215610fca565b506114de83613930565b60098314610fc3565b3461061357602036600319011261061357600435611503613bcd565b61150b613baf565b80156115b95760ff60245460081c166115a7576115569061152b3361526e565b6017546001600160a01b03163303611598575b61154661582c565b61154f81615237565b3390615d3a565b50506115606153ea565b60405190815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436490602090a2610b706001603055565b6115a28133613d4e565b61153e565b6040516370a7336d60e11b8152600490fd5b60405163162908e360e11b8152600490fd5b34610613576020366003190112610613576004356115e881610694565b60018060a01b031660005260208052602060ff604060002054166040519015158152f35b3461061357604036600319011261061357610b7060243560043561162f82610694565b8060005260326020526116496001604060002001546137d5565b613816565b346106135761165c36610e84565b611667929192613bcd565b61166f613baf565b60018060a01b038216600093818552602080805260409460ff86882054161561183c5761169a614f40565b506116b2826116ab87863386614f72565b0151151590565b61182b57906116d0858489979695946116c961582c565b3390614ca2565b80611739575b5050813b1561173557836116ff95518096819582946312ede2c560e21b84523360048501613de6565b03925af18015610bb25761171c575b506117196001603055565b80f35b8061172961172f926108b7565b80610618565b3861170e565b8380fd5b865163d57dfa1560e01b8152949550929391929080838061175f89883360048501613de6565b0381885afa928315610bb257889361180c575b508651633de6b58d60e21b8152928184806117928a893360048501613de6565b0381895afa908115610bb2576117b9946117b4938b936117dd575b50506139f9565b614c58565b602654116117cc579084929138806116d6565b83516302c9375f60e21b8152600490fd5b6117fd929350803d10611805575b6117f58183610905565b810190613bf0565b9038806117ad565b503d6117eb565b816118249294503d8511611805576117f58183610905565b9138611772565b85516367c11db560e01b8152600490fd5b8551630867d69960e11b8152600490fd5b90600052602052604060002090565b346106135760403660031901126106135760043561187981610694565b6001600160a01b03166000908152600f60209081526040808320602435845282529182902080546001820154600283015460038401546004850154600590950154875194855260ff93841615159685019690965295830152606082019490945292161515608083015260a082015260c090f35b346106135760403660031901126106135760243561190981610694565b336001600160a01b0382160361192557610b7090600435613891565b60405163334bd91960e11b8152600490fd5b3461061357600036600319011261061357611950613904565b60315460ff81161561198f5760ff19166031557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a1005b604051638dfc202b60e01b8152600490fd5b346106135760203660031901126106135760206107366004356119c381610694565b6149ae565b634e487b7160e01b600052603260045260246000fd5b6021548110156119f957602160005260206000200190600090565b6119c8565b3461061357602036600319011261061357600435602154811015610613576021600052600080516020615f5083398151915201546040516001600160a01b039091168152602090f35b90606060031983011261061357600435611a6081610694565b91602435906001600160401b03821161061357611a7f916004016106a5565b909160443590565b3461061357611a9536611a47565b90611aa1939293613bcd565b611aa9613baf565b81156115b9576001600160a01b038316600090815260208052604090205460ff1615610f7757611ada9333936145cd565b6001603055005b3461061357600036600319011261061357602060ff603154166040519015158152f35b3461061357600036600319011261061357606060018060a01b03601154166012546013549060405192835260208301526040820152f35b3461061357602036600319011261061357600435611b5881610694565b611b60613904565b611b6f61106c611065836109f5565b610f7757611b89611b7f826109f5565b805460ff19169055565b6001600160a01b03908082169060005b60215480821015611c3a578385611bc7611bb2856119de565b905460039190911b1c6001600160a01b031690565b1614611bdc5750611bd7906139d6565b611b99565b600080516020615ef083398151915294506110c3935090611c13611c0d611bb2611c08611c32956139ea565b6119de565b916119de565b90919082549060031b9160018060a01b03809116831b921b1916179055565b610cff613a06565b5050600080516020615ef083398151915292506110c39150610cff565b34610613576000366003190112610613576033546040516001600160a01b039091168152602090f35b346106135760208060031936011261061357600435611c9e81610694565b611ca6613904565b601f611cba611cb5825461064c565b61064c565b6001600160a01b039283169390838116808614159081611eda575b50611dc6575b50600481611d14611cb5611cf2611cb5875461064c565b601f80546001600160a01b0319166001600160a01b038b16179055955461064c565b6040516338d52e0f60e01b815292839182905afa918215610bb257600092611d99575b505082611d48611cb560015461064c565b9116141580611d90575b611d7e57167f483bdedaaf23706a9800ac1af0d852b34927780d79f9d6ba60a80c7cad75ea39600080a3005b604051631b3b488360e11b8152600490fd5b50821515611d52565b611db89250803d10611dbf575b611db08183610905565b81019061422f565b3880611d37565b503d611da6565b81604051809263ce96cb7760e01b82528180611de53060048301610658565b03915afa60009181611ebb575b50611ead57506001611e026152f1565b806308c379a014611e8c57634e487b7114611e54575b611e23575b38611cdb565b611e2b614a50565b50611e3c611cb5611cb5845461064c565b600080516020615f30833981519152600080a2611e1d565b611e5c61537d565b5015611e1857506000611e75611cb5611cb5855461064c565b600080516020615f308339815191528280a2611e18565b50611e9561530f565b15611e1857506000611e75611cb5611cb5855461064c565b611eb6906153b3565b611e1d565b611ed3919250833d8511611805576117f58183610905565b9038611df2565b9050151538611cd5565b3461061357600080600319360112611f3057611efe613904565b602f80546001600160a01b0319811690915581906001600160a01b0316600080516020615f908339815191528280a380f35b80fd5b3461061357602036600319011261061357611f4c613baf565b610b70600435613c7b565b346106135760208060031936011261061357600490813591611f7883610694565b6000918293602154925b838610611f9457604051858152602090f35b90919293611faa611cb5611cb5611bb2896119de565b84604051809263572bf25760e01b82528180611fc889898301610658565b03915afa8015610bb257611fee92611fe892600092611ff8575b50613a8e565b956139d6565b9493929190611f82565b612010919250873d8911611805576117f58183610905565b9038611fe2565b346106135760403660031901126106135760043561203481610694565b61203c613904565b61204461582c565b6001600160a01b038116156120b85760008091612067611cb5611cb5845461064c565b90813b156120b45782916120959160405194858094819363768bab4560e01b83526024359060048401613e8e565b03925af18015610bb2576120a7575080f35b80611729611719926108b7565b5050fd5b60405162461bcd60e51b815260206004820152602d60248201527f4c656e64696e67506f6f6c3a20526563697069656e742063616e6e6f7420626560448201526c207a65726f206164647265737360981b6064820152608490fd5b34610613576000366003190112610613576020600954604051908152f35b346106135760003660031901126106135760c0601954601a54601b54601c54601d5491601e5493604051958652602086015260408501526060840152608083015260a0820152f35b3461061357600036600319011261061357612192613904565b61219a613baf565b600160ff1960315416176031557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a1005b34610613576000366003190112610613576005546040516001600160801b039091168152602090f35b3461061357600036600319011261061357610180602454602554602654602754602854602954602a5490602b5492602c5494602d5496602e549860ff6040519b81811615158d5260081c16151560208c015260408b015260608a0152608089015260a088015260c087015260e0860152610100850152610120840152610140830152610160820152f35b34610613576000366003190112610613576034546040516001600160a01b039091168152602090f35b61232e909291926101208101938051825260208101516020830152604081015160408301526060810151151560608301526080810151608083015260a081015160a083015260c0810151151560c083015261231960e082015160e084019060018060a01b03169052565b610100908101516001600160a01b0316910152565b565b34610613576004612340366106d2565b91909261234b614fea565b5060018060a01b038116908160005260209283805260409460ff8660002054161561245c57916060612400926123ec879695612385614fea565b9a61238e614f40565b5061239b82828689614f72565b936123b48d876123ad8d890151151590565b1515910152565b8c60808d87015191015284518d526123d58d60c06123ad6080890151151590565b8c8a6123e38585858c614d4a565b91015286614bc7565b888a0152015160a088015260e08701614f31565b835163f8eef10f60e01b815295869182905afa8015610bb257610839946124359260009261243f575b50506101008401614f31565b51918291826122af565b6124559250803d10611dbf57611db08183610905565b3880612429565b8551630867d69960e11b81528890fd5b346106135760203660031901126106135760043561248981610694565b612491613904565b601154906001600160a01b03908183166124b9576001600160a01b0319909216911617601155005b60405163b6de9a7160e01b8152600490fd5b346106135760206107366124de366106d2565b929190916144bb565b3461061357600036600319011261061357602f546040516001600160a01b039091168152602090f35b346106135761251e36611a47565b91612527613bcd565b61252f613baf565b6001600160a01b03848116600090815260208052604090205460ff1615610f775760206024916040519283809263fe575a8760e01b82523360048301527f0000000000000000000000000000000000000000000000000000000000000000165afa908115610bb2576000916125ad575b50610b7257610b669361426f565b6125c5915060203d8111610bab57610b9d8183610905565b3861259f565b3461061357604036600319011261061357602060ff6126036024356125ef81610694565b600435600052603284526040600020610a90565b54166040519015158152f35b346106135761261d36610e84565b90612626613bcd565b61262e613baf565b6001600160a01b03838116600090815260208052604090205460ff1615610f775760206024916040519283809263fe575a8760e01b82523360048301527f0000000000000000000000000000000000000000000000000000000000000000165afa908115610bb2576000916126ac575b50610b7257610b6692614aba565b6126c4915060203d8111610bab57610b9d8183610905565b3861269e565b34610613576126d8366106d2565b916126e1613bcd565b6126e9613baf565b6001600160a01b03848116600090815260208052604090205460ff1615610f775760206024916040519283809263fe575a8760e01b82523360048301527f0000000000000000000000000000000000000000000000000000000000000000165afa908115610bb257600091612767575b50610b7257610b6693614a80565b61277f915060203d8111610bab57610b9d8183610905565b38612759565b34610613576020366003190112610613576004356127a281610694565b6127aa613904565b6001600160a01b03908116908115610c2a57601780546001600160a01b031981168417909155167f593eaf5e0e1afc1c041a664a437fdae719a628836785d06572b008e6ca5c189d600080a3005b34610613576020366003190112610613576004803561281681610694565b6000908190602154905b81831061283257602084604051908152f35b909192612847611cb5611cb5611bb2876119de565b92600060405180956371e078ab60e01b82528180612867888c8301610658565b03915afa938415610bb2576000946128e7575b506000915b84518310156128ce576128c26128c8916128bc6128b76128b26128a189610a76565b6128ab898c614e7e565b519061184d565b614e92565b614de2565b90613a8e565b926139d6565b9161287f565b95929350936128dd91506139d6565b9193929093612820565b61290391943d8091833e6128fb8183610905565b810190614e03565b923861287a565b908152602081019190915260400190565b346106135760203660031901126106135760043561293881610694565b60018060a01b03166000526022602052604060002060018154910154906108396040519283928361290a565b3461061357600036600319011261061357602060405160008152f35b346106135760203660031901126106135760043561299d81610694565b6129a5613904565b6001600160a01b03908116908115610c2a57601880546001600160a01b031981168417909155167f5d16ad41baeb009cd23eb8f6c7cde5c2e0cd5acf4a33926ab488875c37c37f38600080a3005b3461061357600080600319360112611f305760405163fe575a8760e01b81523360048201526020816024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa908115610bb2578291612a65575b50610b7257611719613ea9565b612a7d915060203d8111610bab57610b9d8183610905565b38612a58565b34610613576000366003190112610613576018546001600160a01b039081163303612b5e57601f541615612b2a57610839612ac2611cb560015461064c565b612aee601a548092612ad342601b55565b612add6000601a55565b612ae860185461064c565b90615040565b6040518181527f7edfb0d5d58c6a3d398df94a9bdfa2b33f3fa42ae40d72ebdc717d2db3953ee590602090a16040519081529081906020820190565b60405162461bcd60e51b815260206004820152600c60248201526b139bc81d985d5b1d081cd95d60a21b6044820152606490fd5b6040516282b42960e81b8152600490fd5b34610613576000366003190112610613576016546040516001600160a01b039091168152602090f35b3461061357612bca6020612bab366106d2565b60405163d57dfa1560e01b815295869493859384939160048501613de6565b03916001600160a01b03165afa8015610bb257602091600091612bf1575b50604051908152f35b612c089150823d8111611805576117f58183610905565b38612be8565b3461061357612c1c366106d2565b6001600160a01b03938416600081815260208080526040808320549097919692959493929060ff1615612ce957612c51614f40565b5082865286805260ff888720541615612ce957168452600f8552858420865163a646a19360e01b81529493909286928692909183918291612c959160048401613f41565b03915afa938415610bb257612cb79486948491612ccc575b5083525220614e92565b6108396060820151915192519283928361290a565b612ce39150823d8411611805576117f58183610905565b38612cad565b8751630867d69960e11b8152600490fd5b3461061357602036600319011261061357600435612d16613bcd565b612d1e613baf565b80156115b95760405163fe575a8760e01b81523360048201526020816024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa908115610bb257600091612d86575b50610b7257610b6690613a9b565b612d9e915060203d8111610bab57610b9d8183610905565b38612d78565b3461061357600080600319360112611f3057604051809160215490818352602080930180926021835284832090835b818110612e305750505084612de9910385610905565b60405193838594850191818652518092526040850193925b828110612e1057505050500390f35b83516001600160a01b031685528695509381019392810192600101612e01565b82546001600160a01b031684529286019260019283019201612dd3565b3461061357600036600319011261061357612e66613bcd565b612e6f3361526e565b6001603055602060405160018152f35b3461061357612e8d366106d2565b9291612e97614f40565b5060018060a01b038093169360009480865260209485805260409360ff858920541615612f6b5791612eec93918793168852600f835284882095855180958194829363a646a19360e01b845260048401613f41565b03915afa908115610bb2578560a094612f1593859360c09991612f4e575b508252865220614e92565b908051938251855280830151151590850152808201519084015260608101516060840152608081015115156080840152015160a0820152f35b612f659150883d8a11611805576117f58183610905565b38612f0a565b8451630867d69960e11b8152600490fd5b34610613576000366003190112610613576018546040516001600160a01b039091168152602090f35b3461061357602036600319011261061357601654600435906001600160a01b03163303612b5e5760018110613062576009549081613020575b7fd45d1eb66419c036e2fa401916c7db417696f889cf4ab8ca92272327e8e1c83e9161300982600955565b6130116156fa565b6110c36040519283928361290a565b6130298261566c565b828211156130535761303b83836139f9565b1115612fde57604051631a8b543360e21b8152600490fd5b61305d82846139f9565b61303b565b60405163824c180760e01b8152600490fd5b346106135760203660031901126106135760043561309181610694565b6000546001600160a01b03163303613115576130ac81614ba9565b806130c2575b506130bf60125491610a0e565b55005b6130e56130f3916130df6012546130d886610a0e565b54906139f9565b9061497b565b670de0b6b3a7640000900490565b80156130b25761310d61310583610a28565b918254613a8e565b9055386130b2565b60405162461bcd60e51b815260206004820152601e60248201527f4f6e6c792052546f6b656e2063616e20757064617465207265776172647300006044820152606490fd5b346106135760203660031901126106135760043561317781610694565b60018060a01b031660005260106020526020600160406000200154604051908152f35b34610613576131a8366106d2565b90916131b2613bcd565b6017546001600160a01b03929083163303612b5e5760009483811686526020805260ff60408720541615610f77576132329461322087959461321287966033541695604051948593602085019763c939ad6160e01b895260248601614a27565b03601f198101835282610905565b51915af461322c614a50565b9061539d565b6117196001603055565b34610613576000366003190112610613576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b6001600160801b031690565b346106135760003660031901126106135761010060018060a01b0380600054169080600154169060025416600354600454906005549264ffffffffff6006541694604051968752602087015260408601526060850152608084015260018060801b03811660a084015260801c60c083015260e0820152f35b34610613576020610736613318366106d2565b92919091614d4a565b3461061357602036600319011261061357602061073660043561334381610694565b614b4b565b3461061357604036600319011261061357610b7060243560043561336b82610694565b8060005260326020526133856001604060002001546137d5565b613891565b346106135761339836611a47565b916133a1613bcd565b6133a9613baf565b82156115b9576001600160a01b03848116600090815260208052604090205460ff1615610f775760206024916040519283809263fe575a8760e01b82523360048301527f0000000000000000000000000000000000000000000000000000000000000000165afa908115610bb25760009161342d575b50610b7257610b6693613ff5565b613445915060203d8111610bab57610b9d8183610905565b3861341f565b346106135760603660031901126106135760043561346881610694565b6024359061347582610694565b61347d613904565b6000546001600160a01b03918216911681146134a057610b709160443591615040565b60405162461bcd60e51b815260206004820152601460248201527321b0b73737ba103932b9b1bab290292a37b5b2b760611b6044820152606490fd5b3461061357600036600319011261061357610100600754600854600954600a54600b54600c5491600d5493600e5495604051978852602088015260408701526060860152608085015260a084015260c083015260e0820152f35b346106135760803660031901126106135760043561355381610694565b6024359061356082610694565b604435906001600160401b038211610613576020926135866107369336906004016106a5565b916064359361454f565b61232e9092919260e08061010083019560018060a01b038082511685528060208301511660208601526040820151166040850152606081015160608501526080810151608085015260018060801b038060a08301511660a086015260c08201511660c0850152015191019064ffffffffff169052565b346106135760003660031901126106135761361f614ee2565b5061083961362b610928565b61363f61363960005461064c565b82614f31565b61365661364d60015461064c565b60208301614f31565b61366d61366460025461064c565b60408301614f31565b600354606082015260045460808201526005546001600160801b03811660a083015261369d9060801c60c0830152565b6136be6136b060065464ffffffffff1690565b64ffffffffff1660e0830152565b60405191829182613590565b34610613576020366003190112610613576004356136e781610694565b6136ef613904565b6001600160a01b0390811690811561372b57602f80546001600160a01b03198116841790915516600080516020615f90833981519152600080a3005b604051631e4fbdf760e01b815260006004820152602490fd5b34610613576000366003190112610613576020604051600080516020615ed08339815191528152f35b34610613576000366003190112610613576020604051670de0b6b3a76400008152f35b3461061357600036600319011261061357601f546040516001600160a01b039091168152602090f35b346106135760206107366137cc366106d2565b92919091614ca2565b80600052603260205260ff6137ee336040600020610a90565b5416156137f85750565b6044906040519063e2517d3f60e01b82523360048301526024820152fd5b600090808252603260205260ff6138308460408520610a90565b541661388b57808252603260205261384b8360408420610a90565b805460ff1916600117905533926001600160a01b0316917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9080a4600190565b50905090565b600090808252603260205260ff6138ab8460408520610a90565b54161561388b5780825260326020526138c78360408420610a90565b805460ff1916905533926001600160a01b0316917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9080a4600190565b602f546001600160a01b0316330361391857565b60405163118cdaa760e01b8152336004820152602490fd5b600d111561393a57565b634e487b7160e01b600052602160045260246000fd5b60608101949392600d83101561393a57604092825260208201520152565b602154600160401b8110156108ca5760018101806021558110156119f9576021600052600080516020615f508339815191520180546001600160a01b0319166001600160a01b03909216919091179055565b634e487b7160e01b600052601160045260246000fd5b60001981146139e55760010190565b6139c0565b6000198101919082116139e557565b919082039182116139e557565b6021548015613a485760001981810191808310156119f957602160008190529101600080516020615f508339815191520180546001600160a01b031916905555565b634e487b7160e01b600052603160045260246000fd5b5190811515820361061357565b9081602091031261061357613a7f90613a5e565b90565b6040513d6000823e3d90fd5b919082018092116139e557565b613aa43361526e565b613aac61582c565b6018546001600160a01b0390613ac19061064c565b16158015613b99575b15613b7157600080516020615eb0833981519152613b3f613aed600080946139f9565b92613af784613bff565b613b013385615c21565b906001613b0d33610a42565b0154613b5357846001613b1f33610a42565b01555b613b2a6153ea565b80613b44575b5060405191829133958361290a565b0390a2565b613b4d90615500565b38613b30565b6001613b5e33610a42565b01613b6a868254613a8e565b9055613b22565b600080516020615eb0833981519152613b3f613aed613b92602954856156a2565b80946139f9565b50613ba8611cb560175461064c565b3314613aca565b60ff60315416613bbb57565b60405163d93c066560e01b8152600490fd5b600260305414613bde576002603055565b604051633ee5aeb560e01b8152600490fd5b90816020910312610613575190565b6000546040516318160ddd60e01b81529190602090839060049082906001600160a01b03165afa918215610bb257600092613c5b575b5081018091116139e557602b5410613c4957565b6040516354db2d5d60e11b8152600490fd5b613c7491925060203d8111611805576117f58183610905565b9038613c35565b60245460081c60ff166115a757602d5415613d3c57613c9933610a5c565b8115613cfa57613b3f600182847f2816dbba0837d8d68f7bcead98695dd98db2cc1cb4066694ead56a12e795c4889455613ce7613cdb613cdb602d5442613a8e565b6001600160401b031690565b918291015560405191829133958361290a565b5050613d14613d0833610a5c565b60016000918281550155565b337f8b775bb80a5d4addc5ea2601b2378ae89a1bb9010227157ac02aa71498e799c4600080a2565b60405163410dc88360e11b8152600490fd5b90602d5415613dc157613d6082610a5c565b60018101548015613daf574210613d9d575403613d8b576001613d84600092610a5c565b8281550155565b604051635a4fecf360e11b8152600490fd5b60405163621e25c360e01b8152600490fd5b604051637b7e3ed560e11b8152600490fd5b5050565b908060209392818452848401376000828201840152601f01601f1916010190565b6001600160a01b039091168152604060208201819052613a7f93910191613dc5565b909291600091338352602360205260ff60408420541615613e7c57613e2b61582c565b6001600160a01b0316803b15613e7857613e5e93948360405180968195829463cf2c52cb60e01b84523360048501613de6565b03925af18015610bb257613e6f5750565b61232e906108b7565b8280fd5b6040516361803dfb60e11b8152600490fd5b6001600160a01b039091168152602081019190915260400190565b33600052602360205260ff60406000205416613f2f57336000526023602052613edd6040600020600160ff19825416179055565b602e5480613f20575b507fd5acd12fd21128fb0a61c90d812321cb1423b1948052a3e93786c482bbef6608613f1b602e546040519182913383613e8e565b0390a1565b613f2990615500565b38613ee6565b60405163992c89a960e01b8152600490fd5b916020613a7f938181520191613dc5565b9081606091031261061357613f6681613a5e565b916040602083015192015190565b919082519283825260005b848110613fa0575050826000602080949584010152601f8019910116010190565b602081830181015184830182015201613f7f565b6001600160a01b0391821681529116602082015260408101919091526001600160801b03909116606082015260a060808201819052613a7f92910190613f74565b919061400033610a76565b6040805163a646a19360e01b815290949160208280614023888860048401613f41565b03816001600160a01b0387165afa908115610bb25761404a9260009261420f575b5061184d565b92614059600185015460ff1690565b6141fe57918183614073886140e598979685606097615117565b61407b61582c565b61408488615237565b6140c5614098611cb5611cb560025461064c565b926140b76140a860055460801c90565b93895196879360208501613de6565b03601f198101855284610905565b6000865180988195829463292aab8160e11b84528c333360048701613fb4565b03925af18015610bb25760009384916141c9575b5061410e61410960055460801c90565b613281565b6003830155614124611cb5611cb560005461064c565b91823b1561061357600084518094635c921eb960e01b825281838161414d8c3360048401613e8e565b03925af18015610bb2577fcbc04eca7e9da35cb1393a6135a199ca52e450d5e9251cbd99f7847d33a36750956141959461418e926141b6575b508254613a8e565b9055600455565b61419e83615787565b6141a66153ea565b5191825233918060208101613b3f565b806117296141c3926108b7565b38614186565b90506141ed91935060603d81116141f7575b6141e58183610905565b810190613f52565b93915092386140f9565b503d6141db565b8451630bff073160e31b8152600490fd5b61422891925060203d8111611805576117f58183610905565b9038614044565b908160209103126106135751613a7f81610694565b9493929160409261426a9260018060a01b03168752606060208801526060870191613dc5565b930152565b9190928361427c33610a76565b9360018060a01b0393848216604094855163a646a19360e01b81526020988982806142ac8860049b8c8401613f41565b0381875afa908115610bb2576142c9926000926144a3575061184d565b906142d6848b33886144bb565b946142e482868d338561454f565b906142f6611cb5611cb560015461064c565b6143358c61430560185461064c565b8c51636eb1769f60e11b815233818e019081526001600160a01b0390921660208301529283918291604090910190565b0381855afa8015610bb25784918e600092614486575b505010614476578b89614372928c5180809581946370a0823160e01b835233908301610658565b03915afa8015610bb2578391600091614459575b5010614449576143c2836143ae6143cc948f8f9998978b6143a992600598613ff5565b61543d565b848a01805460ff1916600117905588613a8e565b9201918254613a8e565b9055855163f8eef10f60e01b815294859182905afa928315610bb2577f2386b33461472749e636e4d07c6e2b5e114398809469e25100c5ef910a663f6496600094614426575b5050613b3f92935194859416963385614244565b613b3f9450908161444292903d10611dbf57611db08183610905565b9238614412565b8851631e9acf1760e31b81528890fd5b61447091508d803d10611805576117f58183610905565b38614386565b89516339e067d560e21b81528990fd5b61449c9250803d10611805576117f58183610905565b388e61434b565b6142289192508b3d8d11611805576117f58183610905565b919290926144c7614f40565b5060018060a01b038093169360009285845260209586805260ff60408620541615610f775761451a958793168552600f8352604085209360405180978194829363a646a19360e01b845260048401613f41565b03915afa938415610bb25761453c946040948491612ccc575083525220614e92565b60a0815191015181039081116139e55790565b9061455b9392916144bb565b9081018091116139e557602854613a7f916156a2565b9190826080910312610613578151916020810151916060604083015192015190565b6001600160a01b03909116815260208101919091526001600160801b039091166040820152608060608201819052613a7f92910190613f74565b909194939280156115b9576001600160a01b03848116949092908515610c2a576145f561582c565b61462261460182610a76565b60208a6040978851808096819463a646a19360e01b83528d60048401613f41565b039188165afa908115610bb2576146409260009261420f575061184d565b9261464f600185015460ff1690565b8080614845575b614834578061481b575b61480a57918160809361467a8b8960009b9c9d9686614d4a565b908181118a1461480057509788915b6146ca61469d611cb5611cb560025461064c565b946146bc6146ad60055460801c90565b978b519c8d9360208501613de6565b03601f1981018b528a610905565b6146e98851998a9687958694638a94b05f60e01b865260048601614593565b03925af1928315610bb2576147776005917f05f2eeda0e08e4b437f487c8d7d29b14537d15e3488170dc3de5dbdf8dac4684956000809281926147c7575b506147699061473a614109875460801c90565b60038801556147648a614751611cb560015461064c565b61475c60005461064c565b90339061485c565b600455565b806147b4575b5083546139f9565b918281550190808254116147ac575b156147a2575b50614796836157d6565b519182523391602090a3565b600090553861478c565b808255614786565b6147bf908554613a8e565b84553861476f565b905061476992506147ef915060803d81116147f9575b6147e78183610905565b810190614571565b9093909250614727565b503d6147dd565b9050978891614689565b8451634b3c322760e11b8152600490fd5b5061482d600285015460275490613a8e565b4211614660565b855163224aae4f60e21b8152600490fd5b5061485761106c600487015460ff1690565b614656565b6040516323b872dd60e01b60208201526001600160a01b03928316602482015292909116604483015260648083019390935291815260a08101918183106001600160401b038411176108ca5761232e926040525b906000602091828151910182855af115613a82576000513d61490357506001600160a01b0381163b155b6148e15750565b604051635274afe760e01b81526001600160a01b039091166004820152602490fd5b600114156148da565b6011546001600160a01b031680156149695781156115b95781614932913090339061485c565b61493b8161507a565b6040519081527fe79ffd9a88f13c8c49fb545410401d9877ab90d9dcf7b15d4dc0601993a0d91360203392a2565b604051632506892760e01b8152600490fd5b818102929181159184041417156139e557565b8115614998570490565b634e487b7160e01b600052601260045260246000fd5b6011546001600160a01b0390811615614a20576149ca82614ba9565b908115614a1857601254908316600052601460205260406000205481039081116139e557614a04670de0b6b3a764000091614a0b9361497b565b0491610a28565b5481018091116139e55790565b505050600090565b5050600090565b6001600160a01b03918216815291166020820152606060408201819052613a7f93910191613dc5565b3d15614a7b573d90614a6182610948565b91614a6f6040519384610905565b82523d6000602084013e565b606090565b9261232e93600093613220859461321260018060a01b0360335416956040519485936020850197631318562160e31b895260248601614a27565b600091829161232e9461322060018060a01b0360335416936132126040519384926020840196634b195c9560e11b885260248501613de6565b600054604051630481930d60e21b81526001600160a01b0392831660048201529160209183916024918391165afa908115610bb257600091614b33575090565b613a7f915060203d8111611805576117f58183610905565b6017546001600160a01b039081168015614a1857600092839260405190602082019263c084b10b60e01b845216602482015260248152614b8a816108ea565b51915afa50613a7f614b9a614a50565b60208082518301019101613bf0565b614bbb614bb582614af3565b91614b4b565b81018091116139e55790565b6001600160a01b0381166000818152602080526040902054909491939060ff1615610f77576020604051809663d57dfa1560e01b82528180614c0e87878a60048501613de6565b03915afa928315610bb257613a7f95600094614c36575b50614c309394614d4a565b90614c58565b614c309450614c529060203d8111611805576117f58183610905565b93614c25565b60018210614c9057602554614c6c916156a2565b90670de0b6b3a7640000918281029281840414901517156139e557613a7f9161498e565b50676765c793fa10079d601b1b919050565b909193929360018060a01b038092169160009280845260209182805260409560ff878720541615614d3957614cd5614f40565b5082865283805260ff878720541615614d395791614d179798918493168652600f835286862094875180998194829363a646a19360e01b845260048401613f41565b03915afa8015610bb257614d35958491612ccc575083525220614e92565b5190565b8651630867d69960e11b8152600490fd5b9193929360018060a01b038093169060009180835260209485805260409460ff86862054161561183c57614d7c614f40565b5082855286805260ff86862054161561183c579186979891614dbf9793168552600f835285852093865180988194829363a646a19360e01b845260048401613f41565b03915afa948515610bb257613a7f956128b7958491612ccc575083525220614e92565b805190606060055460801c91015181039081116139e557614bbb90826156c0565b9060209081838203126106135782516001600160401b0393848211610613570181601f820112156106135780519384116108ca578360051b9060405194614e4c85840187610905565b85528380860192820101928311610613578301905b828210614e6f575050505090565b81518152908301908301614e61565b80518210156119f95760209160051b010190565b90604051614e9f816108cf565b60a0600582948054845260ff60018201541615156020850152600281015460408501526003810154606085015260ff600482015416151560808501520154910152565b6040519061010082016001600160401b038111838210176108ca576040528160e06000918281528260208201528260408201528260608201528260808201528260a08201528260c08201520152565b6001600160a01b039091169052565b60405190614f4d826108cf565b8160a06000918281528260208201528260408201528260608201528260808201520152565b9192909260018060a01b038093169360009285845260209586805260ff60408620541615610f7757614fc8958793168552600f8352604085209360405180978194829363a646a19360e01b845260048401613f41565b03915afa938415610bb257613a7f946040948491612ccc575083525220614e92565b6040519061012082016001600160401b038111838210176108ca57604052816101006000918281528260208201528260408201528260608201528260808201528260a08201528260c08201528260e08201520152565b61507561232e939261506760405194859263a9059cbb60e01b602085015260248401613e8e565b03601f198101845283610905565b6148b0565b6011546001600160a01b031615614969576003548015613dc157811580156150a157505050565b670de0b6b3a76400008084029384041417156139e5576150c09161498e565b6012549081018091116139e55760125542601355565b156150dd57565b60405162461bcd60e51b8152602060048201526012602482015271189bdc9c9bddc818d85c081c995858da195960721b6044820152606490fd5b92909161512b611cb5611cb560025461064c565b9060405180926318160ddd60e01b825281600460209586935afa8015610bb257846151619161516b9360009161521a5750613a8e565b602c5410156150d6565b60405163d57dfa1560e01b815282818061518a85893360048501613de6565b03816001600160a01b038a165afa928315610bb2576000936151fb575b505081156151e9576151d0936151c36151cb93602554906156a2565b953390614ca2565b613a8e565b116151d757565b604051630369fbd160e51b8152600490fd5b604051638dc8d9b360e01b8152600490fd5b615212929350803d10611805576117f58183610905565b9038806151a7565b6152319150863d8811611805576117f58183610905565b38611fe2565b60008061232e9260018060a01b036034541690604051602081019163489493f160e11b8352602482015260248152613220816108ea565b6011546001600160a01b039190821615613dc15761528b816149ae565b908161529657505050565b816152e87fe34918ff1c7084970068b53fd71ad6d8b04e9f15d3886cbf006443e6cdc52ea693838660209516968760005260158652600060408120556012546152de83610a0e565b5560115416615040565b604051908152a2565b60009060033d116152fe57565b905060046000803e60005160e01c90565b600060443d10613a7f57604051600319913d83016004833e81516001600160401b03918282113d60248401111761536c57818401948551938411615374573d8501016020848701011161536c5750613a7f92910160200190610905565b949350505050565b50949350505050565b6000809160233d1161538b57565b9150506020600460003e600051600191565b156153a55750565b805190811561061357602001fd5b60008061232e9260018060a01b036034541690604051602081019163076d081560e01b8352602482015260248152613220816108ea565b60345460408051633fa5758d60e11b60208201908152600482529290918201906001600160a01b03166001600160401b038211838310176108ca5761232e93600093849360405251915af461322c614a50565b6018546001600160a01b03906154529061064c565b168015610c2a5781156115b9576154d59160209161547160015461064c565b604051636033e31560e01b81526001600160a01b03909116600482015233602482015260448101929092527f65991ea5d80f7b6dc8c32648f59c5a653beb10caddae8fefad6966b35a0a65f160648301529092839190829060009082906084820190565b03925af18015610bb2576154e65750565b6154fd9060203d8111610bab57610b9d8183610905565b50565b6018546001600160a01b03906155159061064c565b1615610c2a576155368161552d611cb560015461064c565b3090339061485c565b80615548611cb5611cb560015461064c565b61555360185461064c565b604051809263095ea7b360e01b8252816000816155776020998a9760048401613e8e565b03925af1908115610bb25760009161564f575b501561563d5781615615916155a6611cb5611cb560185461064c565b6155b160015461064c565b604051636033e31560e01b81526001600160a01b03909116600482015230602482015260448101929092527f42fd249bdce4c4255579b56a79389d6d679ba17c7b7c848ee5c0a2ffcf354cf160648301529092839190829060009082906084820190565b03925af18015610bb257615627575050565b816154fd92903d10610bab57610b9d8183610905565b6040516340b27c2160e11b8152600490fd5b6156669150833d8511610bab57610b9d8183610905565b3861558a565b7e83126e978d4fdf3b645a1cac083126e978d4fdf3b645a1cac083126e978d458111610613576113886101f46127109202010490565b81611388190481111582151715610613576127109102611388010490565b8115676765c793fa10079d601a1b19839004821115171561061357676765c793fa10079d601b1b9102676765c793fa10079d601a1b010490565b615745600454615708615e72565b50615711615e2b565b5061571e81600354615b9a565b61573881600954600a54600b54600c5491600d5493615ae7565b80600855600e5491615abd565b60075561575061582c565b7f48f4f83c2f1843e8fd7ef13ffcff40fca5055dc1b9b074cd9dd0f9a8a8e09dd960075460085490613f1b6040519283928361290a565b8061579c575b50615745600454615708615e72565b6003548181106157c4576157b56141096157bb936157f9565b906139f9565b6003553861578d565b60405163bb55fd2760e01b8152600490fd5b806157ea5750615745600454615708615e72565b6157bb906128bc614109600354925b6001600160801b039081811161580d571690565b604490604051906306dfcc6560e41b8252608060048301526024820152fd5b61585261584c61584260065464ffffffffff1690565b64ffffffffff1690565b426139f9565b600181106154fd57615868614109600554613281565b6001811061594857816158a96158876158c2936158e79560075461595a565b600580546001600160801b0319166001600160801b0392909216919091179055565b600854906158bc61410960055460801c90565b9161599e565b600580546001600160801b031660809290921b6001600160801b031916919091179055565b6006805464ffffffffff19164264ffffffffff16179055600554604080516001600160801b038316815260809290921c60208301527ff92a3abee06d57c996e7e19eb34560241fdc1fe67e9ebd503177710bf9fd8204919081908101613f1b565b604051630a1cf3ed60e21b8152600490fd5b9161596b61597092613a7f94615975565b6156c0565b6157f9565b6301e13380916159849161497b565b04676765c793fa10079d601b1b9081018091116139e55790565b916159af61597092613a7f946159b5565b906156c0565b60018210614c9057744f3a68dbc8f03f243baf513267aa9a3ee524f8e028811161061357613a7f916301e1338062f099c06159fe93676765c793fa10079d601b1b0201046156c0565b615a28565b8160011c90676765c793fa10079d601b1b908183190481118415176106135702010490565b8015615aad57676765c793fa10079d601c1b81800204906b09b18ab5df7180b6b800000082820204676765c793fa10079d601d1b818302046b1027e72f1f1281308800000081840204906b1363156bbee3016d700000008285020492676765c793fa10079d601b1b956b169e43a85eb381aa5800000085870204950101010101010190565b50676765c793fa10079d601b1b90565b909192600111614a1857615adb91615ad4916156c0565b91826156c0565b81039081116139e55790565b91949290948186841191821592615b8f575b8215615b84575b8215615b79575b5050615b6757838311615b30575091615b2b6128bc926159af86613a7f97966139f9565b615a03565b9350918082039182116139e557676765c793fa10079d601b1b9081039081116139e557615b2b6128bc926159af85613a7f976139f9565b60405163abc83fed60e01b8152600490fd5b101590508138615b07565b878111159250615b00565b818510159250615af9565b60018110614c90578181018091116139e5576001600160801b0391615bc29161597091615a03565b1690565b919082608091031261061357615bdb82613a5e565b916020810151916060604083015192015190565b6001600160a01b0391821681529116602082015260408101919091526001600160801b03909116606082015260800190565b600181106115b957600091615c3461582c565b615c5082615c46611cb560015461064c565b61475c865461064c565b6080615c8f615c65611cb5611cb5875461064c565b615c70600554613281565b60405196878094819363b3f1c93d60e01b835289893060048601615bef565b03925af1928315610bb257600093615cdb575b5082600080516020615eb083398151915291615cbd846157d6565b615cd560405192839260018060a01b0316958361290a565b0390a290565b600080516020615eb0833981519152919350615d0d9060803d8111615d18575b615d058183610905565b810190615bc6565b505090509290615ca2565b503d615cfb565b90816060910312610613578051916040602083015192015190565b91600183106115b9576060615d8e93615d5161582c565b615d62611cb5611cb560005461064c565b615d6d600554613281565b916000604051809881958294636b81068560e11b84528a8060048601615bef565b03925af1918215610bb2576000938493615df3575b50615dad83615787565b6040516001600160a01b03909116907ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689080615dea87878361290a565b0390a281929190565b909250615e1891935060603d8111615e24575b615e108183610905565b810190615d1f565b93919050929138615da3565b503d615e06565b64ffffffffff6006541642034281116139e55760018110615e6257613a7f9061596b6007549160018060801b036005541692615975565b506005546001600160801b031690565b64ffffffffff6006541642034281116139e55760018110615ea857615e9c613a7f916008546159b5565b60055460801c906156c0565b506004549056fe90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a1571840dc4906352362b0cdaf79870196c8e42acafade72d5d5a6d59291253ceb1df980d21d8c7bb34800e668dbe003299093bac8e693614151d3c57f73f98a93d063386e75a280368ce68f5e39db7d7a3f09737ca4d289d9345a5f4968ff76955c4cede9b2b63ba72d39d2f630b4b742e1cada59d7a073ac4e10da9ac7b2eb1053a6357012c1a3ae0a17d304c9920310382d968ebcc4b1771f41c6b304205b570ba279271fb7bbf76a6f3df3cc57bf80647fcafdea60ec3383d90f459de74e7c08be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0a2646970667358221220a4c79e496b929859813f285292141f0777525deaf07047a598c9d91d6af9030064736f6c634300081400332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d";
|
|
18
18
|
static readonly abi: readonly [{
|
|
19
19
|
readonly inputs: readonly [{
|
|
20
20
|
readonly internalType: "address";
|
|
@@ -30,38 +30,74 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
30
30
|
readonly type: "address";
|
|
31
31
|
}, {
|
|
32
32
|
readonly internalType: "address";
|
|
33
|
-
readonly name: "
|
|
33
|
+
readonly name: "_liquidationProxyAddress";
|
|
34
34
|
readonly type: "address";
|
|
35
35
|
}, {
|
|
36
36
|
readonly internalType: "address";
|
|
37
|
-
readonly name: "
|
|
37
|
+
readonly name: "_vaultProxy";
|
|
38
|
+
readonly type: "address";
|
|
39
|
+
}, {
|
|
40
|
+
readonly internalType: "address";
|
|
41
|
+
readonly name: "_complianceRegistry";
|
|
38
42
|
readonly type: "address";
|
|
39
43
|
}, {
|
|
40
44
|
readonly internalType: "uint256";
|
|
41
45
|
readonly name: "_initialPrimeRate";
|
|
42
46
|
readonly type: "uint256";
|
|
47
|
+
}, {
|
|
48
|
+
readonly internalType: "address";
|
|
49
|
+
readonly name: "_admin";
|
|
50
|
+
readonly type: "address";
|
|
43
51
|
}];
|
|
44
52
|
readonly stateMutability: "nonpayable";
|
|
45
53
|
readonly type: "constructor";
|
|
46
54
|
}, {
|
|
47
55
|
readonly inputs: readonly [];
|
|
48
|
-
readonly name: "
|
|
56
|
+
readonly name: "AccessControlBadConfirmation";
|
|
49
57
|
readonly type: "error";
|
|
50
58
|
}, {
|
|
51
59
|
readonly inputs: readonly [{
|
|
52
60
|
readonly internalType: "address";
|
|
53
|
-
readonly name: "
|
|
61
|
+
readonly name: "account";
|
|
54
62
|
readonly type: "address";
|
|
63
|
+
}, {
|
|
64
|
+
readonly internalType: "bytes32";
|
|
65
|
+
readonly name: "neededRole";
|
|
66
|
+
readonly type: "bytes32";
|
|
55
67
|
}];
|
|
56
|
-
readonly name: "
|
|
68
|
+
readonly name: "AccessControlUnauthorizedAccount";
|
|
57
69
|
readonly type: "error";
|
|
58
70
|
}, {
|
|
59
|
-
readonly inputs: readonly [
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
readonly name: "
|
|
71
|
+
readonly inputs: readonly [];
|
|
72
|
+
readonly name: "AccessDenied";
|
|
73
|
+
readonly type: "error";
|
|
74
|
+
}, {
|
|
75
|
+
readonly inputs: readonly [];
|
|
76
|
+
readonly name: "AdapterAlreadySupported";
|
|
77
|
+
readonly type: "error";
|
|
78
|
+
}, {
|
|
79
|
+
readonly inputs: readonly [];
|
|
80
|
+
readonly name: "AdapterNotSupported";
|
|
81
|
+
readonly type: "error";
|
|
82
|
+
}, {
|
|
83
|
+
readonly inputs: readonly [];
|
|
84
|
+
readonly name: "AddressCannotBeZero";
|
|
85
|
+
readonly type: "error";
|
|
86
|
+
}, {
|
|
87
|
+
readonly inputs: readonly [];
|
|
88
|
+
readonly name: "AmountDifferentThanRequested";
|
|
89
|
+
readonly type: "error";
|
|
90
|
+
}, {
|
|
91
|
+
readonly inputs: readonly [];
|
|
92
|
+
readonly name: "ApprovalFailed";
|
|
93
|
+
readonly type: "error";
|
|
94
|
+
}, {
|
|
95
|
+
readonly inputs: readonly [];
|
|
96
|
+
readonly name: "BlacklistedAddress";
|
|
97
|
+
readonly type: "error";
|
|
98
|
+
}, {
|
|
99
|
+
readonly inputs: readonly [];
|
|
100
|
+
readonly name: "BorrowCapReached";
|
|
65
101
|
readonly type: "error";
|
|
66
102
|
}, {
|
|
67
103
|
readonly inputs: readonly [];
|
|
@@ -77,19 +113,23 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
77
113
|
readonly type: "error";
|
|
78
114
|
}, {
|
|
79
115
|
readonly inputs: readonly [];
|
|
80
|
-
readonly name: "
|
|
116
|
+
readonly name: "CapExceedSupply";
|
|
81
117
|
readonly type: "error";
|
|
82
118
|
}, {
|
|
83
119
|
readonly inputs: readonly [];
|
|
84
|
-
readonly name: "
|
|
120
|
+
readonly name: "CapZero";
|
|
85
121
|
readonly type: "error";
|
|
86
122
|
}, {
|
|
87
123
|
readonly inputs: readonly [];
|
|
88
|
-
readonly name: "
|
|
124
|
+
readonly name: "DebtNotZero";
|
|
125
|
+
readonly type: "error";
|
|
126
|
+
}, {
|
|
127
|
+
readonly inputs: readonly [];
|
|
128
|
+
readonly name: "EnforcedPause";
|
|
89
129
|
readonly type: "error";
|
|
90
130
|
}, {
|
|
91
131
|
readonly inputs: readonly [];
|
|
92
|
-
readonly name: "
|
|
132
|
+
readonly name: "ExpectedPause";
|
|
93
133
|
readonly type: "error";
|
|
94
134
|
}, {
|
|
95
135
|
readonly inputs: readonly [];
|
|
@@ -115,6 +155,10 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
115
155
|
readonly inputs: readonly [];
|
|
116
156
|
readonly name: "InsufficientLiquidity";
|
|
117
157
|
readonly type: "error";
|
|
158
|
+
}, {
|
|
159
|
+
readonly inputs: readonly [];
|
|
160
|
+
readonly name: "InsufficientLiquidityAfterWithdrawal";
|
|
161
|
+
readonly type: "error";
|
|
118
162
|
}, {
|
|
119
163
|
readonly inputs: readonly [];
|
|
120
164
|
readonly name: "InvalidAmount";
|
|
@@ -123,6 +167,14 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
123
167
|
readonly inputs: readonly [];
|
|
124
168
|
readonly name: "InvalidAmount";
|
|
125
169
|
readonly type: "error";
|
|
170
|
+
}, {
|
|
171
|
+
readonly inputs: readonly [];
|
|
172
|
+
readonly name: "InvalidBoolean";
|
|
173
|
+
readonly type: "error";
|
|
174
|
+
}, {
|
|
175
|
+
readonly inputs: readonly [];
|
|
176
|
+
readonly name: "InvalidGracePeriod";
|
|
177
|
+
readonly type: "error";
|
|
126
178
|
}, {
|
|
127
179
|
readonly inputs: readonly [];
|
|
128
180
|
readonly name: "InvalidInterestRateMode";
|
|
@@ -139,6 +191,10 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
139
191
|
readonly inputs: readonly [];
|
|
140
192
|
readonly name: "InvalidParameter";
|
|
141
193
|
readonly type: "error";
|
|
194
|
+
}, {
|
|
195
|
+
readonly inputs: readonly [];
|
|
196
|
+
readonly name: "InvalidPercentage";
|
|
197
|
+
readonly type: "error";
|
|
142
198
|
}, {
|
|
143
199
|
readonly inputs: readonly [];
|
|
144
200
|
readonly name: "InvalidVaultAsset";
|
|
@@ -155,10 +211,6 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
155
211
|
readonly inputs: readonly [];
|
|
156
212
|
readonly name: "NFTNotDeposited";
|
|
157
213
|
readonly type: "error";
|
|
158
|
-
}, {
|
|
159
|
-
readonly inputs: readonly [];
|
|
160
|
-
readonly name: "NFTNotInsured";
|
|
161
|
-
readonly type: "error";
|
|
162
214
|
}, {
|
|
163
215
|
readonly inputs: readonly [];
|
|
164
216
|
readonly name: "NoActiveRewardToken";
|
|
@@ -171,14 +223,30 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
171
223
|
readonly inputs: readonly [];
|
|
172
224
|
readonly name: "NoDeposits";
|
|
173
225
|
readonly type: "error";
|
|
226
|
+
}, {
|
|
227
|
+
readonly inputs: readonly [];
|
|
228
|
+
readonly name: "NoPendingWithdraw";
|
|
229
|
+
readonly type: "error";
|
|
174
230
|
}, {
|
|
175
231
|
readonly inputs: readonly [];
|
|
176
232
|
readonly name: "NoRewardsToClaim";
|
|
177
233
|
readonly type: "error";
|
|
234
|
+
}, {
|
|
235
|
+
readonly inputs: readonly [];
|
|
236
|
+
readonly name: "NoVaultSet";
|
|
237
|
+
readonly type: "error";
|
|
178
238
|
}, {
|
|
179
239
|
readonly inputs: readonly [];
|
|
180
240
|
readonly name: "NotEnoughCollateralToBorrow";
|
|
181
241
|
readonly type: "error";
|
|
242
|
+
}, {
|
|
243
|
+
readonly inputs: readonly [];
|
|
244
|
+
readonly name: "NotEnoughLiquidity";
|
|
245
|
+
readonly type: "error";
|
|
246
|
+
}, {
|
|
247
|
+
readonly inputs: readonly [];
|
|
248
|
+
readonly name: "NotInsured";
|
|
249
|
+
readonly type: "error";
|
|
182
250
|
}, {
|
|
183
251
|
readonly inputs: readonly [];
|
|
184
252
|
readonly name: "NotOwnerOfNFT";
|
|
@@ -255,6 +323,18 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
255
323
|
readonly inputs: readonly [];
|
|
256
324
|
readonly name: "StalePrice";
|
|
257
325
|
readonly type: "error";
|
|
326
|
+
}, {
|
|
327
|
+
readonly inputs: readonly [];
|
|
328
|
+
readonly name: "SupplyCapReached";
|
|
329
|
+
readonly type: "error";
|
|
330
|
+
}, {
|
|
331
|
+
readonly inputs: readonly [];
|
|
332
|
+
readonly name: "TimelockDisabled";
|
|
333
|
+
readonly type: "error";
|
|
334
|
+
}, {
|
|
335
|
+
readonly inputs: readonly [];
|
|
336
|
+
readonly name: "TimelockNotExpired";
|
|
337
|
+
readonly type: "error";
|
|
258
338
|
}, {
|
|
259
339
|
readonly inputs: readonly [];
|
|
260
340
|
readonly name: "TransferFailed";
|
|
@@ -267,6 +347,14 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
267
347
|
readonly inputs: readonly [];
|
|
268
348
|
readonly name: "UserAlreadyUnderLiquidation";
|
|
269
349
|
readonly type: "error";
|
|
350
|
+
}, {
|
|
351
|
+
readonly inputs: readonly [];
|
|
352
|
+
readonly name: "VaultPositionAlreadyOpened";
|
|
353
|
+
readonly type: "error";
|
|
354
|
+
}, {
|
|
355
|
+
readonly inputs: readonly [];
|
|
356
|
+
readonly name: "VaultPositionNotOpened";
|
|
357
|
+
readonly type: "error";
|
|
270
358
|
}, {
|
|
271
359
|
readonly inputs: readonly [];
|
|
272
360
|
readonly name: "WithdrawalWouldLeaveUserUnderCollateralized";
|
|
@@ -275,6 +363,26 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
275
363
|
readonly inputs: readonly [];
|
|
276
364
|
readonly name: "WithdrawalsArePaused";
|
|
277
365
|
readonly type: "error";
|
|
366
|
+
}, {
|
|
367
|
+
readonly anonymous: false;
|
|
368
|
+
readonly inputs: readonly [{
|
|
369
|
+
readonly indexed: false;
|
|
370
|
+
readonly internalType: "address";
|
|
371
|
+
readonly name: "adapter";
|
|
372
|
+
readonly type: "address";
|
|
373
|
+
}];
|
|
374
|
+
readonly name: "AdapterRegistered";
|
|
375
|
+
readonly type: "event";
|
|
376
|
+
}, {
|
|
377
|
+
readonly anonymous: false;
|
|
378
|
+
readonly inputs: readonly [{
|
|
379
|
+
readonly indexed: false;
|
|
380
|
+
readonly internalType: "address";
|
|
381
|
+
readonly name: "adapter";
|
|
382
|
+
readonly type: "address";
|
|
383
|
+
}];
|
|
384
|
+
readonly name: "AdapterRemoved";
|
|
385
|
+
readonly type: "event";
|
|
278
386
|
}, {
|
|
279
387
|
readonly anonymous: false;
|
|
280
388
|
readonly inputs: readonly [{
|
|
@@ -290,6 +398,21 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
290
398
|
}];
|
|
291
399
|
readonly name: "Borrow";
|
|
292
400
|
readonly type: "event";
|
|
401
|
+
}, {
|
|
402
|
+
readonly anonymous: false;
|
|
403
|
+
readonly inputs: readonly [{
|
|
404
|
+
readonly indexed: false;
|
|
405
|
+
readonly internalType: "uint256";
|
|
406
|
+
readonly name: "oldalue";
|
|
407
|
+
readonly type: "uint256";
|
|
408
|
+
}, {
|
|
409
|
+
readonly indexed: false;
|
|
410
|
+
readonly internalType: "uint256";
|
|
411
|
+
readonly name: "newValue";
|
|
412
|
+
readonly type: "uint256";
|
|
413
|
+
}];
|
|
414
|
+
readonly name: "BorrowCapUpdated";
|
|
415
|
+
readonly type: "event";
|
|
293
416
|
}, {
|
|
294
417
|
readonly anonymous: false;
|
|
295
418
|
readonly inputs: readonly [{
|
|
@@ -340,6 +463,21 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
340
463
|
}];
|
|
341
464
|
readonly name: "Deposit";
|
|
342
465
|
readonly type: "event";
|
|
466
|
+
}, {
|
|
467
|
+
readonly anonymous: false;
|
|
468
|
+
readonly inputs: readonly [{
|
|
469
|
+
readonly indexed: false;
|
|
470
|
+
readonly internalType: "uint256";
|
|
471
|
+
readonly name: "oldDepositFee";
|
|
472
|
+
readonly type: "uint256";
|
|
473
|
+
}, {
|
|
474
|
+
readonly indexed: false;
|
|
475
|
+
readonly internalType: "uint256";
|
|
476
|
+
readonly name: "newDepositFee";
|
|
477
|
+
readonly type: "uint256";
|
|
478
|
+
}];
|
|
479
|
+
readonly name: "DepositFeeUpdated";
|
|
480
|
+
readonly type: "event";
|
|
343
481
|
}, {
|
|
344
482
|
readonly anonymous: false;
|
|
345
483
|
readonly inputs: readonly [{
|
|
@@ -379,16 +517,26 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
379
517
|
readonly anonymous: false;
|
|
380
518
|
readonly inputs: readonly [{
|
|
381
519
|
readonly indexed: true;
|
|
382
|
-
readonly internalType: "
|
|
383
|
-
readonly name: "
|
|
384
|
-
readonly type: "
|
|
520
|
+
readonly internalType: "address";
|
|
521
|
+
readonly name: "asset";
|
|
522
|
+
readonly type: "address";
|
|
523
|
+
}, {
|
|
524
|
+
readonly indexed: false;
|
|
525
|
+
readonly internalType: "address";
|
|
526
|
+
readonly name: "user";
|
|
527
|
+
readonly type: "address";
|
|
528
|
+
}, {
|
|
529
|
+
readonly indexed: false;
|
|
530
|
+
readonly internalType: "bytes";
|
|
531
|
+
readonly name: "data";
|
|
532
|
+
readonly type: "bytes";
|
|
385
533
|
}, {
|
|
386
534
|
readonly indexed: false;
|
|
387
535
|
readonly internalType: "uint256";
|
|
388
536
|
readonly name: "amount";
|
|
389
537
|
readonly type: "uint256";
|
|
390
538
|
}];
|
|
391
|
-
readonly name: "
|
|
539
|
+
readonly name: "InsuredAsset";
|
|
392
540
|
readonly type: "event";
|
|
393
541
|
}, {
|
|
394
542
|
readonly anonymous: false;
|
|
@@ -438,10 +586,15 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
438
586
|
readonly name: "user";
|
|
439
587
|
readonly type: "address";
|
|
440
588
|
}, {
|
|
441
|
-
readonly indexed:
|
|
442
|
-
readonly internalType: "
|
|
443
|
-
readonly name: "
|
|
444
|
-
readonly type: "
|
|
589
|
+
readonly indexed: false;
|
|
590
|
+
readonly internalType: "address";
|
|
591
|
+
readonly name: "adapter";
|
|
592
|
+
readonly type: "address";
|
|
593
|
+
}, {
|
|
594
|
+
readonly indexed: false;
|
|
595
|
+
readonly internalType: "bytes";
|
|
596
|
+
readonly name: "data";
|
|
597
|
+
readonly type: "bytes";
|
|
445
598
|
}];
|
|
446
599
|
readonly name: "LiquidationClosed";
|
|
447
600
|
readonly type: "event";
|
|
@@ -458,10 +611,15 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
458
611
|
readonly name: "user";
|
|
459
612
|
readonly type: "address";
|
|
460
613
|
}, {
|
|
461
|
-
readonly indexed:
|
|
462
|
-
readonly internalType: "
|
|
463
|
-
readonly name: "
|
|
464
|
-
readonly type: "
|
|
614
|
+
readonly indexed: false;
|
|
615
|
+
readonly internalType: "address";
|
|
616
|
+
readonly name: "adapter";
|
|
617
|
+
readonly type: "address";
|
|
618
|
+
}, {
|
|
619
|
+
readonly indexed: false;
|
|
620
|
+
readonly internalType: "bytes";
|
|
621
|
+
readonly name: "data";
|
|
622
|
+
readonly type: "bytes";
|
|
465
623
|
}, {
|
|
466
624
|
readonly indexed: false;
|
|
467
625
|
readonly internalType: "uint256";
|
|
@@ -488,10 +646,15 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
488
646
|
readonly name: "user";
|
|
489
647
|
readonly type: "address";
|
|
490
648
|
}, {
|
|
491
|
-
readonly indexed:
|
|
492
|
-
readonly internalType: "
|
|
493
|
-
readonly name: "
|
|
494
|
-
readonly type: "
|
|
649
|
+
readonly indexed: false;
|
|
650
|
+
readonly internalType: "address";
|
|
651
|
+
readonly name: "adapter";
|
|
652
|
+
readonly type: "address";
|
|
653
|
+
}, {
|
|
654
|
+
readonly indexed: false;
|
|
655
|
+
readonly internalType: "bytes";
|
|
656
|
+
readonly name: "data";
|
|
657
|
+
readonly type: "bytes";
|
|
495
658
|
}];
|
|
496
659
|
readonly name: "LiquidationInitiated";
|
|
497
660
|
readonly type: "event";
|
|
@@ -515,6 +678,21 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
515
678
|
}];
|
|
516
679
|
readonly name: "LiquidationParametersUpdated";
|
|
517
680
|
readonly type: "event";
|
|
681
|
+
}, {
|
|
682
|
+
readonly anonymous: false;
|
|
683
|
+
readonly inputs: readonly [{
|
|
684
|
+
readonly indexed: true;
|
|
685
|
+
readonly internalType: "address";
|
|
686
|
+
readonly name: "oldLiquidationProxy";
|
|
687
|
+
readonly type: "address";
|
|
688
|
+
}, {
|
|
689
|
+
readonly indexed: true;
|
|
690
|
+
readonly internalType: "address";
|
|
691
|
+
readonly name: "newLiquidationProxy";
|
|
692
|
+
readonly type: "address";
|
|
693
|
+
}];
|
|
694
|
+
readonly name: "LiquidationProxyUpdated";
|
|
695
|
+
readonly type: "event";
|
|
518
696
|
}, {
|
|
519
697
|
readonly anonymous: false;
|
|
520
698
|
readonly inputs: readonly [{
|
|
@@ -595,6 +773,26 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
595
773
|
}];
|
|
596
774
|
readonly name: "OwnershipTransferred";
|
|
597
775
|
readonly type: "event";
|
|
776
|
+
}, {
|
|
777
|
+
readonly anonymous: false;
|
|
778
|
+
readonly inputs: readonly [{
|
|
779
|
+
readonly indexed: false;
|
|
780
|
+
readonly internalType: "enum ILendingPool.OwnerParameter";
|
|
781
|
+
readonly name: "parameter";
|
|
782
|
+
readonly type: "uint8";
|
|
783
|
+
}, {
|
|
784
|
+
readonly indexed: false;
|
|
785
|
+
readonly internalType: "uint256";
|
|
786
|
+
readonly name: "oldalue";
|
|
787
|
+
readonly type: "uint256";
|
|
788
|
+
}, {
|
|
789
|
+
readonly indexed: false;
|
|
790
|
+
readonly internalType: "uint256";
|
|
791
|
+
readonly name: "newValue";
|
|
792
|
+
readonly type: "uint256";
|
|
793
|
+
}];
|
|
794
|
+
readonly name: "ParameterChanged";
|
|
795
|
+
readonly type: "event";
|
|
598
796
|
}, {
|
|
599
797
|
readonly anonymous: false;
|
|
600
798
|
readonly inputs: readonly [{
|
|
@@ -794,76 +992,181 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
794
992
|
readonly anonymous: false;
|
|
795
993
|
readonly inputs: readonly [{
|
|
796
994
|
readonly indexed: true;
|
|
797
|
-
readonly internalType: "
|
|
798
|
-
readonly name: "
|
|
799
|
-
readonly type: "
|
|
995
|
+
readonly internalType: "bytes32";
|
|
996
|
+
readonly name: "role";
|
|
997
|
+
readonly type: "bytes32";
|
|
800
998
|
}, {
|
|
801
999
|
readonly indexed: true;
|
|
802
|
-
readonly internalType: "
|
|
803
|
-
readonly name: "
|
|
804
|
-
readonly type: "
|
|
1000
|
+
readonly internalType: "bytes32";
|
|
1001
|
+
readonly name: "previousAdminRole";
|
|
1002
|
+
readonly type: "bytes32";
|
|
1003
|
+
}, {
|
|
1004
|
+
readonly indexed: true;
|
|
1005
|
+
readonly internalType: "bytes32";
|
|
1006
|
+
readonly name: "newAdminRole";
|
|
1007
|
+
readonly type: "bytes32";
|
|
805
1008
|
}];
|
|
806
|
-
readonly name: "
|
|
1009
|
+
readonly name: "RoleAdminChanged";
|
|
807
1010
|
readonly type: "event";
|
|
808
1011
|
}, {
|
|
809
1012
|
readonly anonymous: false;
|
|
810
1013
|
readonly inputs: readonly [{
|
|
811
|
-
readonly indexed:
|
|
1014
|
+
readonly indexed: true;
|
|
1015
|
+
readonly internalType: "bytes32";
|
|
1016
|
+
readonly name: "role";
|
|
1017
|
+
readonly type: "bytes32";
|
|
1018
|
+
}, {
|
|
1019
|
+
readonly indexed: true;
|
|
812
1020
|
readonly internalType: "address";
|
|
813
1021
|
readonly name: "account";
|
|
814
1022
|
readonly type: "address";
|
|
1023
|
+
}, {
|
|
1024
|
+
readonly indexed: true;
|
|
1025
|
+
readonly internalType: "address";
|
|
1026
|
+
readonly name: "sender";
|
|
1027
|
+
readonly type: "address";
|
|
815
1028
|
}];
|
|
816
|
-
readonly name: "
|
|
817
|
-
readonly type: "event";
|
|
818
|
-
}, {
|
|
819
|
-
readonly anonymous: false;
|
|
820
|
-
readonly inputs: readonly [{
|
|
821
|
-
readonly indexed: false;
|
|
822
|
-
readonly internalType: "uint256";
|
|
823
|
-
readonly name: "amount";
|
|
824
|
-
readonly type: "uint256";
|
|
825
|
-
}];
|
|
826
|
-
readonly name: "VaultRewardsClaimed";
|
|
1029
|
+
readonly name: "RoleGranted";
|
|
827
1030
|
readonly type: "event";
|
|
828
1031
|
}, {
|
|
829
1032
|
readonly anonymous: false;
|
|
830
1033
|
readonly inputs: readonly [{
|
|
1034
|
+
readonly indexed: true;
|
|
1035
|
+
readonly internalType: "bytes32";
|
|
1036
|
+
readonly name: "role";
|
|
1037
|
+
readonly type: "bytes32";
|
|
1038
|
+
}, {
|
|
831
1039
|
readonly indexed: true;
|
|
832
1040
|
readonly internalType: "address";
|
|
833
|
-
readonly name: "
|
|
1041
|
+
readonly name: "account";
|
|
834
1042
|
readonly type: "address";
|
|
835
1043
|
}, {
|
|
836
1044
|
readonly indexed: true;
|
|
837
1045
|
readonly internalType: "address";
|
|
838
|
-
readonly name: "
|
|
1046
|
+
readonly name: "sender";
|
|
839
1047
|
readonly type: "address";
|
|
840
1048
|
}];
|
|
841
|
-
readonly name: "
|
|
1049
|
+
readonly name: "RoleRevoked";
|
|
842
1050
|
readonly type: "event";
|
|
843
1051
|
}, {
|
|
844
1052
|
readonly anonymous: false;
|
|
845
1053
|
readonly inputs: readonly [{
|
|
846
1054
|
readonly indexed: true;
|
|
847
1055
|
readonly internalType: "address";
|
|
848
|
-
readonly name: "
|
|
1056
|
+
readonly name: "oldStabilityPool";
|
|
1057
|
+
readonly type: "address";
|
|
1058
|
+
}, {
|
|
1059
|
+
readonly indexed: true;
|
|
1060
|
+
readonly internalType: "address";
|
|
1061
|
+
readonly name: "newStabilityPool";
|
|
849
1062
|
readonly type: "address";
|
|
850
1063
|
}];
|
|
851
|
-
readonly name: "
|
|
1064
|
+
readonly name: "StabilityPoolUpdated";
|
|
852
1065
|
readonly type: "event";
|
|
853
1066
|
}, {
|
|
854
1067
|
readonly anonymous: false;
|
|
855
1068
|
readonly inputs: readonly [{
|
|
856
|
-
readonly indexed: true;
|
|
857
|
-
readonly internalType: "address";
|
|
858
|
-
readonly name: "user";
|
|
859
|
-
readonly type: "address";
|
|
860
|
-
}, {
|
|
861
1069
|
readonly indexed: false;
|
|
862
1070
|
readonly internalType: "uint256";
|
|
863
|
-
readonly name: "
|
|
1071
|
+
readonly name: "oldalue";
|
|
864
1072
|
readonly type: "uint256";
|
|
865
|
-
}
|
|
866
|
-
|
|
1073
|
+
}, {
|
|
1074
|
+
readonly indexed: false;
|
|
1075
|
+
readonly internalType: "uint256";
|
|
1076
|
+
readonly name: "newValue";
|
|
1077
|
+
readonly type: "uint256";
|
|
1078
|
+
}];
|
|
1079
|
+
readonly name: "SupplyCapUpdated";
|
|
1080
|
+
readonly type: "event";
|
|
1081
|
+
}, {
|
|
1082
|
+
readonly anonymous: false;
|
|
1083
|
+
readonly inputs: readonly [{
|
|
1084
|
+
readonly indexed: false;
|
|
1085
|
+
readonly internalType: "address";
|
|
1086
|
+
readonly name: "account";
|
|
1087
|
+
readonly type: "address";
|
|
1088
|
+
}];
|
|
1089
|
+
readonly name: "Unpaused";
|
|
1090
|
+
readonly type: "event";
|
|
1091
|
+
}, {
|
|
1092
|
+
readonly anonymous: false;
|
|
1093
|
+
readonly inputs: readonly [{
|
|
1094
|
+
readonly indexed: false;
|
|
1095
|
+
readonly internalType: "address";
|
|
1096
|
+
readonly name: "user";
|
|
1097
|
+
readonly type: "address";
|
|
1098
|
+
}, {
|
|
1099
|
+
readonly indexed: false;
|
|
1100
|
+
readonly internalType: "uint256";
|
|
1101
|
+
readonly name: "fee";
|
|
1102
|
+
readonly type: "uint256";
|
|
1103
|
+
}];
|
|
1104
|
+
readonly name: "VaultOpeningFeePaid";
|
|
1105
|
+
readonly type: "event";
|
|
1106
|
+
}, {
|
|
1107
|
+
readonly anonymous: false;
|
|
1108
|
+
readonly inputs: readonly [{
|
|
1109
|
+
readonly indexed: false;
|
|
1110
|
+
readonly internalType: "uint256";
|
|
1111
|
+
readonly name: "oldalue";
|
|
1112
|
+
readonly type: "uint256";
|
|
1113
|
+
}, {
|
|
1114
|
+
readonly indexed: false;
|
|
1115
|
+
readonly internalType: "uint256";
|
|
1116
|
+
readonly name: "newValue";
|
|
1117
|
+
readonly type: "uint256";
|
|
1118
|
+
}];
|
|
1119
|
+
readonly name: "VaultOpeningFeeUpdated";
|
|
1120
|
+
readonly type: "event";
|
|
1121
|
+
}, {
|
|
1122
|
+
readonly anonymous: false;
|
|
1123
|
+
readonly inputs: readonly [{
|
|
1124
|
+
readonly indexed: false;
|
|
1125
|
+
readonly internalType: "uint256";
|
|
1126
|
+
readonly name: "amount";
|
|
1127
|
+
readonly type: "uint256";
|
|
1128
|
+
}];
|
|
1129
|
+
readonly name: "VaultRewardsClaimed";
|
|
1130
|
+
readonly type: "event";
|
|
1131
|
+
}, {
|
|
1132
|
+
readonly anonymous: false;
|
|
1133
|
+
readonly inputs: readonly [{
|
|
1134
|
+
readonly indexed: true;
|
|
1135
|
+
readonly internalType: "address";
|
|
1136
|
+
readonly name: "oldVault";
|
|
1137
|
+
readonly type: "address";
|
|
1138
|
+
}, {
|
|
1139
|
+
readonly indexed: true;
|
|
1140
|
+
readonly internalType: "address";
|
|
1141
|
+
readonly name: "newVault";
|
|
1142
|
+
readonly type: "address";
|
|
1143
|
+
}];
|
|
1144
|
+
readonly name: "VaultUpdated";
|
|
1145
|
+
readonly type: "event";
|
|
1146
|
+
}, {
|
|
1147
|
+
readonly anonymous: false;
|
|
1148
|
+
readonly inputs: readonly [{
|
|
1149
|
+
readonly indexed: true;
|
|
1150
|
+
readonly internalType: "address";
|
|
1151
|
+
readonly name: "vault";
|
|
1152
|
+
readonly type: "address";
|
|
1153
|
+
}];
|
|
1154
|
+
readonly name: "VaultWithdrawalFailed";
|
|
1155
|
+
readonly type: "event";
|
|
1156
|
+
}, {
|
|
1157
|
+
readonly anonymous: false;
|
|
1158
|
+
readonly inputs: readonly [{
|
|
1159
|
+
readonly indexed: true;
|
|
1160
|
+
readonly internalType: "address";
|
|
1161
|
+
readonly name: "user";
|
|
1162
|
+
readonly type: "address";
|
|
1163
|
+
}, {
|
|
1164
|
+
readonly indexed: false;
|
|
1165
|
+
readonly internalType: "uint256";
|
|
1166
|
+
readonly name: "amount";
|
|
1167
|
+
readonly type: "uint256";
|
|
1168
|
+
}];
|
|
1169
|
+
readonly name: "Withdraw";
|
|
867
1170
|
readonly type: "event";
|
|
868
1171
|
}, {
|
|
869
1172
|
readonly anonymous: false;
|
|
@@ -885,6 +1188,66 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
885
1188
|
}];
|
|
886
1189
|
readonly name: "Withdraw";
|
|
887
1190
|
readonly type: "event";
|
|
1191
|
+
}, {
|
|
1192
|
+
readonly anonymous: false;
|
|
1193
|
+
readonly inputs: readonly [{
|
|
1194
|
+
readonly indexed: true;
|
|
1195
|
+
readonly internalType: "address";
|
|
1196
|
+
readonly name: "user";
|
|
1197
|
+
readonly type: "address";
|
|
1198
|
+
}];
|
|
1199
|
+
readonly name: "WithdrawCancelled";
|
|
1200
|
+
readonly type: "event";
|
|
1201
|
+
}, {
|
|
1202
|
+
readonly anonymous: false;
|
|
1203
|
+
readonly inputs: readonly [{
|
|
1204
|
+
readonly indexed: false;
|
|
1205
|
+
readonly internalType: "uint256";
|
|
1206
|
+
readonly name: "oldWithdrawalFee";
|
|
1207
|
+
readonly type: "uint256";
|
|
1208
|
+
}, {
|
|
1209
|
+
readonly indexed: false;
|
|
1210
|
+
readonly internalType: "uint256";
|
|
1211
|
+
readonly name: "newWithdrawalFee";
|
|
1212
|
+
readonly type: "uint256";
|
|
1213
|
+
}];
|
|
1214
|
+
readonly name: "WithdrawFeeUpdated";
|
|
1215
|
+
readonly type: "event";
|
|
1216
|
+
}, {
|
|
1217
|
+
readonly anonymous: false;
|
|
1218
|
+
readonly inputs: readonly [{
|
|
1219
|
+
readonly indexed: true;
|
|
1220
|
+
readonly internalType: "address";
|
|
1221
|
+
readonly name: "user";
|
|
1222
|
+
readonly type: "address";
|
|
1223
|
+
}, {
|
|
1224
|
+
readonly indexed: false;
|
|
1225
|
+
readonly internalType: "uint256";
|
|
1226
|
+
readonly name: "amount";
|
|
1227
|
+
readonly type: "uint256";
|
|
1228
|
+
}, {
|
|
1229
|
+
readonly indexed: false;
|
|
1230
|
+
readonly internalType: "uint256";
|
|
1231
|
+
readonly name: "readyAt";
|
|
1232
|
+
readonly type: "uint256";
|
|
1233
|
+
}];
|
|
1234
|
+
readonly name: "WithdrawQueued";
|
|
1235
|
+
readonly type: "event";
|
|
1236
|
+
}, {
|
|
1237
|
+
readonly anonymous: false;
|
|
1238
|
+
readonly inputs: readonly [{
|
|
1239
|
+
readonly indexed: false;
|
|
1240
|
+
readonly internalType: "uint256";
|
|
1241
|
+
readonly name: "oldValue";
|
|
1242
|
+
readonly type: "uint256";
|
|
1243
|
+
}, {
|
|
1244
|
+
readonly indexed: false;
|
|
1245
|
+
readonly internalType: "uint256";
|
|
1246
|
+
readonly name: "newValue";
|
|
1247
|
+
readonly type: "uint256";
|
|
1248
|
+
}];
|
|
1249
|
+
readonly name: "WithdrawTimelockDurationUpdated";
|
|
1250
|
+
readonly type: "event";
|
|
888
1251
|
}, {
|
|
889
1252
|
readonly anonymous: false;
|
|
890
1253
|
readonly inputs: readonly [{
|
|
@@ -925,11 +1288,59 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
925
1288
|
}];
|
|
926
1289
|
readonly stateMutability: "view";
|
|
927
1290
|
readonly type: "function";
|
|
1291
|
+
}, {
|
|
1292
|
+
readonly inputs: readonly [];
|
|
1293
|
+
readonly name: "DEFAULT_ADMIN_ROLE";
|
|
1294
|
+
readonly outputs: readonly [{
|
|
1295
|
+
readonly internalType: "bytes32";
|
|
1296
|
+
readonly name: "";
|
|
1297
|
+
readonly type: "bytes32";
|
|
1298
|
+
}];
|
|
1299
|
+
readonly stateMutability: "view";
|
|
1300
|
+
readonly type: "function";
|
|
1301
|
+
}, {
|
|
1302
|
+
readonly inputs: readonly [];
|
|
1303
|
+
readonly name: "GOVERNANCE_ROLE";
|
|
1304
|
+
readonly outputs: readonly [{
|
|
1305
|
+
readonly internalType: "bytes32";
|
|
1306
|
+
readonly name: "";
|
|
1307
|
+
readonly type: "bytes32";
|
|
1308
|
+
}];
|
|
1309
|
+
readonly stateMutability: "view";
|
|
1310
|
+
readonly type: "function";
|
|
1311
|
+
}, {
|
|
1312
|
+
readonly inputs: readonly [];
|
|
1313
|
+
readonly name: "PROTOCOL_ROLE";
|
|
1314
|
+
readonly outputs: readonly [{
|
|
1315
|
+
readonly internalType: "bytes32";
|
|
1316
|
+
readonly name: "";
|
|
1317
|
+
readonly type: "bytes32";
|
|
1318
|
+
}];
|
|
1319
|
+
readonly stateMutability: "view";
|
|
1320
|
+
readonly type: "function";
|
|
928
1321
|
}, {
|
|
929
1322
|
readonly inputs: readonly [{
|
|
930
1323
|
readonly internalType: "uint256";
|
|
931
|
-
readonly name: "
|
|
1324
|
+
readonly name: "";
|
|
932
1325
|
readonly type: "uint256";
|
|
1326
|
+
}];
|
|
1327
|
+
readonly name: "adapters";
|
|
1328
|
+
readonly outputs: readonly [{
|
|
1329
|
+
readonly internalType: "address";
|
|
1330
|
+
readonly name: "";
|
|
1331
|
+
readonly type: "address";
|
|
1332
|
+
}];
|
|
1333
|
+
readonly stateMutability: "view";
|
|
1334
|
+
readonly type: "function";
|
|
1335
|
+
}, {
|
|
1336
|
+
readonly inputs: readonly [{
|
|
1337
|
+
readonly internalType: "address";
|
|
1338
|
+
readonly name: "adapter";
|
|
1339
|
+
readonly type: "address";
|
|
1340
|
+
}, {
|
|
1341
|
+
readonly internalType: "bytes";
|
|
1342
|
+
readonly name: "data";
|
|
1343
|
+
readonly type: "bytes";
|
|
933
1344
|
}, {
|
|
934
1345
|
readonly internalType: "uint256";
|
|
935
1346
|
readonly name: "amount";
|
|
@@ -941,9 +1352,13 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
941
1352
|
readonly type: "function";
|
|
942
1353
|
}, {
|
|
943
1354
|
readonly inputs: readonly [{
|
|
944
|
-
readonly internalType: "
|
|
945
|
-
readonly name: "
|
|
946
|
-
readonly type: "
|
|
1355
|
+
readonly internalType: "address";
|
|
1356
|
+
readonly name: "adapter";
|
|
1357
|
+
readonly type: "address";
|
|
1358
|
+
}, {
|
|
1359
|
+
readonly internalType: "bytes";
|
|
1360
|
+
readonly name: "data";
|
|
1361
|
+
readonly type: "bytes";
|
|
947
1362
|
}, {
|
|
948
1363
|
readonly internalType: "uint256";
|
|
949
1364
|
readonly name: "amount";
|
|
@@ -956,12 +1371,16 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
956
1371
|
}, {
|
|
957
1372
|
readonly inputs: readonly [{
|
|
958
1373
|
readonly internalType: "address";
|
|
959
|
-
readonly name: "
|
|
1374
|
+
readonly name: "adapter";
|
|
960
1375
|
readonly type: "address";
|
|
961
1376
|
}, {
|
|
962
|
-
readonly internalType: "
|
|
963
|
-
readonly name: "
|
|
964
|
-
readonly type: "
|
|
1377
|
+
readonly internalType: "address";
|
|
1378
|
+
readonly name: "user";
|
|
1379
|
+
readonly type: "address";
|
|
1380
|
+
}, {
|
|
1381
|
+
readonly internalType: "bytes";
|
|
1382
|
+
readonly name: "data";
|
|
1383
|
+
readonly type: "bytes";
|
|
965
1384
|
}];
|
|
966
1385
|
readonly name: "calculateHealthFactor";
|
|
967
1386
|
readonly outputs: readonly [{
|
|
@@ -973,13 +1392,17 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
973
1392
|
readonly type: "function";
|
|
974
1393
|
}, {
|
|
975
1394
|
readonly inputs: readonly [{
|
|
1395
|
+
readonly internalType: "address";
|
|
1396
|
+
readonly name: "adapter";
|
|
1397
|
+
readonly type: "address";
|
|
1398
|
+
}, {
|
|
976
1399
|
readonly internalType: "address";
|
|
977
1400
|
readonly name: "user";
|
|
978
1401
|
readonly type: "address";
|
|
979
1402
|
}, {
|
|
980
|
-
readonly internalType: "
|
|
981
|
-
readonly name: "
|
|
982
|
-
readonly type: "
|
|
1403
|
+
readonly internalType: "bytes";
|
|
1404
|
+
readonly name: "data";
|
|
1405
|
+
readonly type: "bytes";
|
|
983
1406
|
}, {
|
|
984
1407
|
readonly internalType: "uint256";
|
|
985
1408
|
readonly name: "amount";
|
|
@@ -993,16 +1416,6 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
993
1416
|
}];
|
|
994
1417
|
readonly stateMutability: "view";
|
|
995
1418
|
readonly type: "function";
|
|
996
|
-
}, {
|
|
997
|
-
readonly inputs: readonly [];
|
|
998
|
-
readonly name: "canPaybackDebt";
|
|
999
|
-
readonly outputs: readonly [{
|
|
1000
|
-
readonly internalType: "bool";
|
|
1001
|
-
readonly name: "";
|
|
1002
|
-
readonly type: "bool";
|
|
1003
|
-
}];
|
|
1004
|
-
readonly stateMutability: "view";
|
|
1005
|
-
readonly type: "function";
|
|
1006
1419
|
}, {
|
|
1007
1420
|
readonly inputs: readonly [];
|
|
1008
1421
|
readonly name: "claimCollectorRewards";
|
|
@@ -1025,9 +1438,13 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1025
1438
|
readonly type: "function";
|
|
1026
1439
|
}, {
|
|
1027
1440
|
readonly inputs: readonly [{
|
|
1028
|
-
readonly internalType: "
|
|
1029
|
-
readonly name: "
|
|
1030
|
-
readonly type: "
|
|
1441
|
+
readonly internalType: "address";
|
|
1442
|
+
readonly name: "adapter";
|
|
1443
|
+
readonly type: "address";
|
|
1444
|
+
}, {
|
|
1445
|
+
readonly internalType: "bytes";
|
|
1446
|
+
readonly name: "data";
|
|
1447
|
+
readonly type: "bytes";
|
|
1031
1448
|
}];
|
|
1032
1449
|
readonly name: "closeLiquidation";
|
|
1033
1450
|
readonly outputs: readonly [];
|
|
@@ -1035,9 +1452,9 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1035
1452
|
readonly type: "function";
|
|
1036
1453
|
}, {
|
|
1037
1454
|
readonly inputs: readonly [];
|
|
1038
|
-
readonly name: "
|
|
1455
|
+
readonly name: "complianceRegistry";
|
|
1039
1456
|
readonly outputs: readonly [{
|
|
1040
|
-
readonly internalType: "contract
|
|
1457
|
+
readonly internalType: "contract IComplianceRegistry";
|
|
1041
1458
|
readonly name: "";
|
|
1042
1459
|
readonly type: "address";
|
|
1043
1460
|
}];
|
|
@@ -1055,11 +1472,15 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1055
1472
|
readonly type: "function";
|
|
1056
1473
|
}, {
|
|
1057
1474
|
readonly inputs: readonly [{
|
|
1058
|
-
readonly internalType: "
|
|
1059
|
-
readonly name: "
|
|
1060
|
-
readonly type: "
|
|
1475
|
+
readonly internalType: "address";
|
|
1476
|
+
readonly name: "adapter";
|
|
1477
|
+
readonly type: "address";
|
|
1478
|
+
}, {
|
|
1479
|
+
readonly internalType: "bytes";
|
|
1480
|
+
readonly name: "data";
|
|
1481
|
+
readonly type: "bytes";
|
|
1061
1482
|
}];
|
|
1062
|
-
readonly name: "
|
|
1483
|
+
readonly name: "depositAsset";
|
|
1063
1484
|
readonly outputs: readonly [];
|
|
1064
1485
|
readonly stateMutability: "nonpayable";
|
|
1065
1486
|
readonly type: "function";
|
|
@@ -1086,84 +1507,46 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1086
1507
|
}, {
|
|
1087
1508
|
readonly inputs: readonly [{
|
|
1088
1509
|
readonly internalType: "address";
|
|
1089
|
-
readonly name: "
|
|
1510
|
+
readonly name: "adapter";
|
|
1090
1511
|
readonly type: "address";
|
|
1091
1512
|
}, {
|
|
1092
|
-
readonly internalType: "
|
|
1093
|
-
readonly name: "
|
|
1094
|
-
readonly type: "
|
|
1513
|
+
readonly internalType: "address";
|
|
1514
|
+
readonly name: "user";
|
|
1515
|
+
readonly type: "address";
|
|
1516
|
+
}, {
|
|
1517
|
+
readonly internalType: "bytes";
|
|
1518
|
+
readonly name: "data";
|
|
1519
|
+
readonly type: "bytes";
|
|
1095
1520
|
}];
|
|
1096
1521
|
readonly name: "finalizeLiquidation";
|
|
1097
1522
|
readonly outputs: readonly [];
|
|
1098
1523
|
readonly stateMutability: "nonpayable";
|
|
1099
1524
|
readonly type: "function";
|
|
1100
1525
|
}, {
|
|
1101
|
-
readonly inputs: readonly [
|
|
1102
|
-
|
|
1103
|
-
readonly name: "userAddress";
|
|
1104
|
-
readonly type: "address";
|
|
1105
|
-
}];
|
|
1106
|
-
readonly name: "getAllUserData";
|
|
1526
|
+
readonly inputs: readonly [];
|
|
1527
|
+
readonly name: "getAdapters";
|
|
1107
1528
|
readonly outputs: readonly [{
|
|
1108
|
-
readonly
|
|
1109
|
-
readonly internalType: "uint256[]";
|
|
1110
|
-
readonly name: "nftTokenIds";
|
|
1111
|
-
readonly type: "uint256[]";
|
|
1112
|
-
}, {
|
|
1113
|
-
readonly internalType: "uint256";
|
|
1114
|
-
readonly name: "scaledDebtBalance";
|
|
1115
|
-
readonly type: "uint256";
|
|
1116
|
-
}, {
|
|
1117
|
-
readonly internalType: "uint256";
|
|
1118
|
-
readonly name: "collateralValue";
|
|
1119
|
-
readonly type: "uint256";
|
|
1120
|
-
}, {
|
|
1121
|
-
readonly components: readonly [{
|
|
1122
|
-
readonly internalType: "uint256";
|
|
1123
|
-
readonly name: "rawDebtBalance";
|
|
1124
|
-
readonly type: "uint256";
|
|
1125
|
-
}, {
|
|
1126
|
-
readonly internalType: "uint256";
|
|
1127
|
-
readonly name: "scaledDebtBalance";
|
|
1128
|
-
readonly type: "uint256";
|
|
1129
|
-
}, {
|
|
1130
|
-
readonly internalType: "uint256";
|
|
1131
|
-
readonly name: "healthFactor";
|
|
1132
|
-
readonly type: "uint256";
|
|
1133
|
-
}, {
|
|
1134
|
-
readonly internalType: "bool";
|
|
1135
|
-
readonly name: "isUnderLiquidation";
|
|
1136
|
-
readonly type: "bool";
|
|
1137
|
-
}, {
|
|
1138
|
-
readonly internalType: "uint256";
|
|
1139
|
-
readonly name: "liquidationStartTime";
|
|
1140
|
-
readonly type: "uint256";
|
|
1141
|
-
}, {
|
|
1142
|
-
readonly internalType: "uint256";
|
|
1143
|
-
readonly name: "positionIndex";
|
|
1144
|
-
readonly type: "uint256";
|
|
1145
|
-
}, {
|
|
1146
|
-
readonly internalType: "bool";
|
|
1147
|
-
readonly name: "isInsured";
|
|
1148
|
-
readonly type: "bool";
|
|
1149
|
-
}];
|
|
1150
|
-
readonly internalType: "struct ILendingPool.NFTPositionView[]";
|
|
1151
|
-
readonly name: "positions";
|
|
1152
|
-
readonly type: "tuple[]";
|
|
1153
|
-
}];
|
|
1154
|
-
readonly internalType: "struct ILendingPool.UserDataView";
|
|
1529
|
+
readonly internalType: "address[]";
|
|
1155
1530
|
readonly name: "";
|
|
1156
|
-
readonly type: "
|
|
1531
|
+
readonly type: "address[]";
|
|
1157
1532
|
}];
|
|
1158
1533
|
readonly stateMutability: "view";
|
|
1159
1534
|
readonly type: "function";
|
|
1160
1535
|
}, {
|
|
1161
1536
|
readonly inputs: readonly [{
|
|
1537
|
+
readonly internalType: "address";
|
|
1538
|
+
readonly name: "adapter";
|
|
1539
|
+
readonly type: "address";
|
|
1540
|
+
}, {
|
|
1162
1541
|
readonly internalType: "address";
|
|
1163
1542
|
readonly name: "user";
|
|
1164
1543
|
readonly type: "address";
|
|
1544
|
+
}, {
|
|
1545
|
+
readonly internalType: "bytes";
|
|
1546
|
+
readonly name: "data";
|
|
1547
|
+
readonly type: "bytes";
|
|
1165
1548
|
}];
|
|
1166
|
-
readonly name: "
|
|
1549
|
+
readonly name: "getAssetValue";
|
|
1167
1550
|
readonly outputs: readonly [{
|
|
1168
1551
|
readonly internalType: "uint256";
|
|
1169
1552
|
readonly name: "";
|
|
@@ -1173,11 +1556,11 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1173
1556
|
readonly type: "function";
|
|
1174
1557
|
}, {
|
|
1175
1558
|
readonly inputs: readonly [{
|
|
1176
|
-
readonly internalType: "
|
|
1177
|
-
readonly name: "
|
|
1178
|
-
readonly type: "
|
|
1559
|
+
readonly internalType: "address";
|
|
1560
|
+
readonly name: "user";
|
|
1561
|
+
readonly type: "address";
|
|
1179
1562
|
}];
|
|
1180
|
-
readonly name: "
|
|
1563
|
+
readonly name: "getEligibleUserDeposits";
|
|
1181
1564
|
readonly outputs: readonly [{
|
|
1182
1565
|
readonly internalType: "uint256";
|
|
1183
1566
|
readonly name: "";
|
|
@@ -1221,13 +1604,17 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1221
1604
|
readonly type: "function";
|
|
1222
1605
|
}, {
|
|
1223
1606
|
readonly inputs: readonly [{
|
|
1607
|
+
readonly internalType: "address";
|
|
1608
|
+
readonly name: "adapter";
|
|
1609
|
+
readonly type: "address";
|
|
1610
|
+
}, {
|
|
1224
1611
|
readonly internalType: "address";
|
|
1225
1612
|
readonly name: "user";
|
|
1226
1613
|
readonly type: "address";
|
|
1227
1614
|
}, {
|
|
1228
|
-
readonly internalType: "
|
|
1229
|
-
readonly name: "
|
|
1230
|
-
readonly type: "
|
|
1615
|
+
readonly internalType: "bytes";
|
|
1616
|
+
readonly name: "data";
|
|
1617
|
+
readonly type: "bytes";
|
|
1231
1618
|
}];
|
|
1232
1619
|
readonly name: "getPosition";
|
|
1233
1620
|
readonly outputs: readonly [{
|
|
@@ -1256,7 +1643,7 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1256
1643
|
readonly name: "rawInsuredBalance";
|
|
1257
1644
|
readonly type: "uint256";
|
|
1258
1645
|
}];
|
|
1259
|
-
readonly internalType: "struct
|
|
1646
|
+
readonly internalType: "struct ILendingPoolStorage.CollateralPosition";
|
|
1260
1647
|
readonly name: "";
|
|
1261
1648
|
readonly type: "tuple";
|
|
1262
1649
|
}];
|
|
@@ -1264,13 +1651,17 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1264
1651
|
readonly type: "function";
|
|
1265
1652
|
}, {
|
|
1266
1653
|
readonly inputs: readonly [{
|
|
1654
|
+
readonly internalType: "address";
|
|
1655
|
+
readonly name: "adapter";
|
|
1656
|
+
readonly type: "address";
|
|
1657
|
+
}, {
|
|
1267
1658
|
readonly internalType: "address";
|
|
1268
1659
|
readonly name: "user";
|
|
1269
1660
|
readonly type: "address";
|
|
1270
1661
|
}, {
|
|
1271
|
-
readonly internalType: "
|
|
1272
|
-
readonly name: "
|
|
1273
|
-
readonly type: "
|
|
1662
|
+
readonly internalType: "bytes";
|
|
1663
|
+
readonly name: "data";
|
|
1664
|
+
readonly type: "bytes";
|
|
1274
1665
|
}];
|
|
1275
1666
|
readonly name: "getPositionData";
|
|
1276
1667
|
readonly outputs: readonly [{
|
|
@@ -1287,12 +1678,16 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1287
1678
|
}, {
|
|
1288
1679
|
readonly inputs: readonly [{
|
|
1289
1680
|
readonly internalType: "address";
|
|
1290
|
-
readonly name: "
|
|
1681
|
+
readonly name: "adapter";
|
|
1291
1682
|
readonly type: "address";
|
|
1292
1683
|
}, {
|
|
1293
|
-
readonly internalType: "
|
|
1294
|
-
readonly name: "
|
|
1295
|
-
readonly type: "
|
|
1684
|
+
readonly internalType: "address";
|
|
1685
|
+
readonly name: "user";
|
|
1686
|
+
readonly type: "address";
|
|
1687
|
+
}, {
|
|
1688
|
+
readonly internalType: "bytes";
|
|
1689
|
+
readonly name: "data";
|
|
1690
|
+
readonly type: "bytes";
|
|
1296
1691
|
}];
|
|
1297
1692
|
readonly name: "getPositionDebt";
|
|
1298
1693
|
readonly outputs: readonly [{
|
|
@@ -1305,12 +1700,16 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1305
1700
|
}, {
|
|
1306
1701
|
readonly inputs: readonly [{
|
|
1307
1702
|
readonly internalType: "address";
|
|
1308
|
-
readonly name: "
|
|
1703
|
+
readonly name: "adapter";
|
|
1309
1704
|
readonly type: "address";
|
|
1310
1705
|
}, {
|
|
1311
|
-
readonly internalType: "
|
|
1312
|
-
readonly name: "
|
|
1313
|
-
readonly type: "
|
|
1706
|
+
readonly internalType: "address";
|
|
1707
|
+
readonly name: "user";
|
|
1708
|
+
readonly type: "address";
|
|
1709
|
+
}, {
|
|
1710
|
+
readonly internalType: "bytes";
|
|
1711
|
+
readonly name: "data";
|
|
1712
|
+
readonly type: "bytes";
|
|
1314
1713
|
}];
|
|
1315
1714
|
readonly name: "getPositionScaledDebt";
|
|
1316
1715
|
readonly outputs: readonly [{
|
|
@@ -1322,13 +1721,17 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1322
1721
|
readonly type: "function";
|
|
1323
1722
|
}, {
|
|
1324
1723
|
readonly inputs: readonly [{
|
|
1724
|
+
readonly internalType: "address";
|
|
1725
|
+
readonly name: "adapter";
|
|
1726
|
+
readonly type: "address";
|
|
1727
|
+
}, {
|
|
1325
1728
|
readonly internalType: "address";
|
|
1326
1729
|
readonly name: "user";
|
|
1327
1730
|
readonly type: "address";
|
|
1328
1731
|
}, {
|
|
1329
|
-
readonly internalType: "
|
|
1330
|
-
readonly name: "
|
|
1331
|
-
readonly type: "
|
|
1732
|
+
readonly internalType: "bytes";
|
|
1733
|
+
readonly name: "data";
|
|
1734
|
+
readonly type: "bytes";
|
|
1332
1735
|
}];
|
|
1333
1736
|
readonly name: "getPositionView";
|
|
1334
1737
|
readonly outputs: readonly [{
|
|
@@ -1360,8 +1763,16 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1360
1763
|
readonly internalType: "bool";
|
|
1361
1764
|
readonly name: "isInsured";
|
|
1362
1765
|
readonly type: "bool";
|
|
1766
|
+
}, {
|
|
1767
|
+
readonly internalType: "address";
|
|
1768
|
+
readonly name: "adapter";
|
|
1769
|
+
readonly type: "address";
|
|
1770
|
+
}, {
|
|
1771
|
+
readonly internalType: "address";
|
|
1772
|
+
readonly name: "asset";
|
|
1773
|
+
readonly type: "address";
|
|
1363
1774
|
}];
|
|
1364
|
-
readonly internalType: "struct
|
|
1775
|
+
readonly internalType: "struct ILendingPoolStorage.CollateralPositionView";
|
|
1365
1776
|
readonly name: "";
|
|
1366
1777
|
readonly type: "tuple";
|
|
1367
1778
|
}];
|
|
@@ -1370,7 +1781,7 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1370
1781
|
}, {
|
|
1371
1782
|
readonly inputs: readonly [{
|
|
1372
1783
|
readonly internalType: "address";
|
|
1373
|
-
readonly name: "
|
|
1784
|
+
readonly name: "user";
|
|
1374
1785
|
readonly type: "address";
|
|
1375
1786
|
}];
|
|
1376
1787
|
readonly name: "getPositionsScaledDebt";
|
|
@@ -1391,16 +1802,6 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1391
1802
|
}];
|
|
1392
1803
|
readonly stateMutability: "view";
|
|
1393
1804
|
readonly type: "function";
|
|
1394
|
-
}, {
|
|
1395
|
-
readonly inputs: readonly [];
|
|
1396
|
-
readonly name: "getRAACNFTAddress";
|
|
1397
|
-
readonly outputs: readonly [{
|
|
1398
|
-
readonly internalType: "address";
|
|
1399
|
-
readonly name: "";
|
|
1400
|
-
readonly type: "address";
|
|
1401
|
-
}];
|
|
1402
|
-
readonly stateMutability: "view";
|
|
1403
|
-
readonly type: "function";
|
|
1404
1805
|
}, {
|
|
1405
1806
|
readonly inputs: readonly [];
|
|
1406
1807
|
readonly name: "getReserveRateData";
|
|
@@ -1487,6 +1888,20 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1487
1888
|
}];
|
|
1488
1889
|
readonly stateMutability: "view";
|
|
1489
1890
|
readonly type: "function";
|
|
1891
|
+
}, {
|
|
1892
|
+
readonly inputs: readonly [{
|
|
1893
|
+
readonly internalType: "bytes32";
|
|
1894
|
+
readonly name: "role";
|
|
1895
|
+
readonly type: "bytes32";
|
|
1896
|
+
}];
|
|
1897
|
+
readonly name: "getRoleAdmin";
|
|
1898
|
+
readonly outputs: readonly [{
|
|
1899
|
+
readonly internalType: "bytes32";
|
|
1900
|
+
readonly name: "";
|
|
1901
|
+
readonly type: "bytes32";
|
|
1902
|
+
}];
|
|
1903
|
+
readonly stateMutability: "view";
|
|
1904
|
+
readonly type: "function";
|
|
1490
1905
|
}, {
|
|
1491
1906
|
readonly inputs: readonly [];
|
|
1492
1907
|
readonly name: "getUnclaimedVaultRewards";
|
|
@@ -1499,13 +1914,17 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1499
1914
|
readonly type: "function";
|
|
1500
1915
|
}, {
|
|
1501
1916
|
readonly inputs: readonly [{
|
|
1917
|
+
readonly internalType: "address";
|
|
1918
|
+
readonly name: "adapter";
|
|
1919
|
+
readonly type: "address";
|
|
1920
|
+
}, {
|
|
1502
1921
|
readonly internalType: "address";
|
|
1503
1922
|
readonly name: "user";
|
|
1504
1923
|
readonly type: "address";
|
|
1505
1924
|
}, {
|
|
1506
|
-
readonly internalType: "
|
|
1507
|
-
readonly name: "
|
|
1508
|
-
readonly type: "
|
|
1925
|
+
readonly internalType: "bytes";
|
|
1926
|
+
readonly name: "data";
|
|
1927
|
+
readonly type: "bytes";
|
|
1509
1928
|
}];
|
|
1510
1929
|
readonly name: "getUninsuredBalance";
|
|
1511
1930
|
readonly outputs: readonly [{
|
|
@@ -1518,13 +1937,13 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1518
1937
|
}, {
|
|
1519
1938
|
readonly inputs: readonly [{
|
|
1520
1939
|
readonly internalType: "address";
|
|
1521
|
-
readonly name: "
|
|
1940
|
+
readonly name: "user";
|
|
1522
1941
|
readonly type: "address";
|
|
1523
1942
|
}];
|
|
1524
1943
|
readonly name: "getUserCollateralValue";
|
|
1525
1944
|
readonly outputs: readonly [{
|
|
1526
1945
|
readonly internalType: "uint256";
|
|
1527
|
-
readonly name: "";
|
|
1946
|
+
readonly name: "totalValue";
|
|
1528
1947
|
readonly type: "uint256";
|
|
1529
1948
|
}];
|
|
1530
1949
|
readonly stateMutability: "view";
|
|
@@ -1532,13 +1951,13 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1532
1951
|
}, {
|
|
1533
1952
|
readonly inputs: readonly [{
|
|
1534
1953
|
readonly internalType: "address";
|
|
1535
|
-
readonly name: "
|
|
1954
|
+
readonly name: "user";
|
|
1536
1955
|
readonly type: "address";
|
|
1537
1956
|
}];
|
|
1538
1957
|
readonly name: "getUserDebt";
|
|
1539
1958
|
readonly outputs: readonly [{
|
|
1540
1959
|
readonly internalType: "uint256";
|
|
1541
|
-
readonly name: "";
|
|
1960
|
+
readonly name: "totalDebt";
|
|
1542
1961
|
readonly type: "uint256";
|
|
1543
1962
|
}];
|
|
1544
1963
|
readonly stateMutability: "view";
|
|
@@ -1573,79 +1992,61 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1573
1992
|
readonly type: "function";
|
|
1574
1993
|
}, {
|
|
1575
1994
|
readonly inputs: readonly [{
|
|
1576
|
-
readonly internalType: "
|
|
1577
|
-
readonly name: "
|
|
1578
|
-
readonly type: "
|
|
1579
|
-
}
|
|
1580
|
-
readonly name: "getUserOfDepositedNFT";
|
|
1581
|
-
readonly outputs: readonly [{
|
|
1582
|
-
readonly internalType: "address";
|
|
1583
|
-
readonly name: "";
|
|
1584
|
-
readonly type: "address";
|
|
1585
|
-
}];
|
|
1586
|
-
readonly stateMutability: "view";
|
|
1587
|
-
readonly type: "function";
|
|
1588
|
-
}, {
|
|
1589
|
-
readonly inputs: readonly [];
|
|
1590
|
-
readonly name: "healthFactorLiquidationThreshold";
|
|
1591
|
-
readonly outputs: readonly [{
|
|
1592
|
-
readonly internalType: "uint256";
|
|
1593
|
-
readonly name: "";
|
|
1594
|
-
readonly type: "uint256";
|
|
1595
|
-
}];
|
|
1596
|
-
readonly stateMutability: "view";
|
|
1597
|
-
readonly type: "function";
|
|
1598
|
-
}, {
|
|
1599
|
-
readonly inputs: readonly [{
|
|
1995
|
+
readonly internalType: "bytes32";
|
|
1996
|
+
readonly name: "role";
|
|
1997
|
+
readonly type: "bytes32";
|
|
1998
|
+
}, {
|
|
1600
1999
|
readonly internalType: "address";
|
|
1601
|
-
readonly name: "
|
|
2000
|
+
readonly name: "account";
|
|
1602
2001
|
readonly type: "address";
|
|
1603
|
-
}, {
|
|
1604
|
-
readonly internalType: "uint256";
|
|
1605
|
-
readonly name: "tokenId";
|
|
1606
|
-
readonly type: "uint256";
|
|
1607
2002
|
}];
|
|
1608
|
-
readonly name: "
|
|
2003
|
+
readonly name: "grantRole";
|
|
1609
2004
|
readonly outputs: readonly [];
|
|
1610
2005
|
readonly stateMutability: "nonpayable";
|
|
1611
2006
|
readonly type: "function";
|
|
1612
2007
|
}, {
|
|
1613
|
-
readonly inputs: readonly [
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
readonly
|
|
1617
|
-
|
|
1618
|
-
readonly
|
|
2008
|
+
readonly inputs: readonly [{
|
|
2009
|
+
readonly internalType: "bytes32";
|
|
2010
|
+
readonly name: "role";
|
|
2011
|
+
readonly type: "bytes32";
|
|
2012
|
+
}, {
|
|
2013
|
+
readonly internalType: "address";
|
|
2014
|
+
readonly name: "account";
|
|
2015
|
+
readonly type: "address";
|
|
1619
2016
|
}];
|
|
1620
|
-
readonly
|
|
1621
|
-
readonly type: "function";
|
|
1622
|
-
}, {
|
|
1623
|
-
readonly inputs: readonly [];
|
|
1624
|
-
readonly name: "liquidationGracePeriod";
|
|
2017
|
+
readonly name: "hasRole";
|
|
1625
2018
|
readonly outputs: readonly [{
|
|
1626
|
-
readonly internalType: "
|
|
2019
|
+
readonly internalType: "bool";
|
|
1627
2020
|
readonly name: "";
|
|
1628
|
-
readonly type: "
|
|
2021
|
+
readonly type: "bool";
|
|
1629
2022
|
}];
|
|
1630
2023
|
readonly stateMutability: "view";
|
|
1631
2024
|
readonly type: "function";
|
|
1632
2025
|
}, {
|
|
1633
|
-
readonly inputs: readonly [
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
readonly
|
|
1637
|
-
|
|
1638
|
-
readonly
|
|
2026
|
+
readonly inputs: readonly [{
|
|
2027
|
+
readonly internalType: "address";
|
|
2028
|
+
readonly name: "adapter";
|
|
2029
|
+
readonly type: "address";
|
|
2030
|
+
}, {
|
|
2031
|
+
readonly internalType: "address";
|
|
2032
|
+
readonly name: "user";
|
|
2033
|
+
readonly type: "address";
|
|
2034
|
+
}, {
|
|
2035
|
+
readonly internalType: "bytes";
|
|
2036
|
+
readonly name: "data";
|
|
2037
|
+
readonly type: "bytes";
|
|
1639
2038
|
}];
|
|
1640
|
-
readonly
|
|
2039
|
+
readonly name: "initiateLiquidation";
|
|
2040
|
+
readonly outputs: readonly [];
|
|
2041
|
+
readonly stateMutability: "nonpayable";
|
|
1641
2042
|
readonly type: "function";
|
|
1642
2043
|
}, {
|
|
1643
2044
|
readonly inputs: readonly [];
|
|
1644
|
-
readonly name: "
|
|
2045
|
+
readonly name: "liquidationProxy";
|
|
1645
2046
|
readonly outputs: readonly [{
|
|
1646
|
-
readonly internalType: "
|
|
2047
|
+
readonly internalType: "address";
|
|
1647
2048
|
readonly name: "";
|
|
1648
|
-
readonly type: "
|
|
2049
|
+
readonly type: "address";
|
|
1649
2050
|
}];
|
|
1650
2051
|
readonly stateMutability: "view";
|
|
1651
2052
|
readonly type: "function";
|
|
@@ -1675,6 +2076,12 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1675
2076
|
}];
|
|
1676
2077
|
readonly stateMutability: "nonpayable";
|
|
1677
2078
|
readonly type: "function";
|
|
2079
|
+
}, {
|
|
2080
|
+
readonly inputs: readonly [];
|
|
2081
|
+
readonly name: "openVaultPosition";
|
|
2082
|
+
readonly outputs: readonly [];
|
|
2083
|
+
readonly stateMutability: "nonpayable";
|
|
2084
|
+
readonly type: "function";
|
|
1678
2085
|
}, {
|
|
1679
2086
|
readonly inputs: readonly [];
|
|
1680
2087
|
readonly name: "owner";
|
|
@@ -1685,6 +2092,60 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1685
2092
|
}];
|
|
1686
2093
|
readonly stateMutability: "view";
|
|
1687
2094
|
readonly type: "function";
|
|
2095
|
+
}, {
|
|
2096
|
+
readonly inputs: readonly [];
|
|
2097
|
+
readonly name: "parameters";
|
|
2098
|
+
readonly outputs: readonly [{
|
|
2099
|
+
readonly internalType: "bool";
|
|
2100
|
+
readonly name: "canPaybackDebt";
|
|
2101
|
+
readonly type: "bool";
|
|
2102
|
+
}, {
|
|
2103
|
+
readonly internalType: "bool";
|
|
2104
|
+
readonly name: "withdrawalsPaused";
|
|
2105
|
+
readonly type: "bool";
|
|
2106
|
+
}, {
|
|
2107
|
+
readonly internalType: "uint256";
|
|
2108
|
+
readonly name: "liquidationThreshold";
|
|
2109
|
+
readonly type: "uint256";
|
|
2110
|
+
}, {
|
|
2111
|
+
readonly internalType: "uint256";
|
|
2112
|
+
readonly name: "healthFactorLiquidationThreshold";
|
|
2113
|
+
readonly type: "uint256";
|
|
2114
|
+
}, {
|
|
2115
|
+
readonly internalType: "uint256";
|
|
2116
|
+
readonly name: "liquidationGracePeriod";
|
|
2117
|
+
readonly type: "uint256";
|
|
2118
|
+
}, {
|
|
2119
|
+
readonly internalType: "uint256";
|
|
2120
|
+
readonly name: "insuranceFee";
|
|
2121
|
+
readonly type: "uint256";
|
|
2122
|
+
}, {
|
|
2123
|
+
readonly internalType: "uint256";
|
|
2124
|
+
readonly name: "depositFee";
|
|
2125
|
+
readonly type: "uint256";
|
|
2126
|
+
}, {
|
|
2127
|
+
readonly internalType: "uint256";
|
|
2128
|
+
readonly name: "liquidityBufferRatio";
|
|
2129
|
+
readonly type: "uint256";
|
|
2130
|
+
}, {
|
|
2131
|
+
readonly internalType: "uint256";
|
|
2132
|
+
readonly name: "supplyCap";
|
|
2133
|
+
readonly type: "uint256";
|
|
2134
|
+
}, {
|
|
2135
|
+
readonly internalType: "uint256";
|
|
2136
|
+
readonly name: "borrowCap";
|
|
2137
|
+
readonly type: "uint256";
|
|
2138
|
+
}, {
|
|
2139
|
+
readonly internalType: "uint256";
|
|
2140
|
+
readonly name: "withdrawTimelockDuration";
|
|
2141
|
+
readonly type: "uint256";
|
|
2142
|
+
}, {
|
|
2143
|
+
readonly internalType: "uint256";
|
|
2144
|
+
readonly name: "vaultOpeningFee";
|
|
2145
|
+
readonly type: "uint256";
|
|
2146
|
+
}];
|
|
2147
|
+
readonly stateMutability: "view";
|
|
2148
|
+
readonly type: "function";
|
|
1688
2149
|
}, {
|
|
1689
2150
|
readonly inputs: readonly [];
|
|
1690
2151
|
readonly name: "pause";
|
|
@@ -1707,9 +2168,9 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1707
2168
|
readonly name: "";
|
|
1708
2169
|
readonly type: "address";
|
|
1709
2170
|
}, {
|
|
1710
|
-
readonly internalType: "
|
|
2171
|
+
readonly internalType: "bytes32";
|
|
1711
2172
|
readonly name: "";
|
|
1712
|
-
readonly type: "
|
|
2173
|
+
readonly type: "bytes32";
|
|
1713
2174
|
}];
|
|
1714
2175
|
readonly name: "positions";
|
|
1715
2176
|
readonly outputs: readonly [{
|
|
@@ -1739,16 +2200,6 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1739
2200
|
}];
|
|
1740
2201
|
readonly stateMutability: "view";
|
|
1741
2202
|
readonly type: "function";
|
|
1742
|
-
}, {
|
|
1743
|
-
readonly inputs: readonly [];
|
|
1744
|
-
readonly name: "priceOracle";
|
|
1745
|
-
readonly outputs: readonly [{
|
|
1746
|
-
readonly internalType: "contract IRAACHousePrices";
|
|
1747
|
-
readonly name: "";
|
|
1748
|
-
readonly type: "address";
|
|
1749
|
-
}];
|
|
1750
|
-
readonly stateMutability: "view";
|
|
1751
|
-
readonly type: "function";
|
|
1752
2203
|
}, {
|
|
1753
2204
|
readonly inputs: readonly [];
|
|
1754
2205
|
readonly name: "primeRateOracle";
|
|
@@ -1759,26 +2210,6 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1759
2210
|
}];
|
|
1760
2211
|
readonly stateMutability: "view";
|
|
1761
2212
|
readonly type: "function";
|
|
1762
|
-
}, {
|
|
1763
|
-
readonly inputs: readonly [];
|
|
1764
|
-
readonly name: "rToken";
|
|
1765
|
-
readonly outputs: readonly [{
|
|
1766
|
-
readonly internalType: "contract IRToken";
|
|
1767
|
-
readonly name: "";
|
|
1768
|
-
readonly type: "address";
|
|
1769
|
-
}];
|
|
1770
|
-
readonly stateMutability: "view";
|
|
1771
|
-
readonly type: "function";
|
|
1772
|
-
}, {
|
|
1773
|
-
readonly inputs: readonly [];
|
|
1774
|
-
readonly name: "raacNFT";
|
|
1775
|
-
readonly outputs: readonly [{
|
|
1776
|
-
readonly internalType: "contract IRAACNFT";
|
|
1777
|
-
readonly name: "";
|
|
1778
|
-
readonly type: "address";
|
|
1779
|
-
}];
|
|
1780
|
-
readonly stateMutability: "view";
|
|
1781
|
-
readonly type: "function";
|
|
1782
2213
|
}, {
|
|
1783
2214
|
readonly inputs: readonly [];
|
|
1784
2215
|
readonly name: "rateData";
|
|
@@ -1817,6 +2248,16 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1817
2248
|
}];
|
|
1818
2249
|
readonly stateMutability: "view";
|
|
1819
2250
|
readonly type: "function";
|
|
2251
|
+
}, {
|
|
2252
|
+
readonly inputs: readonly [{
|
|
2253
|
+
readonly internalType: "address";
|
|
2254
|
+
readonly name: "adapter";
|
|
2255
|
+
readonly type: "address";
|
|
2256
|
+
}];
|
|
2257
|
+
readonly name: "registerAdapter";
|
|
2258
|
+
readonly outputs: readonly [];
|
|
2259
|
+
readonly stateMutability: "nonpayable";
|
|
2260
|
+
readonly type: "function";
|
|
1820
2261
|
}, {
|
|
1821
2262
|
readonly inputs: readonly [];
|
|
1822
2263
|
readonly name: "renounceOwnership";
|
|
@@ -1825,9 +2266,27 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1825
2266
|
readonly type: "function";
|
|
1826
2267
|
}, {
|
|
1827
2268
|
readonly inputs: readonly [{
|
|
1828
|
-
readonly internalType: "
|
|
1829
|
-
readonly name: "
|
|
1830
|
-
readonly type: "
|
|
2269
|
+
readonly internalType: "bytes32";
|
|
2270
|
+
readonly name: "role";
|
|
2271
|
+
readonly type: "bytes32";
|
|
2272
|
+
}, {
|
|
2273
|
+
readonly internalType: "address";
|
|
2274
|
+
readonly name: "callerConfirmation";
|
|
2275
|
+
readonly type: "address";
|
|
2276
|
+
}];
|
|
2277
|
+
readonly name: "renounceRole";
|
|
2278
|
+
readonly outputs: readonly [];
|
|
2279
|
+
readonly stateMutability: "nonpayable";
|
|
2280
|
+
readonly type: "function";
|
|
2281
|
+
}, {
|
|
2282
|
+
readonly inputs: readonly [{
|
|
2283
|
+
readonly internalType: "address";
|
|
2284
|
+
readonly name: "adapter";
|
|
2285
|
+
readonly type: "address";
|
|
2286
|
+
}, {
|
|
2287
|
+
readonly internalType: "bytes";
|
|
2288
|
+
readonly name: "data";
|
|
2289
|
+
readonly type: "bytes";
|
|
1831
2290
|
}, {
|
|
1832
2291
|
readonly internalType: "uint256";
|
|
1833
2292
|
readonly name: "amount";
|
|
@@ -1839,9 +2298,13 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1839
2298
|
readonly type: "function";
|
|
1840
2299
|
}, {
|
|
1841
2300
|
readonly inputs: readonly [{
|
|
1842
|
-
readonly internalType: "
|
|
1843
|
-
readonly name: "
|
|
1844
|
-
readonly type: "
|
|
2301
|
+
readonly internalType: "address";
|
|
2302
|
+
readonly name: "adapter";
|
|
2303
|
+
readonly type: "address";
|
|
2304
|
+
}, {
|
|
2305
|
+
readonly internalType: "bytes";
|
|
2306
|
+
readonly name: "data";
|
|
2307
|
+
readonly type: "bytes";
|
|
1845
2308
|
}, {
|
|
1846
2309
|
readonly internalType: "uint256";
|
|
1847
2310
|
readonly name: "amount";
|
|
@@ -1855,6 +2318,16 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1855
2318
|
readonly outputs: readonly [];
|
|
1856
2319
|
readonly stateMutability: "nonpayable";
|
|
1857
2320
|
readonly type: "function";
|
|
2321
|
+
}, {
|
|
2322
|
+
readonly inputs: readonly [{
|
|
2323
|
+
readonly internalType: "uint256";
|
|
2324
|
+
readonly name: "amount";
|
|
2325
|
+
readonly type: "uint256";
|
|
2326
|
+
}];
|
|
2327
|
+
readonly name: "requestWithdraw";
|
|
2328
|
+
readonly outputs: readonly [];
|
|
2329
|
+
readonly stateMutability: "nonpayable";
|
|
2330
|
+
readonly type: "function";
|
|
1858
2331
|
}, {
|
|
1859
2332
|
readonly inputs: readonly [{
|
|
1860
2333
|
readonly internalType: "address";
|
|
@@ -1912,14 +2385,18 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1912
2385
|
readonly stateMutability: "view";
|
|
1913
2386
|
readonly type: "function";
|
|
1914
2387
|
}, {
|
|
1915
|
-
readonly inputs: readonly [
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
readonly
|
|
1919
|
-
|
|
2388
|
+
readonly inputs: readonly [{
|
|
2389
|
+
readonly internalType: "bytes32";
|
|
2390
|
+
readonly name: "role";
|
|
2391
|
+
readonly type: "bytes32";
|
|
2392
|
+
}, {
|
|
2393
|
+
readonly internalType: "address";
|
|
2394
|
+
readonly name: "account";
|
|
1920
2395
|
readonly type: "address";
|
|
1921
2396
|
}];
|
|
1922
|
-
readonly
|
|
2397
|
+
readonly name: "revokeRole";
|
|
2398
|
+
readonly outputs: readonly [];
|
|
2399
|
+
readonly stateMutability: "nonpayable";
|
|
1923
2400
|
readonly type: "function";
|
|
1924
2401
|
}, {
|
|
1925
2402
|
readonly inputs: readonly [];
|
|
@@ -1949,6 +2426,16 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
1949
2426
|
readonly outputs: readonly [];
|
|
1950
2427
|
readonly stateMutability: "nonpayable";
|
|
1951
2428
|
readonly type: "function";
|
|
2429
|
+
}, {
|
|
2430
|
+
readonly inputs: readonly [{
|
|
2431
|
+
readonly internalType: "address";
|
|
2432
|
+
readonly name: "_liquidationProxy";
|
|
2433
|
+
readonly type: "address";
|
|
2434
|
+
}];
|
|
2435
|
+
readonly name: "setLiquidationProxy";
|
|
2436
|
+
readonly outputs: readonly [];
|
|
2437
|
+
readonly stateMutability: "nonpayable";
|
|
2438
|
+
readonly type: "function";
|
|
1952
2439
|
}, {
|
|
1953
2440
|
readonly inputs: readonly [{
|
|
1954
2441
|
readonly internalType: "enum ILendingPool.OwnerParameter";
|
|
@@ -2023,6 +2510,48 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
2023
2510
|
}];
|
|
2024
2511
|
readonly stateMutability: "view";
|
|
2025
2512
|
readonly type: "function";
|
|
2513
|
+
}, {
|
|
2514
|
+
readonly inputs: readonly [{
|
|
2515
|
+
readonly internalType: "address";
|
|
2516
|
+
readonly name: "adapter";
|
|
2517
|
+
readonly type: "address";
|
|
2518
|
+
}];
|
|
2519
|
+
readonly name: "supportedAdapter";
|
|
2520
|
+
readonly outputs: readonly [{
|
|
2521
|
+
readonly internalType: "bool";
|
|
2522
|
+
readonly name: "";
|
|
2523
|
+
readonly type: "bool";
|
|
2524
|
+
}];
|
|
2525
|
+
readonly stateMutability: "view";
|
|
2526
|
+
readonly type: "function";
|
|
2527
|
+
}, {
|
|
2528
|
+
readonly inputs: readonly [{
|
|
2529
|
+
readonly internalType: "address";
|
|
2530
|
+
readonly name: "";
|
|
2531
|
+
readonly type: "address";
|
|
2532
|
+
}];
|
|
2533
|
+
readonly name: "supportedAdapters";
|
|
2534
|
+
readonly outputs: readonly [{
|
|
2535
|
+
readonly internalType: "bool";
|
|
2536
|
+
readonly name: "";
|
|
2537
|
+
readonly type: "bool";
|
|
2538
|
+
}];
|
|
2539
|
+
readonly stateMutability: "view";
|
|
2540
|
+
readonly type: "function";
|
|
2541
|
+
}, {
|
|
2542
|
+
readonly inputs: readonly [{
|
|
2543
|
+
readonly internalType: "bytes4";
|
|
2544
|
+
readonly name: "interfaceId";
|
|
2545
|
+
readonly type: "bytes4";
|
|
2546
|
+
}];
|
|
2547
|
+
readonly name: "supportsInterface";
|
|
2548
|
+
readonly outputs: readonly [{
|
|
2549
|
+
readonly internalType: "bool";
|
|
2550
|
+
readonly name: "";
|
|
2551
|
+
readonly type: "bool";
|
|
2552
|
+
}];
|
|
2553
|
+
readonly stateMutability: "view";
|
|
2554
|
+
readonly type: "function";
|
|
2026
2555
|
}, {
|
|
2027
2556
|
readonly inputs: readonly [{
|
|
2028
2557
|
readonly internalType: "address";
|
|
@@ -2053,6 +2582,16 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
2053
2582
|
readonly outputs: readonly [];
|
|
2054
2583
|
readonly stateMutability: "nonpayable";
|
|
2055
2584
|
readonly type: "function";
|
|
2585
|
+
}, {
|
|
2586
|
+
readonly inputs: readonly [{
|
|
2587
|
+
readonly internalType: "address";
|
|
2588
|
+
readonly name: "adapter";
|
|
2589
|
+
readonly type: "address";
|
|
2590
|
+
}];
|
|
2591
|
+
readonly name: "unregisterAdapter";
|
|
2592
|
+
readonly outputs: readonly [];
|
|
2593
|
+
readonly stateMutability: "nonpayable";
|
|
2594
|
+
readonly type: "function";
|
|
2056
2595
|
}, {
|
|
2057
2596
|
readonly inputs: readonly [];
|
|
2058
2597
|
readonly name: "updateState";
|
|
@@ -2093,6 +2632,30 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
2093
2632
|
}];
|
|
2094
2633
|
readonly stateMutability: "view";
|
|
2095
2634
|
readonly type: "function";
|
|
2635
|
+
}, {
|
|
2636
|
+
readonly inputs: readonly [{
|
|
2637
|
+
readonly internalType: "address";
|
|
2638
|
+
readonly name: "";
|
|
2639
|
+
readonly type: "address";
|
|
2640
|
+
}];
|
|
2641
|
+
readonly name: "vaultOpened";
|
|
2642
|
+
readonly outputs: readonly [{
|
|
2643
|
+
readonly internalType: "bool";
|
|
2644
|
+
readonly name: "";
|
|
2645
|
+
readonly type: "bool";
|
|
2646
|
+
}];
|
|
2647
|
+
readonly stateMutability: "view";
|
|
2648
|
+
readonly type: "function";
|
|
2649
|
+
}, {
|
|
2650
|
+
readonly inputs: readonly [];
|
|
2651
|
+
readonly name: "vaultProxy";
|
|
2652
|
+
readonly outputs: readonly [{
|
|
2653
|
+
readonly internalType: "address";
|
|
2654
|
+
readonly name: "";
|
|
2655
|
+
readonly type: "address";
|
|
2656
|
+
}];
|
|
2657
|
+
readonly stateMutability: "view";
|
|
2658
|
+
readonly type: "function";
|
|
2096
2659
|
}, {
|
|
2097
2660
|
readonly inputs: readonly [];
|
|
2098
2661
|
readonly name: "vaultRewards";
|
|
@@ -2135,21 +2698,33 @@ export declare class LendingPool__factory extends ContractFactory {
|
|
|
2135
2698
|
readonly type: "function";
|
|
2136
2699
|
}, {
|
|
2137
2700
|
readonly inputs: readonly [{
|
|
2138
|
-
readonly internalType: "
|
|
2139
|
-
readonly name: "
|
|
2140
|
-
readonly type: "
|
|
2701
|
+
readonly internalType: "address";
|
|
2702
|
+
readonly name: "adapter";
|
|
2703
|
+
readonly type: "address";
|
|
2704
|
+
}, {
|
|
2705
|
+
readonly internalType: "bytes";
|
|
2706
|
+
readonly name: "data";
|
|
2707
|
+
readonly type: "bytes";
|
|
2141
2708
|
}];
|
|
2142
|
-
readonly name: "
|
|
2709
|
+
readonly name: "withdrawAsset";
|
|
2143
2710
|
readonly outputs: readonly [];
|
|
2144
2711
|
readonly stateMutability: "nonpayable";
|
|
2145
2712
|
readonly type: "function";
|
|
2146
2713
|
}, {
|
|
2147
|
-
readonly inputs: readonly [
|
|
2148
|
-
|
|
2149
|
-
readonly outputs: readonly [{
|
|
2150
|
-
readonly internalType: "bool";
|
|
2714
|
+
readonly inputs: readonly [{
|
|
2715
|
+
readonly internalType: "address";
|
|
2151
2716
|
readonly name: "";
|
|
2152
|
-
readonly type: "
|
|
2717
|
+
readonly type: "address";
|
|
2718
|
+
}];
|
|
2719
|
+
readonly name: "withdrawTimelock";
|
|
2720
|
+
readonly outputs: readonly [{
|
|
2721
|
+
readonly internalType: "uint256";
|
|
2722
|
+
readonly name: "amount";
|
|
2723
|
+
readonly type: "uint256";
|
|
2724
|
+
}, {
|
|
2725
|
+
readonly internalType: "uint256";
|
|
2726
|
+
readonly name: "readyAt";
|
|
2727
|
+
readonly type: "uint256";
|
|
2153
2728
|
}];
|
|
2154
2729
|
readonly stateMutability: "view";
|
|
2155
2730
|
readonly type: "function";
|