You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
400 B
15 lines
400 B
/*
|
|
* Bitcore bindings for the browser
|
|
*/
|
|
|
|
|
|
module.exports.bignum = require('bignum');
|
|
module.exports.base58 = require('base58-native');
|
|
module.exports.Manu = require('./util/manu').class();
|
|
module.exports.EncodedData = require('./util/EncodedData');
|
|
|
|
|
|
if (typeof process.versions === 'undefined') {
|
|
module.exports.bignum.config({EXPONENTIAL_AT: 9999999, DECIMAL_PLACES: 0, ROUNDING_MODE: 1});
|
|
}
|
|
|
|
|