npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

groupfi-chatbox-sdk

v0.0.8

Published

GroupFi Chatbox SDK enables developers to easily integrate GroupFi's chatbox with their dApps on EVM chains, Solana through popular wallet extensions, including `MetaMask`, `OKX Wallet`, `Phantom Wallet`, `Trust Wallet` and so on.

Downloads

7,606

Readme

GroupFi Chatbox SDK

GroupFi Chatbox SDK enables developers to easily integrate GroupFi's chatbox with their dApps on EVM chains, Solana through popular wallet extensions, including MetaMask, OKX Wallet, Phantom Wallet, Trust Wallet and so on.

Features

  • Chatbox-dApp integration via an iframe.
  • API's facilitating Chatbox-dApp interactions.

Integration examples

Get started

For MetaMask SDK, please refer to MetaMask SDK documentation. Other wallet SDKs' work similarly as the MetaMask SDK.

Install the Chatbox SDK in your project's root directory:

pnpm add groupfi-chatbox-sdk

or

npm install groupfi-chatbox-sdk

Usage

The SDK is provided in two build formats: IIFE and ESM

To use the IIFE Build Artifacts in Pure JavaScript

  1. Load the CSS:
    <link rel="stylesheet" href="<path_to_iife>/assets/style.css" />
  2. Load the JavaScript:
    <script src="<path_to_iife>/index.js" async></script>

Ensure to replace <path_to_iife> with the actual path to the IIFE build artifacts of the SDK.

To use the ESM build

  1. Import the CSS file:
    import 'groupfi-chatbox-sdk/dist/esm/assets/style.css';
  2. Import the SDK:
    import ChatboxSDK from 'groupfi-chatbox-sdk'

API Usage

After importing the SDK, loadChatbox API can be called to embed the Chatbox interface

  • loadChatbox:

    ChatboxSDK.loadChatbox(configs: {
      isWalletConnected: boolean
      provider?: any
      theme?: 'light' | 'dark',
      uiConfig?: {
        accent?: 'blue', 'violet' | 'red' | 'orange' | 'yellow' | 'amber' | 'grey'
        title?: string
        subTitle?: string
        logoUrl?: string // The logo will be displayed in a 128px by 128px container
      }
    })

    Parameters:

    • configs (required): An object containing various configuration options
      • isWalletConnected (required): Whether the wallet is connected with the Chatbox.
      • provider (required if isWalletConnected is true): A Wallet Provider is an interface that allows Chatbox to interact with the wallet. If a wallet is connected, a provider must be provided.
      • theme (optional): specifies the theme style for Chatbox. Options include light (light theme) and dark (dark theme). Default theme light.
      • uiConfig (optional): The uiConfig object allows for customization of the Chatbox’s visual elements, including accent color, text, and logo. Each property is optional and modifies specific UI components.
        • accent (optional): Defines the accent color for the Chatbox. Available options are blue, violet, red, orange, yellow, amber, and grey. The default accent color is blue.
        • title (optional): Sets a custom title for the Chatbox. The default title is GroupFi Chatbox.
        • subTitle (optional): Sets a custom subtitle for the Chatbox. The default subtitle is Decentralized Chat, Unified Community.
        • logoUrl (optional): Specifies the URL of the logo image, which will be rendered in a 128x128px container. For optimal display:
          • Use a square image (128x128px or larger) to prevent distortion.
          • Recommended formats: PNG, SVG, or JPEG for the best quality.
          • If the provided image has a different aspect ratio, it will be scaled to fit within the 128px by 128px container, which may result in cropping or resizing.

    Note loadChatbox currently only support Chatbox embedding on a PC but not on a mobile device.

    Listen to the chatbox-ready event triggered by the chatbox to check if the Chatbox has been successfully loaded. Only then is the Chatbox ready for interaction.

    1. Using window.addEventListener:

      window.addEventListener('chatbox-ready', (event: CustomEvent<{
        chatboxVersion: string
      }>) => {
        console.log(`Chatbox is ready with version: ${event.detail.chatboxVersion}`);
      });
    2. Using ChatboxSDK.events.on:

      ChatboxSDK.events.on('chatbox-ready', (data: { chatboxVersion: string }) => {
        console.log(`Chatbox is ready with version: ${data.chatboxVersion}`);
      });
               

Additional API's after the Chatbox has been successfully loaded:

  • removeChatbox: Remove Chatbox from dApp.

    ChatboxSDK.removeChatbox()
  • processWallet: Notify about changes in the wallet, to be called when connecting wallet, disconnecting wallet, or switching wallet.

      ChatboxSDK.processWallet(walletData: {
        isWalletConnected: boolean
        provider?: any
      })

    Parameters:

    • walletData (required): An object containing the wallet information.
      • isWalletConnected (required): Whether the wallet is connected with the Chatbox.
      • provider (required if isWalletConnected is true): A Wallet Provider is an interface that allows Chatbox to interact with the wallet. If a wallet is connected, a provider must be provided.
  • processAccount: Specify which account to interact with, to be called on startup or after switching accounts within the same wallet.

      /**
       * @param {object} data - The data object containing the account information.
       * @param {string} data.account - The new account address to be used by Chatbox.
       */
      ChatboxSDK.processAccount(data: {
        account: string
      })

