(
self, abi: ABI, contract_address: Union[Address, ChecksumAddress]
)
| 1404 | return transaction_sent |
| 1405 | |
| 1406 | def new_contract_proxy( |
| 1407 | self, abi: ABI, contract_address: Union[Address, ChecksumAddress] |
| 1408 | ) -> Contract: |
| 1409 | return self.web3.eth.contract(abi=abi, address=contract_address) |
| 1410 | |
| 1411 | def deploy_single_contract( |
| 1412 | self, |
no outgoing calls