有人可以解释我如何使用bitcoinjs发送比特币交易???我使用bitcoinjs设置了两个钱包。
我想从这里发送100000个satoshis: 的 1G4iprWu7Q8tNbQLA8UBM2GearcnzwFrxM
到这里: 的 1HsrKvboax8J3X1sgsRdWybEwnUNWsDw4Y
如果此处需要的是1G4iprWu7Q8tNbQLA8UBM2GearcnzwFrxM
的最后一笔交易我使用的代码来自bitcoinjs.org网站:
var tx = new bitcoin.TransactionBuilder()
// Add the input (who is paying):
// [previous transaction hash, index of the output to use]
var txId = 'aa94ab02c182214f090e99a0d57021caffd0f195a81c24602b1028b130b63e31'
tx.addInput(txId, 0)
// Add the output (who to pay to):
// [payee's address, amount in satoshis]
tx.addOutput("1Gokm82v6DmtwKEB8AiVhm82hyFSsEvBDK", 15000)
// Initialize a private key using WIF
var privateKeyWIF = 'L1uyy5qTuGrVXrmrsvHWHgVzW9kKdrp27wBC7Vs6nZDTF2BRUVwy'
var keyPair = bitcoin.ECPair.fromWIF(privateKeyWIF)
// Sign the first input with the new key
tx.sign(0, keyPair)
// Print transaction serialized as hex
console.log(tx.build().toHex())
// => 0100000001313eb630b128102b60241ca895f1d0ffca21 ...
// You could now push the transaction onto the Bitcoin network manually
// (see https://blockchain.info/pushtx)
现在我假设var txId
是上次交易here
`tx.addInput``是我付费的吗?如果是这样足够100?
tx.addOutput
是obvs所以我没关系!
var privateKeyWIF*
我将发送地址中的私钥放在哪里?
不知道var keyPair
和tx.sign
做了什么!
任何能够帮助告诉我详细信息去哪里的人都将不胜感激!对于此示例,假设我的私钥为发件人地址 5Kb8kLf9zgWQnogidDA76MzPL6TsZZY36hWXMssSzNydYXYB9KF 。
干杯
答案 0 :(得分:0)
首先了解wif format是什么。
From github我们有:
Transaction.prototype.addInput = function (hash, index, sequence, scriptSig)
因此您必须传递事务的哈希值和索引(输出将是您的输入),您应该检查what a bitcoin tx is
未经核实,但可能keyPair
是您的Pk和pk。
请另外验证,因为我没有,但逻辑上tx.sign(index, keyPair)
应使用index
中的私钥为输入keyPair
签署tx (SIGHASH_ALL)。如果您当然有多个输入,则必须为每个输入提供签名。看看mastering bitcoin
答案 1 :(得分:0)
比特币交易通常将先前的交易输出作为新交易输入。
首先,您需要查看以前的交易。我们可以看到here txId是:
4303caa91ca5a2236396af3bfae26b70a223a2bcee2fe8d23a7b24626c3c4bd2
您的地址1G4iprWu7Q8tNbQLA8UBM2GearcnzwFrxM
显示为第二个输出(index 1
)。
此地址的总金额为500000 satoshis
。
所以,让我们创建我们的交易
var txb = new bitcoin.TransactionBuilder()
txb.addInput('4303caa91ca5a2236396af3bfae26b70a223a2bcee2fe8d23a7b24626c3c4bd2', 1)
现在我们将发送100000 satoshis
txb.addOutput('1cMh228HTCiwS8ZsaakH8A8wze1JR5ZsP', 100000)
我们需要将更改发送到您拥有的某个地址
txb.addOutput('1cMh228HTCiwS8ZsaakH8A8wze1JR5ZsP', 398130)
剩下的是矿工费。您可以使用online services来估算理想费用。
(in)500000 Satoshis - (out)100000 - (out)398130 = (fee)1870
现在我们需要签署交易以确认您拥有输入地址
var yourAddressPrivateKeyWIF = 'L1uyy5qTuGrVXrmrsvHWHgVzW9kKdrp27wBC7Vs6nZDTF2BRUVwy'
var yourAddresskeyPair = bitcoin.ECPair.fromWIF(yourAddressPrivateKeyWIF)
txb.sign(0, yourAddresskeyPair)
如果您运行yourAddresskeyPair.getAdress()
,则输出应为您的地址1G4iprWu7Q8tNbQLA8UBM2GearcnzwFrxM
现在您可以将交易发送到网络。以十六进制格式获取原始事务:
txb.build().toHex()
将结果粘贴到https://blockchain.info/pushtx或在此处查看其他解决方案:https://github.com/bitcoinjs/bitcoinjs-lib/issues/839
答案 2 :(得分:0)
let bitcoin = require('bitcoinjs-lib');
const TESTNET = bitcoin.networks.testnet;
const keyPair = bitcoin.ECPair.makeRandom({ network: TESTNET });
const { address } = bitcoin.payments.p2pkh({
pubkey: keyPair.publicKey,
network: TESTNET,
});;
let wif = keyPair.toWIF()
// console.log(address, keyPair.publicKey.toString('hex') , keyPair.privateKey.toString('hex') , wif);
let fkeyPair = bitcoin.ECPair.fromWIF(fwif , TESTNET);
const result = await axios.get(`https://testnet.blockchain.info/rawaddr/${fAddress}`);
let balance = result.data.final_balance;
let latestTx = result.data.txs[0].hash;
console.log('testAddress balance:' , balance);
console.log('latest tx: ', latestTx);
var txb = new bitcoin.TransactionBuilder(bitcoin.networks.testnet);
let sendAmount = 15000;
let fee = 26456;
let whatIsLeft = balance - fee - sendAmount;
txb.addInput(latestTx, 1);
txb.addOutput(f2Address, sendAmount);
txb.addOutput(f2Address, whatIsLeft);
txb.sign(0, fkeyPair);
let body = txb.build().toHex();
console.log(body);
答案 3 :(得分:0)
我发现很多人对这一部分感到困惑——“如何将交易发布到网络”。简而言之,您需要访问一个单独的比特币核心完整节点。全节点包括您将原始交易十六进制发布到的 JSON API,然后全节点基本上会在幕后为您完成其余的工作(通过八卦网络向其他节点广播,然后将交易添加到他们自己的节点中)内存池,然后等待矿工处理它,以便将其添加到区块链中)。
将交易发送到网络有两种主要方式(通过 Bitcoin Core 中的 JSON RPC API 或通过 bitcoin-cli 发送):
% bitcoin-cli sendrawtransaction 0000000001186f9f....00000000
那个大的长十六进制数就是你的 bitcoinjs 代码将生成的交易十六进制数。未经确认的交易应在几秒钟内出现在您的钱包中。即已验证,但尚未确认。