Interface Block

interface Block {
    account: Address;
    balance: `${number}`;
    link: string;
    link_as_account: Address;
    previous: string;
    representative: Address;
    signature: string;
    type: BlockAllTypes;
    work?: string;
}

Properties

account: Address
balance: `${number}`
link: string
link_as_account: Address
previous: string
representative: Address
signature: string
work?: string