mirror of https://github.com/lukechilds/hdkey.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
266 B
12 lines
266 B
|
|
|
|
//Bitcoin hardcoded by default, can use package `coininfo` for others
|
|
var VERSIONS = {private: 0x0488ADE4, public: 0x0488B21E}
|
|
|
|
function HDKey(seed, versions) {
|
|
if (seed == null) throw new Error('Must pass a seed.')
|
|
if (!versions)
|
|
versions = VERSIONS
|
|
|
|
|
|
}
|