https://github.com/krzkaczor/geth-private-node
Easy to setup geth private node with lots of ether!
https://github.com/krzkaczor/geth-private-node
ethereum ganache geth private-node
Last synced: about 2 months ago
JSON representation
Easy to setup geth private node with lots of ether!
- Host: GitHub
- URL: https://github.com/krzkaczor/geth-private-node
- Owner: krzkaczor
- Created: 2018-12-02T22:47:30.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-03T15:42:15.000Z (over 7 years ago)
- Last Synced: 2025-03-28T02:49:43.587Z (about 1 year ago)
- Topics: ethereum, ganache, geth, private-node
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Geth Private Node
Easy to setup `geth` private node with lots of ether!
As easy to use as `ganache` but running bulletproof EVM implementation.
## Features:
👨🏼💻 ideal for development purposes
💦 no difficult PoW mining algorithm
⌛ waits for transactions before mining
💸 preloads and unlocks multiple accounts
Accounts:
```
0xe6ac5629b9ade2132f42887fbbc3a3860afbd07b (~10000 ETH)
0x700f98b33992cc073744d331d70037ba0d2bca45 (~10000 ETH)
0x79d7176ae8f93a04bc73b9bc710d4b44f9e362ce (~10000 ETH)
0xf18938a83cff0ae67dc105155469556d4224c48f (~10000 ETH)
0x84b07cd505f3257782b96a3e121ac1f5d1cae32f (~10000 ETH)
0x7bd1e022bdfbd45d77913bec1582dc095cb5fa31 (~10000 ETH)
0x627d795782f653c8ea5e7a63b9cdfe5cb6846d9f (~10000 ETH)
0x2e6d01625685281a1e3d10e4b41a61b4e6acb55f (~10000 ETH)
0xf40011040398947b3c6b7532ed23fbc8c19c9654 (~10000 ETH)
```
## Running
You will need docker to run it:
```bash
docker run -p 8545:8545 -p 8546:8546 krzkaczor/geth-private-node
```
To attach to geth console run:
```bash
docker exec -it CONTAINER_ID geth attach http://127.0.0.1:8545
```
aaand that's it! If you want to use metamask just import private key. Private keys are [here](https://github.com/krzkaczor/geth-private-node/blob/master/scripts/dev-mode.js#L11).
## Development
### Local build
```bash
docker build -t geth-private-node .
```