Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fetch chain id from local node for add/switch network calls #252

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 59 additions & 20 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -483,30 +483,69 @@ const initialize = async () => {
}
};

async function getLocalNodeChainId() {
try {
const response = await fetch('http://127.0.0.1:8546', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
jsonrpc: '2.0',
method: 'eth_chainId',
params: [],
id: 1,
}),
});

const chainId = (await response.json()).result;
const chainIdDecimal = parseInt(chainId, 16);
console.log(
`Fetched chain ID from local node: ${chainId} (${chainIdDecimal})`,
);

return chainId;
} catch (err) {
if (err.message === 'Failed to fetch') {
throw new Error('Local node RPC is unavailable. Cannot fetch chain ID');
}

throw err;
}
}

addEthereumChain.onclick = async () => {
await ethereum.request({
method: 'wallet_addEthereumChain',
params: [
{
chainId: '0x53a',
rpcUrls: ['http://127.0.0.1:8546'],
chainName: 'Localhost 8546',
nativeCurrency: { name: 'TEST', decimals: 18, symbol: 'TEST' },
blockExplorerUrls: null,
},
],
});
try {
const chainId = await getLocalNodeChainId();
await ethereum.request({
method: 'wallet_addEthereumChain',
params: [
{
chainId,
rpcUrls: ['http://127.0.0.1:8546'],
chainName: 'Localhost 8546',
nativeCurrency: { name: 'TEST', decimals: 18, symbol: 'TEST' },
blockExplorerUrls: null,
},
],
});
} catch (err) {
console.error(err);
}
};

switchEthereumChain.onclick = async () => {
await ethereum.request({
method: 'wallet_switchEthereumChain',
params: [
{
chainId: '0x53a',
},
],
});
try {
const chainId = await getLocalNodeChainId();
await ethereum.request({
method: 'wallet_switchEthereumChain',
params: [
{
chainId,
},
],
});
} catch (err) {
console.error(err);
}
};

const initializeAccountButtons = () => {
Expand Down