UNPKG

@transia/xrpl

Version:

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

17 lines 724 B
import { Amount, XChainBridge } from '../common'; import { BaseTransaction, GlobalFlagsInterface } from './common'; export declare enum XChainModifyBridgeFlags { tfClearAccountCreateAmount = 65536 } export interface XChainModifyBridgeFlagsInterface extends GlobalFlagsInterface { tfClearAccountCreateAmount?: boolean; } export interface XChainModifyBridge extends BaseTransaction { TransactionType: 'XChainModifyBridge'; XChainBridge: XChainBridge; SignatureReward?: Amount; MinAccountCreateAmount?: Amount; Flags?: number | XChainModifyBridgeFlagsInterface; } export declare function validateXChainModifyBridge(tx: Record<string, unknown>): void; //# sourceMappingURL=XChainModifyBridge.d.ts.map