Last active
January 30, 2018 14:29
-
-
Save onokatio/58354a63f18d1f1f6df4dd7e18481f24 to your computer and use it in GitHub Desktop.
MonacoinでLightning Networkを使ってみた ref: https://qiita.com/onokatio/items/88c1fde8a0b9938c5954
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| eclair { | |
| bitcoind { | |
| rpcuser = "myuser" | |
| rpcpassword = "12345678" | |
| rpcport = 9402 | |
| zmq = "tcp://127.0.0.1:30000" | |
| } | |
| server { | |
| port = 9735 | |
| } | |
| api { | |
| binding-ip = "127.0.0.1" | |
| port = 8087 | |
| } | |
| node-alias = "mynode1" | |
| node-color = "FF0040" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ wget https://github.com/monacoinproject/monacoin/releases/download/monacoin-0.14.2/monacoin-0.14.2-x86_64-linux-gnu.tar.gz | |
| $ tar xvf monacoin-0.14.2-x86_64-linux-gnu.tar.gz | |
| $ cd monacoin-0.14.2/bin | |
| $ ls | |
| monacoin-cli monacoin-qt monacoin-tx monacoind |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ mkdir ~/.monacoin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ nohup ./monacoinqt & |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ wget https://github.com/monapu/eclair/releases/download/v0.2-alpha4-mona2/eclair-node-javafx_2.11-0.2-SNAPSHOT-mona2-8ee486c-capsule-fat.jar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ mkdir ~/.eclair |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ java -jar ./eclair…(省略)capsule-fat.jar & |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| server=1 | |
| rpcuser=myuser | |
| rpcpassword=12345678 | |
| txindex=1 | |
| zmqpubrawblock=tcp://127.0.0.1:30000 | |
| zmqpubrawtx=tcp://127.0.0.1:30000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment