@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
10 lines • 402 B
TypeScript
import { Amount, MPTAmount } from '../common';
import { BaseTransaction, Account } from './common';
export interface VaultWithdraw extends BaseTransaction {
TransactionType: 'VaultWithdraw';
VaultID: string;
Amount: Amount | MPTAmount;
Destination?: Account;
}
export declare function validateVaultWithdraw(tx: Record<string, unknown>): void;
//# sourceMappingURL=vaultWithdraw.d.ts.map