UNPKG

@nextrope/xrpl

Version:

A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser

16 lines 509 B
import { BaseTransaction } from './common'; export interface SetFeePreAmendment extends BaseTransaction { BaseFee: string; ReferenceFeeUnits: number; ReserveBase: number; ReserveIncrement: number; } export interface SetFeePostAmendment extends BaseTransaction { BaseFeeDrops: string; ReserveBaseDrops: string; ReserveIncrementDrops: string; } export type SetFee = { TransactionType: 'SetFee'; } & (SetFeePreAmendment | SetFeePostAmendment); //# sourceMappingURL=setFee.d.ts.map