From 830beab3e7571b3550c15b533564bb419e70a001 Mon Sep 17 00:00:00 2001 From: Mitja Belak Date: Wed, 23 Oct 2024 17:14:28 +0200 Subject: [PATCH] Lowered entrance fee --- src/RaidGeld.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RaidGeld.sol b/src/RaidGeld.sol index 67d7ece..e6843cc 100644 --- a/src/RaidGeld.sol +++ b/src/RaidGeld.sol @@ -25,7 +25,7 @@ struct Player { contract RaidGeld is ERC20, Ownable { uint8 constant DECIMALS = 4; - uint256 public constant BUY_IN_AMOUNT = 0.0005 ether; + uint256 public constant BUY_IN_AMOUNT = 0.00005 ether; uint256 public constant INITIAL_GELD = 50 * 10 ** DECIMALS; uint256 public constant RAID_WAIT = 15 seconds;