Skip to content

Commit

Permalink
Increase the minimum prize amount
Browse files Browse the repository at this point in the history
  • Loading branch information
hpeebles committed Jul 25, 2024
1 parent aa09b45 commit 23c9481
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
$: multiUserChat = chat.kind === "group_chat" || chat.kind === "channel";
$: remainingBalance =
draftAmount > 0n ? cryptoBalance - draftAmount - totalFees : cryptoBalance;
$: minAmount = 10n * BigInt(numberOfWinners ?? 0) * transferFees;
$: minAmount = 100n * BigInt(numberOfWinners ?? 0) * transferFees;
$: maxAmount = bigIntMax(cryptoBalance - totalFees, BigInt(0));
$: valid = error === undefined && tokenInputState === "ok" && !tokenChanging;
$: zero = cryptoBalance <= transferFees && !tokenChanging;
Expand Down

0 comments on commit 23c9481

Please sign in to comment.