exonum-client-cis
Version:
Light Client for Exonum CIS Blockchain
20 lines (16 loc) • 339 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.CONFIG = void 0;
var _crypto = require("./crypto");
/**
* Default global library configuration.
*
* Redefine, if needed.
*/
var CONFIG = {
// Library will use NIST cryptography by default.
crypto: _crypto.CRYPTO.NIST
};
exports.CONFIG = CONFIG;