forked from TrendingTechnology/Pancakeswap_BSC_Sniper_Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sniper.py
423 lines (378 loc) · 17.6 KB
/
Sniper.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
from style import style
from halo import Halo
from time import sleep
import json
import argparse
from txns import TXN
import requests
ascii = """
______ ___
/_ __/________ _____/ (_)___ ____ _
/ / / ___/ __ `/ __ / / __ \/ __ `/
/ / / / / /_/ / /_/ / / / / / /_/ /
/_/_/_/__ \__,_/\__,_/_/_/ /_/\__, /
/_ __(_)___ ____ _________/____/
/ / / / __ `/ _ \/ ___/ ___/
/ / / / /_/ / __/ / (__ )
/_/ /_/\__, /\___/_/ /____/
/____/
"""
parser = argparse.ArgumentParser(
description='Set your Token and Amount example: "sniper.py -t 0x34faa80fec0233e045ed4737cc152a71e490e2e3 -a 0.2"')
parser.add_argument(
'-t', '--token', help='str, Token for snipe e.g. "-t 0x34faa80fec0233e045ed4737cc152a71e490e2e3"')
parser.add_argument('-a', '--amount', default=0,
help='float, Amount in Bnb to snipe e.g. "-a 0.1"')
parser.add_argument('-tx', '--txamount', default=1, nargs="?", const=1, type=int,
help='int, how mutch tx you want to send? It Split your BNB Amount in e.g. "-tx 5"')
parser.add_argument('-sp', '--sellpercent', default=100, nargs="?", const=1, type=int,
help='int, how mutch tokens you want to sell? Percentage e.g. "-sp 80"')
parser.add_argument('-hp', '--honeypot', default=False, action="store_true",
help='Check if your token to buy is a Honeypot, e.g. "-hp" or "--honeypot"')
parser.add_argument('-nb', '--nobuy', action="store_true",
help='No Buy, Skipp buy, if you want to use only TakeProfit/StopLoss/TrailingStopLoss')
parser.add_argument('-tp', '--takeprofit', default=0, nargs="?", const=True,
type=int, help='int, Percentage TakeProfit from your input BNB amount "-tp 50" ')
parser.add_argument('-sl', '--stoploss', default=0, nargs="?", const=True, type=int,
help='int, Percentage Stop loss from your input BNB amount "-sl 50" ')
parser.add_argument('-tsl', '--trailingstoploss', default=0, nargs="?", const=True,
type=int, help='int, Percentage Trailing-Stop-loss from your first Quote "-tsl 50" ')
parser.add_argument('-wb', '--awaitBlocks', default=0, nargs="?", const=True,
type=int, help='int, Await Blocks before sending BUY Transaction "-wb 5" ')
parser.add_argument('-cmt', '--checkMaxTax', action="store_true",
help='get Token Tax and check if its higher.')
parser.add_argument('-cc', '--checkcontract', action="store_true",
help='Check is Contract Verified and Look for some Functions.')
parser.add_argument('-so', '--sellonly', action="store_true",
help='Sell all your Tokens from given address')
parser.add_argument('-bo', '--buyonly', action="store_true",
help='Buy Tokens with from your given amount')
parser.add_argument('-cl', '--checkliquidity', action="store_true",
help='with this arg you use liquidityCheck')
parser.add_argument('-r', '--retry', default=3, nargs="?", const=True, type=int,
help='with this arg you retry automatically if your tx failed, e.g. "-r 5" or "--retry 5" for max 5 Retrys')
parser.add_argument('-sec', '--SwapEnabledCheck', action="store_true",
help='this argument disabled the SwapEnabled Check!')
args = parser.parse_args()
class SniperBot():
def __init__(self):
self.parseArgs()
self.settings = self.loadSettings()
self.SayWelcome()
def loadSettings(self):
with open("Settings.json", "r") as settings:
settings = json.load(settings)
return settings
def SayWelcome(self):
self.TXN = TXN(self.token, self.amountForSnipe)
print(style().YELLOW + ascii + style().RESET)
print(style().GREEN + """Attention, You pay a 0.7% Tax on your swap amount if you dont hold 1k TIGS!""" + style().RESET)
print(style().GREEN +
"Start Sniper Tool with following arguments:" + style().RESET)
print(style().BLUE + "---------------------------------" + style().RESET)
print(style().YELLOW + "Amount for Buy:", style().GREEN +
str(self.amount) + " BNB" + style().RESET)
print(style().YELLOW + "Token to Interact :",
style().GREEN + str(self.token) + style().RESET)
print(style().YELLOW + "Token Name:",
style().GREEN + str(self.TXN.get_token_Name()) + style().RESET)
print(style().YELLOW + "Token Symbol:",
style().GREEN + str(self.TXN.get_token_Symbol()) + style().RESET)
print(style().YELLOW + "Transaction to send:",
style().GREEN + str(self.tx) + style().RESET)
print(style().YELLOW + "Amount per transaction :", style().GREEN +
str("{0:.8f}".format(self.amountForSnipe)) + style().RESET)
print(style().YELLOW + "Await Blocks before buy :",
style().GREEN + str(self.wb) + style().RESET)
if self.tsl != 0:
print(style().YELLOW + "Trailing Stop loss Percent :",
style().GREEN + str(self.tsl) + style().RESET)
if self.tp != 0:
print(style().YELLOW + "Take Profit Percent :",
style().GREEN + str(self.tp) + style().RESET)
if self.sl != 0:
print(style().YELLOW + "Stop loss Percent :",
style().GREEN + str(self.sl) + style().RESET)
print(style().BLUE + "---------------------------------" + style().RESET)
def parseArgs(self):
self.token = args.token
if self.token == None:
print(
style.RED+"Please Check your Token argument e.g. -t 0x34faa80fec0233e045ed4737cc152a71e490e2e3")
print("exit!")
raise SystemExit
self.amount = args.amount
if args.nobuy != True:
if not args.sellonly:
if self.amount == 0:
print(style.RED+"Please Check your Amount argument e.g. -a 0.01")
print("exit!")
raise SystemExit
self.tx = args.txamount
self.amountForSnipe = float(self.amount) / float(self.tx)
self.hp = args.honeypot
self.wb = args.awaitBlocks
self.tp = args.takeprofit
self.sl = args.stoploss
self.tsl = args.trailingstoploss
self.cl = args.checkliquidity
self.stoploss = 0
self.takeProfitOutput = 0
def calcProfit(self):
if self.amountForSnipe == 0.0:
self.amountForSnipe = self.TXN.getOutputTokenToBNB(percent=args.sellpercent)[
0] / (10**18)
a = ((self.amountForSnipe * self.tx) * self.tp) / 100
b = a + (self.amountForSnipe * self.tx)
return b
def calcloss(self):
if self.amountForSnipe == 0.0:
self.amountForSnipe = self.TXN.getOutputTokenToBNB(percent=args.sellpercent)[
0] / (10**18)
a = ((self.amountForSnipe * self.tx) * self.sl) / 100
b = (self.amountForSnipe * self.tx) - a
return b
def calcNewTrailingStop(self, currentPrice):
a = (currentPrice * self.tsl) / 100
b = currentPrice - a
return b
def awaitBuy(self):
spinner = Halo(text='await Buy', spinner='dots')
spinner.start()
for i in range(self.tx):
spinner.start()
self.TXN = TXN(self.token, self.amountForSnipe)
tx = self.TXN.buy_token(args.retry)
spinner.stop()
print(tx[-1])
if tx[0] != True:
raise SystemExit
def awaitSell(self):
spinner = Halo(text='await Sell', spinner='dots')
spinner.start()
self.TXN = TXN(self.token, self.amountForSnipe)
tx = self.TXN.sell_tokens(args.sellpercent)
spinner.stop()
print(tx[1])
if tx[0] != True:
raise SystemExit
def awaitApprove(self):
spinner = Halo(text='await Approve', spinner='dots')
spinner.start()
self.TXN = TXN(self.token, self.amountForSnipe)
tx = self.TXN.approve()
spinner.stop()
print(tx[1])
if tx[0] != True:
raise SystemExit
def awaitBlocks(self):
spinner = Halo(text='await Blocks', spinner='dots')
spinner.start()
waitForBlock = self.TXN.getBlockHigh() + self.wb
while True:
sleep(0.13)
if self.TXN.getBlockHigh() > waitForBlock:
spinner.stop()
break
print(style().GREEN+"[DONE] Wait Blocks finish!")
def CheckVerifyCode(self):
while True:
req = requests.get(
f"https://api.bscscan.com/api?module=contract&action=getsourcecode&address={self.token}&apikey=YourApiKeyToken")
if req.status_code == 200:
getsourcecode = req.text.lower()
jsonSource = json.loads(getsourcecode)
if not "MAX RATE LIMIT REACHED".lower() in str(jsonSource["result"]).lower():
if not "NOT VERIFIED".lower() in str(jsonSource["result"]).lower():
print("[CheckContract] IS Verfied")
for BlackWord in self.settings["cc_BlacklistWords"]:
if BlackWord.lower() in getsourcecode:
print(
style().RED+f"[CheckContract] BlackWord {BlackWord} FOUND, Exit!")
raise SystemExit
print(style().GREEN +
"[CheckContract] No known abnormalities found.")
break
else:
print(
style().RED+"[CheckContract] Code Not Verfied, Can't check, Exit!")
raise SystemExit
else:
print("Max Request Rate Reached, Sleep 5sec.")
sleep(5)
continue
else:
print("BSCScan.org Request Faild, Exiting.")
raise SystemExit
def awaitLiquidity(self):
spinner = Halo(text='await Liquidity', spinner='dots')
spinner.start()
while True:
sleep(0.07)
try:
self.TXN.fetchOutputBNBtoToken()[0]
spinner.stop()
break
except Exception as e:
if "UPDATE" in str(e):
print(e)
raise SystemExit
continue
print(style().GREEN+"[DONE] Liquidity is Added!" + style().RESET)
def fetchLiquidity(self):
liq = self.TXN.getLiquidityUSD()[1]
print(style().GREEN+"[LIQUIDTY] Current Token Liquidity:",
round(liq, 3), "USD" + style().RESET)
if float(liq) < float(self.settings["MinLiquidityUSD"]):
print(style.RED+"[LIQUIDTY] <- TO SMALL, EXIT!")
raise SystemExit
return True
def awaitEnabledBuy(self):
spinner = Halo(text='await Dev Enables Swapping', spinner='dots')
spinner.start()
while True:
sleep(0.07)
try:
if self.TXN.checkifTokenBuyDisabled() == True:
spinner.stop()
break
except Exception as e:
if "UPDATE" in str(e):
print(e)
raise SystemExit
continue
print(style().GREEN+"[DONE] Swapping is Enabeld!" + style().RESET)
def awaitMangePosition(self):
highestLastPrice = 0
if self.tp != 0:
self.takeProfitOutput = self.calcProfit()
if self.sl != 0:
self.stoploss = self.calcloss()
TokenBalance = round(self.TXN.get_token_balance(), 5)
while True:
try:
sleep(0.9)
LastPrice = float(
self.TXN.getOutputTokenToBNB(args.sellpercent)[0] / (10**18))
if self.tsl != 0:
if LastPrice > highestLastPrice:
highestLastPrice = LastPrice
self.TrailingStopLoss = self.calcNewTrailingStop(
LastPrice)
if LastPrice < self.TrailingStopLoss:
print(style().GREEN +
"[TRAILING STOP LOSS] Triggert!" + style().RESET)
self.awaitSell()
break
if self.takeProfitOutput != 0:
if LastPrice >= self.takeProfitOutput:
print()
print(style().GREEN +
"[TAKE PROFIT] Triggert!" + style().RESET)
self.awaitSell()
break
if self.stoploss != 0:
if LastPrice <= self.stoploss:
print()
print(style().GREEN +
"[STOP LOSS] Triggert!" + style().RESET)
self.awaitSell()
break
msg = str("Token Balance: " + str("{0:.5f}".format(
TokenBalance)) + " | CurrentOutput: "+str("{0:.7f}".format(LastPrice))+"BNB")
if self.stoploss != 0:
msg = msg + " | Stop loss below: " + \
str("{0:.7f}".format(self.stoploss)) + "BNB"
if self.takeProfitOutput != 0:
msg = msg + "| Take Profit Over: " + \
str("{0:.7f}".format(self.takeProfitOutput)) + "BNB"
if self.tsl != 0:
msg = msg + " | Trailing Stop loss below: " + \
str("{0:.7f}".format(self.TrailingStopLoss)) + "BNB"
print(msg, end="\r")
except Exception as e:
if KeyboardInterrupt:
raise SystemExit
print(
style().RED + f"[ERROR] {str(e)},\n\nSleeping now 30sec and Reinit RPC!" + style().RESET)
sleep(30)
self.TXN = TXN(self.token, self.amountForSnipe)
continue
print(style().GREEN +
"[DONE] Position Manager Finished!" + style().RESET)
def StartUP(self):
self.TXN = TXN(self.token, self.amountForSnipe)
if args.sellonly:
print("Start SellOnly, for selling tokens!")
self.awaitApprove()
if args.SwapEnabledCheck == True:
self.awaitEnabledBuy()
if args.sellpercent > 0 and args.sellpercent < 100:
print(self.TXN.sell_tokens(args.sellpercent)[1])
else:
percent = int(input("Enter Percent you want to sell: "))
print(self.TXN.sell_tokens(percent)[1])
raise SystemExit
if args.buyonly:
print(
f"Start BuyOnly, buy now with {self.amountForSnipe}BNB tokens!")
print(self.TXN.buy_token(args.retry)[1])
raise SystemExit
if args.nobuy != True:
self.awaitLiquidity()
if args.SwapEnabledCheck == True:
self.awaitEnabledBuy()
if args.checkcontract:
self.CheckVerifyCode()
if self.hp == True:
try:
honeyTax = self.TXN.checkToken()
print(style().YELLOW + "Checking Token..." + style().RESET)
if honeyTax[2] == True:
print(style.RED + "Token is Honeypot, exiting")
raise SystemExit
elif honeyTax[2] == False:
print(style().GREEN +
"[DONE] Token is NOT a Honeypot!" + style().RESET)
except Exception as e:
self.i = input(
style().RED+"Error in HoneyPot Check, HIGH Risk to enter a Honeypot!\n" + style().GREEN + " Exiting? y/n \n > " + style().RESET)
if self.i.lower() == "y":
raise SystemExit
if args.checkMaxTax == True:
try:
honeyTax = self.TXN.checkToken()
print(style.GREEN + "[TOKENTAX] Current Token BuyTax:",
honeyTax[0], "%" + style.RESET)
print(style.GREEN + "[TOKENTAX] Current Token SellTax:",
honeyTax[1], "%" + style.RESET)
if honeyTax[1] > self.settings["MaxSellTax"]:
print(style().RED+"Token SellTax exceeds Settings.json, exiting!")
raise SystemExit
if honeyTax[0] > self.settings["MaxBuyTax"]:
print(style().RED+"Token BuyTax exceeds Settings.json, exiting!")
raise SystemExit
except Exception as e:
if self.i:
if self.i.lower() == "y":
raise SystemExit
else:
self.i = input(
style().RED+"Error in Token Tax Check, HIGH Risk to enter a Honeypot!\n" + style().GREEN + "Exiting? y/n \n > " + style().RESET)
if self.i.lower() == "y":
raise SystemExit
if self.wb != 0:
self.awaitBlocks()
if self.cl == True:
if self.fetchLiquidity() != False:
pass
if args.nobuy != True:
self.awaitBuy()
# Give the RPC/WS some time to Index your address nonce, make it higher if " ValueError: {'code': -32000, 'message': 'nonce too low'} "
if self.tsl != 0 or self.tp != 0 or self.sl != 0:
sleep(7)
self.awaitApprove()
self.awaitMangePosition()
print(style().GREEN +
"[DONE] TradingTigers Sniper Bot finish!" + style().RESET)
SniperBot().StartUP()