aboutsummaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorShawn Arney <shawn@arneyconsulting.com>2020-04-29 16:48:00 -0600
committerIan Coleman <ian@iancoleman.io>2020-05-11 08:43:55 +1000
commitd1d8699fc4f1599de39e643acc1d8be52114dd58 (patch)
tree45cf5b16dfae38f37380ea20ddeb88d0990ab68b /libs
parente284827677b7f9fa591e86c74f7310bd00308654 (diff)
downloadBIP39-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.js20
-rwxr-xr-x[-rw-r--r--]libs/combined/package.json3
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
89module.exports.zxcvbn = require('zxcvbn') 89module.exports.zxcvbn = require('zxcvbn')
90 90
91/* handshake */
91module.exports.handshake = require('handshake-util') 92module.exports.handshake = require('handshake-util')
93
94/* bs58 */
95try {
96 module.exports.bs58 = require('bs58')
97}
98catch (e) {
99 console.warn("Error loading bs58 library");
100 console.warn(e);
101};
102
103/* create-hash */
104try {
105 module.exports.createHash = require('create-hash')
106}
107catch (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",