UNPKG

@nextrope/xrpl

Version:

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

9 lines 301 B
import { BaseTransaction } from './common'; export interface DIDSet extends BaseTransaction { TransactionType: 'DIDSet'; Data?: string; DIDDocument?: string; URI?: string; } export declare function validateDIDSet(tx: Record<string, unknown>): void; //# sourceMappingURL=DIDSet.d.ts.map