@cfxlabsinc/b2b-services
    Preparing search index...

    Authoritative writer for b2b.backoffice_wallet — the config surface behind /wallets. Emits backofficeWallet.* activity rows and self-busts BOTH read snapshots in the shared backoffice-wallet namespace: the whole-table snapshot (SolanaBackofficeWalletService) and the Utila-only snapshot (UtilaBackofficeWalletService).

    Index

    Constructors

    Methods

    • Parameters

      • Optionalinput: {
            ids?: string[];
            page?: number;
            pageSize?: number;
            statuses?: ("ACTIVE" | "DISABLED")[];
        }
        • Optionalids?: string[]

          External ids (bow_…) to filter by.

        • Optionalpage?: number
        • OptionalpageSize?: number
        • Optionalstatuses?: ("ACTIVE" | "DISABLED")[]

      Returns Promise<
          {
              ok: true;
              value: {
                  hasNext: boolean;
                  items: BackofficeWalletConfig[];
                  total: number;
              };
          },
      >