The docs say this value should be “The number of receipt messages in the block.”, however it appears to basically always be 0. What qualifies as a ‘receipt message root’?
query TransactionsThatHadReceipts {
blocks(first: 1, after: "7723482") {
edges {
node {
header {
id
transactionsCount
height
messageReceiptCount
}
}
}
}
}
As an example, this query is for a block with 2 transactions, and in total it has 34 receipts - 33 in this transaction and a mint in the other.
Infact, I didn’t find a block where this value wasn’t 0 - (although I didn’t scan every single block)