RPC Browser



Arguments

signmessage "address" "message"

Sign a message with the private key of an address
Requires wallet passphrase to be set with walletpassphrase call if wallet is encrypted.

Arguments:
1. address    (string, required) The address to use for the private key.
2. message    (string, required) The message to create a signature of.

Result:
"str"    (string) The signature of the message encoded in base 64

Examples:

Unlock the wallet for 30 seconds
> spacexpanse-cli walletpassphrase "mypassphrase" 30

Create the signature
> spacexpanse-cli signmessage "CJDPZBVLi6tx2mST1Z4BSANNeztHunz9LT" "my message"

Verify the signature
> spacexpanse-cli verifymessage "CJDPZBVLi6tx2mST1Z4BSANNeztHunz9LT" "signature" "my message"

As a JSON-RPC call
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "signmessage", "params": ["CeLpk96XKcgSpMNk3NVLSDNFUmur17Ng5S", "my message"]}' -H 'content-type: text/plain;' http://127.0.0.1:11998/
[
    {
        "name": "address",
        "detailsLines": [],
        "properties": [
            "string",
            "required"
        ],
        "description": "The address to use for the private key."
    },
    {
        "name": "message",
        "detailsLines": [],
        "properties": [
            "string",
            "required"
        ],
        "description": "The message to create a signature of."
    }
]