UNPKG

@nextrope/xrpl

Version:

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

9 lines 362 B
import { Amount, MPTAmount } from '../common'; import { BaseTransaction } from './common'; export interface VaultDeposit extends BaseTransaction { TransactionType: 'VaultDeposit'; VaultID: string; Amount: Amount | MPTAmount; } export declare function validateVaultDeposit(tx: Record<string, unknown>): void; //# sourceMappingURL=vaultDeposit.d.ts.map