Interface ERC20IncentivePayload

Object representation of the ERC20Incentive.InitPayload.

ERC20IncentivePayload

interface ERC20IncentivePayload {
    asset: `0x${string}`;
    strategy: StrategyType;
    reward: bigint;
    limit: bigint;
}

Properties

asset: `0x${string}`

The address of the incentivized asset.

strategy: StrategyType

The type of disbursement strategy for the incentive. StrategyType.MINT is not supported for ERC20Incentives

reward: bigint

The amount of the asset to distribute.

limit: bigint

How many times can this incentive be claimed.