「Ethereum」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(→‎Ethereum-Go: 古いので差し換え)
(→‎Ethereum Wallet: 古いので差し換え)
29行目: 29行目:
 
GPU mining with geth has been discontinued.
 
GPU mining with geth has been discontinued.
   
=== Ethereum Wallet ===
+
=== Ethereum ウォレット ===
   
  +
You can [[install]] the Ethereum Wallet via the {{AUR|mycrypto-bin}} package. The old {{AUR|mist}} wallet is deprecated. See the [https://medium.com/@avsa/sunsetting-mist-da21c8e943d2 announcement] and view the [https://medium.com/@omgwtfmarc/mist-migration-patterns-6bcf066ac383 migration guide].
Ethereum Wallet は {{AUR|mist}} パッケージか GitHub の [https://github.com/ethereum/mist/releases リリース] からインストールできます。
 
 
GitHub のリリースを使用する場合、zip の最新 Linux 版 ({{ic|Ethereum-Wallet-linux64-''version''.zip}}) をダウンロードして、ファイルを解凍して {{ic|./ethereumwallet}} で起動してください。
 
 
アプリケーションが起動せず {{ic|error while loading shared libraries: libgtk-x11-2.0.so: cannot open shared object file: No such file or directory}} というエラーが表示される場合は [[GTK+|GTK+ 2]] ライブラリをインストールしてください。
 
 
Wallet には Ethereum ノードも実装されています。
 

2023年2月27日 (月) 13:53時点における版

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 full --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

この記事またはセクションは加筆を必要としています。
理由: There is a way to make a 3rd party Ethereum miner work with geth. (議論: トーク:Ethereum#)

GPU mining with geth has been discontinued.

Ethereum ウォレット

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.