Reputation: 776
I'm building a todoList Web-App using blockchain. I'm stuck when I tried to connect the blockchain server
to metamask.
When I try to add new network as mentioned in my Ganache(HTTP://127.0.0.1:7545) then I miss chainID and When I fill the chainID with Genache network Id it shows the given error.
When I try to connect to localhost8545
then it returns this error:
trufle-config.js
module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 7545,
network_id: "*" // Match any network id
}
},
solc: {
optimizer: {
enabled: true,
runs: 200
}
}
}
How can I connect my blockchain network with my localhost?
Upvotes: 4
Views: 8923
Reputation: 1
I am greeting same error but I tried this and i got the solution [https://i.sstatic.net/tVzp4.png] I am changing the host name to localhost and it work for me
Upvotes: 0
Reputation: 324
Upvotes: 2
Reputation: 814
remove default localhost account (i.e. Localhost 8545 ) first and then add the new network with details and chain ID as 1337
Upvotes: 8