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

    Authoritative writer for b2b.token — the config surface behind /tokens. Emits tokenConfig.* activity rows and self-busts the read snapshot cached by SolanaTokenMintAddressService. The chain is stored as the chain_id FK to b2b.chain; writes bridge the chain key via db.helpers.chainInternalId and reads JOIN back to project the key.

    Index

    Constructors

    Methods

    • Parameters

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

          External ids (tok_…) to filter by.

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

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