Interface GetAccountBlocksArgs

The numeric accountId

The first index of a chunk of the list you want fetch. Use indices to paginate your calls

The last index of a chunk of the list you want fetch. Use indices to paginate your calls

Currently, the indices do not work on BRS API :(

https://github.com/burst-apps-team/burstcoin/issues/477

Includes the transactions also. Note, that this is call may take time

interface GetAccountBlocksArgs {
    accountId: string;
    firstIndex?: number;
    includeTransactions?: boolean;
    lastIndex?: number;
}

Properties

accountId: string
firstIndex?: number
includeTransactions?: boolean
lastIndex?: number