# Appendix A: Using bundle in a browser
It is possible to use zksync.js
in a browser directly.
ethers@5.0
dependency is required forzksync.js
to work.
Example with zksync@0.8.1 fetched from https://unpkg.com (opens new window) CDN
<html>
<body>
<script type="text/javascript" src="https://cdn.ethers.io/lib/ethers-5.0.umd.min.js"></script>
<script type="text/javascript" src="https://unpkg.com/zksync@0.8.1/dist/main.js"></script>
<script type="text/javascript">
(async () => {
const ethWallet = ethers.Wallet.createRandom();
const zksProvider = await zksync.getDefaultProvider('goerli');
const zkSyncWallet = await zksync.Wallet.fromEthSigner(ethWallet, zksProvider);
console.log('ETH balance:', (await zkSyncWallet.getBalance('ETH')).toString());
const privateKey = await zksync.crypto.privateKeyFromSeed(new Uint8Array(32));
const pubkeyHash = await zksync.crypto.privateKeyToPubKeyHash(privateKey);
console.log('PrivateKey', ethers.utils.hexlify(privateKey), 'PubkeyHash', pubkeyHash);
})();
</script>
</body>
</html>
← Types Getting started →