interface AccountTransactionsParams {
    account: string;
    skip?: number;
    limit?: number;
    from?: string;
    to?: string;
    startBlock?: number;
    endBlock?: number;
    minTimestamp?: number;
    maxTimestamp?: number;
    sort?: string;
}

Properties

account: string

Account address, it's like 0x672158893ce87d812befd2209bc1b7818fe48b2a

skip?: number

The number of skipped records, usually it's pageSize * (pageNumber - 1). Maximum 10000.

0
limit?: number

The number of records displayed on the page. Maximum 100.

10
from?: string

Account address, it's like 0x672158893ce87d812befd2209bc1b7818fe48b2a

to?: string

Account address, it's like 0x672158893ce87d812befd2209bc1b7818fe48b2a

startBlock?: number
endBlock?: number
minTimestamp?: number

Timestamp in seconds.

maxTimestamp?: number

Timestamp in seconds.

sort?: string

Sort in ASC or DESC order by timestamp

DESC