-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
112 lines (93 loc) · 2.75 KB
/
index.ts
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
import TelegramBot from "node-telegram-bot-api";
import { connectDatabase } from "./config/db";
import { createUser, hasUser } from "./service/userService";
import { IK_START, getIKSnipe } from "./components/inlineKeyboard";
import { messageHandler } from "./bot/message.handler";
import { callbackQueryHandler } from "./bot/callbackquery.handler";
import fs from "fs";
import dotenv from "dotenv";
dotenv.config();
const TELEGRAM_BOT_TOKEN = process.env.TELEGRAM_BOT_TOKEN;
const BotMenu = [
{
command: "start",
description: "💥 Start",
},
{
command: "setting",
description: "⚙️ setting",
},
{
command: "position",
description: "💰 Position",
},
{
command: "referral",
description: "📊 Referral Stats",
},
{ command: "help", description: "❓ Help" },
];
const bot = new TelegramBot(TELEGRAM_BOT_TOKEN!, {
polling: true,
webHook: false,
onlyFirstMatch: true,
filepath: false,
});
const userSnipeConfig = new Map();
const startBot = () => {
// Connect Database
connectDatabase();
bot.setMyCommands(BotMenu);
bot.onText(/^\/start$/, async (msg: TelegramBot.Message) => {
console.log("🚀 input start cmd:");
const chatId = msg.chat.id;
let user;
const existingUser = await hasUser(chatId);
if (existingUser) {
console.log("User already exist: ", chatId);
user = existingUser;
}
else {
console.log("New User: ", chatId);
const userChat = msg.chat;
user = await createUser({
userid: userChat.id,
username: userChat.username,
first_name: userChat.first_name,
last_name: userChat.last_name
});
}
// Snipe Config Init
let snipe_config:any = {
token: null,
slippage: 50,
snipe_fee: 0.005,
snipe_tip: 0.005,
tp: null,
sl: null,
snipe_amount: null,
};
userSnipeConfig.set(chatId, snipe_config);
const image = fs.createReadStream("./public/sniper.jpg");
const caption = `Welcome to <b>Lucky Sniper</b> Bot!✨\n⬇You can deposit SOL to your wallet and start sniping!🔍\n\n💰Your Wallet:\n<code>${user.public_key}</code>`;
await bot.sendPhoto(msg.chat.id, image, {
parse_mode: "HTML",
caption: caption,
reply_markup: {
inline_keyboard: IK_START,
},
});
});
bot.onText(/^\/snipe/, async (msg: TelegramBot.Message) => {
});
bot.on("message", (msg: TelegramBot.Message) => {
console.log("message handler");
// bot.sendMessage(msg.chat.id, "hhhhhhhh");
messageHandler(bot, msg, userSnipeConfig);
});
bot.on("callback_query", async (cb_query: TelegramBot.CallbackQuery) => {
console.log("callback_query handler");
callbackQueryHandler(bot, cb_query, userSnipeConfig);
});
};
startBot();