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')