Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.

Latest commit

 

History

History
21 lines (20 loc) · 795 Bytes

path.md

File metadata and controls

21 lines (20 loc) · 795 Bytes

Path

  • path - string | Array<number> in BIP44 path scheme or Array of hardended numbers.

Examples

Bitcoin account 1 using BIP44 derivation path

"m/49'/0/'0'"

Bitcoin account 1 using hardended path

[(49 | 0x80000000) >>> 0, (0 | 0x80000000 >>> 0), (0 | 0x80000000) >>> 0]

Bitcoin first address address of account 1 using BIP44 derivation path

"m/49'/0/'0'/0/0"

Bitcoin first address address of account 1 using hardended path

[(49 | 0x80000000) >>> 0, (0 | 0x80000000) >>> 0, (0 | 0x80000000) >>> 0, 0, 0]

See more examples