Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default class TCaBCIClient {
_connected = false
_chainName = 'transferchain'
_chainVersion = 'v1'
_version = `v2.5.9`
_version = `v2.5.10`
/**
* @type {?SuccessCallback}
*/
Expand Down
4 changes: 2 additions & 2 deletions constants.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const SUBSCRIBEMessage = 'subscribe',
UNSUBSCRIBEMessage = 'unsubscribe',
CHARACTERS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789',
READ_NODE_ADDRESS = 'https://test-read-node-01.transferchain.io',
READ_NODE_WS_ADDRESS = 'wss://test-read-node-01.transferchain.io/ws'
READ_NODE_ADDRESS = 'https://read-node-01.transferchain.io',
READ_NODE_WS_ADDRESS = 'wss://read-node-01.transferchain.io/ws'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tchain/tcabci-read-js-client",
"version": "2.5.9",
"version": "2.5.10",
"description": "TransferChain Fastest Read Network WebSocket Client",
"main": "client.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion websocketOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class Options {
_protocols = []
_customWS
_endpoints = ['ws', 'longpoll']
_version = `v2.5.9`
_version = `v2.5.10`

_maxConnectionDelay = 10000
_minReconnectionDelay = 1000 + Math.random() * 4000
Expand Down