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.
11 lines
430 B
11 lines
430 B
#!/bin/bash
|
|
#
|
|
# VerifyMesage
|
|
|
|
echo 'Bitcoin RPC : verifymessage'
|
|
echo 'Param1 : Address'
|
|
echo 'Param2 : Signature'
|
|
echo 'Param3 : Message'
|
|
|
|
curl --url "http://127.0.0.1:7778" --data "{\"agent\":\"bitcoinrpc\",\"method\":\"verifymessage\",\"address\":\"REurKb7jWHJgE2WKMqvqiDdbFf6Tmd2CEX\",\"sig\":\"HzVTJEsYyldwfZ1YQxCntxfPn4QidpPKkkVs7dwwqspLBopw0aYSFmac1RpD9hQD5m/cy55FJBGxbKkd+tscjOY=\",\"message\":\"testMessage\"}"
|
|
echo ""
|
|
|