@raac/rpc 1.0.1 → 1.0.2-beta.2
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 +61 -8
- package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +1743 -0
- package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +175 -67
- package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +279 -0
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +1231 -195
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +153 -199
- package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +72 -2
- package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +2 -2
- package/dist/artifacts/core/tokens/IndexToken.sol/IndexToken.json +770 -0
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +707 -49
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +23 -84
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +62 -62
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +2 -2
- package/dist/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +774 -0
- package/dist/artifacts/zeno/Auction.sol/Auction.json +34 -114
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +3 -3
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +3 -3
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +3 -3
- package/dist/configs/chains/11155111.json +132 -0
- package/dist/configs/chains/17000.json +127 -0
- package/dist/configs/chains/8453.json +26 -14
- package/dist/configs/chains/index.js +4 -0
- package/dist/configs/createConfig.js +6 -0
- package/dist/contracts/feeCollector/claimRewardFromPool.js +24 -0
- package/dist/contracts/housePrices/getLatestPrice.js +1 -1
- package/dist/contracts/indexToken/getNextRandomNFT.js +30 -0
- package/dist/contracts/indexToken/redeemNFT.js +39 -0
- package/dist/methods/commons/estimateGasPrice.js +7 -2
- package/dist/nfts/getAllTokens.js +34 -0
- package/dist/nfts/{addNewBatch.js → getBaseUri.js} +7 -8
- package/dist/nfts/getMintFeePercentage.js +23 -0
- package/dist/nfts/getMintPrice.js +28 -0
- package/dist/nfts/getTokenURI.js +23 -0
- package/dist/nfts/getTokensByOwner.js +35 -0
- package/dist/nfts/getTotalPropertiesCount.js +23 -0
- package/dist/nfts/{getCurrentBatchSize.js → totalNFTSupply.js} +3 -3
- package/dist/pools/lendingPool/borrowFromLendingPool.js +4 -3
- package/dist/pools/lendingPool/borrowFromLendingPoolWithInsurance.js +40 -0
- package/dist/pools/lendingPool/calculateInsuranceFee.js +20 -0
- package/dist/pools/lendingPool/claimReward.js +22 -0
- package/dist/pools/lendingPool/closeLiquidation.js +28 -0
- package/dist/pools/lendingPool/depositNFTToLendingPool.js +0 -1
- package/dist/pools/lendingPool/depositToLendingPool.js +2 -2
- package/dist/pools/lendingPool/getAllUserData.js +28 -0
- package/dist/pools/lendingPool/getEligibleUserDeposits.js +27 -0
- package/dist/pools/lendingPool/getHealthFactor.js +27 -0
- package/dist/pools/lendingPool/getLendingPoolInfo.js +8 -5
- package/dist/pools/lendingPool/getPendingReward.js +20 -0
- package/dist/pools/lendingPool/getPositionDebt.js +27 -0
- package/dist/pools/lendingPool/getPositionScaledDebt.js +27 -0
- package/dist/pools/lendingPool/getPositionView.js +38 -0
- package/dist/pools/lendingPool/getPositionsScaledDebt.js +27 -0
- package/dist/pools/lendingPool/getRawUserDepositsInLendingPool.js +21 -0
- package/dist/pools/lendingPool/getUserCollateralValue.js +27 -0
- package/dist/pools/lendingPool/initializeLiquidation.js +28 -0
- package/dist/pools/lendingPool/repayToLendingPool.js +4 -8
- package/dist/pools/lendingPool/withdrawFromLendingPool.js +2 -2
- package/dist/pools/stabilityPool/depositNFTToStabilityPool.js +40 -0
- package/dist/pools/stabilityPool/getRawUserDepositsInStabilityPool.js +21 -0
- package/dist/pools/stabilityPool/getStabilityPoolInfo.js +2 -12
- package/dist/scripts/index.js +90 -35
- package/dist/types/RPCLibrary.d.ts +61 -8
- package/dist/types/configs/chains/index.d.ts +5 -1
- package/dist/types/configs/createConfig.d.ts +6 -0
- package/dist/types/configs/index.d.ts +2 -0
- package/dist/types/contracts/feeCollector/claimRewardFromPool.d.ts +4 -0
- package/dist/types/contracts/housePrices/getLatestPrice.d.ts +1 -1
- package/dist/types/contracts/indexToken/getNextRandomNFT.d.ts +7 -0
- package/dist/types/contracts/indexToken/redeemNFT.d.ts +4 -0
- package/dist/types/nfts/getAllTokens.d.ts +7 -0
- package/dist/types/nfts/getBaseUri.d.ts +4 -0
- package/dist/types/nfts/getMintFeePercentage.d.ts +4 -0
- package/dist/types/nfts/getMintPrice.d.ts +7 -0
- package/dist/types/nfts/getTokenURI.d.ts +4 -0
- package/dist/types/nfts/getTokensByOwner.d.ts +10 -0
- package/dist/types/nfts/getTotalPropertiesCount.d.ts +4 -0
- package/dist/types/nfts/totalNFTSupply.d.ts +4 -0
- package/dist/types/pools/lendingPool/borrowFromLendingPool.d.ts +1 -1
- package/dist/types/pools/lendingPool/borrowFromLendingPoolWithInsurance.d.ts +4 -0
- package/dist/types/pools/lendingPool/calculateInsuranceFee.d.ts +4 -0
- package/dist/types/pools/lendingPool/claimReward.d.ts +4 -0
- package/dist/types/pools/lendingPool/closeLiquidation.d.ts +11 -0
- package/dist/types/pools/lendingPool/getAllUserData.d.ts +16 -0
- package/dist/types/pools/lendingPool/getEligibleUserDeposits.d.ts +11 -0
- package/dist/types/pools/lendingPool/getHealthFactor.d.ts +11 -0
- package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +2 -1
- package/dist/types/pools/lendingPool/getPendingReward.d.ts +4 -0
- package/dist/types/pools/lendingPool/getPositionDebt.d.ts +11 -0
- package/dist/types/pools/lendingPool/getPositionScaledDebt.d.ts +11 -0
- package/dist/types/pools/lendingPool/getPositionView.d.ts +27 -0
- package/dist/types/pools/lendingPool/getPositionsScaledDebt.d.ts +11 -0
- package/dist/types/pools/lendingPool/getRawUserDepositsInLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/getUserCollateralValue.d.ts +11 -0
- package/dist/types/pools/lendingPool/initializeLiquidation.d.ts +11 -0
- package/dist/types/pools/lendingPool/repayToLendingPool.d.ts +2 -2
- package/dist/types/pools/lendingPool/withdrawNFTFromLendingPool.d.ts +1 -1
- package/dist/types/pools/stabilityPool/depositNFTToStabilityPool.d.ts +4 -0
- package/dist/types/pools/stabilityPool/getRawUserDepositsInStabilityPool.d.ts +4 -0
- package/dist/types/pools/stabilityPool/getStabilityPoolInfo.d.ts +1 -3
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/index.d.ts +2 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2.d.ts +35 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +3 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface.d.ts +156 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +446 -221
- package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +108 -20
- package/dist/types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +6 -16
- package/dist/types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +166 -0
- package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +811 -99
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +152 -148
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +29 -2
- package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +65 -51
- package/dist/types/typechain-types/contracts/core/tokens/IndexToken.d.ts +187 -2
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +413 -19
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +40 -40
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/IBaseCollector.d.ts +39 -0
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +317 -130
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +58 -22
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +5 -3
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +86 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +83 -45
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +539 -54
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +92 -71
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +123 -27
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IIndexToken.d.ts +187 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +243 -17
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +37 -37
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseVault.d.ts +83 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/mocks/core/collectors/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/TimelockTestTarget.d.ts +5 -1
- package/dist/types/typechain-types/contracts/mocks/core/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockVRFCoordinatorV2.d.ts +530 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +156 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +557 -102
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts +486 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts +35 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockCollectableUnderlying.d.ts +292 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/vaults/MockVault.d.ts +290 -0
- package/dist/types/typechain-types/contracts/mocks/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/MockStringUtils.d.ts +25 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2__factory.d.ts +33 -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/interfaces/VRFCoordinatorV2Interface__factory.d.ts +171 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +571 -194
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +138 -54
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +5 -31
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +231 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +897 -64
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +128 -161
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +54 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +47 -29
- package/dist/types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +317 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +525 -17
- 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 +52 -52
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IBaseCollector__factory.d.ts +33 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +409 -90
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +59 -15
- 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 +78 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +119 -39
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +547 -19
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +68 -67
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +119 -6
- package/dist/types/typechain-types/factories/{erc721a/contracts/IERC721A__factory.d.ts → contracts/interfaces/core/tokens/IIndexToken__factory.d.ts} +74 -215
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +274 -10
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +26 -26
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/{IMarketCreator__factory.d.ts → core/vaults/IBaseVault__factory.d.ts} +78 -42
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +16 -4
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +10 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/index.d.ts +1 -0
- 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 +620 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +234 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +539 -77
- 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 +795 -0
- 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/pools/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +68 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +451 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +525 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +40 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/index.d.ts +1 -0
- 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/VeRAACFuzzHelper__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/index.d.ts +0 -1
- package/dist/types/typechain-types/index.d.ts +28 -10
- package/dist/types/utils/artifacts.d.ts +677 -39
- package/dist/types/utils/contracts.d.ts +4 -0
- package/dist/utils/artifacts.js +9 -0
- package/package.json +1 -1
- package/dist/nfts/getDepositedNFTs.js +0 -19
- package/dist/nfts/getOwnedNFTs.js +0 -34
- package/dist/types/nfts/addNewBatch.d.ts +0 -4
- package/dist/types/nfts/getCurrentBatchSize.d.ts +0 -4
- package/dist/types/nfts/getDepositedNFTs.d.ts +0 -7
- package/dist/types/nfts/getOwnedNFTs.d.ts +0 -7
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/MarketCreator.d.ts +0 -274
- package/dist/types/typechain-types/contracts/interfaces/IMarketCreator.d.ts +0 -85
- package/dist/types/typechain-types/contracts/mocks/core/collectors/MockFeeCollector.d.ts +0 -708
- package/dist/types/typechain-types/erc721a/contracts/IERC721A.d.ts +0 -242
- package/dist/types/typechain-types/erc721a/contracts/index.d.ts +0 -1
- package/dist/types/typechain-types/erc721a/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/MarketCreator__factory.d.ts +0 -405
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockFeeCollector__factory.d.ts +0 -985
- package/dist/types/typechain-types/factories/erc721a/contracts/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/erc721a/index.d.ts +0 -1
|
@@ -14,7 +14,7 @@ export declare class RAACNFT__factory extends ContractFactory {
|
|
|
14
14
|
deploymentTransaction(): ContractTransactionResponse;
|
|
15
15
|
}>;
|
|
16
16
|
connect(runner: ContractRunner | null): RAACNFT__factory;
|
|
17
|
-
static readonly bytecode = "0x6003600d5560e060405260366080818152906200203d60a039600e9062000027908262000272565b503480156200003557600080fd5b50604051620020733803806200207383398101604081905262000058916200035b565b806040518060400160405280600881526020016714905050c813919560c21b8152506040518060400160405280600781526020016614905050d3919560ca1b8152508160009081620000ab919062000272565b506001620000ba828262000272565b5050506001600160a01b038116620000ec57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b620000f7816200017b565b506001600160a01b03831615806200011657506001600160a01b038216155b806200012957506001600160a01b038116155b15620001485760405163266eeb8760e11b815260040160405180910390fd5b50600b80546001600160a01b039384166001600160a01b031991821617909155600c8054929093169116179055620003a5565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001f857607f821691505b6020821081036200021957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200026d57600081815260208120601f850160051c81016020861015620002485750805b601f850160051c820191505b81811015620002695782815560010162000254565b5050505b505050565b81516001600160401b038111156200028e576200028e620001cd565b620002a6816200029f8454620001e3565b846200021f565b602080601f831160018114620002de5760008415620002c55750858301515b600019600386901b1c1916600185901b17855562000269565b600085815260208120601f198616915b828110156200030f57888601518255948401946001909101908401620002ee565b50858210156200032e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80516001600160a01b03811681146200035657600080fd5b919050565b6000806000606084860312156200037157600080fd5b6200037c846200033e565b92506200038c602085016200033e565b91506200039c604085016200033e565b90509250925092565b611c8880620003b56000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80635d81cde1116100f9578063a0bcfc7f11610097578063c87b56dd11610071578063c87b56dd14610366578063e985e9c514610379578063f2fde38b1461038c578063fc0c546a1461039f57600080fd5b8063a0bcfc7f1461032d578063a22cb46514610340578063b88d4fde1461035357600080fd5b806370a08231116100d357806370a08231146102f9578063715018a61461030c5780638da5cb5b1461031457806395d89b411461032557600080fd5b80635d81cde1146102cb5780636352211e146102de5780636c0360eb146102f157600080fd5b80631b2ef1ca11610166578063415a0eba11610140578063415a0eba1461028957806342842e0e1461029c57806344a90986146102af5780634f6ccce7146102b857600080fd5b80631b2ef1ca1461025057806323b872dd146102635780632f745c591461027657600080fd5b806301ffc9a7146101ae57806306fdde03146101d657806307fd5b95146101eb578063081812fc14610200578063095ea7b31461022b57806318160ddd1461023e575b600080fd5b6101c16101bc3660046116b0565b6103b2565b60405190151581526020015b60405180910390f35b6101de6103c3565b6040516101cd919061171d565b6101fe6101f9366004611730565b610455565b005b61021361020e366004611730565b610498565b6040516001600160a01b0390911681526020016101cd565b6101fe610239366004611765565b6104c1565b6008545b6040519081526020016101cd565b6101fe61025e36600461178f565b6104d0565b6101fe6102713660046117b1565b610614565b610242610284366004611765565b6106a4565b610242610297366004611730565b610709565b6101fe6102aa3660046117b1565b610777565b610242600d5481565b6102426102c6366004611730565b610797565b600c54610213906001600160a01b031681565b6102136102ec366004611730565b6107f0565b6101de6107fb565b6102426103073660046117ed565b610889565b6101fe6108d1565b600a546001600160a01b0316610213565b6101de6108e5565b6101fe61033b366004611894565b6108f4565b6101fe61034e3660046118eb565b610908565b6101fe610361366004611922565b610913565b6101de610374366004611730565b61092a565b6101c161038736600461199e565b610992565b6101fe61039a3660046117ed565b6109c0565b600b54610213906001600160a01b031681565b60006103bd826109fe565b92915050565b6060600080546103d2906119d1565b80601f01602080910402602001604051908101604052809291908181526020018280546103fe906119d1565b801561044b5780601f106104205761010080835404028352916020019161044b565b820191906000526020600020905b81548152906001019060200180831161042e57829003601f168201915b5050505050905090565b61045d610a23565b8060000361047e57604051635fd7adaf60e01b815260040160405180910390fd5b80600d60008282546104909190611a21565b909155505050565b60006104a382610a50565b506000828152600460205260409020546001600160a01b03166103bd565b6104cc828233610a89565b5050565b600c5460405163029f72bb60e31b8152600481018490526000916001600160a01b0316906314fb95d890602401602060405180830381865afa15801561051a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061053e9190611a34565b90508060000361056157604051630895fdef60e41b815260040160405180910390fd5b8181111561058257604051630a484e1f60e31b815260040160405180910390fd5b600b5461059a906001600160a01b0316333085610a96565b6105a43384610afd565b808211156105d45760006105b88284611a4d565b600b549091506105d2906001600160a01b03163383610b17565b505b604080518481526020810183905233917f3a8a89b59a31c39a36febecb987e0657ab7b7c73b60ebacb44dcb9886c2d5c8a910160405180910390a2505050565b6001600160a01b03821661064357604051633250574960e11b8152600060048201526024015b60405180910390fd5b6000610650838333610b48565b9050836001600160a01b0316816001600160a01b03161461069e576040516364283d7b60e01b81526001600160a01b038086166004830152602482018490528216604482015260640161063a565b50505050565b60006106af83610889565b82106106e05760405163295f44f760e21b81526001600160a01b03841660048201526024810183905260440161063a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600c5460405163029f72bb60e31b8152600481018390526000916001600160a01b0316906314fb95d890602401602060405180830381865afa158015610753573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103bd9190611a34565b61079283838360405180602001604052806000815250610913565b505050565b60006107a260085490565b82106107cb5760405163295f44f760e21b8152600060048201526024810183905260440161063a565b600882815481106107de576107de611a60565b90600052602060002001549050919050565b60006103bd82610a50565b600e8054610808906119d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610834906119d1565b80156108815780601f1061085657610100808354040283529160200191610881565b820191906000526020600020905b81548152906001019060200180831161086457829003601f168201915b505050505081565b60006001600160a01b0382166108b5576040516322718ad960e21b81526000600482015260240161063a565b506001600160a01b031660009081526003602052604090205490565b6108d9610a23565b6108e36000610b84565b565b6060600180546103d2906119d1565b6108fc610a23565b600e6104cc8282611ac4565b6104cc338383610bd6565b61091e848484610614565b61069e84848484610c75565b606061093582610a50565b506000610940610d9e565b90506000815111610960576040518060200160405280600081525061098b565b8061096a84610dad565b60405160200161097b929190611b84565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6109c8610a23565b6001600160a01b0381166109f257604051631e4fbdf760e01b81526000600482015260240161063a565b6109fb81610b84565b50565b60006001600160e01b0319821663780e9d6360e01b14806103bd57506103bd82610e40565b600a546001600160a01b031633146108e35760405163118cdaa760e01b815233600482015260240161063a565b6000818152600260205260408120546001600160a01b0316806103bd57604051637e27328960e01b81526004810184905260240161063a565b6107928383836001610e90565b6040516001600160a01b03848116602483015283811660448301526064820183905261069e9186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050610f96565b6104cc828260405180602001604052806000815250610ff9565b6040516001600160a01b0383811660248301526044820183905261079291859182169063a9059cbb90606401610acb565b60006001600160a01b038416610b715760405163266eeb8760e11b815260040160405180910390fd5b610b7c848484611010565b949350505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610c0857604051630b61174360e31b81526001600160a01b038316600482015260240161063a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383163b1561069e57604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290610cb7903390889087908790600401611bb3565b6020604051808303816000875af1925050508015610cf2575060408051601f3d908101601f19168201909252610cef91810190611be6565b60015b610d5b573d808015610d20576040519150601f19603f3d011682016040523d82523d6000602084013e610d25565b606091505b508051600003610d5357604051633250574960e11b81526001600160a01b038516600482015260240161063a565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b14610d9757604051633250574960e11b81526001600160a01b038516600482015260240161063a565b5050505050565b6060600e80546103d2906119d1565b60606000610dba836110dd565b600101905060008167ffffffffffffffff811115610dda57610dda611808565b6040519080825280601f01601f191660200182016040528015610e04576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084610e0e57509392505050565b60006001600160e01b031982166380ac58cd60e01b1480610e7157506001600160e01b03198216635b5e139f60e01b145b806103bd57506301ffc9a760e01b6001600160e01b03198316146103bd565b8080610ea457506001600160a01b03821615155b15610f66576000610eb484610a50565b90506001600160a01b03831615801590610ee05750826001600160a01b0316816001600160a01b031614155b8015610ef35750610ef18184610992565b155b15610f1c5760405163a9fbf51f60e01b81526001600160a01b038416600482015260240161063a565b8115610f645783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5050600090815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610fab6001600160a01b038416836111b5565b90508051600014158015610fd0575080806020019051810190610fce9190611c03565b155b1561079257604051635274afe760e01b81526001600160a01b038416600482015260240161063a565b61100383836111c3565b6107926000848484610c75565b60008061101e858585611228565b90506001600160a01b03811661107b5761107684600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61109e565b846001600160a01b0316816001600160a01b03161461109e5761109e8185611321565b6001600160a01b0385166110ba576110b5846113b2565b610b7c565b846001600160a01b0316816001600160a01b031614610b7c57610b7c8585611461565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061111c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611148576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061116657662386f26fc10000830492506010015b6305f5e100831061117e576305f5e100830492506008015b612710831061119257612710830492506004015b606483106111a4576064830492506002015b600a83106103bd5760010192915050565b606061098b838360006114b1565b6001600160a01b0382166111ed57604051633250574960e11b81526000600482015260240161063a565b60006111fb83836000610b48565b90506001600160a01b03811615610792576040516339e3563760e11b81526000600482015260240161063a565b6000828152600260205260408120546001600160a01b03908116908316156112555761125581848661154e565b6001600160a01b0381161561129357611272600085600080610e90565b6001600160a01b038116600090815260036020526040902080546000190190555b6001600160a01b038516156112c2576001600160a01b0385166000908152600360205260409020805460010190555b60008481526002602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b600061132c83610889565b60008381526007602052604090205490915080821461137f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906113c490600190611a4d565b600083815260096020526040812054600880549394509092849081106113ec576113ec611a60565b90600052602060002001549050806008838154811061140d5761140d611a60565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061144557611445611c20565b6001900381819060005260206000200160009055905550505050565b6000600161146e84610889565b6114789190611a4d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6060814710156114d65760405163cd78605960e01b815230600482015260240161063a565b600080856001600160a01b031684866040516114f29190611c36565b60006040518083038185875af1925050503d806000811461152f576040519150601f19603f3d011682016040523d82523d6000602084013e611534565b606091505b50915091506115448683836115b2565b9695505050505050565b61155983838361160e565b610792576001600160a01b03831661158757604051637e27328960e01b81526004810182905260240161063a565b60405163177e802f60e01b81526001600160a01b03831660048201526024810182905260440161063a565b6060826115c7576115c282611671565b61098b565b81511580156115de57506001600160a01b0384163b155b1561160757604051639996b31560e01b81526001600160a01b038516600482015260240161063a565b508061098b565b60006001600160a01b03831615801590610b7c5750826001600160a01b0316846001600160a01b0316148061164857506116488484610992565b80610b7c5750506000908152600460205260409020546001600160a01b03908116911614919050565b8051156116815780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160e01b0319811681146109fb57600080fd5b6000602082840312156116c257600080fd5b813561098b8161169a565b60005b838110156116e85781810151838201526020016116d0565b50506000910152565b600081518084526117098160208601602086016116cd565b601f01601f19169290920160200192915050565b60208152600061098b60208301846116f1565b60006020828403121561174257600080fd5b5035919050565b80356001600160a01b038116811461176057600080fd5b919050565b6000806040838503121561177857600080fd5b61178183611749565b946020939093013593505050565b600080604083850312156117a257600080fd5b50508035926020909101359150565b6000806000606084860312156117c657600080fd5b6117cf84611749565b92506117dd60208501611749565b9150604084013590509250925092565b6000602082840312156117ff57600080fd5b61098b82611749565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561183957611839611808565b604051601f8501601f19908116603f0116810190828211818310171561186157611861611808565b8160405280935085815286868601111561187a57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156118a657600080fd5b813567ffffffffffffffff8111156118bd57600080fd5b8201601f810184136118ce57600080fd5b610b7c8482356020840161181e565b80151581146109fb57600080fd5b600080604083850312156118fe57600080fd5b61190783611749565b91506020830135611917816118dd565b809150509250929050565b6000806000806080858703121561193857600080fd5b61194185611749565b935061194f60208601611749565b925060408501359150606085013567ffffffffffffffff81111561197257600080fd5b8501601f8101871361198357600080fd5b6119928782356020840161181e565b91505092959194509250565b600080604083850312156119b157600080fd5b6119ba83611749565b91506119c860208401611749565b90509250929050565b600181811c908216806119e557607f821691505b602082108103611a0557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103bd576103bd611a0b565b600060208284031215611a4657600080fd5b5051919050565b818103818111156103bd576103bd611a0b565b634e487b7160e01b600052603260045260246000fd5b601f82111561079257600081815260208120601f850160051c81016020861015611a9d5750805b601f850160051c820191505b81811015611abc57828155600101611aa9565b505050505050565b815167ffffffffffffffff811115611ade57611ade611808565b611af281611aec84546119d1565b84611a76565b602080601f831160018114611b275760008415611b0f5750858301515b600019600386901b1c1916600185901b178555611abc565b600085815260208120601f198616915b82811015611b5657888601518255948401946001909101908401611b37565b5085821015611b745787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351611b968184602088016116cd565b835190830190611baa8183602088016116cd565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611544908301846116f1565b600060208284031215611bf857600080fd5b815161098b8161169a565b600060208284031215611c1557600080fd5b815161098b816118dd565b634e487b7160e01b600052603160045260246000fd5b60008251611c488184602087016116cd565b919091019291505056fea26469706673582212202dd6bd29e973d92ec02002a808d75b89d1c382e1519425d46c1153f0cbd8d16064736f6c63430008140033697066733a2f2f516d5a7a4562546e555773354a447a724c4b513979476b316b76737a646e77644d61567739764e676a43464c6f322f";
|
|
17
|
+
static readonly bytecode = "0x6000600f8190556010556011805460ff60a01b1916905560e06040526036608081815290620030f660a039601290620000399082620003d1565b503480156200004757600080fd5b506040516200312c3803806200312c8339810160408190526200006a91620004ba565b806040518060400160405280600881526020016714905050c813919560c21b8152506040518060400160405280600781526020016614905050d3919560ca1b8152508160009081620000bd9190620003d1565b506001620000cc8282620003d1565b50506001600b55506001600160a01b0381166200010357604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6200010e8162000227565b506001600160a01b03831615806200012d57506001600160a01b038216155b806200014057506001600160a01b038116155b156200015f5760405163e6c4247b60e01b815260040160405180910390fd5b6200016c60003362000279565b50620001997fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217753362000279565b50620001c67f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec3362000279565b50620001f37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63362000279565b5050600d80546001600160a01b039384166001600160a01b031991821617909155600e805492909316911617905562000504565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000828152600a602090815260408083206001600160a01b038516845290915281205460ff1662000322576000838152600a602090815260408083206001600160a01b03861684529091529020805460ff19166001179055620002d93390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600162000326565b5060005b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200035757607f821691505b6020821081036200037857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003cc57600081815260208120601f850160051c81016020861015620003a75750805b601f850160051c820191505b81811015620003c857828155600101620003b3565b5050505b505050565b81516001600160401b03811115620003ed57620003ed6200032c565b6200040581620003fe845462000342565b846200037e565b602080601f8311600181146200043d5760008415620004245750858301515b600019600386901b1c1916600185901b178555620003c8565b600085815260208120601f198616915b828110156200046e578886015182559484019460019091019084016200044d565b50858210156200048d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80516001600160a01b0381168114620004b557600080fd5b919050565b600080600060608486031215620004d057600080fd5b620004db846200049d565b9250620004eb602085016200049d565b9150620004fb604085016200049d565b90509250925092565b612be280620005146000396000f3fe608060405234801561001057600080fd5b506004361061030c5760003560e01c8063710e5d2f1161019d578063b88d4fde116100e9578063e02023a1116100a2578063eddd0d9c1161007c578063eddd0d9c146106ba578063f0f44260146106cd578063f2fde38b146106e0578063fc0c546a146106f357600080fd5b8063e02023a11461066d578063e26c523c14610694578063e985e9c5146106a757600080fd5b8063b88d4fde146105f9578063c5969d941461060c578063c87b56dd1461061f578063d539139314610632578063d547741f14610647578063d5a162f11461065a57600080fd5b806395d89b41116101565780639ee12c89116101305780639ee12c89146105b8578063a0bcfc7f146105cb578063a217fddf146105de578063a22cb465146105e657600080fd5b806395d89b411461058a578063983b2d56146105925780639a043832146105a557600080fd5b8063710e5d2f14610522578063715018a61461053557806375b238fc1461053d5780638c0326af146105525780638da5cb5b1461056657806391d148541461057757600080fd5b806336568abe1161025c578063558e44d31161021557806361d027b3116101ef57806361d027b3146104e15780636352211e146104f45780636c0360eb1461050757806370a082311461050f57600080fd5b8063558e44d3146104b2578063559e775b146104bb5780635d81cde1146104ce57600080fd5b806336568abe1461044a5780633f1db2d91461045d57806340398d6714610466578063415a0eba1461047957806342842e0e1461048c5780634f6ccce71461049f57600080fd5b806321f314ca116102c95780632a5c792a116102a35780632a5c792a146103fc5780632f2ff15d146104115780632f745c59146104245780633092afd51461043757600080fd5b806321f314ca146103b357806323b872dd146103c6578063248a9ca3146103d957600080fd5b806301ffc9a71461031157806306fdde0314610339578063081812fc1461034e578063095ea7b31461037957806318160ddd1461038e5780631b2ef1ca146103a0575b600080fd5b61032461031f366004612408565b610706565b60405190151581526020015b60405180910390f35b610341610717565b6040516103309190612475565b61036161035c366004612488565b6107a9565b6040516001600160a01b039091168152602001610330565b61038c6103873660046124bd565b6107d2565b005b6008545b604051908152602001610330565b61038c6103ae3660046124e7565b6107e1565b61038c6103c13660046124bd565b610970565b61038c6103d4366004612509565b6109d2565b6103926103e7366004612488565b6000908152600a602052604090206001015490565b610404610a62565b6040516103309190612545565b61038c61041f366004612589565b610ae3565b6103926104323660046124bd565b610b08565b61038c6104453660046125b5565b610b6d565b61038c610458366004612589565b610b9d565b610392600f5481565b6104046104743660046125b5565b610bd0565b610392610487366004612488565b610c5d565b61038c61049a366004612509565b610ccb565b6103926104ad366004612488565b610ce6565b61039260105481565b6103926104c9366004612488565b610d3f565b600e54610361906001600160a01b031681565b601154610361906001600160a01b031681565b610361610502366004612488565b610df2565b610341610dfd565b61039261051d3660046125b5565b610e8b565b61038c610530366004612488565b610ed3565b61038c610f28565b610392600080516020612b8d83398151915281565b60115461032490600160a01b900460ff1681565b600c546001600160a01b0316610361565b610324610585366004612589565b610f3c565b610341610f67565b61038c6105a03660046125b5565b610f76565b6104046105b33660046124e7565b610fa6565b61038c6105c6366004612589565b6110a5565b61038c6105d936600461266f565b611110565b610392600081565b61038c6105f43660046126c6565b611164565b61038c6106073660046126fd565b61116f565b61032461061a366004612509565b611186565b61034161062d366004612488565b611287565b610392600080516020612b6d83398151915281565b61038c610655366004612589565b6112c1565b61038c610668366004612779565b6112e6565b6103927f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec81565b6104046106a2366004612796565b61134b565b6103246106b53660046127c9565b611451565b61038c6106c8366004612488565b61147f565b61038c6106db3660046125b5565b6114fc565b61038c6106ee3660046125b5565b611537565b600d54610361906001600160a01b031681565b600061071182611575565b92915050565b606060008054610726906127f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610752906127f3565b801561079f5780601f106107745761010080835404028352916020019161079f565b820191906000526020600020905b81548152906001019060200180831161078257829003601f168201915b5050505050905090565b60006107b48261159a565b506000828152600460205260409020546001600160a01b0316610711565b6107dd8282336115d3565b5050565b6107e96115e0565b600e5460405163029f72bb60e31b8152600481018490526000916001600160a01b0316906314fb95d890602401602060405180830381865afa158015610833573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610857919061282d565b90506000808211610869576000610884565b612710600f548361087a919061285c565b6108849190612873565b905060006108928284612895565b9050826000036108b557604051633176f6ab60e21b815260040160405180910390fd5b838111156108d6576040516308d69cfd60e31b815260040160405180910390fd5b600d546108ee906001600160a01b031633308461160a565b6108f9338685611671565b8115610963576011546001600160a01b03161561092d57601154600d5461092d916001600160a01b039182169116846116c7565b60405182815233907f11fc6332cfccc2ce93014095f0b5a5b29e6a3028f76849e8214e00c3e1c2df089060200160405180910390a25b5050506107dd6001600b55565b600080516020612b6d833981519152610988816116f8565b6109906115e0565b6001600160a01b0383166109b75760405163d92e233d60e01b815260040160405180910390fd5b6109c383836000611671565b6109cd6001600b55565b505050565b6001600160a01b038216610a0157604051633250574960e11b8152600060048201526024015b60405180910390fd5b6000610a0e838333611702565b9050836001600160a01b0316816001600160a01b031614610a5c576040516364283d7b60e01b81526001600160a01b03808616600483015260248201849052821660448201526064016109f8565b50505050565b606030639a0438326000610a7560085490565b6040516001600160e01b031960e085901b16815260048101929092526024820152604401600060405180830381865afa158015610ab6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ade91908101906128a8565b905090565b6000828152600a6020526040902060010154610afe816116f8565b610a5c8383611736565b6000610b1383610e8b565b8210610b445760405163295f44f760e21b81526001600160a01b0384166004820152602481018390526044016109f8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600080516020612b8d833981519152610b85816116f8565b6109cd600080516020612b6d833981519152836117ca565b6001600160a01b0381163314610bc65760405163334bd91960e11b815260040160405180910390fd5b6109cd82826117ca565b60603063e26c523c836000610be482610e8b565b6040516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091526044820152606401600060405180830381865afa158015610c35573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261071191908101906128a8565b600e5460405163029f72bb60e31b8152600481018390526000916001600160a01b0316906314fb95d890602401602060405180830381865afa158015610ca7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610711919061282d565b6109cd8383836040518060200160405280600081525061116f565b6000610cf160085490565b8210610d1a5760405163295f44f760e21b815260006004820152602481018390526044016109f8565b60088281548110610d2d57610d2d61294e565b90600052602060002001549050919050565b600e5460405163029f72bb60e31b81526004810183905260009182916001600160a01b03909116906314fb95d890602401602060405180830381865afa158015610d8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db1919061282d565b90506000808211610dc3576000610dde565b612710600f5483610dd4919061285c565b610dde9190612873565b9050610dea8183612895565b949350505050565b60006107118261159a565b60128054610e0a906127f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e36906127f3565b8015610e835780601f10610e5857610100808354040283529160200191610e83565b820191906000526020600020905b815481529060010190602001808311610e6657829003601f168201915b505050505081565b60006001600160a01b038216610eb7576040516322718ad960e21b8152600060048201526024016109f8565b506001600160a01b031660009081526003602052604090205490565b600080516020612b8d833981519152610eeb816116f8565b60108290556040518281527f5d46f46c0e5b2045e0cb8c00367d35d9f3f1fc035950ac8f5c675f6c0a791ba0906020015b60405180910390a15050565b610f30611837565b610f3a6000611864565b565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060018054610726906127f3565b600080516020612b8d833981519152610f8e816116f8565b6109cd600080516020612b6d83398151915283611736565b6060610fb160085490565b821115610fbe5760085491505b600854600003610fdd5750604080516000815260208101909152610711565b818310610ffd5760405163561ce9bb60e01b815260040160405180910390fd5b60006110098484612964565b67ffffffffffffffff811115611021576110216125d0565b60405190808252806020026020018201604052801561104a578160200160208202803683370190505b50905060005b61105a8585612964565b81101561109d5761106e6104ad8683612895565b8282815181106110805761108061294e565b60209081029190910101528061109581612977565b915050611050565b509392505050565b600080516020612b8d8339815191526110bd816116f8565b6110c783336117ca565b506110d28383611736565b506040516001600160a01b03831690339085907f8d8ac61e09adc57e16fcda3ff204447854c5a75bb3e7f7462337b8eccc2f28f190600090a4505050565b600080516020612b8d833981519152611128816116f8565b601261113483826129de565b507f6741b2fc379fad678116fe3d4d4b9a1a184ab53ba36b86ad0fa66340b1ab41ad82604051610f1c9190612475565b6107dd3383836118b6565b61117a8484846109d2565b610a5c84848484611955565b60007f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec6111b2816116f8565b6001600160a01b0385166111d95760405163e6c4247b60e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038716906370a0823190602401602060405180830381865afa158015611220573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611244919061282d565b90508084111561126757604051631e9acf1760e31b815260040160405180910390fd5b61127b6001600160a01b03871686866116c7565b50600195945050505050565b6060611291611a7e565b61129a83611a8d565b6040516020016112ab929190612a9e565b6040516020818303038152906040529050919050565b6000828152600a60205260409020600101546112dc816116f8565b610a5c83836117ca565b600080516020612b8d8339815191526112fe816116f8565b60118054831515600160a01b0260ff60a01b199091161790556040517f9258f5907b894a96ae246130a375e1f94b5426c41e63d65dc3ffe9c4e8d5fa9e90610f1c90841515815260200190565b6060600061135885610e8b565b90508060000361137857505060408051600081526020810190915261144a565b80831115611384578092505b8284106113a45760405163561ce9bb60e01b815260040160405180910390fd5b60006113b08585612964565b67ffffffffffffffff8111156113c8576113c86125d0565b6040519080825280602002602001820160405280156113f1578160200160208202803683370190505b50905060005b6114018686612964565b81101561144557611416876104328884612895565b8282815181106114285761142861294e565b60209081029190910101528061143d81612977565b9150506113f7565b509150505b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600080516020612b8d833981519152611497816116f8565b601054821180156114a9575060105415155b156114c7576040516371b0df8f60e01b815260040160405180910390fd5b600f8290556040518281527ff2b0bf9819305cc8e01f2f7f632af2c1cc83e2c07d6125d995c62d682963edf190602001610f1c565b600080516020612b8d833981519152611514816116f8565b50601180546001600160a01b0319166001600160a01b0392909216919091179055565b61153f611837565b6001600160a01b03811661156957604051631e4fbdf760e01b8152600060048201526024016109f8565b61157281611864565b50565b60006001600160e01b03198216637965db0b60e01b1480610711575061071182611b20565b6000818152600260205260408120546001600160a01b03168061071157604051637e27328960e01b8152600481018490526024016109f8565b6109cd8383836001611b45565b6002600b540361160357604051633ee5aeb560e01b815260040160405180910390fd5b6002600b55565b6040516001600160a01b038481166024830152838116604483015260648201839052610a5c9186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050611c4b565b61167b8383611cae565b600f5460408051848152602081018490529081019190915233907f7bc3ddf0bf2ada973906c61001cd8f787646720bb7da90229e5bf81fa71bab6d9060600160405180910390a2505050565b6040516001600160a01b038381166024830152604482018390526109cd91859182169063a9059cbb9060640161163f565b6115728133611cc8565b60006001600160a01b03841661172b5760405163e6c4247b60e01b815260040160405180910390fd5b610dea848484611d01565b60006117428383610f3c565b6117c2576000838152600a602090815260408083206001600160a01b03861684529091529020805460ff1916600117905561177a3390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610711565b506000610711565b60006117d68383610f3c565b156117c2576000838152600a602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610711565b600c546001600160a01b03163314610f3a5760405163118cdaa760e01b81523360048201526024016109f8565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166118e857604051630b61174360e31b81526001600160a01b03831660048201526024016109f8565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383163b15610a5c57604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290611997903390889087908790600401612acd565b6020604051808303816000875af19250505080156119d2575060408051601f3d908101601f191682019092526119cf91810190612b00565b60015b611a3b573d808015611a00576040519150601f19603f3d011682016040523d82523d6000602084013e611a05565b606091505b508051600003611a3357604051633250574960e11b81526001600160a01b03851660048201526024016109f8565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b14611a7757604051633250574960e11b81526001600160a01b03851660048201526024016109f8565b5050505050565b606060128054610726906127f3565b60606000611a9a83611dce565b600101905060008167ffffffffffffffff811115611aba57611aba6125d0565b6040519080825280601f01601f191660200182016040528015611ae4576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611aee57509392505050565b60006001600160e01b0319821663780e9d6360e01b1480610711575061071182611ea6565b8080611b5957506001600160a01b03821615155b15611c1b576000611b698461159a565b90506001600160a01b03831615801590611b955750826001600160a01b0316816001600160a01b031614155b8015611ba85750611ba68184611451565b155b15611bd15760405163a9fbf51f60e01b81526001600160a01b03841660048201526024016109f8565b8115611c195783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5050600090815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6000611c606001600160a01b03841683611ef6565b90508051600014158015611c85575080806020019051810190611c839190612b1d565b155b156109cd57604051635274afe760e01b81526001600160a01b03841660048201526024016109f8565b6107dd828260405180602001604052806000815250611f04565b611cd28282610f3c565b6107dd5760405163e2517d3f60e01b81526001600160a01b0382166004820152602481018390526044016109f8565b600080611d0f858585611f1b565b90506001600160a01b038116611d6c57611d6784600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d8f565b846001600160a01b0316816001600160a01b031614611d8f57611d8f8185612014565b6001600160a01b038516611dab57611da6846120a5565b610dea565b846001600160a01b0316816001600160a01b031614610dea57610dea8585612154565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611e0d5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611e39576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611e5757662386f26fc10000830492506010015b6305f5e1008310611e6f576305f5e100830492506008015b6127108310611e8357612710830492506004015b60648310611e95576064830492506002015b600a83106107115760010192915050565b60006001600160e01b031982166380ac58cd60e01b1480611ed757506001600160e01b03198216635b5e139f60e01b145b8061071157506301ffc9a760e01b6001600160e01b0319831614610711565b606061144a838360006121a4565b611f0e8383612241565b6109cd6000848484611955565b6000828152600260205260408120546001600160a01b0390811690831615611f4857611f488184866122a6565b6001600160a01b03811615611f8657611f65600085600080611b45565b6001600160a01b038116600090815260036020526040902080546000190190555b6001600160a01b03851615611fb5576001600160a01b0385166000908152600360205260409020805460010190555b60008481526002602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b600061201f83610e8b565b600083815260076020526040902054909150808214612072576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120b790600190612964565b600083815260096020526040812054600880549394509092849081106120df576120df61294e565b9060005260206000200154905080600883815481106121005761210061294e565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061213857612138612b3a565b6001900381819060005260206000200160009055905550505050565b6000600161216184610e8b565b61216b9190612964565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6060814710156121c95760405163cd78605960e01b81523060048201526024016109f8565b600080856001600160a01b031684866040516121e59190612b50565b60006040518083038185875af1925050503d8060008114612222576040519150601f19603f3d011682016040523d82523d6000602084013e612227565b606091505b509150915061223786838361230a565b9695505050505050565b6001600160a01b03821661226b57604051633250574960e11b8152600060048201526024016109f8565b600061227983836000611702565b90506001600160a01b038116156109cd576040516339e3563760e11b8152600060048201526024016109f8565b6122b1838383612366565b6109cd576001600160a01b0383166122df57604051637e27328960e01b8152600481018290526024016109f8565b60405163177e802f60e01b81526001600160a01b0383166004820152602481018290526044016109f8565b60608261231f5761231a826123c9565b61144a565b815115801561233657506001600160a01b0384163b155b1561235f57604051639996b31560e01b81526001600160a01b03851660048201526024016109f8565b508061144a565b60006001600160a01b03831615801590610dea5750826001600160a01b0316846001600160a01b031614806123a057506123a08484611451565b80610dea5750506000908152600460205260409020546001600160a01b03908116911614919050565b8051156123d95780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160e01b03198116811461157257600080fd5b60006020828403121561241a57600080fd5b813561144a816123f2565b60005b83811015612440578181015183820152602001612428565b50506000910152565b60008151808452612461816020860160208601612425565b601f01601f19169290920160200192915050565b60208152600061144a6020830184612449565b60006020828403121561249a57600080fd5b5035919050565b80356001600160a01b03811681146124b857600080fd5b919050565b600080604083850312156124d057600080fd5b6124d9836124a1565b946020939093013593505050565b600080604083850312156124fa57600080fd5b50508035926020909101359150565b60008060006060848603121561251e57600080fd5b612527846124a1565b9250612535602085016124a1565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561257d57835183529284019291840191600101612561565b50909695505050505050565b6000806040838503121561259c57600080fd5b823591506125ac602084016124a1565b90509250929050565b6000602082840312156125c757600080fd5b61144a826124a1565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561260f5761260f6125d0565b604052919050565b600067ffffffffffffffff831115612631576126316125d0565b612644601f8401601f19166020016125e6565b905082815283838301111561265857600080fd5b828260208301376000602084830101529392505050565b60006020828403121561268157600080fd5b813567ffffffffffffffff81111561269857600080fd5b8201601f810184136126a957600080fd5b610dea84823560208401612617565b801515811461157257600080fd5b600080604083850312156126d957600080fd5b6126e2836124a1565b915060208301356126f2816126b8565b809150509250929050565b6000806000806080858703121561271357600080fd5b61271c856124a1565b935061272a602086016124a1565b925060408501359150606085013567ffffffffffffffff81111561274d57600080fd5b8501601f8101871361275e57600080fd5b61276d87823560208401612617565b91505092959194509250565b60006020828403121561278b57600080fd5b813561144a816126b8565b6000806000606084860312156127ab57600080fd5b6127b4846124a1565b95602085013595506040909401359392505050565b600080604083850312156127dc57600080fd5b6127e5836124a1565b91506125ac602084016124a1565b600181811c9082168061280757607f821691505b60208210810361282757634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561283f57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761071157610711612846565b60008261289057634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561071157610711612846565b600060208083850312156128bb57600080fd5b825167ffffffffffffffff808211156128d357600080fd5b818501915085601f8301126128e757600080fd5b8151818111156128f9576128f96125d0565b8060051b915061290a8483016125e6565b818152918301840191848101908884111561292457600080fd5b938501935b8385101561294257845182529385019390850190612929565b98975050505050505050565b634e487b7160e01b600052603260045260246000fd5b8181038181111561071157610711612846565b60006001820161298957612989612846565b5060010190565b601f8211156109cd57600081815260208120601f850160051c810160208610156129b75750805b601f850160051c820191505b818110156129d6578281556001016129c3565b505050505050565b815167ffffffffffffffff8111156129f8576129f86125d0565b612a0c81612a0684546127f3565b84612990565b602080601f831160018114612a415760008415612a295750858301515b600019600386901b1c1916600185901b1785556129d6565b600085815260208120601f198616915b82811015612a7057888601518255948401946001909101908401612a51565b5085821015612a8e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351612ab0818460208801612425565b835190830190612ac4818360208801612425565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061223790830184612449565b600060208284031215612b1257600080fd5b815161144a816123f2565b600060208284031215612b2f57600080fd5b815161144a816126b8565b634e487b7160e01b600052603160045260246000fd5b60008251612b62818460208701612425565b919091019291505056fe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a2646970667358221220d488096cdee0e1f66ed8ebe79f45ee8fe33aa8841a43c5c4eca88dd808c15d8f64736f6c63430008140033697066733a2f2f516d5a7a4562546e555773354a447a724c4b513979476b316b76737a646e77644d61567739764e676a43464c6f322f";
|
|
18
18
|
static readonly abi: readonly [{
|
|
19
19
|
readonly inputs: readonly [{
|
|
20
20
|
readonly internalType: "address";
|
|
@@ -31,6 +31,22 @@ export declare class RAACNFT__factory extends ContractFactory {
|
|
|
31
31
|
}];
|
|
32
32
|
readonly stateMutability: "nonpayable";
|
|
33
33
|
readonly type: "constructor";
|
|
34
|
+
}, {
|
|
35
|
+
readonly inputs: readonly [];
|
|
36
|
+
readonly name: "AccessControlBadConfirmation";
|
|
37
|
+
readonly type: "error";
|
|
38
|
+
}, {
|
|
39
|
+
readonly inputs: readonly [{
|
|
40
|
+
readonly internalType: "address";
|
|
41
|
+
readonly name: "account";
|
|
42
|
+
readonly type: "address";
|
|
43
|
+
}, {
|
|
44
|
+
readonly internalType: "bytes32";
|
|
45
|
+
readonly name: "neededRole";
|
|
46
|
+
readonly type: "bytes32";
|
|
47
|
+
}];
|
|
48
|
+
readonly name: "AccessControlUnauthorizedAccount";
|
|
49
|
+
readonly type: "error";
|
|
34
50
|
}, {
|
|
35
51
|
readonly inputs: readonly [{
|
|
36
52
|
readonly internalType: "address";
|
|
@@ -139,10 +155,34 @@ export declare class RAACNFT__factory extends ContractFactory {
|
|
|
139
155
|
}];
|
|
140
156
|
readonly name: "ERC721OutOfBoundsIndex";
|
|
141
157
|
readonly type: "error";
|
|
158
|
+
}, {
|
|
159
|
+
readonly inputs: readonly [];
|
|
160
|
+
readonly name: "ExceedsMaxFee";
|
|
161
|
+
readonly type: "error";
|
|
142
162
|
}, {
|
|
143
163
|
readonly inputs: readonly [];
|
|
144
164
|
readonly name: "FailedInnerCall";
|
|
145
165
|
readonly type: "error";
|
|
166
|
+
}, {
|
|
167
|
+
readonly inputs: readonly [];
|
|
168
|
+
readonly name: "HousePrice";
|
|
169
|
+
readonly type: "error";
|
|
170
|
+
}, {
|
|
171
|
+
readonly inputs: readonly [];
|
|
172
|
+
readonly name: "InsufficientBalance";
|
|
173
|
+
readonly type: "error";
|
|
174
|
+
}, {
|
|
175
|
+
readonly inputs: readonly [];
|
|
176
|
+
readonly name: "InsufficientFundsMint";
|
|
177
|
+
readonly type: "error";
|
|
178
|
+
}, {
|
|
179
|
+
readonly inputs: readonly [];
|
|
180
|
+
readonly name: "InvalidAddress";
|
|
181
|
+
readonly type: "error";
|
|
182
|
+
}, {
|
|
183
|
+
readonly inputs: readonly [];
|
|
184
|
+
readonly name: "InvalidRange";
|
|
185
|
+
readonly type: "error";
|
|
146
186
|
}, {
|
|
147
187
|
readonly inputs: readonly [{
|
|
148
188
|
readonly internalType: "address";
|
|
@@ -161,28 +201,34 @@ export declare class RAACNFT__factory extends ContractFactory {
|
|
|
161
201
|
readonly type: "error";
|
|
162
202
|
}, {
|
|
163
203
|
readonly inputs: readonly [];
|
|
164
|
-
readonly name: "
|
|
204
|
+
readonly name: "ReentrancyGuardReentrantCall";
|
|
165
205
|
readonly type: "error";
|
|
166
206
|
}, {
|
|
167
|
-
readonly inputs: readonly [
|
|
168
|
-
|
|
207
|
+
readonly inputs: readonly [{
|
|
208
|
+
readonly internalType: "address";
|
|
209
|
+
readonly name: "token";
|
|
210
|
+
readonly type: "address";
|
|
211
|
+
}];
|
|
212
|
+
readonly name: "SafeERC20FailedOperation";
|
|
169
213
|
readonly type: "error";
|
|
170
214
|
}, {
|
|
171
215
|
readonly inputs: readonly [];
|
|
172
|
-
readonly name: "
|
|
216
|
+
readonly name: "TokenAlreadyMinted";
|
|
173
217
|
readonly type: "error";
|
|
174
218
|
}, {
|
|
175
219
|
readonly inputs: readonly [];
|
|
176
|
-
readonly name: "
|
|
220
|
+
readonly name: "ZeroAddress";
|
|
177
221
|
readonly type: "error";
|
|
178
222
|
}, {
|
|
223
|
+
readonly anonymous: false;
|
|
179
224
|
readonly inputs: readonly [{
|
|
180
|
-
readonly
|
|
181
|
-
readonly
|
|
182
|
-
readonly
|
|
225
|
+
readonly indexed: false;
|
|
226
|
+
readonly internalType: "bool";
|
|
227
|
+
readonly name: "allowBurning";
|
|
228
|
+
readonly type: "bool";
|
|
183
229
|
}];
|
|
184
|
-
readonly name: "
|
|
185
|
-
readonly type: "
|
|
230
|
+
readonly name: "AllowBurningUpdated";
|
|
231
|
+
readonly type: "event";
|
|
186
232
|
}, {
|
|
187
233
|
readonly anonymous: false;
|
|
188
234
|
readonly inputs: readonly [{
|
|
@@ -223,6 +269,81 @@ export declare class RAACNFT__factory extends ContractFactory {
|
|
|
223
269
|
}];
|
|
224
270
|
readonly name: "ApprovalForAll";
|
|
225
271
|
readonly type: "event";
|
|
272
|
+
}, {
|
|
273
|
+
readonly anonymous: false;
|
|
274
|
+
readonly inputs: readonly [{
|
|
275
|
+
readonly indexed: false;
|
|
276
|
+
readonly internalType: "string";
|
|
277
|
+
readonly name: "uri";
|
|
278
|
+
readonly type: "string";
|
|
279
|
+
}];
|
|
280
|
+
readonly name: "BaseURIUpdated";
|
|
281
|
+
readonly type: "event";
|
|
282
|
+
}, {
|
|
283
|
+
readonly anonymous: false;
|
|
284
|
+
readonly inputs: readonly [{
|
|
285
|
+
readonly indexed: false;
|
|
286
|
+
readonly internalType: "uint256";
|
|
287
|
+
readonly name: "maxFee";
|
|
288
|
+
readonly type: "uint256";
|
|
289
|
+
}];
|
|
290
|
+
readonly name: "MaxFeeUpdated";
|
|
291
|
+
readonly type: "event";
|
|
292
|
+
}, {
|
|
293
|
+
readonly anonymous: false;
|
|
294
|
+
readonly inputs: readonly [{
|
|
295
|
+
readonly indexed: false;
|
|
296
|
+
readonly internalType: "uint256";
|
|
297
|
+
readonly name: "mintFee";
|
|
298
|
+
readonly type: "uint256";
|
|
299
|
+
}];
|
|
300
|
+
readonly name: "MintFeeUpdated";
|
|
301
|
+
readonly type: "event";
|
|
302
|
+
}, {
|
|
303
|
+
readonly anonymous: false;
|
|
304
|
+
readonly inputs: readonly [{
|
|
305
|
+
readonly indexed: true;
|
|
306
|
+
readonly internalType: "bytes32";
|
|
307
|
+
readonly name: "role";
|
|
308
|
+
readonly type: "bytes32";
|
|
309
|
+
}, {
|
|
310
|
+
readonly indexed: true;
|
|
311
|
+
readonly internalType: "address";
|
|
312
|
+
readonly name: "previousMinter";
|
|
313
|
+
readonly type: "address";
|
|
314
|
+
}, {
|
|
315
|
+
readonly indexed: true;
|
|
316
|
+
readonly internalType: "address";
|
|
317
|
+
readonly name: "newMinter";
|
|
318
|
+
readonly type: "address";
|
|
319
|
+
}];
|
|
320
|
+
readonly name: "MinterRoleTransferred";
|
|
321
|
+
readonly type: "event";
|
|
322
|
+
}, {
|
|
323
|
+
readonly anonymous: false;
|
|
324
|
+
readonly inputs: readonly [{
|
|
325
|
+
readonly indexed: true;
|
|
326
|
+
readonly internalType: "address";
|
|
327
|
+
readonly name: "payer";
|
|
328
|
+
readonly type: "address";
|
|
329
|
+
}, {
|
|
330
|
+
readonly indexed: false;
|
|
331
|
+
readonly internalType: "uint256";
|
|
332
|
+
readonly name: "fee";
|
|
333
|
+
readonly type: "uint256";
|
|
334
|
+
}];
|
|
335
|
+
readonly name: "NFTFeePaid";
|
|
336
|
+
readonly type: "event";
|
|
337
|
+
}, {
|
|
338
|
+
readonly anonymous: false;
|
|
339
|
+
readonly inputs: readonly [{
|
|
340
|
+
readonly indexed: false;
|
|
341
|
+
readonly internalType: "uint256";
|
|
342
|
+
readonly name: "fee";
|
|
343
|
+
readonly type: "uint256";
|
|
344
|
+
}];
|
|
345
|
+
readonly name: "NFTFeeUpdated";
|
|
346
|
+
readonly type: "event";
|
|
226
347
|
}, {
|
|
227
348
|
readonly anonymous: false;
|
|
228
349
|
readonly inputs: readonly [{
|
|
@@ -240,6 +361,11 @@ export declare class RAACNFT__factory extends ContractFactory {
|
|
|
240
361
|
readonly internalType: "uint256";
|
|
241
362
|
readonly name: "price";
|
|
242
363
|
readonly type: "uint256";
|
|
364
|
+
}, {
|
|
365
|
+
readonly indexed: false;
|
|
366
|
+
readonly internalType: "uint256";
|
|
367
|
+
readonly name: "mintFee";
|
|
368
|
+
readonly type: "uint256";
|
|
243
369
|
}];
|
|
244
370
|
readonly name: "NFTMinted";
|
|
245
371
|
readonly type: "event";
|
|
@@ -258,6 +384,66 @@ export declare class RAACNFT__factory extends ContractFactory {
|
|
|
258
384
|
}];
|
|
259
385
|
readonly name: "OwnershipTransferred";
|
|
260
386
|
readonly type: "event";
|
|
387
|
+
}, {
|
|
388
|
+
readonly anonymous: false;
|
|
389
|
+
readonly inputs: readonly [{
|
|
390
|
+
readonly indexed: true;
|
|
391
|
+
readonly internalType: "bytes32";
|
|
392
|
+
readonly name: "role";
|
|
393
|
+
readonly type: "bytes32";
|
|
394
|
+
}, {
|
|
395
|
+
readonly indexed: true;
|
|
396
|
+
readonly internalType: "bytes32";
|
|
397
|
+
readonly name: "previousAdminRole";
|
|
398
|
+
readonly type: "bytes32";
|
|
399
|
+
}, {
|
|
400
|
+
readonly indexed: true;
|
|
401
|
+
readonly internalType: "bytes32";
|
|
402
|
+
readonly name: "newAdminRole";
|
|
403
|
+
readonly type: "bytes32";
|
|
404
|
+
}];
|
|
405
|
+
readonly name: "RoleAdminChanged";
|
|
406
|
+
readonly type: "event";
|
|
407
|
+
}, {
|
|
408
|
+
readonly anonymous: false;
|
|
409
|
+
readonly inputs: readonly [{
|
|
410
|
+
readonly indexed: true;
|
|
411
|
+
readonly internalType: "bytes32";
|
|
412
|
+
readonly name: "role";
|
|
413
|
+
readonly type: "bytes32";
|
|
414
|
+
}, {
|
|
415
|
+
readonly indexed: true;
|
|
416
|
+
readonly internalType: "address";
|
|
417
|
+
readonly name: "account";
|
|
418
|
+
readonly type: "address";
|
|
419
|
+
}, {
|
|
420
|
+
readonly indexed: true;
|
|
421
|
+
readonly internalType: "address";
|
|
422
|
+
readonly name: "sender";
|
|
423
|
+
readonly type: "address";
|
|
424
|
+
}];
|
|
425
|
+
readonly name: "RoleGranted";
|
|
426
|
+
readonly type: "event";
|
|
427
|
+
}, {
|
|
428
|
+
readonly anonymous: false;
|
|
429
|
+
readonly inputs: readonly [{
|
|
430
|
+
readonly indexed: true;
|
|
431
|
+
readonly internalType: "bytes32";
|
|
432
|
+
readonly name: "role";
|
|
433
|
+
readonly type: "bytes32";
|
|
434
|
+
}, {
|
|
435
|
+
readonly indexed: true;
|
|
436
|
+
readonly internalType: "address";
|
|
437
|
+
readonly name: "account";
|
|
438
|
+
readonly type: "address";
|
|
439
|
+
}, {
|
|
440
|
+
readonly indexed: true;
|
|
441
|
+
readonly internalType: "address";
|
|
442
|
+
readonly name: "sender";
|
|
443
|
+
readonly type: "address";
|
|
444
|
+
}];
|
|
445
|
+
readonly name: "RoleRevoked";
|
|
446
|
+
readonly type: "event";
|
|
261
447
|
}, {
|
|
262
448
|
readonly anonymous: false;
|
|
263
449
|
readonly inputs: readonly [{
|
|
@@ -279,15 +465,85 @@ export declare class RAACNFT__factory extends ContractFactory {
|
|
|
279
465
|
readonly name: "Transfer";
|
|
280
466
|
readonly type: "event";
|
|
281
467
|
}, {
|
|
282
|
-
readonly inputs: readonly [
|
|
468
|
+
readonly inputs: readonly [];
|
|
469
|
+
readonly name: "ADMIN_ROLE";
|
|
470
|
+
readonly outputs: readonly [{
|
|
471
|
+
readonly internalType: "bytes32";
|
|
472
|
+
readonly name: "";
|
|
473
|
+
readonly type: "bytes32";
|
|
474
|
+
}];
|
|
475
|
+
readonly stateMutability: "view";
|
|
476
|
+
readonly type: "function";
|
|
477
|
+
}, {
|
|
478
|
+
readonly inputs: readonly [];
|
|
479
|
+
readonly name: "DEFAULT_ADMIN_ROLE";
|
|
480
|
+
readonly outputs: readonly [{
|
|
481
|
+
readonly internalType: "bytes32";
|
|
482
|
+
readonly name: "";
|
|
483
|
+
readonly type: "bytes32";
|
|
484
|
+
}];
|
|
485
|
+
readonly stateMutability: "view";
|
|
486
|
+
readonly type: "function";
|
|
487
|
+
}, {
|
|
488
|
+
readonly inputs: readonly [];
|
|
489
|
+
readonly name: "MAX_FEE_PERCENTAGE";
|
|
490
|
+
readonly outputs: readonly [{
|
|
491
|
+
readonly internalType: "uint256";
|
|
492
|
+
readonly name: "";
|
|
493
|
+
readonly type: "uint256";
|
|
494
|
+
}];
|
|
495
|
+
readonly stateMutability: "view";
|
|
496
|
+
readonly type: "function";
|
|
497
|
+
}, {
|
|
498
|
+
readonly inputs: readonly [];
|
|
499
|
+
readonly name: "MINTER_ROLE";
|
|
500
|
+
readonly outputs: readonly [{
|
|
501
|
+
readonly internalType: "bytes32";
|
|
502
|
+
readonly name: "";
|
|
503
|
+
readonly type: "bytes32";
|
|
504
|
+
}];
|
|
505
|
+
readonly stateMutability: "view";
|
|
506
|
+
readonly type: "function";
|
|
507
|
+
}, {
|
|
508
|
+
readonly inputs: readonly [];
|
|
509
|
+
readonly name: "MINT_FEE_PERCENTAGE";
|
|
510
|
+
readonly outputs: readonly [{
|
|
283
511
|
readonly internalType: "uint256";
|
|
284
|
-
readonly name: "
|
|
512
|
+
readonly name: "";
|
|
285
513
|
readonly type: "uint256";
|
|
286
514
|
}];
|
|
287
|
-
readonly
|
|
515
|
+
readonly stateMutability: "view";
|
|
516
|
+
readonly type: "function";
|
|
517
|
+
}, {
|
|
518
|
+
readonly inputs: readonly [];
|
|
519
|
+
readonly name: "WITHDRAW_ROLE";
|
|
520
|
+
readonly outputs: readonly [{
|
|
521
|
+
readonly internalType: "bytes32";
|
|
522
|
+
readonly name: "";
|
|
523
|
+
readonly type: "bytes32";
|
|
524
|
+
}];
|
|
525
|
+
readonly stateMutability: "view";
|
|
526
|
+
readonly type: "function";
|
|
527
|
+
}, {
|
|
528
|
+
readonly inputs: readonly [{
|
|
529
|
+
readonly internalType: "address";
|
|
530
|
+
readonly name: "minter";
|
|
531
|
+
readonly type: "address";
|
|
532
|
+
}];
|
|
533
|
+
readonly name: "addMinter";
|
|
288
534
|
readonly outputs: readonly [];
|
|
289
535
|
readonly stateMutability: "nonpayable";
|
|
290
536
|
readonly type: "function";
|
|
537
|
+
}, {
|
|
538
|
+
readonly inputs: readonly [];
|
|
539
|
+
readonly name: "allowBurning";
|
|
540
|
+
readonly outputs: readonly [{
|
|
541
|
+
readonly internalType: "bool";
|
|
542
|
+
readonly name: "";
|
|
543
|
+
readonly type: "bool";
|
|
544
|
+
}];
|
|
545
|
+
readonly stateMutability: "view";
|
|
546
|
+
readonly type: "function";
|
|
291
547
|
}, {
|
|
292
548
|
readonly inputs: readonly [{
|
|
293
549
|
readonly internalType: "address";
|
|
@@ -328,12 +584,30 @@ export declare class RAACNFT__factory extends ContractFactory {
|
|
|
328
584
|
readonly type: "function";
|
|
329
585
|
}, {
|
|
330
586
|
readonly inputs: readonly [];
|
|
331
|
-
readonly name: "
|
|
587
|
+
readonly name: "getAllTokens";
|
|
332
588
|
readonly outputs: readonly [{
|
|
333
|
-
readonly internalType: "uint256";
|
|
589
|
+
readonly internalType: "uint256[]";
|
|
334
590
|
readonly name: "";
|
|
591
|
+
readonly type: "uint256[]";
|
|
592
|
+
}];
|
|
593
|
+
readonly stateMutability: "view";
|
|
594
|
+
readonly type: "function";
|
|
595
|
+
}, {
|
|
596
|
+
readonly inputs: readonly [{
|
|
597
|
+
readonly internalType: "uint256";
|
|
598
|
+
readonly name: "start";
|
|
599
|
+
readonly type: "uint256";
|
|
600
|
+
}, {
|
|
601
|
+
readonly internalType: "uint256";
|
|
602
|
+
readonly name: "end";
|
|
335
603
|
readonly type: "uint256";
|
|
336
604
|
}];
|
|
605
|
+
readonly name: "getAllTokens";
|
|
606
|
+
readonly outputs: readonly [{
|
|
607
|
+
readonly internalType: "uint256[]";
|
|
608
|
+
readonly name: "";
|
|
609
|
+
readonly type: "uint256[]";
|
|
610
|
+
}];
|
|
337
611
|
readonly stateMutability: "view";
|
|
338
612
|
readonly type: "function";
|
|
339
613
|
}, {
|
|
@@ -364,6 +638,102 @@ export declare class RAACNFT__factory extends ContractFactory {
|
|
|
364
638
|
}];
|
|
365
639
|
readonly stateMutability: "view";
|
|
366
640
|
readonly type: "function";
|
|
641
|
+
}, {
|
|
642
|
+
readonly inputs: readonly [{
|
|
643
|
+
readonly internalType: "uint256";
|
|
644
|
+
readonly name: "_tokenId";
|
|
645
|
+
readonly type: "uint256";
|
|
646
|
+
}];
|
|
647
|
+
readonly name: "getMintPrice";
|
|
648
|
+
readonly outputs: readonly [{
|
|
649
|
+
readonly internalType: "uint256";
|
|
650
|
+
readonly name: "";
|
|
651
|
+
readonly type: "uint256";
|
|
652
|
+
}];
|
|
653
|
+
readonly stateMutability: "view";
|
|
654
|
+
readonly type: "function";
|
|
655
|
+
}, {
|
|
656
|
+
readonly inputs: readonly [{
|
|
657
|
+
readonly internalType: "bytes32";
|
|
658
|
+
readonly name: "role";
|
|
659
|
+
readonly type: "bytes32";
|
|
660
|
+
}];
|
|
661
|
+
readonly name: "getRoleAdmin";
|
|
662
|
+
readonly outputs: readonly [{
|
|
663
|
+
readonly internalType: "bytes32";
|
|
664
|
+
readonly name: "";
|
|
665
|
+
readonly type: "bytes32";
|
|
666
|
+
}];
|
|
667
|
+
readonly stateMutability: "view";
|
|
668
|
+
readonly type: "function";
|
|
669
|
+
}, {
|
|
670
|
+
readonly inputs: readonly [{
|
|
671
|
+
readonly internalType: "address";
|
|
672
|
+
readonly name: "owner";
|
|
673
|
+
readonly type: "address";
|
|
674
|
+
}];
|
|
675
|
+
readonly name: "getTokensByOwner";
|
|
676
|
+
readonly outputs: readonly [{
|
|
677
|
+
readonly internalType: "uint256[]";
|
|
678
|
+
readonly name: "";
|
|
679
|
+
readonly type: "uint256[]";
|
|
680
|
+
}];
|
|
681
|
+
readonly stateMutability: "view";
|
|
682
|
+
readonly type: "function";
|
|
683
|
+
}, {
|
|
684
|
+
readonly inputs: readonly [{
|
|
685
|
+
readonly internalType: "address";
|
|
686
|
+
readonly name: "owner";
|
|
687
|
+
readonly type: "address";
|
|
688
|
+
}, {
|
|
689
|
+
readonly internalType: "uint256";
|
|
690
|
+
readonly name: "start";
|
|
691
|
+
readonly type: "uint256";
|
|
692
|
+
}, {
|
|
693
|
+
readonly internalType: "uint256";
|
|
694
|
+
readonly name: "end";
|
|
695
|
+
readonly type: "uint256";
|
|
696
|
+
}];
|
|
697
|
+
readonly name: "getTokensByOwner";
|
|
698
|
+
readonly outputs: readonly [{
|
|
699
|
+
readonly internalType: "uint256[]";
|
|
700
|
+
readonly name: "";
|
|
701
|
+
readonly type: "uint256[]";
|
|
702
|
+
}];
|
|
703
|
+
readonly stateMutability: "view";
|
|
704
|
+
readonly type: "function";
|
|
705
|
+
}, {
|
|
706
|
+
readonly inputs: readonly [{
|
|
707
|
+
readonly internalType: "bytes32";
|
|
708
|
+
readonly name: "role";
|
|
709
|
+
readonly type: "bytes32";
|
|
710
|
+
}, {
|
|
711
|
+
readonly internalType: "address";
|
|
712
|
+
readonly name: "account";
|
|
713
|
+
readonly type: "address";
|
|
714
|
+
}];
|
|
715
|
+
readonly name: "grantRole";
|
|
716
|
+
readonly outputs: readonly [];
|
|
717
|
+
readonly stateMutability: "nonpayable";
|
|
718
|
+
readonly type: "function";
|
|
719
|
+
}, {
|
|
720
|
+
readonly inputs: readonly [{
|
|
721
|
+
readonly internalType: "bytes32";
|
|
722
|
+
readonly name: "role";
|
|
723
|
+
readonly type: "bytes32";
|
|
724
|
+
}, {
|
|
725
|
+
readonly internalType: "address";
|
|
726
|
+
readonly name: "account";
|
|
727
|
+
readonly type: "address";
|
|
728
|
+
}];
|
|
729
|
+
readonly name: "hasRole";
|
|
730
|
+
readonly outputs: readonly [{
|
|
731
|
+
readonly internalType: "bool";
|
|
732
|
+
readonly name: "";
|
|
733
|
+
readonly type: "bool";
|
|
734
|
+
}];
|
|
735
|
+
readonly stateMutability: "view";
|
|
736
|
+
readonly type: "function";
|
|
367
737
|
}, {
|
|
368
738
|
readonly inputs: readonly [{
|
|
369
739
|
readonly internalType: "address";
|
|
@@ -396,6 +766,20 @@ export declare class RAACNFT__factory extends ContractFactory {
|
|
|
396
766
|
readonly outputs: readonly [];
|
|
397
767
|
readonly stateMutability: "nonpayable";
|
|
398
768
|
readonly type: "function";
|
|
769
|
+
}, {
|
|
770
|
+
readonly inputs: readonly [{
|
|
771
|
+
readonly internalType: "address";
|
|
772
|
+
readonly name: "to";
|
|
773
|
+
readonly type: "address";
|
|
774
|
+
}, {
|
|
775
|
+
readonly internalType: "uint256";
|
|
776
|
+
readonly name: "tokenId";
|
|
777
|
+
readonly type: "uint256";
|
|
778
|
+
}];
|
|
779
|
+
readonly name: "minterMint";
|
|
780
|
+
readonly outputs: readonly [];
|
|
781
|
+
readonly stateMutability: "nonpayable";
|
|
782
|
+
readonly type: "function";
|
|
399
783
|
}, {
|
|
400
784
|
readonly inputs: readonly [];
|
|
401
785
|
readonly name: "name";
|
|
@@ -440,12 +824,50 @@ export declare class RAACNFT__factory extends ContractFactory {
|
|
|
440
824
|
}];
|
|
441
825
|
readonly stateMutability: "view";
|
|
442
826
|
readonly type: "function";
|
|
827
|
+
}, {
|
|
828
|
+
readonly inputs: readonly [{
|
|
829
|
+
readonly internalType: "address";
|
|
830
|
+
readonly name: "minter";
|
|
831
|
+
readonly type: "address";
|
|
832
|
+
}];
|
|
833
|
+
readonly name: "removeMinter";
|
|
834
|
+
readonly outputs: readonly [];
|
|
835
|
+
readonly stateMutability: "nonpayable";
|
|
836
|
+
readonly type: "function";
|
|
443
837
|
}, {
|
|
444
838
|
readonly inputs: readonly [];
|
|
445
839
|
readonly name: "renounceOwnership";
|
|
446
840
|
readonly outputs: readonly [];
|
|
447
841
|
readonly stateMutability: "nonpayable";
|
|
448
842
|
readonly type: "function";
|
|
843
|
+
}, {
|
|
844
|
+
readonly inputs: readonly [{
|
|
845
|
+
readonly internalType: "bytes32";
|
|
846
|
+
readonly name: "role";
|
|
847
|
+
readonly type: "bytes32";
|
|
848
|
+
}, {
|
|
849
|
+
readonly internalType: "address";
|
|
850
|
+
readonly name: "callerConfirmation";
|
|
851
|
+
readonly type: "address";
|
|
852
|
+
}];
|
|
853
|
+
readonly name: "renounceRole";
|
|
854
|
+
readonly outputs: readonly [];
|
|
855
|
+
readonly stateMutability: "nonpayable";
|
|
856
|
+
readonly type: "function";
|
|
857
|
+
}, {
|
|
858
|
+
readonly inputs: readonly [{
|
|
859
|
+
readonly internalType: "bytes32";
|
|
860
|
+
readonly name: "role";
|
|
861
|
+
readonly type: "bytes32";
|
|
862
|
+
}, {
|
|
863
|
+
readonly internalType: "address";
|
|
864
|
+
readonly name: "account";
|
|
865
|
+
readonly type: "address";
|
|
866
|
+
}];
|
|
867
|
+
readonly name: "revokeRole";
|
|
868
|
+
readonly outputs: readonly [];
|
|
869
|
+
readonly stateMutability: "nonpayable";
|
|
870
|
+
readonly type: "function";
|
|
449
871
|
}, {
|
|
450
872
|
readonly inputs: readonly [{
|
|
451
873
|
readonly internalType: "address";
|
|
@@ -486,6 +908,16 @@ export declare class RAACNFT__factory extends ContractFactory {
|
|
|
486
908
|
readonly outputs: readonly [];
|
|
487
909
|
readonly stateMutability: "nonpayable";
|
|
488
910
|
readonly type: "function";
|
|
911
|
+
}, {
|
|
912
|
+
readonly inputs: readonly [{
|
|
913
|
+
readonly internalType: "bool";
|
|
914
|
+
readonly name: "_allowBurning";
|
|
915
|
+
readonly type: "bool";
|
|
916
|
+
}];
|
|
917
|
+
readonly name: "setAllowBurning";
|
|
918
|
+
readonly outputs: readonly [];
|
|
919
|
+
readonly stateMutability: "nonpayable";
|
|
920
|
+
readonly type: "function";
|
|
489
921
|
}, {
|
|
490
922
|
readonly inputs: readonly [{
|
|
491
923
|
readonly internalType: "address";
|
|
@@ -510,6 +942,36 @@ export declare class RAACNFT__factory extends ContractFactory {
|
|
|
510
942
|
readonly outputs: readonly [];
|
|
511
943
|
readonly stateMutability: "nonpayable";
|
|
512
944
|
readonly type: "function";
|
|
945
|
+
}, {
|
|
946
|
+
readonly inputs: readonly [{
|
|
947
|
+
readonly internalType: "uint256";
|
|
948
|
+
readonly name: "_maxFeePercentage";
|
|
949
|
+
readonly type: "uint256";
|
|
950
|
+
}];
|
|
951
|
+
readonly name: "setMaxFee";
|
|
952
|
+
readonly outputs: readonly [];
|
|
953
|
+
readonly stateMutability: "nonpayable";
|
|
954
|
+
readonly type: "function";
|
|
955
|
+
}, {
|
|
956
|
+
readonly inputs: readonly [{
|
|
957
|
+
readonly internalType: "uint256";
|
|
958
|
+
readonly name: "newFee";
|
|
959
|
+
readonly type: "uint256";
|
|
960
|
+
}];
|
|
961
|
+
readonly name: "setMintFee";
|
|
962
|
+
readonly outputs: readonly [];
|
|
963
|
+
readonly stateMutability: "nonpayable";
|
|
964
|
+
readonly type: "function";
|
|
965
|
+
}, {
|
|
966
|
+
readonly inputs: readonly [{
|
|
967
|
+
readonly internalType: "address";
|
|
968
|
+
readonly name: "_treasury";
|
|
969
|
+
readonly type: "address";
|
|
970
|
+
}];
|
|
971
|
+
readonly name: "setTreasury";
|
|
972
|
+
readonly outputs: readonly [];
|
|
973
|
+
readonly stateMutability: "nonpayable";
|
|
974
|
+
readonly type: "function";
|
|
513
975
|
}, {
|
|
514
976
|
readonly inputs: readonly [{
|
|
515
977
|
readonly internalType: "bytes4";
|
|
@@ -579,7 +1041,7 @@ export declare class RAACNFT__factory extends ContractFactory {
|
|
|
579
1041
|
}, {
|
|
580
1042
|
readonly inputs: readonly [{
|
|
581
1043
|
readonly internalType: "uint256";
|
|
582
|
-
readonly name: "
|
|
1044
|
+
readonly name: "_tokenId";
|
|
583
1045
|
readonly type: "uint256";
|
|
584
1046
|
}];
|
|
585
1047
|
readonly name: "tokenURI";
|
|
@@ -628,6 +1090,52 @@ export declare class RAACNFT__factory extends ContractFactory {
|
|
|
628
1090
|
readonly outputs: readonly [];
|
|
629
1091
|
readonly stateMutability: "nonpayable";
|
|
630
1092
|
readonly type: "function";
|
|
1093
|
+
}, {
|
|
1094
|
+
readonly inputs: readonly [{
|
|
1095
|
+
readonly internalType: "bytes32";
|
|
1096
|
+
readonly name: "role";
|
|
1097
|
+
readonly type: "bytes32";
|
|
1098
|
+
}, {
|
|
1099
|
+
readonly internalType: "address";
|
|
1100
|
+
readonly name: "newMinter";
|
|
1101
|
+
readonly type: "address";
|
|
1102
|
+
}];
|
|
1103
|
+
readonly name: "transferRole";
|
|
1104
|
+
readonly outputs: readonly [];
|
|
1105
|
+
readonly stateMutability: "nonpayable";
|
|
1106
|
+
readonly type: "function";
|
|
1107
|
+
}, {
|
|
1108
|
+
readonly inputs: readonly [];
|
|
1109
|
+
readonly name: "treasury";
|
|
1110
|
+
readonly outputs: readonly [{
|
|
1111
|
+
readonly internalType: "address";
|
|
1112
|
+
readonly name: "";
|
|
1113
|
+
readonly type: "address";
|
|
1114
|
+
}];
|
|
1115
|
+
readonly stateMutability: "view";
|
|
1116
|
+
readonly type: "function";
|
|
1117
|
+
}, {
|
|
1118
|
+
readonly inputs: readonly [{
|
|
1119
|
+
readonly internalType: "address";
|
|
1120
|
+
readonly name: "tokenAddress";
|
|
1121
|
+
readonly type: "address";
|
|
1122
|
+
}, {
|
|
1123
|
+
readonly internalType: "address";
|
|
1124
|
+
readonly name: "to";
|
|
1125
|
+
readonly type: "address";
|
|
1126
|
+
}, {
|
|
1127
|
+
readonly internalType: "uint256";
|
|
1128
|
+
readonly name: "amount";
|
|
1129
|
+
readonly type: "uint256";
|
|
1130
|
+
}];
|
|
1131
|
+
readonly name: "withdrawUnderlying";
|
|
1132
|
+
readonly outputs: readonly [{
|
|
1133
|
+
readonly internalType: "bool";
|
|
1134
|
+
readonly name: "";
|
|
1135
|
+
readonly type: "bool";
|
|
1136
|
+
}];
|
|
1137
|
+
readonly stateMutability: "nonpayable";
|
|
1138
|
+
readonly type: "function";
|
|
631
1139
|
}];
|
|
632
1140
|
static createInterface(): RAACNFTInterface;
|
|
633
1141
|
static connect(address: string, runner?: ContractRunner | null): RAACNFT;
|