diff --git a/src/helpers/derivations.js b/src/helpers/derivations.js index 0ff30c3c..2b74942a 100644 --- a/src/helpers/derivations.js +++ b/src/helpers/derivations.js @@ -9,13 +9,13 @@ type Derivation = ({ const ethLegacyMEW: Derivation = ({ x }) => `44'/60'/0'/${x}` -const etcLegacyMEW: Derivation = ({ x }) => `44'/60'/160720'/${x}` +const etcLegacyMEW: Derivation = ({ x }) => `44'/60'/160720'/${x}'/0` const rippleLegacy: Derivation = ({ x }) => `44'/144'/0'/${x}'` const legacyDerivations = { ethereum: [ethLegacyMEW], - ethereum_classic: [etcLegacyMEW], + ethereum_classic: [ethLegacyMEW, etcLegacyMEW], ripple: [rippleLegacy], }