Interface AccountHistoryRawBlock

interface AccountHistoryRawBlock {
    account: `ban_${string}` | `nano_${string}`;
    amount: `${number}`;
    amount_decimal: `${number}`;
    balance: `${number}`;
    balance_decimal: `${number}`;
    confirmed: "false" | "true";
    hash: string;
    height: `${number}`;
    link: string;
    local_timestamp: `${number}`;
    previous: string;
    representative: `ban_${string}` | `nano_${string}`;
    signature: string;
    subtype: BlockSubtype;
    type: BlockAllTypes;
    work: string;
}

Properties

account: `ban_${string}` | `nano_${string}`
amount: `${number}`
amount_decimal: `${number}`
balance: `${number}`
balance_decimal: `${number}`
confirmed: "false" | "true"
hash: string
height: `${number}`
link: string
local_timestamp: `${number}`
previous: string
representative: `ban_${string}` | `nano_${string}`
signature: string
subtype: BlockSubtype
work: string