UNPKG

@bithomp/xrpl-api

Version:

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

12 lines (11 loc) 317 B
import { Amount, PathFindPathOption } from "xrpl"; export interface PathFindResponseResult { alternatives: PathFindPathOption[]; destination_account: string; destination_amount: Amount; source_account: string; full_reply: boolean; id?: number | string; closed?: true; status?: true; }