@venly/connect
Version:
Venly Connect SDK
14 lines (13 loc) • 376 B
TypeScript
import { SecretType } from '../SecretType';
import { WalletBalanceExchange } from './WalletBalanceExchange';
export declare class WalletBalance {
secretType?: SecretType;
balance: number;
symbol: string;
gasBalance: number;
gasSymbol: string;
rawBalance: string;
rawGasBalance: string;
decimals: number;
exchange?: WalletBalanceExchange;
}