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);
};