nanocurrency-rpc-bindings
Version:
JavaScript and TypeScript bindings for Nano currency RPC calls
17 lines • 571 B
TypeScript
export declare type Coin = "nano" | "banano";
export declare type BlockSubtype = "send" | "receive" | "change" | "epoch";
export declare type BlockType = "state";
export declare type Block = {
type: BlockType;
account: string;
previous: string;
representative: string;
balance: string;
link: string;
link_as_account: string;
signature?: string;
work?: string;
subtype?: BlockSubtype;
};
export declare type ConfirmationType = "all" | "active" | "active_quorum" | "inactive";
//# sourceMappingURL=nano.types.d.ts.map