UNPKG

@fruitsjs/core

Version:

Principal package with functions and models for building Fruits Eco-Blockchain applications.

18 lines (16 loc) 419 B
import { MethodArgument } from '@fruitsjs/contracts'; /** * The argument object for [[ContractApi.callContractMethod]] * * @module core */ export interface CallContractMethodArgs { amountPlanck: string; contractId: string; deadline?: number; feePlanck: string; methodArgs?: MethodArgument[]; methodHash: string; senderPrivateKey: string; senderPublicKey: string; }