Patrick Collins
Patrick Collins
You can! You'd probably want to use sepolia now though too
Point to the sepolia RPC URL instead. https://www.alchemy.com/overviews/sepolia-testnet
I found it: ``` def _to_hex(value: Any) -> str: """Convert a value to a hexstring""" if isinstance(value, bytes): return HexBytes(value).hex() ``` This is in `datatypes.py`. The `.hex()` call is defined...
Right now, my workaround is as follows: ``` box = A.deploy(eth_utils.to_bytes(hexstr="0x"), {"from": account}) ``` If I want to deploy something with an empty bytes string. But it seems very unintuitive.
We might need to bounty this bad larry
@iamdefinitelyahuman can we put out a gitcoin grant perhaps?
Can you add some print statements in there to see if it's reaching where it needs to reach?
What does your `brownie-config.yaml` look like? You'll need a section like: ```yaml wallets: from_key: PRIVATE_KEY_HERE ```
Hmm... I'm going to make an updated version of this.
I followed up on the SO post. https://stackoverflow.com/questions/70544310/import-brownie-could-not-be-resolved-in-pylance/70661536#70661536 thanks for posting there for visibility!