@hiero-hackers/hiero-notifications - v0.1.0
    Preparing search index...

    Interface Receipt

    A receipt: one transaction seen from one account's point of view, enriched for a human — direction, counterparty, net movements, fee, memo, an optional fiat value, and a provenance stamp saying whether it is cryptographically verified or merely mirror-sourced.

    interface Receipt {
        account: string;
        consensusTimestamp: string;
        counterparty?: string;
        direction: Direction;
        feeFiat?: FiatValue;
        feeTinybar: bigint;
        fiat?: FiatValue;
        memo?: string;
        movements: readonly Movement[];
        nft?: readonly NftMovement[];
        payer: string;
        provenance: Provenance;
        stakingRewardTinybar?: bigint;
        status: "failed" | "success";
        transactionId: string;
        txType: string;
    }
    Index
    account: string
    consensusTimestamp: string
    counterparty?: string
    direction: Direction
    feeFiat?: FiatValue

    Fiat value of the network fee alone (payer only). Approximate.

    feeTinybar: bigint
    fiat?: FiatValue

    Fiat value of the HBAR transferred — the amount sent, received, or earned as a reward — excluding the network fee. Approximate.

    memo?: string
    movements: readonly Movement[]
    nft?: readonly NftMovement[]
    payer: string

    The account that paid for (initiated) the transaction.

    provenance: Provenance
    stakingRewardTinybar?: bigint

    The staking-reward portion of the HBAR movement (part of movements).

    status: "failed" | "success"
    transactionId: string
    txType: string