interface Transfer {
    accountId: `ak_${string}`;
    amount: bigint;
    height: number;
    kind: string;
    refBlockHash: null | `mh_${string}`;
    refTxHash: null | `th_${string}`;
    refTxType: null | string;
}

Properties

accountId: `ak_${string}`

Account address

amount: bigint
height: number
kind: string
refBlockHash: null | `mh_${string}`

Micro block hash

refTxHash: null | `th_${string}`

Transaction hash

refTxType: null | string