UNPKG

@bithomp/xrpl-api

Version:

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

13 lines (12 loc) 454 B
import { TransactionMetadata } from "xrpl"; interface FormattedDelegateSummaryInterface { status?: "created" | "modified" | "deleted"; delegateIndex: string; account?: string; authorize?: string; permissions?: string[]; permissionsChange?: string[]; previousTxnID?: string; } declare function parseDelegateChanges(metadata: TransactionMetadata): FormattedDelegateSummaryInterface | undefined; export { parseDelegateChanges };