@artblocks/abx-cli 0.1.0-alpha.43 → 0.1.0-alpha.45
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 +32 -0
- package/assets/renderer-scaffold/README.md +1 -1
- package/assets/renderer-scaffold/foundry.toml +1 -1
- package/assets/renderer-scaffold/remappings.txt +1 -1
- package/dist/capabilities.d.ts +5 -2
- package/dist/capabilities.d.ts.map +1 -1
- package/dist/capabilities.js +12 -4
- package/dist/capabilities.js.map +1 -1
- package/dist/main.js +15 -7
- package/dist/main.js.map +1 -1
- package/dist/ownerops.d.ts.map +1 -1
- package/dist/ownerops.js +24 -8
- package/dist/ownerops.js.map +1 -1
- package/dist/remote.js +1 -1
- package/package.json +6 -6
- package/skill/SKILL.md +4 -3
- package/skill/reference/capabilities.md +2 -1
- package/skill/reference/setup.md +9 -3
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.45"
|
|
13
13
|
---
|
|
14
14
|
|
|
15
15
|
# ABX
|
|
@@ -24,8 +24,9 @@ typed errors outrank remembered prose.
|
|
|
24
24
|
inspect configuration safely.
|
|
25
25
|
- Use `pnpm abx …` inside the ABX source repository. Use `abx …` in a creator project or installed
|
|
26
26
|
environment. Run `abx version` if provenance is uncertain.
|
|
27
|
-
-
|
|
28
|
-
|
|
27
|
+
- Read the full `chains` array from `abx capabilities --json` before choosing a network. Never
|
|
28
|
+
operate on a `disabled` chain. Call out `experimental` or `beta` status and its risks before a
|
|
29
|
+
transaction. Select with `ABX_CHAIN=<chain>`; there is deliberately no `--chain` flag.
|
|
29
30
|
- Run `abx help <command>` immediately before composing a non-trivial command. Do not recover flag
|
|
30
31
|
syntax from this skill.
|
|
31
32
|
- Never infer that a capability is absent because a flag is absent. Run `abx capabilities --json`,
|
|
@@ -160,7 +160,8 @@ salt/deployer and predicted address before deploying either side.
|
|
|
160
160
|
|
|
161
161
|
The toolkit currently does not provide:
|
|
162
162
|
|
|
163
|
-
-
|
|
163
|
+
- operation on a chain whose capability entry is `disabled`, including all production networks in
|
|
164
|
+
the current release;
|
|
164
165
|
- a secondary-market listing/order-book feature;
|
|
165
166
|
- Solidity compilation/deployment through `abx`;
|
|
166
167
|
- CLI replacement of a deployed code project's script;
|
package/skill/reference/setup.md
CHANGED
|
@@ -58,9 +58,15 @@ output bug without repeating the secret.
|
|
|
58
58
|
|
|
59
59
|
## Select the chain explicitly through the environment
|
|
60
60
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
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 no canonical ABX contracts yet, so use it
|
|
63
|
+
only for explicit qualification with the required address overrides. Production entries are present
|
|
64
|
+
but disabled, and the CLI refuses them. There is deliberately no `--chain` flag because silently
|
|
65
|
+
ignoring a wrong-chain request could spend on the wrong network.
|
|
66
|
+
|
|
67
|
+
Before any transaction on an `experimental` or future `beta` network, name the network and support
|
|
68
|
+
level, explain what the transaction or transaction group will do, and state the relevant contract,
|
|
69
|
+
configuration, and real-funds risks. Qualify the same flow on the paired testnet before production.
|
|
64
70
|
|
|
65
71
|
Use per-chain RPC variables when operating more than one chain. `abx doctor` checks chain identity,
|
|
66
72
|
wide-range `eth_getLogs`, archival reach, and nonce coherence. Put a healthy archive endpoint first:
|