UNPKG

@azpool/chia-client

Version:

TypeScript client for Chia node peer RPC interface

19 lines (18 loc) 490 B
import { Transaction } from "./Transaction"; import { WalletType } from "./WalletType"; export interface WalletInfo { id: number; name: string; type: WalletType; data: Object; balance_total: number; balance_pending: number; balance_spendable: number; balance_frozen: number; balance_change: number; transactions: Transaction[]; address: string; colour: string; sending_transaction: boolean; send_transaction_result?: string | null; }