@pioneer-platform/pioneer-coins 9.2.18 → 9.2.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/paths.js +1 -6
- package/package.json +1 -1
package/lib/paths.js
CHANGED
|
@@ -108,17 +108,12 @@ function getPaths(blockchains, isTestnet) {
|
|
|
108
108
|
if (blockchains.some(function (blockchain) { return blockchain.includes('eip155:'); })) {
|
|
109
109
|
var entry = {
|
|
110
110
|
note: " ETH primary (default)",
|
|
111
|
-
|
|
112
|
-
symbolSwapKit: 'ETH',
|
|
113
|
-
network: 'eip155:1',
|
|
114
|
-
script_type: "ethereum",
|
|
115
|
-
available_scripts_types: ['ethereum'],
|
|
111
|
+
networks: ['eip155:1', 'eip155:*'],
|
|
116
112
|
type: "address",
|
|
117
113
|
addressNList: [0x80000000 + 44, 0x80000000 + 60, 0x80000000 + 0],
|
|
118
114
|
addressNListMaster: [0x80000000 + 44, 0x80000000 + 60, 0x80000000 + 0, 0, 0],
|
|
119
115
|
curve: 'secp256k1',
|
|
120
116
|
showDisplay: false, // Not supported by TrezorConnect or Ledger, but KeepKey should do it
|
|
121
|
-
blockchain: 'ethereum'
|
|
122
117
|
};
|
|
123
118
|
if (isTestnet)
|
|
124
119
|
entry.testnet = true;
|