2018-06-25 08:25:12 +02:00
|
|
|
const Buffer = require('safe-buffer').Buffer
|
|
|
|
const bech32 = require('bech32')
|
|
|
|
const bs58check = require('bs58check')
|
|
|
|
const bscript = require('./script')
|
|
|
|
const btemplates = require('./templates')
|
|
|
|
const networks = require('./networks')
|
|
|
|
const typeforce = require('typeforce')
|
|
|
|
const types = require('./types')
|
2014-05-05 07:31:40 +02:00
|
|
|
|
2015-08-18 00:59:26 +02:00
|
|
|
function fromBase58Check (address) {
|
2018-06-25 08:37:45 +02:00
|
|
|
const payload = bs58check.decode(address)
|
2017-08-17 06:12:43 +02:00
|
|
|
|
|
|
|
// TODO: 4.0.0, move to "toOutputScript"
|
2015-08-18 00:59:26 +02:00
|
|
|
if (payload.length < 21) throw new TypeError(address + ' is too short')
|
|
|
|
if (payload.length > 21) throw new TypeError(address + ' is too long')
|
2015-07-21 04:29:35 +02:00
|
|
|
|
2018-06-25 08:37:45 +02:00
|
|
|
const version = payload.readUInt8(0)
|
|
|
|
const hash = payload.slice(1)
|
2014-04-17 15:31:45 +02:00
|
|
|
|
2017-08-17 06:12:43 +02:00
|
|
|
return { version: version, hash: hash }
|
2014-03-25 20:57:19 +01:00
|
|
|
}
|
2013-10-07 14:21:00 +02:00
|
|
|
|
2017-08-17 06:12:43 +02:00
|
|
|
function fromBech32 (address) {
|
2018-06-25 08:37:45 +02:00
|
|
|
const result = bech32.decode(address)
|
|
|
|
const data = bech32.fromWords(result.words.slice(1))
|
2017-08-14 09:15:34 +02:00
|
|
|
|
2017-08-17 06:12:43 +02:00
|
|
|
return {
|
|
|
|
version: result.words[0],
|
|
|
|
prefix: result.prefix,
|
|
|
|
data: Buffer.from(data)
|
2017-08-14 09:15:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-21 02:55:47 +02:00
|
|
|
function toBase58Check (hash, version) {
|
2015-08-11 09:01:47 +02:00
|
|
|
typeforce(types.tuple(types.Hash160bit, types.UInt8), arguments)
|
2015-07-21 02:55:47 +02:00
|
|
|
|
2018-06-25 08:37:45 +02:00
|
|
|
const payload = Buffer.allocUnsafe(21)
|
2015-07-21 02:55:47 +02:00
|
|
|
payload.writeUInt8(version, 0)
|
|
|
|
hash.copy(payload, 1)
|
2014-06-03 09:02:59 +02:00
|
|
|
|
2015-08-20 05:31:29 +02:00
|
|
|
return bs58check.encode(payload)
|
2014-03-25 20:57:19 +01:00
|
|
|
}
|
2014-05-05 07:31:40 +02:00
|
|
|
|
2017-08-17 06:12:43 +02:00
|
|
|
function toBech32 (data, version, prefix) {
|
2018-06-25 08:37:45 +02:00
|
|
|
const words = bech32.toWords(data)
|
2017-08-14 09:15:34 +02:00
|
|
|
words.unshift(version)
|
|
|
|
|
|
|
|
return bech32.encode(prefix, words)
|
|
|
|
}
|
|
|
|
|
2016-12-22 22:08:44 +01:00
|
|
|
function fromOutputScript (outputScript, network) {
|
2016-09-28 00:44:21 +02:00
|
|
|
network = network || networks.bitcoin
|
|
|
|
|
2017-09-26 23:05:02 +02:00
|
|
|
if (btemplates.pubKeyHash.output.check(outputScript)) return toBase58Check(bscript.compile(outputScript).slice(3, 23), network.pubKeyHash)
|
|
|
|
if (btemplates.scriptHash.output.check(outputScript)) return toBase58Check(bscript.compile(outputScript).slice(2, 22), network.scriptHash)
|
|
|
|
if (btemplates.witnessPubKeyHash.output.check(outputScript)) return toBech32(bscript.compile(outputScript).slice(2, 22), 0, network.bech32)
|
|
|
|
if (btemplates.witnessScriptHash.output.check(outputScript)) return toBech32(bscript.compile(outputScript).slice(2, 34), 0, network.bech32)
|
2016-09-28 00:44:21 +02:00
|
|
|
|
2016-12-22 22:08:44 +01:00
|
|
|
throw new Error(bscript.toASM(outputScript) + ' has no matching Address')
|
2016-09-28 00:44:21 +02:00
|
|
|
}
|
|
|
|
|
2015-07-24 03:59:48 +02:00
|
|
|
function toOutputScript (address, network) {
|
|
|
|
network = network || networks.bitcoin
|
|
|
|
|
2018-06-25 08:37:45 +02:00
|
|
|
let decode
|
2017-08-17 06:12:43 +02:00
|
|
|
try {
|
|
|
|
decode = fromBase58Check(address)
|
|
|
|
} catch (e) {}
|
|
|
|
|
|
|
|
if (decode) {
|
2017-09-26 23:05:02 +02:00
|
|
|
if (decode.version === network.pubKeyHash) return btemplates.pubKeyHash.output.encode(decode.hash)
|
|
|
|
if (decode.version === network.scriptHash) return btemplates.scriptHash.output.encode(decode.hash)
|
2017-08-17 06:12:43 +02:00
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
decode = fromBech32(address)
|
|
|
|
} catch (e) {}
|
|
|
|
|
|
|
|
if (decode) {
|
|
|
|
if (decode.prefix !== network.bech32) throw new Error(address + ' has an invalid prefix')
|
|
|
|
if (decode.version === 0) {
|
2017-09-26 23:05:02 +02:00
|
|
|
if (decode.data.length === 20) return btemplates.witnessPubKeyHash.output.encode(decode.data)
|
|
|
|
if (decode.data.length === 32) return btemplates.witnessScriptHash.output.encode(decode.data)
|
2017-08-17 06:12:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-05-05 07:31:40 +02:00
|
|
|
|
2015-07-21 02:55:47 +02:00
|
|
|
throw new Error(address + ' has no matching Script')
|
2014-05-05 07:31:40 +02:00
|
|
|
}
|
|
|
|
|
2015-07-21 02:55:47 +02:00
|
|
|
module.exports = {
|
|
|
|
fromBase58Check: fromBase58Check,
|
2017-08-14 09:15:34 +02:00
|
|
|
fromBech32: fromBech32,
|
2015-07-21 02:55:47 +02:00
|
|
|
fromOutputScript: fromOutputScript,
|
|
|
|
toBase58Check: toBase58Check,
|
2017-08-14 09:15:34 +02:00
|
|
|
toBech32: toBech32,
|
2015-07-21 02:55:47 +02:00
|
|
|
toOutputScript: toOutputScript
|
|
|
|
}
|