From 232fc0030c44241af3e25e9b16aa0324acc30d45 Mon Sep 17 00:00:00 2001 From: Theo Date: Sat, 7 Oct 2023 06:41:04 -0700 Subject: [PATCH] Change default parameters in example .env file to actual --- .env.example | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index 31f496b..df5ef67 100644 --- a/.env.example +++ b/.env.example @@ -8,7 +8,7 @@ PORT=8000 # for production REDIS_URL=redis://redis/0 # for development -# REDIS_URL=localhost +# REDIS_URL=redis://127.0.0.1:6379 CHAIN_ID=100 # RPC_URL=https://rpc.gnosischain.com/tornado @@ -24,7 +24,7 @@ MAX_GAS_PRICE=100 # commission for service # transfer fee is a fixed value in ether, 0.01 means 0.01 ether -TRANSFER_SERVICE_FEE=0.000000001 +TRANSFER_SERVICE_FEE=0.00000001 # withdrawal fee is a percentage of the amount, 0.05 means 0.05% -WITHDRAWAL_SERVICE_FEE=0.01 +WITHDRAWAL_SERVICE_FEE=0.05