2015-08-20 05:31:29 +02:00
|
|
|
var bs58check = require('bs58check')
|
2015-08-20 05:37:19 +02:00
|
|
|
var bscript = require('./script')
|
2014-05-05 07:31:40 +02:00
|
|
|
var networks = require('./networks')
|
2015-08-14 03:16:17 +02:00
|
|
|
var typeforce = require('typeforce')
|
2015-08-11 09:01:47 +02:00
|
|
|
var types = require('./types')
|
2014-05-05 07:31:40 +02:00
|
|
|
|
2015-08-18 00:59:26 +02:00
|
|
|
function fromBase58Check (address) {
|
2015-08-20 05:31:29 +02:00
|
|
|
var payload = bs58check.decode(address)
|
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
|
|
|
|
2015-08-25 10:09:50 +02:00
|
|
|
var version = payload[0]
|
2014-06-03 09:02:59 +02:00
|
|
|
var hash = payload.slice(1)
|
2014-04-17 15:31:45 +02:00
|
|
|
|
2015-07-21 02:55:47 +02:00
|
|
|
return { hash: hash, version: version }
|
2014-03-25 20:57:19 +01:00
|
|
|
}
|
2013-10-07 14:21:00 +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
|
|
|
|
2014-06-03 09:02:59 +02:00
|
|
|
var payload = new Buffer(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
|
|
|
|
2016-09-28 00:44:21 +02:00
|
|
|
function fromOutputScript (scriptPubKey, network) {
|
|
|
|
network = network || networks.bitcoin
|
|
|
|
|
|
|
|
if (bscript.isPubKeyHashOutput(scriptPubKey)) return toBase58Check(bscript.compile(scriptPubKey).slice(3, 23), network.pubKeyHash)
|
|
|
|
if (bscript.isScriptHashOutput(scriptPubKey)) return toBase58Check(bscript.compile(scriptPubKey).slice(2, 22), network.scriptHash)
|
|
|
|
|
|
|
|
throw new Error(bscript.toASM(scriptPubKey) + ' has no matching Address')
|
|
|
|
}
|
|
|
|
|
2015-07-24 03:59:48 +02:00
|
|
|
function toOutputScript (address, network) {
|
|
|
|
network = network || networks.bitcoin
|
|
|
|
|
2015-08-25 10:09:50 +02:00
|
|
|
var decode = fromBase58Check(address)
|
|
|
|
if (decode.version === network.pubKeyHash) return bscript.pubKeyHashOutput(decode.hash)
|
|
|
|
if (decode.version === network.scriptHash) return bscript.scriptHashOutput(decode.hash)
|
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,
|
|
|
|
fromOutputScript: fromOutputScript,
|
|
|
|
toBase58Check: toBase58Check,
|
|
|
|
toOutputScript: toOutputScript
|
|
|
|
}
|