CCC Docs
    Preparing search index...

    Interface ConnectionsRepo

    Repository used to restore a NIP-07 connection without contacting the wallet.

    interface ConnectionsRepo {
        get(): Promise<Nip07A.Connection | undefined>;
        set(connection: Nip07A.Connection | undefined): Promise<void>;
    }

    Implemented by

    Index