File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ export interface TierConfig {
1010export const SUBSCRIPTION_TIERS = {
1111 100 : {
1212 monthlyPrice : 100 ,
13- creditsPerBlock : 350 ,
13+ creditsPerBlock : 420 ,
1414 blockDurationHours : 5 ,
15- weeklyCreditsLimit : 3500 ,
15+ weeklyCreditsLimit : 4200 ,
1616 } ,
1717 200 : {
1818 monthlyPrice : 200 ,
@@ -22,9 +22,9 @@ export const SUBSCRIPTION_TIERS = {
2222 } ,
2323 500 : {
2424 monthlyPrice : 500 ,
25- creditsPerBlock : 2800 ,
25+ creditsPerBlock : 2940 ,
2626 blockDurationHours : 5 ,
27- weeklyCreditsLimit : 28000 ,
27+ weeklyCreditsLimit : 29400 ,
2828 } ,
2929} as const satisfies Record < number , TierConfig >
3030
Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ const CREDITS_PER_DOLLAR = Object.fromEntries(
4040
4141const USAGE_MULTIPLIER : Record < number , string > = {
4242 100 : '1×' ,
43- 200 : '3 ×' ,
44- 500 : '8 ×' ,
43+ 200 : '2.5 ×' ,
44+ 500 : '7 ×' ,
4545}
4646
4747type ButtonAction = 'subscribe' | 'current' | 'upgrade' | 'downgrade'
You can’t perform that action at this time.
0 commit comments