bitcoinjs-lib/test/integration/_regtest.js

9 lines
261 B
JavaScript
Raw Normal View History

2019-06-15 19:36:44 +09:00
const { RegtestUtils } = require('regtest-client')
2018-06-25 16:25:12 +10:00
const APIPASS = process.env.APIPASS || 'satoshi'
2019-04-09 12:09:43 +09:00
const APIURL = process.env.APIURL || 'https://regtest.bitbank.cc/1'
2019-07-25 17:13:36 +09:00
const regtestUtils = new RegtestUtils({ APIPASS, APIURL })
2019-06-15 19:36:44 +09:00
module.exports = regtestUtils;