ripple-lib
Version:
Deprecated - consider migrating to xrpl.js: https://xrpl.org/xrpljs2-migration-guide.html
17 lines • 579 B
TypeScript
import { Amount } from '../common/types/objects';
import { RippleAPI } from '..';
export declare type BalanceSheetOptions = {
excludeAddresses?: Array<string>;
ledgerVersion?: number;
};
export declare type GetBalanceSheet = {
balances?: Array<Amount>;
assets?: Array<Amount>;
obligations?: Array<{
currency: string;
value: string;
}>;
};
declare function getBalanceSheet(this: RippleAPI, address: string, options?: BalanceSheetOptions): Promise<GetBalanceSheet>;
export default getBalanceSheet;
//# sourceMappingURL=balance-sheet.d.ts.map