aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Interface RewardsHistoryEntry

    A single historical reward entry.

    interface RewardsHistoryEntry {
        amount: bigint;
        coinType: "points" | string & {};
        domain: string;
        epochEndTimestampMs: number;
        epochStartTimestampMs: number;
        eventType: RewardsHistoryEventType;
        txDigest?: string;
        vaultId: string;
    }
    Index
    amount: bigint

    Reward amount in base units.

    coinType: "points" | string & {}

    Fully-qualified Coin type (e.g., "0x2::sui::SUI"), or "points" for point entries.

    domain: string

    Domain identifier (e.g., "referrals", "perpetuals").

    epochEndTimestampMs: number

    Epoch end timestamp in milliseconds.

    epochStartTimestampMs: number

    Epoch start timestamp in milliseconds.

    Event type: "deposit", "withdraw", or "points".

    txDigest?: string

    Transaction digest for this event, if available.

    vaultId: string

    Vault ID where the event occurred.