@clonegod/ttd-core 2.0.85 → 2.0.87

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clonegod/ttd-core",
3
- "version": "2.0.85",
3
+ "version": "2.0.87",
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",
package/types/index.d.ts CHANGED
@@ -98,6 +98,7 @@ export interface StandardPoolInfoType {
98
98
  tvl?: string|number
99
99
  vol_24h?: string|number
100
100
  update_time?: string
101
+ is_trade_native_token?: boolean // POOL 是否交易的链原生代币(BNB)
101
102
  }
102
103
 
103
104