@artblocks/abx-cli 0.1.0-alpha.4 → 0.1.0-alpha.40
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 +16 -0
- package/assets/renderer-scaffold/README.md +29 -11
- package/assets/renderer-scaffold/foundry.toml +1 -0
- package/assets/renderer-scaffold/remappings.txt +1 -1
- package/assets/renderer-scaffold/script/DeployHooks.s.sol +24 -0
- package/assets/renderer-scaffold/src/MyHooks.sol +20 -0
- package/assets/renderer-scaffold/src/MyRenderer.sol +4 -4
- package/assets/renderer-scaffold/src/MyTraits.sol +2 -2
- package/assets/renderer-scaffold/test/MyRenderer.t.sol +60 -3
- package/dist/bin.d.ts +26 -0
- package/dist/bin.d.ts.map +1 -0
- package/dist/bin.js +63 -0
- package/dist/bin.js.map +1 -0
- package/dist/capabilities.d.ts +94 -0
- package/dist/capabilities.d.ts.map +1 -0
- package/dist/capabilities.js +135 -0
- package/dist/capabilities.js.map +1 -0
- package/dist/commands/auth.d.ts +54 -0
- package/dist/commands/auth.d.ts.map +1 -0
- package/dist/commands/auth.js +447 -0
- package/dist/commands/auth.js.map +1 -0
- package/dist/commands/deploy.d.ts +242 -0
- package/dist/commands/deploy.d.ts.map +1 -0
- package/dist/commands/deploy.js +4763 -0
- package/dist/commands/deploy.js.map +1 -0
- package/dist/commands/feedback.d.ts +7 -0
- package/dist/commands/feedback.d.ts.map +1 -0
- package/dist/commands/feedback.js +147 -0
- package/dist/commands/feedback.js.map +1 -0
- package/dist/commands/project.d.ts +257 -0
- package/dist/commands/project.d.ts.map +1 -0
- package/dist/commands/project.js +1414 -0
- package/dist/commands/project.js.map +1 -0
- package/dist/commands/reads.d.ts +64 -0
- package/dist/commands/reads.d.ts.map +1 -0
- package/dist/commands/reads.js +701 -0
- package/dist/commands/reads.js.map +1 -0
- package/dist/commands/scaffold.d.ts +89 -0
- package/dist/commands/scaffold.d.ts.map +1 -0
- package/dist/commands/scaffold.js +733 -0
- package/dist/commands/scaffold.js.map +1 -0
- package/dist/commands/service.d.ts +67 -0
- package/dist/commands/service.d.ts.map +1 -0
- package/dist/commands/service.js +741 -0
- package/dist/commands/service.js.map +1 -0
- package/dist/commands/storage.d.ts +51 -0
- package/dist/commands/storage.d.ts.map +1 -0
- package/dist/commands/storage.js +370 -0
- package/dist/commands/storage.js.map +1 -0
- package/dist/commands/submit-app.d.ts +59 -0
- package/dist/commands/submit-app.d.ts.map +1 -0
- package/dist/commands/submit-app.js +513 -0
- package/dist/commands/submit-app.js.map +1 -0
- package/dist/config.d.ts +90 -2
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +284 -11
- package/dist/config.js.map +1 -1
- package/dist/conformance.d.ts +31 -0
- package/dist/conformance.d.ts.map +1 -0
- package/dist/conformance.js +390 -0
- package/dist/conformance.js.map +1 -0
- package/dist/contract-read-error.d.ts +5 -0
- package/dist/contract-read-error.d.ts.map +1 -0
- package/dist/contract-read-error.js +37 -0
- package/dist/contract-read-error.js.map +1 -0
- package/dist/deps.d.ts +6 -39
- package/dist/deps.d.ts.map +1 -1
- package/dist/deps.js +4 -68
- package/dist/deps.js.map +1 -1
- package/dist/errors.d.ts +20 -0
- package/dist/errors.d.ts.map +1 -0
- package/dist/errors.js +25 -0
- package/dist/errors.js.map +1 -0
- package/dist/flag-allowlists.d.ts +53 -0
- package/dist/flag-allowlists.d.ts.map +1 -0
- package/dist/flag-allowlists.js +180 -0
- package/dist/flag-allowlists.js.map +1 -0
- package/dist/flags.d.ts +41 -0
- package/dist/flags.d.ts.map +1 -1
- package/dist/flags.js +111 -1
- package/dist/flags.js.map +1 -1
- package/dist/jsonout.d.ts +37 -0
- package/dist/jsonout.d.ts.map +1 -0
- package/dist/jsonout.js +68 -0
- package/dist/jsonout.js.map +1 -0
- package/dist/kind.d.ts +57 -0
- package/dist/kind.d.ts.map +1 -0
- package/dist/kind.js +122 -0
- package/dist/kind.js.map +1 -0
- package/dist/main.js +747 -4838
- package/dist/main.js.map +1 -1
- package/dist/mintpage.d.ts +17 -2
- package/dist/mintpage.d.ts.map +1 -1
- package/dist/mintpage.js +241 -54
- package/dist/mintpage.js.map +1 -1
- package/dist/output.d.ts +179 -0
- package/dist/output.d.ts.map +1 -0
- package/dist/output.js +780 -0
- package/dist/output.js.map +1 -0
- package/dist/ownerops.d.ts +312 -57
- package/dist/ownerops.d.ts.map +1 -1
- package/dist/ownerops.js +1808 -357
- package/dist/ownerops.js.map +1 -1
- package/dist/preview.d.ts +23 -5
- package/dist/preview.d.ts.map +1 -1
- package/dist/preview.js +95 -43
- package/dist/preview.js.map +1 -1
- package/dist/prompt.d.ts +17 -0
- package/dist/prompt.d.ts.map +1 -0
- package/dist/prompt.js +19 -0
- package/dist/prompt.js.map +1 -0
- package/dist/provision.d.ts +3 -13
- package/dist/provision.d.ts.map +1 -1
- package/dist/provision.js +19 -21
- package/dist/provision.js.map +1 -1
- package/dist/remote.d.ts +157 -52
- package/dist/remote.d.ts.map +1 -1
- package/dist/remote.js +435 -46
- package/dist/remote.js.map +1 -1
- package/dist/riskgate.d.ts +62 -0
- package/dist/riskgate.d.ts.map +1 -0
- package/dist/riskgate.js +234 -0
- package/dist/riskgate.js.map +1 -0
- package/dist/scaffold.d.ts +12 -0
- package/dist/scaffold.d.ts.map +1 -0
- package/dist/scaffold.js +56 -0
- package/dist/scaffold.js.map +1 -0
- package/dist/schema.d.ts +36 -1
- package/dist/schema.d.ts.map +1 -1
- package/dist/schema.js +121 -26
- package/dist/schema.js.map +1 -1
- package/dist/script-chunks.d.ts +8 -0
- package/dist/script-chunks.d.ts.map +1 -0
- package/dist/script-chunks.js +35 -0
- package/dist/script-chunks.js.map +1 -0
- package/dist/served.d.ts +30 -0
- package/dist/served.d.ts.map +1 -0
- package/dist/served.js +112 -0
- package/dist/served.js.map +1 -0
- package/dist/signer.d.ts +13 -0
- package/dist/signer.d.ts.map +1 -1
- package/dist/signer.js +84 -15
- package/dist/signer.js.map +1 -1
- package/dist/update-check.d.ts +86 -5
- package/dist/update-check.d.ts.map +1 -1
- package/dist/update-check.js +161 -20
- package/dist/update-check.js.map +1 -1
- package/package.json +13 -12
- package/skill/SKILL.md +179 -347
- package/skill/agents/openai.yaml +4 -0
- package/skill/reference/capabilities.md +188 -0
- package/skill/reference/code.md +211 -0
- package/skill/reference/creator-token.md +94 -0
- package/skill/reference/deploy.md +167 -0
- package/skill/reference/diagnose.md +165 -0
- package/skill/reference/hosting.md +161 -94
- package/skill/reference/operate.md +181 -0
- package/skill/reference/services.md +121 -0
- package/skill/reference/setup.md +140 -36
- package/assets/renderer-scaffold/src/interfaces/IAbxFieldRenderer.sol +0 -32
- package/assets/renderer-scaffold/src/interfaces/IAbxParams.sol +0 -26
- package/dist/inspect.d.ts +0 -48
- package/dist/inspect.d.ts.map +0 -1
- package/dist/inspect.js +0 -184
- package/dist/inspect.js.map +0 -1
- package/dist/migrate.d.ts +0 -65
- package/dist/migrate.d.ts.map +0 -1
- package/dist/migrate.js +0 -180
- package/dist/migrate.js.map +0 -1
- package/dist/onchain-uri.d.ts +0 -97
- package/dist/onchain-uri.d.ts.map +0 -1
- package/dist/onchain-uri.js +0 -243
- package/dist/onchain-uri.js.map +0 -1
- package/dist/upload.d.ts +0 -28
- package/dist/upload.d.ts.map +0 -1
- package/dist/upload.js +0 -41
- package/dist/upload.js.map +0 -1
- package/skill/reference/code-projects.md +0 -246
- package/skill/reference/operating.md +0 -116
- package/skill/reference/troubleshooting.md +0 -28
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
# Operating an existing ABX project
|
|
2
|
+
|
|
3
|
+
Use this reference for inspection, minting and sales, transfers, fields, gateways, URI pointers,
|
|
4
|
+
royalties, supply, attachments, refreshes, ownership transfer, and locks.
|
|
5
|
+
|
|
6
|
+
## Contents
|
|
7
|
+
|
|
8
|
+
- [Read before writing](#read-before-writing)
|
|
9
|
+
- [Mint and run primary sales](#mint-and-run-primary-sales)
|
|
10
|
+
- [Transfer tokens and authority](#transfer-tokens-and-authority)
|
|
11
|
+
- [Operate metadata and data](#operate-metadata-and-data)
|
|
12
|
+
- [Manage economics and supply](#manage-economics-and-supply)
|
|
13
|
+
- [Lock precisely](#lock-precisely)
|
|
14
|
+
|
|
15
|
+
## Read before writing
|
|
16
|
+
|
|
17
|
+
Never infer contract type or current authority from the original launch notes. Read the contract:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
abx state <address>
|
|
21
|
+
abx tokens <address> --json
|
|
22
|
+
abx contracturi <address>
|
|
23
|
+
abx tokenuri <address> --token <id>
|
|
24
|
+
abx verify <address> --json
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Use `abx status` or its remote form for projection/render lifecycle. Record active chain, detected
|
|
28
|
+
family, owner/admin, supply and pause state, minter/payee, royalty/cap, URI renderer/pointers, code
|
|
29
|
+
dependencies, schemas/hooks, and lock state.
|
|
30
|
+
|
|
31
|
+
Before every write, run its help and dry-run form when available. Confirm sender, target, value,
|
|
32
|
+
token/id/amount, and permanence. Let the CLI validate contract type; do not send raw ABI calls to make
|
|
33
|
+
an operation fit the wrong family.
|
|
34
|
+
|
|
35
|
+
## Mint and run primary sales
|
|
36
|
+
|
|
37
|
+
`abx mint` follows the detected family:
|
|
38
|
+
|
|
39
|
+
- A 1/1 issues its single token.
|
|
40
|
+
- A Series mints the next id in order; `--count` can mint multiple sequential ids.
|
|
41
|
+
- An edition requires `--token-id` except where the contract has only the single 1/1-edition id, and
|
|
42
|
+
uses `--amount` for copies. `--count` is not an edition synonym.
|
|
43
|
+
|
|
44
|
+
Confirm the recipient. Minting may trigger a transfer hook; a hook that vetoes mint will revert the
|
|
45
|
+
whole transaction.
|
|
46
|
+
|
|
47
|
+
### Shared fixed-price minter
|
|
48
|
+
|
|
49
|
+
Use the shared minter commands for ordinary ETH primary sales:
|
|
50
|
+
|
|
51
|
+
1. `abx minter configure <token> …` sets price and allocation. Editions require a token id and use a
|
|
52
|
+
per-id sale configuration.
|
|
53
|
+
2. `abx set-minter <token> --minter <address>` authorizes the minter.
|
|
54
|
+
3. `abx set-primary-payee <token> --payee <address>` declares payout.
|
|
55
|
+
4. `abx unpause <token>` opens minting when the family supports the pause gate.
|
|
56
|
+
5. `abx minter show <token> …` verifies the public sale state.
|
|
57
|
+
6. `abx minter buy <token> …` is the public purchase path; editions use quantity and token id.
|
|
58
|
+
|
|
59
|
+
Do not call a sale live until price units, allocation, payee, minter address, pause state, and a
|
|
60
|
+
representative purchase are verified. `abx mint-page` scaffolds a client for the shared minter; it does
|
|
61
|
+
not configure the on-chain sale for you.
|
|
62
|
+
|
|
63
|
+
Use a custom minter for auctions, allowlists, raffles, free claims, ERC-20 pricing, or other issuance
|
|
64
|
+
rules. The custom contract calls the canonical token's mint authority; the token itself remains a
|
|
65
|
+
factory clone. Read [capabilities.md](capabilities.md).
|
|
66
|
+
|
|
67
|
+
## Transfer tokens and authority
|
|
68
|
+
|
|
69
|
+
`abx transfer` moves token ownership/copies, not contract administration.
|
|
70
|
+
|
|
71
|
+
- A 721 transfer names token id and destination.
|
|
72
|
+
- An edition transfer names token id, amount, destination, and source holder because an id can have
|
|
73
|
+
multiple holders.
|
|
74
|
+
- Creator-token validation or a transfer hook may reject the move. Diagnose the actual revert; do not
|
|
75
|
+
bypass or clear an enforcement mechanism without the owner's explicit intent.
|
|
76
|
+
|
|
77
|
+
`abx set-admin --to <address>` transfers contract authority. Treat it as a high-risk, potentially
|
|
78
|
+
irrecoverable handoff:
|
|
79
|
+
|
|
80
|
+
1. Verify the recipient is correct for the active chain.
|
|
81
|
+
2. Inventory unfinished operations and unlocked surfaces.
|
|
82
|
+
3. State which powers move and which external controllers remain separate.
|
|
83
|
+
4. Receive exact human confirmation.
|
|
84
|
+
5. Execute once, then read state from chain to prove the new owner.
|
|
85
|
+
|
|
86
|
+
Never interpret a token transfer as a sale listing. ABX has no secondary order book; a marketplace or
|
|
87
|
+
manual transfer handles secondary exchange.
|
|
88
|
+
|
|
89
|
+
## Operate metadata and data
|
|
90
|
+
|
|
91
|
+
### URI pointers and renderers
|
|
92
|
+
|
|
93
|
+
Use `set-token-uri`, `set-contract-uri`, and `set-renderer` only after reading the current configuration
|
|
94
|
+
and verifying the destination. Switching `set-renderer --off` can place an HTTP resolver in front of
|
|
95
|
+
content that remains stored on-chain. Switching to the canonical renderer makes configured on-chain
|
|
96
|
+
fields self-resolving when the contract supports them.
|
|
97
|
+
|
|
98
|
+
Never hand-build a resolver path. Read `tokenURI`/`contractURI`, decode it, and follow what the
|
|
99
|
+
contract actually returns. A correct-looking URL constructed from memory is not evidence.
|
|
100
|
+
|
|
101
|
+
### Fields
|
|
102
|
+
|
|
103
|
+
`abx set-field` writes one metadata field representation at token or collection scope. Representations
|
|
104
|
+
include inline data, reader/chunk pointers, hashes, public locators, and renderer pointers as supported
|
|
105
|
+
by the contract. Collection-scope values act as shared defaults; token-scope values override them.
|
|
106
|
+
|
|
107
|
+
Use reserved fields such as description, attributes, creator, license, display notes, and links
|
|
108
|
+
according to command help. Verify the resulting provenance in decoded metadata. On-chain-wins means a
|
|
109
|
+
new on-chain value can intentionally supersede a resolver projection.
|
|
110
|
+
|
|
111
|
+
### Gateways
|
|
112
|
+
|
|
113
|
+
`abx set-gateway` changes the serving prefix for IPFS/Arweave locator representations without moving
|
|
114
|
+
the content. Verify a representative locator through the new gateway before changing it. A gateway
|
|
115
|
+
repoint is not a re-upload and does not change the committed CID/transaction id.
|
|
116
|
+
|
|
117
|
+
### Attachments versus parameters
|
|
118
|
+
|
|
119
|
+
`abx attach <addr> <key> <locator>` records a named artifact. The resolver exposes the complete
|
|
120
|
+
artifacts list and `/data/<key>` retrieval. Bare on-chain metadata cannot enumerate arbitrary field
|
|
121
|
+
keys, so consumers need a resolver to discover all attachments even when each locator is durable and
|
|
122
|
+
hash-anchored.
|
|
123
|
+
|
|
124
|
+
PostParams are different: the parameter store enumerates schemas and values on-chain. Read schemas
|
|
125
|
+
with `state` and values with `tokens --json`. Parameters do not require a resolver merely to be
|
|
126
|
+
canonical or enumerable.
|
|
127
|
+
|
|
128
|
+
### Refresh and URI events
|
|
129
|
+
|
|
130
|
+
`abx refresh` asks external marketplaces to fetch metadata again; it does not fix the metadata or
|
|
131
|
+
mutate canonical state. First prove that the current URI resolves and returns the intended document.
|
|
132
|
+
For editions, `ping-uri` re-emits native URI events for selected ids after a repoint. Use the smallest
|
|
133
|
+
id set needed and verify the new path before signalling indexers.
|
|
134
|
+
|
|
135
|
+
## Manage economics and supply
|
|
136
|
+
|
|
137
|
+
Use `set-royalty` to change receiver/rate within the collection's permanent royalty ceiling. Use
|
|
138
|
+
`set-royalty-cap` only to lower that ceiling. State the old and new values and confirm the irreversible
|
|
139
|
+
loss of future headroom.
|
|
140
|
+
|
|
141
|
+
Series supply caps and edition per-id caps are monotonic downward. Read current minted supply before
|
|
142
|
+
lowering a cap; never propose a value below already minted supply. For editions, name the id and
|
|
143
|
+
distinguish its per-id cap from aggregate collection supply.
|
|
144
|
+
|
|
145
|
+
Pause/unpause controls the supported mint gate, not transfers or every external minter behavior.
|
|
146
|
+
Read state after changing it.
|
|
147
|
+
|
|
148
|
+
Primary payee declares sale proceeds; royalty receiver handles secondary royalty reporting. Keep them
|
|
149
|
+
separate. Changing one does not update the other.
|
|
150
|
+
|
|
151
|
+
## Lock precisely
|
|
152
|
+
|
|
153
|
+
Lock last, after production-path verification. Every lock freezes a different surface:
|
|
154
|
+
|
|
155
|
+
| Lock | Freezes | Does not necessarily freeze |
|
|
156
|
+
|---|---|---|
|
|
157
|
+
| `lock-field` | one token/collection field representation | other fields, URI pointer, program, params |
|
|
158
|
+
| `lock-uri` | URI configuration/pointer at selected scope | program/dependencies/params/hooks |
|
|
159
|
+
| `lock-script` | code-project script chunks | dependencies, metadata, params, external renderer code |
|
|
160
|
+
| `lock-dependencies` | dependency list and registry pointer | bytes returned later by a live registry entry |
|
|
161
|
+
| `lock-param-hooks` | configure/transfer/augment addresses | behavior behind an upgradeable address |
|
|
162
|
+
| governed schema/value lock | writes governed by that schema/key | unrelated or ungoverned params; some inherited defaults |
|
|
163
|
+
| ownership transfer | future owner-only authority at this contract | powers held by external minters/hooks/providers |
|
|
164
|
+
|
|
165
|
+
For a code project, metadata locks alone do not freeze the program. A strong freeze normally requires
|
|
166
|
+
script, dependency, relevant field/URI, hook, and governed-parameter decisions, plus immutable external
|
|
167
|
+
renderer/hook/dependency deployments.
|
|
168
|
+
|
|
169
|
+
Important qualifications:
|
|
170
|
+
|
|
171
|
+
- An ungoverned parameter remains writable despite metadata locks.
|
|
172
|
+
- A schema-welded token value is stronger than a collection default inherited by many tokens; the
|
|
173
|
+
recovery path may still allow a poisoned collection default to be cleared.
|
|
174
|
+
- A registry dependency may return different bytes behind a frozen reference.
|
|
175
|
+
- A locked pointer to an upgradeable proxy fixes the address, not its behavior.
|
|
176
|
+
- A transfer-hook address represents a standing ability to veto mints/transfers. Freezing an empty
|
|
177
|
+
hook set is the proof that this power cannot later be added.
|
|
178
|
+
|
|
179
|
+
Use `abx verify` and direct state reads to enumerate what remains mutable. Describe the guarantee as
|
|
180
|
+
specific stored values and addresses that can no longer change; do not promise immutable output unless
|
|
181
|
+
every live input and external implementation has actually been bounded.
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
# First-party services and feedback
|
|
2
|
+
|
|
3
|
+
Use this reference for the public ABX service, API-key login, hosted resolver/rendering, or feedback.
|
|
4
|
+
For provider-independent hosting and migration, also read [hosting.md](hosting.md).
|
|
5
|
+
|
|
6
|
+
## Contents
|
|
7
|
+
|
|
8
|
+
- [First-party service](#first-party-service)
|
|
9
|
+
- [Feedback targets](#feedback-targets)
|
|
10
|
+
|
|
11
|
+
## First-party service
|
|
12
|
+
|
|
13
|
+
The documented endpoints are:
|
|
14
|
+
|
|
15
|
+
- documentation: `https://docs.abx.io`
|
|
16
|
+
- service: `https://services.abx.io`
|
|
17
|
+
- OAuth discovery: `https://services.abx.io/.well-known/oauth-authorization-server`
|
|
18
|
+
- manual signup fallback: `https://services.abx.io/signup`
|
|
19
|
+
|
|
20
|
+
The first-party provider has the built-in remote name `abx`:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
abx remote abx
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
It needs `ABX_SERVICES_API_KEY` in the project's ignored `.env`; it does not need
|
|
27
|
+
`ABX_REMOTE_ABX_URL`. When the key is absent, use:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
abx auth login
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
The CLI starts the OAuth device flow and shows a verified browser URL plus a matching short code.
|
|
34
|
+
The human completes name, email, one-time-code verification, and approval in that browser. The CLI
|
|
35
|
+
polls at the provider-declared interval, receives the API key, and writes it directly to ignored
|
|
36
|
+
`.env` without printing it. The browser never receives the key. Do not ask the human to paste an OTP
|
|
37
|
+
or key into chat. `--no-open` leaves the browser handoff as a link; `--force` is required to replace
|
|
38
|
+
an existing local credential, but does not revoke the displaced provider key. For normal rotation,
|
|
39
|
+
run `abx auth logout` and then `abx auth login`; reserve `--force` for recovery. The CLI refuses
|
|
40
|
+
tracked or unignored `.env` files.
|
|
41
|
+
|
|
42
|
+
The issued API key is long-lived and remains valid until it is revoked. Reuse the stored key across
|
|
43
|
+
tasks and agent sessions; do not start a new login merely because a task or conversation ended. If
|
|
44
|
+
`abx remote abx` authenticates successfully, no login is needed.
|
|
45
|
+
|
|
46
|
+
In an agent runner, start `abx auth login --no-open` with a short initial yield or a resumable
|
|
47
|
+
background session. Relay the printed URL and code immediately while that same process keeps polling,
|
|
48
|
+
then resume it after human approval. Do not start another login or add an outer retry loop. If the
|
|
49
|
+
runner cannot yield control while a command waits, ask the human to run the command in their terminal.
|
|
50
|
+
|
|
51
|
+
Logout only for intentional teardown, suspected compromise, deliberate rotation, or to free an
|
|
52
|
+
active-key slot. When revoking, do not only delete the local value:
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
abx auth logout # first-party service
|
|
56
|
+
abx auth logout <name> # another OAuth-capable named remote
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Logout discovers the provider's RFC 7009 endpoint, revokes the current key, and only then removes the
|
|
60
|
+
matching `.env` assignment. If the key came from a shell or another environment source, the CLI
|
|
61
|
+
revokes it and tells the human where it still needs to be unset. A repeated logout with no active
|
|
62
|
+
local credential is safe.
|
|
63
|
+
|
|
64
|
+
Use `/signup` only as the manual recovery path. It shows the raw key once, so the human—not the
|
|
65
|
+
agent—must place it in `.env`. An already verified email reuses its account and may receive another
|
|
66
|
+
key, subject to the service's active-key limit. `abx auth logout` revokes an unused current key and
|
|
67
|
+
frees its active-key slot.
|
|
68
|
+
|
|
69
|
+
Availability, pricing, and quotas are service policy rather than protocol guarantees. Confirm current
|
|
70
|
+
terms before making a durable hosting choice and keep the exit route explicit: the same remote-service
|
|
71
|
+
contract supports another provider or a creator-operated resolver/effects deployment.
|
|
72
|
+
|
|
73
|
+
Before depending on hosted behavior, inspect the live descriptor with `abx remote abx`; do not infer
|
|
74
|
+
capabilities from this file. Use `--remote abx` on commands that accept a managed remote and verify
|
|
75
|
+
the resulting public surfaces as described in [hosting.md](hosting.md).
|
|
76
|
+
|
|
77
|
+
## Feedback targets
|
|
78
|
+
|
|
79
|
+
`abx feedback` has two deliberately separate targets:
|
|
80
|
+
|
|
81
|
+
| Intent | Command | Recipient |
|
|
82
|
+
|---|---|---|
|
|
83
|
+
| ABX protocol, contracts, CLI, SDK, skill, or docs | `abx feedback` | core ABX team |
|
|
84
|
+
| A remote provider's resolver, rendering, auth, or operations | `abx feedback --remote <name>` | that provider |
|
|
85
|
+
|
|
86
|
+
For first-party hosted-service feedback use `--remote abx`. A third-party remote can advertise the
|
|
87
|
+
optional `abx-service-feedback/v1` interface and operate its own feedback store. Never send
|
|
88
|
+
provider-specific incidents through core feedback merely because both first-party targets currently
|
|
89
|
+
share infrastructure.
|
|
90
|
+
|
|
91
|
+
Discovery and report previews are public. Submission (`--yes`) and `--mine` require the same key
|
|
92
|
+
created by `abx auth login`; login once rather than creating a separate feedback credential. Run the
|
|
93
|
+
command without report flags to inspect its live schema and instructions. To report, provide the
|
|
94
|
+
required structured flags; use `--detail-file` or `--context-file` rather than fragile shell quoting
|
|
95
|
+
for longer content. The CLI shows the exact destination and payload first. Review and redact the
|
|
96
|
+
preview with the human, then repeat with `--yes` only after explicit approval.
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
# Preview core feedback; nothing is sent.
|
|
100
|
+
abx feedback --area cli --kind bug --summary "Concise summary" --detail-file report.md
|
|
101
|
+
|
|
102
|
+
# After the human approves this exact preview.
|
|
103
|
+
abx feedback --area cli --kind bug --summary "Concise summary" --detail-file report.md --yes
|
|
104
|
+
|
|
105
|
+
# Provider-specific preview.
|
|
106
|
+
abx feedback --remote abx --component rendering --kind bug --summary "Concise summary"
|
|
107
|
+
|
|
108
|
+
# Review reports previously submitted with the current key.
|
|
109
|
+
abx feedback --mine
|
|
110
|
+
abx feedback --remote abx --mine
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Do not attach `.env`, credentials, wallet/session URLs, full transcripts, or unrelated source files.
|
|
114
|
+
Prefer the smallest reproduction and relevant version/chain/address context. The API key authenticates
|
|
115
|
+
the reporter; hosted-service entitlement is evaluated separately. It never grants transaction-signing
|
|
116
|
+
authority.
|
|
117
|
+
|
|
118
|
+
Use the CLI instead of hand-written HTTP or retry loops. The device flow already handles pending,
|
|
119
|
+
slow-down, and transient polling responses until its fixed expiry. Treat `401` as missing/invalid credentials,
|
|
120
|
+
`403` as recognized credentials without the required entitlement, and schema/interface errors as a
|
|
121
|
+
request or provider-contract mismatch. Read [diagnose.md](diagnose.md) and make one state transition.
|
package/skill/reference/setup.md
CHANGED
|
@@ -1,36 +1,140 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
-
|
|
35
|
-
|
|
36
|
-
|
|
1
|
+
# Setup and safety
|
|
2
|
+
|
|
3
|
+
Use this reference when installing ABX, selecting a binary or signer, configuring a new environment,
|
|
4
|
+
or preparing a real transaction.
|
|
5
|
+
|
|
6
|
+
## Contents
|
|
7
|
+
|
|
8
|
+
- [Resolve the tool before the project](#resolve-the-tool-before-the-project)
|
|
9
|
+
- [Never expose secrets](#never-expose-secrets)
|
|
10
|
+
- [Select the chain explicitly through the environment](#select-the-chain-explicitly-through-the-environment)
|
|
11
|
+
- [Choose one signing lane](#choose-one-signing-lane)
|
|
12
|
+
- [Prepare without mutating](#prepare-without-mutating)
|
|
13
|
+
- [New environment checklist](#new-environment-checklist)
|
|
14
|
+
|
|
15
|
+
## Resolve the tool before the project
|
|
16
|
+
|
|
17
|
+
Inside the ABX source repository run `pnpm abx …`; elsewhere run the installed `abx`. A bare global
|
|
18
|
+
binary inside the repository may be older than the source. Start with:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
abx version
|
|
22
|
+
abx doctor
|
|
23
|
+
abx capabilities --json
|
|
24
|
+
abx skill install
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
`abx doctor` reports binary provenance, CLI/skill drift, active chain, RPC health and history reach,
|
|
28
|
+
wallet readiness, canonical factories, storage, and configured remotes without exposing credentials.
|
|
29
|
+
Treat a red check as an actionable setup state, not as permission to improvise a workaround.
|
|
30
|
+
|
|
31
|
+
The shipped skill is named `abx`. `abx skill install` installs it to `.claude/skills/abx` and
|
|
32
|
+
`.agents/skills/abx` by default; `--agent`, `--global`, and `--target` narrow the destination. During
|
|
33
|
+
the rename transition the installer moves a recognized `abx-self-host` folder to
|
|
34
|
+
`.abx-skill-backups/` before installing the new name. It preserves custom bytes rather than deleting
|
|
35
|
+
them. For a custom skills parent, run `abx skill install --target <that-parent>`; do not move or merge
|
|
36
|
+
the old folder manually. Restart the agent after installation.
|
|
37
|
+
|
|
38
|
+
ABX requires Node 22.13 or newer. Prefer a project-local npm dependency for reproducible automation;
|
|
39
|
+
use a global install for interactive machine-wide use. Avoid repeated `npx` execution when version
|
|
40
|
+
provenance matters because caches can outlive an upgrade.
|
|
41
|
+
|
|
42
|
+
## Never expose secrets
|
|
43
|
+
|
|
44
|
+
Do not open, search, quote, or print `.env`. Do not echo variables to test whether they exist. Do not
|
|
45
|
+
paste a private key into a command line, generated file, wallet page, bug report, or transcript.
|
|
46
|
+
|
|
47
|
+
Sensitive values include:
|
|
48
|
+
|
|
49
|
+
- `ABX_DEPLOYER_PK` and any wallet key;
|
|
50
|
+
- credential-bearing `ABX_RPC_URLS*` values;
|
|
51
|
+
- `PINATA_JWT`, S3/R2 keys, `ABX_SERVICES_API_KEY`, other remote-provider tokens, effects/admin
|
|
52
|
+
tokens;
|
|
53
|
+
- Arweave JWK contents and browser signing-session URLs.
|
|
54
|
+
|
|
55
|
+
Use `abx doctor`, `abx remote <name>`, `abx storage show --check`, and redacted CLI errors. If a tool
|
|
56
|
+
ever emits an unredacted credential-bearing endpoint, stop, rotate the credential, and report the
|
|
57
|
+
output bug without repeating the secret.
|
|
58
|
+
|
|
59
|
+
## Select the chain explicitly through the environment
|
|
60
|
+
|
|
61
|
+
The toolkit supports the chains printed by `abx capabilities`; today those are Base Sepolia by
|
|
62
|
+
default and Ethereum Sepolia via `ABX_CHAIN=sepolia`. There is deliberately no `--chain` flag. The
|
|
63
|
+
CLI refuses it because silently ignoring a wrong-chain request could spend on the wrong network.
|
|
64
|
+
|
|
65
|
+
Use per-chain RPC variables when operating more than one chain. `abx doctor` checks chain identity,
|
|
66
|
+
wide-range `eth_getLogs`, archival reach, and nonce coherence. Put a healthy archive endpoint first:
|
|
67
|
+
fallback transports rotate on errors, not on a successful but pruned empty log response.
|
|
68
|
+
|
|
69
|
+
The local projection and managed Arweave identity remain in `.abx-self-host/` unless
|
|
70
|
+
`ABX_DATA_DIR` overrides it. That runtime directory is separate from the renamed `abx` skill and is
|
|
71
|
+
not being renamed. Back up the managed Arweave key with `abx storage backup-key`; never print it.
|
|
72
|
+
|
|
73
|
+
## Choose one signing lane
|
|
74
|
+
|
|
75
|
+
Every write uses one of three lanes:
|
|
76
|
+
|
|
77
|
+
| Lane | Select | Use when |
|
|
78
|
+
|---|---|---|
|
|
79
|
+
| Hot | `--send` or default | An environment key may sign unattended |
|
|
80
|
+
| Wallet | `--sign --for 0x…` | A human approves in their browser wallet |
|
|
81
|
+
| Cold | `--unsigned --for 0x…` | A multisig/offline signer needs prepared transactions |
|
|
82
|
+
|
|
83
|
+
Run `abx doctor --for <address>` before a wallet or cold operation. On the wallet lane, give the
|
|
84
|
+
human the locally generated signing page; never request or handle their key. On the cold lane, verify
|
|
85
|
+
chain, sender, target, calldata, value, and ordering before handing transactions over.
|
|
86
|
+
|
|
87
|
+
`--onchain-image` staging cannot use the cold lane because each chunk transaction depends on the
|
|
88
|
+
receipt of the preceding transaction. Use hot or wallet signing. Do not split staging into a homemade
|
|
89
|
+
offline sequence.
|
|
90
|
+
|
|
91
|
+
`ABX_DEPLOYER_PK` may be written with or without a `0x` prefix — the CLI and SDK normalize it. Foundry's
|
|
92
|
+
`vm.envUint` does not: a custom forge script that reads the same `.env` needs the `0x` form.
|
|
93
|
+
|
|
94
|
+
For any one EOA, run one write command at a time. ABX obtains pending and latest nonces once, takes the
|
|
95
|
+
safe maximum, increments locally, waits for newly deployed code when a following transaction targets
|
|
96
|
+
it, and throws typed reversion errors. Starting concurrent processes bypasses that serialization.
|
|
97
|
+
|
|
98
|
+
## Prepare without mutating
|
|
99
|
+
|
|
100
|
+
Use command help and dry runs, not guessed syntax:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
abx help deploy-code
|
|
104
|
+
abx deploy-code … --dry-run --json
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
A dry run may read contracts, probe endpoints, analyze files, or verify an address, but it does not
|
|
108
|
+
send or store. Address prediction is meaningful only when the salt and deployer are pinned. Use
|
|
109
|
+
`abx predict` when another contract or resolver must know the collection address before deployment.
|
|
110
|
+
|
|
111
|
+
Before any real send, confirm:
|
|
112
|
+
|
|
113
|
+
- active chain and deploying/owning address;
|
|
114
|
+
- contract family and edition arithmetic;
|
|
115
|
+
- name, symbol, royalties and royalty ceiling;
|
|
116
|
+
- deploy-time options such as burnability and creator-token enrollment;
|
|
117
|
+
- custody, public resolution, image/animation/trait surfaces;
|
|
118
|
+
- mint amount, value, transaction count, and expected gas;
|
|
119
|
+
- every irreversible lock or authority transfer.
|
|
120
|
+
|
|
121
|
+
Do not make a real send merely because a dry run exited successfully. The dry run is the plan; the
|
|
122
|
+
human confirmation authorizes execution.
|
|
123
|
+
|
|
124
|
+
## New environment checklist
|
|
125
|
+
|
|
126
|
+
1. Install Node 22.13+ and the desired CLI version.
|
|
127
|
+
2. Install the co-versioned skill with `abx skill install`, then restart the agent.
|
|
128
|
+
3. Select the testnet using `ABX_CHAIN` if not using Base Sepolia.
|
|
129
|
+
4. Add RPC, signer, and storage configuration outside the transcript. For first-party hosted
|
|
130
|
+
services, run `abx auth login --no-open` in a short-yield or resumable session: immediately hand
|
|
131
|
+
its verified browser URL and matching code to the human, then resume that same polling process.
|
|
132
|
+
Let the CLI store `ABX_SERVICES_API_KEY` in ignored `.env` without printing it. Never ask for the
|
|
133
|
+
email OTP or key in chat, start duplicate login sessions, or add standing login instructions to
|
|
134
|
+
`AGENTS.md`/`CLAUDE.md`. The key is long-lived: reuse it across tasks and agent sessions. Run
|
|
135
|
+
`abx auth logout` only for intentional teardown, compromise, rotation, or an unused-key cleanup.
|
|
136
|
+
5. Run `abx doctor` and resolve every red check relevant to the chosen lane.
|
|
137
|
+
6. Run `abx storage show --check` when bytes will leave the local disk.
|
|
138
|
+
7. Run `abx remote <name>` before relying on a configured managed service.
|
|
139
|
+
8. Run command help, then a JSON dry run.
|
|
140
|
+
9. Confirm the plan and only then execute.
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
// SPDX-License-Identifier: MIT
|
|
2
|
-
pragma solidity ^0.8.20;
|
|
3
|
-
|
|
4
|
-
/// @title IAbxFieldRenderer — the contract your in-chain art implements
|
|
5
|
-
/// @notice A field renderer returns ONE metadata field's value, COMPUTED from chain state
|
|
6
|
-
/// (the token's seed + PostParams, its owner, anything readable on-chain). The ABX
|
|
7
|
-
/// metadata renderer staticcalls it to build `tokenURI` — e.g. an `image` renderer's
|
|
8
|
-
/// SVG becomes `data:image/svg+xml;base64,…`. Deploy your renderer, then wire it with
|
|
9
|
-
/// `abx deploy-code --image-renderer <address> [--attributes-renderer <address>] --onchain-uri`.
|
|
10
|
-
///
|
|
11
|
-
/// @dev THE FIVE INVARIANTS (a reverting or malformed renderer bricks the WHOLE tokenURI —
|
|
12
|
-
/// the metadata renderer staticcalls you with NO try/catch):
|
|
13
|
-
/// 1. NEVER revert for ANY (token, tokenId, field) — including the collection surface
|
|
14
|
-
/// `tokenId == type(uint256).max` (used by `contractURI`). Return a neutral value.
|
|
15
|
-
/// 2. Return the correct `contentType` (`image/svg+xml` for an image; `application/json`
|
|
16
|
-
/// for an `attributes` array).
|
|
17
|
-
/// 3. Guard `field`: revert only a truly unsupported field (a deploy-time miswiring), but
|
|
18
|
-
/// still never revert on the fields you DO render.
|
|
19
|
-
/// 4. `view` + deterministic: same chain state → same bytes.
|
|
20
|
-
/// 5. Bounded output: keep it small (a few hundred bytes of SVG) so `tokenURI` stays a
|
|
21
|
-
/// cheap single eth_call. `forge test` the never-revert cases before you wire it.
|
|
22
|
-
interface IAbxFieldRenderer {
|
|
23
|
-
/// @param token the ABX collection contract (read its params via {IAbxParams}).
|
|
24
|
-
/// @param tokenId the token, or `type(uint256).max` for the collection surface.
|
|
25
|
-
/// @param field which field to compute (e.g. `"image"`, `"attributes"`).
|
|
26
|
-
/// @return contentType MIME of `data` (e.g. `image/svg+xml`, `application/json`).
|
|
27
|
-
/// @return data the field's finished bytes.
|
|
28
|
-
function render(address token, uint256 tokenId, bytes32 field)
|
|
29
|
-
external
|
|
30
|
-
view
|
|
31
|
-
returns (string memory contentType, bytes memory data);
|
|
32
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
// SPDX-License-Identifier: MIT
|
|
2
|
-
pragma solidity ^0.8.20;
|
|
3
|
-
|
|
4
|
-
/// @title IAbxParams — read the token's on-chain params (seed + collector PostParams)
|
|
5
|
-
/// @notice Your renderer reads live state through this. Each value is a `bytes32`; `isSet` tells
|
|
6
|
-
/// you whether it exists (fall back to a default if not — see invariant #1). `valueIsHash`
|
|
7
|
-
/// is true when the on-chain value is a keccak commitment to off-chain bytes (a literal
|
|
8
|
-
/// scalar param like a `seed` or a `HexColor` palette is NOT a hash — check `!valueIsHash`).
|
|
9
|
-
///
|
|
10
|
-
/// The tokenData merge rule: a token-scope value overrides the contract-scope one. The
|
|
11
|
-
/// common pattern is `tokenParam` first, then `contractParam` as a fallback (see the
|
|
12
|
-
/// `_param` helper in MyRenderer.sol).
|
|
13
|
-
interface IAbxParams {
|
|
14
|
-
/// Returns the token-scope param: its bytes32 `value`, `valueIsHash` (true if it commits to
|
|
15
|
-
/// off-chain bytes — a literal scalar like a seed/HexColor is false), and `isSet` (does it exist).
|
|
16
|
-
function tokenParam(uint256 tokenId, bytes32 key)
|
|
17
|
-
external
|
|
18
|
-
view
|
|
19
|
-
returns (bytes32 value, bool valueIsHash, bool isSet);
|
|
20
|
-
|
|
21
|
-
/// @notice The contract-scope (collection-wide) value — the fallback when a token has none.
|
|
22
|
-
function contractParam(bytes32 key)
|
|
23
|
-
external
|
|
24
|
-
view
|
|
25
|
-
returns (bytes32 value, bool valueIsHash, bool isSet);
|
|
26
|
-
}
|
package/dist/inspect.d.ts
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* `abx inspect <script.js>` — static analysis of a generative script, BEFORE picking a lane.
|
|
3
|
-
*
|
|
4
|
-
* The membrane fix behind this: an agent (or creator) should DERIVE the deployment lane from what
|
|
5
|
-
* the script actually needs — are there traits? are they reproducible on-chain? how big is the
|
|
6
|
-
* assembled document (does a single `tokenURI` eth_call even fit)? — instead of guessing "fully
|
|
7
|
-
* on-chain!" and walking it back. This module is the pure analysis; `cmdInspect` formats it.
|
|
8
|
-
*
|
|
9
|
-
* Static only — it never executes the script (that's the resolver/runner's job, and executing
|
|
10
|
-
* untrusted art in the CLI would be a footgun). Everything here is regex/heuristic over the source.
|
|
11
|
-
*/
|
|
12
|
-
export type TraitFeasibility = 'none' | 'exact-likely' | 'careful' | 'infeasible' | 'unknown';
|
|
13
|
-
export interface ScriptAnalysis {
|
|
14
|
-
bytes: number;
|
|
15
|
-
estChunks: number;
|
|
16
|
-
traits: {
|
|
17
|
-
present: boolean;
|
|
18
|
-
keys: string[];
|
|
19
|
-
};
|
|
20
|
-
paramHints: string[];
|
|
21
|
-
prng: {
|
|
22
|
-
seeded: boolean;
|
|
23
|
-
usesBareRandom: boolean;
|
|
24
|
-
usesMathRandom: boolean;
|
|
25
|
-
usesNoise: boolean;
|
|
26
|
-
};
|
|
27
|
-
depHints: string[];
|
|
28
|
-
looksP5: boolean;
|
|
29
|
-
feasibility: {
|
|
30
|
-
verdict: TraitFeasibility;
|
|
31
|
-
reason: string;
|
|
32
|
-
};
|
|
33
|
-
doc: {
|
|
34
|
-
estBytes: number;
|
|
35
|
-
deps: string[];
|
|
36
|
-
fitsSingleCall: boolean;
|
|
37
|
-
unknownDepSizes: boolean;
|
|
38
|
-
};
|
|
39
|
-
runtime: {
|
|
40
|
-
readsTokenData: boolean;
|
|
41
|
-
reportsTraits: boolean;
|
|
42
|
-
wrongGlobal: string | null;
|
|
43
|
-
};
|
|
44
|
-
}
|
|
45
|
-
export declare function analyzeScript(source: string, declaredDeps?: string[]): ScriptAnalysis;
|
|
46
|
-
/** A one-line lane recommendation derived from the analysis (the decision-tree output). */
|
|
47
|
-
export declare function recommendLane(a: ScriptAnalysis): string;
|
|
48
|
-
//# sourceMappingURL=inspect.d.ts.map
|
package/dist/inspect.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"inspect.d.ts","sourceRoot":"","sources":["../src/inspect.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAgBH,MAAM,MAAM,gBAAgB,GAAG,MAAM,GAAG,cAAc,GAAG,SAAS,GAAG,YAAY,GAAG,SAAS,CAAC;AAE9F,MAAM,WAAW,cAAc;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,IAAI,EAAE,MAAM,EAAE,CAAA;KAAC,CAAC;IAC3C,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,IAAI,EAAE;QAAC,MAAM,EAAE,OAAO,CAAC;QAAC,cAAc,EAAE,OAAO,CAAC;QAAC,cAAc,EAAE,OAAO,CAAC;QAAC,SAAS,EAAE,OAAO,CAAA;KAAC,CAAC;IAC9F,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,OAAO,EAAE,OAAO,CAAC;IACjB,WAAW,EAAE;QAAC,OAAO,EAAE,gBAAgB,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAC,CAAC;IACzD,GAAG,EAAE;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,EAAE,CAAC;QAAC,cAAc,EAAE,OAAO,CAAC;QAAC,eAAe,EAAE,OAAO,CAAA;KAAC,CAAC;IAM3F,OAAO,EAAE;QAAC,cAAc,EAAE,OAAO,CAAC;QAAC,aAAa,EAAE,OAAO,CAAC;QAAC,WAAW,EAAE,MAAM,GAAG,IAAI,CAAA;KAAC,CAAC;CACxF;AAsDD,wBAAgB,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,YAAY,GAAE,MAAM,EAAO,GAAG,cAAc,CAqEzF;AAED,2FAA2F;AAC3F,wBAAgB,aAAa,CAAC,CAAC,EAAE,cAAc,GAAG,MAAM,CA0BvD"}
|