UNPKG

incubed

Version:

Typescript-version of the incubed client

11 lines (10 loc) 306 B
import { AccountProof } from '../../types/types'; /** executes a transaction-call to a smart contract */ export declare function executeCall(args: { to: string; data: string; value?: string; from?: string; }, accounts: { [adr: string]: AccountProof; }, block: Buffer): Promise<Buffer>;