forked from Dikshasoft/pancakeswap-bsc-sniper-bot
-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.js
188 lines (166 loc) · 4.96 KB
/
index.js
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
"use strict";
const { Command } = require('commander');
const env = require("dotenv");
const result = env.config()
if (result.error) {
throw result.error
}
const ethers = require("ethers");
const retry = require("async-retry");
const pcsAbi = new ethers.utils.Interface(require("./abi.json"));
const commander = require('commander');
const program = new commander.Command();
program
.option('-t, --token <type>', 'token contract');
program.parse(process.argv);
const options = program.opts();
const tokens = {
router: "0x10ED43C718714eb63d5aA57B78B54704E256024E",
purchaseAmount: process.env.PURCHASEAMOUNT || "0.01",
pair: [
"0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c",
options.token,
],
GASLIMIT: process.env.GASLIMIT || "1000000",
GASPRICE: process.env.GASPRICE || "5",
buyDelay: 1,
buyRetries: 3,
retryMinTimeout: 250,
retryMaxTimeout: 3000,
deadline: 60,
};
const purchaseAmount = ethers.utils.parseUnits(tokens.purchaseAmount, "ether");
const EXPECTED_PONG_BACK = 30000;
const KEEP_ALIVE_CHECK_INTERVAL = 15000;
let pingTimeout = null;
let keepAliveInterval = null;
let provider;
let wallet;
let account;
let router;
let grasshopper;
const GLOBAL_CONFIG = {
BSC_NODE_WSS: process.env.BSC_NODE_WSS || 'wss://bsc-ws-node.nariox.org:443',
PRIVATE_KEY: process.env.PRIVATE_KEY,
RECIPIENT: process.env.RECIPIENT
};
if (!options.token) {
throw(
"No token has been specified. Please pass a token using -t or --token."
);
}
if (!GLOBAL_CONFIG.PRIVATE_KEY) {
throw(
"The private key was not found in .env. Enter the private key in .env."
);
}
if (!GLOBAL_CONFIG.RECIPIENT) {
throw(
"The public address (RECIPIENT) was not found in .env. Enter your public address in .env."
);
}
async function Wait(seconds) {
return new Promise((resolve) => {
setTimeout(resolve, seconds * 1000);
});
}
const startConnection = () => {
provider = new ethers.providers.WebSocketProvider(GLOBAL_CONFIG.BSC_NODE_WSS);
wallet = new ethers.Wallet(GLOBAL_CONFIG.PRIVATE_KEY);
account = wallet.connect(provider);
router = new ethers.Contract(tokens.router, pcsAbi, account);
grasshopper = 0;
provider._websocket.on("open", () => {
console.log(
`Sniping has started. Watching the txpool for events for token ${options.token}...`
);
tokens.router = ethers.utils.getAddress(tokens.router);
keepAliveInterval = setInterval(() => {
provider._websocket.ping();
pingTimeout = setTimeout(() => {
provider._websocket.terminate();
}, EXPECTED_PONG_BACK);
}, KEEP_ALIVE_CHECK_INTERVAL);
provider.on("pending", async (txHash) => {
provider
.getTransaction(txHash)
.then(async (tx) => {
if (grasshopper === 0) {
console.log("Still watching... Please wait.");
grasshopper = 1;
}
if (tx && tx.to) {
if (tx.to === tokens.router) {
const re1 = new RegExp("^0xf305d719");
if (re1.test(tx.data)) {
const decodedInput = pcsAbi.parseTransaction({
data: tx.data,
value: tx.value,
});
if (
ethers.utils.getAddress(pair[1]) ===
decodedInput.args[0]
) {
provider.off("pending");
await Wait(tokens.buyDelay);
await BuyToken(tx);
}
}
}
}
})
.catch(() => { });
});
});
provider._websocket.on("close", () => {
console.log("WebSocket Closed. Reconnecting...");
clearInterval(keepAliveInterval);
clearTimeout(pingTimeout);
startConnection();
});
provider._websocket.on("error", () => {
console.log("Error. Attemptiing to Reconnect...");
clearInterval(keepAliveInterval);
clearTimeout(pingTimeout);
startConnection();
});
provider._websocket.on("pong", () => {
clearInterval(pingTimeout);
});
};
const BuyToken = async (txLP) => {
const tx = await retry(
async () => {
const amountOutMin = 0;
let buyConfirmation = await router.swapExactETHForTokens(
amountOutMin,
tokens.pair,
process.env.RECIPIENT,
Date.now() + 1000 * tokens.deadline,
{
value: tokens.purchaseAmount,
gasLimit: tokens.gasLimit,
gasPrice: ethers.utils.parseUnits(tokens.gasPrice, "gwei"),
}
);
return buyConfirmation;
},
{
retries: tokens.buyRetries,
minTimeout: tokens.retryMinTimeout,
maxTimeout: tokens.retryMaxTimeout,
onRetry: (err, number) => {
console.log("Buy Failed - Retrying", number);
console.log("Error", err);
if (number === tokens.buyRetries) {
console.log("Sniping has failed...");
process.exit();
}
},
}
);
console.log("Associated LP Event txHash: " + txLP.hash);
console.log("Your [pending] txHash: " + tx.hash);
process.exit();
};
startConnection();