UNPKG

@bithomp/xrpl-api

Version:

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

15 lines (14 loc) 456 B
import { TransactionMetadata } from "xrpl"; interface FormattedDIDSummaryInterface { status?: "created" | "modified" | "deleted"; didID?: string; account?: string; uri: string; data: string; didDocument: string; uriChange?: string; dataChanges?: string; didDocumentChanges?: string; } declare function parseDIDChanges(metadata: TransactionMetadata): FormattedDIDSummaryInterface | undefined; export { parseDIDChanges };