Skip to content

Commit

Permalink
reduce vrf cost from $1 to $0.50 (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
loothero authored Sep 10, 2024
1 parent da6f3a1 commit 58971dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/game/src/game/constants.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const MINIMUM_SCORE_FOR_PAYOUTS: u16 = 64;
const MINIMUM_SCORE_FOR_DEATH_RANK: u16 = 100;
const SECONDS_IN_DAY: u32 = 86400;
const TARGET_PRICE_USD_CENTS: u16 = 300;
const VRF_COST_PER_GAME: u32 = 100000000; // 1$ with 8 decimals
const VRF_COST_PER_GAME: u32 = 50000000; // $0.50 with 8 decimals
const VRF_MAX_CALLBACK_MAINNET: u32 = 10000000; // $0.10
const VRF_MAX_CALLBACK_TESTNET: u32 = 300000000; // $3.00
const PRAGMA_LORDS_KEY: felt252 = 'LORDS/USD'; // felt252 conversion of "LORDS/USD"
Expand Down

0 comments on commit 58971dc

Please sign in to comment.