Skip to content

adietrichs/geth-workshop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Geth Workshop: Prototyping EIP-3074

Useful Links

Creating a Local Geth Testnet

  • make sure you have compiled geth & added the path to your geth binary to $PATH:
export PATH="path/to/go-ethereum/build/bin:$PATH"
  • clone this repo:
git clone https://github.com/adietrichs/geth-workshop.git && cd geth-workshop
  • create a signer account (no password)
geth account new --datadir data
  • modify genesis.json, replacing the two occurrences of __SIGNER__ with the address of your signer (in both cases without the leading 0x)

  • initialize chain

geth init --datadir data genesis.json
  • start node (again, replace __SIGNER__)
geth --datadir data --unlock 0x__SIGNER__ --password .empty --networkid 12345 --mine --nodiscover --http --http.api web3,eth,debug,personal,net --allow-insecure-unlock --http.corsdomain "*"

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published