diff options
author | Shawn Arney <shawn@arneyconsulting.com> | 2020-04-29 16:48:00 -0600 |
---|---|---|
committer | Ian Coleman <ian@iancoleman.io> | 2020-05-11 08:43:55 +1000 |
commit | d1d8699fc4f1599de39e643acc1d8be52114dd58 (patch) | |
tree | 45cf5b16dfae38f37380ea20ddeb88d0990ab68b /libs | |
parent | e284827677b7f9fa591e86c74f7310bd00308654 (diff) | |
download | BIP39-d1d8699fc4f1599de39e643acc1d8be52114dd58.tar.gz BIP39-d1d8699fc4f1599de39e643acc1d8be52114dd58.tar.zst BIP39-d1d8699fc4f1599de39e643acc1d8be52114dd58.zip |
Adding FIO -Foundation for Interwallet Operability
FIO - Foundation for Interwallet Operability.
https://fioprotocol.io
Diffstat (limited to 'libs')
-rw-r--r-- | libs/combined/index.js | 20 | ||||
-rwxr-xr-x[-rw-r--r--] | libs/combined/package.json | 3 |
2 files changed, 23 insertions, 0 deletions
diff --git a/libs/combined/index.js b/libs/combined/index.js index a9b716a..43524ef 100644 --- a/libs/combined/index.js +++ b/libs/combined/index.js | |||
@@ -88,4 +88,24 @@ module.exports.unorm = require('unorm') | |||
88 | 88 | ||
89 | module.exports.zxcvbn = require('zxcvbn') | 89 | module.exports.zxcvbn = require('zxcvbn') |
90 | 90 | ||
91 | /* handshake */ | ||
91 | module.exports.handshake = require('handshake-util') | 92 | module.exports.handshake = require('handshake-util') |
93 | |||
94 | /* bs58 */ | ||
95 | try { | ||
96 | module.exports.bs58 = require('bs58') | ||
97 | } | ||
98 | catch (e) { | ||
99 | console.warn("Error loading bs58 library"); | ||
100 | console.warn(e); | ||
101 | }; | ||
102 | |||
103 | /* create-hash */ | ||
104 | try { | ||
105 | module.exports.createHash = require('create-hash') | ||
106 | } | ||
107 | catch (e) { | ||
108 | console.warn("Error loading create-hash library"); | ||
109 | console.warn(e); | ||
110 | }; | ||
111 | |||
diff --git a/libs/combined/package.json b/libs/combined/package.json index de0badc..76d908d 100644..100755 --- a/libs/combined/package.json +++ b/libs/combined/package.json | |||
@@ -11,7 +11,9 @@ | |||
11 | "bip38": "2.0.2", | 11 | "bip38": "2.0.2", |
12 | "bip38grs": "git://github.com/Groestlcoin/bip38grs.git#091975b01679b74dc0a4136bb743fe17791b0151", | 12 | "bip38grs": "git://github.com/Groestlcoin/bip38grs.git#091975b01679b74dc0a4136bb743fe17791b0151", |
13 | "bitcoinjs-lib": "git://github.com/iancoleman/bitcoinjs-lib.git#v3.3.2_16bit", | 13 | "bitcoinjs-lib": "git://github.com/iancoleman/bitcoinjs-lib.git#v3.3.2_16bit", |
14 | "bs58": "^4.0.1", | ||
14 | "buffer": "5.4.3", | 15 | "buffer": "5.4.3", |
16 | "create-hash": "^1.2.0", | ||
15 | "ed25519-hd-key": "^1.0.0", | 17 | "ed25519-hd-key": "^1.0.0", |
16 | "elastos-wallet-js": "git://github.com/johnnynanjiang/Elastos.SDK.Keypair.Javascript.git#491dc51b64efaf0a8aae62028b68e2c8e38fde06", | 18 | "elastos-wallet-js": "git://github.com/johnnynanjiang/Elastos.SDK.Keypair.Javascript.git#491dc51b64efaf0a8aae62028b68e2c8e38fde06", |
17 | "ethereumjs-util": "6.0.0", | 19 | "ethereumjs-util": "6.0.0", |
@@ -19,6 +21,7 @@ | |||
19 | "fast-levenshtein": "2.0.6", | 21 | "fast-levenshtein": "2.0.6", |
20 | "groestlcoinjs-lib": "git://github.com/Groestlcoin/groestlcoinjs-lib.git#3.3.2", | 22 | "groestlcoinjs-lib": "git://github.com/Groestlcoin/groestlcoinjs-lib.git#3.3.2", |
21 | "javascript-biginteger": "0.9.2", | 23 | "javascript-biginteger": "0.9.2", |
24 | "jsrsasign": "^8.0.15", | ||
22 | "kjua": "0.6.0", | 25 | "kjua": "0.6.0", |
23 | "nebulas": "0.5.6", | 26 | "nebulas": "0.5.6", |
24 | "stellar-base": "^0.10.0", | 27 | "stellar-base": "^0.10.0", |