Skip to content

Commit 85afea8

Browse files
committed
ads: Fix min credits to 2
1 parent a69dcf5 commit 85afea8

File tree

1 file changed

+1
-1
lines changed
  • web/src/app/api/v1/ads/impression

1 file changed

+1
-1
lines changed

web/src/app/api/v1/ads/impression/_post.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import type { NextRequest } from 'next/server'
1919

2020
// Revenue share: users get 75% of payout as credits
2121
const AD_REVENUE_SHARE = 0.75
22-
const MINIMUM_CREDITS_GRANTED = 0.02
22+
const MINIMUM_CREDITS_GRANTED = 2
2323

2424
// Rate limiting: max impressions per user per hour
2525
const MAX_IMPRESSIONS_PER_HOUR = 60

0 commit comments

Comments
 (0)