interface GetActionsParams {
    account?: string;
    after?: string;
    before?: string;
    checkLib?: boolean;
    filter?: string;
    hot_only?: boolean;
    limit?: number;
    noBinary?: boolean;
    simple?: boolean;
    skip?: number;
    sort?: "desc" | "1" | "asc" | "-1";
    track?: string | number;
}

Properties

account?: string

Notified account to filter actions.

after?: string

Filter actions after the specified date (ISO8601 format).

before?: string

Filter actions before the specified date (ISO8601 format).

checkLib?: boolean

Perform a reversibility check.

filter?: string

Filter actions based on code:name (e.g., eosio.token:transfer).

hot_only?: boolean

Search only the latest hot index.

limit?: number

Limit the number of results per page.

noBinary?: boolean

Exclude large binary data from the response.

simple?: boolean

Simplified output mode.

skip?: number

Number of results to skip.

sort?: "desc" | "1" | "asc" | "-1"

Sort direction for results. Accepts asc, desc, 1, or -1.

track?: string | number

Track total results (count). Accepts a number or true for total count tracking.