gpt4 book ai didi

javascript - 使用 bitcoinjs 发送比特币交易

转载 作者:数据小太阳 更新时间:2023-10-29 05:37:43 27 4
gpt4 key购买 nike

有人可以解释一下我如何使用 bitcoinjs 发送比特币交易吗???我已经使用 bitcoinjs 设置了两个钱包。

我想从这里发送 100000 聪: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 是最后一笔交易的交易 ID here

`tx.addInput`` 是我放置费用的地方吗?如果是这样,100 够吗?

tx.addOutput 是 obvs,所以我同意!

var privateKeyWIF* 我把发送地址的私钥放在哪里?

不知道 var keyPairtx.sign 是做什么的!

任何可以帮助告诉我细节应该去哪里的人将不胜感激!对于此示例,假设我的发件人地址私钥是 5Kb8kLf9zgWQnogidDA76MzPL6TsZZY36hWXMssSzNydYXYB9KF

干杯

最佳答案

比特币交易通常将之前的交易输出作为新的交易输入。

首先,您需要查看之前的交易。如你所见here或者在上面的代码片段中 txId 是:4303caa91ca5a2236396af3bfae26b70a223a2bcee2fe8d23a7b24626c3c4bd2

{
"hash":"4303caa91ca5a2236396af3bfae26b70a223a2bcee2fe8d23a7b24626c3c4bd2",
"ver":1,
"vin_sz":1,
"vout_sz":2,
"size":225,
"weight":900,
"fee":18713,
"relayed_by":"0.0.0.0",
"lock_time":448506,
"tx_index":7399058499716239,
"double_spend":false,
"time":1484590465,
"block_index":448507,
"block_height":448507,
"inputs":[
{
"sequence":4294967294,
"witness":"",
"script":"47304402204fdab6f26efa32f49c79d8c91b5d42ea39760cff5afc34351f8595453bd3c9d102201ff8e25e4ababe3c3515617e90f97516cda50061ad0c02f215e4a008d580ede4012102e801e52ff6e7d1ad0bb46ef6732d8fcfae1e122a47ea5690e084b9fa4a73d106",
"index":0,
"prev_out":{
"spent":true,
"script":"76a914d7819c081b247a146922b8f90f89181b02a3c66f88ac",
"spending_outpoints":[
{
"tx_index":7399058499716239,
"n":0
}
],
"tx_index":356328836300976,
"value":469871307,
"addr":"1LeVYfpp1LQQUBqsmruVW6cMbYrZtmunPr",
"n":1,
"type":0
}
}
],
"out":[
{
"type":0,
"spent":true,
"value":469352594,
"spending_outpoints":[
{
"tx_index":5608049158171792,
"n":0
}
],
"n":0,
"tx_index":7399058499716239,
"script":"76a9147adfb2779ee7710b0dffeff8fb77c82867ed43e588ac",
"addr":"1CChR9sShAc61MNLhMoLzy87w5DwP6jRvv"
},
{
"type":0,
"spent":true,
"value":500000,
"spending_outpoints":[
{
"tx_index":8253272257190039,
"n":0
}
],
"n":1,
"tx_index":7399058499716239,
"script":"76a914a53e0c670a2836baef1ea93de125f1fdd77370dd88ac",
"addr":"1G4iprWu7Q8tNbQLA8UBM2GearcnzwFrxM"
}
]
}

您的地址 1G4iprWu7Q8tNbQLA8UBM2GearcnzwFrxM 显示为第二个输出(索引 1)。

并且这个地址的总量是500000聪

enter image description here


那么,让我们创建我们的交易

var txb = new bitcoin.TransactionBuilder()
txb.addInput('4303caa91ca5a2236396af3bfae26b70a223a2bcee2fe8d23a7b24626c3c4bd2', 1)

现在我们将发送 100000 聪

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

关于javascript - 使用 bitcoinjs 发送比特币交易,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41686334/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com