3οΈβ£Migrating from 2.x to 3.x version
This guide will show you how to migrate from v2 to v3
1. Getting the affiliate tracking links
import { Fuul } from ('@fuul/sdk');
const trackingLinkUrl = Fuul.generateTrackingLink(
baseURL, affiliateAddress)
// Returns
"http://yourwebsite.com?af=<affiliateAddress>"import { Fuul } from ('@fuul/sdk');
const trackingLinkUrl = await Fuul.generateTrackingLink(
baseURL, affiliateAddress)
// Returns
"http://yourwebsite.com?af=<affiliateAddressOrCode>"Last updated