@artblocks/abx-cli 0.1.0-alpha.46 → 0.1.0-alpha.47
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/CHANGELOG.md +7 -0
- package/package.json +3 -3
- package/skill/SKILL.md +1 -1
- package/skill/reference/setup.md +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @artblocks/abx-cli
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.47
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5e93246: Correct the bundled agent guidance for Arbitrum Sepolia's canonical contract deployment.
|
|
8
|
+
- @artblocks/abx-storage@0.1.0-alpha.35
|
|
9
|
+
|
|
3
10
|
## 0.1.0-alpha.46
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artblocks/abx-cli",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.47",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Command-line interface for deploying, operating, indexing, and serving ABX projects.",
|
|
6
6
|
"type": "module",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"viem": "^2.56.3",
|
|
42
42
|
"@artblocks/abx-sdk": "0.1.0-alpha.35",
|
|
43
|
-
"@artblocks/abx-indexer": "0.1.0-alpha.36",
|
|
44
43
|
"@artblocks/abx-storage": "0.1.0-alpha.35",
|
|
45
|
-
"@artblocks/abx-token-api": "0.1.0-alpha.38"
|
|
44
|
+
"@artblocks/abx-token-api": "0.1.0-alpha.38",
|
|
45
|
+
"@artblocks/abx-indexer": "0.1.0-alpha.36"
|
|
46
46
|
},
|
|
47
47
|
"optionalDependencies": {
|
|
48
48
|
"@artblocks/abx-effects": "0.1.0-alpha.35"
|
package/skill/SKILL.md
CHANGED
|
@@ -9,7 +9,7 @@ description: >-
|
|
|
9
9
|
change an ABX collection, or to determine whether ABX supports a mechanic.
|
|
10
10
|
compatibility: Drives @artblocks/abx-cli on Node 22.13+. Co-versioned with the CLI; install or refresh with `abx skill install`.
|
|
11
11
|
metadata:
|
|
12
|
-
version: "0.1.0-alpha.
|
|
12
|
+
version: "0.1.0-alpha.47"
|
|
13
13
|
---
|
|
14
14
|
|
|
15
15
|
# ABX
|
package/skill/reference/setup.md
CHANGED
|
@@ -59,10 +59,10 @@ output bug without repeating the secret.
|
|
|
59
59
|
## Select the chain explicitly through the environment
|
|
60
60
|
|
|
61
61
|
Read the full `chains` array from `abx capabilities --json`. Base Sepolia is the default; Sepolia is
|
|
62
|
-
also supported. Arbitrum Sepolia is experimental and has
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
62
|
+
also supported. Arbitrum Sepolia is experimental and has canonical ABX contracts for explicit
|
|
63
|
+
qualification. Production entries are present but disabled, and the CLI refuses them. There is
|
|
64
|
+
deliberately no `--chain` flag because silently ignoring a wrong-chain request could spend on the
|
|
65
|
+
wrong network.
|
|
66
66
|
|
|
67
67
|
Before any transaction on an `experimental` or future `beta` network, name the network and support
|
|
68
68
|
level, explain what the transaction or transaction group will do, and state the relevant contract,
|