Usage
The Split SDK offers on-chain referral rewarding methods for use in browser environments. Learn how to add the SDK and utilize its methods.
Initialize Split SDK
With your API key, initialize the SDK to start leveraging its features:
Parameters
apiKey
(*required ﹒string )
apiKey
(*required ﹒string )A required string that authenticates the your app to the Split.
config
(*optional ﹒SplitConfig)
config
(*optional ﹒SplitConfig)
Contains settings such as
referralParam
which defines the query parameter name for the referral code.By default, this parameter is set to
"join"
, but developers can specify a different query parameter name to suit their application's URL structure.Usage Example:
Method
Here is a method provided by the Split SDK.
addReferral(refereeAddress)
Tracking referrals. By passing the wallet address of the referee, this method records a new referral link between the referrer and the referee.
Please trigger this event when a referee connects their wallet and performs on-chain events(transactions) via a referral link.
Parameters
refereeAddress
(*required ﹒string)
refereeAddress
(*required ﹒string)The wallet address of the referee. This address is crucial as it uniquely identifies the new user being referred to the system.
Usage Example:
Last updated