Interface BlockInfoRPC

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

Properties

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