@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
11 lines • 471 B
TypeScript
import { AuthorizeCredential } from '../common';
import { BaseTransaction } from './common';
export interface DepositPreauth extends BaseTransaction {
TransactionType: 'DepositPreauth';
Authorize?: string;
Unauthorize?: string;
AuthorizeCredentials?: AuthorizeCredential[];
UnauthorizeCredentials?: AuthorizeCredential[];
}
export declare function validateDepositPreauth(tx: Record<string, unknown>): void;
//# sourceMappingURL=depositPreauth.d.ts.map