1

I am facing two problems below,

First is that I am trying to broadcast transaction which have OP_RETURN but blockchain.info continuously rejecting it, though I have broadcast it using bitcoind.

Second is that what is the best way to insert an OP_RETURN data into the raw transaction. Currently I am following this method ---> What is a step by step way to insert data in OP_RETURN?

but i know this is not a standard way.

I am using php and bitcoind server!

Any help would be appreciated :)

Thanks

Hassan Mehmood
  • 213
  • 1
  • 2
  • 6

2 Answers2

2

blockchain.info's pushtx feature will reject transactions with OP_RETURN in it.

You might want to try my tool https://github.com/kaykurokawa/pushtx

k kurokawa
  • 2,072
  • 15
  • 28
0

Blockchain.info does not display transactions with OP_RETURNs until they are confirmed on the blockchain.

You can view all recent OP_RETURN transactions on Coin Secrets, and there's a link from there to a simple PHP library for working with OP_RETURNs.