Skip to content

Instantly share code, notes, and snippets.

View haykgalstyan's full-sized avatar

Hayk Galstyan haykgalstyan

  • Yerevan
View GitHub Profile
import('https://esm.sh/ethers').then(({ethers}) => {
const w = ethers.Wallet.createRandom();
console.log(`Address: ${w.address}\nPrivate Key: ${w.privateKey}`);
});