「Btcpayserver」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(英語版より転載)
 
(翻訳)
1行目: 1行目:
 
[[Category:ウェブアプリケーション]]
 
[[Category:ウェブアプリケーション]]
  +
BTCPayServer は、MIT ライセンスの下でライセンスされた暗号通貨のためのオープンソースの支払いプロセッサです。Bitcoin はネイティブでサポートされていますが、他の暗号通貨は拡張機能を介してサポートされています。このソフトウェアは C# で書かれており、ウェブブラウザ経由でアクセスされます。プロジェクトの主な考え方は、支払先に仲介者なしで支払いを完全にコントロールすることです。
BTCPayServer is an open source payment processor for crypto currencies licensed under the MIT license. While Bitcoin is supported natively, other crypto currencies are supported via extensions. The software is written in C# and is accessed over the web browser. The core idea of the project is to give merchants full control over payments without a middleman.
 
   
== Installation ==
+
== インストール ==
   
  +
{{AUR|btcpayserver}} パッケージを [[インストール]] してください。
[[Install]] the package {{AUR|btcpayserver}}.
 
   
== Configuration ==
+
== 設定 ==
   
 
=== Bitcoin ===
 
=== Bitcoin ===
   
BTCPayServer communicates with the Bitcoin node via RPC. For this, those values need to be set. Edit {{ic|/etc/bitcoin/bitcoin.conf}} and set {{ic|1=rpcuser=}} and {{ic|1=rpcpassword=}}. Moreover, a whitelist must be defined with {{ic|1=whitelist=127.0.0.1}}.
+
BTCPayServer Bitcoin ノードと RPC を介して通信します。そのため、これらの値を設定する必要があります。{{ic|/etc/bitcoin/bitcoin.conf}} を編集し、{{ic|1=rpcuser=}} {{ic|1=rpcpassword=}} を設定します。さらに、{{ic|1=whitelist=127.0.0.1}} でホワイトリストを定義する必要があります。
   
  +
{{Note|Bitcoin は数百 GiB のディスクスペースが必要です。剪定ノードを実行することもできます。これは、{{ic|/etc/bitcoin/bitcoin.conf}} 内の {{ic|1=prune=550}} のコメントを解除することで行われます。}}
{{Note|Bitcoin requires several hundreds GiB of disk space. You may want to run a pruned node. This is done by uncommenting {{ic|1=prune=550}} in {{ic|/etc/bitcoin/bitcoin.conf}}.}}
 
   
=== Optional configuration ===
+
=== 任意の設定 ===
   
