UNPKG

eths-git

Version:

**eths-git-remote** is a decentralized Git solution designed to manage repositories on-chain. It provides two main components:

9 lines (8 loc) 214 B
import { ethers } from 'ethers'; export function generatePrivateKey() { const wallet = ethers.Wallet.createRandom(); return { privateKey: wallet.privateKey, address: wallet.address }; }