Where can I look to see a revealed public key?

2

I've read that pub keys aren't exposed until they're spent from. Can someone show me an example of a transaction prior to the pub key being exposed and then after? Where do i look?

joe

Posted 2013-03-07T02:08:52.137

Reputation: 211

Answers

1

Just go to any typical, normal transaction on blockexplorer. Here's a link to one I picked at random. The input(s) are scripts where the public key and signature are provided to claim the outputs of previous transactions in the ScriptSig field. The output(s) are scripts where the public key has not yet been provided and contain only a hash of the public key in the ScriptPubKey field.

David Schwartz

Posted 2013-03-07T02:08:52.137

Reputation: 46 931

thanks for that. is the Hash160 a combination of RIPEMD160(SHA256)?joe 2013-03-07T21:50:49.323

@joe: Yes. It's documented here.

David Schwartz 2013-03-08T01:33:34.737