Documentation
    Preparing search index...

    Type Alias ConnectItemReplyError<T>

    Generic per-item error envelope used inside payload.items[] when the wallet cannot fulfil a specific item — for example a wallet that doesn't implement ton_proof returns { name: 'ton_proof', error: { code: 400 } }.

    type ConnectItemReplyError<T> = {
        error: { code: CONNECT_ITEM_ERROR_CODES; message?: string };
        name: T;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    error: { code: CONNECT_ITEM_ERROR_CODES; message?: string }
    name: T