@continuumdao/ctm-mpc-defi 0.2.4 → 0.2.6
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/agent/catalog.cjs +638 -4
- package/dist/agent/catalog.cjs.map +1 -1
- package/dist/agent/catalog.d.ts +458 -14
- package/dist/agent/catalog.js +615 -5
- package/dist/agent/catalog.js.map +1 -1
- package/dist/agent/skills/gmx/SKILL.md +45 -0
- package/dist/agent/skills/uniswap-v4/SKILL.md +9 -1
- package/dist/index.cjs +4 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist/protocols/evm/gmx/index.cjs +2251 -0
- package/dist/protocols/evm/gmx/index.cjs.map +1 -0
- package/dist/protocols/evm/gmx/index.d.ts +469 -0
- package/dist/protocols/evm/gmx/index.js +2181 -0
- package/dist/protocols/evm/gmx/index.js.map +1 -0
- package/dist/protocols/evm/uniswap-v4/index.cjs +227 -3
- package/dist/protocols/evm/uniswap-v4/index.cjs.map +1 -1
- package/dist/protocols/evm/uniswap-v4/index.d.ts +63 -1
- package/dist/protocols/evm/uniswap-v4/index.js +222 -5
- package/dist/protocols/evm/uniswap-v4/index.js.map +1 -1
- package/package.json +7 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@continuumdao/ctm-mpc-defi",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Continuum MPC DeFi protocol library — multiSignRequest builders for EVM and future chain categories",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -75,6 +75,11 @@
|
|
|
75
75
|
"import": "./dist/protocols/evm/euler-v2/index.js",
|
|
76
76
|
"require": "./dist/protocols/evm/euler-v2/index.cjs"
|
|
77
77
|
},
|
|
78
|
+
"./protocols/evm/gmx": {
|
|
79
|
+
"types": "./dist/protocols/evm/gmx/index.d.ts",
|
|
80
|
+
"import": "./dist/protocols/evm/gmx/index.js",
|
|
81
|
+
"require": "./dist/protocols/evm/gmx/index.cjs"
|
|
82
|
+
},
|
|
78
83
|
"./agent": {
|
|
79
84
|
"types": "./dist/agent/catalog.d.ts",
|
|
80
85
|
"import": "./dist/agent/catalog.js",
|
|
@@ -103,6 +108,7 @@
|
|
|
103
108
|
},
|
|
104
109
|
"dependencies": {
|
|
105
110
|
"@continuumdao/continuum-node-sdk": "^1.2.6",
|
|
111
|
+
"@gmx-io/sdk": "^1.5.0-alpha-15",
|
|
106
112
|
"zod": "^3.24.0",
|
|
107
113
|
"zod-to-json-schema": "^3.24.0"
|
|
108
114
|
},
|