Crypto Flexs
  • DIRECTORY
  • CRYPTO
    • ETHEREUM
    • BITCOIN
    • ALTCOIN
  • BLOCKCHAIN
  • EXCHANGE
  • TRADING
  • SUBMIT
Crypto Flexs
  • DIRECTORY
  • CRYPTO
    • ETHEREUM
    • BITCOIN
    • ALTCOIN
  • BLOCKCHAIN
  • EXCHANGE
  • TRADING
  • SUBMIT
Crypto Flexs
Home»BITCOIN NEWS»bitcoinjs – Transaction transfer failed (script not found for input #0)
BITCOIN NEWS

bitcoinjs – Transaction transfer failed (script not found for input #0)

By Crypto FlexsJanuary 10, 20241 Min Read
Facebook Twitter Pinterest LinkedIn Tumblr Email
bitcoinjs – Transaction transfer failed (script not found for input #0)
Share
Facebook Twitter LinkedIn Pinterest Email

I tried making a simple BTC transfer but got the following error: Script not found for input #0. What am I missing?

const bitcoin = require("bitcoinjs-lib");
const ECPairFactory = require("ecpair");
const ecc = require("tiny-secp256k1");
const  RegtestUtils  = require("regtest-client");

module.exports = async function (req, res) 
    const regtestUtils = new RegtestUtils(
        APIURL: "https://regtest.bitbank.cc/1",
        APIPASS: "satoshi",
    );

    const network = regtestUtils.network; // regtest network params

    const ECPair = ECPairFactory.ECPairFactory(ecc);
    const keyPair = ECPair.fromWIF(
        "xxxxxxxx"
    );

    const p2pkh = bitcoin.payments.p2pkh(
        pubkey: keyPair.publicKey,
        network,
    );

    const unspent = await regtestUtils.faucet(p2pkh.address, 2e4);

    const txb = new bitcoin.Psbt( network );
    txb.setVersion(2)
        .setLocktime(0)
        .addInput(
            hash: unspent.txId,
            index: unspent.vout,
        )
        .addOutput(
            address: regtestUtils.RANDOM_ADDRESS,
            value: 1e4,
        )
        .signAllInputs(keyPair);

    const tx = txb.build();

    console.log("hash", tx.toHex());

    return;

    // build and broadcast to the Bitcoin Local RegTest server
    await regtestUtils.broadcast(tx.toHex());

    // This verifies that the vout output of txId transaction is actually for value
    // in satoshis and is locked for the address given.
    // The utxo can be unconfirmed. We are just verifying it was at least placed in
    // the mempool.
    await regtestUtils.verify(
        txId: tx.getId(),
        address: regtestUtils.RANDOM_ADDRESS,
        vout: 0,
        value: 1e4,
    );

    res.status(400).json(
        error: false,
        message: address,
    );
;

Share. Facebook Twitter Pinterest LinkedIn Tumblr Email

Related Posts

Saylor’s strategic message doesn’t help push the Bitcoin story, says StanChart.

July 12, 2026

Bittensor subnet token launches on Kraken

July 6, 2026

Could the UK become a stablecoin hub for cryptocurrencies?

June 30, 2026
Add A Comment

Comments are closed.

Recent Posts

MEXC May–June Report -750M+ USDT Futures Insurance Fund & 100% Asset Reserves

July 16, 2026

Bitunix Exchange Launches Visa Debit Card For Daily Purchases And Earning

July 16, 2026

UK Financial Ltd begins public testing of MAYA 3 liquidity infrastructure on six blockchain networks

July 16, 2026

Zoomex X Space Recap With Javier Mascherano And The World Cup Panel

July 16, 2026

ETH Is The Cure For The ‘Uncanny Valley Of Wealth’

July 16, 2026

Bybit Wins Excellence In Innovation And Strategic Leadership Awards At Peru Blockchain Conference 2026

July 16, 2026

Constellations of Stars: How XLM’s Visual Mapping Works

July 16, 2026

Market Summary: While IBM stumbles and PayPal acquisition rumors swirl, financial giants shine.

July 15, 2026

CoinGecko -MEXC Ranks Second In TradFi Perpetual Futures With $323.9 Billion In Trading Volume

July 15, 2026

Circle wins legal battle over Heka’s USDC issuance and redemption accounts

July 15, 2026

CT3 Announces Dedicated Storage Contracts To Expand Decentralized Storage Infrastructure

July 15, 2026

Crypto Flexs is a Professional Cryptocurrency News Platform. Here we will provide you only interesting content, which you will like very much. We’re dedicated to providing you the best of Cryptocurrency. We hope you enjoy our Cryptocurrency News as much as we enjoy offering them to you.

Contact Us : Partner(@)Cryptoflexs.com

Top Insights

MEXC May–June Report -750M+ USDT Futures Insurance Fund & 100% Asset Reserves

July 16, 2026

Bitunix Exchange Launches Visa Debit Card For Daily Purchases And Earning

July 16, 2026

UK Financial Ltd begins public testing of MAYA 3 liquidity infrastructure on six blockchain networks

July 16, 2026
Most Popular

Why Altcoin Season Is Next After Bitcoin-Breakout

November 18, 2024

Amid the TRUMP meme craze, searches for ‘buy cryptocurrency’ and ‘Solana’ surge.

January 19, 2025

Did you miss Dogecoin? Cryptocurrencies ready for the next Bull Run include:

February 25, 2024
  • Home
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy
  • Terms and Conditions
© 2026 Crypto Flexs

Type above and press Enter to search. Press Esc to cancel.