add more price data

This commit is contained in:
osmannyildiz 2023-12-17 00:08:38 +03:00
parent ab2225852e
commit 44a57410a6
1 changed files with 6 additions and 1 deletions

View File

@ -27,7 +27,12 @@ contract CubLearn is Ownable {
coursePrices["1"] = 300; coursePrices["1"] = 300;
coursePrices["2"] = 500; coursePrices["2"] = 500;
coursePrices["3"] = 200; coursePrices["3"] = 200;
cashbackPercentage = 50; coursePrices["4"] = 150;
coursePrices["5"] = 250;
coursePrices["6"] = 250;
coursePrices["7"] = 450;
cashbackPercentage = 50;
} }
function setCashbackPercentage(uint256 newValue) external onlyOwner { function setCashbackPercentage(uint256 newValue) external onlyOwner {