diff options
| author | Seth For Privacy <github.5dbwg@simplelogin.com> | 2023-04-04 14:11:50 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-04 14:11:50 -0400 |
| commit | 59e51957842a46838901c5e48242cd3a9cfd3185 (patch) | |
| tree | 6ef8b07cd9d65a5ea72e8825235b50ed28fa1d8a | |
| parent | c6e14c808775ec6ca0a721fe273b4de7124dd143 (diff) | |
Use account instead of address_index
| -rw-r--r-- | 06.md | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -8,8 +8,8 @@ Basic key derivation from mnemonic seed phrase | |||
| 8 | 8 | ||
| 9 | [BIP39](https://bips.xyz/39) is used to generate mnemonic seed words and derive a binary seed from them. | 9 | [BIP39](https://bips.xyz/39) is used to generate mnemonic seed words and derive a binary seed from them. |
| 10 | 10 | ||
| 11 | [BIP32](https://bips.xyz/32) is used to derive the path `m/44'/1237'/0'/0/<address_index>` (according to the Nostr entry on [SLIP44](https://github.com/satoshilabs/slips/blob/master/slip-0044.md)). | 11 | [BIP32](https://bips.xyz/32) is used to derive the path `m/44'/1237'/<account>'/0/0` (according to the Nostr entry on [SLIP44](https://github.com/satoshilabs/slips/blob/master/slip-0044.md)). |
| 12 | 12 | ||
| 13 | A basic client can simply use an `address_index` of `0` to derive a single key. For more advanced use-cases you can increment `address_index`, allowing generation of practically infinite keys from the 5-level path. | 13 | A basic client can simply use an `account` of `0` to derive a single key. For more advanced use-cases you can increment `account`, allowing generation of practically infinite keys from the 5-level path with hardened derivation. |
| 14 | 14 | ||
| 15 | Other types of clients can still get fancy and use other derivation paths for their own other purposes. | 15 | Other types of clients can still get fancy and use other derivation paths for their own other purposes. |