Skip to content

Commit

Permalink
release: v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martiliones authored Nov 14, 2022
2 parents 364f31f + 8bbc988 commit 00174ff
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
1 change: 1 addition & 0 deletions keys.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('./src/helpers/keys')
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "adamant-api",
"version": "1.5.0",
"version": "1.6.0",
"description": "REST API for ADAMANT Blockchain",
"main": "src/index.js",
"scripts": {
Expand All @@ -12,18 +12,18 @@
"author": "ADAMANT Foundation <[email protected]> (https://adamant.im)",
"license": "GPL-3.0",
"dependencies": {
"@liskhq/lisk-cryptography": "3.2.0",
"axios": "^0.25.0",
"bignumber.js": "^9.0.2",
"@liskhq/lisk-cryptography": "3.2.1",
"axios": "^1.1.3",
"bignumber.js": "^9.1.0",
"bitcoinjs-lib": "^5.2.0",
"bitcore-mnemonic": "^8.25.25",
"bitcore-mnemonic": "^8.25.40",
"bytebuffer": "^5.0.1",
"coininfo": "^5.1.0",
"coininfo": "^5.2.1",
"ed2curve": "^0.3.0",
"ethereumjs-util": "^7.1.4",
"ethereumjs-util": "^7.1.5",
"hdkey": "^2.0.1",
"pbkdf2": "^3.1.2",
"socket.io-client": "^2.4.0",
"socket.io-client": "^4.5.3",
"sodium-browserify-tweetnacl": "^0.2.6"
},
"publishConfig": {
Expand Down Expand Up @@ -63,12 +63,12 @@
},
"homepage": "https://github.com/Adamant-im/adamant-api-jsclient#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"eslint": "^8.9.0",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"eslint": "^8.27.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^26.1.0",
"husky": "^7.0.4",
"jest": "^27.5.1"
"eslint-plugin-jest": "^27.1.5",
"husky": "^8.0.2",
"jest": "^29.3.1"
}
}
2 changes: 1 addition & 1 deletion src/helpers/wsClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module.exports = {

const node = this.socketAddress();
logger.log(`[Socket] Supported nodes: ${this.activeSocketNodes.length}. Connecting to ${node}...`);
this.connection = ioClient.connect(node, {reconnection: false, timeout: 5000});
this.connection = ioClient(node, {reconnection: false, timeout: 5000});

this.connection.on('connect', () => {
this.connection.emit('address', this.admAddress);
Expand Down

0 comments on commit 00174ff

Please sign in to comment.