UNPKG

@nextrope/xrpl

Version:

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

9 lines 360 B
import { Account, BaseTransaction } from './common'; export interface AccountDelete extends BaseTransaction { TransactionType: 'AccountDelete'; Destination: Account; DestinationTag?: number; CredentialIDs?: string[]; } export declare function validateAccountDelete(tx: Record<string, unknown>): void; //# sourceMappingURL=accountDelete.d.ts.map