How does a transaction using a Bitcoin payment code BIP 47 look like on the blockchain?

0

Having that payment code addresses are untracable, how does a transaction look like in a block explorer if someone sends a payment to a reusable payment code?

Patoshi パトシ

Posted 2017-04-26T18:46:48.363

Reputation: 8 911

Answers

1

BIP47 transactions look like any other transactions as far as inputs/outputs & fees are concerned. There is no difference.

Payments are not sent to the payment code itself but rather to addresses generated by the shared secret of both the sender's payment code and the receiver's payment code.

The only recognisable trace on the blockchain is the notification transaction, of one payment code to another, which includes an OP_RETURN. Notification transactions are done once for a sender to a receiver to initialise the payment "channel" and also permit any future restore of the wallet directly from the blockchain (in the event of lost metadata, for example).

https://github.com/bitcoin/bips/blob/master/bip-0047.mediawiki https://github.com/SamouraiDev/BIP47_RPC

T. DeV D

Posted 2017-04-26T18:46:48.363

Reputation: 31