Interface representing a smart contract with its address and optional start block

interface Contract {
    address: string;
    startBlock?: number;
}

Properties

Properties

address: string

The contract's deployed address

startBlock?: number

The block number where the contract was deployed