I have a blockchain instance running at 8545. When I switch MM to use "Private Network", RPC calls from my dapp are throwing. MetaMask - RPC Error: Internal JSON-RPC error.
I loaded an account generated from ganache-cli into mm, and the correct balance is rendering, so I know mm is properly connecting, but for some reason, the drizzle => mm => localhost communication is failing.
Temp fix is just removing mm. Drizzle falls back to 8545 and passes that value as the provider into web3.
I have a blockchain instance running at
8545
. When I switch MM to use "Private Network", RPC calls from my dapp are throwing.MetaMask - RPC Error: Internal JSON-RPC error
.I loaded an account generated from
ganache-cli
into mm, and the correct balance is rendering, so I know mm is properly connecting, but for some reason, the drizzle => mm => localhost communication is failing.Temp fix is just removing mm. Drizzle falls back to 8545 and passes that value as the provider into web3.