smartcontract-lottery
smartcontract-lottery copied to clipboard
Forking a Mainnet in Brownie is showing `Unable to launch local RPC client` error
while running the command brownie console --network mainnet-fork I am getting the following error:
RPCProcessError: Unable to launch local RPC client. Command: ganache-cli URI: http://127.0.0.1:8545 I have exported my WEB3_INFURA_PROJECT_ID and using the nvm version 16.13.2. Can't seem to figure out a way to fork the mainnet in brownie
It looks like you might have something running already on port 8545 maybe an old ganache-cli or some other program. If you on mac or linux you can run sudo netstat -tulpn
in my case I just killed pid 3476 since its running on the port 8545 needed. Let me know how it goes