Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lower discount level threshold #637

Closed
DylanVerstraete opened this issue Mar 10, 2023 · 2 comments
Closed

Lower discount level threshold #637

DylanVerstraete opened this issue Mar 10, 2023 · 2 comments
Assignees
Labels
type_feature New feature or request

Comments

@DylanVerstraete
Copy link
Contributor

Currently these discount levels are implemented

    // https://wiki.threefold.io/#/threefold__grid_pricing
    let discount_received = match discount_level.floor().to_num::<u64>() {
        d if d >= 3 && d < 6 => types::DiscountLevel::Default,
        d if d >= 6 && d < 12 => types::DiscountLevel::Bronze,
        d if d >= 12 && d < 36 => types::DiscountLevel::Silver,
        d if d >= 36 => types::DiscountLevel::Gold,
        _ => types::DiscountLevel::None,
    };

All discount thresholds should be halfed

@DylanVerstraete DylanVerstraete added the type_feature New feature or request label Mar 10, 2023
@DylanVerstraete DylanVerstraete added this to the 2.4.0 milestone Mar 10, 2023
@renauter
Copy link
Collaborator

renauter commented Mar 10, 2023

these manual link should be updated once in mainnet:

@mohamedamer453
Copy link

Verified form #638
The discount levels were lowered to half as originally mentioned in the issue.

Manual still not updated with the new prices and should be updated in threefoldtecharchive/info_manual3#164 once it's released on mainnet.

Will also check the pricing calculator available in the dashboard to verify if it will need updates regarding this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type_feature New feature or request
Projects
No open projects
Status: Done
Development

No branches or pull requests

3 participants