Browse Source

Merge pull request #1258 from LedgerHQ/fix-etc-derivation

Fixes derivation of ETC legacy paths
master
Gaëtan Renaudeau 7 years ago
committed by GitHub
parent
commit
0c03b66b31
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/helpers/derivations.js

2
src/helpers/derivations.js

@ -14,7 +14,7 @@ type Derivation = {
const ethLegacyMEW: Derivation = ({ x }) => `44'/60'/0'/${x}`
ethLegacyMEW.mandatoryEmptyAccountSkip = 10
const etcLegacyMEW: Derivation = ({ x }) => `44'/60'/160720'/${x}'/0`
const etcLegacyMEW: Derivation = ({ x }) => `44'/60'/160720'/0'/${x}`
etcLegacyMEW.mandatoryEmptyAccountSkip = 10
const rippleLegacy: Derivation = ({ x }) => `44'/144'/0'/${x}'`

Loading…
Cancel
Save