I've just started using Web3j and am having some basic trouble.
I've successfully figured out how to get an EthBlock and retrieve all of the information inside of it. I'd like to see the list of transactions in the block, but I can't figure out how.
I can call
List<TransactionResult> transactions = ethBlock.getBlock().getTransactions();
I should be able to look through this list and get information about each transaction. But all I can seem to do with a TransactionResult is cast it to the very unuseful TransactionHash. What I'd like is a TransactionObject from which I can extract lots of information.
How do I get at the real transaction data?
And on another note: is there any reason why there doesn't seem to be any Web3j JavaDoc??