@clonegod/ttd-core 2.0.80 → 2.0.82

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.
@@ -23,6 +23,12 @@ export declare const EvmChainConfig: {
23
23
  chain_full_name: string;
24
24
  weth_addr: string;
25
25
  };
26
+ XLAYER: {
27
+ chain_id: number;
28
+ chain_short_name: string;
29
+ chain_full_name: string;
30
+ weth_addr: string;
31
+ };
26
32
  };
27
33
  export type EvmChainInfoType = {
28
34
  chain_id: number;
@@ -26,4 +26,10 @@ exports.EvmChainConfig = {
26
26
  chain_full_name: 'AVALANCHE',
27
27
  weth_addr: "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7".toLowerCase(),
28
28
  },
29
+ "XLAYER": {
30
+ chain_id: 196,
31
+ chain_short_name: 'x-layer',
32
+ chain_full_name: 'xlayer',
33
+ weth_addr: "0x5A77f1443D16ee5761d310e38b62f77f726bC71c".toLowerCase(),
34
+ },
29
35
  };
package/dist/index.d.ts CHANGED
@@ -51,6 +51,8 @@ export declare enum DEX_ID {
51
51
  JUPITER_AGGR = "JUPITER-AGGR",
52
52
  PANCAKE_AMM = "PANCAKE-AMM",
53
53
  PANCAKE_CLMM = "PANCAKE-CLMM",
54
+ PANCAKE_CLAMM = "PANCAKE-CLAMM",
55
+ PANCAKE_BIN = "PANCAKE-BIN",
54
56
  AERODROME_AMM = "AERODROME-AMM",
55
57
  AERODROME_CLMM = "AERODROME-CLMM",
56
58
  UNISWAP_AMM = "UNISWAP-AMM",
package/dist/index.js CHANGED
@@ -135,6 +135,8 @@ var DEX_ID;
135
135
  DEX_ID["JUPITER_AGGR"] = "JUPITER-AGGR";
136
136
  DEX_ID["PANCAKE_AMM"] = "PANCAKE-AMM";
137
137
  DEX_ID["PANCAKE_CLMM"] = "PANCAKE-CLMM";
138
+ DEX_ID["PANCAKE_CLAMM"] = "PANCAKE-CLAMM";
139
+ DEX_ID["PANCAKE_BIN"] = "PANCAKE-BIN";
138
140
  DEX_ID["AERODROME_AMM"] = "AERODROME-AMM";
139
141
  DEX_ID["AERODROME_CLMM"] = "AERODROME-CLMM";
140
142
  DEX_ID["UNISWAP_AMM"] = "UNISWAP-AMM";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clonegod/ttd-core",
3
- "version": "2.0.80",
3
+ "version": "2.0.82",
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",