walletdisplayaddress
walletdisplayaddress "address" Display address on an external signer for verification. Arguments: 1. address (string, required) bitcoin address to display Result: { (json object) "address" : "str" (string) The address as confirmed by the signer }
Signature
walletdisplayaddress(address: string) → any Code samples
curl --user "$RPC_USER:$RPC_PASS" \
--data-binary '{"jsonrpc":"1.0","id":"docs","method":"walletdisplayaddress","params":["\"<address>\""]}' \
-H 'content-type: text/plain;' \
http://127.0.0.1:8332/ Parameters
| Name | Type | Req. | Description |
|---|---|---|---|
| address | string | yes | bitcoin address to display |
Result
Type: any
{ (json object) "address" : "str" (string) The address as confirmed by the signer }
Source: services/core-node/bcore/src/wallet/rpc/addresses.cpp:648
C++ symbol: walletdisplayaddress