File "<console>", line 1, in <module>
File "brownie/network/contract.py", line 923, in __init__
contract = self.from_explorer(address, owner=owner, silent=True)
File "brownie/network/contract.py", line 1102, in from_explorer
if int(implementation_eip1967.hex(), 16):
ValueError: invalid literal for int() with base 16: '0x'
I'm trying to run the example code in the README and I'm running into an error when I try to execute the following line:
Here's my traceback:
Is it expecting an
int
?Thanks in advance for the help.