@bithomp/xrpl-api
Version:
A Bithomp JavaScript/TypeScript library for interacting with the XRP Ledger
20 lines (19 loc) • 422 B
TypeScript
export interface GatewayBalance {
currency: string;
value: string;
}
export interface GatewayBalances {
account: string;
obligations?: {
[currency: string]: string;
};
balances?: {
[address: string]: GatewayBalance[];
};
assets?: {
[address: string]: GatewayBalance[];
};
ledger_hash?: string;
ledger_current_index?: number;
ledger_index?: number;
}