Note:

  • After loadChatbox or processWallet, processAccount is required if the wallet is in a connected state.
  • When connecting, disconnecting, or switching wallets, processWallet needs to be called.

Based on the above points, here are specific scenarios:

Starting the Chatbox:

  • If the wallet is already connected at startup, call loadChatbox, followed by processAccount.
  • If the wallet is not connected at startup, call loadChatbox with isWalletConnected = false to enter guest mode.

After the Chatbox has started, when the user performs the following actions:

  • Connect wallet: call processWallet, followed by processAccount.
  • Disconnect wallet: call processWallet with isWalletConnected = false.
  • Switch to a different wallet (e.g. from MetaMask to OKX Wallet): call processWallet with a new provider, followed by processAccount with a new account address.
  • Switch accounts within the wallet: simply call processAccount with a new account address.

Request Chatbox to perform certain operations:

  • request:

    /**
      * @param {object} data - The data object containing the method and parameters for the request.
      * @param {string} data.method - The method name of the operation to be performed by Chatbox.
      * @param {Object} data.params - The parameters needed for the method.
      */
    ChatboxSDK.request(data: {
      method: string,
      params: any
    })

    Supported methods currently include:

    • setGroups: Used to specify recommended groups for a dApp

      // Interface representing a group
      // Each group is represented by a unique identifier `groupId`.
      interface IGroup {
        groupId: string
      }
      
      /**
        * Request to set recommended groups for the user's Dapp.
        * @param {object} data - The data object containing the method and parameters for the request.
        * @param {string} data.method - The method name ('setGroups').
        * @param {object} data.params - The parameter object for this method.
        * @param {IGroup[]} [data.params.includes] - Groups to include in recommendations.
        * @param {IGroup[]} [data.params.excludes] - Groups to exclude from all groups.
        * @param {IGroup[]} [data.params.announcement] - Groups to mark as announcement groups. The announcement group has a special style.
        */
      ChatboxSDK.request({
        method: 'setGroups',
        params: {
          includes?: IGroup[],
          excludes?: IGroup[],
          announcement?: IGroup[]
        }
      })

      Example:

      ChatboxSDK.request({
        method: 'setGroups',
        params: {
          // Groups to include in recommendations
          includes: [
            {
              groupId: 'groupfiadmin7ef7bd5f49843d162c869edc56c59ef73e123a872563cdca1f612267696ae3df'
            },
            {
              groupId: 'groupfiGTESTcrab08181a9bbb45f85ce1399009e9bb0c9ad40d965cadd6db33b5b52e53d297998a'
            },
            {
              groupId: 'groupfiGroupedApe3301f18083824e9c9a29093fa96de5ad18845a7d8b0c54b2237ea80aad98c9d4'
            }
          ],
          // Groups designated for announcements
          announcement: [
            {
              groupId: 'groupfiadmin7ef7bd5f49843d162c869edc56c59ef73e123a872563cdca1f612267696ae3df'
            }
          ]
        }
      })

GroupFi Group Lookup Tool

GroupFi provides a service to query the group ID based on the EVM chain ID and the contract address of tokens/NFTs.

    • Service URL: Group Explorer

If the token/NFT you want to add doesn't have a group yet, please contact us to create one:

    • Contact Us: GroupFi Contact

If you want to add many groups to your website, especially different groups on different pages, please use the lookup API below.

Groupfi Group Lookup API

The Groupfi Group Lookup API enables dApp developers to easily retrieve group configurations using an EVM Chain ID and Contract Address, facilitating seamless integration of the Groupfi chatbox with specific groups.

API Endpoint

  • URL: https://api.config.groupfi.ai/api/groupfi/v1/dappquerygroupconfigs
  • Method: POST

Request

To query the group configurations, send a POST request with the following JSON payload:

{
  "contractAddress": "0x544F353C02363D848dBAC8Dc3a818B36B7f9355e",
  "chainId": 148
}

Response

The API returns a JSON array with the group name and group ID associated with the provided Chain ID and Contract Address.

Example Response

[
    {
        "groupName": "Groupfi's test nft group",
        "groupId": "groupfiGroupfi'stestnftgroup441480db9942f0f2929dcaa365fe6f6a9362de4c5eb27daf0c1d9aaf21d198d9"
    }
]

Example Response When No Match is Found

null

Integration

  1. Send Request:

    • Send a POST request to the API endpoint with the contract address and Chain ID in the JSON payload.
  2. Receive Response:

    • Parse the JSON response to extract the group name and group ID.
  3. Use Group ID:

    • Use the retrieved group ID to integrate the Groupfi chatbox with the specific group in your dApp.