KnowledgeBase

Knowledge is Power

View on GitHub

go-ethereum

Go-ethereum (or Geth for short) is one of the most widely used client implementations of the Ethereum protocol, it’s written in Go.

Features

Getting Started

Install Geth. Then you have two easy options

  1. Sync with a testnet running geth --goerli --syncmode "light"
  2. Or run your private network geth --dev. It will create a new account (if none exists), and put a lot of ether on it.

You can interact with Geth in a number of ways:

Need Help