Skip to content

Commit

Permalink
Update Diamond membership prices in CHAT (#4885)
Browse files Browse the repository at this point in the history
  • Loading branch information
hpeebles authored Nov 29, 2023
1 parent 3b8bb12 commit f42e963
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions backend/libraries/types/src/diamond_membership.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ impl DiamondMembershipPlanDuration {

pub const fn chat_price_e8s(&self) -> u64 {
match self {
DiamondMembershipPlanDuration::OneMonth => 400_000_000, // 4 CHAT
DiamondMembershipPlanDuration::ThreeMonths => 1_000_000_000, // 10 CHAT
DiamondMembershipPlanDuration::OneYear => 3_000_000_000, // 30 CHAT
DiamondMembershipPlanDuration::Lifetime => 12_000_000_000, // 120 CHAT
DiamondMembershipPlanDuration::OneMonth => 300_000_000, // 3 CHAT
DiamondMembershipPlanDuration::ThreeMonths => 750_000_000, // 7.5 CHAT
DiamondMembershipPlanDuration::OneYear => 2_500_000_000, // 25 CHAT
DiamondMembershipPlanDuration::Lifetime => 10_000_000_000, // 100 CHAT
}
}
}
Expand Down

0 comments on commit f42e963

Please sign in to comment.