Adding FIO -Foundation for Interwallet Operability

FIO - Foundation for Interwallet Operability.

https://fioprotocol.io
This commit is contained in:
Shawn Arney
2020-04-29 16:48:00 -06:00
committed by Ian Coleman
parent e284827677
commit d1d8699fc4
6 changed files with 65 additions and 0 deletions

View File

@@ -88,4 +88,24 @@ module.exports.unorm = require('unorm')
module.exports.zxcvbn = require('zxcvbn')
/* handshake */
module.exports.handshake = require('handshake-util')
/* bs58 */
try {
module.exports.bs58 = require('bs58')
}
catch (e) {
console.warn("Error loading bs58 library");
console.warn(e);
};
/* create-hash */
try {
module.exports.createHash = require('create-hash')
}
catch (e) {
console.warn("Error loading create-hash library");
console.warn(e);
};

3
libs/combined/package.json Normal file → Executable file
View File

@@ -11,7 +11,9 @@
"bip38": "2.0.2",
"bip38grs": "git://github.com/Groestlcoin/bip38grs.git#091975b01679b74dc0a4136bb743fe17791b0151",
"bitcoinjs-lib": "git://github.com/iancoleman/bitcoinjs-lib.git#v3.3.2_16bit",
"bs58": "^4.0.1",
"buffer": "5.4.3",
"create-hash": "^1.2.0",
"ed25519-hd-key": "^1.0.0",
"elastos-wallet-js": "git://github.com/johnnynanjiang/Elastos.SDK.Keypair.Javascript.git#491dc51b64efaf0a8aae62028b68e2c8e38fde06",
"ethereumjs-util": "6.0.0",
@@ -19,6 +21,7 @@
"fast-levenshtein": "2.0.6",
"groestlcoinjs-lib": "git://github.com/Groestlcoin/groestlcoinjs-lib.git#3.3.2",
"javascript-biginteger": "0.9.2",
"jsrsasign": "^8.0.15",
"kjua": "0.6.0",
"nebulas": "0.5.6",
"stellar-base": "^0.10.0",