Interface EvmExecuteInstruction

interface EvmExecuteInstruction {
    contractAddress: string;
    evmMsg: {
        function: string | EVMABIFunctionDefinition;
        funds?: bigint;
        params: any[];
    };
}

Properties

contractAddress: string
evmMsg: {
    function: string | EVMABIFunctionDefinition;
    funds?: bigint;
    params: any[];
}