2019-06-15 19:36:44 +09:00
|
|
|
const { RegtestUtils } = require('regtest-client')
|
2018-01-31 12:46:35 +11:00
|
|
|
|
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'
|
2018-01-31 12:46:35 +11:00
|
|
|
|
2019-07-25 17:13:36 +09:00
|
|
|
const regtestUtils = new RegtestUtils({ APIPASS, APIURL })
|
2018-01-31 12:46:35 +11:00
|
|
|
|
2019-06-15 19:36:44 +09:00
|
|
|
module.exports = regtestUtils;
|