@tatumio/tatum-v1
Version:
Tatum API client allows browsers and Node.js clients to interact with Tatum API.
15 lines (14 loc) • 328 B
TypeScript
import { Fee } from './Fee';
export declare class SmartContractMethodInvocation {
contractAddress: string;
params: any[];
methodABI: any;
methodName: string;
amount?: string;
fee?: Fee;
nonce?: number;
fromPrivateKey?: string;
caller?: string;
signatureId?: string;
index?: number;
}