@ilalv3/cli 0.2.11 → 0.2.12
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.js +1 -1
- package/package.json +5 -1
package/dist/index.js
CHANGED
|
@@ -19,7 +19,7 @@ const program = new Command();
|
|
|
19
19
|
program
|
|
20
20
|
.name("ilal")
|
|
21
21
|
.description("ILAL Protocol CLI — Uniswap v4 compliance hook toolkit")
|
|
22
|
-
.version("0.2.
|
|
22
|
+
.version("0.2.12")
|
|
23
23
|
.addHelpText("before", `\n ${fmt.bold(fmt.cyan("◆"))} ${fmt.bold("ILAL Protocol")} ${fmt.gray("Uniswap v4 Compliance Hook")}\n`);
|
|
24
24
|
// ─── init ─────────────────────────────────────────────────────────────────────
|
|
25
25
|
program
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ilalv3/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.12",
|
|
4
4
|
"description": "ILAL Protocol CLI — compliant swaps and credential management for Uniswap v4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -38,11 +38,15 @@
|
|
|
38
38
|
"@zk-kit/incremental-merkle-tree": "^1.1.0",
|
|
39
39
|
"commander": "^12.0.0",
|
|
40
40
|
"poseidon-lite": "^0.3.0",
|
|
41
|
+
"snarkjs": "^0.7.6",
|
|
41
42
|
"viem": "^2.0.0"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
44
45
|
"@types/node": "^20",
|
|
45
46
|
"ts-node": "^10.9.0",
|
|
46
47
|
"typescript": "^5.4.0"
|
|
48
|
+
},
|
|
49
|
+
"overrides": {
|
|
50
|
+
"underscore": "1.13.8"
|
|
47
51
|
}
|
|
48
52
|
}
|