diff --git a/cow_py/codegen/components/base_contract.py b/cow_py/codegen/components/base_contract.py index 5cc9df2..38bd724 100644 --- a/cow_py/codegen/components/base_contract.py +++ b/cow_py/codegen/components/base_contract.py @@ -37,10 +37,8 @@ def __init__(self, address: str, chain: Chain, abi: List[Any] = None): :param chain: The chain the contract is deployed on :param abi: The ABI of the contract, optional """ - print(dir(self)) if not hasattr(self, "_initialized"): # Avoid re-initialization # Initialize the instance (only the first time) - print("initializing") self.contract_loader = ContractLoader(chain) self.web3_contract = self.contract_loader.get_web3_contract( address, abi or self.ABI or []