bitcoinjs-lib/test/integration/_regtest.js

79 lines
1.6 KiB
JavaScript
Raw Normal View History

var bitcoin = require('../../')
var dhttp = require('dhttp/200')
var APIPASS = process.env.APIPASS || 'satoshi'
var APIURL = 'https://api.dcousens.cloud/1'
function broadcast (txHex, callback) {
dhttp({
method: 'PUT',
url: APIURL + '/t/push',
body: txHex
}, callback)
}
function mine (count, callback) {
dhttp({
method: 'POST',
url: APIURL + '/r/generate?count=' + count + '&key=' + APIPASS
}, callback)
}
function faucet (address, value, callback) {
dhttp({
method: 'POST',
url: APIURL + '/r/faucet?address=' + address + '&value=' + value + '&key=' + APIPASS
}, function (err, txId) {
if (err) return callback(err)
unspents(address, function (err, results) {
if (err) return callback(err)
callback(null, results.filter(x => x.txId === txId).pop())
})
})
}
function fetch (txId, callback) {
dhttp({
method: 'GET',
url: APIURL + '/t/' + txId
}, callback)
}
function unspents (address, callback) {
dhttp({
method: 'GET',
url: APIURL + '/a/' + address + '/unspents'
}, callback)
}
function verify (txo, callback) {
let { txId } = txo
fetch(txId, function (err, txHex) {
if (err) return callback(err)
// TODO: verify address and value
callback()
})
}
function randomAddress () {
return bitcoin.ECPair.makeRandom({
network: bitcoin.networks.testnet
}).getAddress()
}
module.exports = {
broadcast: broadcast,
faucet: faucet,
fetch: fetch,
mine: mine,
network: bitcoin.networks.testnet,
unspents: unspents,
verify: verify,
randomAddress: randomAddress,
RANDOM_ADDRESS: randomAddress()
}