Skip to content

Let the bot calculate SLIPPAGE 🧮

Compare
Choose a tag to compare
@tsarbuig tsarbuig released this 06 Jun 23:49
e24a52b

IMPROVEMENTS LIST

🚀 WalletHunter now gives you the ability to calculate Slippage autonomously 🧮

⚠️ ⚠️ This new mode is NOT compatible if you're copying Sniper wallets, who are buying in same block as AddLiquidity, because it needs liquidity to be mined to calculate slippage ⚠️ ⚠️

New parameter: SLIPPAGE_MODE.

Available values:
- "regular" --> regular slippage, using SLIPPAGE_FOR_BUY/SELL parameters
- "copy_original" --> copy the original slippage value, and add some more eventually with ADDITIONAL_SLIPPAGE_FOR_BUY/SELL parameters

Slippage is set by:.

  • SLIPPAGE_FOR_BUY : "10%", // for SLIPPAGE_MODE : "regular" --> bot will use this slippage for BUY tx
  • SLIPPAGE_FOR_SELL : "20%", // for SLIPPAGE_MODE : "regular" --> bot will use this slippage for SELL tx

 
✅ v0.63.1 : new parameters to give the bot the ability to auto-retry to make a BUY if first Tx failed for INSUFFICIENT_OUTPUT_AMOUNT (slippage too low) reason :

  • AUTO_RETRY_AFTER_BUY_TX_FAIL
  • ADDITIONAL_SLIPPAGE_FOR_AUTO_RETRY_BUY

✅ v0.63.2 : WalletHunter is now able to clone KyberSwap Tx :)

✅ v0.63.2b : lots of new methods cloning implemented

⚠️ v0.63.3 : the new slippage calculation implemented before will NOT work if you're copying Sniper wallets, who are buying in same block as AddLiquidity, because it needs liquidity to be mined to calculate slippage ⚠️ ⚠️
--> I implemented this : if this situation happens, the bot will auto-switch to "copy_original" slippage calculation, like it has always been before

✅ v0.63.3 : new parameter MINIMAL_GASLIMIT to avoid being scammed by fake swap Tx with low GasLimit ending up in failure

✅ v0.63.3 : lots of new methods cloning implemented

✅ v0.63.4 : GAS setting : you can now tell WalletHunter to add a specific number to the original Tx Gas, by writing a "+" in the value.
Example for BSC with Tx_GAS_FOR_BUY : '+2' :

  • original Tx GAS = 10
  • your Tx GAS = 10 + 2 = 12

Example for ETH (EIP 1559) with Tx_GAS_FOR_BUY : '+2' :

  • original Tx Max Gas = 10 / Max Priority = 3
  • your Tx Max Gas = 10 + 2 = 12 / Max Priority = 3 + 2 = 5

✅ v0.63.7 : new parameter MIN_GAS to give you the ability to set a minimal Gas for copying Tx (Nota bene : WalletHunter is already comparing Tx Gas with market Gas to avoid fake Tx with low gas, so it's a second control for you)

✅ v0.63.8 : ANTIRUG new parameters to give the bot the ability to transfer funds to another wallet if you're Blacklisted :

  • TRANSFER_TO_THIS_WALLET_IF_BLACKLISTED
  • CHECK_TRANSFER_TAX_IF_BLACKLISTED
  • MAX_TRANSFER_TAX_IF_BLACKLISTED

✅ v0.63.9 : WalletHunter is now compatible with many, many more custom methods, including the new BananaGun bot

 

BugFixes

✅ v0.63.5 : SLIPPAGE and AUTOSELL fixes when buying with "exotic" liquidity pair, like USDT pair
✅ v0.63.6 : sorry guys I made a mistake in my v0.63.5 fix, this version will be okay
✅ v0.63.8 : another bugfix for "regular" slippage calculation for swapExactTokensForTokens Tx