You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ethnode, run an Ethereum node for test and development
ethnode is a zero configuration tool to run a local Ethereum node. It supports both Openethereum and Geth.
Try it out:
npm install -g ethnode
ethnode
Or docker:
docker run -it ghcr.io/vrde/ethnode:latest
ethnode automatically:
downloads the latest stable version of geth or openethereum
configures geth or openethereum to run in a single node network using the clique (Geth) or InstantSeal (Openethereum) consensus engine (transactions are processed instantly)
provides 10 unlocked accounts with 100ETH each
enables all RPC endpoints (personal, db, eth, net, web3, debug and more)
allows CORS from any domain (so you can use it with remix)
By default ethnode runs geth. If you want to run openethereum type ethnode openethereum.
Examples
Start ethnode and store the data in a specific directory
Every time you run ethnode, it creates a new temporary directory to store the data. If you want to persist the data in a specific directory use:
ethnode --workdir=mydata
Start ethnode and allocate 100ETH to one or more target addresses
Sometimes you want to allocate Ether to some specific addresses (maybe some other accounts you have on MetaMask). This is an alternative approach to import a private key to your MetaMask extension.
This is quite handy if you want to have a precommit hook that runs tests before committing, or if you want to integrate with a continuous integration system like travis.