UNPKG

@bithomp/xrpl-api

Version:

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

27 lines (26 loc) 925 B
import { FormattedBaseSpecification } from "./specification"; import { IssuedCurrencyAmount, FormattedIssuedCurrencyAmount, FormattedIssuedMPTAmount } from "./amounts"; export type FormattedAccountDeleteSpecification = { source?: FormattedSourceAddress; destination?: FormattedDestinationAddress; } & FormattedBaseSpecification; export type FormattedSourceAddress = { address: string; maxAmount?: IssuedCurrencyAmount | FormattedIssuedCurrencyAmount | FormattedIssuedMPTAmount; tag?: number; }; export type FormattedDestinationAddress = { address: string; tag?: number; }; export type FormattedSignerRegularKey = { address: string; }; export type FormattedAccountInfoData = { sequence: number; xrpBalance: string; ownerCount: number; previousInitiatedTransactionID?: string; previousAffectingTransactionID: string; previousAffectingTransactionLedgerVersion: number; };