@artblocks/abx-cli 0.1.0-alpha.46 → 0.1.0-alpha.48
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 +15 -0
- package/dist/commands/deploy.js +1 -1
- package/dist/commands/deploy.js.map +1 -1
- package/dist/commands/reads.d.ts.map +1 -1
- package/dist/commands/reads.js +3 -2
- package/dist/commands/reads.js.map +1 -1
- package/dist/commands/service.d.ts.map +1 -1
- package/dist/commands/service.js +2 -1
- package/dist/commands/service.js.map +1 -1
- package/dist/errors.d.ts +2 -0
- package/dist/errors.d.ts.map +1 -1
- package/dist/errors.js +7 -0
- package/dist/errors.js.map +1 -1
- package/dist/riskgate.d.ts +3 -0
- package/dist/riskgate.d.ts.map +1 -1
- package/dist/riskgate.js +24 -8
- package/dist/riskgate.js.map +1 -1
- package/package.json +1 -1
- package/skill/SKILL.md +1 -1
- package/skill/reference/setup.md +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @artblocks/abx-cli
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.48
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 70d2761: Make release-candidate automation fail closed: accept the documented hot-signing flag for code
|
|
8
|
+
editions, simulate purchase dry-runs as the configured hot signer, and return a failed exit status
|
|
9
|
+
when any requested render fails.
|
|
10
|
+
|
|
11
|
+
## 0.1.0-alpha.47
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 5e93246: Correct the bundled agent guidance for Arbitrum Sepolia's canonical contract deployment.
|
|
16
|
+
- @artblocks/abx-storage@0.1.0-alpha.35
|
|
17
|
+
|
|
3
18
|
## 0.1.0-alpha.46
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/commands/deploy.js
CHANGED
|
@@ -4843,7 +4843,7 @@ export const DEPLOY_CODE_EDITION_FLAGS = new Set([
|
|
|
4843
4843
|
'max', 'mint-count', 'mint-all', 'no-mint', 'mint-amount', 'unpaused', 'minter', 'primary-payee', 'royalty-bps', 'royalty-cap', 'burnable', '721c',
|
|
4844
4844
|
'schema', 'no-seed', 'seed-source',
|
|
4845
4845
|
'public-base-url', 'onchain-uri', 'generator', 'renderer', 'port',
|
|
4846
|
-
'sign', 'unsigned', 'for', 'salt', 'factory', 'bootstrap-factory', 'sign-url-file',
|
|
4846
|
+
'send', 'sign', 'unsigned', 'for', 'salt', 'factory', 'bootstrap-factory', 'sign-url-file',
|
|
4847
4847
|
'dry-run', 'confirm', 'yes', 'json', 'copies',
|
|
4848
4848
|
// storage (directory mode + --image-base's off-chain still) — mirrors storageOverrides(), same
|
|
4849
4849
|
// allowlist entries as the 721 twin's DEPLOY_CODE_FLAGS.
|