Add min tip amount, min withdrawal amount and withdrawal fee.

This commit is contained in:
t1amak
2025-05-29 07:49:26 +00:00
parent 7a0fae0d7a
commit 6f14445858
4 changed files with 36 additions and 7 deletions

View File

@@ -12,5 +12,9 @@ return [
'DB_CHARSET' => 'utf8mb4',
'TELEGRAM_BOT_TOKEN' => 'YOUR_TELEGRAM_BOT_TOKEN_HERE',
'IPV4_ONLY' => 1
'IPV4_ONLY' => 1,
'MIN_TIP_AMOUNT' => 0.2,
'MIN_WITHDRAWAL_AMOUNT' => 0.4,
'WITHDRAWAL_FEE' => 0.1
];