How can I test my receive address?

1

1

I downloaded the original software of Bitcoin at bitcoin.org. I just created a receive-address. How do I know it will work? How can I test it?

Sven

Posted 2013-12-09T15:53:00.297

Reputation: 11

3If you received the BTC 0.0001 that I just sent you, then it works! ;-)Nate Eldredge 2013-12-09T16:19:15.153

It worked. Thx!Sven 2013-12-09T16:39:00.817

@NateEldredge nice one ;)ktorn 2013-12-09T17:09:13.297

Answers

2

An easy test is to sign a message using your private key and then verify the message using your public key (your receive address). This can be done using Bitcoin-Qt by selecting File->Sign Message.

  1. Sign a message by entering your receive address and some message text (anything you want). Select Sign Message. Copy the signature to the clipboard
  2. Verify the message by entering your receive address and the message text (exactly as you entered it for signing). Then paste the copied signature into the signature field. Select Verify Message.
  3. If everything is working correctly, you should get a message verified status.

ScripterRon

Posted 2013-12-09T15:53:00.297

Reputation: 2 023

0

The receive address is based on the private key used to sign it's transactions. If you can see it at all, it means the private key must exist. Further, the address contains a hash so you can't make a typo using it. You can be perfectly confident that it works.

John Tate

Posted 2013-12-09T15:53:00.297

Reputation: 267