UNPKG

@bithomp/xrpl-api

Version:

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

10 lines (9 loc) 418 B
import { XrplDefinitionsBase } from "ripple-binary-codec"; import { FormattedSpecification } from "../../parse/transaction"; interface FormattedEmittedTxnInterface { id?: string | undefined; specification: FormattedSpecification; tx: any; } export declare function parseEmittedTxns(tx: any, nativeCurrency: string, definitions?: XrplDefinitionsBase): FormattedEmittedTxnInterface[] | undefined; export {};