0
https://bitcoin.stackexchange.com/a/13347/27951
Based upon the answer here, it seems there's values per block with each Prev_Hash and also Tx_Root
There doesn't seem to be much documentation for how to access these. How can I find the Prev_Hash and the Tx_Root of the most recent block for example?
Thanks

Do you want to access the values from code? Or just see them? You can see the values on a block explorer, but to decode the values from a raw block you'd need to understand the message protocol format.
– morsecoder – 2016-04-16T00:50:58.260I'd like to see them for now but additionally access them by code eventually. I've found the
getblockmethod which can be used to display the merkle tree, but how do I find theblockHashparameter to pass to that method, for say the last block or last 10 blocks? Not sure where I can find thoseblockHashes – Anthony – 2016-04-16T00:58:03.700