AEX: 10
Title: Derivation path for deterministic wallets
Author: Andrea Giacobino (@noandrea), Denis Davidyuk (@davidyuk)
License: BSD-3-Clause
Discussions-To: https://forum.aeternity.com/t/aex-10-derivation-path-for-deterministic-wallets/3586
License-Code: ISC
Status: Final
Type: Informational
Created: 2019-03-04
This aexpansion specify the derivation path used in the Aeternity blockchain for deterministic wallets
The aexpansion is meant to avoid incompatibility with deterministic wallet implementations across the Aeternity landscape and to make it easy for the derivation path to be found.
Accounts derivation path is taken from BIP-0044, except that in all path segments hardened derivation is used since SLIP-0010 does not support public derivation.
The derivation path (m/purpose'/coin_type'/account_index'/change'/address_index'
) is therefore:
m/44H/457H/${account_index}H/0H/${address_index}H
where account_index
and address_index
are integer starting from 0
.
The coin type value for Aeternity, 457
, has been generated on random.org and is registered in SLIP-0044.
- Deterministic wallets
BIP-0032
: Hierarchical Deterministic WalletsBIP-0044
: Multi-Account Hierarchy for Deterministic WalletsSLIP-0010
: Universal private key derivation from master private keySLIP-0044
: Registered coin types for BIP-0044BIP32-Ed25519
: Hierarchical Deterministic Keys over a Non-linear Keyspace