xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
23 lines (14 loc) • 332 B
text/typescript
import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry'
// TODO: add docs
/**
* @category Ledger Entries
*/
export default interface DID extends BaseLedgerEntry, HasPreviousTxnID {
LedgerEntryType: 'DID'
Account: string
Data: string
DIDDocument: string
URI: string
Flags: 0
OwnerNode: string
}