Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 2.13 KB

aex-10.md

File metadata and controls

40 lines (28 loc) · 2.13 KB
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

Simple Summary

This aexpansion specify the derivation path used in the Aeternity blockchain for deterministic wallets

Motivation

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.

Specification

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.

References