SearchTxsResult defines a structure for querying txs pageable

interface SearchTxsResult {
    count: bigint;
    limit: bigint;
    pageNumber: bigint;
    pageTotal: bigint;
    totalCount: bigint;
    txs: TxResponse[];
}

Properties

count: bigint

Count of txs in current page

limit: bigint

Max count txs per page

pageNumber: bigint

Index of current page, start from 1

pageTotal: bigint

Count of total pages

totalCount: bigint

Count of all txs

txs: TxResponse[]

List of txs in current page