UNPKG

@transia/xrpl

Version:

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

11 lines 444 B
import { Parameter } from '../common'; import { BaseTransaction } from './common'; export interface ContractUserDelete extends BaseTransaction { TransactionType: 'ContractUserDelete'; ComputationAllowance: number; ContractAccount: string; FunctionName: string; Parameters?: Parameter[]; } export declare function validateContractUserDelete(tx: Record<string, unknown>): void; //# sourceMappingURL=contractUserDelete.d.ts.map