UNPKG

@bithomp/xrpl-api

Version:

A Bithomp JavaScript/TypeScript library for interacting with the XRP Ledger

8 lines (7 loc) 392 B
import { Amount, FormattedIssuedCurrencyAmount } from "../types"; export declare function toRippledAmount(amount: Amount | FormattedIssuedCurrencyAmount): Amount | undefined; export interface ClassicAccountAndTag { classicAccount: string; tag: number | false | undefined; } export declare function getClassicAccountAndTag(Account: string, expectedTag?: number): ClassicAccountAndTag;