interface FunctionCallInput {
    arguments: string[];
    function: string;
    options?: CompileOpts;
    source: string;
}

Properties

arguments: string[]

Array of function call arguments

function: string

Name of function to call

options?: CompileOpts
source: string

(Possibly partial) Sophia contract code

Generated using TypeDoc