UNPKG

@nextrope/xrpl

Version:

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

10 lines 353 B
import { BaseTransaction, XRPLNumber } from './common'; export interface VaultSet extends BaseTransaction { TransactionType: 'VaultSet'; VaultID: string; Data?: string; AssetsMaximum?: XRPLNumber; DomainID?: string; } export declare function validateVaultSet(tx: Record<string, unknown>): void; //# sourceMappingURL=vaultSet.d.ts.map