UNPKG

@transia/xrpl

Version:

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

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