Xefers - Privacy-First Referral Rewards on the BTTC Blockchain

@SimbadMarino is it okay for that person to talk with people like that? I am just reviewing all projects and putting my feedbacks with respect (you can read all of my comments). And that guy is using offensive words and plus talking like that

huh bruh why are you teasing me :sob: :sob: .i just said if you have any questions or feedback then ask here ,otherwise dont fight here .Why you over complicating things.

Everytime I tag admin, you become more polite, otherwise you are just ready to talk rude anytime. Nvm

1 Like

My all comments are there already admins can read them and decide who is talking rudely ok :slight_smile:

btw leave that topic means to leave that chatGpt topic and ask questions and feedbacks about the project thats what i meant . Dont act like a little kid here plz :slight_smile:

5 Likes

Are you kidding? Saying something rude and trying to make it look like you said something innocent. Either be kind or stay behind of your words! We are stopping discussion and you are putting new words by editing your text

what is it?

1 Like

Two Primary Components of xefers.sol

  1. Campaign Creation
    The creator deploys the smart contract and sets up a referral campaign by invoking the following function in the constructor:

    /// @notice Constructor to create a new referral campaign
    constructor(
        uint256 campaignId,
        string memory _title,
        uint256 _referralReward,
        IERC20 _token,
        uint256 _tokenReward,
        string memory _redirectUrl
    ) {
        require(
            campaigns[campaignId].owner == address(0),
            "Campaign ID already exists"
        );
    
        campaigns[campaignId] = CampaignMetadata({
            title: _title,
            redirectUrl: _redirectUrl,
            owner: msg.sender,
            referralReward: _referralReward,
            token: _token,
            tokenReward: _tokenReward
        });
    }
    
  2. Claiming a Referral

    Users can complete a transaction by claiming a referral, receiving rewards as set by the campaign creator in either native currency or ERC-20 tokens:

    function makeReferral(uint256 campaignId) external {
        require(!hasBeenReferred[campaignId][msg.sender], "User has already been referred for this campaign");
        
        CampaignMetadata memory campaign = campaigns[campaignId];
    
        // Mark the sender as referred
        hasBeenReferred[campaignId][msg.sender] = true;
    
        // Increment the referral count
        referralCount[campaignId] += 1;
    
        uint256 reward = campaign.referralReward;
        uint256 tokenReward = campaign.tokenReward;
    
        // Pay out ETH/BTT reward
        if (reward > 0) {
            require(address(this).balance >= reward, "Insufficient contract balance for ETH reward");
            payable(msg.sender).transfer(reward);
        }
    
        // Pay out Token reward
        if (tokenReward > 0 && address(campaign.token) != address(0)) {
            require(campaign.token.balanceOf(address(this)) >= tokenReward, "Insufficient token balance for reward");
            campaign.token.transfer(msg.sender, tokenReward);
        }
    
        // Emit event for successful referral
        emit ReferralSuccessful(campaignId, campaign.owner, msg.sender, campaign.redirectUrl);
    }
    

What innovative features does Xefers offer to enhance user privacy and security in referral programs, and how does it utilize blockchain technology to ensure transparency and fair reward distribution?
@ferrari

4 Likes

welcome to heckathon S7! Great project! I like the idea of a secure referral system that protects user privacy. Using blockchain and smart contracts is smart for fairness and transparency. The steps for testing are clear and helpful.

Some ideas for improvement:

  1. Add notifications and charts to track performance.
  2. Expand the rewards or campaign options.
    3.Keep the interface simple and user-friendly.
    Overall, it’s a solid project with good potential. Keep up the good work
1 Like

Hey community members!

@Gordian @Prince-Onscolo @Smart1 @arman @Darkness @WindsOfChange92 @adeel @Nweke-nature1.com @manfred_jr @fabsltsa @Youngyuppie @Nana66419 @maaz @ines_valerie @kishan1729 @admin.hackathon @Akainuu @Fortunate @aziztron @Okorie
@Eric @Relate101 @Genz210

We are inviting you to all test our project by following the given test instructions.

Here is our website Xefers

If you face any type of difficulty feel free to watch the demo video Here , We are eagerly waiting for your feedback!

10 Likes

Yeh its already in our milestones , Did you test the project , Make sure to test it out!

3 Likes

thanks for the mention @ferrari , the project looks interesting and different from other projects. i insist you to update the milestones and add your project social as those are important things for judges. apart from that all looks good :hugs:

I also welcome you to checkout our projects in integration track renthub and on builder track codehive v2 and provide a short feedback on the posts.

thanks ! :v:

3 Likes

@ferrari ,
Is it possible.for you to make it mobile responsive ?

2 Likes

Thanks for Prompt feedback :slight_smile:

Yeh would be happy to check !

2 Likes

Hey can you try testing out using pc or laptop? We will make it responsive later , as its not the main concern to focus for now. We are now focusing on more technical implementation and logic rather than making responsive :slight_smile:

Thank you for your response ,
Can you share your underdevelopment features ?

1 Like

That’s awesome to hear it’s part of your milestones!

2 Likes

thank you @ferrari. the both projects are developers centric. you will love it :hugs:

2 Likes

:rocket: Great work this month! I just liked your project, and I’d love your support for ours too. Voting starts tomorrow, let’s finish strong together! :muscle:

1 Like

okay ! Lets support each other :slight_smile: Did you try our app?

Interesting project nice website!

Not sure what is your target audience for this and how you will monetize it but interesting concept if you want to make the referral process transparent!

3 Likes