2️⃣Install Nodes
Node Setup
Bitcoin
// add bitcoin.conf
vim ~/.bitcoin/bitcoin.conf
testnet=0
server=1
daemon=1
txindex=1
zmqpubrawblock=tcp://127.0.0.1:28332
zmqpubrawtx=tcp://127.0.0.1:28333
rpcbind=127.0.0.1
rpcallowip=127.0.0.1/32
// if you are running provider client as a docker container add these
zmqpubrawblock=tcp://172.17.0.1:28332
zmqpubrawtx=tcp://172.17.0.1:28333
zmqpubhashtx=tcp://172.17.0.1:28333
zmqpubhashblock=tcp://172.17.0.1:28333
rpcbind=172.17.0.1
rpcallowip=172.0.0.0/8
// unpack and run bitcoind
tar zxvf bitcoin-22.0-x86_64-linux-gnu.tar.gz
cd bitcoin-22.0/
bitcoind Lightning
Last updated