Eth.contract(address=None, contract_name=None, ContractFactoryClass=Contract, **contract_factory_kwargs) If address is provided, then this method will return an instance of the contract defined by abi. The address may be a checksum string, or an ENS name like 'mycontract.eth'. from web3 import Web3 w3 = Web3(...) contract = w3.eth.contract(address='0x000000000000000000000000000000000000dEaD', abi=...)alternatively:contract = w3.eth.contract(address='mycontract.eth&apo...