interface Crc3525TransfersParams {
    account: string;
    skip?: number;
    limit?: number;
    contract?: string;
    from?: string;
    to?: string;
    startBlock?: number;
    endBlock?: number;
    minTimestamp?: number;
    maxTimestamp?: number;
    tokenId?: string;
    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
contract?: string

Contract address, it's like 0x672158893ce87d812befd2209bc1b7818fe48b2a

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.

tokenId?: string

Token id. It's uint256 in solidity. Using string here.

sort?: string

Sort in ASC or DESC order by timestamp

DESC