@artblocks/abx-cli 0.1.0-alpha.41 → 0.1.0-alpha.43

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 CHANGED
@@ -1,161 +1,13 @@
1
1
  # @artblocks/abx-cli
2
2
 
3
- ## 0.1.0-alpha.41
4
-
5
- ### Minor Changes
6
-
7
- - c068a0f: `abx artifacts <address> [--token <id>]` reads a token's `artifacts` manifest directly, instead of
8
- fetching and parsing the whole served tokenURI document. Reports every entry plus every
9
- producer-registered effect row — current AND stale — each labeled against the token's active
10
- `inputsHash`, so a param change that re-addressed a render is diagnosable rather than silently
11
- absent. `--remote <name|url>` reads what a hosted resolver actually reports (the surface that owns a
12
- hosted project's real artifact set), mirroring the existing `abx verify` / `abx verify --remote`
13
- split. Neither "not registered here" nor "not registered on that remote" fails the command — both
14
- return a stable `{surface, registered, available, reason, entries, effects}` JSON shape.
15
- `@artblocks/abx-token-api` exports the underlying `tokenArtifacts()` read for direct SDK/server use.
16
- - c068a0f: `abx attach` now distinguishes the on-chain field write from off-chain SERVING — the write can
17
- succeed while nothing is able to serve it. It prints the canonical, directly-fetchable URL for every
18
- attached key (`{base}/{chainId}/{address}[/<id>]/data/<key>`) so nobody hand-assembles the route, and
19
- probes whether a resolver actually answers for the project right now, warning when none does (with
20
- no resolver base baked in at all, or with one baked in that isn't currently reachable). `--collection`
21
- now correctly reads `contractURIBase` (it previously always read `tokenURIBase`, even for a
22
- collection-scope attach).
23
- - c068a0f: Local data-directory resolution (`.abx-self-host` / `ABX_DATA_DIR`) is now centralized in one SDK
24
- resolver (`resolveDataDir` from `@artblocks/abx-sdk/node`) instead of five independent copies of the
25
- same fallback across the CLI, indexer, and storage packages — the setup that could silently split a
26
- project's SQLite projection from its managed Arweave key into two different directories.
27
-
28
- A handful of READ commands (`status`, `state`, `verify`, `doctor`, `capabilities`, `tokens`,
29
- `tokenuri`, `contracturi`, `inspect`, `minter show`) now search upward from the current directory,
30
- git-style, for an already-existing `.abx-self-host` before falling back to creating one at cwd —
31
- bounded at the home directory, a `.git` repository root, or the filesystem root, and never crossing
32
- into an unrelated directory tree. Running one of these from a project subdirectory (e.g. a
33
- `contracts/` folder) now finds the same node a run from the project root would, instead of quietly
34
- reporting an empty one. `abx status`'s existing `data: <path>` line — and a new one-line notice —
35
- name the directory whenever it was found this way. Every WRITE command is unaffected: it always
36
- resolves strictly to the current directory, exactly as before, so nothing is ever created somewhere
37
- you didn't `cd` into. `ABX_DATA_DIR`, when set, still always wins outright and disables the search
38
- entirely.
39
-
40
- - c068a0f: Every `deploy` / `deploy-series` / `deploy-code` `--json` emit — dry-run and real send, across every
41
- product lane and `deploy-code --resume` — now carries a versioned, structured `plan` object alongside
42
- the existing fields: wallet transaction/approval count, expected signer/owner/royalty/minter/payee
43
- roles, custody and URI-resolution choices, the mint plan, a cost estimate where one is computed, every
44
- warning that run raised, and (code lanes) the per-surface thumbnail/traits/postParams disposition plus
45
- dependency-registry info. A field a lane has no answer for is reported as `null`, never silently
46
- absent. The human dry-run/confirm output is unchanged, byte for byte.
47
- - c068a0f: `deploy-code --copies --code-dir <dir>` now works: an EditionCode project can point `code` at a
48
- hosted directory build (index.html + assets uploaded to ipfs/arweave/cloud), the same as the
49
- existing SeriesCode (721) lane.
50
- - c068a0f: `deploy-code --copies --image-base <url>` now works: an EditionCode project can bake a
51
- deterministic per-id off-chain still (`{base}/{id}.png`), the same field write as the existing
52
- SeriesCode (721) lane, mutually exclusive with an on-chain `--image-renderer`. The effect runner's
53
- render sweep excludes an id with zero live copies (no mint-time seed drawn yet), mirroring how a
54
- burned 721 token is already excluded.
55
- - c068a0f: `deploy-code --resume <address>` now works against an EditionCode (`--copies`) target, not just
56
- SeriesCode. The mint leg diffs per id against that id's own `totalSupply(id)` — pass the same
57
- content flags the original deploy used, plus `--mint-count`/`--mint-amount` if it premint any ids.
58
- - c068a0f: `reconstructProject()` and `reconstructIncremental()` accept `toBlock: 'safe' | 'finalized'` in
59
- addition to a literal block number and the existing `'latest'` default. The tag is resolved to a
60
- concrete inclusive block number (via the new `resolveBlockTag()`) before any `eth_getLogs` scan
61
- starts, and that number — never the tag — is what lands in the persisted `ProjectState.toBlock`. An
62
- RPC that doesn't support the requested tag throws the new `BlockTagUnavailableError` instead of
63
- silently falling back to `latest`. `SelfHostIndexer#reindex` gained a matching `blockTag` option.
64
- Existing callers (the `'latest'`/unset default) are unaffected.
65
-
66
- `abx index --to-block safe|finalized` stops a re-index at a reorg-safe boundary.
67
-
68
- - c068a0f: The Solidity renderer scaffold (`abx scaffold renderer` / `abx scaffold solidity`) now ships
69
- `script/Preview.s.sol`: a Forge script that runs the actual `IAbxFieldRenderer.render` interface
70
- against representative token id / seed / PostParam inputs (all overridable via env vars) and writes
71
- the SVG/JSON output to `preview-out/` for human inspection — `forge test` proves the renderer
72
- behaves, but never let you look at what it drew. Reverts are surfaced clearly; the script is explicit
73
- that its gas output is a local-EVM sanity check, not a production gas measurement.
74
- - c068a0f: Add `abx replace-script <address> --script <file>` — a safe, first-class way to replace an UNLOCKED
75
- code project's on-chain program (`SeriesCode`/`EditionCode`, before `abx lock-script`). It refuses
76
- outright on a locked script or a non-code target, diffs the replacement by content against what's
77
- on-chain (an index that already matches is never re-sent), handles a smaller replacement by queuing
78
- the trailing `removeLastScriptChunk` calls it needs, folds every write and remove into ONE atomic
79
- transaction (a revert can never leave a half-applied script), and reads the completed script back to
80
- verify it reassembles exactly to the file before reporting success. Supports `--dry-run` and every
81
- signing lane.
82
-
83
- The SDK gains the primitives this is built on: `prepareSetScriptChunk`/`prepareRemoveLastScriptChunk`
84
- (no `prepare*` wrapper existed for `OnChainScript.sol`'s writers before this — every caller hand-
85
- encoded `encodeFunctionData`), plus `planScriptReplace`/`verifyScriptReplace`, which take a small
86
- reader interface (mirroring `resume.ts`'s own reader seam) so the diff and post-write verification
87
- are testable without a chain.
88
-
89
- - c068a0f: SQLite maintenance for existing and long-running self-hosted stores (issue #113). `SqliteStore`
90
- gains `autoVacuumMode`/`vacuumStats` (detection), `vacuumConvert` (a one-time, explicit full
91
- `VACUUM` for a store that predates incremental auto-vacuum), and `runIncrementalVacuum` (a bounded
92
- reclaim pass). `SelfHostIndexer.startVacuumMaintenance` runs that bounded reclaim automatically
93
- between chain-watch ticks — never inline with a request. The new `abx vacuum [status|convert|
94
- incremental]` CLI command exposes both halves to an operator. Also fixes a pragma-ordering bug that
95
- left EVERY store — not just pre-existing ones — stuck at `auto_vacuum='none'` despite the earlier
96
- incremental auto-vacuum fix (`PRAGMA auto_vacuum` must precede `PRAGMA journal_mode = WAL`, not just
97
- the schema's first `CREATE TABLE`).
98
- - c068a0f: `abx state` now reports every irreversible lock a collection can carry — token/contract URI, script,
99
- dependencies, param hooks, and the standard `METADATA_FIELD` set — for both ERC-721 and ERC-1155
100
- families, not just `paramHooks.locked`. Each lock is a distinct `true` (frozen) / `false` (open) /
101
- `null` (unread — never collapsed into `false`) reading, in both human and `--json` output, alongside
102
- the exact owner command that freezes it.
103
- - c068a0f: `abx verify --json` gains a sibling `availability` field (render/serve-readiness: `available` /
104
- `partial` / `unavailable` / `unknown`), kept separate from the integrity-only `ok`/`contentIntegrity`
105
- that the command's exit status still reflects exactly as before. A locator-committed `image` field
106
- (ipfs/arweave/url/url-template) this command doesn't re-fetch now reports as a `verified: null`
107
- content check instead of silently reading as no commitment at all. Fixes a side-bug: `abx verify
108
- --remote <r> --json` used to route around `--json` entirely and emit no payload — it now emits the
109
- same shape as the local lane, plus a `"not-checked"` `contentIntegrity` state for when byte
110
- integrity genuinely wasn't asked (no credential, rejected token, or an older resolver).
111
- - c068a0f: Additive for SDK consumers — a new exported function, nothing existing changed shape or behavior.
112
-
113
- `abx verify` now compares a collection's actual `tokenURIRenderer` and `animation_url` generator
114
- pointers against the current canonical singletons for its chain, reporting each as current or
115
- not-current (never treating an older-but-working deployment as broken). Adds the SDK helper
116
- `isCurrentGenerator` alongside the existing `isCurrentRenderer` probe.
3
+ ## 0.1.0-alpha.43
117
4
 
118
5
  ### Patch Changes
119
6
 
120
- - c068a0f: `abx storage upload <path>` now stats the path before reading it, so a directory, a missing file, or
121
- an unreadable file gets an actionable error instead of a raw Node errno (`EISDIR: illegal operation
122
- on a directory, read`, a bare `ENOENT` stack). The directory message points at the commands that
123
- actually upload folder content — `abx deploy-series --dir` and `abx deploy-code --code-dir` — since
124
- `storage upload` only ever handles a single file.
125
- - c068a0f: `abx submit-app` no longer fails silently on RPC catch-up: the mint's token id is now recoverable
126
- even under `--json` if metadata configuration can't proceed, the first metadata write after a fresh
127
- mint retries a few times with backoff before giving up, and a caller who exhausts that bound gets an
128
- explicit message naming the token id and confirming a re-run picks up exactly where it left off
129
- (never a duplicate mint — the collection is already `claimed`). `--json`'s `withJson` helper also now
130
- flushes whatever payload a command already `emit()`-ed before a later step throws, instead of leaving
131
- `--json` callers with nothing on stdout when a command fails partway through.
132
- - Updated dependencies [c068a0f]
133
- - Updated dependencies [c068a0f]
134
- - Updated dependencies [c068a0f]
135
- - Updated dependencies [c068a0f]
136
- - Updated dependencies [c068a0f]
137
- - Updated dependencies [c068a0f]
138
- - Updated dependencies [c068a0f]
139
- - Updated dependencies [c068a0f]
140
- - Updated dependencies [c068a0f]
141
- - Updated dependencies [c068a0f]
142
- - Updated dependencies [c068a0f]
143
- - @artblocks/abx-token-api@0.1.0-alpha.34
144
- - @artblocks/abx-sdk@0.1.0-alpha.31
145
- - @artblocks/abx-indexer@0.1.0-alpha.32
146
- - @artblocks/abx-storage@0.1.0-alpha.31
147
-
148
- ## 0.1.0-alpha.40
149
-
150
- ### Patch Changes
151
-
152
- - 64248d9: Establish the public source baseline and refresh dependency constraints.
153
- - Updated dependencies [64248d9]
154
- - @artblocks/abx-indexer@0.1.0-alpha.31
155
- - @artblocks/abx-sdk@0.1.0-alpha.30
156
- - @artblocks/abx-storage@0.1.0-alpha.30
157
- - @artblocks/abx-token-api@0.1.0-alpha.33
158
-
159
- ## Unreleased
160
-
161
- Public release history begins here.
7
+ - 9242a05: Prepare package metadata, release notes, and public-facing source comments for the initial public
8
+ source release.
9
+ - Updated dependencies [9242a05]
10
+ - @artblocks/abx-indexer@0.1.0-alpha.34
11
+ - @artblocks/abx-sdk@0.1.0-alpha.33
12
+ - @artblocks/abx-storage@0.1.0-alpha.33
13
+ - @artblocks/abx-token-api@0.1.0-alpha.36
@@ -1,5 +1,5 @@
1
1
  import { SelfHostIndexer } from '@artblocks/abx-indexer';
2
- import { type Address, type OnChainFieldInput, type OpenSeaAttribute, type ProjectState, type PublicClient, type SeriesTokenFieldInput } from '@artblocks/abx-sdk';
2
+ import { type Address, type OnChainFieldInput, type OpenSeaAttribute, type ProjectState, type PublicClient, type SeriesTokenFieldInput, type SetupLegsCore, type PreparedTx } from '@artblocks/abx-sdk';
3
3
  import { type Hex } from 'viem';
4
4
  import { type StorageOverrides } from '../config.js';
5
5
  import { type Flags } from '../flags.js';
@@ -190,6 +190,56 @@ export declare const DEPLOY_FLAGS: Set<string>;
190
190
  export declare const DEPLOY_SERIES_FLAGS: Set<string>;
191
191
  export declare const DEPLOY_EDITION_FLAGS: Set<string>;
192
192
  export declare const DEPLOY_SERIES_EDITION_FLAGS: Set<string>;
193
+ /** One leg of a code-project setup multicall — enough to (a) estimate its own gas conservatively,
194
+ * (b) label an indivisible-leg refusal, and (c) let a batch rebuild `prepareCodeSetup`'s own
195
+ * labeling args after a leg group gets split. `calls` carries more than one entry only for a leg
196
+ * that must always land in the SAME transaction as its siblings (the dependency group, the
197
+ * on-chain-URI group) — see resume.ts's `planCoreLegs` for why those two ride as one atomic unit
198
+ * apiece; every other leg (a script chunk, a param schema, a reserve mint) is exactly one call. */
199
+ export interface SetupLeg {
200
+ calls: Hex[];
201
+ gas: number;
202
+ label: string;
203
+ kind: 'chunk' | 'schema' | 'deps' | 'uri' | 'mint';
204
+ chunkBytes?: number[];
205
+ schemaKey?: string;
206
+ }
207
+ export declare const chunkSetupLeg: (index: number, hex: Hex, data: Hex) => SetupLeg;
208
+ export declare const schemaSetupLeg: (key: string, data: Hex) => SetupLeg;
209
+ export declare const depsSetupLeg: (calls: Hex[]) => SetupLeg;
210
+ export declare const uriSetupLeg: (calls: Hex[]) => SetupLeg;
211
+ export declare const mintSetupLeg: (data: Hex) => SetupLeg;
212
+ /** `SetupLegsCore` (resume.ts's id-agnostic four leg groups, shared by both 721 and EditionCode) →
213
+ * the gas-batching shape above — schemas individually (resume diffs them per-key too), deps and
214
+ * on-chain-URI as one atomic leg apiece (resume diffs them as one group too — see resume.ts's
215
+ * `planCoreLegs`). Mints are NOT included here: their shape differs by lane (721 whole-total vs
216
+ * EditionCode per-id vs a `--resume` shortfall) — every caller builds its own mint legs. */
217
+ export declare function coreSetupLegs(legs: SetupLegsCore): {
218
+ chunks: SetupLeg[];
219
+ config: SetupLeg[];
220
+ };
221
+ /**
222
+ * Split three ordered leg groups into gas-bounded batches — chunks, then config, then mints, NEVER
223
+ * mixed (see the module note above). Refuses BEFORE building anything if a single leg's own gas
224
+ * estimate alone exceeds the binding `eth_estimateGas` ceiling: batching only helps when the problem
225
+ * is too MANY legs, not one leg too big, and that case must never reach a raw "gas limit too high".
226
+ * Deterministic in the legs' `.gas` values alone (never their `.calls`), so calling this once early
227
+ * (to size `approvals`, before an owner is even known) and again later with the real calldata
228
+ * produces the IDENTICAL batch shape both times — no drift between what's previewed and what's sent.
229
+ */
230
+ export declare function planCodeSetupBatches(groups: {
231
+ chunks: SetupLeg[];
232
+ config: SetupLeg[];
233
+ mints: SetupLeg[];
234
+ }): SetupLeg[][];
235
+ /** Turn ordered setup-leg batches into the actual `prepareCodeSetup` transactions — rebuilding each
236
+ * batch's chunk/schema/dependency/on-chain-URI labeling from its OWN legs, since a batch born from
237
+ * the split may carry only part of a group (see {@link planCodeSetupBatches}). */
238
+ export declare function codeSetupTxsFromBatches(batches: SetupLeg[][], args: {
239
+ contract: Address;
240
+ chainId: number;
241
+ deps: string[];
242
+ }): PreparedTx[];
193
243
  export declare function cmdDeployCode(flags: Flags): Promise<void>;
194
244
  export declare function cmdDeployCodeBody(flags: Flags, emit: (p: Record<string, unknown>) => void): Promise<void>;
195
245
  export declare const DEPLOY_CODE_EDITION_FLAGS: Set<string>;
@@ -1 +1 @@
1
- {"version":3,"file":"deploy.d.ts","sourceRoot":"","sources":["../../src/commands/deploy.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"deploy.d.ts","sourceRoot":"","sources":["../../src/commands/deploy.ts"],"names":[],"mappings":"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"}