forked from AlmostEfficient/FaucetBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
87 lines (74 loc) · 2.87 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
const { Client, Collection, Intents } = require('discord.js');
const { token, cooldown, approvedRoles } = require('./config.json');
const fs = require('fs');
const isAddress = require('./utils/address');
const client = new Client({ intents: [Intents.FLAGS.GUILDS] });
const Keyv = require('keyv');
const keyv = new Keyv();
client.commands = new Collection();
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
const eventFiles = fs.readdirSync('./events').filter(file => file.endsWith('.js'));
for (const file of commandFiles) {
const command = require(`./commands/${file}`);
client.commands.set(command.data.name, command);
}
for (const file of eventFiles) {
const event = require(`./events/${file}`);
if (event.once) {
client.once(event.name, (...args) => event.execute(...args));
}
else {
client.on(event.name, (...args) => event.execute(...args));
}
}
client.on('interactionCreate', async interaction => {
if (!interaction.isCommand()) return;
const command = client.commands.get(interaction.commandName);
if (!command) return;
// Rate limiting and cooldowns for faucet requests
if (command.data.name === 'faucet') {
const address = interaction.options.get('address').value.trim();
if (!isAddress(address)) {
return interaction.reply('Please enter a valid Ethereum Address');
}
// If the last transaction was less than 15 seconds ago, disallow to prevent nonce reuse (no concurrent transactions ATM)
const lastTx = await keyv.get('lastTx');
if (lastTx > Date.now() - 15000) {
const timeLeft = 15000 - (Date.now() - lastTx);
return interaction.reply(`Please wait 15 seconds between requests to prevent nonce issues. Try again in ${timeLeft / 1000}s.`);
}
if (!approvedRoles.some(role => interaction.member.roles.cache.has(role))) {
const lastRequested = await keyv.get(interaction.user.id);
if (lastRequested) {
if (Date.now() - lastRequested < cooldown) {
const timeLeft = Math.floor(((cooldown - (Date.now() - lastRequested)) / 1000) / 60);
return interaction.reply(`You can only request funds once every 60 minutes. Please try again in ${timeLeft} minutes.`);
}
}
}
}
try {
await command.execute(interaction);
if (command.data.name === 'faucet') {
// If not an approved role, set the last requested time
if (!approvedRoles.some(role => interaction.member.roles.cache.has(role))) {
await keyv.set(interaction.user.id, Date.now());
}
await keyv.set('lastTx', Date.now());
}
}
catch (error) {
console.error(error);
await interaction.reply({ content: 'There was an error while executing this command!', ephemeral: true });
}
});
for (const file of eventFiles) {
const event = require(`./events/${file}`);
if (event.once) {
client.once(event.name, (...args) => event.execute(...args));
}
else {
client.on(event.name, (...args) => event.execute(...args));
}
}
client.login(token);