@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
.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
My all comments are there already admins can read them and decide who is talking rudely ok
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
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?
Two Primary Components of xefers.sol
-
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 }); }
-
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
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:
- Add notifications and charts to track performance.
- 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
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!
Yeh its already in our milestones , Did you test the project , Make sure to test it out!
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
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 !
@ferrari ,
Is it possible.for you to make it mobile responsive ?
Thanks for Prompt feedback
Yeh would be happy to check !
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
Thank you for your response ,
Can you share your underdevelopment features ?
Thatâs awesome to hear itâs part of your milestones!
thank you @ferrari. the both projects are developers centric. you will love it
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!
okay ! Lets support each other 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!