@fuul/sdk
TypeScript icon, indicating that this package has built-in type declarations

4.7.4 • Public • Published

Getting started with Fuul SDK

Installation & minimum set up

1. Installation

Run one of the following commands to add Fuul SDK to your project:

Npm:

npm install @fuul/sdk

Yarn:

yarn add @fuul/sdk

2. Set up

Before using the SDK you must initialize it by supplying your Fuul issued API key.

NOTE: Be sure to do this at the root of your app so you have the SDK ready for use just by importing it at the usage point.

import { Fuul } from ('@fuul/sdk');

Fuul.init({ apiKey: "your-fuul-api-key" });

Now you can start sending events.

3. Sending events

For Fuul to attribute conversion events you'll need to report the "pageview" and "connect wallet" events.

Page view event

Projects must send this event every time a user visits a page on their website.

import { Fuul } from ('@fuul/sdk');

await Fuul.sendPageview();

Connect wallet event

Projects must send this event every time users connect a wallet to their website.

NOTE: Make sure to send the event when connecting a wallet for the first time as well as when changing wallets during the session.

import { Fuul } from ('@fuul/sdk');

await Fuul.sendConnectWallet({
  address: "0x12345",
  signature: "0x123485090123",
  message: "Accept affiliate on 18 Aug 2023"
});

/@fuul/sdk/

    Package Sidebar

    Install

    npm i @fuul/sdk

    Weekly Downloads

    604

    Version

    4.7.4

    License

    MIT

    Unpacked Size

    136 kB

    Total Files

    30

    Last publish

    Collaborators

    • systems-fuul