Hi,
I’m new to blockchain so I apologize for my questions.
How can I retrieve a transaction from blockchain without using the wallet, just the transaction id? I need to recover as many information as I can (memos field included) from the network.
Thanks in advance.
Regards,
Francesco
You can find transaction information on a Chia block explorer like Spacescan https://www.spacescan.io/
You can also use the full node RPC to get this information. On Chia, transaction id = name/id of the coin that was spent. You can get the coin record, then use that to fetch the full puzzle reveal + solution. Or, using coinset.org: endpoint 1 endpoint 2
Thanks for your reply.
When I get the puzzle reveal and the solution, is it possible to use them to obtain the transaction data? If so, how?
Thanks again
You’d run the puzzle reveal with the solution. The output is known as the condition list, which you’d walk through, most likely searching for CREATE_COINs with your recipient’s puzzle hash.
Coinset has an endpoint that will run the puzzle and give you conditions indexed by their opcode; the downside is that you won’t have that endpoint if you ever run the code against your full node’s RPC.