This repository has been archived by the owner on Apr 9, 2023. It is now read-only.
forked from SavageCabbagee/Crabada-Bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbot.js
259 lines (259 loc) · 23.8 KB
/
bot.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
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
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const sdk_1 = require("@traderjoe-xyz/sdk");
const ethers_1 = require("ethers");
let TeleBot = require("telebot");
require('dotenv').config();
const KEY = String(process.env.KEY);
const WALLET = new ethers_1.ethers.Wallet(KEY);
const AVALANCHE = new ethers_1.ethers.providers.JsonRpcProvider("https://api.avax.network/ext/bc/C/rpc");
const CONNECTION = WALLET.connect(AVALANCHE);
const CRABADA = "0x82a85407BD612f52577909F4A58bfC6873f14DA8";
const ADDRESS = String(process.env.ADDRESS);
const CRABS = String(process.env.TEAMS).split(",");
const TELEGRAM = String(process.env.TELEGRAM);
const API = String(process.env.API);
const USERNAME = String(process.env.USERNAME);
const tokenABI = [{ "inputs": [], "name": "symbol", "outputs": [{ "internalType": "string", "name": "", "type": "string" }], "stateMutability": "view", "type": "function" }, { "inputs": [{ "internalType": "address", "name": "account", "type": "address" }], "name": "balanceOf", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }];
const routerABI = [{ "inputs": [{ "internalType": "address", "name": "_factory", "type": "address" }, { "internalType": "address", "name": "_WAVAX", "type": "address" }], "stateMutability": "nonpayable", "type": "constructor" }, { "inputs": [], "name": "WAVAX", "outputs": [{ "internalType": "address", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" }, { "inputs": [{ "internalType": "address", "name": "tokenA", "type": "address" }, { "internalType": "address", "name": "tokenB", "type": "address" }, { "internalType": "uint256", "name": "amountADesired", "type": "uint256" }, { "internalType": "uint256", "name": "amountBDesired", "type": "uint256" }, { "internalType": "uint256", "name": "amountAMin", "type": "uint256" }, { "internalType": "uint256", "name": "amountBMin", "type": "uint256" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }], "name": "addLiquidity", "outputs": [{ "internalType": "uint256", "name": "amountA", "type": "uint256" }, { "internalType": "uint256", "name": "amountB", "type": "uint256" }, { "internalType": "uint256", "name": "liquidity", "type": "uint256" }], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [{ "internalType": "address", "name": "token", "type": "address" }, { "internalType": "uint256", "name": "amountTokenDesired", "type": "uint256" }, { "internalType": "uint256", "name": "amountTokenMin", "type": "uint256" }, { "internalType": "uint256", "name": "amountAVAXMin", "type": "uint256" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }], "name": "addLiquidityAVAX", "outputs": [{ "internalType": "uint256", "name": "amountToken", "type": "uint256" }, { "internalType": "uint256", "name": "amountAVAX", "type": "uint256" }, { "internalType": "uint256", "name": "liquidity", "type": "uint256" }], "stateMutability": "payable", "type": "function" }, { "inputs": [], "name": "factory", "outputs": [{ "internalType": "address", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" }, { "inputs": [{ "internalType": "uint256", "name": "amountOut", "type": "uint256" }, { "internalType": "uint256", "name": "reserveIn", "type": "uint256" }, { "internalType": "uint256", "name": "reserveOut", "type": "uint256" }], "name": "getAmountIn", "outputs": [{ "internalType": "uint256", "name": "amountIn", "type": "uint256" }], "stateMutability": "pure", "type": "function" }, { "inputs": [{ "internalType": "uint256", "name": "amountIn", "type": "uint256" }, { "internalType": "uint256", "name": "reserveIn", "type": "uint256" }, { "internalType": "uint256", "name": "reserveOut", "type": "uint256" }], "name": "getAmountOut", "outputs": [{ "internalType": "uint256", "name": "amountOut", "type": "uint256" }], "stateMutability": "pure", "type": "function" }, { "inputs": [{ "internalType": "uint256", "name": "amountOut", "type": "uint256" }, { "internalType": "address[]", "name": "path", "type": "address[]" }], "name": "getAmountsIn", "outputs": [{ "internalType": "uint256[]", "name": "amounts", "type": "uint256[]" }], "stateMutability": "view", "type": "function" }, { "inputs": [{ "internalType": "uint256", "name": "amountIn", "type": "uint256" }, { "internalType": "address[]", "name": "path", "type": "address[]" }], "name": "getAmountsOut", "outputs": [{ "internalType": "uint256[]", "name": "amounts", "type": "uint256[]" }], "stateMutability": "view", "type": "function" }, { "inputs": [{ "internalType": "uint256", "name": "amountA", "type": "uint256" }, { "internalType": "uint256", "name": "reserveA", "type": "uint256" }, { "internalType": "uint256", "name": "reserveB", "type": "uint256" }], "name": "quote", "outputs": [{ "internalType": "uint256", "name": "amountB", "type": "uint256" }], "stateMutability": "pure", "type": "function" }, { "inputs": [{ "internalType": "address", "name": "tokenA", "type": "address" }, { "internalType": "address", "name": "tokenB", "type": "address" }, { "internalType": "uint256", "name": "liquidity", "type": "uint256" }, { "internalType": "uint256", "name": "amountAMin", "type": "uint256" }, { "internalType": "uint256", "name": "amountBMin", "type": "uint256" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }], "name": "removeLiquidity", "outputs": [{ "internalType": "uint256", "name": "amountA", "type": "uint256" }, { "internalType": "uint256", "name": "amountB", "type": "uint256" }], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [{ "internalType": "address", "name": "token", "type": "address" }, { "internalType": "uint256", "name": "liquidity", "type": "uint256" }, { "internalType": "uint256", "name": "amountTokenMin", "type": "uint256" }, { "internalType": "uint256", "name": "amountAVAXMin", "type": "uint256" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }], "name": "removeLiquidityAVAX", "outputs": [{ "internalType": "uint256", "name": "amountToken", "type": "uint256" }, { "internalType": "uint256", "name": "amountAVAX", "type": "uint256" }], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [{ "internalType": "address", "name": "token", "type": "address" }, { "internalType": "uint256", "name": "liquidity", "type": "uint256" }, { "internalType": "uint256", "name": "amountTokenMin", "type": "uint256" }, { "internalType": "uint256", "name": "amountAVAXMin", "type": "uint256" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }], "name": "removeLiquidityAVAXSupportingFeeOnTransferTokens", "outputs": [{ "internalType": "uint256", "name": "amountAVAX", "type": "uint256" }], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [{ "internalType": "address", "name": "token", "type": "address" }, { "internalType": "uint256", "name": "liquidity", "type": "uint256" }, { "internalType": "uint256", "name": "amountTokenMin", "type": "uint256" }, { "internalType": "uint256", "name": "amountAVAXMin", "type": "uint256" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }, { "internalType": "bool", "name": "approveMax", "type": "bool" }, { "internalType": "uint8", "name": "v", "type": "uint8" }, { "internalType": "bytes32", "name": "r", "type": "bytes32" }, { "internalType": "bytes32", "name": "s", "type": "bytes32" }], "name": "removeLiquidityAVAXWithPermit", "outputs": [{ "internalType": "uint256", "name": "amountToken", "type": "uint256" }, { "internalType": "uint256", "name": "amountAVAX", "type": "uint256" }], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [{ "internalType": "address", "name": "token", "type": "address" }, { "internalType": "uint256", "name": "liquidity", "type": "uint256" }, { "internalType": "uint256", "name": "amountTokenMin", "type": "uint256" }, { "internalType": "uint256", "name": "amountAVAXMin", "type": "uint256" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }, { "internalType": "bool", "name": "approveMax", "type": "bool" }, { "internalType": "uint8", "name": "v", "type": "uint8" }, { "internalType": "bytes32", "name": "r", "type": "bytes32" }, { "internalType": "bytes32", "name": "s", "type": "bytes32" }], "name": "removeLiquidityAVAXWithPermitSupportingFeeOnTransferTokens", "outputs": [{ "internalType": "uint256", "name": "amountAVAX", "type": "uint256" }], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [{ "internalType": "address", "name": "tokenA", "type": "address" }, { "internalType": "address", "name": "tokenB", "type": "address" }, { "internalType": "uint256", "name": "liquidity", "type": "uint256" }, { "internalType": "uint256", "name": "amountAMin", "type": "uint256" }, { "internalType": "uint256", "name": "amountBMin", "type": "uint256" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }, { "internalType": "bool", "name": "approveMax", "type": "bool" }, { "internalType": "uint8", "name": "v", "type": "uint8" }, { "internalType": "bytes32", "name": "r", "type": "bytes32" }, { "internalType": "bytes32", "name": "s", "type": "bytes32" }], "name": "removeLiquidityWithPermit", "outputs": [{ "internalType": "uint256", "name": "amountA", "type": "uint256" }, { "internalType": "uint256", "name": "amountB", "type": "uint256" }], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [{ "internalType": "uint256", "name": "amountOut", "type": "uint256" }, { "internalType": "address[]", "name": "path", "type": "address[]" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }], "name": "swapAVAXForExactTokens", "outputs": [{ "internalType": "uint256[]", "name": "amounts", "type": "uint256[]" }], "stateMutability": "payable", "type": "function" }, { "inputs": [{ "internalType": "uint256", "name": "amountOutMin", "type": "uint256" }, { "internalType": "address[]", "name": "path", "type": "address[]" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }], "name": "swapExactAVAXForTokens", "outputs": [{ "internalType": "uint256[]", "name": "amounts", "type": "uint256[]" }], "stateMutability": "payable", "type": "function" }, { "inputs": [{ "internalType": "uint256", "name": "amountOutMin", "type": "uint256" }, { "internalType": "address[]", "name": "path", "type": "address[]" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }], "name": "swapExactAVAXForTokensSupportingFeeOnTransferTokens", "outputs": [], "stateMutability": "payable", "type": "function" }, { "inputs": [{ "internalType": "uint256", "name": "amountIn", "type": "uint256" }, { "internalType": "uint256", "name": "amountOutMin", "type": "uint256" }, { "internalType": "address[]", "name": "path", "type": "address[]" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }], "name": "swapExactTokensForAVAX", "outputs": [{ "internalType": "uint256[]", "name": "amounts", "type": "uint256[]" }], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [{ "internalType": "uint256", "name": "amountIn", "type": "uint256" }, { "internalType": "uint256", "name": "amountOutMin", "type": "uint256" }, { "internalType": "address[]", "name": "path", "type": "address[]" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }], "name": "swapExactTokensForAVAXSupportingFeeOnTransferTokens", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [{ "internalType": "uint256", "name": "amountIn", "type": "uint256" }, { "internalType": "uint256", "name": "amountOutMin", "type": "uint256" }, { "internalType": "address[]", "name": "path", "type": "address[]" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }], "name": "swapExactTokensForTokens", "outputs": [{ "internalType": "uint256[]", "name": "amounts", "type": "uint256[]" }], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [{ "internalType": "uint256", "name": "amountIn", "type": "uint256" }, { "internalType": "uint256", "name": "amountOutMin", "type": "uint256" }, { "internalType": "address[]", "name": "path", "type": "address[]" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }], "name": "swapExactTokensForTokensSupportingFeeOnTransferTokens", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [{ "internalType": "uint256", "name": "amountOut", "type": "uint256" }, { "internalType": "uint256", "name": "amountInMax", "type": "uint256" }, { "internalType": "address[]", "name": "path", "type": "address[]" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }], "name": "swapTokensForExactAVAX", "outputs": [{ "internalType": "uint256[]", "name": "amounts", "type": "uint256[]" }], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [{ "internalType": "uint256", "name": "amountOut", "type": "uint256" }, { "internalType": "uint256", "name": "amountInMax", "type": "uint256" }, { "internalType": "address[]", "name": "path", "type": "address[]" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "deadline", "type": "uint256" }], "name": "swapTokensForExactTokens", "outputs": [{ "internalType": "uint256[]", "name": "amounts", "type": "uint256[]" }], "stateMutability": "nonpayable", "type": "function" }, { "stateMutability": "payable", "type": "receive" }];
const USDC_token = new ethers_1.ethers.Contract('0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664', tokenABI, AVALANCHE);
const TUS_token = new ethers_1.ethers.Contract('0xf693248F96Fe03422FEa95aC0aFbBBc4a8FdD172', tokenABI, AVALANCHE);
const CRA_token = new ethers_1.ethers.Contract('0xA32608e873F9DdEF944B24798db69d80Bbb4d1ed', tokenABI, AVALANCHE);
const WAVAX = new sdk_1.Token(43114, '0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7', 18, "WAVAX", "Wrapped AVAX");
const USDC = new sdk_1.Token(43114, '0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664', 6, "USDC", "USDC");
const TUS = new sdk_1.Token(43114, '0xf693248F96Fe03422FEa95aC0aFbBBc4a8FdD172', 18, "TUS", "TUS");
const CRA = new sdk_1.Token(43114, '0xA32608e873F9DdEF944B24798db69d80Bbb4d1ed', 18, "CRA", "CRA");
const traderJOE = new ethers_1.ethers.Contract('0x60aE616a2155Ee3d9A68541Ba4544862310933d4', routerABI, AVALANCHE);
var mining = false;
var running = false;
var ii = 0;
var TEAMS = [];
CRABS.forEach((id, index) => {
let team = {
id: id,
index: index,
mining: false,
close: ""
};
TEAMS.push(team);
});
function mine() {
if (running) {
if (!mining) {
if (ii < TEAMS.length) {
start(TEAMS[ii])
.then(() => {
ii++;
})
.catch((err) => {
console.log(`Err: ${err}`);
})
.finally(() => {
mine();
});
}
else {
mining = true;
ii = 0;
var timer = setTimeout(() => { mine(); }, 14450000);
}
}
else {
if (ii < TEAMS.length) {
close(TEAMS[ii])
.then(() => {
ii++;
})
.catch((err) => {
console.log(`Err: ${err}`);
})
.finally(() => {
mine();
});
}
else {
mining = false;
ii = 0;
mine();
}
}
}
}
function start(team) {
return __awaiter(this, void 0, void 0, function* () {
let transaction = {
data: team.id,
to: CRABADA,
value: 0,
from: ADDRESS,
};
let txn = (yield CONNECTION.sendTransaction(transaction));
let hash = txn.hash;
let receipt = yield AVALANCHE.waitForTransaction(String(hash));
let game = receipt.logs[0].data.slice(2, 66);
TEAMS[ii].close = '0x2d6ef310' + game;
let URL = 'https://snowtrace.io/tx/' + (hash);
bot.sendMessage(TELEGRAM, `Game Started (Team ${ii + 1})\n${URL}`);
});
}
function close(team) {
return __awaiter(this, void 0, void 0, function* () {
let transaction = {
data: team.close,
to: CRABADA,
value: 0,
from: ADDRESS,
};
let txn = (yield CONNECTION.sendTransaction(transaction));
let hash = txn.hash;
let receipt = yield AVALANCHE.waitForTransaction(String(hash));
let URL = 'https://snowtrace.io/tx/' + (hash);
bot.sendMessage(TELEGRAM, `Game Closed (Team ${ii + 1})\n${URL}`);
});
}
function getWalletBalance() {
return __awaiter(this, void 0, void 0, function* () {
let USDC_balance = (yield USDC_token.balanceOf(ADDRESS));
let TUS_balance = (yield TUS_token.balanceOf(ADDRESS));
let CRA_balance = (yield CRA_token.balanceOf(ADDRESS));
return [String(USDC_balance), String(TUS_balance), String(CRA_balance)];
});
}
function checkTradePrice(amount, token) {
return __awaiter(this, void 0, void 0, function* () {
let WAVAXUSDCPair = yield sdk_1.Fetcher.fetchPairData(WAVAX, USDC, AVALANCHE);
let WAVAXTUSPair = yield sdk_1.Fetcher.fetchPairData(WAVAX, TUS, AVALANCHE);
let WAVAXCRAPair = yield sdk_1.Fetcher.fetchPairData(WAVAX, CRA, AVALANCHE);
let route;
let amountIn = amount.toString();
if (token == 'TUS') {
token = TUS;
route = new sdk_1.Route([WAVAXTUSPair, WAVAXUSDCPair], TUS);
}
else if (token == 'CRA') {
token = CRA;
route = new sdk_1.Route([WAVAXCRAPair, WAVAXUSDCPair], CRA);
}
let trade = new sdk_1.Trade(route, new sdk_1.TokenAmount(token, amountIn), sdk_1.TradeType.EXACT_INPUT, 43114);
let slippageTolerance = new sdk_1.Percent("50", "10000");
let amountOutMin = trade.minimumAmountOut(slippageTolerance).raw;
let value = trade.inputAmount.raw;
console.log(Number(amountOutMin));
return ([amountOutMin, value]);
});
}
function tradeonAVAX(amountIn, amountOutMin, path, gas) {
return __awaiter(this, void 0, void 0, function* () {
let router = traderJOE.connect(CONNECTION);
let to = ADDRESS;
let deadline = Math.floor(Date.now() / 1000) + 60 * 3;
console.log('amountin', amountIn);
if (gas === false) {
let txn = yield router.swapExactTokensForTokens(amountIn, amountOutMin, path, to, deadline);
yield txn.wait();
}
else {
let txn = yield router.swapExactTokensForAVAX(amountIn, amountOutMin, path, to, deadline);
yield txn.wait();
}
});
}
function swapTUS() {
return __awaiter(this, void 0, void 0, function* () {
let [USDC_balance, TUS_balance, CRA_balance] = yield getWalletBalance();
console.log(TUS_balance);
let [amountOutMin, value] = yield checkTradePrice(String(TUS_balance), 'TUS');
console.log((TUS_balance));
yield tradeonAVAX(TUS_balance, String(amountOutMin), ['0xf693248F96Fe03422FEa95aC0aFbBBc4a8FdD172', '0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7', '0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664'], false);
});
}
function swapCRA() {
return __awaiter(this, void 0, void 0, function* () {
let [USDC_balance, TUS_balance, CRA_balance] = yield getWalletBalance();
let [amountOutMin, value] = yield checkTradePrice(String(CRA_balance), 'CRA');
yield tradeonAVAX(CRA_balance, String(amountOutMin), ['0xA32608e873F9DdEF944B24798db69d80Bbb4d1ed', '0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7', '0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664'], false);
});
}
function swapforGas() {
return __awaiter(this, void 0, void 0, function* () {
let [USDC_balance, TUS_balance, CRA_balance] = yield getWalletBalance();
let [amountOutMin, value] = yield checkTradePrice(String(Number(TUS_balance) * 0.1), 'TUS');
yield tradeonAVAX(String(Number(TUS_balance) * 0.1), String(amountOutMin), ['0xf693248F96Fe03422FEa95aC0aFbBBc4a8FdD172', '0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7'], true);
});
}
function displayBalance() {
return __awaiter(this, void 0, void 0, function* () {
let [USDC_balance, TUS_balance, CRA_balance] = yield getWalletBalance();
let USDCbalance = Number(USDC_balance) / 10 ** 6;
let TUSbalance = Number(TUS_balance) / 10 ** 18;
let CRAbalance = Number(CRA_balance) / 10 ** 18;
bot.sendMessage(TELEGRAM, `USDC Balance:${USDCbalance}\nTUS Balance:${TUSbalance}\nCRA Balance:${CRAbalance}`).catch(error => console.log(error));
});
}
let bot = new TeleBot(API);
bot.on('/start', (msg) => {
if (String(msg.from.username).toLowerCase() === String(USERNAME).toLowerCase()) {
if (!running) {
running = true;
mine();
}
}
else {
bot.sendMessage(TELEGRAM, `Error: No Access`).catch(error => console.log(error));
}
});
bot.on('/pause', (msg) => {
if (String(msg.from.username).toLowerCase() === String(USERNAME).toLowerCase()) {
if (running) {
running = false;
}
}
else {
bot.sendMessage(TELEGRAM, `Error: No Access`).catch(error => console.log(error));
}
});
bot.on('/swapTUS', (msg) => {
if (String(msg.from.username).toLowerCase() === String(USERNAME).toLowerCase()) {
swapTUS();
displayBalance();
}
else {
bot.sendMessage(TELEGRAM, `Error: No Access`).catch(error => console.log(error));
}
});
bot.on('/swapCRA', (msg) => {
if (String(msg.from.username).toLowerCase() === String(USERNAME).toLowerCase()) {
swapCRA();
displayBalance();
}
else {
bot.sendMessage(TELEGRAM, `Error: No Access`).catch(error => console.log(error));
}
});
bot.on('/swapgas', (msg) => {
if (String(msg.from.username).toLowerCase() === String(USERNAME).toLowerCase()) {
swapforGas();
displayBalance();
}
else {
bot.sendMessage(TELEGRAM, `Error: No Access`).catch(error => console.log(error));
}
});
bot.on('/balance', (msg) => {
if (String(msg.from.username).toLowerCase() === String(USERNAME).toLowerCase()) {
displayBalance();
}
else {
bot.sendMessage(TELEGRAM, `Error: No Access`).catch(error => console.log(error));
}
});
bot.start();