interface SophiaCallResultInput {
    callResult: string;
    callValue: string;
    function: string;
    options?: CompileOpts;
    source: string;
}

Properties

callResult: string

Call result type (ok | revert | error)

callValue: string

Call result value (ABI encoded data or error string)

function: string

Name of the called function

options?: CompileOpts
source: string

(Possibly partial) Sophia contract code/interface

Generated using TypeDoc