- My Ether Wallet
- Using Web3 and Node REPL
- Parity GUI
go https://myetherwallet.com
create new
Install web3 1.0.0 and run node
In Shell
npm init
npm install [email protected] --save
node
Writing down my phrase
gooey barista clumsily decathlon lubricate unfazed support gander unsoiled erasure jiffy ocean
In Node
var Web3 = require('web3');
var url = "ws://localhost:8546";
var infura = "ws://mainnet.infura.io/WhUD2ASrnbY9Bswx7yNv";
var web3 = new Web3(Web3.givenProvider || infura);
web3.eth.accounts.create(["this is my seed phrase"]);
Run parity
Go to localhost:8545
Accounts tab