Monday, September 23, 2024
HomeBitcoinnode.js - Easy methods to convert HD pockets grasp key to prolonged...

node.js – Easy methods to convert HD pockets grasp key to prolonged key and little one keys in javascript?


I am attempting to learn the way HD wallets work internally by writing javascript code that may derive little one keys from father or mother keys. To this point, the one factor I have been capable of do is convert a BIP39-generated seed to a grasp key and chain code. I can try this efficiently.

Now I want to convert the grasp key to an prolonged key, the lengthy string that begins with xprv. I might additionally wish to know find out how to derive little one keys from these, and acquire the non-public key for signing with any of the accounts.

I have been utilizing this complicated BIP32 doc as a information to this point, however I am getting nowhere with it. So far as I can inform, earlier than you derive any keys, you need to serialize those you have already got.

The serialization course of is described like this:

Prolonged private and non-private keys are serialized as follows:

  • 4 byte: model bytes (mainnet: 0x0488B21E public, 0x0488ADE4 non-public;
    testnet: 0x043587CF public, 0x04358394 non-public)
  • 1 byte: depth: 0x00 for grasp nodes, 0x01 for level-1 derived keys, ….
  • 4 bytes: the fingerprint of the father or mother’s key (0x00000000 if grasp key)
  • 4 bytes: little one quantity. That is ser32(i) for i in xi = xpar/i, with xi the important thing
    being serialized. (0x00000000 if grasp key)
  • 32 bytes: the chain code
  • 33 bytes: the general public key or non-public key information (serP(Okay) for public keys,
    0x00 || ser256(okay) for personal keys)

This 78 byte construction may be
encoded like different Bitcoin information in Base58, by first including 32 checksum
bits (derived from the double SHA-256 checksum), after which changing
to the Base58 illustration. This leads to a Base58-encoded string
of as much as 112 characters. Due to the selection of the model bytes,
the Base58 illustration will begin with “xprv” or “xpub” on mainnet,
“tprv” or “tpub” on testnet.

Right here is the javascript code I wrote in trying to observe these directions.

const crypto = require ('crypto');
const base58 = require ('base58');

const master_key_hex = '5a02ee5cb622f15a4e7ab3dfe7faa9861738da2ae7bb936c685af4dd7b1fbdee';
const chain_code_hex = 'abfbc73691eaad7ca4eb5e25bc51c5804af221cc27a23460634498497f92c92c';

// the 78 bytes of information
var information="0488ade4";
information += '00';
information += '00000000';
information += '00000000';
information += chain_code_hex;
information += '00' + master_key_hex;

// add the checksum
const hash_1 = crypto.createHash ('sha256');
var sha_256_1 = hash_1.replace (information, 'hex').digest ('hex');
const hash_2 = crypto.createHash ('sha256');
var sha_256_2 = hash_2.replace (sha_256_1, 'hex').digest ('hex');

var data_with_checksum = information + sha_256_2;

//information = Buffer.from (data_with_checksum, 'hex');
var end result = base58.encode (data_with_checksum);
console.log (end result);

I attempted it with a string and with a Buffer and it gave me the identical error message each instances. The error message is:

Error: Worth handed will not be a non-negative protected integer.

I’ve a sense I’m not even near doing this proper. Does anybody know the way it needs to be coded to derive little one keys from a grasp key?

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments