We have a scenario where we know which was the last block and we want to list all txs with its details with listsinceblock. But since command listsinceblock doesn't provide all the info that we need, we are doing:
1. getblock
2. getrawtransaction <txid>
3. decoderawtransaction
My question: Can you implement API command that would give all the information about txs since last block, like listsinceblock does + getrawtransaction + decoderawtransaction ?