@drift-labs/sdk 2.48.0-beta.3 → 2.48.0-beta.4

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.
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.48.0-beta.3
1
+ 2.48.0-beta.4
@@ -152,7 +152,6 @@ class UserStatsMap {
152
152
  * You may want to get this list from UserMap in order to filter out idle users
153
153
  */
154
154
  async sync(authorities) {
155
- console.log(`USER MAP SIYCING AUTHS: ${authorities.length}`);
156
155
  await Promise.all(authorities.map((authority) => this.addUserStat(authority, undefined, true)));
157
156
  await this.bulkAccountLoader.load();
158
157
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drift-labs/sdk",
3
- "version": "2.48.0-beta.3",
3
+ "version": "2.48.0-beta.4",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "author": "crispheaney",
@@ -201,7 +201,6 @@ export class UserStatsMap {
201
201
  * You may want to get this list from UserMap in order to filter out idle users
202
202
  */
203
203
  public async sync(authorities: PublicKey[]) {
204
- console.log(`USER MAP SIYCING AUTHS: ${authorities.length}`);
205
204
  await Promise.all(
206
205
  authorities.map((authority) =>
207
206
  this.addUserStat(authority, undefined, true)