Skip to content

The FASTEST crypto Sniper bot in the market, written in Rust

Notifications You must be signed in to change notification settings

tsarbuig/Limit-Sniper-V3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

 

 

How can I buy it?

Join our Telegram channel for more infos: https://t.me/LimitSwap

 

Bot configuration

BUY / SELL PARAMETERS

[parameters]
# Available values: uniswap / pancakeswap / uniswaptestnet / pancakeswaptestnet
exchange = "uniswap"
api_key = "" # Create an account on Etherscan or BSCscan, get your API key in your account settings, and enter it here

[parameters.buy_amount]
kind = "base" # enter "base" to buy a fixed amount of ETH/BNB / or "tokens" to buy a fixed amount of tokens
in_base = "0.001" # used if kind == base --> enter the ETH/BNB buy amount you want to use
in_tokens = "200000000000000000" # used if kind == tokens --> enter the amount of tokens you want to buy. READ CAREFULLY : this amount will be divided by tokens decimals --> 2000000000000000000 = 2 tokens if decimals = 18
amount_of_spam_tx = 1 # number of txs to send in a row, to be sure not to frontrun liquidity. If you use custom contract, only 1 tx will succeed.

# Sells automatically `amount`% of tokens after `profit`% of profit if the current gas price is less than `max_gas`.
[parameters.auto_sell]
enabled = false
profit = 200 # percentage points; automatically sell the token when price has reached buyprice * this value
amount = 100 # percentage points out of 100; sell this amount of tokens
max_gas = 100 # gwei

[parameters.custom_contract]
enabled = false
address = "" # Enter here the contract address that you got after deploying the contract
same_tx_buys = 1 # number of buys to do in the each transaction
use_multiple_wallets = false # set to false to use the main wallet (trading_address) or to true to use the following wallets as recipients.
wallets = [
  "0x1111111111111111111111111111111111111111",
  "0x2222222222222222222222222222222222222222",
]

 

 

Examples of Tx with MULTIBUY modes (with custom contract only)

// Send 5 buys made in tokens to your trading wallet
KIND_OF_SWAP = "base"
in_base = "0.0001"
amount_of_spam_tx = 5
use_multiple_wallets = false

image

// Send 5 buys made in WBNB to your trading wallet
KIND_OF_SWAP = "tokens"
in_base = "1000"
amount_of_spam_tx = 5
use_multiple_wallets = false

image

// Send 3 buys made in WBNB to 3 different wallets
KIND_OF_SWAP = "base"
in_base = "0.0001"
same_tx_buys = 3
use_multiple_wallets = true
wallets = ["0x200E4Fe41faF92C96bd74c711738Ad550175A779", "0x5aa376af6a5d99d051c3f994de26bb5ae234da26", "0xf62803b9f8a146d07b993ad08bda8de91dde8690"],

image

// Sent 3 buys made in tokens to 3 different wallets
KIND_OF_SWAP = "tokens"
in_tokens = "1000000000000000000000"
same_tx_buys = 3
use_multiple_wallets = true
wallets = ["0x200E4Fe41faF92C96bd74c711738Ad550175A779", "0x5aa376af6a5d99d051c3f994de26bb5ae234da26", "0xf62803b9f8a146d07b993ad08bda8de91dde8690"],

image

 

Example : image

About

The FASTEST crypto Sniper bot in the market, written in Rust

Resources

Stars

Watchers

Forks

Packages

No packages published