@clonegod/ttd-core 2.0.90 → 2.0.92

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -43,7 +43,7 @@ function get_sui_token_price_info(addresses) {
43
43
  for (const channel of PRICE_CHANNELS) {
44
44
  if (addresses.length === 0)
45
45
  break;
46
- (0, index_1.log_debug)(`[get_token_price_info] Processing ${addresses.length} tokens using ${channel.name}`);
46
+ (0, index_1.log_info)(`[get_token_price_info] Processing ${addresses.length} tokens using ${channel.name}`);
47
47
  const batches = (0, index_1.chunkArray)(addresses, channel.batchSize);
48
48
  (0, index_1.log_debug)(`[get_token_price_info] Split into ${batches.length} batches of size ${channel.batchSize}`);
49
49
  let remainingAddresses = [...addresses];
@@ -24,7 +24,6 @@ class WebSocketClient {
24
24
  this.isReconnecting = false;
25
25
  this.url = url;
26
26
  this.options = Object.assign({ reconnectInterval: 3000, rejectUnauthorized: false, keepAlive: false, keepAliveInterval: 30000 }, options);
27
- (0, dist_1.log_info)(`WebSocketClient constructor, url: ${this.url}`, this.options);
28
27
  }
29
28
  connect() {
30
29
  (0, dist_1.log_info)(`Connecting to ${this.url}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clonegod/ttd-core",
3
- "version": "2.0.90",
3
+ "version": "2.0.92",
4
4
  "description": "Common types and utilities for trading systems - use `npm run push` to publish",
5
5
  "main": "dist/index.js",
6
6
  "types": "types/index.d.ts",