@raac/rpc 1.2.0-beta.10 → 1.2.0-beta.11
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 +2 -0
- package/dist/artifacts/core/governance/gauges/BaseGauge.sol/BaseGauge.json +113 -20
- package/dist/artifacts/core/governance/gauges/GaugeController.sol/GaugeController.json +259 -31
- package/dist/artifacts/core/governance/gauges/GaugeRewardsDistributor.sol/GaugeRewardsDistributor.json +159 -31
- package/dist/artifacts/core/governance/gauges/RAACGauge.sol/RAACGauge.json +115 -22
- package/dist/artifacts/core/governance/gauges/RWAGauge.sol/RWAGauge.json +115 -22
- package/dist/configs/chains/1.json +22 -25
- package/dist/configs/chains/11155111.json +56 -71
- package/dist/configs/chains/17000.json +22 -25
- package/dist/configs/chains/18453.json +22 -25
- package/dist/configs/chains/8453.json +61 -31
- package/dist/contracts/findContract.js +11 -4
- package/dist/contracts/getContractAddress.js +0 -1
- package/dist/contracts/governance/distributor/claimAll.js +18 -11
- package/dist/contracts/governance/distributor/claimForGauge.js +18 -12
- package/dist/contracts/governance/distributor/deposit.js +17 -12
- package/dist/contracts/governance/distributor/getClaimableForGauge.js +10 -9
- package/dist/contracts/governance/distributor/getClaimedAtEpoch.js +11 -10
- package/dist/contracts/governance/distributor/getDepositedAtEpoch.js +8 -8
- package/dist/contracts/governance/distributor/getDustLastProcessedEpoch.js +28 -0
- package/dist/contracts/governance/distributor/getGaugeController.js +7 -7
- package/dist/contracts/governance/distributor/getLastClaimedEpoch.js +10 -9
- package/dist/contracts/governance/distributor/getMaxClaimBound.js +29 -0
- package/dist/contracts/governance/distributor/getPeriodDuration.js +7 -7
- package/dist/contracts/governance/distributor/getRewardToken.js +7 -7
- package/dist/contracts/governance/distributor/getRewardTokenInfo.js +7 -7
- package/dist/contracts/governance/distributor/getRewardTokenStats.js +7 -7
- package/dist/contracts/governance/distributor/index.js +5 -2
- package/dist/contracts/governance/distributor/setController.js +17 -12
- package/dist/contracts/governance/distributor/setLastClaimedEpoch.js +32 -0
- package/dist/contracts/governance/distributor/setMaxClaimBound.js +31 -0
- package/dist/contracts/governance/distributor/withdrawDust.js +31 -0
- package/dist/contracts/governance/distributor/withdrawRemovedGaugeRewards.js +19 -13
- package/dist/contracts/governance/gauge/_apy.js +122 -0
- package/dist/contracts/governance/gauge/_tokens.js +36 -0
- package/dist/contracts/governance/gauge/addRewardToken.js +2 -12
- package/dist/contracts/governance/gauge/approveGaugeToken.js +31 -0
- package/dist/contracts/governance/gauge/claimExtraReward.js +2 -12
- package/dist/contracts/governance/gauge/claimExtraRewards.js +2 -12
- package/dist/contracts/governance/gauge/claimOnBehalfOf.js +2 -12
- package/dist/contracts/governance/gauge/claimRewardToken.js +3 -13
- package/dist/contracts/governance/gauge/claimRewardsFor.js +2 -12
- package/dist/contracts/governance/gauge/depositRewardToken.js +2 -12
- package/dist/contracts/governance/gauge/getAllPendingExtraRewards.js +2 -9
- package/dist/contracts/governance/gauge/getApy.js +44 -0
- package/dist/contracts/governance/gauge/getBalanceOf.js +2 -15
- package/dist/contracts/governance/gauge/getControllerAddress.js +2 -9
- package/dist/contracts/governance/gauge/getDecimalAdjustment.js +2 -9
- package/dist/contracts/governance/gauge/getDepositRAACOnClaim.js +2 -9
- package/dist/contracts/governance/gauge/getDistributorData.js +2 -9
- package/dist/contracts/governance/gauge/getDistributors.js +2 -9
- package/dist/contracts/governance/gauge/getEarnedExtraReward.js +30 -0
- package/dist/contracts/governance/gauge/getEarnedReward.js +8 -14
- package/dist/contracts/governance/gauge/getExtraRewardTokens.js +2 -9
- package/dist/contracts/governance/gauge/getGaugeData.js +39 -0
- package/dist/contracts/governance/gauge/getGaugeRewardTokenData.js +2 -9
- package/dist/contracts/governance/gauge/getPauseStatus.js +31 -0
- package/dist/contracts/governance/gauge/getPendingExtraRewards.js +2 -9
- package/dist/contracts/governance/gauge/getPendingRewards.js +8 -14
- package/dist/contracts/governance/gauge/getPeriodBoundaries.js +2 -15
- package/dist/contracts/governance/gauge/getPeriodDuration.js +2 -15
- package/dist/contracts/governance/gauge/getRaacAutolockMin.js +2 -9
- package/dist/contracts/governance/gauge/getRawBalanceOf.js +2 -15
- package/dist/contracts/governance/gauge/getRawTotalSupply.js +2 -15
- package/dist/contracts/governance/gauge/getRewardTokens.js +28 -0
- package/dist/contracts/governance/gauge/getTotalSupply.js +2 -15
- package/dist/contracts/governance/gauge/getUserApy.js +71 -0
- package/dist/contracts/governance/gauge/getUserClaimableRewards.js +21 -73
- package/dist/contracts/governance/gauge/getUserGaugeState.js +44 -0
- package/dist/contracts/governance/gauge/getUserRewardTokenData.js +2 -9
- package/dist/contracts/governance/gauge/getUserWeight.js +2 -9
- package/dist/contracts/governance/gauge/index.js +11 -1
- package/dist/contracts/governance/gauge/isPaused.js +4 -11
- package/dist/contracts/governance/gauge/manageDistributor.js +2 -12
- package/dist/contracts/governance/gauge/pullRewardsFromDistributor.js +30 -0
- package/dist/contracts/governance/gauge/setController.js +2 -12
- package/dist/contracts/governance/gauge/setDepositRAACOnClaim.js +2 -12
- package/dist/contracts/governance/gauge/setEmergencyPaused.js +2 -12
- package/dist/contracts/governance/gauge/setGaugeRewardDistributor.js +2 -12
- package/dist/contracts/governance/gauge/setRaacAutolockMin.js +2 -12
- package/dist/contracts/governance/gauge/stake.js +2 -18
- package/dist/contracts/governance/gauge/unwrapStakingToken.js +28 -0
- package/dist/contracts/governance/gauge/updateUserRewards.js +2 -18
- package/dist/contracts/governance/gauge/withdraw.js +2 -18
- package/dist/contracts/governance/gauge/wrapStakingToken.js +28 -0
- package/dist/contracts/governance/gaugeController/addGauge.js +19 -11
- package/dist/contracts/governance/gaugeController/batchVote.js +20 -12
- package/dist/contracts/governance/gaugeController/calculateBoost.js +20 -23
- package/dist/contracts/governance/gaugeController/forceCompleteCheckpoint.js +19 -11
- package/dist/contracts/governance/gaugeController/getActiveGaugeCount.js +28 -0
- package/dist/contracts/governance/gaugeController/getActiveGauges.js +10 -13
- package/dist/contracts/governance/gaugeController/getConstants.js +10 -18
- package/dist/contracts/governance/gaugeController/getCurrentEpoch.js +8 -7
- package/dist/contracts/governance/gaugeController/getExpiredGaugeVotePower.js +30 -0
- package/dist/contracts/governance/gaugeController/getGauge.js +11 -9
- package/dist/contracts/governance/gaugeController/getGaugeDistributor.js +28 -0
- package/dist/contracts/governance/gaugeController/getGaugeEmissions.js +15 -9
- package/dist/contracts/governance/gaugeController/getGaugeRelativeWeight.js +19 -15
- package/dist/contracts/governance/gaugeController/getGaugeRelativeWeightView.js +12 -10
- package/dist/contracts/governance/gaugeController/getGaugeWeight.js +10 -8
- package/dist/contracts/governance/gaugeController/getLastVoteTime.js +11 -9
- package/dist/contracts/governance/gaugeController/getMaxVoteBuckets.js +28 -0
- package/dist/contracts/governance/gaugeController/getNextEpoch.js +8 -7
- package/dist/contracts/governance/gaugeController/getRegisteredGaugeList.js +28 -0
- package/dist/contracts/governance/gaugeController/getTotalWeight.js +8 -7
- package/dist/contracts/governance/gaugeController/getUserGaugeVotePower.js +11 -9
- package/dist/contracts/governance/gaugeController/getUserVotePowerRemaining.js +10 -9
- package/dist/contracts/governance/gaugeController/getVeToken.js +8 -7
- package/dist/contracts/governance/gaugeController/getVoteUserLocks.js +32 -0
- package/dist/contracts/governance/gaugeController/getVoteUserPower.js +8 -7
- package/dist/contracts/governance/gaugeController/getVoteUserSlope.js +12 -10
- package/dist/contracts/governance/gaugeController/index.js +10 -1
- package/dist/contracts/governance/gaugeController/isGaugeActive.js +11 -9
- package/dist/contracts/governance/gaugeController/isPaused.js +9 -8
- package/dist/contracts/governance/gaugeController/kick.js +17 -10
- package/dist/contracts/governance/gaugeController/removeGauge.js +20 -11
- package/dist/contracts/governance/gaugeController/removePowerFromGauge.js +19 -11
- package/dist/contracts/governance/gaugeController/setBoostAmplificationEnabled.js +20 -12
- package/dist/contracts/governance/gaugeController/setDistributor.js +31 -0
- package/dist/contracts/governance/gaugeController/setEmergencyGaugePause.js +20 -12
- package/dist/contracts/governance/gaugeController/setEmergencyGaugePauseBatch.js +33 -0
- package/dist/contracts/governance/gaugeController/setEmergencyPause.js +18 -11
- package/dist/contracts/governance/gaugeController/setMaxVoteBuckets.js +31 -0
- package/dist/contracts/governance/gaugeController/vote.js +15 -16
- package/dist/contracts/governance/gaugeSystems/_helpers.js +123 -0
- package/dist/contracts/governance/gaugeSystems/findGauge.js +14 -0
- package/dist/contracts/governance/gaugeSystems/getGaugeSystem.js +14 -0
- package/dist/contracts/governance/gaugeSystems/getGaugeSystems.js +13 -0
- package/dist/contracts/governance/gaugeSystems/getGauges.js +15 -0
- package/dist/contracts/governance/gaugeSystems/index.js +21 -0
- package/dist/types/RPCLibrary.d.ts +2 -0
- package/dist/types/configs/chains/index.d.ts +36 -46
- package/dist/types/configs/index.d.ts +18 -23
- package/dist/types/contracts/governance/distributor/claimAll.d.ts +7 -5
- package/dist/types/contracts/governance/distributor/claimForGauge.d.ts +7 -6
- package/dist/types/contracts/governance/distributor/deposit.d.ts +7 -6
- package/dist/types/contracts/governance/distributor/getClaimableForGauge.d.ts +6 -4
- package/dist/types/contracts/governance/distributor/getClaimedAtEpoch.d.ts +7 -5
- package/dist/types/contracts/governance/distributor/getDepositedAtEpoch.d.ts +6 -4
- package/dist/types/contracts/governance/distributor/getDustLastProcessedEpoch.d.ts +12 -0
- package/dist/types/contracts/governance/distributor/getGaugeController.d.ts +5 -3
- package/dist/types/contracts/governance/distributor/getLastClaimedEpoch.d.ts +6 -4
- package/dist/types/contracts/governance/distributor/getMaxClaimBound.d.ts +15 -0
- package/dist/types/contracts/governance/distributor/getPeriodDuration.d.ts +5 -3
- package/dist/types/contracts/governance/distributor/getRewardToken.d.ts +5 -3
- package/dist/types/contracts/governance/distributor/getRewardTokenInfo.d.ts +5 -3
- package/dist/types/contracts/governance/distributor/getRewardTokenStats.d.ts +5 -3
- package/dist/types/contracts/governance/distributor/index.d.ts +5 -2
- package/dist/types/contracts/governance/distributor/setController.d.ts +7 -6
- package/dist/types/contracts/governance/distributor/setLastClaimedEpoch.d.ts +13 -0
- package/dist/types/contracts/governance/distributor/setMaxClaimBound.d.ts +13 -0
- package/dist/types/contracts/governance/distributor/withdrawDust.d.ts +13 -0
- package/dist/types/contracts/governance/distributor/withdrawRemovedGaugeRewards.d.ts +8 -7
- package/dist/types/contracts/governance/gauge/_apy.d.ts +61 -0
- package/dist/types/contracts/governance/gauge/_tokens.d.ts +14 -0
- package/dist/types/contracts/governance/gauge/approveGaugeToken.d.ts +14 -0
- package/dist/types/contracts/governance/gauge/claimRewardToken.d.ts +1 -1
- package/dist/types/contracts/governance/gauge/getApy.d.ts +41 -0
- package/dist/types/contracts/governance/gauge/getEarnedExtraReward.d.ts +13 -0
- package/dist/types/contracts/governance/gauge/getEarnedReward.d.ts +3 -2
- package/dist/types/contracts/governance/gauge/getGaugeData.d.ts +23 -0
- package/dist/types/contracts/governance/gauge/getPauseStatus.d.ts +19 -0
- package/dist/types/contracts/governance/gauge/getPendingRewards.d.ts +3 -2
- package/dist/types/contracts/governance/gauge/getRewardTokens.d.ts +11 -0
- package/dist/types/contracts/governance/gauge/getUserApy.d.ts +44 -0
- package/dist/types/contracts/governance/gauge/getUserClaimableRewards.d.ts +14 -12
- package/dist/types/contracts/governance/gauge/getUserGaugeState.d.ts +31 -0
- package/dist/types/contracts/governance/gauge/index.d.ts +11 -1
- package/dist/types/contracts/governance/gauge/isPaused.d.ts +1 -1
- package/dist/types/contracts/governance/gauge/pullRewardsFromDistributor.d.ts +11 -0
- package/dist/types/contracts/governance/gauge/unwrapStakingToken.d.ts +12 -0
- package/dist/types/contracts/governance/gauge/wrapStakingToken.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeController/addGauge.d.ts +8 -5
- package/dist/types/contracts/governance/gaugeController/batchVote.d.ts +9 -6
- package/dist/types/contracts/governance/gaugeController/calculateBoost.d.ts +10 -8
- package/dist/types/contracts/governance/gaugeController/forceCompleteCheckpoint.d.ts +8 -5
- package/dist/types/contracts/governance/gaugeController/getActiveGaugeCount.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getActiveGauges.d.ts +7 -3
- package/dist/types/contracts/governance/gaugeController/getConstants.d.ts +6 -4
- package/dist/types/contracts/governance/gaugeController/getCurrentEpoch.d.ts +6 -3
- package/dist/types/contracts/governance/gaugeController/getExpiredGaugeVotePower.d.ts +16 -0
- package/dist/types/contracts/governance/gaugeController/getGauge.d.ts +7 -4
- package/dist/types/contracts/governance/gaugeController/getGaugeDistributor.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getGaugeEmissions.d.ts +6 -3
- package/dist/types/contracts/governance/gaugeController/getGaugeRelativeWeight.d.ts +8 -9
- package/dist/types/contracts/governance/gaugeController/getGaugeRelativeWeightView.d.ts +8 -5
- package/dist/types/contracts/governance/gaugeController/getGaugeWeight.d.ts +6 -4
- package/dist/types/contracts/governance/gaugeController/getLastVoteTime.d.ts +7 -4
- package/dist/types/contracts/governance/gaugeController/getMaxVoteBuckets.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getNextEpoch.d.ts +6 -3
- package/dist/types/contracts/governance/gaugeController/getRegisteredGaugeList.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getTotalWeight.d.ts +5 -3
- package/dist/types/contracts/governance/gaugeController/getUserGaugeVotePower.d.ts +7 -4
- package/dist/types/contracts/governance/gaugeController/getUserVotePowerRemaining.d.ts +6 -4
- package/dist/types/contracts/governance/gaugeController/getVeToken.d.ts +6 -3
- package/dist/types/contracts/governance/gaugeController/getVoteUserLocks.d.ts +17 -0
- package/dist/types/contracts/governance/gaugeController/getVoteUserPower.d.ts +6 -3
- package/dist/types/contracts/governance/gaugeController/getVoteUserSlope.d.ts +8 -5
- package/dist/types/contracts/governance/gaugeController/index.d.ts +10 -1
- package/dist/types/contracts/governance/gaugeController/isGaugeActive.d.ts +6 -4
- package/dist/types/contracts/governance/gaugeController/isPaused.d.ts +6 -3
- package/dist/types/contracts/governance/gaugeController/kick.d.ts +7 -4
- package/dist/types/contracts/governance/gaugeController/removeGauge.d.ts +9 -5
- package/dist/types/contracts/governance/gaugeController/removePowerFromGauge.d.ts +8 -5
- package/dist/types/contracts/governance/gaugeController/setBoostAmplificationEnabled.d.ts +9 -6
- package/dist/types/contracts/governance/gaugeController/setDistributor.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeController/setEmergencyGaugePause.d.ts +9 -6
- package/dist/types/contracts/governance/gaugeController/setEmergencyGaugePauseBatch.d.ts +14 -0
- package/dist/types/contracts/governance/gaugeController/setEmergencyPause.d.ts +8 -5
- package/dist/types/contracts/governance/gaugeController/setMaxVoteBuckets.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeController/vote.d.ts +9 -7
- package/dist/types/contracts/governance/gaugeSystems/_helpers.d.ts +71 -0
- package/dist/types/contracts/governance/gaugeSystems/findGauge.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeSystems/getGaugeSystem.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeSystems/getGaugeSystems.d.ts +10 -0
- package/dist/types/contracts/governance/gaugeSystems/getGauges.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeSystems/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +176 -105
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +260 -213
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +173 -212
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +176 -105
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +176 -105
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +111 -108
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +210 -34
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +112 -151
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +174 -95
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +243 -227
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +164 -232
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +185 -98
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +185 -98
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +104 -95
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +241 -22
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts +72 -158
- package/dist/types/utils/artifacts.d.ts +40 -0
- package/dist/types/utils/contracts.d.ts +34 -44
- package/dist/utils/contracts.js +1 -1
- package/package.json +1 -1
- package/dist/contracts/governance/distributor/getStartEpoch.js +0 -28
- package/dist/contracts/governance/distributor/withdrawUnallocatedRewards.js +0 -26
- package/dist/contracts/governance/gauge/setDistributorApproval.js +0 -35
- package/dist/types/contracts/governance/distributor/getStartEpoch.d.ts +0 -10
- package/dist/types/contracts/governance/distributor/withdrawUnallocatedRewards.d.ts +0 -12
- package/dist/types/contracts/governance/gauge/setDistributorApproval.d.ts +0 -11
|
@@ -1,98 +1,124 @@
|
|
|
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 IGaugeRewardsDistributorInterface extends Interface {
|
|
4
|
-
getFunction(nameOrSignature: "
|
|
5
|
-
getEvent(nameOrSignatureOrTopic: "
|
|
6
|
-
encodeFunctionData(functionFragment: "addGaugeRewardToken", values: [AddressLike, AddressLike]): string;
|
|
7
|
-
encodeFunctionData(functionFragment: "addRewardToken", values: [AddressLike]): string;
|
|
4
|
+
getFunction(nameOrSignature: "claimAll" | "claimForGauge" | "deposit" | "getClaimableForGauge" | "getRewardTokenInfo" | "rewardToken" | "setController" | "setLastClaimedEpoch" | "withdrawRemovedGaugeRewards"): FunctionFragment;
|
|
5
|
+
getEvent(nameOrSignatureOrTopic: "ControllerUpdated" | "DustWithdrawn" | "GaugeLastClaimedEpochUpdated" | "MaxClaimBoundUpdated" | "RemovedGaugeRewardsWithdrawn" | "RewardDeposited" | "RewardTransferred"): EventFragment;
|
|
8
6
|
encodeFunctionData(functionFragment: "claimAll", values: [AddressLike[]]): string;
|
|
9
|
-
encodeFunctionData(functionFragment: "claimForGauge", values: [AddressLike
|
|
7
|
+
encodeFunctionData(functionFragment: "claimForGauge", values: [AddressLike]): string;
|
|
10
8
|
encodeFunctionData(functionFragment: "deposit", values: [AddressLike, BigNumberish]): string;
|
|
11
|
-
encodeFunctionData(functionFragment: "
|
|
12
|
-
encodeFunctionData(functionFragment: "
|
|
13
|
-
encodeFunctionData(functionFragment: "
|
|
14
|
-
encodeFunctionData(functionFragment: "
|
|
15
|
-
encodeFunctionData(functionFragment: "
|
|
16
|
-
encodeFunctionData(functionFragment: "
|
|
17
|
-
encodeFunctionData(functionFragment: "getRewardTokens", values?: undefined): string;
|
|
18
|
-
encodeFunctionData(functionFragment: "isRewardTokenApproved", values: [AddressLike, AddressLike]): string;
|
|
19
|
-
encodeFunctionData(functionFragment: "isTokenApproved", values: [AddressLike]): string;
|
|
20
|
-
encodeFunctionData(functionFragment: "removeGaugeRewardToken", values: [AddressLike, AddressLike]): string;
|
|
21
|
-
encodeFunctionData(functionFragment: "removeRewardToken", values: [AddressLike]): string;
|
|
22
|
-
decodeFunctionResult(functionFragment: "addGaugeRewardToken", data: BytesLike): Result;
|
|
23
|
-
decodeFunctionResult(functionFragment: "addRewardToken", data: BytesLike): Result;
|
|
9
|
+
encodeFunctionData(functionFragment: "getClaimableForGauge", values: [AddressLike]): string;
|
|
10
|
+
encodeFunctionData(functionFragment: "getRewardTokenInfo", values?: undefined): string;
|
|
11
|
+
encodeFunctionData(functionFragment: "rewardToken", values?: undefined): string;
|
|
12
|
+
encodeFunctionData(functionFragment: "setController", values: [AddressLike]): string;
|
|
13
|
+
encodeFunctionData(functionFragment: "setLastClaimedEpoch", values: [AddressLike]): string;
|
|
14
|
+
encodeFunctionData(functionFragment: "withdrawRemovedGaugeRewards", values: [AddressLike, AddressLike]): string;
|
|
24
15
|
decodeFunctionResult(functionFragment: "claimAll", data: BytesLike): Result;
|
|
25
16
|
decodeFunctionResult(functionFragment: "claimForGauge", data: BytesLike): Result;
|
|
26
17
|
decodeFunctionResult(functionFragment: "deposit", data: BytesLike): Result;
|
|
27
|
-
decodeFunctionResult(functionFragment: "emergencyWithdraw", data: BytesLike): Result;
|
|
28
|
-
decodeFunctionResult(functionFragment: "getAvailableBalance", data: BytesLike): Result;
|
|
29
18
|
decodeFunctionResult(functionFragment: "getClaimableForGauge", data: BytesLike): Result;
|
|
30
|
-
decodeFunctionResult(functionFragment: "getGaugeRewardTokens", data: BytesLike): Result;
|
|
31
|
-
decodeFunctionResult(functionFragment: "getRewardTokenCount", data: BytesLike): Result;
|
|
32
19
|
decodeFunctionResult(functionFragment: "getRewardTokenInfo", data: BytesLike): Result;
|
|
33
|
-
decodeFunctionResult(functionFragment: "
|
|
34
|
-
decodeFunctionResult(functionFragment: "
|
|
35
|
-
decodeFunctionResult(functionFragment: "
|
|
36
|
-
decodeFunctionResult(functionFragment: "
|
|
37
|
-
decodeFunctionResult(functionFragment: "removeRewardToken", data: BytesLike): Result;
|
|
20
|
+
decodeFunctionResult(functionFragment: "rewardToken", data: BytesLike): Result;
|
|
21
|
+
decodeFunctionResult(functionFragment: "setController", data: BytesLike): Result;
|
|
22
|
+
decodeFunctionResult(functionFragment: "setLastClaimedEpoch", data: BytesLike): Result;
|
|
23
|
+
decodeFunctionResult(functionFragment: "withdrawRemovedGaugeRewards", data: BytesLike): Result;
|
|
38
24
|
}
|
|
39
|
-
export declare namespace
|
|
40
|
-
type InputTuple = [
|
|
41
|
-
|
|
25
|
+
export declare namespace ControllerUpdatedEvent {
|
|
26
|
+
type InputTuple = [
|
|
27
|
+
oldController: AddressLike,
|
|
28
|
+
newController: AddressLike
|
|
29
|
+
];
|
|
30
|
+
type OutputTuple = [oldController: string, newController: string];
|
|
42
31
|
interface OutputObject {
|
|
43
|
-
|
|
32
|
+
oldController: string;
|
|
33
|
+
newController: string;
|
|
34
|
+
}
|
|
35
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
36
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
37
|
+
type Log = TypedEventLog<Event>;
|
|
38
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
39
|
+
}
|
|
40
|
+
export declare namespace DustWithdrawnEvent {
|
|
41
|
+
type InputTuple = [
|
|
42
|
+
recipient: AddressLike,
|
|
43
|
+
token: AddressLike,
|
|
44
|
+
amount: BigNumberish
|
|
45
|
+
];
|
|
46
|
+
type OutputTuple = [recipient: string, token: string, amount: bigint];
|
|
47
|
+
interface OutputObject {
|
|
48
|
+
recipient: string;
|
|
44
49
|
token: string;
|
|
50
|
+
amount: bigint;
|
|
45
51
|
}
|
|
46
52
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
47
53
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
48
54
|
type Log = TypedEventLog<Event>;
|
|
49
55
|
type LogDescription = TypedLogDescription<Event>;
|
|
50
56
|
}
|
|
51
|
-
export declare namespace
|
|
52
|
-
type InputTuple = [gauge: AddressLike,
|
|
53
|
-
type OutputTuple = [gauge: string,
|
|
57
|
+
export declare namespace GaugeLastClaimedEpochUpdatedEvent {
|
|
58
|
+
type InputTuple = [gauge: AddressLike, currentEpoch: BigNumberish];
|
|
59
|
+
type OutputTuple = [gauge: string, currentEpoch: bigint];
|
|
54
60
|
interface OutputObject {
|
|
55
61
|
gauge: string;
|
|
56
|
-
|
|
62
|
+
currentEpoch: bigint;
|
|
57
63
|
}
|
|
58
64
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
59
65
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
60
66
|
type Log = TypedEventLog<Event>;
|
|
61
67
|
type LogDescription = TypedLogDescription<Event>;
|
|
62
68
|
}
|
|
63
|
-
export declare namespace
|
|
64
|
-
type InputTuple = [
|
|
65
|
-
|
|
66
|
-
depositor: AddressLike,
|
|
67
|
-
amount: BigNumberish
|
|
68
|
-
];
|
|
69
|
-
type OutputTuple = [token: string, depositor: string, amount: bigint];
|
|
69
|
+
export declare namespace MaxClaimBoundUpdatedEvent {
|
|
70
|
+
type InputTuple = [enabled: boolean];
|
|
71
|
+
type OutputTuple = [enabled: boolean];
|
|
70
72
|
interface OutputObject {
|
|
71
|
-
|
|
72
|
-
depositor: string;
|
|
73
|
-
amount: bigint;
|
|
73
|
+
enabled: boolean;
|
|
74
74
|
}
|
|
75
75
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
76
76
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
77
77
|
type Log = TypedEventLog<Event>;
|
|
78
78
|
type LogDescription = TypedLogDescription<Event>;
|
|
79
79
|
}
|
|
80
|
-
export declare namespace
|
|
81
|
-
type InputTuple = [
|
|
82
|
-
|
|
80
|
+
export declare namespace RemovedGaugeRewardsWithdrawnEvent {
|
|
81
|
+
type InputTuple = [
|
|
82
|
+
gauge: AddressLike,
|
|
83
|
+
recipient: AddressLike,
|
|
84
|
+
token: AddressLike,
|
|
85
|
+
amount: BigNumberish
|
|
86
|
+
];
|
|
87
|
+
type OutputTuple = [
|
|
88
|
+
gauge: string,
|
|
89
|
+
recipient: string,
|
|
90
|
+
token: string,
|
|
91
|
+
amount: bigint
|
|
92
|
+
];
|
|
83
93
|
interface OutputObject {
|
|
94
|
+
gauge: string;
|
|
95
|
+
recipient: string;
|
|
84
96
|
token: string;
|
|
97
|
+
amount: bigint;
|
|
85
98
|
}
|
|
86
99
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
87
100
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
88
101
|
type Log = TypedEventLog<Event>;
|
|
89
102
|
type LogDescription = TypedLogDescription<Event>;
|
|
90
103
|
}
|
|
91
|
-
export declare namespace
|
|
92
|
-
type InputTuple = [
|
|
93
|
-
|
|
104
|
+
export declare namespace RewardDepositedEvent {
|
|
105
|
+
type InputTuple = [
|
|
106
|
+
token: AddressLike,
|
|
107
|
+
depositor: AddressLike,
|
|
108
|
+
amount: BigNumberish,
|
|
109
|
+
depositedEpoch: BigNumberish
|
|
110
|
+
];
|
|
111
|
+
type OutputTuple = [
|
|
112
|
+
token: string,
|
|
113
|
+
depositor: string,
|
|
114
|
+
amount: bigint,
|
|
115
|
+
depositedEpoch: bigint
|
|
116
|
+
];
|
|
94
117
|
interface OutputObject {
|
|
95
118
|
token: string;
|
|
119
|
+
depositor: string;
|
|
120
|
+
amount: bigint;
|
|
121
|
+
depositedEpoch: bigint;
|
|
96
122
|
}
|
|
97
123
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
98
124
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
@@ -129,21 +155,9 @@ export interface IGaugeRewardsDistributor extends BaseContract {
|
|
|
129
155
|
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
130
156
|
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
131
157
|
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
132
|
-
addGaugeRewardToken: TypedContractMethod<[
|
|
133
|
-
gauge: AddressLike,
|
|
134
|
-
token: AddressLike
|
|
135
|
-
], [
|
|
136
|
-
void
|
|
137
|
-
], "nonpayable">;
|
|
138
|
-
addRewardToken: TypedContractMethod<[
|
|
139
|
-
token: AddressLike
|
|
140
|
-
], [
|
|
141
|
-
void
|
|
142
|
-
], "nonpayable">;
|
|
143
158
|
claimAll: TypedContractMethod<[gauges: AddressLike[]], [void], "nonpayable">;
|
|
144
159
|
claimForGauge: TypedContractMethod<[
|
|
145
|
-
gauge: AddressLike
|
|
146
|
-
token: AddressLike
|
|
160
|
+
gauge: AddressLike
|
|
147
161
|
], [
|
|
148
162
|
bigint
|
|
149
163
|
], "nonpayable">;
|
|
@@ -153,32 +167,12 @@ export interface IGaugeRewardsDistributor extends BaseContract {
|
|
|
153
167
|
], [
|
|
154
168
|
void
|
|
155
169
|
], "nonpayable">;
|
|
156
|
-
emergencyWithdraw: TypedContractMethod<[
|
|
157
|
-
token: AddressLike,
|
|
158
|
-
amount: BigNumberish,
|
|
159
|
-
recipient: AddressLike
|
|
160
|
-
], [
|
|
161
|
-
void
|
|
162
|
-
], "nonpayable">;
|
|
163
|
-
getAvailableBalance: TypedContractMethod<[
|
|
164
|
-
token: AddressLike
|
|
165
|
-
], [
|
|
166
|
-
bigint
|
|
167
|
-
], "view">;
|
|
168
170
|
getClaimableForGauge: TypedContractMethod<[
|
|
169
|
-
gauge: AddressLike,
|
|
170
|
-
token: AddressLike
|
|
171
|
-
], [
|
|
172
|
-
bigint
|
|
173
|
-
], "view">;
|
|
174
|
-
getGaugeRewardTokens: TypedContractMethod<[
|
|
175
171
|
gauge: AddressLike
|
|
176
172
|
], [
|
|
177
|
-
|
|
173
|
+
bigint
|
|
178
174
|
], "view">;
|
|
179
|
-
getRewardTokenCount: TypedContractMethod<[], [bigint], "view">;
|
|
180
175
|
getRewardTokenInfo: TypedContractMethod<[
|
|
181
|
-
token: AddressLike
|
|
182
176
|
], [
|
|
183
177
|
[
|
|
184
178
|
bigint,
|
|
@@ -192,64 +186,34 @@ export interface IGaugeRewardsDistributor extends BaseContract {
|
|
|
192
186
|
balance: bigint;
|
|
193
187
|
}
|
|
194
188
|
], "view">;
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
token: AddressLike
|
|
199
|
-
], [
|
|
200
|
-
boolean
|
|
201
|
-
], "view">;
|
|
202
|
-
isTokenApproved: TypedContractMethod<[token: AddressLike], [boolean], "view">;
|
|
203
|
-
removeGaugeRewardToken: TypedContractMethod<[
|
|
204
|
-
gauge: AddressLike,
|
|
205
|
-
token: AddressLike
|
|
206
|
-
], [
|
|
207
|
-
void
|
|
208
|
-
], "nonpayable">;
|
|
209
|
-
removeRewardToken: TypedContractMethod<[
|
|
210
|
-
token: AddressLike
|
|
189
|
+
rewardToken: TypedContractMethod<[], [string], "view">;
|
|
190
|
+
setController: TypedContractMethod<[
|
|
191
|
+
_controller: AddressLike
|
|
211
192
|
], [
|
|
212
193
|
void
|
|
213
194
|
], "nonpayable">;
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
gauge: AddressLike,
|
|
217
|
-
token: AddressLike
|
|
195
|
+
setLastClaimedEpoch: TypedContractMethod<[
|
|
196
|
+
gauge: AddressLike
|
|
218
197
|
], [
|
|
219
198
|
void
|
|
220
199
|
], "nonpayable">;
|
|
221
|
-
|
|
222
|
-
getFunction(nameOrSignature: "claimAll"): TypedContractMethod<[gauges: AddressLike[]], [void], "nonpayable">;
|
|
223
|
-
getFunction(nameOrSignature: "claimForGauge"): TypedContractMethod<[
|
|
200
|
+
withdrawRemovedGaugeRewards: TypedContractMethod<[
|
|
224
201
|
gauge: AddressLike,
|
|
225
|
-
|
|
202
|
+
recipient: AddressLike
|
|
226
203
|
], [
|
|
227
204
|
bigint
|
|
228
205
|
], "nonpayable">;
|
|
206
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
207
|
+
getFunction(nameOrSignature: "claimAll"): TypedContractMethod<[gauges: AddressLike[]], [void], "nonpayable">;
|
|
208
|
+
getFunction(nameOrSignature: "claimForGauge"): TypedContractMethod<[gauge: AddressLike], [bigint], "nonpayable">;
|
|
229
209
|
getFunction(nameOrSignature: "deposit"): TypedContractMethod<[
|
|
230
210
|
token: AddressLike,
|
|
231
211
|
amount: BigNumberish
|
|
232
212
|
], [
|
|
233
213
|
void
|
|
234
214
|
], "nonpayable">;
|
|
235
|
-
getFunction(nameOrSignature: "
|
|
236
|
-
token: AddressLike,
|
|
237
|
-
amount: BigNumberish,
|
|
238
|
-
recipient: AddressLike
|
|
239
|
-
], [
|
|
240
|
-
void
|
|
241
|
-
], "nonpayable">;
|
|
242
|
-
getFunction(nameOrSignature: "getAvailableBalance"): TypedContractMethod<[token: AddressLike], [bigint], "view">;
|
|
243
|
-
getFunction(nameOrSignature: "getClaimableForGauge"): TypedContractMethod<[
|
|
244
|
-
gauge: AddressLike,
|
|
245
|
-
token: AddressLike
|
|
246
|
-
], [
|
|
247
|
-
bigint
|
|
248
|
-
], "view">;
|
|
249
|
-
getFunction(nameOrSignature: "getGaugeRewardTokens"): TypedContractMethod<[gauge: AddressLike], [string[]], "view">;
|
|
250
|
-
getFunction(nameOrSignature: "getRewardTokenCount"): TypedContractMethod<[], [bigint], "view">;
|
|
215
|
+
getFunction(nameOrSignature: "getClaimableForGauge"): TypedContractMethod<[gauge: AddressLike], [bigint], "view">;
|
|
251
216
|
getFunction(nameOrSignature: "getRewardTokenInfo"): TypedContractMethod<[
|
|
252
|
-
token: AddressLike
|
|
253
217
|
], [
|
|
254
218
|
[
|
|
255
219
|
bigint,
|
|
@@ -263,38 +227,35 @@ export interface IGaugeRewardsDistributor extends BaseContract {
|
|
|
263
227
|
balance: bigint;
|
|
264
228
|
}
|
|
265
229
|
], "view">;
|
|
266
|
-
getFunction(nameOrSignature: "
|
|
267
|
-
getFunction(nameOrSignature: "
|
|
230
|
+
getFunction(nameOrSignature: "rewardToken"): TypedContractMethod<[], [string], "view">;
|
|
231
|
+
getFunction(nameOrSignature: "setController"): TypedContractMethod<[_controller: AddressLike], [void], "nonpayable">;
|
|
232
|
+
getFunction(nameOrSignature: "setLastClaimedEpoch"): TypedContractMethod<[gauge: AddressLike], [void], "nonpayable">;
|
|
233
|
+
getFunction(nameOrSignature: "withdrawRemovedGaugeRewards"): TypedContractMethod<[
|
|
268
234
|
gauge: AddressLike,
|
|
269
|
-
|
|
270
|
-
], [
|
|
271
|
-
boolean
|
|
272
|
-
], "view">;
|
|
273
|
-
getFunction(nameOrSignature: "isTokenApproved"): TypedContractMethod<[token: AddressLike], [boolean], "view">;
|
|
274
|
-
getFunction(nameOrSignature: "removeGaugeRewardToken"): TypedContractMethod<[
|
|
275
|
-
gauge: AddressLike,
|
|
276
|
-
token: AddressLike
|
|
235
|
+
recipient: AddressLike
|
|
277
236
|
], [
|
|
278
|
-
|
|
237
|
+
bigint
|
|
279
238
|
], "nonpayable">;
|
|
280
|
-
|
|
281
|
-
getEvent(key: "
|
|
282
|
-
getEvent(key: "
|
|
239
|
+
getEvent(key: "ControllerUpdated"): TypedContractEvent<ControllerUpdatedEvent.InputTuple, ControllerUpdatedEvent.OutputTuple, ControllerUpdatedEvent.OutputObject>;
|
|
240
|
+
getEvent(key: "DustWithdrawn"): TypedContractEvent<DustWithdrawnEvent.InputTuple, DustWithdrawnEvent.OutputTuple, DustWithdrawnEvent.OutputObject>;
|
|
241
|
+
getEvent(key: "GaugeLastClaimedEpochUpdated"): TypedContractEvent<GaugeLastClaimedEpochUpdatedEvent.InputTuple, GaugeLastClaimedEpochUpdatedEvent.OutputTuple, GaugeLastClaimedEpochUpdatedEvent.OutputObject>;
|
|
242
|
+
getEvent(key: "MaxClaimBoundUpdated"): TypedContractEvent<MaxClaimBoundUpdatedEvent.InputTuple, MaxClaimBoundUpdatedEvent.OutputTuple, MaxClaimBoundUpdatedEvent.OutputObject>;
|
|
243
|
+
getEvent(key: "RemovedGaugeRewardsWithdrawn"): TypedContractEvent<RemovedGaugeRewardsWithdrawnEvent.InputTuple, RemovedGaugeRewardsWithdrawnEvent.OutputTuple, RemovedGaugeRewardsWithdrawnEvent.OutputObject>;
|
|
283
244
|
getEvent(key: "RewardDeposited"): TypedContractEvent<RewardDepositedEvent.InputTuple, RewardDepositedEvent.OutputTuple, RewardDepositedEvent.OutputObject>;
|
|
284
|
-
getEvent(key: "RewardTokenAdded"): TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
285
|
-
getEvent(key: "RewardTokenRemoved"): TypedContractEvent<RewardTokenRemovedEvent.InputTuple, RewardTokenRemovedEvent.OutputTuple, RewardTokenRemovedEvent.OutputObject>;
|
|
286
245
|
getEvent(key: "RewardTransferred"): TypedContractEvent<RewardTransferredEvent.InputTuple, RewardTransferredEvent.OutputTuple, RewardTransferredEvent.OutputObject>;
|
|
287
246
|
filters: {
|
|
288
|
-
"
|
|
289
|
-
|
|
290
|
-
"
|
|
291
|
-
|
|
292
|
-
"
|
|
247
|
+
"ControllerUpdated(address,address)": TypedContractEvent<ControllerUpdatedEvent.InputTuple, ControllerUpdatedEvent.OutputTuple, ControllerUpdatedEvent.OutputObject>;
|
|
248
|
+
ControllerUpdated: TypedContractEvent<ControllerUpdatedEvent.InputTuple, ControllerUpdatedEvent.OutputTuple, ControllerUpdatedEvent.OutputObject>;
|
|
249
|
+
"DustWithdrawn(address,address,uint256)": TypedContractEvent<DustWithdrawnEvent.InputTuple, DustWithdrawnEvent.OutputTuple, DustWithdrawnEvent.OutputObject>;
|
|
250
|
+
DustWithdrawn: TypedContractEvent<DustWithdrawnEvent.InputTuple, DustWithdrawnEvent.OutputTuple, DustWithdrawnEvent.OutputObject>;
|
|
251
|
+
"GaugeLastClaimedEpochUpdated(address,uint256)": TypedContractEvent<GaugeLastClaimedEpochUpdatedEvent.InputTuple, GaugeLastClaimedEpochUpdatedEvent.OutputTuple, GaugeLastClaimedEpochUpdatedEvent.OutputObject>;
|
|
252
|
+
GaugeLastClaimedEpochUpdated: TypedContractEvent<GaugeLastClaimedEpochUpdatedEvent.InputTuple, GaugeLastClaimedEpochUpdatedEvent.OutputTuple, GaugeLastClaimedEpochUpdatedEvent.OutputObject>;
|
|
253
|
+
"MaxClaimBoundUpdated(bool)": TypedContractEvent<MaxClaimBoundUpdatedEvent.InputTuple, MaxClaimBoundUpdatedEvent.OutputTuple, MaxClaimBoundUpdatedEvent.OutputObject>;
|
|
254
|
+
MaxClaimBoundUpdated: TypedContractEvent<MaxClaimBoundUpdatedEvent.InputTuple, MaxClaimBoundUpdatedEvent.OutputTuple, MaxClaimBoundUpdatedEvent.OutputObject>;
|
|
255
|
+
"RemovedGaugeRewardsWithdrawn(address,address,address,uint256)": TypedContractEvent<RemovedGaugeRewardsWithdrawnEvent.InputTuple, RemovedGaugeRewardsWithdrawnEvent.OutputTuple, RemovedGaugeRewardsWithdrawnEvent.OutputObject>;
|
|
256
|
+
RemovedGaugeRewardsWithdrawn: TypedContractEvent<RemovedGaugeRewardsWithdrawnEvent.InputTuple, RemovedGaugeRewardsWithdrawnEvent.OutputTuple, RemovedGaugeRewardsWithdrawnEvent.OutputObject>;
|
|
257
|
+
"RewardDeposited(address,address,uint256,uint256)": TypedContractEvent<RewardDepositedEvent.InputTuple, RewardDepositedEvent.OutputTuple, RewardDepositedEvent.OutputObject>;
|
|
293
258
|
RewardDeposited: TypedContractEvent<RewardDepositedEvent.InputTuple, RewardDepositedEvent.OutputTuple, RewardDepositedEvent.OutputObject>;
|
|
294
|
-
"RewardTokenAdded(address)": TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
295
|
-
RewardTokenAdded: TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
296
|
-
"RewardTokenRemoved(address)": TypedContractEvent<RewardTokenRemovedEvent.InputTuple, RewardTokenRemovedEvent.OutputTuple, RewardTokenRemovedEvent.OutputObject>;
|
|
297
|
-
RewardTokenRemoved: TypedContractEvent<RewardTokenRemovedEvent.InputTuple, RewardTokenRemovedEvent.OutputTuple, RewardTokenRemovedEvent.OutputObject>;
|
|
298
259
|
"RewardTransferred(address,address,uint256)": TypedContractEvent<RewardTransferredEvent.InputTuple, RewardTransferredEvent.OutputTuple, RewardTransferredEvent.OutputObject>;
|
|
299
260
|
RewardTransferred: TypedContractEvent<RewardTransferredEvent.InputTuple, RewardTransferredEvent.OutputTuple, RewardTransferredEvent.OutputObject>;
|
|
300
261
|
};
|