x402-chainlink
    Preparing search index...

    Interface CRESettlementResult

    CRE settlement result

    interface CRESettlementResult {
        blockNumber?: number;
        error?: string;
        gasUsed?: string;
        reportSubmitted: boolean;
        status?: "pending" | "confirmed" | "failed";
        transactionHash?: `0x${string}`;
        txHash?: string;
    }
    Index

    Properties

    blockNumber?: number

    Block number of settlement (optional)

    error?: string

    Error message if settlement failed

    gasUsed?: string

    Gas used (optional)

    reportSubmitted: boolean

    Whether the settlement report was submitted

    status?: "pending" | "confirmed" | "failed"

    Status of settlement

    transactionHash?: `0x${string}`

    Transaction hash (legacy alias)

    txHash?: string

    Transaction hash (from KeystoneForwarder)