How to check transactions within a block?

+2 votes
I'm wondering if there a way to check or list all the transactions which packaged into a specific block
asked Sep 5, 2017 by leo

1 Answer

0 votes

Use getblock with different values for the verbose parameter to get different levels of detail on the transactions in any block.

answered Sep 5, 2017 by MultiChain
Thanks ,that's the answer , but if need to dig into a txid, can use getrawtransaction to get the more detailed info .

Another query , how many types transaction multichain has ,like publishing a message into a stream will be considered as a transaction , the coinbase transaction considered as a transaction  ,and what more ?  what's createtxid ?
You could do that, but if you use getblock with verbose=4, you'll see the full getrawtransaction/decoderawtransaction data in the response.

There are many different types of MultiChain transaction, and one transaction can also combine multiple types e.g. adding a permission and writing to a stream. You can get some idea from the headings on this page: https://www.multichain.com/developers/raw-transactions/
...