Export

CompileSmartContractRequest

interface CompileSmartContractRequest {
    contract_name: string;
    solidity_compiler_version: string;
    solidity_input_json: string;
}

Properties

contract_name: string

The name of the contract to compile.

Memberof

CompileSmartContractRequest

solidity_compiler_version: string

The version of the Solidity compiler to use.

Memberof

CompileSmartContractRequest

solidity_input_json: string

The JSON input containing the Solidity code, dependencies, and compiler settings.

Memberof

CompileSmartContractRequest