UNPKG

@bithomp/xrpl-api

Version:

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

10 lines (9 loc) 259 B
import { Amount, Memo } from "../types"; export type TransactionJSON = { Account: string; TransactionType: string; Memos?: Memo[]; Flags?: number; Fulfillment?: string; [Field: string]: string | number | any[] | Amount | undefined; };