@clonegod/ttd-sol-common 2.0.2 → 2.0.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/dist/quote/index.d.ts +1 -0
- package/dist/quote/index.js +1 -0
- package/dist/quote/types.d.ts +2 -1
- package/package.json +1 -1
- package/src/quote/index.ts +2 -1
- package/src/quote/types.ts +4 -1
package/dist/quote/index.d.ts
CHANGED
package/dist/quote/index.js
CHANGED
package/dist/quote/types.d.ts
CHANGED
package/package.json
CHANGED
package/src/quote/index.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export * from './pricing'
|
|
1
|
+
export * from './pricing'
|
|
2
|
+
export * from './types'
|
package/src/quote/types.ts
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Solana 池子账户更新事件数据结构
|
|
3
3
|
*/
|
|
4
|
-
export interface
|
|
4
|
+
export interface SolanaAccountUpdateData {
|
|
5
5
|
recv_ms: number; // 接收时间戳(毫秒)
|
|
6
6
|
|
|
7
|
+
// provider_id: 'helius-laserstream',
|
|
8
|
+
providerId: string; // 提供者 ID
|
|
9
|
+
|
|
7
10
|
// 公共字段
|
|
8
11
|
slot: number; // Solana slot 号
|
|
9
12
|
writeVersion: number; // 账户写入版本
|