Interface WalletTransactionHistoryResponse

interface WalletTransactionHistoryResponse {
    nextCursor?: string;
    transactions: WalletTransactionDto[];
}

Properties

nextCursor?: string

Cursor for next page of results

Example

"eyJhZnRlciI6IjIwMjUtMDctMjkifQ=="
transactions: WalletTransactionDto[]

List of wallet transactions

Generated using TypeDoc