2
0
mirror of https://github.com/lnbook/lnbook synced 2024-11-01 03:20:53 +00:00
lnbook/code/docker/lnd-run/fund-lnd.sh
Andreas M. Antonopoulos 28f91cb4b4 Clean up lnd-run docker
Add entrypoint script, bash alias, log tailing and cleaner startup script
2020-06-11 10:43:32 -04:00

22 lines
491 B
Bash

#!/bin/bash
# Generate a new receiving address for LND wallet
address=$(lncli --lnddir=/lnd --network regtest newaddress np2wkh | jq .address)
# Ask Bitcoin Core to send 10 BTC to the address, using JSON-RPC call
curl --user regtest:regtest \
-H 'content-type: text/plain;' \
http://bitcoind:18443/ \
--data-binary @- <<EOF
{
"jsonrpc": "1.0",
"id": "lnd-run-container",
"method": "sendtoaddress",
"params": [
${address},
10,
"funding LND"
]
}
EOF