aboutsummaryrefslogtreecommitdiff
path: root/libs/stellar-util/stellar-util.js
diff options
context:
space:
mode:
Diffstat (limited to 'libs/stellar-util/stellar-util.js')
-rw-r--r--libs/stellar-util/stellar-util.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/libs/stellar-util/stellar-util.js b/libs/stellar-util/stellar-util.js
index a95d78d..008dfe6 100644
--- a/libs/stellar-util/stellar-util.js
+++ b/libs/stellar-util/stellar-util.js
@@ -5,5 +5,12 @@ window.stellarUtil = {
5 getKeypair: function (path, seed) { 5 getKeypair: function (path, seed) {
6 const result = edHd.derivePath(path, seed); 6 const result = edHd.derivePath(path, seed);
7 return StellarBase.Keypair.fromRawEd25519Seed(result.key); 7 return StellarBase.Keypair.fromRawEd25519Seed(result.key);
8 } 8 },
9 dummyNetwork: {
10 bip32: {public: 0, private: 0},
11 messagePrefix: '',
12 pubKeyHash: 0,
13 scriptHash: 0,
14 wif: 0,
15 },
9} 16}