etherscan-api
    Preparing search index...

    Interface VerifyParams

    Common fields shared by the contract-verification endpoints.

    interface VerifyParams {
        constructorArguements?: string;
        contractaddress: string;
        contractname: string;
        licenseType?: string | number;
        optimizationUsed?: string | 0 | 1;
        runs?: string | number;
        sourceCode: string;
        [key: string]: string | number | undefined;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: string | number | undefined

      Any further endpoint-specific fields are passed through.

    Index

    Properties

    constructorArguements?: string

    ABI-encoded constructor arguments (without the leading 0x).

    contractaddress: string

    Address the contract is deployed at.

    contractname: string

    Contract name (or path:Name for standard-json-input).

    licenseType?: string | number
    optimizationUsed?: string | 0 | 1
    runs?: string | number
    sourceCode: string

    The source, or a standard-json-input string.