x402-chainlink
    Preparing search index...

    Interface SettleResponse

    Settlement response from facilitator Spec compliance: x402 v2 - SettlementResponse Schema

    interface SettleResponse {
        blockHash?: `0x${string}`;
        blockNumber?: number;
        errorReason?: string;
        network: EVMNetworkId;
        payer?: `0x${string}`;
        status?: TransactionStatus;
        success: boolean;
        transaction: "" | `0x${string}`;
        workflowId?: string;
    }
    Index

    Properties

    blockHash?: `0x${string}`

    Block hash (if confirmed)

    blockNumber?: number

    Block number (if confirmed)

    errorReason?: string

    Reason for failure if success is false

    network: EVMNetworkId

    Network the transaction was submitted to (CAIP-2 format)

    payer?: `0x${string}`

    Payer address (optional per v2 spec)

    Transaction status

    success: boolean

    Whether settlement was successful

    transaction: "" | `0x${string}`

    Transaction hash (empty string if failed)

    workflowId?: string

    CRE workflow execution ID (if applicable)