@artblocks/abx-cli 0.1.0-alpha.19 → 0.1.0-alpha.20
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 +68 -0
- package/dist/commands/deploy.d.ts +32 -7
- package/dist/commands/deploy.d.ts.map +1 -1
- package/dist/commands/deploy.js +1079 -49
- package/dist/commands/deploy.js.map +1 -1
- package/dist/commands/project.d.ts +107 -0
- package/dist/commands/project.d.ts.map +1 -1
- package/dist/commands/project.js +141 -16
- package/dist/commands/project.js.map +1 -1
- package/dist/commands/reads.d.ts.map +1 -1
- package/dist/commands/reads.js +52 -20
- package/dist/commands/reads.js.map +1 -1
- package/dist/commands/scaffold.d.ts +13 -11
- package/dist/commands/scaffold.d.ts.map +1 -1
- package/dist/commands/scaffold.js +73 -37
- package/dist/commands/scaffold.js.map +1 -1
- package/dist/config.d.ts +8 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +18 -1
- package/dist/config.js.map +1 -1
- package/dist/kind.d.ts +48 -0
- package/dist/kind.d.ts.map +1 -0
- package/dist/kind.js +69 -0
- package/dist/kind.js.map +1 -0
- package/dist/main.js +107 -23
- package/dist/main.js.map +1 -1
- package/dist/mintpage.d.ts +14 -1
- package/dist/mintpage.d.ts.map +1 -1
- package/dist/mintpage.js +166 -4
- package/dist/mintpage.js.map +1 -1
- package/dist/output.d.ts +11 -0
- package/dist/output.d.ts.map +1 -1
- package/dist/output.js +133 -3
- package/dist/output.js.map +1 -1
- package/dist/ownerops.d.ts +33 -2
- package/dist/ownerops.d.ts.map +1 -1
- package/dist/ownerops.js +356 -19
- package/dist/ownerops.js.map +1 -1
- package/package.json +6 -6
- package/skill/SKILL.md +5 -3
- package/skill/reference/creator-token.md +40 -25
- package/skill/reference/hosting.md +1 -1
- package/skill/reference/operating.md +20 -0
- package/skill/reference/troubleshooting.md +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,73 @@
|
|
|
1
1
|
# @artblocks/abx-cli
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.20
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- afa9dd4: ERC-1155 editions ship with full parity: a Series is many unique tokens (721); an **Edition** is
|
|
8
|
+
many copies of a token (1155). The creator's word is **copies** — `abx deploy img.png --copies 100`
|
|
9
|
+
(a single-artwork edition, `open` = uncapped), `abx deploy-series ./art --copies 50` (each image an
|
|
10
|
+
edition), `abx deploy-code sketch.js --copies 25` (code editions). Without `--copies`, the 721
|
|
11
|
+
lanes are unchanged.
|
|
12
|
+
|
|
13
|
+
Three new canonical contracts twin the 721 lineup — `OneOfOneEdition`, `EditionImage`,
|
|
14
|
+
`EditionCode` — plus `AbxFixedPriceMinter1155`, a per-id fixed-price sale singleton
|
|
15
|
+
(`minter configure/buy --token-id [--quantity]`). New owner ops: `mint --token-id --amount`,
|
|
16
|
+
`transfer --amount`, `set-max-supply` (per-id cap, only ever decreases), `ping-uri` (re-emit the
|
|
17
|
+
native `URI` event after a re-point). ERC-1155C creator-token enforcement is the same `--721c`
|
|
18
|
+
opt-in (same validator registry and ERC-165 ids as 721C). Editions announce one new extension
|
|
19
|
+
(`abx.extension.edition-supply`, per-id supply/cap); everything else — metadata fields, params,
|
|
20
|
+
royalties, renderer, storage, effects — is the same protocol surface on both standards.
|
|
21
|
+
|
|
22
|
+
**Integrator surface (audience line):** additive only. `ProjectState.contractType` gains
|
|
23
|
+
`'1of1-edition' | 'edition' | 'edition-code'`; `TokenState` gains `supply`/`maxSupply`/`holders`
|
|
24
|
+
(editions only; `minted` means supply > 0 there); the spine ABI now decodes
|
|
25
|
+
`TransferSingle`/`TransferBatch`/`URI`/`MaxSupplyUpdated`; `ChainDeployment` gains the four
|
|
26
|
+
edition anchors (recorded for Sepolia + Base Sepolia, CREATE2-identical); token-api summaries gain
|
|
27
|
+
an optional `copies` field. No existing export, route, column, or event shape changed.
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- 8c254d5: The self-host projection no longer stores or pre-fetches composed URI documents, and the event log
|
|
32
|
+
is append-only (from the abx-services 2026-08-05 projection memo, `docs/11`).
|
|
33
|
+
|
|
34
|
+
- **`contractURI`/`tokenURI` are live reads, never projected.** `reconstructProject`/
|
|
35
|
+
`reconstructIncremental` gain `readUriDocuments` (default **false**) — with it off, the whole
|
|
36
|
+
`contractURI`/`tokenURI` head-read batch is skipped entirely, not fetched-and-discarded. These
|
|
37
|
+
fields have no settled value (a renderer can change the composed document with no log at all) and,
|
|
38
|
+
on the on-chain lane, can run hundreds of KB per token — a real 32-token project measured 13.4 MB
|
|
39
|
+
serialized, 99.8% of it `tokenURI`. A stale-but-rendering `data:` URI is worse than a missing one,
|
|
40
|
+
because nothing about it looks wrong. `abx demo` is the one caller that passes `readUriDocuments:
|
|
41
|
+
true`, for its read-back teaching step; `abx deploy`/`deploy-series`/`deploy-code` don't, and
|
|
42
|
+
`abx verify`/`tokenuri`/`contracturi` were already doing independent live reads. **For
|
|
43
|
+
integrators:** `ProjectState.contractURI` / `TokenState.tokenURI` are now `null` unless you opt in
|
|
44
|
+
— including in a self-host node's `/api/project/:addr` responses (shape unchanged, values now
|
|
45
|
+
null). Nothing that composes served metadata reads either field (the settled `fields`/
|
|
46
|
+
`collectionFields` do); the settled scalars — `tokenURIRenderer`/`tokenURILocked`/
|
|
47
|
+
`contractURIRenderer`/`contractURILocked` — are unaffected and still projected.
|
|
48
|
+
- **The events table is append-only.** `seq` is now chain-derived (`(blockNumber << 32) |
|
|
49
|
+
logIndex`, BigInt-safe) instead of the array index at write time, so it's stable across re-folds —
|
|
50
|
+
a re-index appends via `ON CONFLICT DO NOTHING` instead of deleting and reinserting the whole
|
|
51
|
+
history on every delta. `putProject` upserts the project and token rows in place (a token whose id
|
|
52
|
+
vanishes from state is still removed) rather than delete-and-reinsert. `deregister` still deletes
|
|
53
|
+
a forgotten project's events in full; a routine re-fold does not. **A full replay (`abx index
|
|
54
|
+
--full`) purges the project's event log before rebuilding it** — append-only must not let a
|
|
55
|
+
reorg-replaced event survive as a stale row, so the documented repair path stays a real repair.
|
|
56
|
+
Existing stores migrate their positional `seq` values to the chain-derived form once, automatically
|
|
57
|
+
(`PRAGMA user_version`-gated, transactional).
|
|
58
|
+
- **Self-healing eventCount guard.** An incremental fold that would reduce `eventCount` below what's
|
|
59
|
+
already stored is discarded rather than written, with one automatic full-reconstruct fallback (the
|
|
60
|
+
memo's own war story: a bad fold once silently zeroed a live projection with nothing to catch it).
|
|
61
|
+
- **New self-host stores open with `auto_vacuum = INCREMENTAL`.** Existing stores are unaffected
|
|
62
|
+
(the pragma only takes on a database with no tables yet) — recorded as backlog B29.
|
|
63
|
+
|
|
64
|
+
- Updated dependencies [afa9dd4]
|
|
65
|
+
- Updated dependencies [8c254d5]
|
|
66
|
+
- @artblocks/abx-sdk@0.1.0-alpha.12
|
|
67
|
+
- @artblocks/abx-indexer@0.1.0-alpha.13
|
|
68
|
+
- @artblocks/abx-token-api@0.1.0-alpha.15
|
|
69
|
+
- @artblocks/abx-storage@0.1.0-alpha.12
|
|
70
|
+
|
|
3
71
|
## 0.1.0-alpha.19
|
|
4
72
|
|
|
5
73
|
### Minor Changes
|
|
@@ -8,6 +8,19 @@ export declare const DIMENSIONS: Record<string, {
|
|
|
8
8
|
aliases: string[];
|
|
9
9
|
}>;
|
|
10
10
|
export declare function resolveDimension(type: string): string;
|
|
11
|
+
/** Parse `--copies <N|open>` into the `editionSize` InitParams field (`0n` = open/uncapped). Throws
|
|
12
|
+
* with a pointed message on anything else — a bare `--copies` (no value), a non-integer, or the
|
|
13
|
+
* literal `0` (which already has an on-chain meaning — "open" says the same thing without the
|
|
14
|
+
* ambiguity of "did they mean zero copies, or unlimited?"). */
|
|
15
|
+
export declare function parseCopies(raw: string | undefined): bigint;
|
|
16
|
+
/** `--copies 1` is legal — a single-copy ERC-1155 edition — but it is almost never what a creator
|
|
17
|
+
* actually wants (the plain 721 lane makes a simpler, more marketplace-familiar token for exactly
|
|
18
|
+
* one copy). Advisory only; never refused — `--copies` exists precisely so nobody has to reach for
|
|
19
|
+
* a different flag to get an edition. */
|
|
20
|
+
export declare function copiesOneNote(cmd: string): string;
|
|
21
|
+
/** A non-negative-integer flag (`--mint-amount`, …) — the shared parse + bound-check so every
|
|
22
|
+
* edition flag that takes "a count" reports the same, plain-language rejection. */
|
|
23
|
+
export declare function parseNonNegativeIntFlag(raw: string, flag: string): bigint;
|
|
11
24
|
/**
|
|
12
25
|
* A `--dry-run` computes the deterministic deploy address, which is a pure function of
|
|
13
26
|
* (factory, salt, deployer) — so it needs a deployer even though it signs nothing. Resolve it the
|
|
@@ -108,9 +121,11 @@ export declare function authorshipReadout(flags: Flags): string[];
|
|
|
108
121
|
export declare function describeTraits(traits: OpenSeaAttribute[], onchain: boolean): string;
|
|
109
122
|
export declare function cmdDeploy(flags: Flags, serveAfter: boolean): Promise<void>;
|
|
110
123
|
export declare function cmdDeployBody(flags: Flags, serveAfter: boolean, emit: (p: Record<string, unknown>) => void): Promise<void>;
|
|
124
|
+
export declare function cmdDeployOneOfOneEditionBody(flags: Flags, emit: (p: Record<string, unknown>) => void): Promise<void>;
|
|
111
125
|
export declare const tokenFieldOf: (tokenId: number, f: OnChainFieldInput) => SeriesTokenFieldInput;
|
|
112
126
|
export declare function cmdDeploySeries(flags: Flags): Promise<void>;
|
|
113
127
|
export declare function cmdDeploySeriesBody(flags: Flags, emit: (p: Record<string, unknown>) => void): Promise<void>;
|
|
128
|
+
export declare function cmdDeployEditionImageBody(flags: Flags, emit: (p: Record<string, unknown>) => void): Promise<void>;
|
|
114
129
|
/**
|
|
115
130
|
* `abx deploy-code` — deploy a code project ({SeriesCode}) end to end, hot lane:
|
|
116
131
|
* the canonical factory + seed source from the manifest, fat initialize (the `code`
|
|
@@ -166,16 +181,26 @@ export declare const DEPLOY_CODE_FLAGS: Set<string>;
|
|
|
166
181
|
export declare const SHARED_DEPLOY_FLAGS: string[];
|
|
167
182
|
export declare const DEPLOY_FLAGS: Set<string>;
|
|
168
183
|
export declare const DEPLOY_SERIES_FLAGS: Set<string>;
|
|
184
|
+
export declare const DEPLOY_EDITION_FLAGS: Set<string>;
|
|
185
|
+
export declare const DEPLOY_SERIES_EDITION_FLAGS: Set<string>;
|
|
169
186
|
export declare function cmdDeployCode(flags: Flags): Promise<void>;
|
|
170
187
|
export declare function cmdDeployCodeBody(flags: Flags, emit: (p: Record<string, unknown>) => void): Promise<void>;
|
|
188
|
+
export declare const DEPLOY_CODE_EDITION_FLAGS: Set<string>;
|
|
189
|
+
export declare function cmdDeployEditionCodeBody(flags: Flags, emit: (p: Record<string, unknown>) => void): Promise<void>;
|
|
171
190
|
/**
|
|
172
191
|
* Resolve `--721c` into the InitParams `transferValidator`. Absent → `zeroAddress`: a plain
|
|
173
|
-
* ERC-721, byte-for-byte the pre-721C deploy — no
|
|
174
|
-
* `--721c` / `--721c recommended` → the per-chain
|
|
175
|
-
* chains that have one, when the manifest has no
|
|
176
|
-
* pre-checked for code on this chain (the factory
|
|
177
|
-
* surface it before any upload/staging/gas). When
|
|
178
|
-
* what enforcement means — once, adapted to the
|
|
192
|
+
* ERC-721 (or, on an edition deploy, a plain ERC-1155), byte-for-byte the pre-721C deploy — no
|
|
193
|
+
* prompts, no output, no mention of 721C. `--721c` / `--721c recommended` → the per-chain
|
|
194
|
+
* recommended validator (refused, naming the chains that have one, when the manifest has no
|
|
195
|
+
* entry); `--721c 0x…` → checksum-validated AND pre-checked for code on this chain (the factory
|
|
196
|
+
* would revert `InvalidTransferValidator()` — surface it before any upload/staging/gas). When
|
|
197
|
+
* enrolling, prints the one plain statement of what enforcement means — once, adapted to the
|
|
198
|
+
* chosen validator.
|
|
199
|
+
*
|
|
200
|
+
* `standard` picks only the WORDING (`ERC-721C` vs `ERC-1155C`) — the flag, the value grammar, and
|
|
201
|
+
* the resolved validator address are identical either way (the SAME `InitParams.transferValidator`
|
|
202
|
+
* opt-in per the parity plan's locked decision 3: 1155C ships with the same UX as 721C). Editions
|
|
203
|
+
* pass `'1155C'`; every 721 call site keeps the default, so their output is unchanged.
|
|
179
204
|
*/
|
|
180
|
-
export declare function resolveTransferValidatorFlag(flags: Flags, publicClient: PublicClient, dryRun: boolean): Promise<Address>;
|
|
205
|
+
export declare function resolveTransferValidatorFlag(flags: Flags, publicClient: PublicClient, dryRun: boolean, standard?: '721C' | '1155C'): Promise<Address>;
|
|
181
206
|
//# sourceMappingURL=deploy.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deploy.d.ts","sourceRoot":"","sources":["../../src/commands/deploy.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,eAAe,EAAC,MAAM,wBAAwB,CAAC;AACvD,OAAO,EACL,KAAK,OAAO,EAKZ,KAAK,iBAAiB,EACtB,KAAK,gBAAgB,EACrB,KAAK,YAAY,EACjB,KAAK,YAAY,EAKjB,KAAK,qBAAqB,
|
|
1
|
+
{"version":3,"file":"deploy.d.ts","sourceRoot":"","sources":["../../src/commands/deploy.ts"],"names":[],"mappings":"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"}
|