mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-08 14:50:26 +01:00
37 lines
1.0 KiB
Bash
37 lines
1.0 KiB
Bash
|
#! /bin/sh
|
||
|
# Query bitcoind to get (first) unspent output to spend.
|
||
|
|
||
|
###
|
||
|
# Nobody should *EVER* write code like this. EVER!!
|
||
|
###
|
||
|
set -e
|
||
|
|
||
|
. `dirname $0`/vars.sh
|
||
|
|
||
|
if [ n"$1" = n--privkey ]; then
|
||
|
KEY=1
|
||
|
shift
|
||
|
fi
|
||
|
NUM=1
|
||
|
if [ $# = 1 ]; then
|
||
|
NUM=$1
|
||
|
shift
|
||
|
fi
|
||
|
|
||
|
if [ $# -gt 0 ]; then
|
||
|
echo "Usage: getinput.sh [--privkey] [INPUT-INDEX]"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
if [ -n "$KEY" ]; then
|
||
|
ADDR=`$CLI listunspent | sed -n 's/^ *"address" *: *"\([0-9a-zA-Z]*\)",$/\1/p' | tail -n +$NUM | head -n1`
|
||
|
$CLI dumpprivkey $ADDR
|
||
|
else
|
||
|
TXID=`$CLI listunspent | sed -n 's/^ *"txid" *: *"\([0-9a-f]*\)",$/\1/p' | tail -n +$NUM | head -n1`
|
||
|
OUTNUM=`$CLI listunspent | sed -n 's/^ *"vout" *: *\([0-9]*\),$/\1/p' | tail -n +$NUM | head -n1`
|
||
|
AMOUNT=`$CLI listunspent | sed -n 's/^ *"amount" *: *\([0-9.]*\),$/\1/p' | tail -n +$NUM | head -n1 | tr -d . | sed 's/^0*//'`
|
||
|
SCRIPT=`$CLI listunspent | sed -n 's/^ *"scriptPubKey" *: *"\([0-9a-f]*\)",$/\1/p' | tail -n +$NUM | head -n1`
|
||
|
|
||
|
echo $TXID/$OUTNUM/$AMOUNT/$SCRIPT
|
||
|
fi
|