-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbitcoinService.js
71 lines (57 loc) · 2.03 KB
/
bitcoinService.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
var bitcoin = require('bitcoinjs-lib');
function createWallet(network) {
var btcNetwork = bitcoin.networks.bitcoin
if (network == "test") {
btcNetwork = bitcoin.networks.testnet
}
const keyPair = bitcoin.ECPair.makeRandom({network: btcNetwork})
const {address} = bitcoin.payments.p2wpkh({pubkey: keyPair.publicKey, network: btcNetwork})
return {pubkey: address, privateKey: keyPair.toWIF()}
}
function signTx(inputs, outputs, network) {
var tx = createTx(inputs, outputs, network)
return {rawHash: tx.toHex(), hash: tx.getId(), size: tx.virtualSize()}
}
function createTx(inputs, outputs, network) {
console.log("createTx")
var btcNetwork = bitcoin.networks.bitcoin
if (network == "test") {
btcNetwork = bitcoin.networks.testnet
}
const psbt = new bitcoin.Psbt({network: btcNetwork});
inputs.forEach(function (inputObj) {
const keyPair = bitcoin.ECPair.fromWIF(inputObj.privateKey, btcNetwork)
const p2wpkh = bitcoin.payments.p2wpkh({pubkey: keyPair.publicKey, network: btcNetwork})
psbt.addInput({
hash: inputObj.txHash,
index: inputObj.txIndex,
witnessUtxo: {script: Buffer.from(p2wpkh.output, 'hex'), value: inputObj.amount}
}) // Alice's previous transaction output, has 15000 satoshis
console.log("signTx: Added input")
});
outputs.forEach(function (outputObj) {
psbt.addOutput({
address: outputObj.publicKey,
value: outputObj.amount,
})
//amount in satoshi like 12000
// (in)15000 - (out)12000 = (fee)3000, this is the miner fee
console.log("signTx: Added output")
});
inputs.forEach(function (inputObj, index) {
console.log("signTx: signing: prepare")
const keyPair = bitcoin.ECPair.fromWIF(inputObj.privateKey, btcNetwork)
console.log("signTx: signing")
psbt.signInput(index, keyPair);
console.log("signTx: signed")
});
console.log("signTx: build")
psbt.finalizeAllInputs();
const tx = psbt.extractTransaction();
console.log(JSON.stringify(tx))
return tx
}
module.exports = {
createWallet,
signTx
};