0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

暗号資産ビットコインゴールド(BTG)のフルノードを構築する方法

Posted at

要 旨

暗号資産ビットコインゴールド(BTG)のフルノードを構築する方法(CLI)について記述します。

実行環境等

VPS:KAGOYA VPS
OS:Ubuntu22.04LTS
CPU/メモリ:3コア/3GB
ストレージ:400GB SSD
料金 63円/日、1,760円/月(2024.8.17時点)
同期開始:2024.8.17(土)17:30
同期完了:2024.8.18(日)03:00
同期に要した時間:9時間30分
使用ストレージ容量:212GB

実施要領

アップデート

apt update

ウォレットのインストール

wget https://github.com/BTCGPU/BTCGPU/releases/download/v0.17.3/bitcoin-gold-0.17.3-x86_64-linux-gnu.tar.gz

展開する。

tar -xzvf bitcoin-gold-0.17.3-x86_64-linux-gnu.tar.gz

不要になったファイルの削除

rm bitcoin-gold-0.17.3-x86_64-linux-gnu.tar.gz

ディレクトリの移動

cd bitcoin-gold-0.17.3/bin

コマンドをインストールする

install -m 0755 -o root -g root -t /usr/local/bin *

bgolddの起動

bgoldd

起動を確認したら(1分経過したら)、一旦停止させる。
ctr + C
~/.bitcoingold/bitcoingold.confを新規作成する。

vi ~/.bitcoingold/bitcoingold.conf

以下を記述して、保存する。

mainnet=1
daemon=1
server=1
rpcuser=rpcuser
rpcpassword=rpcpassword
rpcport=8339
gen=1
genproclimit=-1

再度bgolddを起動させて、同期させる。

bgoldd

同期状態の確認。

tail -f ~/.bitcoingold/debug.log

結 言

今回は、暗号資産ビットコインゴールド(BTG)のフルノードを構築する方法(CLI)について記述しました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?