Represents the result of a contract call operation, encapsulating the output of the call.

interface ContractCallResult {
    result: {
        array?: unknown[];
        errorMessage?: string;
        plain?: unknown;
    };
    success: boolean;
}

Properties

Properties

result: {
    array?: unknown[];
    errorMessage?: string;
    plain?: unknown;
}
success: boolean