forked from TrueCarry/JettonGramGpuMiner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
send_universal_TESTING.ts
438 lines (378 loc) · 14.9 KB
/
send_universal_TESTING.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
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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
import { Address, BitReader, BitString, Cell, TupleReader, beginCell, external, internal, parseTuple, storeMessage, toNano } from '@ton/core'
import { KeyPair, getSecureRandomBytes, keyPairFromSeed, mnemonicToWalletKey } from '@ton/crypto'
import axios from 'axios'
// import { LiteClient, LiteRoundRobinEngine, LiteSingleEngine } from 'ton-lite-client'
import { TonClient4, WalletContractV3R2 } from '@ton/ton';
import { execSync } from 'child_process';
import fs from 'fs'
import { WalletContractV4 } from '@ton/ton';
import dotenv from 'dotenv'
import { givers100, givers1000 } from './givers'
import arg from 'arg'
import { LiteClient, LiteSingleEngine, LiteRoundRobinEngine } from 'ton-lite-client';
import { getLiteClient, getTon4Client, getTon4ClientOrbs, getTonCenterClient } from './client';
import { HighloadWalletV2 } from '@scaleton/highload-wallet';
import { OpenedContract } from '@ton/core';
import { BlockID } from 'ton-lite-client';
dotenv.config({ path: 'config.txt.txt' })
dotenv.config({ path: '.env.txt' })
dotenv.config()
dotenv.config({ path: 'config.txt' })
const args = arg({
'--givers': Number, // 100 1000 10000
'--api': String, // lite, tonhub
'--bin': String, // cuda, opencl or path to miner
'--gpu': Number, // gpu id, default 0
'--timeout': Number, // Timeout for mining in seconds
'--allow-shards': Boolean, // if true - allows mining to other shards
'-c': String, // blockchain config
})
let givers = givers1000
if (args['--givers']) {
const val = args['--givers']
const allowed = [100, 1000]
if (!allowed.includes(val)) {
throw new Error('Invalid --givers argument')
}
switch (val) {
case 100:
givers = givers100
console.log('Using givers 100')
break
case 1000:
givers = givers1000
console.log('Using givers 1 000')
break
// case 10000:
// givers = givers10000
// console.log('Using givers 10 000')
// break
}
} else {
console.log('Using givers 10 000')
}
let bin = '.\\pow-miner-cuda.exe'
if (args['--bin']) {
const argBin = args['--bin']
if (argBin === 'cuda') {
bin = '.\\pow-miner-cuda.exe'
} else if (argBin === 'opencl' || argBin === 'amd') {
bin = '.\\pow-miner-opencl.exe'
} else {
bin = argBin
}
}
console.log('Using bin', bin)
const gpu = args['--gpu'] ?? 0
const timeout = args['--timeout'] ?? 5
const allowShards = args['--allow-shards'] ?? false
console.log('Using GPU', gpu)
console.log('Using timeout', timeout)
const mySeed = process.env.SEED as string
const totalDiff = BigInt('115792089237277217110272752943501742914102634520085823245724998868298727686144')
let bestGiver: { address: string, coins: number } = { address: '', coins: 0 }
async function updateBestGivers(liteClient: TonClient4 | LiteClient, myAddress: Address) {
const whitelistGivers = allowShards ? [...givers] : givers.filter((giver) => {
const shardMaxDepth = 1
const giverAddress = Address.parse(giver.address)
const myShard = new BitReader(new BitString(myAddress.hash, 0, 1024)).loadUint(
shardMaxDepth
)
const giverShard = new BitReader(new BitString(giverAddress.hash, 0, 1024)).loadUint(
shardMaxDepth
)
if (myShard === giverShard) {
return true
}
return false
})
console.log('Whitelist: ', whitelistGivers.length)
if (liteClient instanceof TonClient4) {
const lastInfo = await CallForSuccess(() => liteClient.getLastBlock())
let newBestGiber: { address: string, coins: number } = { address: '', coins: 0 }
await Promise.all(whitelistGivers.map(async (giver) => {
const stack = await CallForSuccess(() => liteClient.runMethod(lastInfo.last.seqno, Address.parse(giver.address), 'get_pow_params', []))
// const powStack = Cell.fromBase64(powInfo.result as string)
// const stack = parseTuple(powStack)
const reader = new TupleReader(stack.result)
const seed = reader.readBigNumber()
const complexity = reader.readBigNumber()
const iterations = reader.readBigNumber()
const hashes = totalDiff / complexity
const coinsPerHash = giver.reward / Number(hashes)
if (coinsPerHash > newBestGiber.coins) {
newBestGiber = { address: giver.address, coins: coinsPerHash }
}
}))
bestGiver = newBestGiber
} else if (liteClient instanceof LiteClient) {
const lastInfo = await liteClient.getMasterchainInfo()
let newBestGiber: { address: string, coins: number } = { address: '', coins: 0 }
await Promise.all(whitelistGivers.map(async (giver) => {
const powInfo = await liteClient.runMethod(Address.parse(giver.address), 'get_pow_params', Buffer.from([]), lastInfo.last)
const powStack = Cell.fromBase64(powInfo.result as string)
const stack = parseTuple(powStack)
const reader = new TupleReader(stack)
const seed = reader.readBigNumber()
const complexity = reader.readBigNumber()
const iterations = reader.readBigNumber()
const hashes = totalDiff / complexity
const coinsPerHash = giver.reward / Number(hashes)
if (coinsPerHash > newBestGiber.coins) {
newBestGiber = { address: giver.address, coins: coinsPerHash }
}
}))
bestGiver = newBestGiber
}
}
async function getNextMaster(liteClient: TonClient4 | LiteClient) {
if (liteClient instanceof LiteClient) {
const info = await liteClient.getMasterchainInfo()
const nextInfo = await liteClient.getMasterchainInfo({ awaitSeqno: info.last.seqno + 1 })
return nextInfo.last
} else {
const info = await liteClient.getLastBlock()
while (true) {
try {
const nextInfo = await liteClient.getBlock(info.last.seqno + 1)
return nextInfo.shards.find(s => s.workchain === -1)
}
catch (e) {
//
}
}
// const nextInfo = await liteClient.getBlock(info.last.seqno + 1)
// return info.last.seqno + 1
}
}
async function getPowInfo(liteClient: TonClient4 | LiteClient, address: Address, lastInfoRoot?: any): Promise<[bigint, bigint, bigint]> {
// console.log('getPowInfo', address, lastInfoRoot)
if (liteClient instanceof TonClient4) {
const lastInfo = lastInfoRoot ?? (await CallForSuccess(() => liteClient.getLastBlock())).last
const powInfo = await CallForSuccess(() => liteClient.runMethod(lastInfo.seqno, address, 'get_pow_params', []))
const reader = new TupleReader(powInfo.result)
const seed = reader.readBigNumber()
const complexity = reader.readBigNumber()
const iterations = reader.readBigNumber()
return [seed, complexity, iterations]
} else if (liteClient instanceof LiteClient) {
// console.log('lastInfoRoot', lastInfoRoot)
const lastInfo = lastInfoRoot ?? (await liteClient.getMasterchainInfo()).last
const powInfo = await liteClient.runMethod(address, 'get_pow_params', Buffer.from([]), lastInfo, { awaitSeqno: lastInfo.seqno, timeout: 100 })
const powStack = Cell.fromBase64(powInfo.result as string)
const stack = parseTuple(powStack)
const reader = new TupleReader(stack)
const seed = reader.readBigNumber()
const complexity = reader.readBigNumber()
const iterations = reader.readBigNumber()
return [seed, complexity, iterations]
}
throw new Error('invalid client')
}
let go = true
let i = 0
async function main() {
let liteClient: TonClient4 | LiteClient
if (!args['--api']) {
console.log('Using TonHub API')
liteClient = await getTon4Client()
} else {
if (args['--api'] === 'lite') {
console.log('Using LiteServer API')
liteClient = await getLiteClient(args['-c'] ?? 'https://ton-blockchain.github.io/global.config.json')
} else {
console.log('Using TonHub API')
liteClient = await getTon4Client()
}
}
const keyPair = await mnemonicToWalletKey(mySeed.split(' '))
const wallet = WalletContractV4.create({
workchain: 0,
publicKey: keyPair.publicKey
})
const walletv3r2 = WalletContractV3R2.create({
workchain: 0,
publicKey: keyPair.publicKey
})
if (args['--wallet'] === 'highload') {
console.log('Using highload wallet', wallet.address.toString({ bounceable: false, urlSafe: true }))
} else {
console.log('Using v4r2 wallet', wallet.address.toString({ bounceable: false, urlSafe: true }))
}
const opened = liteClient.open(wallet)
await updateBestGivers(liteClient, wallet.address)
setInterval(() => {
updateBestGivers(liteClient, wallet.address)
}, 1000)
while (go) {
// console.log('waiting master')
const nextMaster = await getNextMaster(liteClient)
console.log('got next master')
const giverAddress = bestGiver.address
const [seed, complexity, iterations] = await getPowInfo(liteClient, Address.parse(giverAddress), nextMaster)
console.log('got giver address', giverAddress)
const randomName = (await getSecureRandomBytes(8)).toString('hex') + '.boc'
const path = `bocs/${randomName}`
const command = `${bin} -g ${gpu} -F 128 -t ${timeout} ${wallet.address.toString({ urlSafe: true, bounceable: true })} ${seed} ${complexity} ${iterations} ${giverAddress} ${path}`
try {
const output = execSync(command, { encoding: 'utf-8', stdio: "pipe" }); // the default is 'buffer'
} catch (e) {
}
let mined: Buffer | undefined = undefined
try {
mined = fs.readFileSync(path)
fs.rmSync(path)
} catch (e) {
//
}
if (!mined) {
console.log(`${new Date()}: not mined`, seed, i++)
}
if (mined) {
// const [newSeed] = await getPowInfo(liteClient, Address.parse(giverAddress))
// if (newSeed !== seed) {
// console.log('Mined already too late seed')
// continue
// }
console.log(`${new Date()}: mined`, seed, i++)
let w = opened as OpenedContract<WalletContractV4>
let seqno = 0
try {
seqno = await CallForSuccess(() => w.getSeqno())
} catch (e) {
//
}
sendMinedBoc(wallet, seqno, keyPair, giverAddress, Cell.fromBoc(mined as Buffer)[0].asSlice().loadRef())
// let seqnov3 = 0
// try {
// seqnov3 = await CallForSuccess(() => liteClient.open(walletv3r2).getSeqno())
// } catch (e) {
// //
// }
// sendMinedBoc(walletv3r2, seqnov3, keyPair, giverAddress, Cell.fromBoc(mined as Buffer)[0].asSlice().loadRef())
// for (let j = 0; j < 5; j++) {
// try {
// await CallForSuccess(() => {
// return w.sendTransfer({
// seqno,
// secretKey: keyPair.secretKey,
// messages: [internal({
// to: giverAddress,
// value: toNano('0.05'),
// bounce: true,
// body: Cell.fromBoc(mined as Buffer)[0].asSlice().loadRef(),
// })],
// sendMode: 3 as any,
// })
// })
// break
// } catch (e) {
// if (j === 4) {
// throw e
// }
// //
// }
// }
}
}
}
main()
async function sendMinedBoc(
wallet: WalletContractV4,
seqno: number,
keyPair: KeyPair,
giverAddress: string,
boc: Cell
) {
const liteServerClient = await getLiteClient(args['-c'] ?? 'https://ton-blockchain.github.io/global.config.json')
const ton4Client = await getTon4Client()
const tonOrbsClient = await getTon4ClientOrbs()
const toncenterClient = await getTonCenterClient()
const w1 = liteServerClient.open(wallet)
const w2 = ton4Client.open(wallet)
const w3 = tonOrbsClient.open(wallet)
const w4 = toncenterClient.open(wallet)
const wallets = [w1, w2, w3]
// const transferBoc = w1.createTransfer({
// seqno,
// secretKey: keyPair.secretKey,
// messages: [internal({
// to: giverAddress,
// value: toNano('0.05'),
// bounce: true,
// body: boc,
// })],
// sendMode: 3 as any,
// })
// console.log('send seqno', seqno)
// const ext = external({
// to: Address.parse(giverAddress),
// body: transferBoc
// })
// const dataBoc = beginCell().store(storeMessage(ext)).endCell()
// toncenterClient.sendFile(dataBoc.toBoc()).then(() => {
// console.log('toncenter success')
// }).catch(e => {
// //
// console.log('toncenter send error', e)
// })
// w4.sendTransfer({
// seqno,
// secretKey: keyPair.secretKey,
// messages: [internal({
// to: giverAddress,
// value: toNano('0.05'),
// bounce: true,
// body: boc,
// })],
// sendMode: 3 as any,
// })
for (let i = 0; i < 3; i++) {
for (const w of wallets) {
w.sendTransfer({
seqno,
secretKey: keyPair.secretKey,
messages: [internal({
to: giverAddress,
value: toNano('0.05'),
bounce: true,
body: boc,
})],
sendMode: 3 as any,
}).catch(e => {
//
})
}
}
}
// Function to call ton api untill we get response.
// Because testnet is pretty unstable we need to make sure response is final
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export async function CallForSuccess<T extends (...args: any[]) => any>(
toCall: T,
attempts = 20,
delayMs = 100
): Promise<ReturnType<T>> {
if (typeof toCall !== 'function') {
throw new Error('unknown input')
}
let i = 0
let lastError: unknown
while (i < attempts) {
try {
const res = await toCall()
return res
} catch (err) {
lastError = err
i++
await delay(delayMs)
}
}
console.log('error after attempts', i)
throw lastError
}
export function delay(ms: number) {
return new Promise((resolve) => {
setTimeout(resolve, ms)
})
}