From dfeefa01d53a88c27ff9d9716783057009bca6bc Mon Sep 17 00:00:00 2001 From: Alexander Date: Fri, 12 Jul 2024 07:03:53 -0400 Subject: [PATCH] changed default variables back to previous values --- bot-buyer.py | 4 ++-- bot-seller.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bot-buyer.py b/bot-buyer.py index 1e27153..0e5e29f 100755 --- a/bot-buyer.py +++ b/bot-buyer.py @@ -3,11 +3,11 @@ from core import * # set config variables buy_percent_diff_pdai = 20 buy_percent_diff_pusdc = 30 -buy_with_amount_pls = 30000 +buy_with_amount_pls = 10000 slippage_percent = 5 wallet_min_pls = 20000 loop_delay = 3 -rapid_gas_fee_limit = 777777 +rapid_gas_fee_limit = 650000 # load wallet A and set address for logging set_logging(wallet_a_address, 'INFO') diff --git a/bot-seller.py b/bot-seller.py index c297e25..53513a9 100755 --- a/bot-seller.py +++ b/bot-seller.py @@ -2,12 +2,12 @@ from core import * # set config variables sell_percent_diff_affection = 0 -sell_with_amount_affection = 500 +sell_with_amount_affection = 200 slippage_percent = 5 wallet_min_pls = 20000 loop_delay = 3 loop_sell_delay = 10 -rapid_gas_fee_limit = 777777 +rapid_gas_fee_limit = 650000 # load wallet C and set address for logging set_logging(wallet_c_address, 'INFO')