Interface ERC20PeggedIncentivePayload

The object representation of a ERC20PeggedIncentive.InitPayload

ERC20PeggedIncentivePayload

interface ERC20PeggedIncentivePayload {
    asset: `0x${string}`;
    peg: `0x${string}`;
    reward: bigint;
    limit: bigint;
    manager?: `0x${string}`;
}

Properties

asset: `0x${string}`

The address of the incentivized asset.

peg: `0x${string}`

The peg to normalize to.

reward: bigint

The amount of the asset to distribute.

limit: bigint

Total spend for the incentive.

manager?: `0x${string}`

(Optional) The address of the entity that can managed the incentive.