Skip to content

Instantly share code, notes, and snippets.

@critesjosh
Created March 17, 2022 20:02
Show Gist options
  • Save critesjosh/538d0a90c96d1d7657207c41d3565286 to your computer and use it in GitHub Desktop.
Save critesjosh/538d0a90c96d1d7657207c41d3565286 to your computer and use it in GitHub Desktop.
create a new Celo account in node.js
const { ethers } = require("ethers");
const wallet = new ethers.Wallet.createRandom();
console.log(`PRIVATE_KEY="` + wallet.privateKey + `"`);
console.log(`Your account address: `, wallet.address);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment