npm install
npm run build
see src/
import { Wallet, Blockchains } from 'moonlet-core';
// Use the wallet
const myWallet = new Wallet();
console.log( "Generated mnemonics:", myWallet.mnemonics );
// create an ethereum account
const bc = myWallet.getBlockchain( Blockchains.ETHEREUM );
bc.createAccount();
const accs = bc.getAccounts();
console.log( accs[0].address );
Start All test rpcs
npm run start-all-rpcs
Stop all running test rpcs ( that have pids stored )
npm run stop-all-rpcs
MIT