x402-chainlink
    Preparing search index...

    Interface ErrorDTO

    Serializable error shape for wire transmission. Never includes error.cause to avoid leaking internal details.

    interface ErrorDTO {
        code: ErrorCode;
        details?: Record<string, unknown>;
        message: string;
        name: string;
    }
    Index

    Properties

    code: ErrorCode
    details?: Record<string, unknown>
    message: string
    name: string