Data contains the set of transactions included in the block

interface Data {
    txs: Uint8Array[];
}

Properties

Properties

txs: Uint8Array[]

Txs that will be applied by state @ block.Height+1. NOTE: not all txs here are valid. We're just agreeing on the order first. This means that block.AppHash does not include these txs.

Generated using TypeDoc