forked from lmajowka/btc-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitcoin-find.js
87 lines (66 loc) · 2.63 KB
/
bitcoin-find.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
import CoinKey from 'coinkey';
import path from 'path';
import { fileURLToPath } from 'url';
import { createRequire } from 'module';
// Helper to get __dirname in ES module
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
// Use createRequire to require the .node file
const require = createRequire(import.meta.url);
const bitcoinKeys = require(path.resolve(__dirname, './build/Release/bitcoin_keys.node'));
import walletsArray from './wallets.js';
import chalk from 'chalk'
import fs from 'fs';
const walletsSet = new Set(walletsArray);
function encontrarBitcoins(key, min, max){
let segundos = 0;
let pkey = 0;
const um = BigInt(1);
const startTime = Date.now()
console.log('Iniciando busca de Bitcoins...')
while(true){
key = key + um
pkey = key.toString(16)
while (pkey.length < 64){
pkey = '0' + pkey
}
if (Date.now() - startTime > segundos){
segundos += 1000
console.log(segundos/1000);
if (segundos % 10000 == 0){
const tempo = (Date.now() - startTime) / 1000;
console.clear();
console.log('Resumo: ')
console.log('Velocidade:', (Number(key) - Number(min))/ tempo, ' chaves por segundo')
console.log('Chaves buscadas: ', (key - min).toLocaleString('pt-BR'));
console.log('Ultima chave tentada: ',pkey )
}
}
let publicKey = generatePublic(pkey)
// console.log(publicKey)
if (walletsSet.has(publicKey)){
const tempo = (Date.now() - startTime)/1000
console.log('Velocidade:', (Number(key) - Number(min))/ tempo, ' chaves por segundo')
console.log('Tempo:', tempo, ' segundos');
console.log('Private key:', chalk.green(pkey))
console.log('WIF:', chalk.green(generateWIF(pkey)))
const filePath = 'keys.txt';
const lineToAppend = `Private key: ${pkey}, WIF: ${generateWIF(pkey)}\n`;
try {
fs.appendFileSync(filePath, lineToAppend);
console.log('Chave escrita no arquivo com sucesso.');
} catch (err) {
console.error('Erro ao escrever chave em arquivo:', err);
}
throw 'ACHEI!!!! 🎉🎉🎉🎉🎉'
}
}
}
function generatePublic(privateKey){
return bitcoinKeys.getBitcoinAddress(privateKey);
}
function generateWIF(privateKey){
let _key = new CoinKey(new Buffer(privateKey, 'hex'))
return _key.privateWif
}
export default encontrarBitcoins;