@tanakayuto/intmax402-cli 0.3.2 → 0.4.0

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.
Files changed (2) hide show
  1. package/README.md +14 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,5 +1,17 @@
1
- # @intmax402/cli
1
+ # @tanakayuto/intmax402-cli
2
2
 
3
3
  Part of [intmax402](https://github.com/zaq2989/intmax402) — HTTP 402, reimagined for AI agents.
4
4
 
5
- See [main README](https://github.com/zaq2989/intmax402) for full documentation.
5
+ See [main README](https://github.com/zaq/intmax402) for full documentation.
6
+
7
+ ## Network
8
+
9
+ By default, the CLI tests against **Ethereum mainnet** (via INTMAX ZK L2 on Scroll). Use `--testnet` flag for development.
10
+
11
+ ```bash
12
+ # Test on mainnet (default)
13
+ intmax402 test http://localhost:3000/premium
14
+
15
+ # Test on testnet
16
+ intmax402 test --testnet http://localhost:3000/premium
17
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanakayuto/intmax402-cli",
3
- "version": "0.3.2",
3
+ "version": "0.4.0",
4
4
  "main": "dist/index.js",
5
5
  "bin": {
6
6
  "intmax402": "dist/index.js"
@@ -11,7 +11,7 @@
11
11
  "typecheck": "tsc --noEmit"
12
12
  },
13
13
  "dependencies": {
14
- "@tanakayuto/intmax402-core": "^0.2.6",
14
+ "@tanakayuto/intmax402-core": "^0.3.0",
15
15
  "chalk": "^4.1.2",
16
16
  "ethers": "^6.16.0",
17
17
  "minimist": "^1.2.8"