UNPKG

@nextrope/xrpl

Version:

A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser

11 lines 325 B
import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry'; export default interface DID extends BaseLedgerEntry, HasPreviousTxnID { LedgerEntryType: 'DID'; Account: string; Data: string; DIDDocument: string; URI: string; Flags: 0; OwnerNode: string; } //# sourceMappingURL=DID.d.ts.map