SearchTxsResult defines a structure for querying txs pageable

interface SearchTxsResultAmino {
    count?: string;
    limit?: string;
    page_number: string;
    page_total: string;
    total_count: string;
    txs?: TxResponseAmino[];
}

Properties

count?: string

Count of txs in current page

limit?: string

Max count txs per page

page_number: string

Index of current page, start from 1

page_total: string

Count of total pages

total_count: string

Count of all txs

List of txs in current page