-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
301 lines (234 loc) · 9.38 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
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
import readline from 'readline-sync';
import {DirectSecp256k1HdWallet} from "@cosmjs/proto-signing";
import {seiFunctionBot} from "./seibot.js";
import {readFileSync} from "fs";
import fs from "fs";
import {getQueryClient} from "@sei-js/core";
import {
checkEligibilityInfo,
checkGiftsInfo, revealGifts,
} from "./sendingGifts.js";
import {sendPostRequest, sendPostRequestToMint} from "./httpFunctions.js";
import {getFunds} from "./captcha.js";
const content = readFileSync("mnemonics.txt", 'utf-8');
const mnemonics = content.split(/\r?\n/);
const contentWithBoxes = readFileSync("mnemonicsGettingGift.txt", 'utf-8');
const mnemonicsWithBoxes = contentWithBoxes.split(/\r?\n/);
const restEndPoint = 'https://rest.atlantic-2.seinetwork.io/';
const queryClient = await getQueryClient(restEndPoint);
const writeOutMnemonics = () => {
mnemonics.forEach(element => console.log(element));
}
// Функция для получения адреса кошелька по мнемонике
const getAddressFromMnemonic = async (mnemonic) => {
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { prefix: 'sei' });
const [firstWallet] = await wallet.getAccounts();
return firstWallet.address;
};
// Функция для вывода всех адресов кошельков в консоль
const writeOutAddresses = async () => {
const addresses = await Promise.all(mnemonics.map(mnemonic => getAddressFromMnemonic(mnemonic)));
console.log('All Addresses:');
addresses.forEach(address => console.log(address));
const fileId = fs.openSync("allAddresses.txt", "w");
fs.truncateSync("allAddresses.txt");
addresses.forEach((address) => {
fs.writeSync(fileId, address + "\r\n", null, "utf8");
console.log(address);
});
fs.closeSync(fileId);
};
const writeOutAddressesToSend = async () => {
const addresses = await Promise.all(mnemonics.map(mnemonic => getAddressFromMnemonic(mnemonic)));
console.log('All Addresses to send:');
const fileId = fs.openSync("addressesToSend.txt", "w");
fs.truncateSync("addressesToSend.txt");
addresses.forEach((address,index) => {
if (index % 2 !== 0) {
fs.writeSync(fileId, address + "\r\n", null, "utf8");
console.log(address);
}
});
fs.closeSync(fileId);
};
const claimFromFaucet = async () => {
const addresses = await Promise.all(mnemonics.map(mnemonic => getAddressFromMnemonic(mnemonic)));
for(let i=0;i<addresses.length-1;i+=2) {
const wallet1Balances = await queryClient.cosmos.bank.v1beta1
.allBalances({address: addresses[i]});
const wallet2Balances = await queryClient.cosmos.bank.v1beta1
.allBalances({address: addresses[i+1]});
const wallet1SeiBalance = wallet1Balances.balances.find(token => token.denom === 'usei')?.amount || '0';
const wallet2SeiBalance = wallet2Balances.balances.find(token => token.denom === 'usei')?.amount || '0';
if ((parseInt(wallet1SeiBalance)+parseInt(wallet2SeiBalance) < 100000)) {
await getFunds(addresses[i]);
}
}
}
const checkBalances = async () => {
const addresses = await Promise.all(mnemonics.map(mnemonic => getAddressFromMnemonic(mnemonic)));
for (const address of addresses) {
try {
const walletBalance = await queryClient.cosmos.bank.v1beta1.allBalances({ address: address });
const walletSeiBalance = walletBalance.balances.find(token => token.denom === 'usei');
console.log(address, ' ', walletSeiBalance.amount);
} catch (err) {
console.log('Error in checking balance ');
}
}
};
const generateMnemonics = async () => {
const numMnemonics = readline.questionInt('Enter the number of mnemonics to generate: ');
const newMnemonics = [];
for (let i = 0; i < numMnemonics; i++) {
const mnemonic = await DirectSecp256k1HdWallet.generate(12, {prefix: 'sei'});
console.log(mnemonic.secret.data);
newMnemonics.push(mnemonic.mnemonic);
}
fs.appendFileSync('mnemonics.txt', '\n' + newMnemonics.join('\n'));
console.log(`Added ${numMnemonics} new mnemonics to mnemonics.txt`);
return newMnemonics;
}
const sendGiftsToNewAddresses = async () => {
const info = await checkEligibilityInfo(mnemonics);
const numMnemonics = info.reduce((summ, info) => {
if (typeof info.giftsToSend === 'number') {
console.log(info.giftsToSend)
return summ+info.giftsToSend
}
return summ
}, 0);
const newMnemonics = [];
for (let i = 0; i <= numMnemonics; i++) {
const mnemonic = await DirectSecp256k1HdWallet.generate(12, {prefix: 'sei'});
newMnemonics.push(mnemonic.mnemonic);
}
fs.appendFileSync('mnemonicsGettingGift.txt', '\n' + newMnemonics.join('\n'));
console.log(`Added ${numMnemonics} new mnemonics to mnemonicsGettingGift.txt`);
let counter = 0;
const sendersFiltered = info.filter(info => info.giftsToSend > 0);
for (let j=0; j<sendersFiltered.length; j++) {
const senderAddress = sendersFiltered[j]?.senderAddress;
if (senderAddress) {
for (let y =0; y < sendersFiltered[j].giftsToSend; y++) {
try {
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(
newMnemonics[counter],
{prefix: 'sei'}
);
const [firstAccountWallet1] = await wallet.getAccounts();
const recipientAddress = firstAccountWallet1.address;
await sendPostRequest(senderAddress, recipientAddress);
await new Promise(resolve => setTimeout(resolve, 1500));
counter++;
} catch (err) {
console.log(`Error occurred in for: ${err.message}`)
}
}
}
}
}
const mintGiftsInFile = async (mintMnemonic) => {
for (let t=0; t<mintMnemonic.length; t++) {
try {
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(
mintMnemonic[t],
{prefix: 'sei'}
);
const [firstAccountWallet1] = await wallet.getAccounts();
const senderAddress = firstAccountWallet1.address;
await sendPostRequestToMint(senderAddress);
} catch (err) {
console.log(`Error occurred in minting gifts: ${err.message}`);
}
}
}
const checkForGifts = async () => {
const info = await checkEligibilityInfo(mnemonics);
let counter = 0;
info.map(wallet => {
const {senderAddress, transactions, giftsToSend} = wallet;
if (typeof giftsToSend === "number") {
counter = counter + giftsToSend;
}
console.log(`Address: ${senderAddress} transactions: ${transactions}, gifts available: ${giftsToSend}`);
});
console.log(`Total gifts: ${counter}`);
}
while (true) {
console.log('------------Helping functions----------------');
console.log('1. Write all mnemonics');
console.log('2. Write all addresses');
console.log('3. Write into file addresses to send');
console.log('4. Check Balances');
console.log('5. Generate new mnemonics');
console.log(' ');
console.log('----------------Bot start--------------------');
console.log('6. Faucet request');
console.log('7. Start bot for Treasure Hunt');
console.log('8. Start everyday bot (NOT WORKING NOW!!)');
console.log(' ');
console.log('--------------Gifts functions----------------');
console.log('9. Check Eligibility for sending gifts');
console.log('10. Send Gifts To New generated Wallets');
console.log('11. Mint Gifts from mnemonicsGettingGift.txt');
console.log('12. Check Gifts status');
console.log('13. Check points and rarity Gifts');
console.log(' ');
console.log('---------------------------------------------');
console.log('14. Exit');
const choice = readline.question('Choose menu number: ');
switch (parseInt(choice)) {
case 1:
writeOutMnemonics();
break;
case 2:
await writeOutAddresses();
break;
case 3:
await writeOutAddressesToSend();
break;
case 4:
await checkBalances();
break;
case 5:
await generateMnemonics();
break;
case 6:
await claimFromFaucet();
break;
case 7:
// Реализация запуска бота
try {
await seiFunctionBot(mnemonics);
} catch (err) {
console.log(err);
}
break;
case 8:
// await everydayBot(mnemonics);
break;
case 9:
await checkForGifts();
break;
case 10:
await sendGiftsToNewAddresses(mnemonics);
break;
case 11:
await mintGiftsInFile(mnemonicsWithBoxes);
break;
case 12:
await checkGiftsInfo(mnemonicsWithBoxes);
break;
case 13:
await revealGifts(mnemonicsWithBoxes);
break;
case 14:
console.log('Exiting...');
process.exit(0)
break;
default:
console.log('Invalid choice.');
break;
}
}