mirror of
https://github.com/OneKeyHQ/bip39.git
synced 2026-04-05 18:43:47 +00:00
use dummyNetwork for stellar
This commit is contained in:
@@ -5,5 +5,12 @@ window.stellarUtil = {
|
|||||||
getKeypair: function (path, seed) {
|
getKeypair: function (path, seed) {
|
||||||
const result = edHd.derivePath(path, seed);
|
const result = edHd.derivePath(path, seed);
|
||||||
return StellarBase.Keypair.fromRawEd25519Seed(result.key);
|
return StellarBase.Keypair.fromRawEd25519Seed(result.key);
|
||||||
}
|
},
|
||||||
|
dummyNetwork: {
|
||||||
|
bip32: {public: 0, private: 0},
|
||||||
|
messagePrefix: '',
|
||||||
|
pubKeyHash: 0,
|
||||||
|
scriptHash: 0,
|
||||||
|
wif: 0,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2694,7 +2694,7 @@
|
|||||||
{
|
{
|
||||||
name: "XLM - Stellar",
|
name: "XLM - Stellar",
|
||||||
onSelect: function() {
|
onSelect: function() {
|
||||||
network = ''; // doesn't apply, using stellar-lib
|
network = stellarUtil.dummyNetwork;
|
||||||
setHdCoin(148);
|
setHdCoin(148);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -42503,7 +42503,14 @@ window.stellarUtil = {
|
|||||||
getKeypair: function (path, seed) {
|
getKeypair: function (path, seed) {
|
||||||
const result = edHd.derivePath(path, seed);
|
const result = edHd.derivePath(path, seed);
|
||||||
return StellarBase.Keypair.fromRawEd25519Seed(result.key);
|
return StellarBase.Keypair.fromRawEd25519Seed(result.key);
|
||||||
}
|
},
|
||||||
|
dummyNetwork: {
|
||||||
|
bip32: {public: 0, private: 0},
|
||||||
|
messagePrefix: '',
|
||||||
|
pubKeyHash: 0,
|
||||||
|
scriptHash: 0,
|
||||||
|
wif: 0,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
},{"ed25519-hd-key":84,"stellar-base":412}]},{},[445]);
|
},{"ed25519-hd-key":84,"stellar-base":412}]},{},[445]);
|
||||||
|
|||||||
Reference in New Issue
Block a user