@clonegod/ttd-sol-common 2.0.2 → 2.0.3

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.
@@ -1 +1,2 @@
1
1
  export * from './pricing';
2
+ export * from './types';
@@ -15,3 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./pricing"), exports);
18
+ __exportStar(require("./types"), exports);
@@ -1,4 +1,4 @@
1
- export interface SolanaPoolAccountUpdateData {
1
+ export interface SolanaAccountUpdateData {
2
2
  recv_ms: number;
3
3
  slot: number;
4
4
  writeVersion: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clonegod/ttd-sol-common",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "types/index.d.ts",
@@ -1 +1,2 @@
1
- export * from './pricing'
1
+ export * from './pricing'
2
+ export * from './types'
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Solana 池子账户更新事件数据结构
3
3
  */
4
- export interface SolanaPoolAccountUpdateData {
4
+ export interface SolanaAccountUpdateData {
5
5
  recv_ms: number; // 接收时间戳(毫秒)
6
6
 
7
7
  // 公共字段