@clonegod/ttd-core 3.1.115 → 3.1.118

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.
@@ -17,6 +17,12 @@ export declare const EvmChainConfig: {
17
17
  chain_full_name: string;
18
18
  weth_addr: string;
19
19
  };
20
+ ARC: {
21
+ chain_id: number;
22
+ chain_short_name: string;
23
+ chain_full_name: string;
24
+ weth_addr: string;
25
+ };
20
26
  ARBITRUM: {
21
27
  chain_id: number;
22
28
  chain_short_name: string;
@@ -20,6 +20,12 @@ exports.EvmChainConfig = {
20
20
  chain_full_name: 'ROBINHOOD',
21
21
  weth_addr: "0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73".toLowerCase(),
22
22
  },
23
+ ARC: {
24
+ chain_id: 5042,
25
+ chain_short_name: 'ARC',
26
+ chain_full_name: 'ARC',
27
+ weth_addr: "0x3600000000000000000000000000000000000000".toLowerCase(),
28
+ },
23
29
  ARBITRUM: {
24
30
  chain_id: 42161,
25
31
  chain_short_name: 'ARBITRUM',
package/dist/index.d.ts CHANGED
@@ -37,6 +37,7 @@ export declare enum CHAIN_ID {
37
37
  BSC = "BSC",
38
38
  BASE = "BASE",
39
39
  ROBINHOOD = "ROBINHOOD",
40
+ ARC = "ARC",
40
41
  TON = "TON",
41
42
  ETH = "ETH",
42
43
  ARBITRUM = "ARBITRUM",
@@ -76,6 +77,11 @@ export declare enum DEX_ID {
76
77
  UNISWAP_V4 = "UNISWAP-V4",
77
78
  UP_V2 = "UP-V2",
78
79
  UP_V3 = "UP-V3",
80
+ RAMSES_V3 = "RAMSES-V3",
81
+ RAMSES_V2 = "RAMSES-V2",
82
+ RAMSES_DLMM = "RAMSES-DLMM",
83
+ GIGA_V3 = "GIGA-V3",
84
+ GIGA_V2 = "GIGA-V2",
79
85
  MOMENTUM_CLMM = "MOMENTUM-CLMM",
80
86
  CETUS_CLMM = "CETUS-CLMM",
81
87
  BLUEFIN_CLMM = "BLUEFIN-CLMM",
package/dist/index.js CHANGED
@@ -121,6 +121,7 @@ var CHAIN_ID;
121
121
  CHAIN_ID["BSC"] = "BSC";
122
122
  CHAIN_ID["BASE"] = "BASE";
123
123
  CHAIN_ID["ROBINHOOD"] = "ROBINHOOD";
124
+ CHAIN_ID["ARC"] = "ARC";
124
125
  CHAIN_ID["TON"] = "TON";
125
126
  CHAIN_ID["ETH"] = "ETH";
126
127
  CHAIN_ID["ARBITRUM"] = "ARBITRUM";
@@ -161,6 +162,11 @@ var DEX_ID;
161
162
  DEX_ID["UNISWAP_V4"] = "UNISWAP-V4";
162
163
  DEX_ID["UP_V2"] = "UP-V2";
163
164
  DEX_ID["UP_V3"] = "UP-V3";
165
+ DEX_ID["RAMSES_V3"] = "RAMSES-V3";
166
+ DEX_ID["RAMSES_V2"] = "RAMSES-V2";
167
+ DEX_ID["RAMSES_DLMM"] = "RAMSES-DLMM";
168
+ DEX_ID["GIGA_V3"] = "GIGA-V3";
169
+ DEX_ID["GIGA_V2"] = "GIGA-V2";
164
170
  DEX_ID["MOMENTUM_CLMM"] = "MOMENTUM-CLMM";
165
171
  DEX_ID["CETUS_CLMM"] = "CETUS-CLMM";
166
172
  DEX_ID["BLUEFIN_CLMM"] = "BLUEFIN-CLMM";
package/package.json CHANGED
@@ -1,50 +1,50 @@
1
1
  {
2
- "name": "@clonegod/ttd-core",
3
- "version": "3.1.115",
4
- "description": "Common types and utilities for trading systems - use `npm run push` to publish",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "keywords": [],
8
- "author": "",
9
- "license": "ISC",
10
- "scripts": {
11
- "clean": "rm -rf dist node_modules",
12
- "build": "yarn tsc --outDir ./dist",
13
- "push": "npm run build && npm publish"
14
- },
15
- "dependencies": {
16
- "@noble/secp256k1": "1.7.1",
17
- "axios": "1.17.0",
18
- "bn.js": "^5.2.1",
19
- "body-parser": "^1.20.3",
20
- "bs58": "^6.0.0",
21
- "decimal.js": "^10.5.0",
22
- "dotenv": "^16.4.7",
23
- "express": "^4.21.2",
24
- "express-ws": "^5.0.2",
25
- "graphql": "^16.11.0",
26
- "graphql-request": "^7.2.0",
27
- "keccak": "^3.0.4",
28
- "moment": "^2.30.1",
29
- "redis": "^4.7.0",
30
- "short-uuid": "6.0.3",
31
- "ts-node": "^10.9.2",
32
- "typescript": "^5.7.3",
33
- "uuid": "^11.1.0"
34
- },
35
- "devDependencies": {
36
- "@types/bn.js": "~5.1.5",
37
- "@types/node": "^22.7.9",
38
- "rimraf": "^5.0.5",
39
- "ts-node": "^10.9.2",
40
- "typescript": "^5.7.3"
41
- },
42
- "resolutions": {
43
- "qs": ">=6.14.1",
44
- "diff": ">=8.0.3"
45
- },
46
- "overrides": {},
47
- "publishConfig": {
48
- "access": "public"
49
- }
2
+ "name": "@clonegod/ttd-core",
3
+ "version": "3.1.118",
4
+ "description": "Common types and utilities for trading systems - use `npm run push` to publish",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "keywords": [],
8
+ "author": "",
9
+ "license": "ISC",
10
+ "scripts": {
11
+ "clean": "rm -rf dist node_modules",
12
+ "build": "yarn tsc --outDir ./dist",
13
+ "push": "npm run build && npm publish"
14
+ },
15
+ "dependencies": {
16
+ "@noble/secp256k1": "1.7.1",
17
+ "axios": "1.17.0",
18
+ "bn.js": "^5.2.1",
19
+ "body-parser": "^1.20.3",
20
+ "bs58": "^6.0.0",
21
+ "decimal.js": "^10.5.0",
22
+ "dotenv": "^16.4.7",
23
+ "express": "^4.21.2",
24
+ "express-ws": "^5.0.2",
25
+ "graphql": "^16.11.0",
26
+ "graphql-request": "^7.2.0",
27
+ "keccak": "^3.0.4",
28
+ "moment": "^2.30.1",
29
+ "redis": "^4.7.0",
30
+ "short-uuid": "6.0.3",
31
+ "ts-node": "^10.9.2",
32
+ "typescript": "^5.7.3",
33
+ "uuid": "^11.1.0"
34
+ },
35
+ "devDependencies": {
36
+ "@types/bn.js": "~5.1.5",
37
+ "@types/node": "^22.7.9",
38
+ "rimraf": "^5.0.5",
39
+ "ts-node": "^10.9.2",
40
+ "typescript": "^5.7.3"
41
+ },
42
+ "resolutions": {
43
+ "qs": ">=6.14.1",
44
+ "diff": ">=8.0.3"
45
+ },
46
+ "overrides": {},
47
+ "publishConfig": {
48
+ "access": "public"
49
+ }
50
50
  }