-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use bitcoinjs-lib to generate addresses
- Loading branch information
1 parent
c13e508
commit 11abab8
Showing
5 changed files
with
289 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
let bitcoin = require('bitcoinjs-lib') | ||
|
||
let pubKeys = process.argv[2].split(",").sort().map(function (hex) { | ||
return Buffer.from(hex, 'hex') | ||
}) | ||
|
||
let signaturesRequired = parseInt(process.argv[3]) | ||
|
||
var redeemScript = bitcoin.script.multisig.output.encode(signaturesRequired, pubKeys) | ||
var scriptPubKey = bitcoin.script.scriptHash.output.encode(bitcoin.crypto.hash160(redeemScript)) | ||
var address = bitcoin.address.fromOutputScript(scriptPubKey) | ||
|
||
console.log(address) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"dependencies": { | ||
"bitcoinjs-lib": "^4.0.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,259 @@ | ||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | ||
# yarn lockfile v1 | ||
|
||
|
||
base-x@^3.0.2: | ||
version "3.0.4" | ||
resolved "https://registry.yarnpkg.com/base-x/-/base-x-3.0.4.tgz#94c1788736da065edb1d68808869e357c977fa77" | ||
integrity sha512-UYOadoSIkEI/VrRGSG6qp93rp2WdokiAiNYDfGW5qURAY8GiAQkvMbwNNSDYiVJopqv4gCna7xqf4rrNGp+5AA== | ||
dependencies: | ||
safe-buffer "^5.0.1" | ||
|
||
bech32@^1.1.2: | ||
version "1.1.3" | ||
resolved "https://registry.yarnpkg.com/bech32/-/bech32-1.1.3.tgz#bd47a8986bbb3eec34a56a097a84b8d3e9a2dfcd" | ||
integrity sha512-yuVFUvrNcoJi0sv5phmqc6P+Fl1HjRDRNOOkHY2X/3LBy2bIGNSFx4fZ95HMaXHupuS7cZR15AsvtmCIF4UEyg== | ||
|
||
bindings@^1.3.0: | ||
version "1.3.0" | ||
resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.3.0.tgz#b346f6ecf6a95f5a815c5839fc7cdb22502f1ed7" | ||
integrity sha512-DpLh5EzMR2kzvX1KIlVC0VkC3iZtHKTgdtZ0a3pglBZdaQFjt5S9g9xd1lE+YvXyfd6mtCeRnrUfOLYiTMlNSw== | ||
|
||
bip32@^1.0.0: | ||
version "1.0.2" | ||
resolved "https://registry.yarnpkg.com/bip32/-/bip32-1.0.2.tgz#982e2ad2cae6fc6a2f53dda3e6c3be9364674b28" | ||
integrity sha512-kedLYj8yvYzND+EfzeoMSlGiN7ImiRBF/MClJSZPkMfcU+OQO7ZpL5L/Yg+TunebBZIHhunstiQF//KLKSF5rg== | ||
dependencies: | ||
bs58check "^2.1.1" | ||
create-hash "^1.2.0" | ||
create-hmac "^1.1.7" | ||
tiny-secp256k1 "^1.0.0" | ||
typeforce "^1.11.5" | ||
wif "^2.0.6" | ||
|
||
bip66@^1.1.0: | ||
version "1.1.5" | ||
resolved "https://registry.yarnpkg.com/bip66/-/bip66-1.1.5.tgz#01fa8748785ca70955d5011217d1b3139969ca22" | ||
integrity sha1-AfqHSHhcpwlV1QESF9GzE5lpyiI= | ||
dependencies: | ||
safe-buffer "^5.0.1" | ||
|
||
bitcoin-ops@^1.3.0, bitcoin-ops@^1.4.0: | ||
version "1.4.1" | ||
resolved "https://registry.yarnpkg.com/bitcoin-ops/-/bitcoin-ops-1.4.1.tgz#e45de620398e22fd4ca6023de43974ff42240278" | ||
integrity sha512-pef6gxZFztEhaE9RY9HmWVmiIHqCb2OyS4HPKkpc6CIiiOa3Qmuoylxc5P2EkU3w+5eTSifI9SEZC88idAIGow== | ||
|
||
bitcoinjs-lib@^4.0.2: | ||
version "4.0.2" | ||
resolved "https://registry.yarnpkg.com/bitcoinjs-lib/-/bitcoinjs-lib-4.0.2.tgz#84fc9d14774c07581ad1795f2444706fc3f7a666" | ||
integrity sha512-Y6AW91WPDoDQQLy4FejVoH4NvENqvMy+Q/8mnakEzckG1NXiLo0VgnEZyuvZb6lkhE2+YxzTCgpqzbnerOSpEg== | ||
dependencies: | ||
bech32 "^1.1.2" | ||
bip32 "^1.0.0" | ||
bip66 "^1.1.0" | ||
bitcoin-ops "^1.4.0" | ||
bs58check "^2.0.0" | ||
create-hash "^1.1.0" | ||
create-hmac "^1.1.3" | ||
merkle-lib "^2.0.10" | ||
pushdata-bitcoin "^1.0.1" | ||
randombytes "^2.0.1" | ||
safe-buffer "^5.1.1" | ||
tiny-secp256k1 "^1.0.0" | ||
typeforce "^1.11.3" | ||
varuint-bitcoin "^1.0.4" | ||
wif "^2.0.1" | ||
|
||
bn.js@^4.11.8, bn.js@^4.4.0: | ||
version "4.11.8" | ||
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" | ||
integrity sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA== | ||
|
||
brorand@^1.0.1: | ||
version "1.1.0" | ||
resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" | ||
integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= | ||
|
||
bs58@^4.0.0: | ||
version "4.0.1" | ||
resolved "https://registry.yarnpkg.com/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" | ||
integrity sha1-vhYedsNU9veIrkBx9j806MTwpCo= | ||
dependencies: | ||
base-x "^3.0.2" | ||
|
||
bs58check@<3.0.0, bs58check@^2.0.0, bs58check@^2.1.1: | ||
version "2.1.2" | ||
resolved "https://registry.yarnpkg.com/bs58check/-/bs58check-2.1.2.tgz#53b018291228d82a5aa08e7d796fdafda54aebfc" | ||
integrity sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA== | ||
dependencies: | ||
bs58 "^4.0.0" | ||
create-hash "^1.1.0" | ||
safe-buffer "^5.1.2" | ||
|
||
cipher-base@^1.0.1, cipher-base@^1.0.3: | ||
version "1.0.4" | ||
resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" | ||
integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== | ||
dependencies: | ||
inherits "^2.0.1" | ||
safe-buffer "^5.0.1" | ||
|
||
create-hash@^1.1.0, create-hash@^1.2.0: | ||
version "1.2.0" | ||
resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" | ||
integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== | ||
dependencies: | ||
cipher-base "^1.0.1" | ||
inherits "^2.0.1" | ||
md5.js "^1.3.4" | ||
ripemd160 "^2.0.1" | ||
sha.js "^2.4.0" | ||
|
||
create-hmac@^1.1.3, create-hmac@^1.1.7: | ||
version "1.1.7" | ||
resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" | ||
integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== | ||
dependencies: | ||
cipher-base "^1.0.3" | ||
create-hash "^1.1.0" | ||
inherits "^2.0.1" | ||
ripemd160 "^2.0.0" | ||
safe-buffer "^5.0.1" | ||
sha.js "^2.4.8" | ||
|
||
elliptic@^6.4.0: | ||
version "6.4.1" | ||
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.1.tgz#c2d0b7776911b86722c632c3c06c60f2f819939a" | ||
integrity sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ== | ||
dependencies: | ||
bn.js "^4.4.0" | ||
brorand "^1.0.1" | ||
hash.js "^1.0.0" | ||
hmac-drbg "^1.0.0" | ||
inherits "^2.0.1" | ||
minimalistic-assert "^1.0.0" | ||
minimalistic-crypto-utils "^1.0.0" | ||
|
||
hash-base@^3.0.0: | ||
version "3.0.4" | ||
resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" | ||
integrity sha1-X8hoaEfs1zSZQDMZprCj8/auSRg= | ||
dependencies: | ||
inherits "^2.0.1" | ||
safe-buffer "^5.0.1" | ||
|
||
hash.js@^1.0.0, hash.js@^1.0.3: | ||
version "1.1.5" | ||
resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.5.tgz#e38ab4b85dfb1e0c40fe9265c0e9b54854c23812" | ||
integrity sha512-eWI5HG9Np+eHV1KQhisXWwM+4EPPYe5dFX1UZZH7k/E3JzDEazVH+VGlZi6R94ZqImq+A3D1mCEtrFIfg/E7sA== | ||
dependencies: | ||
inherits "^2.0.3" | ||
minimalistic-assert "^1.0.1" | ||
|
||
hmac-drbg@^1.0.0: | ||
version "1.0.1" | ||
resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" | ||
integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= | ||
dependencies: | ||
hash.js "^1.0.3" | ||
minimalistic-assert "^1.0.0" | ||
minimalistic-crypto-utils "^1.0.1" | ||
|
||
inherits@^2.0.1, inherits@^2.0.3: | ||
version "2.0.3" | ||
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" | ||
integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= | ||
|
||
md5.js@^1.3.4: | ||
version "1.3.5" | ||
resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" | ||
integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== | ||
dependencies: | ||
hash-base "^3.0.0" | ||
inherits "^2.0.1" | ||
safe-buffer "^5.1.2" | ||
|
||
merkle-lib@^2.0.10: | ||
version "2.0.10" | ||
resolved "https://registry.yarnpkg.com/merkle-lib/-/merkle-lib-2.0.10.tgz#82b8dbae75e27a7785388b73f9d7725d0f6f3326" | ||
integrity sha1-grjbrnXieneFOItz+ddyXQ9vMyY= | ||
|
||
minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: | ||
version "1.0.1" | ||
resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" | ||
integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== | ||
|
||
minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: | ||
version "1.0.1" | ||
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" | ||
integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= | ||
|
||
nan@^2.10.0: | ||
version "2.11.1" | ||
resolved "https://registry.yarnpkg.com/nan/-/nan-2.11.1.tgz#90e22bccb8ca57ea4cd37cc83d3819b52eea6766" | ||
integrity sha512-iji6k87OSXa0CcrLl9z+ZiYSuR2o+c0bGuNmXdrhTQTakxytAFsC56SArGYoiHlJlFoHSnvmhpceZJaXkVuOtA== | ||
|
||
pushdata-bitcoin@^1.0.1: | ||
version "1.0.1" | ||
resolved "https://registry.yarnpkg.com/pushdata-bitcoin/-/pushdata-bitcoin-1.0.1.tgz#15931d3cd967ade52206f523aa7331aef7d43af7" | ||
integrity sha1-FZMdPNlnreUiBvUjqnMxrvfUOvc= | ||
dependencies: | ||
bitcoin-ops "^1.3.0" | ||
|
||
randombytes@^2.0.1: | ||
version "2.0.6" | ||
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" | ||
integrity sha512-CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A== | ||
dependencies: | ||
safe-buffer "^5.1.0" | ||
|
||
ripemd160@^2.0.0, ripemd160@^2.0.1: | ||
version "2.0.2" | ||
resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" | ||
integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== | ||
dependencies: | ||
hash-base "^3.0.0" | ||
inherits "^2.0.1" | ||
|
||
safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2: | ||
version "5.1.2" | ||
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" | ||
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== | ||
|
||
sha.js@^2.4.0, sha.js@^2.4.8: | ||
version "2.4.11" | ||
resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" | ||
integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== | ||
dependencies: | ||
inherits "^2.0.1" | ||
safe-buffer "^5.0.1" | ||
|
||
tiny-secp256k1@^1.0.0: | ||
version "1.0.1" | ||
resolved "https://registry.yarnpkg.com/tiny-secp256k1/-/tiny-secp256k1-1.0.1.tgz#fc6f96529c22b92be91e12de4040fdd9245f7835" | ||
integrity sha512-Wz2kMPWtCI5XBftFeF3bUL8uz2+VlasniKwOkRPjvL7h1QVd9rbhrve/HWUu747kJKzVf1XHonzcdM4Ut8fvww== | ||
dependencies: | ||
bindings "^1.3.0" | ||
bn.js "^4.11.8" | ||
create-hmac "^1.1.7" | ||
elliptic "^6.4.0" | ||
nan "^2.10.0" | ||
|
||
typeforce@^1.11.3, typeforce@^1.11.5: | ||
version "1.15.1" | ||
resolved "https://registry.yarnpkg.com/typeforce/-/typeforce-1.15.1.tgz#fe24533cb3dbff2b79a3556bb3a3d4854850b2a5" | ||
integrity sha512-RYgFG+2GXx4V7guHOhW0cvryg/iWAoopbF/WlOI25YoV9rsOQ0E8bKfYAEZbJL0LJ8yVqcwp77tDG+oebBSNNw== | ||
|
||
varuint-bitcoin@^1.0.4: | ||
version "1.1.0" | ||
resolved "https://registry.yarnpkg.com/varuint-bitcoin/-/varuint-bitcoin-1.1.0.tgz#7a343f50537607af6a3059312b9782a170894540" | ||
integrity sha512-jCEPG+COU/1Rp84neKTyDJQr478/hAfVp5xxYn09QEH0yBjbmPeMfuuQIrp+BUD83hybtYZKhr5elV3bvdV1bA== | ||
dependencies: | ||
safe-buffer "^5.1.1" | ||
|
||
wif@^2.0.1, wif@^2.0.6: | ||
version "2.0.6" | ||
resolved "https://registry.yarnpkg.com/wif/-/wif-2.0.6.tgz#08d3f52056c66679299726fade0d432ae74b4704" | ||
integrity sha1-CNP1IFbGZnkplyb63g1DKudLRwQ= | ||
dependencies: | ||
bs58check "<3.0.0" |