forked from nch-bowstave/minerid-reference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestMiner.js
58 lines (46 loc) · 1.6 KB
/
testMiner.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
const bsv = require('bsv')
const rp = require('request-promise')
async function getMinerIdOutputScript (height) {
const requestOptions = {
method: 'GET',
uri: `http://localhost:9002/opreturn/testMiner/${height}`,
resolveWithFullResponse: true
}
const res = await rp(requestOptions)
if (res.statusCode === 200) {
return res.body
} else {
throw new Error(`Status code: ${res.statusCode}`)
}
}
; (async () => {
// Create a random private key and address...
const privateKey = new bsv.PrivateKey.fromRandom()
const publicKey = new bsv.PublicKey.fromPrivateKey(privateKey)
const address = new bsv.Address.fromPublicKey(publicKey)
// Create a standard coinbase TX
const coinbaseInput = new bsv.Transaction.Input({
prevTxId: '0000000000000000000000000000000000000000000000000000000000000000',
outputIndex: 0xFFFFFFFF,
script: new bsv.Script()
})
const tx = new bsv.Transaction()
.uncheckedAddInput(coinbaseInput)
.to(address, 1250000000)
// Now get MinerId output and add to our tx...
try {
const blockHeight = 1234
const minerIdOutputScript = await getMinerIdOutputScript(blockHeight)
const minerIdOutput = new bsv.Transaction.Output({
satoshis: 0,
script: new bsv.Script(minerIdOutputScript)
})
console.log(`\nCoinbase document for height ${blockHeight}:\n`)
console.log(JSON.parse(Buffer.from(minerIdOutput.script.toASM().split(' ')[3], 'hex').toString()))
tx.addOutput(minerIdOutput)
} catch (error) {
console.log(error.message)
}
console.log('\nRAW Coinbase transaction:\n')
console.log(tx.toString())
})()