@raac/rpc 1.2.0-beta.4 → 1.2.0-beta.5
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 +212 -0
- package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +2 -2
- package/dist/artifacts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.json +15 -2
- package/dist/artifacts/core/collectors/RAACTokenCollector.sol/RAACTokenCollector.json +2 -2
- package/dist/artifacts/core/collectors/RWAIndexTokenCollector.sol/RWAIndexTokenCollector.json +2 -2
- package/dist/artifacts/core/collectors/Treasury.sol/Treasury.json +2 -2
- package/dist/artifacts/core/governance/gauges/BaseGauge.sol/BaseGauge.json +0 -25
- package/dist/artifacts/core/governance/gauges/GaugeController.sol/GaugeController.json +2 -22
- package/dist/artifacts/core/governance/gauges/GaugeRewardsDistributor.sol/GaugeRewardsDistributor.json +2 -2
- package/dist/artifacts/core/governance/gauges/RAACGauge.sol/RAACGauge.json +2 -27
- package/dist/artifacts/core/governance/gauges/RWAGauge.sol/RWAGauge.json +2 -27
- package/dist/artifacts/core/governance/proposals/Governance.sol/Governance.json +2 -2
- package/dist/artifacts/core/governance/proposals/TimelockController.sol/TimelockController.json +2 -2
- package/dist/artifacts/core/lockers/RAACBotLocker.sol/RAACBotLocker.json +915 -0
- package/dist/artifacts/core/lockers/RAACLiquidLocker.sol/RAACLiquidLocker.json +2158 -0
- package/dist/artifacts/core/lockers/RAACMaturityVault.sol/RAACMaturityVault.json +911 -0
- package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +59 -741
- package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +106 -2
- package/dist/artifacts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.json +2 -2
- package/dist/artifacts/core/oracles/RAACHousePriceOracle.sol/RAACHousePriceOracle.json +2 -2
- package/dist/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json +2 -2
- package/dist/artifacts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json +15 -2
- package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +15 -2
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +20 -49
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +2 -2
- package/dist/artifacts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.json +2 -2
- package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +2 -2
- package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +21 -2
- package/dist/artifacts/core/tokens/LeRAAC.sol/LiquidEscrowedRAAC.json +621 -0
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +101 -74
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +24 -322
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +2 -2
- package/dist/artifacts/core/tokens/RWAIndexToken.sol/RWAIndexToken.json +66 -2
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +45 -32
- package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +15 -2
- package/dist/artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json +15 -2
- package/dist/artifacts/core/vaults/RWAVault.sol/RWAVault.json +46 -2
- package/dist/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +2 -2
- package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +2 -2
- package/dist/artifacts/zap/AladdinZap.sol/AladdinZap.json +398 -0
- package/dist/artifacts/zeno/Auction.sol/Auction.json +2 -2
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +2 -2
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +2 -2
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +2 -2
- package/dist/configs/chains/8453.json +34 -2
- package/dist/contracts/getContractAddress.js +2 -0
- package/dist/contracts/lockers/botLocker/_helpers.js +19 -0
- package/dist/contracts/lockers/botLocker/claim.js +16 -0
- package/dist/contracts/lockers/botLocker/getClaimable.js +12 -0
- package/dist/contracts/lockers/botLocker/getClaimables.js +16 -0
- package/dist/contracts/lockers/botLocker/getClaimedRewards.js +13 -0
- package/dist/contracts/lockers/botLocker/getLockedTokenIds.js +10 -0
- package/dist/contracts/lockers/botLocker/getLocks.js +27 -0
- package/dist/contracts/lockers/botLocker/getRewardTokenCount.js +10 -0
- package/dist/contracts/lockers/botLocker/getRewardTokens.js +9 -0
- package/dist/contracts/lockers/botLocker/lock.js +17 -0
- package/dist/contracts/lockers/botLocker/unlock.js +17 -0
- package/dist/contracts/lockers/botLocker/unlockAndClaim.js +16 -0
- package/dist/contracts/lockers/liquidLocker/_helpers.js +19 -0
- package/dist/contracts/lockers/liquidLocker/borrow.js +17 -0
- package/dist/contracts/lockers/liquidLocker/deposit.js +17 -0
- package/dist/contracts/lockers/liquidLocker/donate.js +16 -0
- package/dist/contracts/lockers/liquidLocker/getConfig.js +52 -0
- package/dist/contracts/lockers/liquidLocker/getGlobalInfo.js +39 -0
- package/dist/contracts/lockers/liquidLocker/getUserInfo.js +28 -0
- package/dist/contracts/lockers/liquidLocker/getUserLocks.js +26 -0
- package/dist/contracts/lockers/liquidLocker/harvest.js +17 -0
- package/dist/contracts/lockers/liquidLocker/isKeeper.js +9 -0
- package/dist/contracts/lockers/liquidLocker/processVaultExpiredLocks.js +17 -0
- package/dist/contracts/lockers/liquidLocker/repay.js +17 -0
- package/dist/contracts/lockers/liquidLocker/requestUnlock.js +17 -0
- package/dist/contracts/lockers/liquidLocker/voteGauge.js +17 -0
- package/dist/contracts/lockers/liquidLocker/voteGovernance.js +16 -0
- package/dist/contracts/lockers/liquidLocker/withdrawUnlocked.js +16 -0
- package/dist/contracts/lockers/maturityVault/_helpers.js +19 -0
- package/dist/contracts/lockers/maturityVault/claim.js +16 -0
- package/dist/contracts/lockers/maturityVault/deposit.js +17 -0
- package/dist/contracts/lockers/maturityVault/depositFor.js +16 -0
- package/dist/contracts/lockers/maturityVault/distribute.js +17 -0
- package/dist/contracts/lockers/maturityVault/exit.js +16 -0
- package/dist/contracts/lockers/maturityVault/getConfig.js +26 -0
- package/dist/contracts/lockers/maturityVault/getGlobalInfo.js +45 -0
- package/dist/contracts/lockers/maturityVault/getUserInfo.js +18 -0
- package/dist/contracts/lockers/maturityVault/harvest.js +16 -0
- package/dist/contracts/lockers/maturityVault/isWhitelisted.js +9 -0
- package/dist/contracts/lockers/maturityVault/updatePendingDistribution.js +16 -0
- package/dist/contracts/lockers/maturityVault/withdraw.js +16 -0
- package/dist/contracts/lockers/maturityVault/withdrawAll.js +16 -0
- package/dist/contracts/tokens/leRAAC/_helpers.js +19 -0
- package/dist/contracts/tokens/leRAAC/approve.js +13 -0
- package/dist/contracts/tokens/leRAAC/burn.js +16 -0
- package/dist/contracts/tokens/leRAAC/burnFrom.js +16 -0
- package/dist/contracts/tokens/leRAAC/getAllowance.js +11 -0
- package/dist/contracts/tokens/leRAAC/getBalance.js +11 -0
- package/dist/contracts/tokens/leRAAC/getMinterInfo.js +15 -0
- package/dist/contracts/tokens/leRAAC/getTotalSupply.js +11 -0
- package/dist/contracts/tokens/leRAAC/transfer.js +13 -0
- package/dist/contracts/tokens/leRAAC/transferFrom.js +13 -0
- package/dist/contracts/zap/aladdin/_helpers.js +19 -0
- package/dist/contracts/zap/aladdin/_types.js +38 -0
- package/dist/contracts/zap/aladdin/decodeRoute.js +36 -0
- package/dist/contracts/zap/aladdin/encodeRoute.js +34 -0
- package/dist/contracts/zap/aladdin/getCurvePoolToken.js +13 -0
- package/dist/contracts/zap/aladdin/getOwner.js +9 -0
- package/dist/contracts/zap/aladdin/getPool2Token.js +12 -0
- package/dist/contracts/zap/aladdin/getRoutes.js +16 -0
- package/dist/contracts/zap/aladdin/getVersion.js +9 -0
- package/dist/contracts/zap/aladdin/rescue.js +16 -0
- package/dist/contracts/zap/aladdin/updatePoolTokens.js +19 -0
- package/dist/contracts/zap/aladdin/updateRoute.js +31 -0
- package/dist/contracts/zap/aladdin/validateRoute.js +80 -0
- package/dist/contracts/zap/aladdin/zap.js +18 -0
- package/dist/contracts/zap/aladdin/zapFrom.js +18 -0
- package/dist/contracts/zap/aladdin/zapWithRoutes.js +28 -0
- package/dist/contracts/zap/codec.js +423 -0
- package/dist/minter/_helpers.js +19 -0
- package/dist/minter/activate.js +18 -0
- package/dist/minter/addDistributionPool.js +17 -0
- package/dist/minter/calculateScheduledMintableAmount.js +14 -0
- package/dist/minter/get.js +44 -112
- package/dist/minter/getApy.js +55 -19
- package/dist/minter/getDistributionPools.js +39 -0
- package/dist/minter/getEmissionPerSecond.js +25 -0
- package/dist/minter/getPoolInfo.js +23 -0
- package/dist/minter/isPaused.js +9 -0
- package/dist/minter/manageDistributionPool.js +18 -0
- package/dist/minter/pause.js +24 -0
- package/dist/minter/removeDistributionPool.js +20 -0
- package/dist/minter/tick.js +12 -24
- package/dist/tests/liquidLocker.test.js +262 -0
- package/dist/tests/test.js +1 -1
- package/dist/types/RPCLibrary.d.ts +171 -0
- package/dist/types/contracts/lockers/botLocker/_helpers.d.ts +4 -0
- package/dist/types/contracts/lockers/botLocker/claim.d.ts +6 -0
- package/dist/types/contracts/lockers/botLocker/getClaimable.d.ts +6 -0
- package/dist/types/contracts/lockers/botLocker/getClaimables.d.ts +10 -0
- package/dist/types/contracts/lockers/botLocker/getClaimedRewards.d.ts +7 -0
- package/dist/types/contracts/lockers/botLocker/getLockedTokenIds.d.ts +3 -0
- package/dist/types/contracts/lockers/botLocker/getLocks.d.ts +15 -0
- package/dist/types/contracts/lockers/botLocker/getRewardTokenCount.d.ts +3 -0
- package/dist/types/contracts/lockers/botLocker/getRewardTokens.d.ts +3 -0
- package/dist/types/contracts/lockers/botLocker/lock.d.ts +7 -0
- package/dist/types/contracts/lockers/botLocker/unlock.d.ts +7 -0
- package/dist/types/contracts/lockers/botLocker/unlockAndClaim.d.ts +6 -0
- package/dist/types/contracts/lockers/liquidLocker/_helpers.d.ts +4 -0
- package/dist/types/contracts/lockers/liquidLocker/borrow.d.ts +7 -0
- package/dist/types/contracts/lockers/liquidLocker/deposit.d.ts +7 -0
- package/dist/types/contracts/lockers/liquidLocker/donate.d.ts +6 -0
- package/dist/types/contracts/lockers/liquidLocker/getConfig.d.ts +27 -0
- package/dist/types/contracts/lockers/liquidLocker/getGlobalInfo.d.ts +24 -0
- package/dist/types/contracts/lockers/liquidLocker/getUserInfo.d.ts +21 -0
- package/dist/types/contracts/lockers/liquidLocker/getUserLocks.d.ts +17 -0
- package/dist/types/contracts/lockers/liquidLocker/harvest.d.ts +7 -0
- package/dist/types/contracts/lockers/liquidLocker/isKeeper.d.ts +3 -0
- package/dist/types/contracts/lockers/liquidLocker/processVaultExpiredLocks.d.ts +7 -0
- package/dist/types/contracts/lockers/liquidLocker/repay.d.ts +7 -0
- package/dist/types/contracts/lockers/liquidLocker/requestUnlock.d.ts +7 -0
- package/dist/types/contracts/lockers/liquidLocker/voteGauge.d.ts +7 -0
- package/dist/types/contracts/lockers/liquidLocker/voteGovernance.d.ts +6 -0
- package/dist/types/contracts/lockers/liquidLocker/withdrawUnlocked.d.ts +6 -0
- package/dist/types/contracts/lockers/maturityVault/_helpers.d.ts +4 -0
- package/dist/types/contracts/lockers/maturityVault/claim.d.ts +6 -0
- package/dist/types/contracts/lockers/maturityVault/deposit.d.ts +7 -0
- package/dist/types/contracts/lockers/maturityVault/depositFor.d.ts +6 -0
- package/dist/types/contracts/lockers/maturityVault/distribute.d.ts +7 -0
- package/dist/types/contracts/lockers/maturityVault/exit.d.ts +6 -0
- package/dist/types/contracts/lockers/maturityVault/getConfig.d.ts +12 -0
- package/dist/types/contracts/lockers/maturityVault/getGlobalInfo.d.ts +32 -0
- package/dist/types/contracts/lockers/maturityVault/getUserInfo.d.ts +14 -0
- package/dist/types/contracts/lockers/maturityVault/harvest.d.ts +6 -0
- package/dist/types/contracts/lockers/maturityVault/isWhitelisted.d.ts +3 -0
- package/dist/types/contracts/lockers/maturityVault/updatePendingDistribution.d.ts +6 -0
- package/dist/types/contracts/lockers/maturityVault/withdraw.d.ts +6 -0
- package/dist/types/contracts/lockers/maturityVault/withdrawAll.d.ts +6 -0
- package/dist/types/contracts/tokens/leRAAC/_helpers.d.ts +4 -0
- package/dist/types/contracts/tokens/leRAAC/approve.d.ts +3 -0
- package/dist/types/contracts/tokens/leRAAC/burn.d.ts +6 -0
- package/dist/types/contracts/tokens/leRAAC/burnFrom.d.ts +6 -0
- package/dist/types/contracts/tokens/leRAAC/getAllowance.d.ts +3 -0
- package/dist/types/contracts/tokens/leRAAC/getBalance.d.ts +3 -0
- package/dist/types/contracts/tokens/leRAAC/getMinterInfo.d.ts +8 -0
- package/dist/types/contracts/tokens/leRAAC/getTotalSupply.d.ts +3 -0
- package/dist/types/contracts/tokens/leRAAC/transfer.d.ts +3 -0
- package/dist/types/contracts/tokens/leRAAC/transferFrom.d.ts +3 -0
- package/dist/types/contracts/zap/aladdin/_helpers.d.ts +4 -0
- package/dist/types/contracts/zap/aladdin/_types.d.ts +44 -0
- package/dist/types/contracts/zap/aladdin/decodeRoute.d.ts +14 -0
- package/dist/types/contracts/zap/aladdin/encodeRoute.d.ts +18 -0
- package/dist/types/contracts/zap/aladdin/getCurvePoolToken.d.ts +8 -0
- package/dist/types/contracts/zap/aladdin/getOwner.d.ts +3 -0
- package/dist/types/contracts/zap/aladdin/getPool2Token.d.ts +6 -0
- package/dist/types/contracts/zap/aladdin/getRoutes.d.ts +13 -0
- package/dist/types/contracts/zap/aladdin/getVersion.d.ts +3 -0
- package/dist/types/contracts/zap/aladdin/rescue.d.ts +6 -0
- package/dist/types/contracts/zap/aladdin/updatePoolTokens.d.ts +6 -0
- package/dist/types/contracts/zap/aladdin/updateRoute.d.ts +13 -0
- package/dist/types/contracts/zap/aladdin/validateRoute.d.ts +26 -0
- package/dist/types/contracts/zap/aladdin/zap.d.ts +8 -0
- package/dist/types/contracts/zap/aladdin/zapFrom.d.ts +8 -0
- package/dist/types/contracts/zap/aladdin/zapWithRoutes.d.ts +11 -0
- package/dist/types/contracts/zap/codec.d.ts +36 -0
- package/dist/types/minter/_helpers.d.ts +4 -0
- package/dist/types/minter/activate.d.ts +8 -0
- package/dist/types/minter/addDistributionPool.d.ts +7 -0
- package/dist/types/minter/calculateScheduledMintableAmount.d.ts +8 -0
- package/dist/types/minter/get.d.ts +28 -16
- package/dist/types/minter/getApy.d.ts +19 -2
- package/dist/types/minter/getDistributionPools.d.ts +16 -0
- package/dist/types/minter/getEmissionPerSecond.d.ts +8 -0
- package/dist/types/minter/getPoolInfo.d.ts +13 -0
- package/dist/types/minter/isPaused.d.ts +3 -0
- package/dist/types/minter/manageDistributionPool.d.ts +8 -0
- package/dist/types/minter/pause.d.ts +6 -0
- package/dist/types/minter/removeDistributionPool.d.ts +10 -0
- package/dist/types/minter/tick.d.ts +7 -3
- package/dist/types/tests/liquidLocker.test.d.ts +18 -0
- package/dist/types/typechain-types/@openzeppelin/{contracts-v3/token/ERC20/IERC20.d.ts → contracts/token/ERC20/extensions/ERC20Capped.d.ts} +34 -18
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.d.ts +155 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/token/ERC20/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +15 -1
- package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +1 -25
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +1 -13
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +1 -25
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +1 -25
- package/dist/types/typechain-types/contracts/core/lockers/RAACLiquidLocker.d.ts +101 -171
- package/dist/types/typechain-types/contracts/core/lockers/RAACMaturityVault.d.ts +5 -38
- package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +58 -418
- package/dist/types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +108 -2
- package/dist/types/typechain-types/contracts/core/oracles/KYCVerifyModule.sol/IKYCVerifyModule.d.ts +25 -0
- package/dist/types/typechain-types/{@openzeppelin/contracts-v3/access/Ownable.d.ts → contracts/core/oracles/KYCVerifyModule.sol/KYCVerifyModule.d.ts} +10 -6
- package/dist/types/typechain-types/contracts/core/oracles/KYCVerifyModule.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/oracles/PmUSDToUSDOracle.d.ts +338 -0
- package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +60 -4
- package/dist/types/typechain-types/contracts/core/oracles/ZkMeKYCVerifyModule.sol/ZKMEKYCVerifyModule.d.ts +110 -0
- package/dist/types/typechain-types/contracts/core/oracles/ZkMeKYCVerifyModule.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +15 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.d.ts +15 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +9 -23
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +8 -4
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +8 -4
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +8 -4
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +70 -1
- package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +16 -1
- package/dist/types/typechain-types/contracts/core/tokens/LeRAAC.sol/LiquidEscrowedRAAC.d.ts +3 -3
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +65 -50
- package/dist/types/typechain-types/contracts/core/tokens/RAACToken.d.ts +6 -191
- package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +62 -1
- package/dist/types/typechain-types/contracts/core/tokens/SToken.d.ts +804 -0
- package/dist/types/typechain-types/contracts/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.d.ts +15 -1
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.d.ts +15 -1
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapterV2.d.ts +15 -1
- package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +28 -2
- package/dist/types/typechain-types/contracts/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/IZap.d.ts +15 -1
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +1 -25
- package/dist/types/typechain-types/contracts/interfaces/core/lockers/IRaacLiquidLocker.d.ts +30 -37
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +68 -205
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +100 -2
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable.d.ts +15 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +1 -19
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap.d.ts +70 -1
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +16 -1
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +36 -25
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACToken.d.ts +2 -179
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/ISToken.d.ts +454 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +15 -1
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +19 -3
- package/dist/types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +47 -1
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +47 -1
- package/dist/types/typechain-types/contracts/mocks/core/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/minters/MockRAACMinterRewardsReceiver.d.ts +181 -0
- package/dist/types/typechain-types/contracts/mocks/core/minters/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable.d.ts +15 -1
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +1 -19
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockFeeOnTransferToken.d.ts +163 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/minters/EmissionScheduleMock.d.ts +91 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/minters/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/rwaf/ChainlinkOracleAdapter.sol/ChainlinkOracleAdapter.d.ts +212 -0
- package/dist/types/typechain-types/contracts/rwaf/ChainlinkOracleAdapter.sol/IRWACoordinator.d.ts +67 -0
- package/dist/types/typechain-types/contracts/rwaf/ChainlinkOracleAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/rwaf/TokenBlender.sol/ITokenBlender.d.ts +331 -0
- package/dist/types/typechain-types/contracts/rwaf/TokenBlender.sol/TokenBlender.d.ts +671 -0
- package/dist/types/typechain-types/contracts/rwaf/TokenBlender.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/rwaf/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/zap/AladdinZap.d.ts +15 -1
- package/dist/types/typechain-types/contracts/zap/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped__factory.d.ts +271 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/{contracts-v3/token/ERC20/IERC20__factory.d.ts → contracts-upgradeable/token/ERC20/ERC20Upgradeable__factory.d.ts} +122 -10
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/token/ERC20/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +0 -20
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1 -17
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/VeBoostProxy__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/VeBoost__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/lockers/RAACBotLocker__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/lockers/RAACLiquidLocker__factory.d.ts +129 -197
- package/dist/types/typechain-types/factories/contracts/core/lockers/RAACMaturityVault__factory.d.ts +11 -51
- package/dist/types/typechain-types/factories/contracts/core/lockers/RAACNFTLocker__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +28 -557
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +81 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/KYCVerifyModule.sol/IKYCVerifyModule__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/{@openzeppelin/contracts-v3/access/Ownable__factory.d.ts → contracts/core/oracles/KYCVerifyModule.sol/KYCVerifyModule__factory.d.ts} +38 -4
- package/dist/types/typechain-types/factories/contracts/core/oracles/KYCVerifyModule.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/PmUSDToUSDOracle__factory.d.ts +443 -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/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +97 -3
- package/dist/types/typechain-types/factories/contracts/core/oracles/ZkMeKYCVerifyModule.sol/ZKMEKYCVerifyModule__factory.d.ts +181 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/ZkMeKYCVerifyModule.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +9 -5
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +9 -31
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +9 -5
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +9 -5
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +62 -3
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +16 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/LeRAAC.sol/LiquidEscrowedRAAC__factory.d.ts +7 -3
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +79 -58
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +21 -252
- package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +51 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/SToken__factory.d.ts +1153 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterOracle.sol/RAACNFTVaultAdapterOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterV2__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +35 -1
- package/dist/types/typechain-types/factories/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IZap__factory.d.ts +18 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +0 -20
- package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/IRaacLiquidLocker__factory.d.ts +26 -29
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +44 -230
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +70 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable__factory.d.ts +18 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +0 -26
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +55 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +15 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +28 -15
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACToken__factory.d.ts +0 -219
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/ISToken__factory.d.ts +564 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +10 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +10 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +66 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/RagequitLib__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/RewardLib__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/pools/LendingPoolFeeLibrary__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/ERC20BurnableMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +67 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/libraries/LockManagerMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/MockLamaLocker__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/minters/MockRAACMinterRewardsReceiver__factory.d.ts +184 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/minters/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +1 -1
- 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/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +19 -1
- 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/pools/CurveStyleCrvUSDiRAACPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +1 -27
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeOnTransferToken__factory.d.ts +306 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockTimeUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RagequitHarness__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RewardIntegralCalculatorMock.sol/MockRewardIntegralCalculator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/minters/EmissionScheduleMock__factory.d.ts +115 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/minters/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/rwaf/ChainlinkOracleAdapter.sol/ChainlinkOracleAdapter__factory.d.ts +295 -0
- package/dist/types/typechain-types/factories/contracts/rwaf/ChainlinkOracleAdapter.sol/IRWACoordinator__factory.d.ts +43 -0
- package/dist/types/typechain-types/factories/contracts/rwaf/ChainlinkOracleAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/rwaf/TokenBlender.sol/ITokenBlender__factory.d.ts +409 -0
- package/dist/types/typechain-types/factories/contracts/rwaf/TokenBlender.sol/TokenBlender__factory.d.ts +990 -0
- package/dist/types/typechain-types/factories/contracts/rwaf/TokenBlender.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/rwaf/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/zap/AladdinZap__factory.d.ts +19 -1
- package/dist/types/typechain-types/factories/contracts/zap/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +1 -1
- package/dist/types/typechain-types/index.d.ts +34 -8
- package/dist/types/utils/artifacts.d.ts +616 -95
- package/dist/utils/artifacts.js +16 -0
- package/dist/utils/contracts.js +1 -1
- package/package.json +1 -1
- package/dist/types/typechain-types/@openzeppelin/contracts-v3/access/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts-v3/index.d.ts +0 -4
- package/dist/types/typechain-types/@openzeppelin/contracts-v3/token/ERC20/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/zap/AladdinCRVZap.d.ts +0 -83
- package/dist/types/typechain-types/contracts/zap/AladdinConvexVaultZap.d.ts +0 -172
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/access/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/token/ERC20/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/zap/AladdinCRVZap__factory.d.ts +0 -107
- package/dist/types/typechain-types/factories/contracts/zap/AladdinConvexVaultZap__factory.d.ts +0 -208
- /package/dist/types/typechain-types/@openzeppelin/{contracts-v3 → contracts-upgradeable}/token/index.d.ts +0 -0
- /package/dist/types/typechain-types/factories/@openzeppelin/{contracts-v3 → contracts-upgradeable}/token/index.d.ts +0 -0
|
@@ -2,10 +2,67 @@ import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, I
|
|
|
2
2
|
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../../../common";
|
|
3
3
|
export interface ILiquidationSwapInterface extends Interface {
|
|
4
4
|
getFunction(nameOrSignature: "swap"): FunctionFragment;
|
|
5
|
-
getEvent(nameOrSignatureOrTopic: "Swapped"): EventFragment;
|
|
5
|
+
getEvent(nameOrSignatureOrTopic: "CrvusdToUSDOracleSet" | "LiquidityPoolSet" | "SlippageProtectionEnabled" | "StabilityPoolSet" | "Swapped"): EventFragment;
|
|
6
6
|
encodeFunctionData(functionFragment: "swap", values: [BigNumberish]): string;
|
|
7
7
|
decodeFunctionResult(functionFragment: "swap", data: BytesLike): Result;
|
|
8
8
|
}
|
|
9
|
+
export declare namespace CrvusdToUSDOracleSetEvent {
|
|
10
|
+
type InputTuple = [oracle: AddressLike];
|
|
11
|
+
type OutputTuple = [oracle: string];
|
|
12
|
+
interface OutputObject {
|
|
13
|
+
oracle: string;
|
|
14
|
+
}
|
|
15
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
16
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
17
|
+
type Log = TypedEventLog<Event>;
|
|
18
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
19
|
+
}
|
|
20
|
+
export declare namespace LiquidityPoolSetEvent {
|
|
21
|
+
type InputTuple = [
|
|
22
|
+
liquidityPool: AddressLike,
|
|
23
|
+
slippageProtectionBps: BigNumberish,
|
|
24
|
+
iIn: BigNumberish,
|
|
25
|
+
iOut: BigNumberish
|
|
26
|
+
];
|
|
27
|
+
type OutputTuple = [
|
|
28
|
+
liquidityPool: string,
|
|
29
|
+
slippageProtectionBps: bigint,
|
|
30
|
+
iIn: bigint,
|
|
31
|
+
iOut: bigint
|
|
32
|
+
];
|
|
33
|
+
interface OutputObject {
|
|
34
|
+
liquidityPool: string;
|
|
35
|
+
slippageProtectionBps: bigint;
|
|
36
|
+
iIn: bigint;
|
|
37
|
+
iOut: bigint;
|
|
38
|
+
}
|
|
39
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
40
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
41
|
+
type Log = TypedEventLog<Event>;
|
|
42
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
43
|
+
}
|
|
44
|
+
export declare namespace SlippageProtectionEnabledEvent {
|
|
45
|
+
type InputTuple = [enabled: boolean];
|
|
46
|
+
type OutputTuple = [enabled: boolean];
|
|
47
|
+
interface OutputObject {
|
|
48
|
+
enabled: boolean;
|
|
49
|
+
}
|
|
50
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
51
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
52
|
+
type Log = TypedEventLog<Event>;
|
|
53
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
54
|
+
}
|
|
55
|
+
export declare namespace StabilityPoolSetEvent {
|
|
56
|
+
type InputTuple = [stabilityPool: AddressLike];
|
|
57
|
+
type OutputTuple = [stabilityPool: string];
|
|
58
|
+
interface OutputObject {
|
|
59
|
+
stabilityPool: string;
|
|
60
|
+
}
|
|
61
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
62
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
63
|
+
type Log = TypedEventLog<Event>;
|
|
64
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
65
|
+
}
|
|
9
66
|
export declare namespace SwappedEvent {
|
|
10
67
|
type InputTuple = [
|
|
11
68
|
caller: AddressLike,
|
|
@@ -43,8 +100,20 @@ export interface ILiquidationSwap extends BaseContract {
|
|
|
43
100
|
swap: TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
44
101
|
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
45
102
|
getFunction(nameOrSignature: "swap"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
103
|
+
getEvent(key: "CrvusdToUSDOracleSet"): TypedContractEvent<CrvusdToUSDOracleSetEvent.InputTuple, CrvusdToUSDOracleSetEvent.OutputTuple, CrvusdToUSDOracleSetEvent.OutputObject>;
|
|
104
|
+
getEvent(key: "LiquidityPoolSet"): TypedContractEvent<LiquidityPoolSetEvent.InputTuple, LiquidityPoolSetEvent.OutputTuple, LiquidityPoolSetEvent.OutputObject>;
|
|
105
|
+
getEvent(key: "SlippageProtectionEnabled"): TypedContractEvent<SlippageProtectionEnabledEvent.InputTuple, SlippageProtectionEnabledEvent.OutputTuple, SlippageProtectionEnabledEvent.OutputObject>;
|
|
106
|
+
getEvent(key: "StabilityPoolSet"): TypedContractEvent<StabilityPoolSetEvent.InputTuple, StabilityPoolSetEvent.OutputTuple, StabilityPoolSetEvent.OutputObject>;
|
|
46
107
|
getEvent(key: "Swapped"): TypedContractEvent<SwappedEvent.InputTuple, SwappedEvent.OutputTuple, SwappedEvent.OutputObject>;
|
|
47
108
|
filters: {
|
|
109
|
+
"CrvusdToUSDOracleSet(address)": TypedContractEvent<CrvusdToUSDOracleSetEvent.InputTuple, CrvusdToUSDOracleSetEvent.OutputTuple, CrvusdToUSDOracleSetEvent.OutputObject>;
|
|
110
|
+
CrvusdToUSDOracleSet: TypedContractEvent<CrvusdToUSDOracleSetEvent.InputTuple, CrvusdToUSDOracleSetEvent.OutputTuple, CrvusdToUSDOracleSetEvent.OutputObject>;
|
|
111
|
+
"LiquidityPoolSet(address,uint256,uint256,uint256)": TypedContractEvent<LiquidityPoolSetEvent.InputTuple, LiquidityPoolSetEvent.OutputTuple, LiquidityPoolSetEvent.OutputObject>;
|
|
112
|
+
LiquidityPoolSet: TypedContractEvent<LiquidityPoolSetEvent.InputTuple, LiquidityPoolSetEvent.OutputTuple, LiquidityPoolSetEvent.OutputObject>;
|
|
113
|
+
"SlippageProtectionEnabled(bool)": TypedContractEvent<SlippageProtectionEnabledEvent.InputTuple, SlippageProtectionEnabledEvent.OutputTuple, SlippageProtectionEnabledEvent.OutputObject>;
|
|
114
|
+
SlippageProtectionEnabled: TypedContractEvent<SlippageProtectionEnabledEvent.InputTuple, SlippageProtectionEnabledEvent.OutputTuple, SlippageProtectionEnabledEvent.OutputObject>;
|
|
115
|
+
"StabilityPoolSet(address)": TypedContractEvent<StabilityPoolSetEvent.InputTuple, StabilityPoolSetEvent.OutputTuple, StabilityPoolSetEvent.OutputObject>;
|
|
116
|
+
StabilityPoolSet: TypedContractEvent<StabilityPoolSetEvent.InputTuple, StabilityPoolSetEvent.OutputTuple, StabilityPoolSetEvent.OutputObject>;
|
|
48
117
|
"Swapped(address,uint256,uint256)": TypedContractEvent<SwappedEvent.InputTuple, SwappedEvent.OutputTuple, SwappedEvent.OutputObject>;
|
|
49
118
|
Swapped: TypedContractEvent<SwappedEvent.InputTuple, SwappedEvent.OutputTuple, SwappedEvent.OutputObject>;
|
|
50
119
|
};
|
|
@@ -2,7 +2,7 @@ import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, I
|
|
|
2
2
|
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../../common";
|
|
3
3
|
export interface IDETokenInterface extends Interface {
|
|
4
4
|
getFunction(nameOrSignature: "allowance" | "approve" | "balanceOf" | "burn" | "decimals" | "getRawTotalDeposits" | "getUserDeposit" | "getUserIndex" | "mint" | "rawBalanceOf" | "setUserIndex" | "totalSupply" | "transfer" | "transferAsset" | "transferFrom"): FunctionFragment;
|
|
5
|
-
getEvent(nameOrSignatureOrTopic: "Approval" | "Burn" | "Mint" | "SameBlockExemptUpdated" | "StabilityPoolUpdated" | "Transfer"): EventFragment;
|
|
5
|
+
getEvent(nameOrSignatureOrTopic: "Approval" | "Burn" | "Mint" | "MintInterest" | "SameBlockExemptUpdated" | "StabilityPoolUpdated" | "Transfer"): EventFragment;
|
|
6
6
|
encodeFunctionData(functionFragment: "allowance", values: [AddressLike, AddressLike]): string;
|
|
7
7
|
encodeFunctionData(functionFragment: "approve", values: [AddressLike, BigNumberish]): string;
|
|
8
8
|
encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike]): string;
|
|
@@ -75,6 +75,18 @@ export declare namespace MintEvent {
|
|
|
75
75
|
type Log = TypedEventLog<Event>;
|
|
76
76
|
type LogDescription = TypedLogDescription<Event>;
|
|
77
77
|
}
|
|
78
|
+
export declare namespace MintInterestEvent {
|
|
79
|
+
type InputTuple = [to: AddressLike, interestAmount: BigNumberish];
|
|
80
|
+
type OutputTuple = [to: string, interestAmount: bigint];
|
|
81
|
+
interface OutputObject {
|
|
82
|
+
to: string;
|
|
83
|
+
interestAmount: bigint;
|
|
84
|
+
}
|
|
85
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
86
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
87
|
+
type Log = TypedEventLog<Event>;
|
|
88
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
89
|
+
}
|
|
78
90
|
export declare namespace SameBlockExemptUpdatedEvent {
|
|
79
91
|
type InputTuple = [user: AddressLike, value: boolean];
|
|
80
92
|
type OutputTuple = [user: string, value: boolean];
|
|
@@ -251,6 +263,7 @@ export interface IDEToken extends BaseContract {
|
|
|
251
263
|
getEvent(key: "Approval"): TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
|
|
252
264
|
getEvent(key: "Burn"): TypedContractEvent<BurnEvent.InputTuple, BurnEvent.OutputTuple, BurnEvent.OutputObject>;
|
|
253
265
|
getEvent(key: "Mint"): TypedContractEvent<MintEvent.InputTuple, MintEvent.OutputTuple, MintEvent.OutputObject>;
|
|
266
|
+
getEvent(key: "MintInterest"): TypedContractEvent<MintInterestEvent.InputTuple, MintInterestEvent.OutputTuple, MintInterestEvent.OutputObject>;
|
|
254
267
|
getEvent(key: "SameBlockExemptUpdated"): TypedContractEvent<SameBlockExemptUpdatedEvent.InputTuple, SameBlockExemptUpdatedEvent.OutputTuple, SameBlockExemptUpdatedEvent.OutputObject>;
|
|
255
268
|
getEvent(key: "StabilityPoolUpdated"): TypedContractEvent<StabilityPoolUpdatedEvent.InputTuple, StabilityPoolUpdatedEvent.OutputTuple, StabilityPoolUpdatedEvent.OutputObject>;
|
|
256
269
|
getEvent(key: "Transfer"): TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
@@ -261,6 +274,8 @@ export interface IDEToken extends BaseContract {
|
|
|
261
274
|
Burn: TypedContractEvent<BurnEvent.InputTuple, BurnEvent.OutputTuple, BurnEvent.OutputObject>;
|
|
262
275
|
"Mint(address,uint256)": TypedContractEvent<MintEvent.InputTuple, MintEvent.OutputTuple, MintEvent.OutputObject>;
|
|
263
276
|
Mint: TypedContractEvent<MintEvent.InputTuple, MintEvent.OutputTuple, MintEvent.OutputObject>;
|
|
277
|
+
"MintInterest(address,uint256)": TypedContractEvent<MintInterestEvent.InputTuple, MintInterestEvent.OutputTuple, MintInterestEvent.OutputObject>;
|
|
278
|
+
MintInterest: TypedContractEvent<MintInterestEvent.InputTuple, MintInterestEvent.OutputTuple, MintInterestEvent.OutputObject>;
|
|
264
279
|
"SameBlockExemptUpdated(address,bool)": TypedContractEvent<SameBlockExemptUpdatedEvent.InputTuple, SameBlockExemptUpdatedEvent.OutputTuple, SameBlockExemptUpdatedEvent.OutputObject>;
|
|
265
280
|
SameBlockExemptUpdated: TypedContractEvent<SameBlockExemptUpdatedEvent.InputTuple, SameBlockExemptUpdatedEvent.OutputTuple, SameBlockExemptUpdatedEvent.OutputObject>;
|
|
266
281
|
"StabilityPoolUpdated(address,address)": TypedContractEvent<StabilityPoolUpdatedEvent.InputTuple, StabilityPoolUpdatedEvent.OutputTuple, StabilityPoolUpdatedEvent.OutputObject>;
|
|
@@ -12,11 +12,11 @@ export declare namespace IRAACNFT {
|
|
|
12
12
|
}
|
|
13
13
|
export interface IRAACNFTInterface extends Interface {
|
|
14
14
|
getFunction(nameOrSignature: "addMinter" | "approve" | "balanceOf" | "burn" | "getAllTokens()" | "getAllTokens(uint256,uint256)" | "getApproved" | "getFeeStructure" | "getHousePrice" | "getMintPrice" | "getTokensByOwner(address)" | "getTokensByOwner(address,uint256,uint256)" | "isApprovedForAll" | "mint" | "minterMint" | "ownerOf" | "removeMinter" | "royaltyInfo" | "safeTransferFrom(address,address,uint256)" | "safeTransferFrom(address,address,uint256,bytes)" | "setAllowBurning" | "setApprovalForAll" | "setBaseUri" | "setFeeCollector" | "setHousePriceOracle" | "setMaxFee" | "setMintFee" | "setTradeFee" | "supportsInterface" | "tokenByIndex" | "tokenOfOwnerByIndex" | "totalSupply" | "transferFrom" | "transferRole" | "withdrawUnderlying"): FunctionFragment;
|
|
15
|
-
getEvent(nameOrSignatureOrTopic: "AllowBurningUpdated" | "AllowMintingUpdated" | "Approval" | "ApprovalForAll" | "BaseURIUpdated" | "FeeCollectorUpdated" | "HousePriceOracleUpdated" | "MaxFeeUpdated" | "MintFeeUpdated" | "NFTFeePaid" | "NFTFeeUpdated" | "NFTMinted" | "NFTRoyaltyFeeCollectorUpdated" | "RoleTransferred" | "TradeFeeUpdated" | "Transfer" | "
|
|
15
|
+
getEvent(nameOrSignatureOrTopic: "AllowBurningUpdated" | "AllowMintingUpdated" | "Approval" | "ApprovalForAll" | "BaseURIUpdated" | "FeeCollectorUpdated" | "HousePriceOracleUpdated" | "KYCVerifyModuleUpdated" | "MaxFeeUpdated" | "MintFeeUpdated" | "NFTFeePaid" | "NFTFeeUpdated" | "NFTMinted" | "NFTRoyaltyFeeCollectorUpdated" | "RoleTransferred" | "TradeFeeUpdated" | "Transfer" | "UpdateRemint"): EventFragment;
|
|
16
16
|
encodeFunctionData(functionFragment: "addMinter", values: [AddressLike]): string;
|
|
17
17
|
encodeFunctionData(functionFragment: "approve", values: [AddressLike, BigNumberish]): string;
|
|
18
18
|
encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike]): string;
|
|
19
|
-
encodeFunctionData(functionFragment: "burn", values: [BigNumberish]): string;
|
|
19
|
+
encodeFunctionData(functionFragment: "burn", values: [BigNumberish, boolean]): string;
|
|
20
20
|
encodeFunctionData(functionFragment: "getAllTokens()", values?: undefined): string;
|
|
21
21
|
encodeFunctionData(functionFragment: "getAllTokens(uint256,uint256)", values: [BigNumberish, BigNumberish]): string;
|
|
22
22
|
encodeFunctionData(functionFragment: "getApproved", values: [BigNumberish]): string;
|
|
@@ -177,6 +177,17 @@ export declare namespace HousePriceOracleUpdatedEvent {
|
|
|
177
177
|
type Log = TypedEventLog<Event>;
|
|
178
178
|
type LogDescription = TypedLogDescription<Event>;
|
|
179
179
|
}
|
|
180
|
+
export declare namespace KYCVerifyModuleUpdatedEvent {
|
|
181
|
+
type InputTuple = [kycVerifyModule: AddressLike];
|
|
182
|
+
type OutputTuple = [kycVerifyModule: string];
|
|
183
|
+
interface OutputObject {
|
|
184
|
+
kycVerifyModule: string;
|
|
185
|
+
}
|
|
186
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
187
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
188
|
+
type Log = TypedEventLog<Event>;
|
|
189
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
190
|
+
}
|
|
180
191
|
export declare namespace MaxFeeUpdatedEvent {
|
|
181
192
|
type InputTuple = [maxFee: BigNumberish];
|
|
182
193
|
type OutputTuple = [maxFee: bigint];
|
|
@@ -306,22 +317,12 @@ export declare namespace TransferEvent {
|
|
|
306
317
|
type Log = TypedEventLog<Event>;
|
|
307
318
|
type LogDescription = TypedLogDescription<Event>;
|
|
308
319
|
}
|
|
309
|
-
export declare namespace
|
|
310
|
-
type InputTuple = [
|
|
311
|
-
type OutputTuple = [
|
|
320
|
+
export declare namespace UpdateRemintEvent {
|
|
321
|
+
type InputTuple = [tokenId: BigNumberish, disabled: boolean];
|
|
322
|
+
type OutputTuple = [tokenId: bigint, disabled: boolean];
|
|
312
323
|
interface OutputObject {
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
316
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
317
|
-
type Log = TypedEventLog<Event>;
|
|
318
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
319
|
-
}
|
|
320
|
-
export declare namespace ZKMEVerifyUpdatedEvent {
|
|
321
|
-
type InputTuple = [zkmeVerify: AddressLike];
|
|
322
|
-
type OutputTuple = [zkmeVerify: string];
|
|
323
|
-
interface OutputObject {
|
|
324
|
-
zkmeVerify: string;
|
|
324
|
+
tokenId: bigint;
|
|
325
|
+
disabled: boolean;
|
|
325
326
|
}
|
|
326
327
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
327
328
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
@@ -349,7 +350,12 @@ export interface IRAACNFT extends BaseContract {
|
|
|
349
350
|
void
|
|
350
351
|
], "nonpayable">;
|
|
351
352
|
balanceOf: TypedContractMethod<[owner: AddressLike], [bigint], "view">;
|
|
352
|
-
burn: TypedContractMethod<[
|
|
353
|
+
burn: TypedContractMethod<[
|
|
354
|
+
tokenId: BigNumberish,
|
|
355
|
+
disabled: boolean
|
|
356
|
+
], [
|
|
357
|
+
void
|
|
358
|
+
], "nonpayable">;
|
|
353
359
|
"getAllTokens()": TypedContractMethod<[], [bigint[]], "view">;
|
|
354
360
|
"getAllTokens(uint256,uint256)": TypedContractMethod<[
|
|
355
361
|
start: BigNumberish,
|
|
@@ -500,7 +506,12 @@ export interface IRAACNFT extends BaseContract {
|
|
|
500
506
|
void
|
|
501
507
|
], "nonpayable">;
|
|
502
508
|
getFunction(nameOrSignature: "balanceOf"): TypedContractMethod<[owner: AddressLike], [bigint], "view">;
|
|
503
|
-
getFunction(nameOrSignature: "burn"): TypedContractMethod<[
|
|
509
|
+
getFunction(nameOrSignature: "burn"): TypedContractMethod<[
|
|
510
|
+
tokenId: BigNumberish,
|
|
511
|
+
disabled: boolean
|
|
512
|
+
], [
|
|
513
|
+
void
|
|
514
|
+
], "nonpayable">;
|
|
504
515
|
getFunction(nameOrSignature: "getAllTokens()"): TypedContractMethod<[], [bigint[]], "view">;
|
|
505
516
|
getFunction(nameOrSignature: "getAllTokens(uint256,uint256)"): TypedContractMethod<[
|
|
506
517
|
start: BigNumberish,
|
|
@@ -614,6 +625,7 @@ export interface IRAACNFT extends BaseContract {
|
|
|
614
625
|
getEvent(key: "BaseURIUpdated"): TypedContractEvent<BaseURIUpdatedEvent.InputTuple, BaseURIUpdatedEvent.OutputTuple, BaseURIUpdatedEvent.OutputObject>;
|
|
615
626
|
getEvent(key: "FeeCollectorUpdated"): TypedContractEvent<FeeCollectorUpdatedEvent.InputTuple, FeeCollectorUpdatedEvent.OutputTuple, FeeCollectorUpdatedEvent.OutputObject>;
|
|
616
627
|
getEvent(key: "HousePriceOracleUpdated"): TypedContractEvent<HousePriceOracleUpdatedEvent.InputTuple, HousePriceOracleUpdatedEvent.OutputTuple, HousePriceOracleUpdatedEvent.OutputObject>;
|
|
628
|
+
getEvent(key: "KYCVerifyModuleUpdated"): TypedContractEvent<KYCVerifyModuleUpdatedEvent.InputTuple, KYCVerifyModuleUpdatedEvent.OutputTuple, KYCVerifyModuleUpdatedEvent.OutputObject>;
|
|
617
629
|
getEvent(key: "MaxFeeUpdated"): TypedContractEvent<MaxFeeUpdatedEvent.InputTuple, MaxFeeUpdatedEvent.OutputTuple, MaxFeeUpdatedEvent.OutputObject>;
|
|
618
630
|
getEvent(key: "MintFeeUpdated"): TypedContractEvent<MintFeeUpdatedEvent.InputTuple, MintFeeUpdatedEvent.OutputTuple, MintFeeUpdatedEvent.OutputObject>;
|
|
619
631
|
getEvent(key: "NFTFeePaid"): TypedContractEvent<NFTFeePaidEvent.InputTuple, NFTFeePaidEvent.OutputTuple, NFTFeePaidEvent.OutputObject>;
|
|
@@ -623,8 +635,7 @@ export interface IRAACNFT extends BaseContract {
|
|
|
623
635
|
getEvent(key: "RoleTransferred"): TypedContractEvent<RoleTransferredEvent.InputTuple, RoleTransferredEvent.OutputTuple, RoleTransferredEvent.OutputObject>;
|
|
624
636
|
getEvent(key: "TradeFeeUpdated"): TypedContractEvent<TradeFeeUpdatedEvent.InputTuple, TradeFeeUpdatedEvent.OutputTuple, TradeFeeUpdatedEvent.OutputObject>;
|
|
625
637
|
getEvent(key: "Transfer"): TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
626
|
-
getEvent(key: "
|
|
627
|
-
getEvent(key: "ZKMEVerifyUpdated"): TypedContractEvent<ZKMEVerifyUpdatedEvent.InputTuple, ZKMEVerifyUpdatedEvent.OutputTuple, ZKMEVerifyUpdatedEvent.OutputObject>;
|
|
638
|
+
getEvent(key: "UpdateRemint"): TypedContractEvent<UpdateRemintEvent.InputTuple, UpdateRemintEvent.OutputTuple, UpdateRemintEvent.OutputObject>;
|
|
628
639
|
filters: {
|
|
629
640
|
"AllowBurningUpdated(bool)": TypedContractEvent<AllowBurningUpdatedEvent.InputTuple, AllowBurningUpdatedEvent.OutputTuple, AllowBurningUpdatedEvent.OutputObject>;
|
|
630
641
|
AllowBurningUpdated: TypedContractEvent<AllowBurningUpdatedEvent.InputTuple, AllowBurningUpdatedEvent.OutputTuple, AllowBurningUpdatedEvent.OutputObject>;
|
|
@@ -640,6 +651,8 @@ export interface IRAACNFT extends BaseContract {
|
|
|
640
651
|
FeeCollectorUpdated: TypedContractEvent<FeeCollectorUpdatedEvent.InputTuple, FeeCollectorUpdatedEvent.OutputTuple, FeeCollectorUpdatedEvent.OutputObject>;
|
|
641
652
|
"HousePriceOracleUpdated(address)": TypedContractEvent<HousePriceOracleUpdatedEvent.InputTuple, HousePriceOracleUpdatedEvent.OutputTuple, HousePriceOracleUpdatedEvent.OutputObject>;
|
|
642
653
|
HousePriceOracleUpdated: TypedContractEvent<HousePriceOracleUpdatedEvent.InputTuple, HousePriceOracleUpdatedEvent.OutputTuple, HousePriceOracleUpdatedEvent.OutputObject>;
|
|
654
|
+
"KYCVerifyModuleUpdated(address)": TypedContractEvent<KYCVerifyModuleUpdatedEvent.InputTuple, KYCVerifyModuleUpdatedEvent.OutputTuple, KYCVerifyModuleUpdatedEvent.OutputObject>;
|
|
655
|
+
KYCVerifyModuleUpdated: TypedContractEvent<KYCVerifyModuleUpdatedEvent.InputTuple, KYCVerifyModuleUpdatedEvent.OutputTuple, KYCVerifyModuleUpdatedEvent.OutputObject>;
|
|
643
656
|
"MaxFeeUpdated(uint256)": TypedContractEvent<MaxFeeUpdatedEvent.InputTuple, MaxFeeUpdatedEvent.OutputTuple, MaxFeeUpdatedEvent.OutputObject>;
|
|
644
657
|
MaxFeeUpdated: TypedContractEvent<MaxFeeUpdatedEvent.InputTuple, MaxFeeUpdatedEvent.OutputTuple, MaxFeeUpdatedEvent.OutputObject>;
|
|
645
658
|
"MintFeeUpdated(uint256)": TypedContractEvent<MintFeeUpdatedEvent.InputTuple, MintFeeUpdatedEvent.OutputTuple, MintFeeUpdatedEvent.OutputObject>;
|
|
@@ -658,9 +671,7 @@ export interface IRAACNFT extends BaseContract {
|
|
|
658
671
|
TradeFeeUpdated: TypedContractEvent<TradeFeeUpdatedEvent.InputTuple, TradeFeeUpdatedEvent.OutputTuple, TradeFeeUpdatedEvent.OutputObject>;
|
|
659
672
|
"Transfer(address,address,uint256)": TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
660
673
|
Transfer: TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
661
|
-
"
|
|
662
|
-
|
|
663
|
-
"ZKMEVerifyUpdated(address)": TypedContractEvent<ZKMEVerifyUpdatedEvent.InputTuple, ZKMEVerifyUpdatedEvent.OutputTuple, ZKMEVerifyUpdatedEvent.OutputObject>;
|
|
664
|
-
ZKMEVerifyUpdated: TypedContractEvent<ZKMEVerifyUpdatedEvent.InputTuple, ZKMEVerifyUpdatedEvent.OutputTuple, ZKMEVerifyUpdatedEvent.OutputObject>;
|
|
674
|
+
"UpdateRemint(uint256,bool)": TypedContractEvent<UpdateRemintEvent.InputTuple, UpdateRemintEvent.OutputTuple, UpdateRemintEvent.OutputObject>;
|
|
675
|
+
UpdateRemint: TypedContractEvent<UpdateRemintEvent.InputTuple, UpdateRemintEvent.OutputTuple, UpdateRemintEvent.OutputObject>;
|
|
665
676
|
};
|
|
666
677
|
}
|
|
@@ -1,70 +1,28 @@
|
|
|
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 IRAACTokenInterface extends Interface {
|
|
4
|
-
getFunction(nameOrSignature: "allowance" | "approve" | "balanceOf" | "burn" | "
|
|
5
|
-
getEvent(nameOrSignatureOrTopic: "
|
|
4
|
+
getFunction(nameOrSignature: "allowance" | "approve" | "balanceOf" | "burn" | "mint" | "minter" | "setMinter" | "totalSupply" | "transfer" | "transferFrom"): FunctionFragment;
|
|
5
|
+
getEvent(nameOrSignatureOrTopic: "Approval" | "MinterSet" | "Transfer"): EventFragment;
|
|
6
6
|
encodeFunctionData(functionFragment: "allowance", values: [AddressLike, AddressLike]): string;
|
|
7
7
|
encodeFunctionData(functionFragment: "approve", values: [AddressLike, BigNumberish]): string;
|
|
8
8
|
encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike]): string;
|
|
9
9
|
encodeFunctionData(functionFragment: "burn", values: [BigNumberish]): string;
|
|
10
|
-
encodeFunctionData(functionFragment: "burnTaxRate", values?: undefined): string;
|
|
11
|
-
encodeFunctionData(functionFragment: "feeCollector", values?: undefined): string;
|
|
12
|
-
encodeFunctionData(functionFragment: "manageWhitelist", values: [AddressLike, boolean]): string;
|
|
13
10
|
encodeFunctionData(functionFragment: "mint", values: [AddressLike, BigNumberish]): string;
|
|
14
11
|
encodeFunctionData(functionFragment: "minter", values?: undefined): string;
|
|
15
|
-
encodeFunctionData(functionFragment: "setBurnTaxRate", values: [BigNumberish]): string;
|
|
16
|
-
encodeFunctionData(functionFragment: "setFeeCollector", values: [AddressLike]): string;
|
|
17
12
|
encodeFunctionData(functionFragment: "setMinter", values: [AddressLike]): string;
|
|
18
|
-
encodeFunctionData(functionFragment: "setSwapTaxRate", values: [BigNumberish]): string;
|
|
19
|
-
encodeFunctionData(functionFragment: "setTaxRateIncrementLimit", values: [BigNumberish]): string;
|
|
20
|
-
encodeFunctionData(functionFragment: "swapTaxRate", values?: undefined): string;
|
|
21
|
-
encodeFunctionData(functionFragment: "taxRateIncrementLimit", values?: undefined): string;
|
|
22
13
|
encodeFunctionData(functionFragment: "totalSupply", values?: undefined): string;
|
|
23
14
|
encodeFunctionData(functionFragment: "transfer", values: [AddressLike, BigNumberish]): string;
|
|
24
15
|
encodeFunctionData(functionFragment: "transferFrom", values: [AddressLike, AddressLike, BigNumberish]): string;
|
|
25
|
-
encodeFunctionData(functionFragment: "whitelistAddress", values: [AddressLike]): string;
|
|
26
16
|
decodeFunctionResult(functionFragment: "allowance", data: BytesLike): Result;
|
|
27
17
|
decodeFunctionResult(functionFragment: "approve", data: BytesLike): Result;
|
|
28
18
|
decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
|
|
29
19
|
decodeFunctionResult(functionFragment: "burn", data: BytesLike): Result;
|
|
30
|
-
decodeFunctionResult(functionFragment: "burnTaxRate", data: BytesLike): Result;
|
|
31
|
-
decodeFunctionResult(functionFragment: "feeCollector", data: BytesLike): Result;
|
|
32
|
-
decodeFunctionResult(functionFragment: "manageWhitelist", data: BytesLike): Result;
|
|
33
20
|
decodeFunctionResult(functionFragment: "mint", data: BytesLike): Result;
|
|
34
21
|
decodeFunctionResult(functionFragment: "minter", data: BytesLike): Result;
|
|
35
|
-
decodeFunctionResult(functionFragment: "setBurnTaxRate", data: BytesLike): Result;
|
|
36
|
-
decodeFunctionResult(functionFragment: "setFeeCollector", data: BytesLike): Result;
|
|
37
22
|
decodeFunctionResult(functionFragment: "setMinter", data: BytesLike): Result;
|
|
38
|
-
decodeFunctionResult(functionFragment: "setSwapTaxRate", data: BytesLike): Result;
|
|
39
|
-
decodeFunctionResult(functionFragment: "setTaxRateIncrementLimit", data: BytesLike): Result;
|
|
40
|
-
decodeFunctionResult(functionFragment: "swapTaxRate", data: BytesLike): Result;
|
|
41
|
-
decodeFunctionResult(functionFragment: "taxRateIncrementLimit", data: BytesLike): Result;
|
|
42
23
|
decodeFunctionResult(functionFragment: "totalSupply", data: BytesLike): Result;
|
|
43
24
|
decodeFunctionResult(functionFragment: "transfer", data: BytesLike): Result;
|
|
44
25
|
decodeFunctionResult(functionFragment: "transferFrom", data: BytesLike): Result;
|
|
45
|
-
decodeFunctionResult(functionFragment: "whitelistAddress", data: BytesLike): Result;
|
|
46
|
-
}
|
|
47
|
-
export declare namespace AddressRemovedFromWhitelistEvent {
|
|
48
|
-
type InputTuple = [account: AddressLike];
|
|
49
|
-
type OutputTuple = [account: string];
|
|
50
|
-
interface OutputObject {
|
|
51
|
-
account: string;
|
|
52
|
-
}
|
|
53
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
54
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
55
|
-
type Log = TypedEventLog<Event>;
|
|
56
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
57
|
-
}
|
|
58
|
-
export declare namespace AddressWhitelistedEvent {
|
|
59
|
-
type InputTuple = [account: AddressLike];
|
|
60
|
-
type OutputTuple = [account: string];
|
|
61
|
-
interface OutputObject {
|
|
62
|
-
account: string;
|
|
63
|
-
}
|
|
64
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
65
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
66
|
-
type Log = TypedEventLog<Event>;
|
|
67
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
68
26
|
}
|
|
69
27
|
export declare namespace ApprovalEvent {
|
|
70
28
|
type InputTuple = [
|
|
@@ -83,49 +41,6 @@ export declare namespace ApprovalEvent {
|
|
|
83
41
|
type Log = TypedEventLog<Event>;
|
|
84
42
|
type LogDescription = TypedLogDescription<Event>;
|
|
85
43
|
}
|
|
86
|
-
export declare namespace BurnTaxRateUpdatedEvent {
|
|
87
|
-
type InputTuple = [newRate: BigNumberish];
|
|
88
|
-
type OutputTuple = [newRate: bigint];
|
|
89
|
-
interface OutputObject {
|
|
90
|
-
newRate: bigint;
|
|
91
|
-
}
|
|
92
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
93
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
94
|
-
type Log = TypedEventLog<Event>;
|
|
95
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
96
|
-
}
|
|
97
|
-
export declare namespace FeeCollectionDisabledEvent {
|
|
98
|
-
type InputTuple = [];
|
|
99
|
-
type OutputTuple = [];
|
|
100
|
-
interface OutputObject {
|
|
101
|
-
}
|
|
102
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
103
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
104
|
-
type Log = TypedEventLog<Event>;
|
|
105
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
106
|
-
}
|
|
107
|
-
export declare namespace FeeCollectionEnabledEvent {
|
|
108
|
-
type InputTuple = [feeCollector: AddressLike];
|
|
109
|
-
type OutputTuple = [feeCollector: string];
|
|
110
|
-
interface OutputObject {
|
|
111
|
-
feeCollector: string;
|
|
112
|
-
}
|
|
113
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
114
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
115
|
-
type Log = TypedEventLog<Event>;
|
|
116
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
117
|
-
}
|
|
118
|
-
export declare namespace FeeCollectorSetEvent {
|
|
119
|
-
type InputTuple = [feeCollector: AddressLike];
|
|
120
|
-
type OutputTuple = [feeCollector: string];
|
|
121
|
-
interface OutputObject {
|
|
122
|
-
feeCollector: string;
|
|
123
|
-
}
|
|
124
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
125
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
126
|
-
type Log = TypedEventLog<Event>;
|
|
127
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
128
|
-
}
|
|
129
44
|
export declare namespace MinterSetEvent {
|
|
130
45
|
type InputTuple = [minter: AddressLike];
|
|
131
46
|
type OutputTuple = [minter: string];
|
|
@@ -137,28 +52,6 @@ export declare namespace MinterSetEvent {
|
|
|
137
52
|
type Log = TypedEventLog<Event>;
|
|
138
53
|
type LogDescription = TypedLogDescription<Event>;
|
|
139
54
|
}
|
|
140
|
-
export declare namespace SwapTaxRateUpdatedEvent {
|
|
141
|
-
type InputTuple = [newRate: BigNumberish];
|
|
142
|
-
type OutputTuple = [newRate: bigint];
|
|
143
|
-
interface OutputObject {
|
|
144
|
-
newRate: bigint;
|
|
145
|
-
}
|
|
146
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
147
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
148
|
-
type Log = TypedEventLog<Event>;
|
|
149
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
150
|
-
}
|
|
151
|
-
export declare namespace TaxRateIncrementLimitUpdatedEvent {
|
|
152
|
-
type InputTuple = [newLimit: BigNumberish];
|
|
153
|
-
type OutputTuple = [newLimit: bigint];
|
|
154
|
-
interface OutputObject {
|
|
155
|
-
newLimit: bigint;
|
|
156
|
-
}
|
|
157
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
158
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
159
|
-
type Log = TypedEventLog<Event>;
|
|
160
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
161
|
-
}
|
|
162
55
|
export declare namespace TransferEvent {
|
|
163
56
|
type InputTuple = [
|
|
164
57
|
from: AddressLike,
|
|
@@ -203,14 +96,6 @@ export interface IRAACToken extends BaseContract {
|
|
|
203
96
|
], "nonpayable">;
|
|
204
97
|
balanceOf: TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
205
98
|
burn: TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
206
|
-
burnTaxRate: TypedContractMethod<[], [bigint], "view">;
|
|
207
|
-
feeCollector: TypedContractMethod<[], [string], "view">;
|
|
208
|
-
manageWhitelist: TypedContractMethod<[
|
|
209
|
-
account: AddressLike,
|
|
210
|
-
add: boolean
|
|
211
|
-
], [
|
|
212
|
-
void
|
|
213
|
-
], "nonpayable">;
|
|
214
99
|
mint: TypedContractMethod<[
|
|
215
100
|
to: AddressLike,
|
|
216
101
|
amount: BigNumberish
|
|
@@ -218,29 +103,7 @@ export interface IRAACToken extends BaseContract {
|
|
|
218
103
|
void
|
|
219
104
|
], "nonpayable">;
|
|
220
105
|
minter: TypedContractMethod<[], [string], "view">;
|
|
221
|
-
setBurnTaxRate: TypedContractMethod<[
|
|
222
|
-
_burnTaxRate: BigNumberish
|
|
223
|
-
], [
|
|
224
|
-
void
|
|
225
|
-
], "nonpayable">;
|
|
226
|
-
setFeeCollector: TypedContractMethod<[
|
|
227
|
-
feeCollector: AddressLike
|
|
228
|
-
], [
|
|
229
|
-
void
|
|
230
|
-
], "nonpayable">;
|
|
231
106
|
setMinter: TypedContractMethod<[minter: AddressLike], [void], "nonpayable">;
|
|
232
|
-
setSwapTaxRate: TypedContractMethod<[
|
|
233
|
-
_swapTaxRate: BigNumberish
|
|
234
|
-
], [
|
|
235
|
-
void
|
|
236
|
-
], "nonpayable">;
|
|
237
|
-
setTaxRateIncrementLimit: TypedContractMethod<[
|
|
238
|
-
_incrementLimit: BigNumberish
|
|
239
|
-
], [
|
|
240
|
-
void
|
|
241
|
-
], "nonpayable">;
|
|
242
|
-
swapTaxRate: TypedContractMethod<[], [bigint], "view">;
|
|
243
|
-
taxRateIncrementLimit: TypedContractMethod<[], [bigint], "view">;
|
|
244
107
|
totalSupply: TypedContractMethod<[], [bigint], "view">;
|
|
245
108
|
transfer: TypedContractMethod<[
|
|
246
109
|
to: AddressLike,
|
|
@@ -255,7 +118,6 @@ export interface IRAACToken extends BaseContract {
|
|
|
255
118
|
], [
|
|
256
119
|
boolean
|
|
257
120
|
], "nonpayable">;
|
|
258
|
-
whitelistAddress: TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
259
121
|
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
260
122
|
getFunction(nameOrSignature: "allowance"): TypedContractMethod<[
|
|
261
123
|
owner: AddressLike,
|
|
@@ -271,14 +133,6 @@ export interface IRAACToken extends BaseContract {
|
|
|
271
133
|
], "nonpayable">;
|
|
272
134
|
getFunction(nameOrSignature: "balanceOf"): TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
273
135
|
getFunction(nameOrSignature: "burn"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
274
|
-
getFunction(nameOrSignature: "burnTaxRate"): TypedContractMethod<[], [bigint], "view">;
|
|
275
|
-
getFunction(nameOrSignature: "feeCollector"): TypedContractMethod<[], [string], "view">;
|
|
276
|
-
getFunction(nameOrSignature: "manageWhitelist"): TypedContractMethod<[
|
|
277
|
-
account: AddressLike,
|
|
278
|
-
add: boolean
|
|
279
|
-
], [
|
|
280
|
-
void
|
|
281
|
-
], "nonpayable">;
|
|
282
136
|
getFunction(nameOrSignature: "mint"): TypedContractMethod<[
|
|
283
137
|
to: AddressLike,
|
|
284
138
|
amount: BigNumberish
|
|
@@ -286,13 +140,7 @@ export interface IRAACToken extends BaseContract {
|
|
|
286
140
|
void
|
|
287
141
|
], "nonpayable">;
|
|
288
142
|
getFunction(nameOrSignature: "minter"): TypedContractMethod<[], [string], "view">;
|
|
289
|
-
getFunction(nameOrSignature: "setBurnTaxRate"): TypedContractMethod<[_burnTaxRate: BigNumberish], [void], "nonpayable">;
|
|
290
|
-
getFunction(nameOrSignature: "setFeeCollector"): TypedContractMethod<[feeCollector: AddressLike], [void], "nonpayable">;
|
|
291
143
|
getFunction(nameOrSignature: "setMinter"): TypedContractMethod<[minter: AddressLike], [void], "nonpayable">;
|
|
292
|
-
getFunction(nameOrSignature: "setSwapTaxRate"): TypedContractMethod<[_swapTaxRate: BigNumberish], [void], "nonpayable">;
|
|
293
|
-
getFunction(nameOrSignature: "setTaxRateIncrementLimit"): TypedContractMethod<[_incrementLimit: BigNumberish], [void], "nonpayable">;
|
|
294
|
-
getFunction(nameOrSignature: "swapTaxRate"): TypedContractMethod<[], [bigint], "view">;
|
|
295
|
-
getFunction(nameOrSignature: "taxRateIncrementLimit"): TypedContractMethod<[], [bigint], "view">;
|
|
296
144
|
getFunction(nameOrSignature: "totalSupply"): TypedContractMethod<[], [bigint], "view">;
|
|
297
145
|
getFunction(nameOrSignature: "transfer"): TypedContractMethod<[
|
|
298
146
|
to: AddressLike,
|
|
@@ -307,39 +155,14 @@ export interface IRAACToken extends BaseContract {
|
|
|
307
155
|
], [
|
|
308
156
|
boolean
|
|
309
157
|
], "nonpayable">;
|
|
310
|
-
getFunction(nameOrSignature: "whitelistAddress"): TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
311
|
-
getEvent(key: "AddressRemovedFromWhitelist"): TypedContractEvent<AddressRemovedFromWhitelistEvent.InputTuple, AddressRemovedFromWhitelistEvent.OutputTuple, AddressRemovedFromWhitelistEvent.OutputObject>;
|
|
312
|
-
getEvent(key: "AddressWhitelisted"): TypedContractEvent<AddressWhitelistedEvent.InputTuple, AddressWhitelistedEvent.OutputTuple, AddressWhitelistedEvent.OutputObject>;
|
|
313
158
|
getEvent(key: "Approval"): TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
|
|
314
|
-
getEvent(key: "BurnTaxRateUpdated"): TypedContractEvent<BurnTaxRateUpdatedEvent.InputTuple, BurnTaxRateUpdatedEvent.OutputTuple, BurnTaxRateUpdatedEvent.OutputObject>;
|
|
315
|
-
getEvent(key: "FeeCollectionDisabled"): TypedContractEvent<FeeCollectionDisabledEvent.InputTuple, FeeCollectionDisabledEvent.OutputTuple, FeeCollectionDisabledEvent.OutputObject>;
|
|
316
|
-
getEvent(key: "FeeCollectionEnabled"): TypedContractEvent<FeeCollectionEnabledEvent.InputTuple, FeeCollectionEnabledEvent.OutputTuple, FeeCollectionEnabledEvent.OutputObject>;
|
|
317
|
-
getEvent(key: "FeeCollectorSet"): TypedContractEvent<FeeCollectorSetEvent.InputTuple, FeeCollectorSetEvent.OutputTuple, FeeCollectorSetEvent.OutputObject>;
|
|
318
159
|
getEvent(key: "MinterSet"): TypedContractEvent<MinterSetEvent.InputTuple, MinterSetEvent.OutputTuple, MinterSetEvent.OutputObject>;
|
|
319
|
-
getEvent(key: "SwapTaxRateUpdated"): TypedContractEvent<SwapTaxRateUpdatedEvent.InputTuple, SwapTaxRateUpdatedEvent.OutputTuple, SwapTaxRateUpdatedEvent.OutputObject>;
|
|
320
|
-
getEvent(key: "TaxRateIncrementLimitUpdated"): TypedContractEvent<TaxRateIncrementLimitUpdatedEvent.InputTuple, TaxRateIncrementLimitUpdatedEvent.OutputTuple, TaxRateIncrementLimitUpdatedEvent.OutputObject>;
|
|
321
160
|
getEvent(key: "Transfer"): TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
322
161
|
filters: {
|
|
323
|
-
"AddressRemovedFromWhitelist(address)": TypedContractEvent<AddressRemovedFromWhitelistEvent.InputTuple, AddressRemovedFromWhitelistEvent.OutputTuple, AddressRemovedFromWhitelistEvent.OutputObject>;
|
|
324
|
-
AddressRemovedFromWhitelist: TypedContractEvent<AddressRemovedFromWhitelistEvent.InputTuple, AddressRemovedFromWhitelistEvent.OutputTuple, AddressRemovedFromWhitelistEvent.OutputObject>;
|
|
325
|
-
"AddressWhitelisted(address)": TypedContractEvent<AddressWhitelistedEvent.InputTuple, AddressWhitelistedEvent.OutputTuple, AddressWhitelistedEvent.OutputObject>;
|
|
326
|
-
AddressWhitelisted: TypedContractEvent<AddressWhitelistedEvent.InputTuple, AddressWhitelistedEvent.OutputTuple, AddressWhitelistedEvent.OutputObject>;
|
|
327
162
|
"Approval(address,address,uint256)": TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
|
|
328
163
|
Approval: TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
|
|
329
|
-
"BurnTaxRateUpdated(uint256)": TypedContractEvent<BurnTaxRateUpdatedEvent.InputTuple, BurnTaxRateUpdatedEvent.OutputTuple, BurnTaxRateUpdatedEvent.OutputObject>;
|
|
330
|
-
BurnTaxRateUpdated: TypedContractEvent<BurnTaxRateUpdatedEvent.InputTuple, BurnTaxRateUpdatedEvent.OutputTuple, BurnTaxRateUpdatedEvent.OutputObject>;
|
|
331
|
-
"FeeCollectionDisabled()": TypedContractEvent<FeeCollectionDisabledEvent.InputTuple, FeeCollectionDisabledEvent.OutputTuple, FeeCollectionDisabledEvent.OutputObject>;
|
|
332
|
-
FeeCollectionDisabled: TypedContractEvent<FeeCollectionDisabledEvent.InputTuple, FeeCollectionDisabledEvent.OutputTuple, FeeCollectionDisabledEvent.OutputObject>;
|
|
333
|
-
"FeeCollectionEnabled(address)": TypedContractEvent<FeeCollectionEnabledEvent.InputTuple, FeeCollectionEnabledEvent.OutputTuple, FeeCollectionEnabledEvent.OutputObject>;
|
|
334
|
-
FeeCollectionEnabled: TypedContractEvent<FeeCollectionEnabledEvent.InputTuple, FeeCollectionEnabledEvent.OutputTuple, FeeCollectionEnabledEvent.OutputObject>;
|
|
335
|
-
"FeeCollectorSet(address)": TypedContractEvent<FeeCollectorSetEvent.InputTuple, FeeCollectorSetEvent.OutputTuple, FeeCollectorSetEvent.OutputObject>;
|
|
336
|
-
FeeCollectorSet: TypedContractEvent<FeeCollectorSetEvent.InputTuple, FeeCollectorSetEvent.OutputTuple, FeeCollectorSetEvent.OutputObject>;
|
|
337
164
|
"MinterSet(address)": TypedContractEvent<MinterSetEvent.InputTuple, MinterSetEvent.OutputTuple, MinterSetEvent.OutputObject>;
|
|
338
165
|
MinterSet: TypedContractEvent<MinterSetEvent.InputTuple, MinterSetEvent.OutputTuple, MinterSetEvent.OutputObject>;
|
|
339
|
-
"SwapTaxRateUpdated(uint256)": TypedContractEvent<SwapTaxRateUpdatedEvent.InputTuple, SwapTaxRateUpdatedEvent.OutputTuple, SwapTaxRateUpdatedEvent.OutputObject>;
|
|
340
|
-
SwapTaxRateUpdated: TypedContractEvent<SwapTaxRateUpdatedEvent.InputTuple, SwapTaxRateUpdatedEvent.OutputTuple, SwapTaxRateUpdatedEvent.OutputObject>;
|
|
341
|
-
"TaxRateIncrementLimitUpdated(uint256)": TypedContractEvent<TaxRateIncrementLimitUpdatedEvent.InputTuple, TaxRateIncrementLimitUpdatedEvent.OutputTuple, TaxRateIncrementLimitUpdatedEvent.OutputObject>;
|
|
342
|
-
TaxRateIncrementLimitUpdated: TypedContractEvent<TaxRateIncrementLimitUpdatedEvent.InputTuple, TaxRateIncrementLimitUpdatedEvent.OutputTuple, TaxRateIncrementLimitUpdatedEvent.OutputObject>;
|
|
343
166
|
"Transfer(address,address,uint256)": TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
344
167
|
Transfer: TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
345
168
|
};
|