linkReferrer([payload,])

Links a referrer using the provided referral link payload.

Warning - May 25, 2023

This method is deprecated, and will be sunset in upcoming versions of the SDK.

import { ChainvineClient } from '@chainvine/sdk';

const client = new ChainvineClient({
    apiKey: '9dj022didj', //your api key
});

const wallet_address = '0x1234567890';
const referrer = 'ABC2938';
const campaign_id = 'aSlug123';

const res = await client.linkToReferrer({
  campaign_id,
  wallet_address,
  referrer,
});

Payload

ParamRequiredDescription

wallet_address

required

the wallet of the user being referred

referrer

required

the referrer's referral code

slug

optional

the campaign slug to create the link for

Response

void

Last updated