UNPKG

@bithomp/xrpl-api

Version:

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

16 lines (15 loc) 374 B
export interface QueueTransaction { auth_change: boolean; fee: string; fee_level: string; max_spend_drops: string; seq: number; } export interface QueueData { txn_count: number; auth_change_queued?: boolean; lowest_sequence?: number; highest_sequence?: number; max_spend_drops_total?: string; transactions?: QueueTransaction[]; }