This builds on top of the "Create A New Campaign" guide and expects that you've already created a campaign via the Pass On dApp. Follow this guide to quickly get your campaign live ⚡️
We're continuing to build out our platform & are grateful for your patience while we build out fully automated campaign setups (where this manual implementation step is no longer necessary) 🧪
Note: this step is not a requirement for you! You can contact the Pass On team at contact@passon.io with your requirements and we'll be happy to implement this script for you!
Context & Overview
Purpose
Here at Pass On we're iterating towards a fully automated, omni-chain referral campaign solution. Currently you, the brands, can create referral campaigns in the Pass On dApp but must wait for the Pass On team to finalise the configuration of the campaign before it goes live.
We're proposing an intermediate solution to allow you, the brands, to get your campaigns live immediately (i.e. without waiting for us to finalise configuration).
The approach involves coding but is relatively simple and should take a junior software developer <0.5 day to complete.
Approach
To process referral rewards automatically, 2 pieces are required:
A campaign with at least 1 rule
This guide assumes you have already completed this first step (otherwise see Create A New Campaign).
A script which identifies rewardable actions for your campaign and pushes them into our system.
This "Campaign Actions Script" is designed to run periodically, its logic following the sequence below:
The script first fetches data about your campaign from the Pass On API, including data about the campaign's rules and the list of users who have registered as referees.
The rules data is then parsed using the rules' data source properties* to fetch events data for the relevant smart contract on the given network/chain.
data source properties = 'contractAddress', 'eventName' and 'chainId'
This events data is then filtered to identify rewardable actions (using the rules' criteria and the campaign's list of registered referees).
This rewardable actions data is pushed into our system via the Pass On API.