Represents deployment information.

interface DeploymentInfo {
    bytecodeHash: string;
    deployedAddress: string;
    sender: string;
}

Properties

bytecodeHash: string

The hash of the contract/account bytecode.

deployedAddress: string

The deployed address of the contract/address.

sender: string

The account responsible for deployment.