Gaëtan Renaudeau
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
2 additions and
2 deletions
-
BIN
build/icon.icns
-
src/helpers/anonymizer.js
-
src/helpers/derivations.js
|
|
@ -21,7 +21,7 @@ function filepathReplace(path: string) { |
|
|
|
if (!path) return path |
|
|
|
const replaced = Object.keys(basePaths).reduce((path, name) => { |
|
|
|
const p = basePaths[name] |
|
|
|
return replaced |
|
|
|
return path |
|
|
|
.replace(p, name) // normal replace of the path
|
|
|
|
.replace(encodeURI(p.replace(/\\/g, '/')), name) // replace of the URI version of the path (that are in file:///)
|
|
|
|
}, path) |
|
|
|
|
|
@ -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}'` |
|
|
|