UNPKG

@bithomp/xrpl-api

Version:

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

9 lines (8 loc) 301 B
import { XrplDefinitionsBase } from "ripple-binary-codec"; import { Connection } from "../connection"; export interface GetFeeOptions { connection?: Connection; tx?: any; definitions?: XrplDefinitionsBase; } export declare function getFee(options?: GetFeeOptions): Promise<string | null>;