Interface BlockInfoRPC

interface BlockInfoRPC {
    amount: `${number}`;
    balance: `${number}`;
    block_account: `ban_${string}` | `nano_${string}`;
    confirmed?: "false" | "true";
    contents: Block;
    height: `${number}`;
    subtype?: BlockSubtype;
    successor?: string;
    timestamp: `${number}`;
}

Properties

amount: `${number}`
balance: `${number}`
block_account: `ban_${string}` | `nano_${string}`
confirmed?: "false" | "true"
contents: Block
height: `${number}`
subtype?: BlockSubtype
successor?: string
timestamp: `${number}`