Ethereum

From ArchWiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The Ethereum Project provides an open-source, distributed, blockchain-based platform for so-called wikipedia:Smart contracts.

Clients

Tango-view-fullscreen.pngThis article or section needs expansion.Tango-view-fullscreen.png

Reason: Note several implementations exist in non-/AUR packages, configuration, tips, troubleshooting etc. (Discuss in Talk:Ethereum)

Go Ethereum

Go Ethereum, the official Go implementation of the Ethereum protocol, is available as the go-ethereum package.

Create an account with geth account new.

The client can be started with geth, and it will proceed to download several gigabytes of blockchain data. This will take a very long time. This time can be shortened with

$ geth --syncmode fast --cache=1024

Higher cache values appear to speed up the process more[1].

Optionally, start the client with geth console to get a JavaScript console for more meaningful interaction. This console can then be attached-to from another terminal or remotely with geth attach [hostname:port defaults to localhost].

To check balances in the console or attach modes, use web3.fromWei(eth.getBalance(eth.coinbase), "ether").

To start CPU mining, use geth --mine. This is far less efficient than GPU mining, and ethereum.org does not recommend it.

GPU Mining with geth

Tango-view-fullscreen.pngThis article or section needs expansion.Tango-view-fullscreen.png

Reason: There is a way to make a 3rd party Ethereum miner work with geth. (Discuss in Talk:Ethereum)

GPU mining with geth has been discontinued.

Ethereum Wallet

You can install the Ethereum Wallet via the mycrypto-binAUR package. The old mistAUR wallet is deprecated. See the announcement and view the migration guide.