@artblocks/abx-sdk 0.1.0-alpha.13 → 0.1.0-alpha.14
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/dist/abi/generated.d.ts +926 -249
- package/dist/abi/generated.d.ts.map +1 -1
- package/dist/abi/generated.js +41 -39
- package/dist/abi/generated.js.map +1 -1
- package/dist/abi/index.d.ts +468 -61
- package/dist/abi/index.d.ts.map +1 -1
- package/dist/abi/index.js +16 -7
- package/dist/abi/index.js.map +1 -1
- package/dist/anchors.d.ts +70 -32
- package/dist/anchors.d.ts.map +1 -1
- package/dist/anchors.js +163 -32
- package/dist/anchors.js.map +1 -1
- package/dist/create2.d.ts +78 -7
- package/dist/create2.d.ts.map +1 -1
- package/dist/create2.js +149 -20
- package/dist/create2.js.map +1 -1
- package/dist/creator-token.d.ts +71 -4
- package/dist/creator-token.d.ts.map +1 -1
- package/dist/creator-token.js +94 -4
- package/dist/creator-token.js.map +1 -1
- package/dist/deploy.d.ts +49 -23
- package/dist/deploy.d.ts.map +1 -1
- package/dist/deploy.js +156 -76
- package/dist/deploy.js.map +1 -1
- package/dist/deployments.d.ts +4 -0
- package/dist/deployments.d.ts.map +1 -1
- package/dist/deployments.js +110 -45
- package/dist/deployments.js.map +1 -1
- package/dist/errors.d.ts +19 -0
- package/dist/errors.d.ts.map +1 -1
- package/dist/errors.js +24 -0
- package/dist/errors.js.map +1 -1
- package/dist/generator-document.d.ts +3 -2
- package/dist/generator-document.d.ts.map +1 -1
- package/dist/generator-document.js +3 -2
- package/dist/generator-document.js.map +1 -1
- package/dist/generator.d.ts +43 -1
- package/dist/generator.d.ts.map +1 -1
- package/dist/generator.js +29 -0
- package/dist/generator.js.map +1 -1
- package/dist/inspect.d.ts +1 -1
- package/dist/inspect.js +2 -2
- package/dist/inspect.js.map +1 -1
- package/dist/onchain-uri.d.ts +11 -0
- package/dist/onchain-uri.d.ts.map +1 -1
- package/dist/onchain-uri.js +20 -0
- package/dist/onchain-uri.js.map +1 -1
- package/dist/ops.d.ts +210 -11
- package/dist/ops.d.ts.map +1 -1
- package/dist/ops.js +308 -34
- package/dist/ops.js.map +1 -1
- package/dist/reconstruct.d.ts +1 -0
- package/dist/reconstruct.d.ts.map +1 -1
- package/dist/reconstruct.js +13 -1
- package/dist/reconstruct.js.map +1 -1
- package/dist/service.d.ts +1 -1
- package/dist/service.js +1 -1
- package/dist/spine.d.ts +3 -4
- package/dist/spine.d.ts.map +1 -1
- package/dist/spine.js +0 -0
- package/dist/spine.js.map +1 -1
- package/dist/staging.d.ts +32 -3
- package/dist/staging.d.ts.map +1 -1
- package/dist/staging.js +85 -8
- package/dist/staging.js.map +1 -1
- package/dist/tokendata.d.ts +1 -1
- package/dist/tokendata.d.ts.map +1 -1
- package/dist/tokendata.js +21 -3
- package/dist/tokendata.js.map +1 -1
- package/dist/tokens.d.ts +1 -1
- package/dist/tokens.js +1 -1
- package/dist/tokens.js.map +1 -1
- package/dist/types.d.ts +8 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/ops.d.ts
CHANGED
|
@@ -235,7 +235,11 @@ export declare function prepareDeployOneOfOne(args: {
|
|
|
235
235
|
chainId: number;
|
|
236
236
|
clone: Address;
|
|
237
237
|
}): PreparedTx;
|
|
238
|
-
/** The unsigned form of the factory (trust-anchor) deploy —
|
|
238
|
+
/** The unsigned form of the factory (trust-anchor) deploy — CREATE2 via the keyless proxy at the
|
|
239
|
+
* canonical salt, matching the forge `Deploy` script and `predictFactory()` (create2.ts). A trust
|
|
240
|
+
* anchor is the one address platforms allowlist, so it has to be the same on every chain and
|
|
241
|
+
* computable before the first tx; a plain creation (`to: null`) would make it depend on the
|
|
242
|
+
* deployer's nonce and could never match the recorded manifest. */
|
|
239
243
|
export declare function prepareDeployFactory(args: {
|
|
240
244
|
chainId: number;
|
|
241
245
|
}): PreparedTx;
|
|
@@ -299,7 +303,9 @@ export declare function prepareDeploySeries(args: {
|
|
|
299
303
|
chainId: number;
|
|
300
304
|
clone: Address;
|
|
301
305
|
}): PreparedTx;
|
|
302
|
-
/** The unsigned form of the Series factory (trust-anchor) deploy —
|
|
306
|
+
/** The unsigned form of the Series factory (trust-anchor) deploy — CREATE2 via the keyless proxy at
|
|
307
|
+
* the canonical salt, matching the forge `DeploySeries` script and `predictSeriesFactory()`. Same
|
|
308
|
+
* reasoning as `prepareDeployFactory` above. */
|
|
303
309
|
export declare function prepareDeploySeriesFactory(args: {
|
|
304
310
|
chainId: number;
|
|
305
311
|
}): PreparedTx;
|
|
@@ -366,7 +372,13 @@ export declare function prepareDeployOneOfOneEdition(args: {
|
|
|
366
372
|
/** The unsigned form of the 1/1-edition factory (trust-anchor) deploy — CREATE2 via the keyless
|
|
367
373
|
* proxy + canonical salt, so it lands at the SAME (predictable) address on every chain, matching
|
|
368
374
|
* `predictOneOfOneEditionFactory()` (create2.ts). See {@link prepareDeployRenderer} for why this
|
|
369
|
-
* is `to: CREATE2_PROXY`, not a plain creation.
|
|
375
|
+
* is `to: CREATE2_PROXY`, not a plain creation.
|
|
376
|
+
*
|
|
377
|
+
* The initcode goes out LINKED against `AbxEditionLib` (`linkOneOfOneEditionFactory()`): the
|
|
378
|
+
* embedded `OneOfOneEdition` implementation delegates its uri / creator-token / edition-supply
|
|
379
|
+
* bodies into that library, so the shipped bytecode carries a solc `__$…$__` placeholder. That
|
|
380
|
+
* library must already be on-chain at `predictEditionLib()` for the deployed factory to work —
|
|
381
|
+
* {@link deployOneOfOneEditionFactory} (deploy.ts) is the path that guarantees it. */
|
|
370
382
|
export declare function prepareDeployOneOfOneEditionFactory(args: {
|
|
371
383
|
chainId: number;
|
|
372
384
|
}): PreparedTx;
|
|
@@ -381,7 +393,9 @@ export declare function prepareDeployEditionImage(args: {
|
|
|
381
393
|
}): PreparedTx;
|
|
382
394
|
/** The unsigned form of the edition-image factory (trust-anchor) deploy — CREATE2 via the
|
|
383
395
|
* keyless proxy + canonical salt, matching `predictEditionFactory()` (create2.ts). See {@link
|
|
384
|
-
* prepareDeployRenderer} for why this is `to: CREATE2_PROXY`, not a plain creation
|
|
396
|
+
* prepareDeployRenderer} for why this is `to: CREATE2_PROXY`, not a plain creation, and {@link
|
|
397
|
+
* prepareDeployOneOfOneEditionFactory} for why the initcode is linked against `AbxEditionLib`
|
|
398
|
+
* (`EditionImage` delegates the same three mixins' bodies into it). */
|
|
385
399
|
export declare function prepareDeployEditionFactory(args: {
|
|
386
400
|
chainId: number;
|
|
387
401
|
}): PreparedTx;
|
|
@@ -409,17 +423,49 @@ export declare function prepareConfigureSale(args: {
|
|
|
409
423
|
allocation: bigint | number;
|
|
410
424
|
chainId: number;
|
|
411
425
|
}): PreparedTx;
|
|
426
|
+
/** The sale terms a buyer is agreeing to — the input to the minter's on-chain terms guard.
|
|
427
|
+
* ("Terms guard", not "slippage guard": on the ETH lane it tolerates no movement at all — see
|
|
428
|
+
* {@link preparePurchase}.)
|
|
429
|
+
* A {@link SaleConfig} (or {@link SaleConfig1155}) read from the chain drops straight in, which is
|
|
430
|
+
* the point: the terms that go into the transaction are the terms the caller just read. */
|
|
431
|
+
export type PurchaseTerms = Pick<SaleConfig, 'paymentToken' | 'price'>;
|
|
412
432
|
/**
|
|
413
433
|
* Buy one token from the shared minter. `to` omitted → minted to the signer (`purchase`);
|
|
414
|
-
* `to` set → minted to that address (`purchaseTo`).
|
|
415
|
-
*
|
|
416
|
-
* the
|
|
434
|
+
* `to` set → minted to that address (`purchaseTo`). Public — no owner rights needed.
|
|
435
|
+
*
|
|
436
|
+
* `sale` is the live terms ({@link readSaleConfig}), and they are **mandatory**: the minter takes
|
|
437
|
+
* `(expectedPaymentToken, maxPrice)` and reverts `SaleTermsChanged` if the sale has moved, which is
|
|
438
|
+
* what stops a project owner from front-running a pending purchase and spending the buyer's whole
|
|
439
|
+
* ERC-20 allowance (`configure` has no timelock). The ETH to attach is derived from those terms —
|
|
440
|
+
* `price` for an ETH sale, `0` for an ERC-20 one (where the buyer must have approved the minter to
|
|
441
|
+
* pull `price` beforehand) — so a caller can't desync the payment from the guard.
|
|
442
|
+
*
|
|
443
|
+
* `maxPrice` defaults to `sale.price` (accept exactly what was read). Pass it to state a wider
|
|
444
|
+
* ceiling. It bounds the guard only; the ETH attached still comes from `sale.price`, since the minter
|
|
445
|
+
* wants exact payment. There is deliberately no "no maximum" sentinel.
|
|
446
|
+
*
|
|
447
|
+
* **A wide `maxPrice` is how a caller opts out of the protection.** The minter refuses a sentinel
|
|
448
|
+
* precisely so that a bound has to be stated, but nothing stops a caller from stating an enormous
|
|
449
|
+
* one — and on the ERC-20 lane that hands back exactly the vector the guard closes: the minter pulls
|
|
450
|
+
* the live price from the buyer's standing allowance, so a ceiling of `2^256-1` lets a re-priced sale
|
|
451
|
+
* take the whole allowance. Omitting the argument is the safe path and is what every caller in this
|
|
452
|
+
* repo does. If you widen it, widen it by an amount you would be content to lose, and never derive it
|
|
453
|
+
* from a price you read in the same breath as sending — that is the same thing as no bound at all.
|
|
454
|
+
*
|
|
455
|
+
* **On the ETH lane, `maxPrice` is a terms ASSERTION, not slippage tolerance — do not sell it as
|
|
456
|
+
* one.** The minter requires `msg.value == price` (an equality) and V1 has no refund path, so an
|
|
457
|
+
* in-flight ETH purchase reverts `WrongPayment` if the price moves in *either* direction, however
|
|
458
|
+
* wide the ceiling. Raising `maxPrice` on an ETH sale buys the buyer nothing at all. Real tolerance
|
|
459
|
+
* exists only on the **ERC-20** lane, where the minter pulls the live `price` from the buyer's
|
|
460
|
+
* allowance and any price at or below the ceiling settles. Re-pricing a live ETH sale therefore fails
|
|
461
|
+
* every buy already in flight, by design — pause first for a clean cutover.
|
|
417
462
|
*/
|
|
418
463
|
export declare function preparePurchase(args: {
|
|
419
464
|
minter: Address;
|
|
420
465
|
token: Address;
|
|
466
|
+
sale: PurchaseTerms;
|
|
421
467
|
to?: Address;
|
|
422
|
-
|
|
468
|
+
maxPrice?: bigint | number;
|
|
423
469
|
chainId: number;
|
|
424
470
|
}): PreparedTx;
|
|
425
471
|
/** A project's fixed-price sale state on the shared minter (`sales(token)`): whether a sale is
|
|
@@ -458,14 +504,24 @@ export declare function prepareConfigureSale1155(args: {
|
|
|
458
504
|
* Buy `quantity` copies of `id` from the shared edition minter. The id/quantity-keyed twin of
|
|
459
505
|
* {@link preparePurchase}. `to` omitted → minted to the signer (`purchase`); `to` set → minted to
|
|
460
506
|
* that address (`purchaseTo`). Public — no owner rights needed.
|
|
507
|
+
*
|
|
508
|
+
* `sale` is the live terms ({@link readSaleConfig1155}) and is mandatory, same terms guard as the 721
|
|
509
|
+
* lane — except the minter bounds the **total** (`price × quantity`), which is what actually leaves
|
|
510
|
+
* the buyer's balance. `price × quantity` is computed here (once), for both the attached ETH and the
|
|
511
|
+
* bound; `maxTotalPrice` defaults to it, and passing it states a wider ceiling.
|
|
512
|
+
*
|
|
513
|
+
* The ETH-lane caveat on {@link preparePurchase} applies here identically: `msg.value` must equal the
|
|
514
|
+
* total exactly, so `maxTotalPrice` is an assertion about the terms, **not** slippage tolerance. Only
|
|
515
|
+
* an ERC-20 edition sale gets real tolerance.
|
|
461
516
|
*/
|
|
462
517
|
export declare function preparePurchase1155(args: {
|
|
463
518
|
minter: Address;
|
|
464
519
|
token: Address;
|
|
465
520
|
tokenId: bigint | number;
|
|
466
521
|
quantity: bigint | number;
|
|
522
|
+
sale: PurchaseTerms;
|
|
467
523
|
to?: Address;
|
|
468
|
-
|
|
524
|
+
maxTotalPrice?: bigint | number;
|
|
469
525
|
chainId: number;
|
|
470
526
|
}): PreparedTx;
|
|
471
527
|
/** A project's fixed-price sale state for one id on the shared edition minter (`sales(token,
|
|
@@ -491,6 +547,95 @@ export declare function prepareDeployFixedPriceMinter1155(args: {
|
|
|
491
547
|
export declare function prepareDeploySeedSource(args: {
|
|
492
548
|
chainId: number;
|
|
493
549
|
}): PreparedTx;
|
|
550
|
+
/**
|
|
551
|
+
* Set (or clear, with `0x0`) the seed source a code project draws mint seeds from. Signer must be
|
|
552
|
+
* the owner. **Future mints only** — a seed is settled once assigned, so re-pointing never rewrites
|
|
553
|
+
* a token that already has one.
|
|
554
|
+
*
|
|
555
|
+
* Pass an address that {@link probeSeedSource} says is usable. The chain does NOT validate the
|
|
556
|
+
* source (`SeedSourceExtension.setSeedSource` stores whatever it's handed), and the failure mode of
|
|
557
|
+
* a bad one is the worst kind: `seedSource()` reads back exactly what you set, the `SeedSourceSet`
|
|
558
|
+
* event fires, everything looks configured — and then every mint reverts in the ABI decode of the
|
|
559
|
+
* source's (empty or short) return. Callers should probe first and refuse before gas.
|
|
560
|
+
*/
|
|
561
|
+
export declare function prepareSetSeedSource(args: {
|
|
562
|
+
contract: Address;
|
|
563
|
+
seedSource: Address;
|
|
564
|
+
chainId: number;
|
|
565
|
+
}): PreparedTx;
|
|
566
|
+
/**
|
|
567
|
+
* The seed source a token currently draws from — `zeroAddress` for "no mint-time seed", and
|
|
568
|
+
* `undefined` when the getter isn't there at all (a 1/1 or an image Series never composed the
|
|
569
|
+
* extension). Those two are NOT the same fact and must not be collapsed: one is a code project
|
|
570
|
+
* that opted out, the other is a token that has no such knob to set.
|
|
571
|
+
*/
|
|
572
|
+
export declare function readSeedSource(client: PublicClient, contract: Address): Promise<Address | undefined>;
|
|
573
|
+
/**
|
|
574
|
+
* Why a candidate seed source is unusable — or `ok`. Structured rather than a sentence: the SDK
|
|
575
|
+
* doesn't know a UX's flag names (see `AnchorUnavailableError`'s note), so the caller composes the
|
|
576
|
+
* guidance and this only says which shape it hit.
|
|
577
|
+
*
|
|
578
|
+
* - `no-code` — nothing deployed there. A Solidity call to a codeless address SUCCEEDS with
|
|
579
|
+
* zero returndata, so the token's `abi.decode` to `bytes32` is what reverts.
|
|
580
|
+
* - `empty-return` — has code, answered, returned nothing. The permissive-fallback shape: a
|
|
581
|
+
* **Safe** (`FallbackManager.fallback()` returns empty for an unset handler),
|
|
582
|
+
* an uninitialised proxy, an EIP-7702-delegated EOA. Same mint revert.
|
|
583
|
+
* - `short-return` — answered with fewer than 32 bytes; not a `bytes32` no matter what it is.
|
|
584
|
+
* - `reverted` — has code and refused the call. Either the wrong address entirely (a token,
|
|
585
|
+
* a renderer — no such selector, no fallback) or a real source that is gating
|
|
586
|
+
* callers / not yet armed. Both are refusals: `seed()` is called
|
|
587
|
+
* **synchronously inside the mint** and its revert bubbles, so a source that
|
|
588
|
+
* cannot answer now cannot answer at mint either.
|
|
589
|
+
* - `unreachable` — the RPC didn't answer. Says nothing about the address; retry, don't refuse
|
|
590
|
+
* on the merits (a preview may choose to defer the check and say so).
|
|
591
|
+
*/
|
|
592
|
+
export type SeedSourceVerdict = 'ok' | 'no-code' | 'empty-return' | 'short-return' | 'reverted' | 'unreachable';
|
|
593
|
+
/** The result of {@link probeSeedSource} — the verdict plus what was observed, for a message. */
|
|
594
|
+
export interface SeedSourceProbe {
|
|
595
|
+
verdict: SeedSourceVerdict;
|
|
596
|
+
/** The address probed. */
|
|
597
|
+
address: Address;
|
|
598
|
+
/** Bytes of returndata, when the call answered at all (`ok`/`empty-return`/`short-return`). */
|
|
599
|
+
returnedBytes?: number;
|
|
600
|
+
/** First line of the revert/transport error, for `reverted` / `unreachable`. */
|
|
601
|
+
error?: string;
|
|
602
|
+
}
|
|
603
|
+
/**
|
|
604
|
+
* Ask a candidate seed source the exact question the token will ask it, and report whether it
|
|
605
|
+
* answers with 32 bytes.
|
|
606
|
+
*
|
|
607
|
+
* **`code.length > 0` is not enough**, which is the whole reason this exists. Three separate shapes
|
|
608
|
+
* pass a has-code check, read back correctly from `seedSource()`, emit `SeedSourceSet`, and then
|
|
609
|
+
* revert **every mint of the collection**: no code, a permissive fallback that returns empty (a
|
|
610
|
+
* Safe, an uninitialised proxy, a 7702-delegated EOA — the same footgun the transfer-validator
|
|
611
|
+
* probe in `CreatorToken.sol` was written for), and anything answering with fewer than 32 bytes.
|
|
612
|
+
* A misconfigured seed source is silent until the first buyer, so the check belongs at configure
|
|
613
|
+
* time, loudly.
|
|
614
|
+
*
|
|
615
|
+
* `IAbxSeedSource.seed` is **non-`view`** (sources may keep state — commit-reveal, oracle-fed), but
|
|
616
|
+
* an `eth_call` simulates a state-changing function perfectly well and the canonical implementation
|
|
617
|
+
* is itself `view`, so one `eth_call` probes both kinds without sending anything.
|
|
618
|
+
*
|
|
619
|
+
* The call is made **as the token** (`from` = `opts.as`, when given): `msg.sender` namespaces the
|
|
620
|
+
* canonical seed and is exactly what a caller-gating custom source checks, so probing from a
|
|
621
|
+
* random address would false-negative a legitimate source. Same reason the transfer-validator
|
|
622
|
+
* research used `cast call --from <collection>`.
|
|
623
|
+
*
|
|
624
|
+
* Never throws for an on-chain reason — every failure is a verdict.
|
|
625
|
+
*/
|
|
626
|
+
export declare function probeSeedSource(client: PublicClient, source: Address, opts?: {
|
|
627
|
+
as?: Address;
|
|
628
|
+
tokenId?: bigint;
|
|
629
|
+
}): Promise<SeedSourceProbe>;
|
|
630
|
+
/**
|
|
631
|
+
* {@link probeSeedSource}, as a guard: throws {@link SeedSourceUnusableError} unless the verdict is
|
|
632
|
+
* `ok`. For an SDK caller that just wants "refuse a bad source" without composing prose; the CLI
|
|
633
|
+
* uses the probe directly so it can name its own flags in the refusal.
|
|
634
|
+
*/
|
|
635
|
+
export declare function assertSeedSourceUsable(client: PublicClient, source: Address, opts?: {
|
|
636
|
+
as?: Address;
|
|
637
|
+
tokenId?: bigint;
|
|
638
|
+
}): Promise<void>;
|
|
494
639
|
/** Deterministic deploy of a {SeriesCode} clone — the code-project factory op. */
|
|
495
640
|
export declare function prepareDeploySeriesCode(args: {
|
|
496
641
|
factory: Address;
|
|
@@ -541,6 +686,16 @@ export declare function prepareLockDependencies(args: {
|
|
|
541
686
|
contract: Address;
|
|
542
687
|
chainId: number;
|
|
543
688
|
}): PreparedTx;
|
|
689
|
+
/** Freeze the on-chain program (script chunks) forever — `setScriptChunk`/`removeLastScriptChunk`
|
|
690
|
+
* revert after this. Irreversible, owner-only. This is the lock that actually freezes the WORK
|
|
691
|
+
* of a code project; `lock-field`/`lock-uri` only freeze the metadata, and `lock-dependencies` only
|
|
692
|
+
* the library set. All of them together freeze everything the CONTRACT stores — which is not the
|
|
693
|
+
* same as a frozen output: params have no lock and the renderer serves them, and a `Registry`
|
|
694
|
+
* dependency resolves from the registry at read time. */
|
|
695
|
+
export declare function prepareLockScript(args: {
|
|
696
|
+
contract: Address;
|
|
697
|
+
chainId: number;
|
|
698
|
+
}): PreparedTx;
|
|
544
699
|
/** Set a CONTRACT-scope param to a literal `bytes32` (the raw owner setter — Params base).
|
|
545
700
|
* Only for schema-less keys (a schema'd key closes the raw path: `SchemaGoverned`). This is
|
|
546
701
|
* the write behind well-known contract params like `display.gateway`. The key joins the
|
|
@@ -564,7 +719,15 @@ export declare function prepareSetContractParamData(args: {
|
|
|
564
719
|
/** Wire the three param-lifecycle hook addresses (configure/augment/transfer) in ONE owner call.
|
|
565
720
|
* The contract has no per-hook setter — `setParamHooks` writes all three at once — so a caller
|
|
566
721
|
* changing one hook must pass the CURRENT values for the other two (read them via `paramHooks()`),
|
|
567
|
-
* else it silently clears them. `zeroAddress` for any role means "no hook". SeriesCode
|
|
722
|
+
* else it silently clears them. `zeroAddress` for any role means "no hook". SeriesCode/EditionCode
|
|
723
|
+
* only.
|
|
724
|
+
*
|
|
725
|
+
* Note what the `transferHook` slot is: a **veto**. Its revert bubbles and fails the transfer, and
|
|
726
|
+
* a mint is a transfer from `0x0`, so a reverting hook stops minting for the project too. Setting
|
|
727
|
+
* one is therefore a standing power over a collector's ability to sell — disclose it, and offer
|
|
728
|
+
* {@link prepareLockParamHooks} to a project that wants to prove it will never arm one.
|
|
729
|
+
*
|
|
730
|
+
* Reverts `ParamHooksLocked()` once {@link prepareLockParamHooks} has been sent. */
|
|
568
731
|
export declare function prepareSetParamHooks(args: {
|
|
569
732
|
contract: Address;
|
|
570
733
|
configureHook: Address;
|
|
@@ -572,6 +735,42 @@ export declare function prepareSetParamHooks(args: {
|
|
|
572
735
|
transferHook: Address;
|
|
573
736
|
chainId: number;
|
|
574
737
|
}): PreparedTx;
|
|
738
|
+
/**
|
|
739
|
+
* Is the param hook set frozen (`lockParamHooks()` already sent)?
|
|
740
|
+
*
|
|
741
|
+
* One `eth_call` to `paramHooksLocked()`. This used to simulate `setParamHooks` as the owner and
|
|
742
|
+
* watch for a `ParamHooksLocked()` revert, on the stated grounds that no getter existed — it does
|
|
743
|
+
* now (`IAbxConfigurableParams`), and the simulation cost two extra reads (`paramHooks` + `owner`)
|
|
744
|
+
* to infer what one read states.
|
|
745
|
+
*
|
|
746
|
+
* The other honest read is the `ParamHooksFrozen` event, which is what `reconstructProject` folds
|
|
747
|
+
* (`ProjectState.paramHooks.locked`). Prefer the fold when you already have the logs; use this when
|
|
748
|
+
* you have an address and one RPC round trip, which is `abx state`'s situation.
|
|
749
|
+
*
|
|
750
|
+
* Returns `undefined` — never throws for an on-chain reason — when the answer can't be established:
|
|
751
|
+
* not a ConfigurableParams project, or the node refused the call. A caller must render that as
|
|
752
|
+
* "unknown", never as "unlocked".
|
|
753
|
+
*/
|
|
754
|
+
export declare function readParamHooksLocked(client: PublicClient, contract: Address): Promise<boolean | undefined>;
|
|
755
|
+
/**
|
|
756
|
+
* Freeze the param-lifecycle hook set forever — `setParamHooks` reverts `ParamHooksLocked()` after
|
|
757
|
+
* this. Irreversible, owner-only. The sibling of `lock-script`/`lock-dependencies`/`lock-uri`, and
|
|
758
|
+
* the one aimed at a **buyer** rather than at the metadata: the `transferHook` is a veto (its revert
|
|
759
|
+
* fails a transfer, and a mint is a transfer from `0x0`), so while the hooks are unwritten-in-stone a
|
|
760
|
+
* project retains a standing power over whether a collector can ever sell. Sending this gives up
|
|
761
|
+
* three abilities permanently — arming a transfer veto, arming a write-time configure veto, and
|
|
762
|
+
* re-pointing or clearing the read-time augment hook — and it cannot be undone, re-opened, or
|
|
763
|
+
* time-limited. A project that never wants the power sends it before the sale; a buyer reads
|
|
764
|
+
* `paramHooks()` plus the `ParamHooksFrozen` event (`abx state`) to check.
|
|
765
|
+
*
|
|
766
|
+
* It does NOT freeze anything else: schemas, values, script, dependencies, and URIs all keep their
|
|
767
|
+
* own locks, and a hook already set keeps running exactly as before — freezing the SET is not
|
|
768
|
+
* disarming the hooks in it.
|
|
769
|
+
*/
|
|
770
|
+
export declare function prepareLockParamHooks(args: {
|
|
771
|
+
contract: Address;
|
|
772
|
+
chainId: number;
|
|
773
|
+
}): PreparedTx;
|
|
575
774
|
/** Set a schema-governed PostParam (literal scalar) — signer must satisfy the schema's auth. */
|
|
576
775
|
export declare function prepareConfigureTokenParam(args: {
|
|
577
776
|
contract: Address;
|
|
@@ -631,7 +830,7 @@ export declare function readParamSchema(client: PublicClient, contract: Address,
|
|
|
631
830
|
*
|
|
632
831
|
* What retiring does NOT do: erase a value already stored. That value keeps being served in token
|
|
633
832
|
* data. It cannot be removed, deliberately — a value written under a `TokenOwner` or `Address` leg
|
|
634
|
-
* came from a collector, and the
|
|
833
|
+
* came from a collector, and the creator should not be able to delete someone else's contribution.
|
|
635
834
|
*/
|
|
636
835
|
export declare function prepareRetireParam(args: {
|
|
637
836
|
contract: Address;
|
package/dist/ops.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ops.d.ts","sourceRoot":"","sources":["../src/ops.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ops.d.ts","sourceRoot":"","sources":["../src/ops.ts"],"names":[],"mappings":"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"}
|