@clonegod/ttd-sol-common 2.0.55 → 2.0.57

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.
@@ -13,6 +13,7 @@ export interface SolanaAccountUpdateEvent {
13
13
  dexId: string;
14
14
  poolAddress: string;
15
15
  poolName: string;
16
+ isSubscribeVaultChange: boolean;
16
17
  accountType: SolanaPoolAccountType;
17
18
  accountData?: Buffer | string;
18
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clonegod/ttd-sol-common",
3
- "version": "2.0.55",
3
+ "version": "2.0.57",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "types/index.d.ts",
@@ -22,13 +22,13 @@ export interface SolanaAccountUpdateEvent {
22
22
  dexId: string; // DEX ID
23
23
  poolAddress: string; // 池子地址
24
24
  poolName: string; // 池子名称
25
+ isSubscribeVaultChange: boolean; // 是否订阅 vaultA, vaultB 的变化
25
26
 
26
27
  // 账户类型
27
28
  accountType: SolanaPoolAccountType;
28
29
 
29
30
  // 账户数据(原始数据,由客户端解析)
30
31
  accountData?: Buffer | string; // 账户原始数据
31
-
32
32
  }
33
33
 
34
34
  /**