forked from automainint/sea-offers-bot-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
offers.js
361 lines (276 loc) · 7.37 KB
/
offers.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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
'use strict';
const { isNullOrUndefined } = require('util');
const { appendFileSync } = require('fs')
const yargs = require('yargs');
const arg_input_file = yargs.argv.file || 'list.txt';
const arg_config = yargs.argv.config || 'config.json';
const arg_output = yargs.argv.output || 'log.txt';
const arg_verbose = !!yargs.argv.verbose;
const arg_printinfo = !!yargs.argv.printinfo;
const arg_seaverb = !!yargs.argv.seaverb;
var line_count = 0;
function print_log(text) {
if (arg_verbose) {
console.log(text);
}
appendFileSync(arg_output, `${text}\n`);
}
function print_sea_log(text) {
if (arg_seaverb) {
print_log(
'\n OpenSea: ' +
`${text}`.replace('\n', '\n '));
}
}
function print_error(error) {
const text = error.message ? `Error: ${error.message}` : `${error}`;
if (arg_verbose) {
console.error(text);
}
appendFileSync(arg_output, `${text}\n`);
}
function read_config() {
const { readFileSync } = require('fs');
try {
var data = JSON.parse(readFileSync(arg_config));
data.is_infura = !!data.infura_key;
data.node_key = data.infura_key || data.alchemy_key;
if (!data.delay) {
data.delay = 1000;
}
if (!data.expiration) {
data.expiration = 24;
}
if (!data.exit_timeout) {
data.exit_timeout = 2000;
}
if (data.expiration == 0) {
data.exp_time = 0;
data.exp_str = 'never';
} else {
data.exp_time = Math.round(Date.now() / 1000 + 60 * 60 * data.expiration);
data.exp_str = `${data.expiration} hours`;
}
if (!data.monitoring_delay) {
data.monitoring_delay = 1000;
}
return data;
} catch (error) {
print_error(error);
}
return {};
}
print_log('Init config...');
const cfg = read_config();
function check_cfg() {
let ok = true;
if (!cfg.network) {
print_log('Missing network name.');
ok = false;
}
if (!cfg.mnemonic) {
print_log('Missing MetaMask mnemonic.');
ok = false;
}
if (!cfg.node_key) {
print_log('Missing blockchain node API key.');
ok = false;
}
if (!cfg.wallet_address) {
print_log('Missing wallet address.');
ok = false;
}
if (!cfg.delay) {
print_log('Missing delay.');
ok = false;
}
if (!cfg.expiration) {
print_log('Missing expiration time.');
ok = false;
}
if (!cfg.exit_timeout) {
print_log('Missing exit timeout.')
ok = false;
}
return ok;
}
function init_seaport() {
try {
const opensea = require('opensea-js');
const hdwallet_provider = require('@truffle/hdwallet-provider');
const network_name = cfg.network === 'mainnet' || cfg.network === 'live' ? 'mainnet' : 'rinkeby';
const providerEngine = new hdwallet_provider({
mnemonic: {
phrase: cfg.mnemonic
},
providerOrUrl: cfg.is_infura
? 'https://' + network_name + '.infura.io/v3/' + cfg.node_key
: 'https://eth-' + network_name + '.alchemyapi.io/v2/' + cfg.node_key
});
var api_config = {
networkName:
cfg.network === 'mainnet' || cfg.network === 'live'
? opensea.Network.Main
: opensea.Network.Rinkeby,
apiKey: cfg.opensea_key
};
if (cfg.gas_price) {
api_config.gasPrice = cfg.gas_price;
}
return new opensea.OpenSeaPort(
providerEngine,
api_config,
(arg) => print_sea_log(arg)
);
} catch (error) {
print_error(error);
}
return null;
}
if (!check_cfg()) {
return;
}
print_log('Init OpenSea SDK...');
const seaport = init_seaport();
if (isNullOrUndefined(seaport)) {
return;
}
function parse_asset(n, line) {
const words = line
.replace(/\s\s*/g, ' ')
.replace(/^\s*/g, '')
.replace(/\s*$/g, '')
.split(' ');
if (!words || words.length == 0) {
return [];
}
if (words.length > 2) {
print_log(` Invalid asset on line ${n}: ${line}`);
return [];
}
let temp = words[0].replace(/^.*0x/, '0x');
const address = temp.replace(/\/.*/, '');
const id = temp.replace(/.*\//, '');
if (!address && address.length == 0) {
print_log(` Invalid asset on line ${n}: ${line}`);
return [];
}
if (!id && id.length == 0) {
print_log(` Invalid asset on line ${n}: ${line}`);
return [];
}
if (words.length != 2) {
print_log(` Invalid asset on line ${n}: ${line}`);
return [];
}
const price = parseFloat(words[1].replace(',', '.'));
if (isNaN(price)) {
print_log(` Invalid asset on line ${n}: ${line}`);
return [];
}
return [address, id, price];
}
async function make_offer(n, address, id, price) {
if (!seaport) {
print_log(' Fatal error: No SeaPort.');
return;
}
try {
if (arg_printinfo) {
const asset = await seaport.api.getAsset({
tokenAddress: address,
tokenId: id
});
print_log('');
print_log(JSON.stringify(asset, null, 2));
} else {
print_log(
`\n ${n} Processing...` +
`\n Address: ${address}` +
`\n Id: ${id}` +
`\n Price: ${price}`);
const offer = await seaport.createBuyOrder({
asset: {
tokenId: id,
tokenAddress: address
},
accountAddress: cfg.wallet_address,
expirationTime: cfg.exp_time,
startAmount: price
});
print_log(
`\n * ${n} Offer succeed.` +
`\n Address: ${address}` +
`\n Id: ${id}` +
`\n Price: ${price}`);
}
line_count--;
} catch (error) {
if (cfg.monitoring_enabled) {
print_log(` ${n} Request failed. Trying again...`);
setTimeout(make_offer, cfg.monitoring_delay, n, address, id, price);
} else if (error.message && error.message.includes('API Error 429')) {
print_log(` ${n} Request was throttled. Trying again...`);
setTimeout(make_offer, cfg.delay, n, address, id, price);
} else {
print_log(` ! ${n} Request failed. Internal error due processing.`);
print_error(error);
line_count--;
}
}
}
async function process_line(n, line) {
if (!line || line.length == 0) {
line_count--;
return;
}
const info = parse_asset(n, line);
if (!info || info.length != 3) {
line_count--;
return;
}
const [address, id, price] = info;
print_log(
`\n ${n} Scheduling...` +
`\n Address: ${address}` +
`\n Id: ${id}` +
`\n Price: ${price}`);
await make_offer(n, address, id, price);
}
async function process_exit() {
process.exit(0);
}
async function process_done() {
if (line_count <= 0) {
print_log('\nDone.\n');
setTimeout(process_exit, cfg.exit_timeout);
} else {
setTimeout(process_done, cfg.exit_timeout);
}
}
async function process_file(arg_input_file) {
const { createReadStream } = require('fs');
const { createInterface } = require('readline');
try {
const fileStream = createReadStream(arg_input_file);
const rl = createInterface({
input: fileStream,
crlfDelay: Infinity
});
let i = 0;
for await (const line of rl) {
line_count++;
setTimeout(process_line, cfg.delay * i, i + 1, line);
i++;
}
setTimeout(process_done, cfg.delay * i + cfg.exit_timeout);
} catch (error) {
print_error(error);
setTimeout(process_done, cfg.exit_timeout);
}
}
async function main() {
print_log(`Starting. Delay per line: ${cfg.delay} ms.\n`);
await process_file(arg_input_file);
}
main();