-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathetherscan.js
193 lines (184 loc) · 4.9 KB
/
etherscan.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
189
190
191
192
193
// Imports
import dotenv from "dotenv";
dotenv.config();
import { readFile, writeFileSync } from "fs";
import axios from "axios";
import express from "express";
import { scheduleJob } from "node-schedule";
import date from "date-and-time";
const { format } = date;
import { createRequire } from "module";
const require = createRequire(import.meta.url);
const blacklist = require("./blacklist.json");
const sleep = require("util").promisify(setTimeout);
const api = require("etherscan-api").init(process.env.ETHERSCAN_API_KEY);
// Declarations
const wallets = [
// Array of wallet addresses found on etherscan
];
const app = express();
const telegramBotUrl =
"https://api.telegram.org/bot" +
`${process.env.TELEGRAM_API_KEY}` +
"/sendMessage?chat_id=" +
`${process.env.CHANNEL_ID}&text=`;
let serverStart = Math.ceil((Date.now() / 1000).toFixed(1));
let taskRunning = false;
let condition = false;
let status = true;
let res;
console.log(blacklist);
// Functions
function onBlacklist(token) {
condition = false;
for (const el of blacklist) {
if (el == token) {
condition = true;
}
}
return condition;
}
function logError(error) {
const now = new Date();
const time = format(now, "YYYY/MM/DD HH:mm:ss");
const log = { error: error, time: time };
readFile("logs/logs.json", (err, data) => {
if (err) {
status = false;
throw err;
}
let logs = JSON.parse(data);
logs.push(log);
writeFileSync("logs/logs.json", JSON.stringify(logs, null, 2));
});
}
function cacheTransaction(txn) {
readFile("etherscan_transactions.json", (err, data) => {
if (err) {
logError(err);
status = false;
}
let cache = JSON.parse(data);
cache.push(txn);
writeFileSync(
"etherscan_transactions.json",
JSON.stringify(cache, null, 2)
);
});
}
function duplicates(arr, token, address) {
var bool = false;
for (let i = 0; i < arr.length; i++) {
if (arr[i].tokenSymbol == token && arr[i].from == address) {
bool = true;
}
}
if (bool === false) {
console.log("Duplicates not found in function");
} else {
console.log("Duplicates found in function");
}
return bool;
}
function timeConverter(UNIX_timestamp) {
var a = new Date(UNIX_timestamp * 1000);
var months = [
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec",
];
var year = a.getFullYear();
var month = months[a.getMonth()];
var date = a.getDate();
var hour = a.getHours();
var min = a.getMinutes();
var sec = a.getSeconds();
var time =
date + " " + month + " " + year + " " + hour + ":" + min + ":" + sec;
return time;
}
// API
app.get("/status", (req, res) => {
if (status) {
res.send("online");
} else {
res.send("offline");
}
});
app.listen(3000, () => {
console.log("Status API Listening on /status | Port: 3000");
});
// Server
const job = scheduleJob("*/1 * * * *", () => {
if (taskRunning) {
return;
}
taskRunning = true;
console.log("A new Job has started!");
(async () => {
for (let i = 0; i < wallets.length; i++) {
console.log("Checking wallet number: " + i);
try {
var transactions = await api.account.tokentx(
wallets[i],
null,
null,
null,
null,
10,
"desc"
);
} catch (err) {
console.log(err);
logError(err);
status = false;
} finally {
res = transactions.result;
var tokenObj = res.shift();
console.log(tokenObj.from);
console.log(tokenObj.tokenSymbol);
console.log("Server init time: " + serverStart);
console.log("Transaction Time Stamp: " + tokenObj.timeStamp);
if (!duplicates(res, tokenObj.tokenSymbol, tokenObj.from)) {
if (
!onBlacklist(tokenObj.tokenSymbol) &&
tokenObj.timeStamp > serverStart
) {
await axios(
telegramBotUrl +
"There was a new etherscan transaction! \n" +
`Link: https://etherscan.io/tx/${tokenObj.hash}` +
`Time: ${timeConverter(tokenObj.timeStamp)} \n` +
`From: ${tokenObj.from} \n` +
`To: ${tokenObj.to} \n` +
`Symbol: ${tokenObj.tokenSymbol}`
);
cacheTransaction(tokenObj);
if (i == wallets.length - 1) {
console.log("The Job has finished!");
taskRunning = false;
serverStart = Date.now();
}
serverStart = Math.ceil((Date.now() / 1000).toFixed(1));
console.log("Updated server init time: " + serverStart);
}
}
}
console.log("----------------------------------------------------");
if (i == wallets.length - 1) {
console.log("The Job has finished!");
taskRunning = false;
}
await sleep(5000);
}
})();
});