You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4 lines
255 B
4 lines
255 B
#!/bin/bash
|
|
version=`python3 -c "import electrum; print(electrum.version.ELECTRUM_VERSION)"`
|
|
sig=`./run_electrum -w $SIGNING_WALLET signmessage $SIGNING_ADDRESS $version`
|
|
echo "{ \"version\":\"$version\", \"signatures\":{ \"$SIGNING_ADDRESS\":\"$sig\"}}"
|
|
|