salma sultana

Logo

Former End User Consultant, Current Software Developer, and a Master's degree holder in Data Science and Engineering.

View My GitHub Profile

Create a script which pays to a bitcoin address

Code

"use strict"

const bcoin = require("bcoin")

const address = "12gpXQVcCL2qhTNQgyLVdCFG2Qs2px98nV"

const script = bcoin.Script.fromAddress(address)

console.log(`Address: ${address}`)
console.log(`Script: ${script}`)


Extract and decode the script of the genesis block

back