Usage of the lightning network is optional. Information on the lightning connection string can be found [https://github.com/btcpayserver/BTCPayServer.Lightning here]. Decide for one lightning implementation.
+
ライトニングネットワークの使用は任意です。ライトニング接続文字列に関する情報は [こちら](https://github.com/btcpayserver/BTCPayServer.Lightning) で見つかります。1つのライトニング実装を選択してください。
   
 
==== LND ====
 
==== LND ====
Execute {{ic|lnd}} as a private key needs to be generated. Then, execute {{ic|lncli create}} and create your needed wallet or restore an existing one. Edit {{ic|/etc/bitcoin/bitcoin.conf}} and add the following settings.
+
{{ic|lnd}} を実行して、プライベートキーを生成します。次に、{{ic|lncli create}} を実行して必要なウォレットを作成するか、既存のものを復元します。{{ic|/etc/bitcoin/bitcoin.conf}} を編集し、次の設定を追加します。
   
 
{{bc|1=<nowiki/>
 
{{bc|1=<nowiki/>
26行目: 26行目:
 
}}
 
}}
   
== Usage ==
+
== 使用方法 ==
[[Start/enable]] {{ic|bitcoind.service}}
+
{{ic|bitcoind.service}} を [[起動/有効化]] してください。
   
 
=== Lightning ===
 
=== Lightning ===
42行目: 42行目:
 
=== BTCPayServer ===
 
=== BTCPayServer ===
   
  +
ライトニングノードを実行していない場合、{{ic|--btclightning}} オプションをスキップしてください。
When running no lightning node, just skip the option {{ic|--btclightning}}.
 
   
 
==== With Core Lightning ====
 
==== With Core Lightning ====

2023年9月12日 (火) 22:19時点における版

BTCPayServer は、MIT ライセンスの下でライセンスされた暗号通貨のためのオープンソースの支払いプロセッサです。Bitcoin はネイティブでサポートされていますが、他の暗号通貨は拡張機能を介してサポートされています。このソフトウェアは C# で書かれており、ウェブブラウザ経由でアクセスされます。プロジェクトの主な考え方は、支払先に仲介者なしで支払いを完全にコントロールすることです。

インストール

btcpayserverAUR パッケージを インストール してください。

設定

Bitcoin

BTCPayServer は Bitcoin ノードと RPC を介して通信します。そのため、これらの値を設定する必要があります。/etc/bitcoin/bitcoin.conf を編集し、rpcuser=rpcpassword= を設定します。さらに、whitelist=127.0.0.1 でホワイトリストを定義する必要があります。

ノート: Bitcoin は数百 GiB のディスクスペースが必要です。剪定ノードを実行することもできます。これは、/etc/bitcoin/bitcoin.conf 内の prune=550 のコメントを解除することで行われます。

任意の設定

ライトニングネットワークの使用は任意です。ライトニング接続文字列に関する情報は [こちら](https://github.com/btcpayserver/BTCPayServer.Lightning) で見つかります。1つのライトニング実装を選択してください。

LND

lnd を実行して、プライベートキーを生成します。次に、lncli create を実行して必要なウォレットを作成するか、既存のものを復元します。/etc/bitcoin/bitcoin.conf を編集し、次の設定を追加します。

zmqpubrawblock=tcp://127.0.0.1:28332
zmqpubrawtx=tcp://127.0.0.1:28333

使用方法

bitcoind.service起動/有効化 してください。

Lightning

Core Lightning

lightningd --bitcoin-rpcpassword "${bitcoin_rpc_password}" --bitcoin-rpcuser "${USER}" --log-level info --network bitcoin --rpc-file "${XDG_STATE_HOME}"/lightning/lightning-rpc

LND

lnd --bitcoin.active --bitcoin.mainnet --bitcoin.node bitcoind --bitcoind.rpcpass "${bitcoin_rpc_password}" --bitcoind.rpcuser "${USER}" --bitcoind.zmqpubrawblock tcp://127.0.0.1:28332 --bitcoind.zmqpubrawtx tcp://127.0.0.1:28333 --externalip localhost lncli unlock

NBXplorer

nbxplorer --btcrpcpassword "${bitcoin_rpc_password}" --btcrpcuser "${USER}" -d "${XDG_DATA_HOME}"/nbxplorer/ --postgres "User ID=\"${USER}\";Password=\"${postgresql_password}\";Host=localhost;Port=5432;Database=nbxplorer;"

BTCPayServer

ライトニングノードを実行していない場合、--btclightning オプションをスキップしてください。

With Core Lightning

btcpayserver --btclightning type=clightning;unix://"${XDG_STATE_HOME}"/lightning/lightning-rpc -d "${XDG_DATA_HOME}"/btcpayserver/ --explorerpostgres "User ID=\"${USER}\";Password=\"${postgresql_password}\";Host=localhost;Port=5432;Database=nbxplorer;\" --sqlitefile btcpayserver.db

With LND

btcpayserver --btclightning type=lnd-rest;server=https://127.0.0.1:8080/;macaroonfilepath=/home/"${USER}"/.lnd/data/chain/bitcoin/mainnet/admin.macaroon;certthumbprint="$(openssl x509 -noout -fingerprint -sha256 -in ~/.lnd/tls.cert | sed -e "s/.*=//;s/://g")" -d "${XDG_DATA_HOME}\"/btcpayserver/ --explorerpostgres "UserID=\"${USER}\";Password=${postgresql_password};Host=localhost;Port=5432;Database=nbxplorer;\" --sqlitefile btcpayserver.db