interface BuildInfo {
    builder: string;
    compiler: string;
    image?: string;
    [k: string]: unknown;
}

Indexable

  • [k: string]: unknown

Properties

builder: string

The build tool (versioned) that was used to build the contract.

compiler: string

The compiler (versioned) that was used to build the contract.

image?: string

The docker image (versioned) where the contract was built.