From 33b05b3b90b28909b17602318b28e0235f549bd2 Mon Sep 17 00:00:00 2001 From: BitcoinQnA Date: Mon, 25 Jul 2022 13:21:51 +0100 Subject: [PATCH] Update explainers and v2.0.0 release --- dist/index.html | 21 ++++++++++++++++++--- package.json | 2 +- src/www/dev.html | 2 +- src/www/js/info.js | 19 +++++++++++++++++-- 4 files changed, 37 insertions(+), 7 deletions(-) diff --git a/dist/index.html b/dist/index.html index 7529fce..6e8b61a 100644 --- a/dist/index.html +++ b/dist/index.html @@ -762,7 +762,7 @@

Warning

amnesic operating system like Tails.

- + @@ -190526,12 +190526,26 @@

Warning

SINGLE_ADDRESS: /*html*/ `

Single Address Tool

- Single Address Tool Explainer goes here. + Use this tool to enter private keys in WIF (Wallet Import Format) or Hex format to view the corresponding Public Key (in Hex format) and addresses in Legacy, Wrapped Segwit + and Native Segwit derivations. +

+

+ Selecting 'Multiple Signature Address', defining the signing threshold and importing more than one public key in the same format outlined above will derive the + corresponding multisignature addresses. For importing BIP49 Ypubs or BIP84 Zpubs to check multisig address derivation, please use the separate 'BIP48 Multisig' section + further down the page.

`, MULTISIG: /*html*/ `

Multisig

- Multisig Explainer goes here. + BIP48 defines a logical hierarchy for deterministic multisig wallets based on an algorithm described + in BIP67. This BIP solidifies the industry wide practice of utilizing m/48' derivation paths in hierarchical deterministic multisig wallets. + + The hierarchy proposed allows the handling of multiple accounts, receive and change address lists per account, multiple script types and millions of addresses per chain. +

+

+ Use this tool to sense check the address derivation of any multisig coordinator software. Simply enter the extended public keys of each cosigner in the quorum + (you can also use the extended key of the seed loaded into the tool) and select the number of keys required to sign a transaction (signing threshold). Be sure to add each new public key onto a new line.

`, CHANGELOG: /*html*/ `

Changelog

@@ -190544,6 +190558,7 @@

Changelog

  • V1.0.5 - ADD: Last word calculator
  • V1.0.6 - ADD: Raw Entropy Input Method
  • V1.0.7 - ADD: BIP86 Taproot Address Generation
  • +
  • V2.0.0 - ADD: Predictive seed word input, Single Address Tool and BIP48 Multisig Address Derivation
  • `, UNKNOWN: /*html*/ `

    ERROR: 404

    diff --git a/package.json b/package.json index f2ef2e5..b9c4291 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "seed-tool", - "version": "1.0.7", + "version": "2.0.0", "description": "Bitcoin wallet seed tool", "main": "index.js", "scripts": { diff --git a/src/www/dev.html b/src/www/dev.html index 4aa50fc..48084dd 100644 --- a/src/www/dev.html +++ b/src/www/dev.html @@ -122,7 +122,7 @@

    Warning

    amnesic operating system like Tails.

    - + diff --git a/src/www/js/info.js b/src/www/js/info.js index 0c32b97..c2d9ddd 100644 --- a/src/www/js/info.js +++ b/src/www/js/info.js @@ -496,12 +496,26 @@ window.infoHtml = { SINGLE_ADDRESS: /*html*/ `

    Single Address Tool

    - Single Address Tool Explainer goes here. + Use this tool to enter private keys in WIF (Wallet Import Format) or Hex format to view the corresponding Public Key (in Hex format) and addresses in Legacy, Wrapped Segwit + and Native Segwit derivations. +

    +

    + Selecting 'Multiple Signature Address', defining the signing threshold and importing more than one public key in the same format outlined above will derive the + corresponding multisignature addresses. For importing BIP49 Ypubs or BIP84 Zpubs to check multisig address derivation, please use the separate 'BIP48 Multisig' section + further down the page.

    `, MULTISIG: /*html*/ `

    Multisig

    - Multisig Explainer goes here. + BIP48 defines a logical hierarchy for deterministic multisig wallets based on an algorithm described + in BIP67. This BIP solidifies the industry wide practice of utilizing m/48' derivation paths in hierarchical deterministic multisig wallets. + + The hierarchy proposed allows the handling of multiple accounts, receive and change address lists per account, multiple script types and millions of addresses per chain. +

    +

    + Use this tool to sense check the address derivation of any multisig coordinator software. Simply enter the extended public keys of each cosigner in the quorum + (you can also use the extended key of the seed loaded into the tool) and select the number of keys required to sign a transaction (signing threshold). Be sure to add each new public key onto a new line.

    `, CHANGELOG: /*html*/ `

    Changelog

    @@ -514,6 +528,7 @@ window.infoHtml = {
  • V1.0.5 - ADD: Last word calculator
  • V1.0.6 - ADD: Raw Entropy Input Method
  • V1.0.7 - ADD: BIP86 Taproot Address Generation
  • +
  • V2.0.0 - ADD: Predictive seed word input, Single Address Tool and BIP48 Multisig Address Derivation
  • `, UNKNOWN: /*html*/ `

    ERROR: 404