-
Notifications
You must be signed in to change notification settings - Fork 22
/
chainChanged.html
38 lines (35 loc) · 1.62 KB
/
chainChanged.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://unpkg.com/web3@latest/dist/web3.min.js"></script>
</head>
<body>
<h1>chainChanged</h1>
<pre id="log" style="width:100%;height:200px"></pre>
<script type="text/javascript">
function log(logstr) {
document.getElementById("log").innerHTML +=logstr+"\n";
}
async function f() {
web3 = new Web3(Web3.givenProvider); // provider from metamask
log(`Version of web3.js: ${web3.version}`);
var result=await web3.eth.requestAccounts().catch(x=>log(x.message));
log(`Value from eth requestAccounts: ${JSON.stringify(result)}`);
var acts=await web3.eth.getAccounts().catch(log);
log(`Here are the accounts: ${JSON.stringify(acts)}`);
var chainId=await web3.eth.getChainId();
log(`We are on chain: ${JSON.stringify(chainId)}`);
ethereum.on('chainChanged', newChain);
ethereum.on('networkChanged',newChain); // still used in metamask mobile
ethereum.on('chainIdChanged',newChain); // temp workaround
ethereum.autoRefreshOnNetworkChange = false; // temp workaround // doesn't work on metamask mobile
function newChain(newchainId) {
chainId=newchainId;
log(`We have a new chain: ${chainId}`);
}
}
window.addEventListener('DOMContentLoaded', f);
</script>
</body>
</html>