@clonegod/ttd-core 3.1.115 → 3.1.116
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/index.d.ts +5 -0
- package/dist/index.js +5 -0
- package/package.json +48 -48
package/dist/index.d.ts
CHANGED
|
@@ -76,6 +76,11 @@ export declare enum DEX_ID {
|
|
|
76
76
|
UNISWAP_V4 = "UNISWAP-V4",
|
|
77
77
|
UP_V2 = "UP-V2",
|
|
78
78
|
UP_V3 = "UP-V3",
|
|
79
|
+
RAMSES_V3 = "RAMSES-V3",
|
|
80
|
+
RAMSES_V2 = "RAMSES-V2",
|
|
81
|
+
RAMSES_DLMM = "RAMSES-DLMM",
|
|
82
|
+
GIGA_V3 = "GIGA-V3",
|
|
83
|
+
GIGA_V2 = "GIGA-V2",
|
|
79
84
|
MOMENTUM_CLMM = "MOMENTUM-CLMM",
|
|
80
85
|
CETUS_CLMM = "CETUS-CLMM",
|
|
81
86
|
BLUEFIN_CLMM = "BLUEFIN-CLMM",
|
package/dist/index.js
CHANGED
|
@@ -161,6 +161,11 @@ var DEX_ID;
|
|
|
161
161
|
DEX_ID["UNISWAP_V4"] = "UNISWAP-V4";
|
|
162
162
|
DEX_ID["UP_V2"] = "UP-V2";
|
|
163
163
|
DEX_ID["UP_V3"] = "UP-V3";
|
|
164
|
+
DEX_ID["RAMSES_V3"] = "RAMSES-V3";
|
|
165
|
+
DEX_ID["RAMSES_V2"] = "RAMSES-V2";
|
|
166
|
+
DEX_ID["RAMSES_DLMM"] = "RAMSES-DLMM";
|
|
167
|
+
DEX_ID["GIGA_V3"] = "GIGA-V3";
|
|
168
|
+
DEX_ID["GIGA_V2"] = "GIGA-V2";
|
|
164
169
|
DEX_ID["MOMENTUM_CLMM"] = "MOMENTUM-CLMM";
|
|
165
170
|
DEX_ID["CETUS_CLMM"] = "CETUS-CLMM";
|
|
166
171
|
DEX_ID["BLUEFIN_CLMM"] = "BLUEFIN-CLMM";
|
package/package.json
CHANGED
|
@@ -1,50 +1,50 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
2
|
+
"name": "@clonegod/ttd-core",
|
|
3
|
+
"version": "3.1.116",
|
|
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
|
}
|