Skip to content

Commit

Permalink
Fix RPC info for local Ganache instance (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrederikBolding authored Jun 14, 2022
1 parent 0cee570 commit 8578746
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ const initialize = async () => {
params: [
{
chainId: '0x53a',
rpcUrls: ['https://127.0.0.1:8546'],
rpcUrls: ['http://127.0.0.1:8546'],
chainName: 'Localhost 8546',
nativeCurrency: { name: 'TEST', decimals: 18, symbol: 'TEST' },
blockExplorerUrls: null,
Expand All @@ -303,7 +303,7 @@ const initialize = async () => {
method: 'wallet_switchEthereumChain',
params: [
{
chainId: '0x64',
chainId: '0x53a',
},
],
});
Expand Down

0 comments on commit 8578746

Please sign in to comment.