hoodchain - v0.1.0
    Preparing search index...

    Interface DecodedFeedTransaction

    A transaction recovered from the firehose before it lands in a block.

    interface DecodedFeedTransaction {
        hash: `0x${string}`;
        raw: `0x${string}`;
        transaction: TransactionSerializable;
    }
    Index
    hash: `0x${string}`

    keccak256 of the raw signed bytes — the eventual transaction hash.

    raw: `0x${string}`

    The raw signed transaction bytes.

    transaction: TransactionSerializable

    Parsed viem transaction (type, to, value, data, …).