@raac/rpc 1.0.1 → 1.0.2-beta.1
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/17000.json +127 -0
- package/dist/configs/chains/8453.json +26 -14
- package/dist/configs/chains/index.js +2 -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/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 +2 -0
- package/dist/types/configs/createConfig.d.ts +6 -0
- package/dist/types/configs/index.d.ts +1 -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 +2 -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
|
@@ -1,26 +1,48 @@
|
|
|
1
1
|
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
2
|
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../common";
|
|
3
3
|
export interface RAACNFTInterface extends Interface {
|
|
4
|
-
getFunction(nameOrSignature: "
|
|
5
|
-
getEvent(nameOrSignatureOrTopic: "Approval" | "ApprovalForAll" | "NFTMinted" | "OwnershipTransferred" | "Transfer"): EventFragment;
|
|
6
|
-
encodeFunctionData(functionFragment: "
|
|
4
|
+
getFunction(nameOrSignature: "ADMIN_ROLE" | "DEFAULT_ADMIN_ROLE" | "MAX_FEE_PERCENTAGE" | "MINTER_ROLE" | "MINT_FEE_PERCENTAGE" | "WITHDRAW_ROLE" | "addMinter" | "allowBurning" | "approve" | "balanceOf" | "baseURI" | "getAllTokens()" | "getAllTokens(uint256,uint256)" | "getApproved" | "getHousePrice" | "getMintPrice" | "getRoleAdmin" | "getTokensByOwner(address)" | "getTokensByOwner(address,uint256,uint256)" | "grantRole" | "hasRole" | "isApprovedForAll" | "mint" | "minterMint" | "name" | "owner" | "ownerOf" | "raac_hp" | "removeMinter" | "renounceOwnership" | "renounceRole" | "revokeRole" | "safeTransferFrom(address,address,uint256)" | "safeTransferFrom(address,address,uint256,bytes)" | "setAllowBurning" | "setApprovalForAll" | "setBaseUri" | "setMaxFee" | "setMintFee" | "setTreasury" | "supportsInterface" | "symbol" | "token" | "tokenByIndex" | "tokenOfOwnerByIndex" | "tokenURI" | "totalSupply" | "transferFrom" | "transferOwnership" | "transferRole" | "treasury" | "withdrawUnderlying"): FunctionFragment;
|
|
5
|
+
getEvent(nameOrSignatureOrTopic: "AllowBurningUpdated" | "Approval" | "ApprovalForAll" | "BaseURIUpdated" | "MaxFeeUpdated" | "MintFeeUpdated" | "MinterRoleTransferred" | "NFTFeePaid" | "NFTFeeUpdated" | "NFTMinted" | "OwnershipTransferred" | "RoleAdminChanged" | "RoleGranted" | "RoleRevoked" | "Transfer"): EventFragment;
|
|
6
|
+
encodeFunctionData(functionFragment: "ADMIN_ROLE", values?: undefined): string;
|
|
7
|
+
encodeFunctionData(functionFragment: "DEFAULT_ADMIN_ROLE", values?: undefined): string;
|
|
8
|
+
encodeFunctionData(functionFragment: "MAX_FEE_PERCENTAGE", values?: undefined): string;
|
|
9
|
+
encodeFunctionData(functionFragment: "MINTER_ROLE", values?: undefined): string;
|
|
10
|
+
encodeFunctionData(functionFragment: "MINT_FEE_PERCENTAGE", values?: undefined): string;
|
|
11
|
+
encodeFunctionData(functionFragment: "WITHDRAW_ROLE", values?: undefined): string;
|
|
12
|
+
encodeFunctionData(functionFragment: "addMinter", values: [AddressLike]): string;
|
|
13
|
+
encodeFunctionData(functionFragment: "allowBurning", values?: undefined): string;
|
|
7
14
|
encodeFunctionData(functionFragment: "approve", values: [AddressLike, BigNumberish]): string;
|
|
8
15
|
encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike]): string;
|
|
9
16
|
encodeFunctionData(functionFragment: "baseURI", values?: undefined): string;
|
|
10
|
-
encodeFunctionData(functionFragment: "
|
|
17
|
+
encodeFunctionData(functionFragment: "getAllTokens()", values?: undefined): string;
|
|
18
|
+
encodeFunctionData(functionFragment: "getAllTokens(uint256,uint256)", values: [BigNumberish, BigNumberish]): string;
|
|
11
19
|
encodeFunctionData(functionFragment: "getApproved", values: [BigNumberish]): string;
|
|
12
20
|
encodeFunctionData(functionFragment: "getHousePrice", values: [BigNumberish]): string;
|
|
21
|
+
encodeFunctionData(functionFragment: "getMintPrice", values: [BigNumberish]): string;
|
|
22
|
+
encodeFunctionData(functionFragment: "getRoleAdmin", values: [BytesLike]): string;
|
|
23
|
+
encodeFunctionData(functionFragment: "getTokensByOwner(address)", values: [AddressLike]): string;
|
|
24
|
+
encodeFunctionData(functionFragment: "getTokensByOwner(address,uint256,uint256)", values: [AddressLike, BigNumberish, BigNumberish]): string;
|
|
25
|
+
encodeFunctionData(functionFragment: "grantRole", values: [BytesLike, AddressLike]): string;
|
|
26
|
+
encodeFunctionData(functionFragment: "hasRole", values: [BytesLike, AddressLike]): string;
|
|
13
27
|
encodeFunctionData(functionFragment: "isApprovedForAll", values: [AddressLike, AddressLike]): string;
|
|
14
28
|
encodeFunctionData(functionFragment: "mint", values: [BigNumberish, BigNumberish]): string;
|
|
29
|
+
encodeFunctionData(functionFragment: "minterMint", values: [AddressLike, BigNumberish]): string;
|
|
15
30
|
encodeFunctionData(functionFragment: "name", values?: undefined): string;
|
|
16
31
|
encodeFunctionData(functionFragment: "owner", values?: undefined): string;
|
|
17
32
|
encodeFunctionData(functionFragment: "ownerOf", values: [BigNumberish]): string;
|
|
18
33
|
encodeFunctionData(functionFragment: "raac_hp", values?: undefined): string;
|
|
34
|
+
encodeFunctionData(functionFragment: "removeMinter", values: [AddressLike]): string;
|
|
19
35
|
encodeFunctionData(functionFragment: "renounceOwnership", values?: undefined): string;
|
|
36
|
+
encodeFunctionData(functionFragment: "renounceRole", values: [BytesLike, AddressLike]): string;
|
|
37
|
+
encodeFunctionData(functionFragment: "revokeRole", values: [BytesLike, AddressLike]): string;
|
|
20
38
|
encodeFunctionData(functionFragment: "safeTransferFrom(address,address,uint256)", values: [AddressLike, AddressLike, BigNumberish]): string;
|
|
21
39
|
encodeFunctionData(functionFragment: "safeTransferFrom(address,address,uint256,bytes)", values: [AddressLike, AddressLike, BigNumberish, BytesLike]): string;
|
|
40
|
+
encodeFunctionData(functionFragment: "setAllowBurning", values: [boolean]): string;
|
|
22
41
|
encodeFunctionData(functionFragment: "setApprovalForAll", values: [AddressLike, boolean]): string;
|
|
23
42
|
encodeFunctionData(functionFragment: "setBaseUri", values: [string]): string;
|
|
43
|
+
encodeFunctionData(functionFragment: "setMaxFee", values: [BigNumberish]): string;
|
|
44
|
+
encodeFunctionData(functionFragment: "setMintFee", values: [BigNumberish]): string;
|
|
45
|
+
encodeFunctionData(functionFragment: "setTreasury", values: [AddressLike]): string;
|
|
24
46
|
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
|
|
25
47
|
encodeFunctionData(functionFragment: "symbol", values?: undefined): string;
|
|
26
48
|
encodeFunctionData(functionFragment: "token", values?: undefined): string;
|
|
@@ -30,24 +52,49 @@ export interface RAACNFTInterface extends Interface {
|
|
|
30
52
|
encodeFunctionData(functionFragment: "totalSupply", values?: undefined): string;
|
|
31
53
|
encodeFunctionData(functionFragment: "transferFrom", values: [AddressLike, AddressLike, BigNumberish]): string;
|
|
32
54
|
encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
|
|
33
|
-
|
|
55
|
+
encodeFunctionData(functionFragment: "transferRole", values: [BytesLike, AddressLike]): string;
|
|
56
|
+
encodeFunctionData(functionFragment: "treasury", values?: undefined): string;
|
|
57
|
+
encodeFunctionData(functionFragment: "withdrawUnderlying", values: [AddressLike, AddressLike, BigNumberish]): string;
|
|
58
|
+
decodeFunctionResult(functionFragment: "ADMIN_ROLE", data: BytesLike): Result;
|
|
59
|
+
decodeFunctionResult(functionFragment: "DEFAULT_ADMIN_ROLE", data: BytesLike): Result;
|
|
60
|
+
decodeFunctionResult(functionFragment: "MAX_FEE_PERCENTAGE", data: BytesLike): Result;
|
|
61
|
+
decodeFunctionResult(functionFragment: "MINTER_ROLE", data: BytesLike): Result;
|
|
62
|
+
decodeFunctionResult(functionFragment: "MINT_FEE_PERCENTAGE", data: BytesLike): Result;
|
|
63
|
+
decodeFunctionResult(functionFragment: "WITHDRAW_ROLE", data: BytesLike): Result;
|
|
64
|
+
decodeFunctionResult(functionFragment: "addMinter", data: BytesLike): Result;
|
|
65
|
+
decodeFunctionResult(functionFragment: "allowBurning", data: BytesLike): Result;
|
|
34
66
|
decodeFunctionResult(functionFragment: "approve", data: BytesLike): Result;
|
|
35
67
|
decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
|
|
36
68
|
decodeFunctionResult(functionFragment: "baseURI", data: BytesLike): Result;
|
|
37
|
-
decodeFunctionResult(functionFragment: "
|
|
69
|
+
decodeFunctionResult(functionFragment: "getAllTokens()", data: BytesLike): Result;
|
|
70
|
+
decodeFunctionResult(functionFragment: "getAllTokens(uint256,uint256)", data: BytesLike): Result;
|
|
38
71
|
decodeFunctionResult(functionFragment: "getApproved", data: BytesLike): Result;
|
|
39
72
|
decodeFunctionResult(functionFragment: "getHousePrice", data: BytesLike): Result;
|
|
73
|
+
decodeFunctionResult(functionFragment: "getMintPrice", data: BytesLike): Result;
|
|
74
|
+
decodeFunctionResult(functionFragment: "getRoleAdmin", data: BytesLike): Result;
|
|
75
|
+
decodeFunctionResult(functionFragment: "getTokensByOwner(address)", data: BytesLike): Result;
|
|
76
|
+
decodeFunctionResult(functionFragment: "getTokensByOwner(address,uint256,uint256)", data: BytesLike): Result;
|
|
77
|
+
decodeFunctionResult(functionFragment: "grantRole", data: BytesLike): Result;
|
|
78
|
+
decodeFunctionResult(functionFragment: "hasRole", data: BytesLike): Result;
|
|
40
79
|
decodeFunctionResult(functionFragment: "isApprovedForAll", data: BytesLike): Result;
|
|
41
80
|
decodeFunctionResult(functionFragment: "mint", data: BytesLike): Result;
|
|
81
|
+
decodeFunctionResult(functionFragment: "minterMint", data: BytesLike): Result;
|
|
42
82
|
decodeFunctionResult(functionFragment: "name", data: BytesLike): Result;
|
|
43
83
|
decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
|
|
44
84
|
decodeFunctionResult(functionFragment: "ownerOf", data: BytesLike): Result;
|
|
45
85
|
decodeFunctionResult(functionFragment: "raac_hp", data: BytesLike): Result;
|
|
86
|
+
decodeFunctionResult(functionFragment: "removeMinter", data: BytesLike): Result;
|
|
46
87
|
decodeFunctionResult(functionFragment: "renounceOwnership", data: BytesLike): Result;
|
|
88
|
+
decodeFunctionResult(functionFragment: "renounceRole", data: BytesLike): Result;
|
|
89
|
+
decodeFunctionResult(functionFragment: "revokeRole", data: BytesLike): Result;
|
|
47
90
|
decodeFunctionResult(functionFragment: "safeTransferFrom(address,address,uint256)", data: BytesLike): Result;
|
|
48
91
|
decodeFunctionResult(functionFragment: "safeTransferFrom(address,address,uint256,bytes)", data: BytesLike): Result;
|
|
92
|
+
decodeFunctionResult(functionFragment: "setAllowBurning", data: BytesLike): Result;
|
|
49
93
|
decodeFunctionResult(functionFragment: "setApprovalForAll", data: BytesLike): Result;
|
|
50
94
|
decodeFunctionResult(functionFragment: "setBaseUri", data: BytesLike): Result;
|
|
95
|
+
decodeFunctionResult(functionFragment: "setMaxFee", data: BytesLike): Result;
|
|
96
|
+
decodeFunctionResult(functionFragment: "setMintFee", data: BytesLike): Result;
|
|
97
|
+
decodeFunctionResult(functionFragment: "setTreasury", data: BytesLike): Result;
|
|
51
98
|
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
|
|
52
99
|
decodeFunctionResult(functionFragment: "symbol", data: BytesLike): Result;
|
|
53
100
|
decodeFunctionResult(functionFragment: "token", data: BytesLike): Result;
|
|
@@ -57,6 +104,20 @@ export interface RAACNFTInterface extends Interface {
|
|
|
57
104
|
decodeFunctionResult(functionFragment: "totalSupply", data: BytesLike): Result;
|
|
58
105
|
decodeFunctionResult(functionFragment: "transferFrom", data: BytesLike): Result;
|
|
59
106
|
decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
|
|
107
|
+
decodeFunctionResult(functionFragment: "transferRole", data: BytesLike): Result;
|
|
108
|
+
decodeFunctionResult(functionFragment: "treasury", data: BytesLike): Result;
|
|
109
|
+
decodeFunctionResult(functionFragment: "withdrawUnderlying", data: BytesLike): Result;
|
|
110
|
+
}
|
|
111
|
+
export declare namespace AllowBurningUpdatedEvent {
|
|
112
|
+
type InputTuple = [allowBurning: boolean];
|
|
113
|
+
type OutputTuple = [allowBurning: boolean];
|
|
114
|
+
interface OutputObject {
|
|
115
|
+
allowBurning: boolean;
|
|
116
|
+
}
|
|
117
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
118
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
119
|
+
type Log = TypedEventLog<Event>;
|
|
120
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
60
121
|
}
|
|
61
122
|
export declare namespace ApprovalEvent {
|
|
62
123
|
type InputTuple = [
|
|
@@ -96,17 +157,101 @@ export declare namespace ApprovalForAllEvent {
|
|
|
96
157
|
type Log = TypedEventLog<Event>;
|
|
97
158
|
type LogDescription = TypedLogDescription<Event>;
|
|
98
159
|
}
|
|
160
|
+
export declare namespace BaseURIUpdatedEvent {
|
|
161
|
+
type InputTuple = [uri: string];
|
|
162
|
+
type OutputTuple = [uri: string];
|
|
163
|
+
interface OutputObject {
|
|
164
|
+
uri: string;
|
|
165
|
+
}
|
|
166
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
167
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
168
|
+
type Log = TypedEventLog<Event>;
|
|
169
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
170
|
+
}
|
|
171
|
+
export declare namespace MaxFeeUpdatedEvent {
|
|
172
|
+
type InputTuple = [maxFee: BigNumberish];
|
|
173
|
+
type OutputTuple = [maxFee: bigint];
|
|
174
|
+
interface OutputObject {
|
|
175
|
+
maxFee: bigint;
|
|
176
|
+
}
|
|
177
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
178
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
179
|
+
type Log = TypedEventLog<Event>;
|
|
180
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
181
|
+
}
|
|
182
|
+
export declare namespace MintFeeUpdatedEvent {
|
|
183
|
+
type InputTuple = [mintFee: BigNumberish];
|
|
184
|
+
type OutputTuple = [mintFee: bigint];
|
|
185
|
+
interface OutputObject {
|
|
186
|
+
mintFee: bigint;
|
|
187
|
+
}
|
|
188
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
189
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
190
|
+
type Log = TypedEventLog<Event>;
|
|
191
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
192
|
+
}
|
|
193
|
+
export declare namespace MinterRoleTransferredEvent {
|
|
194
|
+
type InputTuple = [
|
|
195
|
+
role: BytesLike,
|
|
196
|
+
previousMinter: AddressLike,
|
|
197
|
+
newMinter: AddressLike
|
|
198
|
+
];
|
|
199
|
+
type OutputTuple = [
|
|
200
|
+
role: string,
|
|
201
|
+
previousMinter: string,
|
|
202
|
+
newMinter: string
|
|
203
|
+
];
|
|
204
|
+
interface OutputObject {
|
|
205
|
+
role: string;
|
|
206
|
+
previousMinter: string;
|
|
207
|
+
newMinter: string;
|
|
208
|
+
}
|
|
209
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
210
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
211
|
+
type Log = TypedEventLog<Event>;
|
|
212
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
213
|
+
}
|
|
214
|
+
export declare namespace NFTFeePaidEvent {
|
|
215
|
+
type InputTuple = [payer: AddressLike, fee: BigNumberish];
|
|
216
|
+
type OutputTuple = [payer: string, fee: bigint];
|
|
217
|
+
interface OutputObject {
|
|
218
|
+
payer: string;
|
|
219
|
+
fee: bigint;
|
|
220
|
+
}
|
|
221
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
222
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
223
|
+
type Log = TypedEventLog<Event>;
|
|
224
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
225
|
+
}
|
|
226
|
+
export declare namespace NFTFeeUpdatedEvent {
|
|
227
|
+
type InputTuple = [fee: BigNumberish];
|
|
228
|
+
type OutputTuple = [fee: bigint];
|
|
229
|
+
interface OutputObject {
|
|
230
|
+
fee: bigint;
|
|
231
|
+
}
|
|
232
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
233
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
234
|
+
type Log = TypedEventLog<Event>;
|
|
235
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
236
|
+
}
|
|
99
237
|
export declare namespace NFTMintedEvent {
|
|
100
238
|
type InputTuple = [
|
|
101
239
|
minter: AddressLike,
|
|
102
240
|
tokenId: BigNumberish,
|
|
103
|
-
price: BigNumberish
|
|
241
|
+
price: BigNumberish,
|
|
242
|
+
mintFee: BigNumberish
|
|
243
|
+
];
|
|
244
|
+
type OutputTuple = [
|
|
245
|
+
minter: string,
|
|
246
|
+
tokenId: bigint,
|
|
247
|
+
price: bigint,
|
|
248
|
+
mintFee: bigint
|
|
104
249
|
];
|
|
105
|
-
type OutputTuple = [minter: string, tokenId: bigint, price: bigint];
|
|
106
250
|
interface OutputObject {
|
|
107
251
|
minter: string;
|
|
108
252
|
tokenId: bigint;
|
|
109
253
|
price: bigint;
|
|
254
|
+
mintFee: bigint;
|
|
110
255
|
}
|
|
111
256
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
112
257
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
@@ -125,6 +270,61 @@ export declare namespace OwnershipTransferredEvent {
|
|
|
125
270
|
type Log = TypedEventLog<Event>;
|
|
126
271
|
type LogDescription = TypedLogDescription<Event>;
|
|
127
272
|
}
|
|
273
|
+
export declare namespace RoleAdminChangedEvent {
|
|
274
|
+
type InputTuple = [
|
|
275
|
+
role: BytesLike,
|
|
276
|
+
previousAdminRole: BytesLike,
|
|
277
|
+
newAdminRole: BytesLike
|
|
278
|
+
];
|
|
279
|
+
type OutputTuple = [
|
|
280
|
+
role: string,
|
|
281
|
+
previousAdminRole: string,
|
|
282
|
+
newAdminRole: string
|
|
283
|
+
];
|
|
284
|
+
interface OutputObject {
|
|
285
|
+
role: string;
|
|
286
|
+
previousAdminRole: string;
|
|
287
|
+
newAdminRole: string;
|
|
288
|
+
}
|
|
289
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
290
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
291
|
+
type Log = TypedEventLog<Event>;
|
|
292
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
293
|
+
}
|
|
294
|
+
export declare namespace RoleGrantedEvent {
|
|
295
|
+
type InputTuple = [
|
|
296
|
+
role: BytesLike,
|
|
297
|
+
account: AddressLike,
|
|
298
|
+
sender: AddressLike
|
|
299
|
+
];
|
|
300
|
+
type OutputTuple = [role: string, account: string, sender: string];
|
|
301
|
+
interface OutputObject {
|
|
302
|
+
role: string;
|
|
303
|
+
account: string;
|
|
304
|
+
sender: string;
|
|
305
|
+
}
|
|
306
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
307
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
308
|
+
type Log = TypedEventLog<Event>;
|
|
309
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
310
|
+
}
|
|
311
|
+
export declare namespace RoleRevokedEvent {
|
|
312
|
+
type InputTuple = [
|
|
313
|
+
role: BytesLike,
|
|
314
|
+
account: AddressLike,
|
|
315
|
+
sender: AddressLike
|
|
316
|
+
];
|
|
317
|
+
type OutputTuple = [role: string, account: string, sender: string];
|
|
318
|
+
interface OutputObject {
|
|
319
|
+
role: string;
|
|
320
|
+
account: string;
|
|
321
|
+
sender: string;
|
|
322
|
+
}
|
|
323
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
324
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
325
|
+
type Log = TypedEventLog<Event>;
|
|
326
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
327
|
+
}
|
|
128
328
|
export declare namespace TransferEvent {
|
|
129
329
|
type InputTuple = [
|
|
130
330
|
from: AddressLike,
|
|
@@ -155,11 +355,14 @@ export interface RAACNFT extends BaseContract {
|
|
|
155
355
|
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
156
356
|
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
157
357
|
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
], [
|
|
161
|
-
|
|
162
|
-
], "
|
|
358
|
+
ADMIN_ROLE: TypedContractMethod<[], [string], "view">;
|
|
359
|
+
DEFAULT_ADMIN_ROLE: TypedContractMethod<[], [string], "view">;
|
|
360
|
+
MAX_FEE_PERCENTAGE: TypedContractMethod<[], [bigint], "view">;
|
|
361
|
+
MINTER_ROLE: TypedContractMethod<[], [string], "view">;
|
|
362
|
+
MINT_FEE_PERCENTAGE: TypedContractMethod<[], [bigint], "view">;
|
|
363
|
+
WITHDRAW_ROLE: TypedContractMethod<[], [string], "view">;
|
|
364
|
+
addMinter: TypedContractMethod<[minter: AddressLike], [void], "nonpayable">;
|
|
365
|
+
allowBurning: TypedContractMethod<[], [boolean], "view">;
|
|
163
366
|
approve: TypedContractMethod<[
|
|
164
367
|
to: AddressLike,
|
|
165
368
|
tokenId: BigNumberish
|
|
@@ -168,13 +371,45 @@ export interface RAACNFT extends BaseContract {
|
|
|
168
371
|
], "nonpayable">;
|
|
169
372
|
balanceOf: TypedContractMethod<[owner: AddressLike], [bigint], "view">;
|
|
170
373
|
baseURI: TypedContractMethod<[], [string], "view">;
|
|
171
|
-
|
|
374
|
+
"getAllTokens()": TypedContractMethod<[], [bigint[]], "view">;
|
|
375
|
+
"getAllTokens(uint256,uint256)": TypedContractMethod<[
|
|
376
|
+
start: BigNumberish,
|
|
377
|
+
end: BigNumberish
|
|
378
|
+
], [
|
|
379
|
+
bigint[]
|
|
380
|
+
], "view">;
|
|
172
381
|
getApproved: TypedContractMethod<[tokenId: BigNumberish], [string], "view">;
|
|
173
382
|
getHousePrice: TypedContractMethod<[
|
|
174
383
|
_tokenId: BigNumberish
|
|
175
384
|
], [
|
|
176
385
|
bigint
|
|
177
386
|
], "view">;
|
|
387
|
+
getMintPrice: TypedContractMethod<[_tokenId: BigNumberish], [bigint], "view">;
|
|
388
|
+
getRoleAdmin: TypedContractMethod<[role: BytesLike], [string], "view">;
|
|
389
|
+
"getTokensByOwner(address)": TypedContractMethod<[
|
|
390
|
+
owner: AddressLike
|
|
391
|
+
], [
|
|
392
|
+
bigint[]
|
|
393
|
+
], "view">;
|
|
394
|
+
"getTokensByOwner(address,uint256,uint256)": TypedContractMethod<[
|
|
395
|
+
owner: AddressLike,
|
|
396
|
+
start: BigNumberish,
|
|
397
|
+
end: BigNumberish
|
|
398
|
+
], [
|
|
399
|
+
bigint[]
|
|
400
|
+
], "view">;
|
|
401
|
+
grantRole: TypedContractMethod<[
|
|
402
|
+
role: BytesLike,
|
|
403
|
+
account: AddressLike
|
|
404
|
+
], [
|
|
405
|
+
void
|
|
406
|
+
], "nonpayable">;
|
|
407
|
+
hasRole: TypedContractMethod<[
|
|
408
|
+
role: BytesLike,
|
|
409
|
+
account: AddressLike
|
|
410
|
+
], [
|
|
411
|
+
boolean
|
|
412
|
+
], "view">;
|
|
178
413
|
isApprovedForAll: TypedContractMethod<[
|
|
179
414
|
owner: AddressLike,
|
|
180
415
|
operator: AddressLike
|
|
@@ -187,11 +422,34 @@ export interface RAACNFT extends BaseContract {
|
|
|
187
422
|
], [
|
|
188
423
|
void
|
|
189
424
|
], "nonpayable">;
|
|
425
|
+
minterMint: TypedContractMethod<[
|
|
426
|
+
to: AddressLike,
|
|
427
|
+
tokenId: BigNumberish
|
|
428
|
+
], [
|
|
429
|
+
void
|
|
430
|
+
], "nonpayable">;
|
|
190
431
|
name: TypedContractMethod<[], [string], "view">;
|
|
191
432
|
owner: TypedContractMethod<[], [string], "view">;
|
|
192
433
|
ownerOf: TypedContractMethod<[tokenId: BigNumberish], [string], "view">;
|
|
193
434
|
raac_hp: TypedContractMethod<[], [string], "view">;
|
|
435
|
+
removeMinter: TypedContractMethod<[
|
|
436
|
+
minter: AddressLike
|
|
437
|
+
], [
|
|
438
|
+
void
|
|
439
|
+
], "nonpayable">;
|
|
194
440
|
renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
|
|
441
|
+
renounceRole: TypedContractMethod<[
|
|
442
|
+
role: BytesLike,
|
|
443
|
+
callerConfirmation: AddressLike
|
|
444
|
+
], [
|
|
445
|
+
void
|
|
446
|
+
], "nonpayable">;
|
|
447
|
+
revokeRole: TypedContractMethod<[
|
|
448
|
+
role: BytesLike,
|
|
449
|
+
account: AddressLike
|
|
450
|
+
], [
|
|
451
|
+
void
|
|
452
|
+
], "nonpayable">;
|
|
195
453
|
"safeTransferFrom(address,address,uint256)": TypedContractMethod<[
|
|
196
454
|
from: AddressLike,
|
|
197
455
|
to: AddressLike,
|
|
@@ -207,6 +465,11 @@ export interface RAACNFT extends BaseContract {
|
|
|
207
465
|
], [
|
|
208
466
|
void
|
|
209
467
|
], "nonpayable">;
|
|
468
|
+
setAllowBurning: TypedContractMethod<[
|
|
469
|
+
_allowBurning: boolean
|
|
470
|
+
], [
|
|
471
|
+
void
|
|
472
|
+
], "nonpayable">;
|
|
210
473
|
setApprovalForAll: TypedContractMethod<[
|
|
211
474
|
operator: AddressLike,
|
|
212
475
|
approved: boolean
|
|
@@ -214,6 +477,17 @@ export interface RAACNFT extends BaseContract {
|
|
|
214
477
|
void
|
|
215
478
|
], "nonpayable">;
|
|
216
479
|
setBaseUri: TypedContractMethod<[_uri: string], [void], "nonpayable">;
|
|
480
|
+
setMaxFee: TypedContractMethod<[
|
|
481
|
+
_maxFeePercentage: BigNumberish
|
|
482
|
+
], [
|
|
483
|
+
void
|
|
484
|
+
], "nonpayable">;
|
|
485
|
+
setMintFee: TypedContractMethod<[newFee: BigNumberish], [void], "nonpayable">;
|
|
486
|
+
setTreasury: TypedContractMethod<[
|
|
487
|
+
_treasury: AddressLike
|
|
488
|
+
], [
|
|
489
|
+
void
|
|
490
|
+
], "nonpayable">;
|
|
217
491
|
supportsInterface: TypedContractMethod<[
|
|
218
492
|
interfaceId: BytesLike
|
|
219
493
|
], [
|
|
@@ -228,7 +502,7 @@ export interface RAACNFT extends BaseContract {
|
|
|
228
502
|
], [
|
|
229
503
|
bigint
|
|
230
504
|
], "view">;
|
|
231
|
-
tokenURI: TypedContractMethod<[
|
|
505
|
+
tokenURI: TypedContractMethod<[_tokenId: BigNumberish], [string], "view">;
|
|
232
506
|
totalSupply: TypedContractMethod<[], [bigint], "view">;
|
|
233
507
|
transferFrom: TypedContractMethod<[
|
|
234
508
|
from: AddressLike,
|
|
@@ -242,8 +516,29 @@ export interface RAACNFT extends BaseContract {
|
|
|
242
516
|
], [
|
|
243
517
|
void
|
|
244
518
|
], "nonpayable">;
|
|
519
|
+
transferRole: TypedContractMethod<[
|
|
520
|
+
role: BytesLike,
|
|
521
|
+
newMinter: AddressLike
|
|
522
|
+
], [
|
|
523
|
+
void
|
|
524
|
+
], "nonpayable">;
|
|
525
|
+
treasury: TypedContractMethod<[], [string], "view">;
|
|
526
|
+
withdrawUnderlying: TypedContractMethod<[
|
|
527
|
+
tokenAddress: AddressLike,
|
|
528
|
+
to: AddressLike,
|
|
529
|
+
amount: BigNumberish
|
|
530
|
+
], [
|
|
531
|
+
boolean
|
|
532
|
+
], "nonpayable">;
|
|
245
533
|
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
246
|
-
getFunction(nameOrSignature: "
|
|
534
|
+
getFunction(nameOrSignature: "ADMIN_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
535
|
+
getFunction(nameOrSignature: "DEFAULT_ADMIN_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
536
|
+
getFunction(nameOrSignature: "MAX_FEE_PERCENTAGE"): TypedContractMethod<[], [bigint], "view">;
|
|
537
|
+
getFunction(nameOrSignature: "MINTER_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
538
|
+
getFunction(nameOrSignature: "MINT_FEE_PERCENTAGE"): TypedContractMethod<[], [bigint], "view">;
|
|
539
|
+
getFunction(nameOrSignature: "WITHDRAW_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
540
|
+
getFunction(nameOrSignature: "addMinter"): TypedContractMethod<[minter: AddressLike], [void], "nonpayable">;
|
|
541
|
+
getFunction(nameOrSignature: "allowBurning"): TypedContractMethod<[], [boolean], "view">;
|
|
247
542
|
getFunction(nameOrSignature: "approve"): TypedContractMethod<[
|
|
248
543
|
to: AddressLike,
|
|
249
544
|
tokenId: BigNumberish
|
|
@@ -252,9 +547,37 @@ export interface RAACNFT extends BaseContract {
|
|
|
252
547
|
], "nonpayable">;
|
|
253
548
|
getFunction(nameOrSignature: "balanceOf"): TypedContractMethod<[owner: AddressLike], [bigint], "view">;
|
|
254
549
|
getFunction(nameOrSignature: "baseURI"): TypedContractMethod<[], [string], "view">;
|
|
255
|
-
getFunction(nameOrSignature: "
|
|
550
|
+
getFunction(nameOrSignature: "getAllTokens()"): TypedContractMethod<[], [bigint[]], "view">;
|
|
551
|
+
getFunction(nameOrSignature: "getAllTokens(uint256,uint256)"): TypedContractMethod<[
|
|
552
|
+
start: BigNumberish,
|
|
553
|
+
end: BigNumberish
|
|
554
|
+
], [
|
|
555
|
+
bigint[]
|
|
556
|
+
], "view">;
|
|
256
557
|
getFunction(nameOrSignature: "getApproved"): TypedContractMethod<[tokenId: BigNumberish], [string], "view">;
|
|
257
558
|
getFunction(nameOrSignature: "getHousePrice"): TypedContractMethod<[_tokenId: BigNumberish], [bigint], "view">;
|
|
559
|
+
getFunction(nameOrSignature: "getMintPrice"): TypedContractMethod<[_tokenId: BigNumberish], [bigint], "view">;
|
|
560
|
+
getFunction(nameOrSignature: "getRoleAdmin"): TypedContractMethod<[role: BytesLike], [string], "view">;
|
|
561
|
+
getFunction(nameOrSignature: "getTokensByOwner(address)"): TypedContractMethod<[owner: AddressLike], [bigint[]], "view">;
|
|
562
|
+
getFunction(nameOrSignature: "getTokensByOwner(address,uint256,uint256)"): TypedContractMethod<[
|
|
563
|
+
owner: AddressLike,
|
|
564
|
+
start: BigNumberish,
|
|
565
|
+
end: BigNumberish
|
|
566
|
+
], [
|
|
567
|
+
bigint[]
|
|
568
|
+
], "view">;
|
|
569
|
+
getFunction(nameOrSignature: "grantRole"): TypedContractMethod<[
|
|
570
|
+
role: BytesLike,
|
|
571
|
+
account: AddressLike
|
|
572
|
+
], [
|
|
573
|
+
void
|
|
574
|
+
], "nonpayable">;
|
|
575
|
+
getFunction(nameOrSignature: "hasRole"): TypedContractMethod<[
|
|
576
|
+
role: BytesLike,
|
|
577
|
+
account: AddressLike
|
|
578
|
+
], [
|
|
579
|
+
boolean
|
|
580
|
+
], "view">;
|
|
258
581
|
getFunction(nameOrSignature: "isApprovedForAll"): TypedContractMethod<[
|
|
259
582
|
owner: AddressLike,
|
|
260
583
|
operator: AddressLike
|
|
@@ -267,11 +590,30 @@ export interface RAACNFT extends BaseContract {
|
|
|
267
590
|
], [
|
|
268
591
|
void
|
|
269
592
|
], "nonpayable">;
|
|
593
|
+
getFunction(nameOrSignature: "minterMint"): TypedContractMethod<[
|
|
594
|
+
to: AddressLike,
|
|
595
|
+
tokenId: BigNumberish
|
|
596
|
+
], [
|
|
597
|
+
void
|
|
598
|
+
], "nonpayable">;
|
|
270
599
|
getFunction(nameOrSignature: "name"): TypedContractMethod<[], [string], "view">;
|
|
271
600
|
getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
|
|
272
601
|
getFunction(nameOrSignature: "ownerOf"): TypedContractMethod<[tokenId: BigNumberish], [string], "view">;
|
|
273
602
|
getFunction(nameOrSignature: "raac_hp"): TypedContractMethod<[], [string], "view">;
|
|
603
|
+
getFunction(nameOrSignature: "removeMinter"): TypedContractMethod<[minter: AddressLike], [void], "nonpayable">;
|
|
274
604
|
getFunction(nameOrSignature: "renounceOwnership"): TypedContractMethod<[], [void], "nonpayable">;
|
|
605
|
+
getFunction(nameOrSignature: "renounceRole"): TypedContractMethod<[
|
|
606
|
+
role: BytesLike,
|
|
607
|
+
callerConfirmation: AddressLike
|
|
608
|
+
], [
|
|
609
|
+
void
|
|
610
|
+
], "nonpayable">;
|
|
611
|
+
getFunction(nameOrSignature: "revokeRole"): TypedContractMethod<[
|
|
612
|
+
role: BytesLike,
|
|
613
|
+
account: AddressLike
|
|
614
|
+
], [
|
|
615
|
+
void
|
|
616
|
+
], "nonpayable">;
|
|
275
617
|
getFunction(nameOrSignature: "safeTransferFrom(address,address,uint256)"): TypedContractMethod<[
|
|
276
618
|
from: AddressLike,
|
|
277
619
|
to: AddressLike,
|
|
@@ -287,6 +629,7 @@ export interface RAACNFT extends BaseContract {
|
|
|
287
629
|
], [
|
|
288
630
|
void
|
|
289
631
|
], "nonpayable">;
|
|
632
|
+
getFunction(nameOrSignature: "setAllowBurning"): TypedContractMethod<[_allowBurning: boolean], [void], "nonpayable">;
|
|
290
633
|
getFunction(nameOrSignature: "setApprovalForAll"): TypedContractMethod<[
|
|
291
634
|
operator: AddressLike,
|
|
292
635
|
approved: boolean
|
|
@@ -294,6 +637,13 @@ export interface RAACNFT extends BaseContract {
|
|
|
294
637
|
void
|
|
295
638
|
], "nonpayable">;
|
|
296
639
|
getFunction(nameOrSignature: "setBaseUri"): TypedContractMethod<[_uri: string], [void], "nonpayable">;
|
|
640
|
+
getFunction(nameOrSignature: "setMaxFee"): TypedContractMethod<[
|
|
641
|
+
_maxFeePercentage: BigNumberish
|
|
642
|
+
], [
|
|
643
|
+
void
|
|
644
|
+
], "nonpayable">;
|
|
645
|
+
getFunction(nameOrSignature: "setMintFee"): TypedContractMethod<[newFee: BigNumberish], [void], "nonpayable">;
|
|
646
|
+
getFunction(nameOrSignature: "setTreasury"): TypedContractMethod<[_treasury: AddressLike], [void], "nonpayable">;
|
|
297
647
|
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
|
|
298
648
|
getFunction(nameOrSignature: "symbol"): TypedContractMethod<[], [string], "view">;
|
|
299
649
|
getFunction(nameOrSignature: "token"): TypedContractMethod<[], [string], "view">;
|
|
@@ -304,7 +654,7 @@ export interface RAACNFT extends BaseContract {
|
|
|
304
654
|
], [
|
|
305
655
|
bigint
|
|
306
656
|
], "view">;
|
|
307
|
-
getFunction(nameOrSignature: "tokenURI"): TypedContractMethod<[
|
|
657
|
+
getFunction(nameOrSignature: "tokenURI"): TypedContractMethod<[_tokenId: BigNumberish], [string], "view">;
|
|
308
658
|
getFunction(nameOrSignature: "totalSupply"): TypedContractMethod<[], [bigint], "view">;
|
|
309
659
|
getFunction(nameOrSignature: "transferFrom"): TypedContractMethod<[
|
|
310
660
|
from: AddressLike,
|
|
@@ -314,20 +664,64 @@ export interface RAACNFT extends BaseContract {
|
|
|
314
664
|
void
|
|
315
665
|
], "nonpayable">;
|
|
316
666
|
getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
|
|
667
|
+
getFunction(nameOrSignature: "transferRole"): TypedContractMethod<[
|
|
668
|
+
role: BytesLike,
|
|
669
|
+
newMinter: AddressLike
|
|
670
|
+
], [
|
|
671
|
+
void
|
|
672
|
+
], "nonpayable">;
|
|
673
|
+
getFunction(nameOrSignature: "treasury"): TypedContractMethod<[], [string], "view">;
|
|
674
|
+
getFunction(nameOrSignature: "withdrawUnderlying"): TypedContractMethod<[
|
|
675
|
+
tokenAddress: AddressLike,
|
|
676
|
+
to: AddressLike,
|
|
677
|
+
amount: BigNumberish
|
|
678
|
+
], [
|
|
679
|
+
boolean
|
|
680
|
+
], "nonpayable">;
|
|
681
|
+
getEvent(key: "AllowBurningUpdated"): TypedContractEvent<AllowBurningUpdatedEvent.InputTuple, AllowBurningUpdatedEvent.OutputTuple, AllowBurningUpdatedEvent.OutputObject>;
|
|
317
682
|
getEvent(key: "Approval"): TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
|
|
318
683
|
getEvent(key: "ApprovalForAll"): TypedContractEvent<ApprovalForAllEvent.InputTuple, ApprovalForAllEvent.OutputTuple, ApprovalForAllEvent.OutputObject>;
|
|
684
|
+
getEvent(key: "BaseURIUpdated"): TypedContractEvent<BaseURIUpdatedEvent.InputTuple, BaseURIUpdatedEvent.OutputTuple, BaseURIUpdatedEvent.OutputObject>;
|
|
685
|
+
getEvent(key: "MaxFeeUpdated"): TypedContractEvent<MaxFeeUpdatedEvent.InputTuple, MaxFeeUpdatedEvent.OutputTuple, MaxFeeUpdatedEvent.OutputObject>;
|
|
686
|
+
getEvent(key: "MintFeeUpdated"): TypedContractEvent<MintFeeUpdatedEvent.InputTuple, MintFeeUpdatedEvent.OutputTuple, MintFeeUpdatedEvent.OutputObject>;
|
|
687
|
+
getEvent(key: "MinterRoleTransferred"): TypedContractEvent<MinterRoleTransferredEvent.InputTuple, MinterRoleTransferredEvent.OutputTuple, MinterRoleTransferredEvent.OutputObject>;
|
|
688
|
+
getEvent(key: "NFTFeePaid"): TypedContractEvent<NFTFeePaidEvent.InputTuple, NFTFeePaidEvent.OutputTuple, NFTFeePaidEvent.OutputObject>;
|
|
689
|
+
getEvent(key: "NFTFeeUpdated"): TypedContractEvent<NFTFeeUpdatedEvent.InputTuple, NFTFeeUpdatedEvent.OutputTuple, NFTFeeUpdatedEvent.OutputObject>;
|
|
319
690
|
getEvent(key: "NFTMinted"): TypedContractEvent<NFTMintedEvent.InputTuple, NFTMintedEvent.OutputTuple, NFTMintedEvent.OutputObject>;
|
|
320
691
|
getEvent(key: "OwnershipTransferred"): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
692
|
+
getEvent(key: "RoleAdminChanged"): TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
693
|
+
getEvent(key: "RoleGranted"): TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
694
|
+
getEvent(key: "RoleRevoked"): TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
321
695
|
getEvent(key: "Transfer"): TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
322
696
|
filters: {
|
|
697
|
+
"AllowBurningUpdated(bool)": TypedContractEvent<AllowBurningUpdatedEvent.InputTuple, AllowBurningUpdatedEvent.OutputTuple, AllowBurningUpdatedEvent.OutputObject>;
|
|
698
|
+
AllowBurningUpdated: TypedContractEvent<AllowBurningUpdatedEvent.InputTuple, AllowBurningUpdatedEvent.OutputTuple, AllowBurningUpdatedEvent.OutputObject>;
|
|
323
699
|
"Approval(address,address,uint256)": TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
|
|
324
700
|
Approval: TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
|
|
325
701
|
"ApprovalForAll(address,address,bool)": TypedContractEvent<ApprovalForAllEvent.InputTuple, ApprovalForAllEvent.OutputTuple, ApprovalForAllEvent.OutputObject>;
|
|
326
702
|
ApprovalForAll: TypedContractEvent<ApprovalForAllEvent.InputTuple, ApprovalForAllEvent.OutputTuple, ApprovalForAllEvent.OutputObject>;
|
|
327
|
-
"
|
|
703
|
+
"BaseURIUpdated(string)": TypedContractEvent<BaseURIUpdatedEvent.InputTuple, BaseURIUpdatedEvent.OutputTuple, BaseURIUpdatedEvent.OutputObject>;
|
|
704
|
+
BaseURIUpdated: TypedContractEvent<BaseURIUpdatedEvent.InputTuple, BaseURIUpdatedEvent.OutputTuple, BaseURIUpdatedEvent.OutputObject>;
|
|
705
|
+
"MaxFeeUpdated(uint256)": TypedContractEvent<MaxFeeUpdatedEvent.InputTuple, MaxFeeUpdatedEvent.OutputTuple, MaxFeeUpdatedEvent.OutputObject>;
|
|
706
|
+
MaxFeeUpdated: TypedContractEvent<MaxFeeUpdatedEvent.InputTuple, MaxFeeUpdatedEvent.OutputTuple, MaxFeeUpdatedEvent.OutputObject>;
|
|
707
|
+
"MintFeeUpdated(uint256)": TypedContractEvent<MintFeeUpdatedEvent.InputTuple, MintFeeUpdatedEvent.OutputTuple, MintFeeUpdatedEvent.OutputObject>;
|
|
708
|
+
MintFeeUpdated: TypedContractEvent<MintFeeUpdatedEvent.InputTuple, MintFeeUpdatedEvent.OutputTuple, MintFeeUpdatedEvent.OutputObject>;
|
|
709
|
+
"MinterRoleTransferred(bytes32,address,address)": TypedContractEvent<MinterRoleTransferredEvent.InputTuple, MinterRoleTransferredEvent.OutputTuple, MinterRoleTransferredEvent.OutputObject>;
|
|
710
|
+
MinterRoleTransferred: TypedContractEvent<MinterRoleTransferredEvent.InputTuple, MinterRoleTransferredEvent.OutputTuple, MinterRoleTransferredEvent.OutputObject>;
|
|
711
|
+
"NFTFeePaid(address,uint256)": TypedContractEvent<NFTFeePaidEvent.InputTuple, NFTFeePaidEvent.OutputTuple, NFTFeePaidEvent.OutputObject>;
|
|
712
|
+
NFTFeePaid: TypedContractEvent<NFTFeePaidEvent.InputTuple, NFTFeePaidEvent.OutputTuple, NFTFeePaidEvent.OutputObject>;
|
|
713
|
+
"NFTFeeUpdated(uint256)": TypedContractEvent<NFTFeeUpdatedEvent.InputTuple, NFTFeeUpdatedEvent.OutputTuple, NFTFeeUpdatedEvent.OutputObject>;
|
|
714
|
+
NFTFeeUpdated: TypedContractEvent<NFTFeeUpdatedEvent.InputTuple, NFTFeeUpdatedEvent.OutputTuple, NFTFeeUpdatedEvent.OutputObject>;
|
|
715
|
+
"NFTMinted(address,uint256,uint256,uint256)": TypedContractEvent<NFTMintedEvent.InputTuple, NFTMintedEvent.OutputTuple, NFTMintedEvent.OutputObject>;
|
|
328
716
|
NFTMinted: TypedContractEvent<NFTMintedEvent.InputTuple, NFTMintedEvent.OutputTuple, NFTMintedEvent.OutputObject>;
|
|
329
717
|
"OwnershipTransferred(address,address)": TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
330
718
|
OwnershipTransferred: TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
719
|
+
"RoleAdminChanged(bytes32,bytes32,bytes32)": TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
720
|
+
RoleAdminChanged: TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
721
|
+
"RoleGranted(bytes32,address,address)": TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
722
|
+
RoleGranted: TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
723
|
+
"RoleRevoked(bytes32,address,address)": TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
724
|
+
RoleRevoked: TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
331
725
|
"Transfer(address,address,uint256)": TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
332
726
|
Transfer: TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
333
727
|
};
|