From 95ed081f051aba27e4c152c2e5a609cafd96a6e8 Mon Sep 17 00:00:00 2001 From: b1acksun Date: Wed, 10 Oct 2018 22:49:52 +0300 Subject: [PATCH] add ecc to module.exports --- package.json | 2 +- src/index.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index dd9e257b..aa4c91f9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "golos-js", - "version": "0.7.4", + "version": "0.7.5", "description": "Golos.js the JavaScript API for Golos blockchain", "main": "lib/index.js", "scripts": { diff --git a/src/index.js b/src/index.js index 6498412e..23cc5977 100644 --- a/src/index.js +++ b/src/index.js @@ -5,6 +5,7 @@ const formatter = require('./formatter')(api); const memo = require('./auth/memo'); const config = require('./config'); const utils = require('./utils'); +const ecc = require('./auth/ecc/'); module.exports = { api, @@ -14,4 +15,5 @@ module.exports = { memo, config, utils, + ecc };