mirror of
https://github.com/ACINQ/eclair.git
synced 2024-11-19 09:54:02 +01:00
fe5416d2df
* reworked peer management - connection and channel opening are now separated, simplified `switchboard` - use a single authenticator for both incoming and outgoing connections - `peers` api call now returns current state and channel count * fixed last commit * fixed last merge * added inetsocketaddress serializer
60 lines
2.7 KiB
Bash
60 lines
2.7 KiB
Bash
#!/bin/bash
|
|
|
|
[ -z "$1" ] && (
|
|
echo "usage: "
|
|
echo " eclair-cli help"
|
|
) && exit 1
|
|
|
|
URL="http://localhost:8080"
|
|
CURL_OPTS="-sS -X POST -H \"Content-Type: application/json\""
|
|
|
|
case $1 in
|
|
"help")
|
|
eval curl "$CURL_OPTS -d '{ \"method\": \"help\", \"params\" : [] }' $URL" | jq -r ".result[]"
|
|
;;
|
|
"getinfo")
|
|
eval curl "$CURL_OPTS -d '{ \"method\": \"getinfo\", \"params\" : [] }' $URL" | jq ".result"
|
|
;;
|
|
"channels")
|
|
eval curl "$CURL_OPTS -d '{ \"method\": \"channels\", \"params\" : [] }' $URL" | jq ".result[]"
|
|
;;
|
|
"channels")
|
|
if [ $# -ge 2 ]
|
|
then
|
|
eval curl "$CURL_OPTS -d '{ \"method\": \"channels\", \"params\" : [\"${2?"missing node id"}\"] }' $URL" | jq ".result[]"
|
|
else
|
|
eval curl "$CURL_OPTS -d '{ \"method\": \"channels\", \"params\" : [] }' $URL" | jq ".result[]"
|
|
fi
|
|
;;
|
|
"channel")
|
|
eval curl "$CURL_OPTS -d '{ \"method\": \"channel\", \"params\" : [\"${2?"missing channel id"}\"] }' $URL" | jq ".result | { nodeid, channelId, state, balanceMsat: .data.commitments.localCommit.spec.toLocalMsat, capacitySat: .data.commitments.commitInput.txOut.amount.amount }"
|
|
;;
|
|
"connect")
|
|
eval curl "$CURL_OPTS -d '{ \"method\": \"open\", \"params\" : [\"${2?"missing uri"}\"] }' $URL" | jq -r "if .error == null then .result else .error.message end"
|
|
;;
|
|
"open")
|
|
eval curl "$CURL_OPTS -d '{ \"method\": \"open\", \"params\" : [\"${2?"missing node id"}\", ${3?"missing amount (sat)"}, ${4?"missing push amount (msat)"}] }' $URL" | jq -r "if .error == null then .result else .error.message end"
|
|
;;
|
|
"close")
|
|
eval curl "$CURL_OPTS -d '{ \"method\": \"close\", \"params\" : [\"${2?"missing channel id"}\"] }' $URL"
|
|
;;
|
|
"receive")
|
|
eval curl "$CURL_OPTS -d '{ \"method\": \"receive\", \"params\" : [${2?"missing amount"}, \"${3?"missing description"}\"] }' $URL" | jq -r "if .error == null then .result else .error.message end"
|
|
;;
|
|
"send")
|
|
eval curl "$CURL_OPTS -d '{ \"method\": \"send\", \"params\" : [\"${2?"missing request"}\"] }' $URL" | jq -r "if .error == null then .result else .error.message end"
|
|
;;
|
|
"allnodes")
|
|
eval curl "$CURL_OPTS -d '{ \"method\": \"allnodes\", \"params\" : [] }' $URL" | jq ".result"
|
|
;;
|
|
"allchannels")
|
|
eval curl "$CURL_OPTS -d '{ \"method\": \"allchannels\", \"params\" : [] }' $URL" | jq ".result"
|
|
;;
|
|
"peers")
|
|
eval curl "$CURL_OPTS -d '{ \"method\": \"peers\", \"params\" : [] }' $URL" | jq ".result"
|
|
;;
|
|
"checkpayment")
|
|
eval curl "$CURL_OPTS -d '{ \"method\": \"checkpayment\", \"params\" : [\"${2?"missing payment request or payment hash"}\"] }' $URL" | jq ".result"
|
|
;;
|
|
esac
|