@monolythium/core-sdk 0.4.14 → 0.4.16
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/crypto/index.d.cts +2 -2
- package/dist/crypto/index.d.ts +2 -2
- package/dist/index.cjs +586 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +542 -23
- package/dist/index.js.map +1 -1
- package/dist/{submission-7MkZky2W.d.cts → submission-BdBhOdg7.d.cts} +463 -1
- package/dist/{submission-7MkZky2W.d.ts → submission-BdBhOdg7.d.ts} +463 -1
- package/package.json +1 -1
|
@@ -2505,12 +2505,44 @@ declare const NODE_REGISTRY_SELECTORS: {
|
|
|
2505
2505
|
readonly getClusterJoinRequest: string;
|
|
2506
2506
|
/** `formCluster(bytes,bytes,bytes)` — no-foundation cluster formation by roster consent. */
|
|
2507
2507
|
readonly formCluster: string;
|
|
2508
|
+
/**
|
|
2509
|
+
* `formCluster(bytes,bytes,bytes,bytes)` — V2 formation carrying the
|
|
2510
|
+
* 30-byte economics charter (Law §6.8); consents verify over the V2
|
|
2511
|
+
* digest, which commits to the charter bytes.
|
|
2512
|
+
*/
|
|
2513
|
+
readonly formClusterV2: string;
|
|
2508
2514
|
/** `setOperatorDisplay(bytes32,string,string)` — owner-callable public display metadata. */
|
|
2509
2515
|
readonly setOperatorDisplay: string;
|
|
2510
2516
|
/** `publishOperatorSealKey(bytes32,bytes)` — owner-callable LythiumSeal EK publication. */
|
|
2511
2517
|
readonly publishOperatorSealKey: string;
|
|
2512
2518
|
/** `getOperatorSealKey(bytes32)` view — returns the operator's published LythiumSeal EK. */
|
|
2513
2519
|
readonly getOperatorSealKey: string;
|
|
2520
|
+
/**
|
|
2521
|
+
* `updateCharter(uint32,bytes,bytes,bytes)` — Component H live charter
|
|
2522
|
+
* amendment (Law §6.8); re-signs a new 30-byte charter for a LIVE cluster
|
|
2523
|
+
* with a delegator-protective cooldown. Consents verify over
|
|
2524
|
+
* `updateCharterMessage` (NOT the formCluster digests).
|
|
2525
|
+
*/
|
|
2526
|
+
readonly updateCharter: string;
|
|
2527
|
+
/** `getPendingCharter(uint32)` view — Component H pending-amendment status. */
|
|
2528
|
+
readonly getPendingCharter: string;
|
|
2529
|
+
/** `commitArchiveRoot(bytes32,uint16,bytes32,uint64)` — Component B archive serve-challenge commit. */
|
|
2530
|
+
readonly commitArchiveRoot: string;
|
|
2531
|
+
/**
|
|
2532
|
+
* `answerArchiveChallenge(bytes32,uint16,uint64,bytes,bytes32[])` —
|
|
2533
|
+
* Component B answer. BLOCKER-1 (mono-core `service-rewards` d2ee4548):
|
|
2534
|
+
* the caller-supplied `roundCertDigest` + `nonce` were REMOVED — the
|
|
2535
|
+
* challenge seed is now the protocol-pinned per-epoch quorum-certificate
|
|
2536
|
+
* digest and the nonce is derived from it. 5 args: peerId, shardIndex,
|
|
2537
|
+
* epoch, leaf, proof.
|
|
2538
|
+
*/
|
|
2539
|
+
readonly answerArchiveChallenge: string;
|
|
2540
|
+
/** `setProbeAuthority(address)` — Component C foundation-gated probe-authority rotation. */
|
|
2541
|
+
readonly setProbeAuthority: string;
|
|
2542
|
+
/** `getProbeAuthority()` view — Component C configured probe-authority address. */
|
|
2543
|
+
readonly getProbeAuthority: string;
|
|
2544
|
+
/** `attestServiceProbe(bytes32,uint32,uint8,uint64)` — Component C attested score-eligibility path. */
|
|
2545
|
+
readonly attestServiceProbe: string;
|
|
2514
2546
|
};
|
|
2515
2547
|
/** Cluster-member reference width used by genesis and formation rosters. */
|
|
2516
2548
|
declare const NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES = 48;
|
|
@@ -2538,8 +2570,107 @@ declare const NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT = 3;
|
|
|
2538
2570
|
declare const NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT: number;
|
|
2539
2571
|
declare const NODE_REGISTRY_FORM_CLUSTER_THRESHOLD = 7;
|
|
2540
2572
|
declare const NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN: "PROTOCORE_NODE_REGISTRY_CLUSTER_FORM_V1\0";
|
|
2573
|
+
declare const NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN_V2: "PROTOCORE_NODE_REGISTRY_CLUSTER_FORM_V2\0";
|
|
2574
|
+
/**
|
|
2575
|
+
* Fixed byte width of the V2 charter argument: 10×u16 BE member shares
|
|
2576
|
+
* (member-declaration order: active 0..7, then standby 7..10) ‖ u16 BE
|
|
2577
|
+
* delegator share ‖ u64 BE consent expiry (ms).
|
|
2578
|
+
*/
|
|
2579
|
+
declare const NODE_REGISTRY_CLUSTER_CHARTER_BYTES = 30;
|
|
2580
|
+
/** Protocol floor for a charter's delegator share (Law §6.8). */
|
|
2581
|
+
declare const NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS = 2000;
|
|
2582
|
+
/** Basis-point denominator a charter's member shares must sum to. */
|
|
2583
|
+
declare const NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS = 10000;
|
|
2541
2584
|
declare const NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES = 128;
|
|
2542
2585
|
declare const NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES = 64;
|
|
2586
|
+
/**
|
|
2587
|
+
* Component H — consensus threshold for a live `updateCharter` amendment:
|
|
2588
|
+
* 7 of the 10 cluster members must consent (the same 7-of-10 quorum that
|
|
2589
|
+
* forms the cluster), and every signer must be CURRENTLY active. Bound
|
|
2590
|
+
* into the `updateCharterMessage` digest. Equal to
|
|
2591
|
+
* `NODE_REGISTRY_FORM_CLUSTER_THRESHOLD`.
|
|
2592
|
+
*/
|
|
2593
|
+
declare const NODE_REGISTRY_UPDATE_CHARTER_THRESHOLD = 7;
|
|
2594
|
+
/**
|
|
2595
|
+
* Domain separator for the `updateCharter` consent digest. Distinct from
|
|
2596
|
+
* the formCluster domains so a formation consent can never replay as an
|
|
2597
|
+
* amendment consent (or vice-versa). Note the trailing `\0` byte — it is
|
|
2598
|
+
* part of the hashed preimage. Mirrors mono-core
|
|
2599
|
+
* `cluster_form::UPDATE_CHARTER_DOMAIN`.
|
|
2600
|
+
*/
|
|
2601
|
+
declare const NODE_REGISTRY_UPDATE_CHARTER_MESSAGE_DOMAIN: "PROTOCORE_NODE_REGISTRY_CLUSTER_UPDATE_CHARTER_V1\0";
|
|
2602
|
+
/**
|
|
2603
|
+
* Component H — delegator-protective cooldown for a live `updateCharter`
|
|
2604
|
+
* amendment, in epochs. A new charter does NOT apply immediately; it
|
|
2605
|
+
* becomes effective no earlier than `current_epoch + COOLDOWN`. The OLD
|
|
2606
|
+
* terms apply throughout so an ARK delegator can undelegate first. The
|
|
2607
|
+
* production value is 2 epochs (~24h notice); public-testnet builds
|
|
2608
|
+
* (`testnet-fast-epochs`) use 1. This SDK constant mirrors the production
|
|
2609
|
+
* value — read the on-chain `getPendingCharter` `effectiveEpoch` for the
|
|
2610
|
+
* exact landing epoch rather than computing it from this constant.
|
|
2611
|
+
*/
|
|
2612
|
+
declare const NODE_REGISTRY_CHARTER_COOLDOWN_EPOCHS = 2;
|
|
2613
|
+
/**
|
|
2614
|
+
* Component B — domain tag bound into the archive serve-challenge seed.
|
|
2615
|
+
* Mirrors mono-core `archive_challenge::ARCHIVE_CHALLENGE_DOMAIN`. No
|
|
2616
|
+
* trailing NUL (it is hashed verbatim).
|
|
2617
|
+
*/
|
|
2618
|
+
declare const NODE_REGISTRY_ARCHIVE_CHALLENGE_DOMAIN: "monolythium.archive-challenge.v1";
|
|
2619
|
+
/**
|
|
2620
|
+
* Component B (BLOCKER-1) — domain tag bound into the protocol-issued
|
|
2621
|
+
* per-epoch challenge nonce so it can never collide with the challenge-seed
|
|
2622
|
+
* domain. Mirrors mono-core `archive_challenge::ARCHIVE_NONCE_DOMAIN`. No
|
|
2623
|
+
* trailing NUL (it is hashed verbatim).
|
|
2624
|
+
*/
|
|
2625
|
+
declare const NODE_REGISTRY_ARCHIVE_NONCE_DOMAIN: "monolythium.archive-challenge.nonce.v1";
|
|
2626
|
+
/** Component B — domain byte prefixing a merkle leaf hash (`H(0x00 || leaf)`). */
|
|
2627
|
+
declare const NODE_REGISTRY_MERKLE_LEAF_DOMAIN = 0;
|
|
2628
|
+
/** Component B — domain byte prefixing a merkle inner node (`H(0x01 || left || right)`). */
|
|
2629
|
+
declare const NODE_REGISTRY_MERKLE_INNER_DOMAIN = 1;
|
|
2630
|
+
/** Component B — maximum merkle authentication-path length accepted on-chain. */
|
|
2631
|
+
declare const NODE_REGISTRY_MAX_MERKLE_PROOF_DEPTH = 40;
|
|
2632
|
+
/**
|
|
2633
|
+
* Component B (BLOCKER-1) — minimum committed `leafCount` accepted by
|
|
2634
|
+
* `commitArchiveRoot`. A tree below this width is forgeable (a 1-leaf
|
|
2635
|
+
* self-commit has `root == leaf_hash` + an empty proof and passes every
|
|
2636
|
+
* challenge serving nothing), so the chain rejects it at commit time. This
|
|
2637
|
+
* SDK enforces it client-side before a nonce is burned. Mirrors mono-core
|
|
2638
|
+
* `archive_challenge::MIN_ARCHIVE_LEAF_COUNT`.
|
|
2639
|
+
*/
|
|
2640
|
+
declare const NODE_REGISTRY_MIN_ARCHIVE_LEAF_COUNT = 65536n;
|
|
2641
|
+
/**
|
|
2642
|
+
* Component B (BLOCKER-1) — how many epochs back from the current epoch an
|
|
2643
|
+
* `answerArchiveChallenge` may target on-chain. Informational mirror of
|
|
2644
|
+
* mono-core `archive_challenge::CHALLENGE_EPOCH_WINDOW`; a future epoch is
|
|
2645
|
+
* always rejected and an epoch older than `current_epoch - window` reverts
|
|
2646
|
+
* with `EffectiveEpochInvalid`.
|
|
2647
|
+
*/
|
|
2648
|
+
declare const NODE_REGISTRY_CHALLENGE_EPOCH_WINDOW = 2n;
|
|
2649
|
+
/**
|
|
2650
|
+
* Component B (BLOCKER-1) — storage sub-kind byte for the per-epoch
|
|
2651
|
+
* protocol-issued challenge seed slot (`keccak256(0x32 || epoch_be64 ||
|
|
2652
|
+
* 0x03)`). Mirrors mono-core `archive_challenge::KIND_EPOCH_SEED`.
|
|
2653
|
+
*/
|
|
2654
|
+
declare const NODE_REGISTRY_ARCHIVE_KIND_EPOCH_SEED = 3;
|
|
2655
|
+
/**
|
|
2656
|
+
* Storage-slot tag byte for the archive-challenge family (registry
|
|
2657
|
+
* namespace, under `0x1005`). Mirrors mono-core
|
|
2658
|
+
* `archive_challenge::TAG_ARCHIVE_CHALLENGE`.
|
|
2659
|
+
*/
|
|
2660
|
+
declare const NODE_REGISTRY_TAG_ARCHIVE_CHALLENGE = 50;
|
|
2661
|
+
/**
|
|
2662
|
+
* Storage-slot tag byte for the ServiceScore-engine family (under
|
|
2663
|
+
* `0x1005`, shared with the attested-probe writer). Mirrors
|
|
2664
|
+
* `protocore_service_score::slots::TAG_SERVICE_SCORE` and node-registry
|
|
2665
|
+
* `storage::TAG_SCORE_SERVICE_PROBE`.
|
|
2666
|
+
*/
|
|
2667
|
+
declare const NODE_REGISTRY_TAG_SERVICE_SCORE = 36;
|
|
2668
|
+
/**
|
|
2669
|
+
* Storage-slot tag byte for the node-registry treasury/keys family (under
|
|
2670
|
+
* `0x1005`), which the probe-authority key slot lives under. Mirrors
|
|
2671
|
+
* node-registry `storage::TAG_TREASURY`.
|
|
2672
|
+
*/
|
|
2673
|
+
declare const NODE_REGISTRY_TAG_TREASURY = 31;
|
|
2543
2674
|
type PendingChangeKind = "add" | "remove" | "rotate";
|
|
2544
2675
|
declare const PENDING_CHANGE_KIND_CODES: Record<PendingChangeKind, number>;
|
|
2545
2676
|
/** Canonical `ClusterFormed(uint32,uint64,address,bytes)` event topic0 (MB-5). */
|
|
@@ -2599,6 +2730,26 @@ interface FormClusterCalldataArgs {
|
|
|
2599
2730
|
standbyPubkeys: string | Uint8Array | readonly number[];
|
|
2600
2731
|
signatures: string | Uint8Array | readonly number[];
|
|
2601
2732
|
}
|
|
2733
|
+
/** Decoded form of the 30-byte V2 cluster charter (Law §6.8). */
|
|
2734
|
+
interface ClusterCharterArgs {
|
|
2735
|
+
/**
|
|
2736
|
+
* Per-member operator-pot shares in basis points, member-declaration
|
|
2737
|
+
* order (active 0..7, then standby 7..10). Must sum to exactly
|
|
2738
|
+
* `NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS`.
|
|
2739
|
+
*/
|
|
2740
|
+
memberShareBps: readonly number[];
|
|
2741
|
+
/**
|
|
2742
|
+
* Delegator share of the cluster pot in basis points, within
|
|
2743
|
+
* `[NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS, 10000]`.
|
|
2744
|
+
*/
|
|
2745
|
+
delegatorShareBps: number;
|
|
2746
|
+
/** Consent expiry as a Unix timestamp in milliseconds. */
|
|
2747
|
+
expiresMs: bigint | number;
|
|
2748
|
+
}
|
|
2749
|
+
interface FormClusterV2CalldataArgs extends FormClusterCalldataArgs {
|
|
2750
|
+
/** The 30-byte charter wire payload (see `encodeClusterCharter`). */
|
|
2751
|
+
charter: string | Uint8Array | readonly number[];
|
|
2752
|
+
}
|
|
2602
2753
|
type ClusterJoinRequestStatus = "none" | "open" | "admitted" | "cancelled" | "expired" | "unknown";
|
|
2603
2754
|
interface ClusterJoinRequestView {
|
|
2604
2755
|
owner: string;
|
|
@@ -2619,6 +2770,95 @@ interface ReportServiceProbeCalldataArgs {
|
|
|
2619
2770
|
latencyMs: number;
|
|
2620
2771
|
probeDigest: string | Uint8Array | readonly number[];
|
|
2621
2772
|
}
|
|
2773
|
+
/** Args for `updateCharter(uint32,bytes,bytes,bytes)` (Component H). */
|
|
2774
|
+
interface UpdateCharterCalldataArgs {
|
|
2775
|
+
clusterId: bigint | number | string;
|
|
2776
|
+
/** The 30-byte charter wire payload (see `encodeClusterCharter`). */
|
|
2777
|
+
charter: string | Uint8Array | readonly number[];
|
|
2778
|
+
/**
|
|
2779
|
+
* The consenting operators' 1952-byte ML-DSA-65 consensus pubkeys, in
|
|
2780
|
+
* the same order as `signatures`. `7..=10` keys. May be supplied as a
|
|
2781
|
+
* single concatenated buffer or an array of per-signer keys.
|
|
2782
|
+
*/
|
|
2783
|
+
signerPubkeys: string | Uint8Array | readonly number[] | readonly (string | Uint8Array | readonly number[])[];
|
|
2784
|
+
/**
|
|
2785
|
+
* The 3309-byte ML-DSA-65 signatures over `updateCharterMessage`, 1:1
|
|
2786
|
+
* with `signerPubkeys`. May be a concatenated buffer or an array.
|
|
2787
|
+
*/
|
|
2788
|
+
signatures: string | Uint8Array | readonly number[] | readonly (string | Uint8Array | readonly number[])[];
|
|
2789
|
+
}
|
|
2790
|
+
/**
|
|
2791
|
+
* Decoded `getPendingCharter(uint32)` return (Component H). Zeroed /
|
|
2792
|
+
* `present=false` when no amendment is pending.
|
|
2793
|
+
*/
|
|
2794
|
+
interface PendingCharterView {
|
|
2795
|
+
/** `true` iff a pending amendment is posted for the cluster. */
|
|
2796
|
+
present: boolean;
|
|
2797
|
+
/** Proposed delegator share of the cluster pot in basis points. */
|
|
2798
|
+
delegatorShareBps: number;
|
|
2799
|
+
/** Epoch at/after which the pending charter takes effect (the cooldown landing). */
|
|
2800
|
+
effectiveEpoch: bigint;
|
|
2801
|
+
/** Count of recorded active signers that consented to the pending charter. */
|
|
2802
|
+
signerCount: number;
|
|
2803
|
+
/**
|
|
2804
|
+
* The proposed per-member operator-pot shares in basis points,
|
|
2805
|
+
* member-declaration order (active 0..7, then standby 7..10). Empty when
|
|
2806
|
+
* `present` is `false`.
|
|
2807
|
+
*/
|
|
2808
|
+
memberShareBps: readonly number[];
|
|
2809
|
+
}
|
|
2810
|
+
/** Args for `commitArchiveRoot(bytes32,uint16,bytes32,uint64)` (Component B). */
|
|
2811
|
+
interface CommitArchiveRootCalldataArgs {
|
|
2812
|
+
peerId: string | Uint8Array | readonly number[];
|
|
2813
|
+
shardIndex: number;
|
|
2814
|
+
/** The per-shard merkle root over the archived shard data (32 bytes). */
|
|
2815
|
+
shardRoot: string | Uint8Array | readonly number[];
|
|
2816
|
+
/** The committed leaf count (tree width); must be non-zero. */
|
|
2817
|
+
leafCount: bigint | number | string;
|
|
2818
|
+
}
|
|
2819
|
+
/**
|
|
2820
|
+
* Args for `answerArchiveChallenge(bytes32,uint16,uint64,bytes,bytes32[])`
|
|
2821
|
+
* (Component B).
|
|
2822
|
+
*
|
|
2823
|
+
* BLOCKER-1 (mono-core `service-rewards` d2ee4548): the caller-supplied
|
|
2824
|
+
* `roundCertDigest` and `nonce` were REMOVED. The challenge seed is now the
|
|
2825
|
+
* protocol-pinned per-epoch quorum-certificate digest (sloaded from
|
|
2826
|
+
* {@link slotEpochChallengeSeed}) and the nonce is derived from it
|
|
2827
|
+
* ({@link protocolNonceForEpoch}) — the operator can no longer choose the
|
|
2828
|
+
* challenge coordinate. Off-chain tooling derives the challenged leaf via
|
|
2829
|
+
* {@link deriveArchiveChallenge}, then submits the revealed leaf + proof.
|
|
2830
|
+
*/
|
|
2831
|
+
interface AnswerArchiveChallengeCalldataArgs {
|
|
2832
|
+
peerId: string | Uint8Array | readonly number[];
|
|
2833
|
+
shardIndex: number;
|
|
2834
|
+
epoch: bigint | number | string;
|
|
2835
|
+
/** The revealed challenged leaf bytes. */
|
|
2836
|
+
leaf: string | Uint8Array | readonly number[];
|
|
2837
|
+
/** The bottom-up merkle authentication path (each element 32 bytes). */
|
|
2838
|
+
proof: readonly (string | Uint8Array | readonly number[])[];
|
|
2839
|
+
}
|
|
2840
|
+
/** A fully-deterministic archive serve-challenge (mirror of mono-core `ArchiveChallenge`). */
|
|
2841
|
+
interface ArchiveChallenge {
|
|
2842
|
+
/** The 32-byte op-hash of the operator under challenge (`0x` hex). */
|
|
2843
|
+
opHash: string;
|
|
2844
|
+
/** The shard whose committed root the answer must verify against. */
|
|
2845
|
+
shardIndex: number;
|
|
2846
|
+
/** The leaf the operator must reveal + prove, reduced modulo the committed leaf count. */
|
|
2847
|
+
leafIndex: bigint;
|
|
2848
|
+
/** The full 32-byte challenge seed (`0x` hex). */
|
|
2849
|
+
seed: string;
|
|
2850
|
+
}
|
|
2851
|
+
/** Args for `attestServiceProbe(bytes32,uint32,uint8,uint64)` (Component C). */
|
|
2852
|
+
interface AttestServiceProbeCalldataArgs {
|
|
2853
|
+
/** The operator's canonical op-hash (`BLAKE3(consensusPubkey)[..32]`, 32 bytes). */
|
|
2854
|
+
opHash: string | Uint8Array | readonly number[];
|
|
2855
|
+
/** Bitmask of public services to attest (must be a valid public-service mask). */
|
|
2856
|
+
serviceMask: number;
|
|
2857
|
+
/** Concrete probe status (`REACHABLE` / `DEGRADED` / `UNREACHABLE`). */
|
|
2858
|
+
status: number;
|
|
2859
|
+
/** Attestation epoch stamped into the score-domain slot. */
|
|
2860
|
+
epoch: bigint | number | string;
|
|
2861
|
+
}
|
|
2622
2862
|
declare class NodeRegistryError extends Error {
|
|
2623
2863
|
constructor(message: string);
|
|
2624
2864
|
}
|
|
@@ -2649,6 +2889,228 @@ declare function encodeGetClusterJoinRequestCalldata(args: GetClusterJoinRequest
|
|
|
2649
2889
|
declare function formClusterMessage(activePubkeys: string | Uint8Array | readonly number[], standbyPubkeys: string | Uint8Array | readonly number[]): Uint8Array;
|
|
2650
2890
|
declare function formClusterMessageHex(activePubkeys: string | Uint8Array | readonly number[], standbyPubkeys: string | Uint8Array | readonly number[]): string;
|
|
2651
2891
|
declare function encodeFormClusterCalldata(args: FormClusterCalldataArgs): string;
|
|
2892
|
+
/**
|
|
2893
|
+
* Encode the 30-byte V2 charter wire payload: 10×u16 BE member shares
|
|
2894
|
+
* ‖ u16 BE delegator share ‖ u64 BE consent expiry (ms).
|
|
2895
|
+
*
|
|
2896
|
+
* Performs the same structural validation as the on-chain
|
|
2897
|
+
* `decode_cluster_charter` (length, share sum, delegator floor band) so
|
|
2898
|
+
* a malformed charter fails client-side before a nonce is burned.
|
|
2899
|
+
* Byte-identical to the Rust SDK `encode_cluster_charter`.
|
|
2900
|
+
*/
|
|
2901
|
+
declare function encodeClusterCharter(args: ClusterCharterArgs): Uint8Array;
|
|
2902
|
+
/**
|
|
2903
|
+
* V2 roster-consent digest — the V1 commitment plus the length-prefixed
|
|
2904
|
+
* charter bytes under the `..._CLUSTER_FORM_V2\0` domain. Economics +
|
|
2905
|
+
* consent expiry are INSIDE the signed message: no member can be bound
|
|
2906
|
+
* to terms they did not sign, and no V2 consent replays under different
|
|
2907
|
+
* terms (or under the V1 digest — the domains differ). Byte-identical
|
|
2908
|
+
* to mono-core's `form_cluster_message_v2`.
|
|
2909
|
+
*/
|
|
2910
|
+
declare function formClusterMessageV2(activePubkeys: string | Uint8Array | readonly number[], standbyPubkeys: string | Uint8Array | readonly number[], charter: string | Uint8Array | readonly number[]): Uint8Array;
|
|
2911
|
+
declare function formClusterMessageV2Hex(activePubkeys: string | Uint8Array | readonly number[], standbyPubkeys: string | Uint8Array | readonly number[], charter: string | Uint8Array | readonly number[]): string;
|
|
2912
|
+
/**
|
|
2913
|
+
* Encode `formCluster(bytes,bytes,bytes,bytes)` calldata — the V2
|
|
2914
|
+
* (charter) selector. Same layout discipline as
|
|
2915
|
+
* `encodeFormClusterCalldata` with a fourth dynamic `bytes` tail.
|
|
2916
|
+
* Byte-identical to the Rust SDK `encode_form_cluster_v2_calldata`.
|
|
2917
|
+
*
|
|
2918
|
+
* The 10 consent signatures must verify over `formClusterMessageV2`
|
|
2919
|
+
* (NOT the V1 digest).
|
|
2920
|
+
*/
|
|
2921
|
+
declare function encodeFormClusterV2Calldata(args: FormClusterV2CalldataArgs): string;
|
|
2922
|
+
/**
|
|
2923
|
+
* Decode the 30-byte V2 charter wire payload into its terms.
|
|
2924
|
+
*
|
|
2925
|
+
* Inverse of {@link encodeClusterCharter}; applies the same structural
|
|
2926
|
+
* validation as the on-chain `decode_cluster_charter` (length, share sum,
|
|
2927
|
+
* delegator floor band). Used by {@link decodePendingCharter} and any UI
|
|
2928
|
+
* that renders an active charter read from chain.
|
|
2929
|
+
*/
|
|
2930
|
+
declare function decodeClusterCharter(charter: string | Uint8Array | readonly number[]): ClusterCharterArgs;
|
|
2931
|
+
/**
|
|
2932
|
+
* Build the `updateCharter` consent digest every signer must sign
|
|
2933
|
+
* (Component H). Binds the amendment to the exact `clusterId` and the
|
|
2934
|
+
* full 30-byte charter wire payload under the
|
|
2935
|
+
* `..._CLUSTER_UPDATE_CHARTER_V1\0` domain:
|
|
2936
|
+
*
|
|
2937
|
+
* `BLAKE3(DOMAIN ‖ clusterId_be32 ‖ UPDATE_CHARTER_THRESHOLD_be16 ‖
|
|
2938
|
+
* charter.len_be32 ‖ charter)`.
|
|
2939
|
+
*
|
|
2940
|
+
* Byte-identical to mono-core's `cluster_form::update_charter_message` —
|
|
2941
|
+
* this is the value Monarch's signing flow hashes. There is no
|
|
2942
|
+
* blind-signing surface: the Rust derivation is the SSOT.
|
|
2943
|
+
*/
|
|
2944
|
+
declare function updateCharterMessage(clusterId: bigint | number | string, charter: string | Uint8Array | readonly number[]): Uint8Array;
|
|
2945
|
+
declare function updateCharterMessageHex(clusterId: bigint | number | string, charter: string | Uint8Array | readonly number[]): string;
|
|
2946
|
+
/**
|
|
2947
|
+
* Encode `updateCharter(uint32,bytes,bytes,bytes)` calldata (Component H).
|
|
2948
|
+
*
|
|
2949
|
+
* Head: `clusterId` word + three dynamic-`bytes` offset words. Tails (in
|
|
2950
|
+
* order): the 30-byte charter, the concatenated 1952-byte signer pubkeys,
|
|
2951
|
+
* and the concatenated 3309-byte signatures. The signatures must verify
|
|
2952
|
+
* over {@link updateCharterMessage}. `signerPubkeys`/`signatures` accept
|
|
2953
|
+
* either a single concatenated buffer or an array of per-signer values
|
|
2954
|
+
* (`7..=10` entries, equal counts).
|
|
2955
|
+
*/
|
|
2956
|
+
declare function encodeUpdateCharterCalldata(args: UpdateCharterCalldataArgs): string;
|
|
2957
|
+
/** Encode `getPendingCharter(uint32)` view calldata (Component H). */
|
|
2958
|
+
declare function encodeGetPendingCharterCalldata(clusterId: bigint | number | string): string;
|
|
2959
|
+
/**
|
|
2960
|
+
* Decode a `getPendingCharter(uint32)` return tuple (Component H).
|
|
2961
|
+
*
|
|
2962
|
+
* Wire return: head of 5 words `(bool present, uint16 delegatorShareBps,
|
|
2963
|
+
* uint64 effectiveEpoch, uint16 signerCount, uint64 bytesOffset)`, then a
|
|
2964
|
+
* `bytes` tail `(length word + one 32-byte packed-shares word)`. The
|
|
2965
|
+
* packed-shares word holds the 10×u16 BE member shares in its low 20
|
|
2966
|
+
* bytes (offset 12..32) — the same layout the on-chain encoder writes.
|
|
2967
|
+
*/
|
|
2968
|
+
declare function decodePendingCharter(returnData: string | Uint8Array | readonly number[]): PendingCharterView;
|
|
2969
|
+
/**
|
|
2970
|
+
* Encode `commitArchiveRoot(bytes32,uint16,bytes32,uint64)` calldata
|
|
2971
|
+
* (Component B). All four args are fixed-size — a flat 4-word head.
|
|
2972
|
+
*
|
|
2973
|
+
* BLOCKER-1: enforces the on-chain `MIN_ARCHIVE_LEAF_COUNT` floor
|
|
2974
|
+
* client-side — a `leafCount` below
|
|
2975
|
+
* {@link NODE_REGISTRY_MIN_ARCHIVE_LEAF_COUNT} is rejected here so a
|
|
2976
|
+
* doomed commit never burns a nonce (the chain rejects it with
|
|
2977
|
+
* `ArchiveCommitmentTooFewLeaves`).
|
|
2978
|
+
*/
|
|
2979
|
+
declare function encodeCommitArchiveRootCalldata(args: CommitArchiveRootCalldataArgs): string;
|
|
2980
|
+
/**
|
|
2981
|
+
* Encode `answerArchiveChallenge(bytes32,uint16,uint64,bytes,bytes32[])`
|
|
2982
|
+
* calldata (Component B).
|
|
2983
|
+
*
|
|
2984
|
+
* BLOCKER-1 (mono-core `service-rewards` d2ee4548): the caller-supplied
|
|
2985
|
+
* `roundCertDigest` + `nonce` were removed. The challenge seed is the
|
|
2986
|
+
* protocol-pinned per-epoch quorum-certificate digest and the nonce is
|
|
2987
|
+
* derived from it on-chain, so the caller submits only `(peerId,
|
|
2988
|
+
* shardIndex, epoch, leaf, proof)`.
|
|
2989
|
+
*
|
|
2990
|
+
* Head: 5 words — three fixed args then the `bytes leaf` offset and the
|
|
2991
|
+
* `bytes32[] proof` offset. Tails: the leaf bytes, then the proof array
|
|
2992
|
+
* (length word + N × 32-byte sibling words).
|
|
2993
|
+
*/
|
|
2994
|
+
declare function encodeAnswerArchiveChallengeCalldata(args: AnswerArchiveChallengeCalldataArgs): string;
|
|
2995
|
+
/**
|
|
2996
|
+
* Slot holding the protocol-issued archive challenge seed pinned for
|
|
2997
|
+
* `epoch` (Component B, BLOCKER-1). `keccak256(0x32 || epoch_be64 ||
|
|
2998
|
+
* 0x03)`. The stored 32-byte value is the quorum-certificate digest the
|
|
2999
|
+
* protocol pins at the epoch boundary; a zero word means no seed pinned
|
|
3000
|
+
* (the epoch is un-answerable / fail-closed). Mirrors mono-core
|
|
3001
|
+
* `archive_challenge::slot_epoch_challenge_seed`.
|
|
3002
|
+
*
|
|
3003
|
+
* No RPC method exists for this read yet — derive the slot key and SLOAD
|
|
3004
|
+
* it via `eth_getStorageAt` / `lyth_getStorageAt` against the node-registry
|
|
3005
|
+
* account `0x1005`, then feed the returned word into
|
|
3006
|
+
* {@link deriveArchiveChallenge}.
|
|
3007
|
+
*/
|
|
3008
|
+
declare function slotEpochChallengeSeed(epoch: bigint | number | string): string;
|
|
3009
|
+
/**
|
|
3010
|
+
* Derive the protocol-issued challenge nonce for `epoch` from the pinned
|
|
3011
|
+
* challenge `seed` (Component B, BLOCKER-1). Mirrors mono-core
|
|
3012
|
+
* `archive_challenge::protocol_nonce_for_epoch`:
|
|
3013
|
+
*
|
|
3014
|
+
* `nonce = u64_be(BLAKE3(ARCHIVE_NONCE_DOMAIN ‖ epoch_be64 ‖ seed)[..8])`.
|
|
3015
|
+
*
|
|
3016
|
+
* The nonce is a pure function of the pinned (ungrindable) seed and the
|
|
3017
|
+
* epoch — there is exactly one valid `(epoch, nonce)` coordinate per epoch,
|
|
3018
|
+
* fixed by consensus state the operator does not control.
|
|
3019
|
+
*/
|
|
3020
|
+
declare function protocolNonceForEpoch(seed: string | Uint8Array | readonly number[], epoch: bigint | number | string): bigint;
|
|
3021
|
+
/**
|
|
3022
|
+
* Derive the deterministic archive serve-challenge for `(opHash,
|
|
3023
|
+
* shardIndex, epoch)` against a committed `leafCount`, using the
|
|
3024
|
+
* ON-CHAIN protocol-pinned `seed` (Component B, BLOCKER-1). Mirrors
|
|
3025
|
+
* mono-core `archive_challenge::derive_challenge` with the protocol nonce
|
|
3026
|
+
* derived internally via {@link protocolNonceForEpoch}:
|
|
3027
|
+
*
|
|
3028
|
+
* `nonce = protocolNonceForEpoch(seed, epoch)`;
|
|
3029
|
+
* `challengeSeed = BLAKE3(ARCHIVE_CHALLENGE_DOMAIN ‖ seed ‖ opHash ‖
|
|
3030
|
+
* shardIndex_be16 ‖ epoch_be64 ‖ nonce_be64)`; the leaf index is the
|
|
3031
|
+
* challenge seed's first 8 bytes (BE u64) modulo `leafCount`.
|
|
3032
|
+
*
|
|
3033
|
+
* `seed` is NOT caller-chosen — it is the quorum-certificate digest the
|
|
3034
|
+
* protocol pins for `epoch`, read from {@link slotEpochChallengeSeed} via
|
|
3035
|
+
* `eth_getStorageAt`. Returns `null` when `leafCount === 0` (nothing
|
|
3036
|
+
* committed → nothing to challenge). Useful for off-chain tooling that
|
|
3037
|
+
* mirrors what an operator is about to be asked.
|
|
3038
|
+
*/
|
|
3039
|
+
declare function deriveArchiveChallenge(seed: string | Uint8Array | readonly number[], opHash: string | Uint8Array | readonly number[], shardIndex: number, epoch: bigint | number | string, leafCount: bigint | number | string): ArchiveChallenge | null;
|
|
3040
|
+
/**
|
|
3041
|
+
* Hash one merkle leaf with Component B's domain separation:
|
|
3042
|
+
* `BLAKE3(0x00 || leaf)`. Mirrors mono-core `merkle_leaf_hash`.
|
|
3043
|
+
*/
|
|
3044
|
+
declare function archiveMerkleLeafHash(leaf: string | Uint8Array | readonly number[]): Uint8Array;
|
|
3045
|
+
/**
|
|
3046
|
+
* Hash an inner merkle node with Component B's domain separation:
|
|
3047
|
+
* `BLAKE3(0x01 || left || right)`. Mirrors mono-core `merkle_inner_hash`.
|
|
3048
|
+
*/
|
|
3049
|
+
declare function archiveMerkleInnerHash(left: string | Uint8Array | readonly number[], right: string | Uint8Array | readonly number[]): Uint8Array;
|
|
3050
|
+
/**
|
|
3051
|
+
* Encode `setProbeAuthority(address)` calldata (Component C,
|
|
3052
|
+
* foundation-multisig-gated). `address(0)` clears the dedicated authority
|
|
3053
|
+
* (attestation then authorises against the foundation multisig alone).
|
|
3054
|
+
*/
|
|
3055
|
+
declare function encodeSetProbeAuthorityCalldata(probeAuthority: string | Uint8Array | readonly number[]): string;
|
|
3056
|
+
/** Encode `getProbeAuthority()` view calldata (Component C). */
|
|
3057
|
+
declare function encodeGetProbeAuthorityCalldata(): string;
|
|
3058
|
+
/**
|
|
3059
|
+
* Decode a `getProbeAuthority()` return word into a `0x`-prefixed 20-byte
|
|
3060
|
+
* address (Component C). The zero address means no dedicated authority is
|
|
3061
|
+
* configured (the foundation multisig is the sole attestor).
|
|
3062
|
+
*/
|
|
3063
|
+
declare function decodeProbeAuthority(returnData: string | Uint8Array | readonly number[]): string;
|
|
3064
|
+
/**
|
|
3065
|
+
* Encode `attestServiceProbe(bytes32,uint32,uint8,uint64)` calldata
|
|
3066
|
+
* (Component C, probe-authority/foundation-gated). Writes the
|
|
3067
|
+
* score-domain attested status for every service bit in `serviceMask`,
|
|
3068
|
+
* keyed by `opHash` and stamped with `epoch`. A flat 4-word head.
|
|
3069
|
+
*/
|
|
3070
|
+
declare function encodeAttestServiceProbeCalldata(args: AttestServiceProbeCalldataArgs): string;
|
|
3071
|
+
/**
|
|
3072
|
+
* Slot holding the settled per-cluster ServiceScore (Component A), read
|
|
3073
|
+
* each block by the reward path. `keccak256(0x24 || 0x00 ||
|
|
3074
|
+
* clusterId_be32)`. The value is a right-aligned `u64`; `0` ⇒ never
|
|
3075
|
+
* scored. Mirrors `protocore_service_score::slot_cluster_service_score`.
|
|
3076
|
+
*/
|
|
3077
|
+
declare function slotClusterServiceScore(clusterId: bigint | number | string): string;
|
|
3078
|
+
/**
|
|
3079
|
+
* Slot holding the `(cluster, epoch)` archive-challenge pass flag
|
|
3080
|
+
* (Component B writes; Component A reads). `keccak256(0x24 || 0x01 ||
|
|
3081
|
+
* clusterId_be32 || epoch_be64)`. Mirrors
|
|
3082
|
+
* `protocore_service_score::slot_archive_challenge_pass` /
|
|
3083
|
+
* node-registry `slot_cluster_pass`.
|
|
3084
|
+
*/
|
|
3085
|
+
declare function slotArchiveChallengePass(clusterId: bigint | number | string, epoch: bigint | number | string): string;
|
|
3086
|
+
/**
|
|
3087
|
+
* Slot holding the attested probe status for `(opHash, serviceBit)`
|
|
3088
|
+
* (Component C writes; Component A reads). `keccak256(0x24 || 0x02 ||
|
|
3089
|
+
* opHash || serviceBit)`. `serviceBit` is the BIT INDEX (`SERVES_RPC`=0,
|
|
3090
|
+
* `SERVES_INDEXER`=1, `SERVES_ARCHIVE`=3, …) — NOT the capability mask
|
|
3091
|
+
* value. The stored word packs `(epoch << 8) | status` (see
|
|
3092
|
+
* {@link decodeScoreServiceProbe}). Mirrors
|
|
3093
|
+
* `protocore_service_score::slot_service_probe_status` /
|
|
3094
|
+
* node-registry `slot_score_service_probe`.
|
|
3095
|
+
*/
|
|
3096
|
+
declare function slotScoreServiceProbe(opHash: string | Uint8Array | readonly number[], serviceBit: number): string;
|
|
3097
|
+
/** The single bit index (`0..=15`) of a single-flag capability mask, or `null`. */
|
|
3098
|
+
declare function serviceMaskToBitIndex(mask: number): number | null;
|
|
3099
|
+
/**
|
|
3100
|
+
* Decode a `slotScoreServiceProbe` storage word — the packed
|
|
3101
|
+
* `(epoch << 8) | status` value. Returns the attestation epoch and the
|
|
3102
|
+
* status byte. A zero word means no attestation on file.
|
|
3103
|
+
*/
|
|
3104
|
+
declare function decodeScoreServiceProbe(word: string | Uint8Array | readonly number[]): {
|
|
3105
|
+
epoch: bigint;
|
|
3106
|
+
status: number;
|
|
3107
|
+
};
|
|
3108
|
+
/**
|
|
3109
|
+
* Slot holding the rotatable probe-authority address (Component C).
|
|
3110
|
+
* `keccak256(TAG_TREASURY=0x1F || 32 zero bytes || 0x0A)`. Mirrors
|
|
3111
|
+
* node-registry `storage::slot_probe_authority`.
|
|
3112
|
+
*/
|
|
3113
|
+
declare function slotProbeAuthority(): string;
|
|
2652
3114
|
/**
|
|
2653
3115
|
* Decode CJ-1 `getClusterJoinRequest(uint32,bytes32)` return data.
|
|
2654
3116
|
*
|
|
@@ -6483,4 +6945,4 @@ declare function submitTransactionWithPrivacy(args: {
|
|
|
6483
6945
|
class?: MempoolClass;
|
|
6484
6946
|
}): Promise<string>;
|
|
6485
6947
|
|
|
6486
|
-
export { type AddressActivityArchiveRedirect as $, type ApiStreamsIndexResponse as A, type BlockSelector as B, type ChainStatsResponse as C, type NativeEvmTxFields as D, type EncryptionKey as E, MempoolClass as F, type TypedAddress as G, RpcClient as H, MlDsa65Backend as I, type ExecutionUnitPriceResponse as J, type ClusterSealKeys as K, type ClusterSealKeysSource as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, type ClusterJoinRequestView as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, type AddressKind as U, ADDRESS_HRP as V, ADDRESS_KIND_HRPS as W, API_STREAM_TOPICS as X, type AccountPolicy as Y, type AccountProofResponse as Z, type Address as _, type RuntimeUpgradeStatus as a, type ChainRegistry as a$, type AddressActivityEntry as a0, type AddressActivityEntryEnriched as a1, type AddressActivityKind as a2, type AddressActivityKindResponse as a3, type AddressActivityKindRetention as a4, AddressError as a5, type AddressLabelRecord as a6, type AddressValidation as a7, type AgentReputationCategoryScope as a8, type AgentReputationRecord as a9, type BridgeRiskTier as aA, type BridgeRouteAssessment as aB, type BridgeRouteCandidate as aC, type BridgeRouteCatalogue as aD, BridgeRouteCatalogueError as aE, type BridgeRouteCatalogueJsonOptions as aF, type BridgeRouteCataloguePayload as aG, type BridgeRouteCatalogueRoute as aH, type BridgeRouteCatalogueValidation as aI, type BridgeRouteDisclosure as aJ, type BridgeRouteSelection as aK, type BridgeRoutesSource as aL, type BridgeTransferIntent as aM, type BridgeTransferRequest as aN, type BridgeVerifierDisclosure as aO, CHAIN_REGISTRY as aP, CHAIN_REGISTRY_RAW_BASE as aQ, CLOB_MARKET_ID_DOMAIN_TAG as aR, CLOB_SELECTORS as aS, CLUSTER_FORMED_EVENT_SIG as aT, type CallRequest as aU, type CancelClusterJoinCalldataArgs as aV, type CancelPendingChangeCalldataArgs as aW, type CancelSpotOrderArgs as aX, type CapabilitiesResponse as aY, type CapabilityDescriptor as aZ, type ChainInfo as a_, type AgentReputationResponse as aa, type ApiStreamTopic as ab, type ApiStreamTopicMetadata as ac, type ApiStreamTopicRetention as ad, type AssetPolicy as ae, type AttestDkgReshareCalldataArgs as af, type AttestationWindow as ag, BRIDGE_QUOTE_API_BLOCKED_REASON as ah, BRIDGE_REVERT_TAGS as ai, BRIDGE_SELECTORS as aj, BRIDGE_SUBMIT_API_BLOCKED_REASON as ak, type BlockHeader as al, type BlockTag as am, type BlsCertificateResponse as an, type BridgeAdminControl as ao, type BridgeAnchorState as ap, type BridgeBreakerState as aq, type BridgeBytesInput as ar, type BridgeCircuitBreakerFields as as, type BridgeCircuitBreakerState as at, type BridgeDrainCap as au, type BridgeDrainStatus as av, type BridgeHealthRecord as aw, type BridgeHealthResponse as ax, BridgePrecompileError as ay, type BridgeQuoteSubmitReadiness as az, type NativeReceiptResponse as b, type JailStatusWindow as b$, type CheckpointRecord as b0, type CirculatingSupplyResponse as b1, type ClobMarketAssets as b2, type ClobMarketRecord as b3, type ClobMarketSummary as b4, type ClobTrade as b5, type ClusterAprResponse as b6, type ClusterDelegatorsResponse as b7, type ClusterDirectoryEntryResponse as b8, type ClusterDirectoryPageResponse as b9, type EncodeNativeNftCancelListingArgs as bA, type EncodeNativeNftCreateListingArgs as bB, type EncodeNativeNftPlaceAuctionBidArgs as bC, type EncodeNativeNftSettleAuctionArgs as bD, type EncodeNativeNftSweepExpiredListingsArgs as bE, type EncodeNativeSpotCancelOrderArgs as bF, type EncodeNativeSpotCreateMarketArgs as bG, type EncodeNativeSpotLimitOrderArgs as bH, type EncodeNativeSpotSettleLimitOrderArgs as bI, type EncodeNativeSpotSettleRoutedLimitOrderArgs as bJ, type EncryptionKeyResponse as bK, type EntityRatchetResponse as bL, type EthCallRequest as bM, type EthSendTransactionRequest as bN, type ExpireClusterJoinCalldataArgs as bO, type ExplorerEndpoint as bP, FEED_ID_DOMAIN_TAG as bQ, type FeeHistoryResponse as bR, type FormClusterCalldataArgs as bS, type GapRange as bT, type GapRecord as bU, type GapRecordsResponse as bV, type GetClusterJoinRequestCalldataArgs as bW, type GetOperatorSealKeyCalldataArgs as bX, type Hash as bY, type Hex as bZ, type IndexerStatus as b_, type ClusterDiversity as ba, type ClusterDiversityView as bb, type ClusterEntityResponse as bc, type ClusterFormedEvent as bd, type ClusterJoinRequestStatus as be, type ClusterMemberResponse as bf, type ClusterNameResponse as bg, type ClusterResignationRow as bh, type ClusterResignationsResponse as bi, type ClusterStatusResponse as bj, type CreateRequestCanonicalArgs as bk, DIVERSITY_SCORE_MAX as bl, type DagParent as bm, type DagParentsResponse as bn, type DagSyncStatus as bo, type DecodeTxExtension as bp, type DecodeTxLog as bq, type DecodeTxPqAttestation as br, type DecodeTxResponse as bs, type DelegationCapResponse as bt, type DelegationHistoryRecord as bu, type DelegationRow as bv, type DelegationsResponse as bw, type DutyAbsence as bx, EMPTY_ROOT as by, type EncodeNativeNftBuyListingArgs as bz, type NativeDecodedEvent as c, NO_EVM_FINALITY_EVIDENCE_SOURCE as c$, type KeyRotationWindow as c0, type ListProofRequestsResponse as c1, type LythUpgradePlanStatus as c2, type LythUpgradeStatusResponse as c3, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES as c4, MAX_NATIVE_RECEIPT_EVENTS as c5, ML_DSA_65_PUBLIC_KEY_LEN$1 as c6, ML_DSA_65_SIGNATURE_LEN$1 as c7, MULTISIG_ADDRESS_DERIVATION_DOMAIN as c8, MarketActionError as c9, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as cA, NODE_REGISTRY_BLS_PUBKEY_BYTES as cB, NODE_REGISTRY_CAPABILITIES as cC, NODE_REGISTRY_CAPABILITY_MASK as cD, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES as cE, NODE_REGISTRY_CONSENSUS_POP_BYTES as cF, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES as cG, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES as cH, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES as cI, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS as cJ, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS as cK, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES as cL, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT as cM, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT as cN, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN as cO, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT as cP, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD as cQ, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES as cR, NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES as cS, NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES as cT, NODE_REGISTRY_OPERATOR_SEAL_EK_BYTES as cU, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID as cV, NODE_REGISTRY_PUBLIC_SERVICE_MASK as cW, NODE_REGISTRY_SELECTORS as cX, NO_EVM_ARCHIVE_PROOF_SCHEMA as cY, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as cZ, NO_EVM_FINALITY_EVIDENCE_SCHEMA as c_, type MarketTransactionPlan as ca, type MempoolSnapshot as cb, type MeshDecodedTx as cc, type MeshSignedTxResponse as cd, type MeshTxIntent as ce, type MeshUnsignedTxResponse as cf, type MetricsRangeResponse as cg, type MetricsRangeSample as ch, type MetricsRangeSeries as ci, type MetricsRangeStatus as cj, type MrcAccountRecord as ck, type MrcMetadataRecord as cl, type MrcPolicyRecord as cm, type MrcPolicySpendRecord as cn, NAME_BASE_MULTIPLIER as co, NAME_FALLBACK_FEE_UNIT_LYTHOSHI as cp, NAME_LABEL_MAX_LEN as cq, NAME_LABEL_MIN_LEN as cr, NAME_MAX_LEN as cs, NAME_REGISTRY_SELECTORS as ct, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE as cu, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY as cv, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET as cw, NATIVE_MARKET_EVENT_FAMILY as cx, NATIVE_MARKET_MODULE_ADDRESS as cy, NATIVE_MARKET_MODULE_ADDRESS_BYTES as cz, type NativeEventFilter as d, type NoEvmFinalityBlockReference as d$, NO_EVM_RECEIPTS_ROOT_DOMAIN as d0, NO_EVM_RECEIPT_CODEC as d1, NO_EVM_RECEIPT_PROOF_SCHEMA as d2, NO_EVM_RECEIPT_PROOF_TYPE as d3, NO_EVM_RECEIPT_ROOT_ALGORITHM as d4, type NameCategory as d5, type NameOfResponse as d6, type NameRegistrationQuote as d7, NameRegistryError as d8, type NativeAgentArbiterStateRecord as d9, type NativeMarketOrderBookDeltasSource as dA, type NativeMarketOrderBookStreamAction as dB, type NativeMarketOrderBookStreamPayload as dC, type NativeMarketStateFilterParamValue as dD, type NativeMarketStateResponseFilters as dE, type NativeMarketStateSource as dF, type NativeModuleForwarderDescriptor as dG, type NativeMrcPolicyProjection as dH, type NativeNftAssetStandard as dI, type NativeNftListingKind as dJ, type NativeNftListingStateRecord as dK, type NativeReceiptCounters as dL, type NativeReceiptEvent as dM, type NativeReceiptSource as dN, type NativeSpotMarketStateRecord as dO, type NativeSpotOrderStateRecord as dP, type NetworkClientOptions as dQ, type NetworkSlug as dR, type NoEvmArchiveCoveringSnapshot as dS, type NoEvmArchiveProof as dT, type NoEvmArchiveSignatureVerification as dU, type NoEvmArchiveSignatureVerificationIssue as dV, type NoEvmArchiveSignatureVerificationIssueCode as dW, type NoEvmArchiveTrustedSigner as dX, type NoEvmBlockBlsFinalityVerification as dY, type NoEvmBlockRoundFinalityVerification as dZ, type NoEvmBlsFinalityVerification as d_, type NativeAgentAttestationStateRecord as da, type NativeAgentAvailabilityStateRecord as db, type NativeAgentConsentStateRecord as dc, type NativeAgentEscrowStateRecord as dd, type NativeAgentIssuerStateRecord as de, type NativeAgentPolicySpendStateRecord as df, type NativeAgentPolicyStateRecord as dg, type NativeAgentReputationReviewStateRecord as dh, type NativeAgentServiceStateRecord as di, type NativeAgentStateFilterParamValue as dj, type NativeAgentStateResponseFilters as dk, type NativeAgentStateSource as dl, type NativeCallForwarderArtifact as dm, type NativeCollectionRoyaltyStateRecord as dn, type NativeEventConsumer as dp, type NativeEventProjection as dq, type NativeEventsResponseFilters as dr, type NativeEventsSource as ds, type NativeMarketAddressInput as dt, type NativeMarketAddressKind as du, type NativeMarketForwarderInput as dv, type NativeMarketModuleCallEnvelope as dw, type NativeMarketModuleContractCall as dx, type NativeMarketOrderBookDelta as dy, type NativeMarketOrderBookDeltasResponseFilters as dz, type TypedNativeReceiptEvent as e, type ProofRequestRow as e$, type NoEvmFinalityCertificate as e0, type NoEvmFinalityEvidence as e1, type NoEvmReceiptFinalityTrustPolicy as e2, type NoEvmReceiptProof as e3, NoEvmReceiptProofError as e4, type NoEvmReceiptProofErrorCode as e5, type NoEvmReceiptProofVerification as e6, type NoEvmReceiptTrustIssue as e7, type NoEvmReceiptTrustIssueCode as e8, type NoEvmReceiptTrustPolicy as e9, type OracleLatestPrice as eA, type OracleSignerRow as eB, type OracleSignersResponse as eC, type OracleWriters as eD, type P2pSeed as eE, PENDING_CHANGE_KIND_CODES as eF, PROVER_MARKET_ADDRESS as eG, PROVER_MARKET_BID_DOMAIN as eH, PROVER_MARKET_EVENT_SIGS as eI, PROVER_MARKET_REQUEST_DOMAIN as eJ, PROVER_MARKET_SELECTORS as eK, PROVER_MARKET_SUBMIT_DOMAIN as eL, PROVER_SLASH_REASON_BAD_PROOF as eM, PROVER_SLASH_REASON_NON_DELIVERY as eN, type ParsedName as eO, type PeerSummary as eP, type PeerSummaryAggregate as eQ, type PendingChangeKind as eR, type PendingRewardsRow as eS, type PendingTxSummary as eT, type PlaceLimitOrderViaArgs as eU, type PlaceLimitOrderViaPlan as eV, type PlaceSpotLimitOrderArgs as eW, type PlaceSpotMarketOrderArgs as eX, type PlaceSpotMarketOrderExArgs as eY, type PrecompileCatalogueResponse as eZ, type PrecompileDescriptor as e_, type NoEvmReceiptTrustVerification as ea, type NoEvmReceiptTrustedBlsSigner as eb, type NoEvmReceiptTrustedSigner as ec, type NoEvmRoundFinalityVerification as ed, type NodeHostingClass as ee, NodeRegistryError as ef, OPERATOR_ROUTER_EVENT_SIGS as eg, OPERATOR_ROUTER_SELECTORS as eh, OPERATOR_ROUTER_SIGS as ei, ORACLE_EVENT_SIGS as ej, type OperatorAuthorityResponse as ek, type OperatorFeeChargedEvent as el, type OperatorFeeConfig as em, type OperatorFeeQuote as en, type OperatorInfoResponse as eo, type OperatorNetworkMetadata as ep, type OperatorNetworkMetadataView as eq, type OperatorRiskResponse as er, type OperatorRouterConfig as es, type OperatorSigningActivityResponse as et, type OperatorSigningEntry as eu, type OperatorSurfaceCapability as ev, type OperatorSurfaceStatus as ew, type OracleEvent as ex, OracleEventError as ey, type OracleFeedConfig as ez, type NativeEventsFilter as f, type UpcomingDutyMap as f$, type ProofRequestView as f0, type ProverBidView as f1, type ProverBidsResponse as f2, ProverMarketError as f3, type ProverMarketState as f4, type ProverMarketStatusResponse as f5, type PublishOperatorSealKeyCalldataArgs as f6, type Quantity as f7, type QuoteLiquidity as f8, RESERVED_ADDRESS_HRPS as f9, type SetOperatorDisplayCalldataArgs as fA, type SigningEntryStatus as fB, type SpendingPolicyArgs as fC, SpendingPolicyError as fD, type SpendingPolicyTimeWindow as fE, type SpendingPolicyView as fF, type SpotLimitOrderSide as fG, type SpotMarketOrderMode as fH, type StorageProofBatch as fI, type SubmitPendingChangeCalldataArgs as fJ, type SwapIntentStatus as fK, type SyncStatus as fL, TESTNET_69420 as fM, type TokenBalanceMrcIdentity as fN, type TokenBalanceRecord as fO, type TokenBalanceWithMetadata as fP, type TotalBurnedResponse as fQ, type TpmAttestationResponse as fR, type TransactionReceipt as fS, type TransactionView as fT, type TxConfirmations as fU, type TxFeedReceipt as fV, type TxFeedTransaction as fW, type TxStatusFoundResponse as fX, type TxStatusNotFoundResponse as fY, type TxStatusResponse as fZ, type UpcomingDutiesResponse as f_, type RankedBridgeRoute as fa, type ReceiptProofTrustArchivePolicy as fb, type ReceiptProofTrustArchiveSigner as fc, type ReceiptProofTrustFinalityPolicy as fd, type ReceiptProofTrustFinalitySigner as fe, type ReceiptProofTrustPolicy as ff, type RedemptionQueueTicket as fg, type RegistryRecord as fh, type ReportServiceProbeCalldataArgs as fi, type ReportServiceProbeRequest as fj, type ReportServiceProbeResponse as fk, type RequestClusterJoinCalldataArgs as fl, type ResolveNameResponse as fm, type RichListHolder as fn, type RichListResponse as fo, type RoundCertificateResponse as fp, type RoundInfo as fq, type RpcClientOptions as fr, type RpcEndpoint as fs, type RuntimeProvenanceResponse as ft, SERVES_GPU_PROVE as fu, SERVICE_PROBE_STATUS as fv, SET_POLICY_CLAIM_DOMAIN_TAG as fw, SPENDING_POLICY_SELECTORS as fx, type SearchHit as fy, type ServiceProbeStatusLabel as fz, type NativeEventsResponse as g, decodeClusterJoinRequest as g$, type UserAddressInput as g0, V1_BRIDGE_ALLOWED_FEE_TOKEN as g1, V1_BRIDGE_ALLOWED_PROTOCOL as g2, type VertexAtRound as g3, type VerticesAtRoundResponse as g4, type VoteClusterAdmitCalldataArgs as g5, addressBytesToHex as g6, addressToBech32 as g7, addressToTypedBech32 as g8, allowRootFor as g9, buildNativeSpotCancelOrderForwarderInput as gA, buildNativeSpotCancelOrderModuleCall as gB, buildNativeSpotCreateMarketForwarderInput as gC, buildNativeSpotCreateMarketModuleCall as gD, buildNativeSpotLimitOrderForwarderInput as gE, buildNativeSpotLimitOrderModuleCall as gF, buildNativeSpotSettleLimitOrderForwarderInput as gG, buildNativeSpotSettleLimitOrderModuleCall as gH, buildNativeSpotSettleRoutedLimitOrderForwarderInput as gI, buildNativeSpotSettleRoutedLimitOrderModuleCall as gJ, buildPlaceLimitOrderViaPlan as gK, buildPlaceSpotLimitOrderPlan as gL, buildPlaceSpotMarketOrderExPlan as gM, buildPlaceSpotMarketOrderPlan as gN, categoryRoot as gO, clobAddressHex as gP, clusterApyPercent as gQ, composeClaimBoundMessage as gR, computeNoEvmDacFinalityMessage as gS, computeNoEvmLeaderFinalityMessage as gT, computeNoEvmReceiptsRoot as gU, computeNoEvmRoundFinalityMessage as gV, computeNoEvmTargetReceiptHash as gW, computeQuoteLiquidity as gX, consumeNativeEvents as gY, decodeClusterDiversity as gZ, decodeClusterFormedEvent as g_, assertNativeMarketOrderBookStreamPayload as ga, assessBridgeRoute as gb, bech32ToAddress as gc, bech32ToAddressBytes as gd, bidSighash as ge, bridgeAddressHex as gf, bridgeDrainRemaining as gg, bridgeQuoteSubmitReadiness as gh, bridgeRoutesReadiness as gi, bridgeTransferCandidates as gj, buildBridgeRouteCatalogue as gk, buildCancelSpotOrderPlan as gl, buildNativeCallForwarderArtifact as gm, buildNativeMarketModuleCallEnvelope as gn, buildNativeNftBuyListingForwarderInput as go, buildNativeNftBuyListingModuleCall as gp, buildNativeNftCancelListingForwarderInput as gq, buildNativeNftCancelListingModuleCall as gr, buildNativeNftCreateListingForwarderInput as gs, buildNativeNftCreateListingModuleCall as gt, buildNativeNftPlaceAuctionBidForwarderInput as gu, buildNativeNftPlaceAuctionBidModuleCall as gv, buildNativeNftSettleAuctionForwarderInput as gw, buildNativeNftSettleAuctionModuleCall as gx, buildNativeNftSweepExpiredListingsForwarderInput as gy, buildNativeNftSweepExpiredListingsModuleCall as gz, type NativeAgentStateFilter as h, encodeSetPolicyClaimCalldata as h$, decodeNativeAgentStateResponse as h0, decodeNativeMarketOrderBookDeltasResponse as h1, decodeNativeReceiptResponse as h2, decodeNoEvmReceiptTranscript as h3, decodeOperatorFeeChargedEvent as h4, decodeOperatorNetworkMetadata as h5, decodeOperatorSealKey as h6, decodeOracleEvent as h7, decodeTimeWindow as h8, decodeTxFeedResponse as h9, encodeNameRegisterCall as hA, encodeNativeMarketModuleForwarderInput as hB, encodeNativeNftBuyListingCall as hC, encodeNativeNftCancelListingCall as hD, encodeNativeNftCreateListingCall as hE, encodeNativeNftPlaceAuctionBidCall as hF, encodeNativeNftSettleAuctionCall as hG, encodeNativeNftSweepExpiredListingsCall as hH, encodeNativeSpotCancelOrderCall as hI, encodeNativeSpotCreateMarketCall as hJ, encodeNativeSpotLimitOrderCall as hK, encodeNativeSpotSettleLimitOrderCall as hL, encodeNativeSpotSettleRoutedLimitOrderCall as hM, encodePlaceLimitOrderCalldata as hN, encodePlaceLimitOrderViaCalldata as hO, encodePlaceMarketOrderCalldata as hP, encodePlaceMarketOrderExCalldata as hQ, encodePublishOperatorSealKeyCalldata as hR, encodeRecoverOperatorNodeCalldata as hS, encodeReportServiceProbeCalldata as hT, encodeRequestClusterJoinCalldata as hU, encodeSetBridgeResumeCooldownCalldata as hV, encodeSetBridgeRouteFinalityCalldata as hW, encodeSetLotSizeCalldata as hX, encodeSetMinNotionalCalldata as hY, encodeSetOperatorDisplayCalldata as hZ, encodeSetPolicyCalldata as h_, denyRootFor as ha, deriveClobMarketId as hb, deriveClusterAnchorAddress as hc, deriveFeedId as hd, deriveNativeSpotMarketId as he, deriveNativeSpotOrderId as hf, destinationRoot as hg, encodeAttestDkgReshareCalldata as hh, encodeBlockSelector as hi, encodeBridgeChallengeCalldata as hj, encodeBridgeClaimCalldata as hk, encodeCancelClusterJoinCalldata as hl, encodeCancelOrderCalldata as hm, encodeCancelPendingChangeCalldata as hn, encodeClaimPolicyByAddressCalldata as ho, encodeCreateRequestCalldata as hp, encodeCreateRequestCanonical as hq, encodeDisableCalldata as hr, encodeEnableCalldata as hs, encodeExpireClusterJoinCalldata as ht, encodeFormClusterCalldata as hu, encodeGetClusterJoinRequestCalldata as hv, encodeGetOperatorSealKeyCalldata as hw, encodeLockBridgeConfigCalldata as hx, encodeNameAcceptTransferCall as hy, encodeNameProposeTransferCall as hz, type NativeAgentStateResponse as i, selectBridgeTransferRoute as i$, encodeSetTickSizeCalldata as i0, encodeSubmitBridgeProofCalldata as i1, encodeSubmitPendingChangeCalldata as i2, encodeVoteClusterAdmitCalldata as i3, exportBridgeRouteCatalogueJson as i4, fetchChainInfoLatest as i5, fetchChainRegistryLatest as i6, formClusterMessage as i7, formClusterMessageHex as i8, formatOraclePrice as i9, nativeMarketEventsFromHistory as iA, nativeMarketEventsFromReceipt as iB, nativeMarketStateFilterParams as iC, noEvmReceiptTrustPolicyFromChainInfo as iD, nodeHostingClassFromByte as iE, nodeHostingClassToByte as iF, nodeRegistryAddressHex as iG, normalizeAddressHex as iH, normalizeBridgeRouteCatalogue as iI, normalizePendingChangeKind as iJ, oracleAddressHex as iK, oraclePriceToNumber as iL, packTimeWindow as iM, parseAddress as iN, parseBridgeRouteCatalogueJson as iO, parseChainRegistryToml as iP, parseDkgResharePublicKeys as iQ, parseNameCategory as iR, parseNativeDecodedEvent as iS, parseQuantity as iT, parseQuantityBig as iU, proverMarketStateFromByte as iV, quoteOperatorFee as iW, rankBridgeRoutes as iX, rankMarketsByVolume as iY, requestSighash as iZ, requireTypedAddress as i_, getChainInfo as ia, getNoEvmReceiptTrustPolicy as ib, getP2pSeeds as ic, getRpcEndpoints as id, hexToAddressBytes as ie, isBridgeAdminLockedRevert as ig, isBridgeCooldownZeroRevert as ih, isBridgeFinalityZeroRevert as ii, isBridgeResumeCooldownActiveRevert as ij, isConcreteServiceProbeStatus as ik, isNativeDecodedEvent as il, isNativeMarketOrderBookStreamPayload as im, isSinglePublicServiceProbeMask as io, isValidNodeRegistryCapabilities as ip, isValidPublicServiceProbeMask as iq, nameLengthModifierX10 as ir, nameRegistrationCost as is, nameRegistryAddressHex as it, nativeAgentStateFilterParams as iu, nativeEventMatches as iv, nativeEventsFilterParams as iw, nativeEventsFromHistory as ix, nativeEventsFromReceipt as iy, nativeMarketEventFilter as iz, type NativeMarketStateFilter as j, encodeTransactionForHash as j$, serviceProbeStatusLabel as j0, setDestinationRoot as j1, spendingPolicyAddressHex as j2, submitSighash as j3, typedBech32ToAddress as j4, validateAddress as j5, validateBridgeRouteCatalogue as j6, verifyNoEvmArchiveProofSignatures as j7, verifyNoEvmBlockFinalityEvidenceMultisig as j8, verifyNoEvmBlockFinalityEvidenceThreshold as j9, type NativeTxExtensionLike as jA, type NonceAad as jB, type OperatorSealKeypair as jC, type PlaintextSubmission as jD, SEAL_COMMIT_LEN as jE, SEAL_DK_LEN as jF, SEAL_EK_LEN as jG, SEAL_KEM_CT_LEN as jH, SEAL_KEM_SEED_LEN as jI, SEAL_KEY_LEN as jJ, SEAL_NONCE_LEN as jK, SEAL_SHARE_LEN as jL, SEAL_TAG_LEN as jM, STANDARD_ALGO_NUMBER_ML_DSA_65 as jN, type SealRandomSource as jO, type SealRecipient as jP, type SealedSubmission as jQ, bincodeDecryptHint as jR, bincodeEncryptedEnvelope as jS, bincodeNonceAad as jT, bincodeSignedTransaction as jU, buildEncryptedEnvelope as jV, buildEncryptedSubmission as jW, buildPlaintextSubmission as jX, cryptoRandomSource as jY, encodeMlDsa65Opaque as jZ, encodeSealEnvelope as j_, verifyNoEvmFinalityEvidenceMultisig as ja, verifyNoEvmFinalityEvidenceThreshold as jb, verifyNoEvmReceiptProof as jc, verifyNoEvmReceiptProofTrust as jd, ADDRESS_DERIVATION_DOMAIN as je, CLUSTER_MLKEM_SHAMIR as jf, CLUSTER_MLKEM_SHAMIR_ALGO as jg, type ClusterSealKeyEntryInput as jh, DKG_AEAD_TAG_LEN as ji, DKG_NONCE_LEN as jj, type DecryptHint as jk, ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE as jl, ENUM_VARIANT_INDEX_ML_DSA_65 as jm, type EncryptedEnvelope as jn, type EncryptedSubmission as jo, type JsonRpcCallClient as jp, type LythiumSealEnvelope as jq, ML_DSA_65_PUBLIC_KEY_LEN as jr, ML_DSA_65_SEED_LEN as js, ML_DSA_65_SIGNATURE_LEN as jt, ML_DSA_65_SIGNING_KEY_LEN as ju, ML_KEM_768_CIPHERTEXT_LEN as jv, ML_KEM_768_ENCAPSULATION_KEY_LEN as jw, ML_KEM_768_SHARED_SECRET_LEN as jx, type NativeTxExtension as jy, type NativeTxExtensionDescriptor as jz, type NativeMarketStateResponse as k, encryptInnerTx as k0, fetchEncryptionKey as k1, generateOperatorSealKeypair as k2, getClusterSealKeys as k3, mlDsa65AddressBytes as k4, mlDsa65AddressFromPublicKey as k5, outerSigDigest as k6, parseClusterSealKeys as k7, sealRosterHash as k8, sealToCluster as k9, sealTransaction as ka, submitEncryptedEnvelope as kb, submitPlaintextTransaction as kc, submitSealedTransaction as kd, submitTransactionWithPrivacy as ke, type NativeMarketOrderBookDeltasRequest as l, type NativeMarketOrderBookDeltasResponse as m, type AddressProfileResponse as n, type AddressFlowResponse as o, type RedemptionQueueResponse as p, type MrcAccountResponse as q, type MrcHoldersResponse as r, type BridgeRoutesRequest as s, type BridgeRoutesResponse as t, type ServiceProbeResponse as u, type ClobMarketsResponse as v, type ClobMarketResponse as w, type ClobTradesResponse as x, type ClobOhlcResponse as y, type ClobOrderBookResponse as z };
|
|
6948
|
+
export { type AddressActivityArchiveRedirect as $, type ApiStreamsIndexResponse as A, type BlockSelector as B, type ChainStatsResponse as C, type NativeEvmTxFields as D, type EncryptionKey as E, MempoolClass as F, type TypedAddress as G, RpcClient as H, MlDsa65Backend as I, type ExecutionUnitPriceResponse as J, type ClusterSealKeys as K, type ClusterSealKeysSource as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, type ClusterJoinRequestView as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, type AddressKind as U, ADDRESS_HRP as V, ADDRESS_KIND_HRPS as W, API_STREAM_TOPICS as X, type AccountPolicy as Y, type AccountProofResponse as Z, type Address as _, type RuntimeUpgradeStatus as a, type CapabilitiesResponse as a$, type AddressActivityEntry as a0, type AddressActivityEntryEnriched as a1, type AddressActivityKind as a2, type AddressActivityKindResponse as a3, type AddressActivityKindRetention as a4, AddressError as a5, type AddressLabelRecord as a6, type AddressValidation as a7, type AgentReputationCategoryScope as a8, type AgentReputationRecord as a9, type BridgeHealthResponse as aA, BridgePrecompileError as aB, type BridgeQuoteSubmitReadiness as aC, type BridgeRiskTier as aD, type BridgeRouteAssessment as aE, type BridgeRouteCandidate as aF, type BridgeRouteCatalogue as aG, BridgeRouteCatalogueError as aH, type BridgeRouteCatalogueJsonOptions as aI, type BridgeRouteCataloguePayload as aJ, type BridgeRouteCatalogueRoute as aK, type BridgeRouteCatalogueValidation as aL, type BridgeRouteDisclosure as aM, type BridgeRouteSelection as aN, type BridgeRoutesSource as aO, type BridgeTransferIntent as aP, type BridgeTransferRequest as aQ, type BridgeVerifierDisclosure as aR, CHAIN_REGISTRY as aS, CHAIN_REGISTRY_RAW_BASE as aT, CLOB_MARKET_ID_DOMAIN_TAG as aU, CLOB_SELECTORS as aV, CLUSTER_FORMED_EVENT_SIG as aW, type CallRequest as aX, type CancelClusterJoinCalldataArgs as aY, type CancelPendingChangeCalldataArgs as aZ, type CancelSpotOrderArgs as a_, type AgentReputationResponse as aa, type AnswerArchiveChallengeCalldataArgs as ab, type ApiStreamTopic as ac, type ApiStreamTopicMetadata as ad, type ApiStreamTopicRetention as ae, type ArchiveChallenge as af, type AssetPolicy as ag, type AttestDkgReshareCalldataArgs as ah, type AttestServiceProbeCalldataArgs as ai, type AttestationWindow as aj, BRIDGE_QUOTE_API_BLOCKED_REASON as ak, BRIDGE_REVERT_TAGS as al, BRIDGE_SELECTORS as am, BRIDGE_SUBMIT_API_BLOCKED_REASON as an, type BlockHeader as ao, type BlockTag as ap, type BlsCertificateResponse as aq, type BridgeAdminControl as ar, type BridgeAnchorState as as, type BridgeBreakerState as at, type BridgeBytesInput as au, type BridgeCircuitBreakerFields as av, type BridgeCircuitBreakerState as aw, type BridgeDrainCap as ax, type BridgeDrainStatus as ay, type BridgeHealthRecord as az, type NativeReceiptResponse as b, type GapRecordsResponse as b$, type CapabilityDescriptor as b0, type ChainInfo as b1, type ChainRegistry as b2, type CheckpointRecord as b3, type CirculatingSupplyResponse as b4, type ClobMarketAssets as b5, type ClobMarketRecord as b6, type ClobMarketSummary as b7, type ClobTrade as b8, type ClusterAprResponse as b9, type DelegationRow as bA, type DelegationsResponse as bB, type DutyAbsence as bC, EMPTY_ROOT as bD, type EncodeNativeNftBuyListingArgs as bE, type EncodeNativeNftCancelListingArgs as bF, type EncodeNativeNftCreateListingArgs as bG, type EncodeNativeNftPlaceAuctionBidArgs as bH, type EncodeNativeNftSettleAuctionArgs as bI, type EncodeNativeNftSweepExpiredListingsArgs as bJ, type EncodeNativeSpotCancelOrderArgs as bK, type EncodeNativeSpotCreateMarketArgs as bL, type EncodeNativeSpotLimitOrderArgs as bM, type EncodeNativeSpotSettleLimitOrderArgs as bN, type EncodeNativeSpotSettleRoutedLimitOrderArgs as bO, type EncryptionKeyResponse as bP, type EntityRatchetResponse as bQ, type EthCallRequest as bR, type EthSendTransactionRequest as bS, type ExpireClusterJoinCalldataArgs as bT, type ExplorerEndpoint as bU, FEED_ID_DOMAIN_TAG as bV, type FeeHistoryResponse as bW, type FormClusterCalldataArgs as bX, type FormClusterV2CalldataArgs as bY, type GapRange as bZ, type GapRecord as b_, type ClusterCharterArgs as ba, type ClusterDelegatorsResponse as bb, type ClusterDirectoryEntryResponse as bc, type ClusterDirectoryPageResponse as bd, type ClusterDiversity as be, type ClusterDiversityView as bf, type ClusterEntityResponse as bg, type ClusterFormedEvent as bh, type ClusterJoinRequestStatus as bi, type ClusterMemberResponse as bj, type ClusterNameResponse as bk, type ClusterResignationRow as bl, type ClusterResignationsResponse as bm, type ClusterStatusResponse as bn, type CommitArchiveRootCalldataArgs as bo, type CreateRequestCanonicalArgs as bp, DIVERSITY_SCORE_MAX as bq, type DagParent as br, type DagParentsResponse as bs, type DagSyncStatus as bt, type DecodeTxExtension as bu, type DecodeTxLog as bv, type DecodeTxPqAttestation as bw, type DecodeTxResponse as bx, type DelegationCapResponse as by, type DelegationHistoryRecord as bz, type NativeDecodedEvent as c, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT as c$, type GetClusterJoinRequestCalldataArgs as c0, type GetOperatorSealKeyCalldataArgs as c1, type Hash as c2, type Hex as c3, type IndexerStatus as c4, type JailStatusWindow as c5, type KeyRotationWindow as c6, type ListProofRequestsResponse as c7, type LythUpgradePlanStatus as c8, type LythUpgradeStatusResponse as c9, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE as cA, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY as cB, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET as cC, NATIVE_MARKET_EVENT_FAMILY as cD, NATIVE_MARKET_MODULE_ADDRESS as cE, NATIVE_MARKET_MODULE_ADDRESS_BYTES as cF, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as cG, NODE_REGISTRY_ARCHIVE_CHALLENGE_DOMAIN as cH, NODE_REGISTRY_ARCHIVE_KIND_EPOCH_SEED as cI, NODE_REGISTRY_ARCHIVE_NONCE_DOMAIN as cJ, NODE_REGISTRY_BLS_PUBKEY_BYTES as cK, NODE_REGISTRY_CAPABILITIES as cL, NODE_REGISTRY_CAPABILITY_MASK as cM, NODE_REGISTRY_CHALLENGE_EPOCH_WINDOW as cN, NODE_REGISTRY_CHARTER_COOLDOWN_EPOCHS as cO, NODE_REGISTRY_CLUSTER_CHARTER_BYTES as cP, NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS as cQ, NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS as cR, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES as cS, NODE_REGISTRY_CONSENSUS_POP_BYTES as cT, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES as cU, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES as cV, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES as cW, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS as cX, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS as cY, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES as cZ, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT as c_, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES as ca, MAX_NATIVE_RECEIPT_EVENTS as cb, ML_DSA_65_PUBLIC_KEY_LEN$1 as cc, ML_DSA_65_SIGNATURE_LEN$1 as cd, MULTISIG_ADDRESS_DERIVATION_DOMAIN as ce, MarketActionError as cf, type MarketTransactionPlan as cg, type MempoolSnapshot as ch, type MeshDecodedTx as ci, type MeshSignedTxResponse as cj, type MeshTxIntent as ck, type MeshUnsignedTxResponse as cl, type MetricsRangeResponse as cm, type MetricsRangeSample as cn, type MetricsRangeSeries as co, type MetricsRangeStatus as cp, type MrcAccountRecord as cq, type MrcMetadataRecord as cr, type MrcPolicyRecord as cs, type MrcPolicySpendRecord as ct, NAME_BASE_MULTIPLIER as cu, NAME_FALLBACK_FEE_UNIT_LYTHOSHI as cv, NAME_LABEL_MAX_LEN as cw, NAME_LABEL_MIN_LEN as cx, NAME_MAX_LEN as cy, NAME_REGISTRY_SELECTORS as cz, type NativeEventFilter as d, type NativeMarketStateFilterParamValue as d$, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN as d0, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN_V2 as d1, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT as d2, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD as d3, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES as d4, NODE_REGISTRY_MAX_MERKLE_PROOF_DEPTH as d5, NODE_REGISTRY_MERKLE_INNER_DOMAIN as d6, NODE_REGISTRY_MERKLE_LEAF_DOMAIN as d7, NODE_REGISTRY_MIN_ARCHIVE_LEAF_COUNT as d8, NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES as d9, type NativeAgentAvailabilityStateRecord as dA, type NativeAgentConsentStateRecord as dB, type NativeAgentEscrowStateRecord as dC, type NativeAgentIssuerStateRecord as dD, type NativeAgentPolicySpendStateRecord as dE, type NativeAgentPolicyStateRecord as dF, type NativeAgentReputationReviewStateRecord as dG, type NativeAgentServiceStateRecord as dH, type NativeAgentStateFilterParamValue as dI, type NativeAgentStateResponseFilters as dJ, type NativeAgentStateSource as dK, type NativeCallForwarderArtifact as dL, type NativeCollectionRoyaltyStateRecord as dM, type NativeEventConsumer as dN, type NativeEventProjection as dO, type NativeEventsResponseFilters as dP, type NativeEventsSource as dQ, type NativeMarketAddressInput as dR, type NativeMarketAddressKind as dS, type NativeMarketForwarderInput as dT, type NativeMarketModuleCallEnvelope as dU, type NativeMarketModuleContractCall as dV, type NativeMarketOrderBookDelta as dW, type NativeMarketOrderBookDeltasResponseFilters as dX, type NativeMarketOrderBookDeltasSource as dY, type NativeMarketOrderBookStreamAction as dZ, type NativeMarketOrderBookStreamPayload as d_, NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES as da, NODE_REGISTRY_OPERATOR_SEAL_EK_BYTES as db, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID as dc, NODE_REGISTRY_PUBLIC_SERVICE_MASK as dd, NODE_REGISTRY_SELECTORS as de, NODE_REGISTRY_TAG_ARCHIVE_CHALLENGE as df, NODE_REGISTRY_TAG_SERVICE_SCORE as dg, NODE_REGISTRY_TAG_TREASURY as dh, NODE_REGISTRY_UPDATE_CHARTER_MESSAGE_DOMAIN as di, NODE_REGISTRY_UPDATE_CHARTER_THRESHOLD as dj, NO_EVM_ARCHIVE_PROOF_SCHEMA as dk, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as dl, NO_EVM_FINALITY_EVIDENCE_SCHEMA as dm, NO_EVM_FINALITY_EVIDENCE_SOURCE as dn, NO_EVM_RECEIPTS_ROOT_DOMAIN as dp, NO_EVM_RECEIPT_CODEC as dq, NO_EVM_RECEIPT_PROOF_SCHEMA as dr, NO_EVM_RECEIPT_PROOF_TYPE as ds, NO_EVM_RECEIPT_ROOT_ALGORITHM as dt, type NameCategory as du, type NameOfResponse as dv, type NameRegistrationQuote as dw, NameRegistryError as dx, type NativeAgentArbiterStateRecord as dy, type NativeAgentAttestationStateRecord as dz, type TypedNativeReceiptEvent as e, type OracleWriters as e$, type NativeMarketStateResponseFilters as e0, type NativeMarketStateSource as e1, type NativeModuleForwarderDescriptor as e2, type NativeMrcPolicyProjection as e3, type NativeNftAssetStandard as e4, type NativeNftListingKind as e5, type NativeNftListingStateRecord as e6, type NativeReceiptCounters as e7, type NativeReceiptEvent as e8, type NativeReceiptSource as e9, type NoEvmReceiptTrustedSigner as eA, type NoEvmRoundFinalityVerification as eB, type NodeHostingClass as eC, NodeRegistryError as eD, OPERATOR_ROUTER_EVENT_SIGS as eE, OPERATOR_ROUTER_SELECTORS as eF, OPERATOR_ROUTER_SIGS as eG, ORACLE_EVENT_SIGS as eH, type OperatorAuthorityResponse as eI, type OperatorFeeChargedEvent as eJ, type OperatorFeeConfig as eK, type OperatorFeeQuote as eL, type OperatorInfoResponse as eM, type OperatorNetworkMetadata as eN, type OperatorNetworkMetadataView as eO, type OperatorRiskResponse as eP, type OperatorRouterConfig as eQ, type OperatorSigningActivityResponse as eR, type OperatorSigningEntry as eS, type OperatorSurfaceCapability as eT, type OperatorSurfaceStatus as eU, type OracleEvent as eV, OracleEventError as eW, type OracleFeedConfig as eX, type OracleLatestPrice as eY, type OracleSignerRow as eZ, type OracleSignersResponse as e_, type NativeSpotMarketStateRecord as ea, type NativeSpotOrderStateRecord as eb, type NetworkClientOptions as ec, type NetworkSlug as ed, type NoEvmArchiveCoveringSnapshot as ee, type NoEvmArchiveProof as ef, type NoEvmArchiveSignatureVerification as eg, type NoEvmArchiveSignatureVerificationIssue as eh, type NoEvmArchiveSignatureVerificationIssueCode as ei, type NoEvmArchiveTrustedSigner as ej, type NoEvmBlockBlsFinalityVerification as ek, type NoEvmBlockRoundFinalityVerification as el, type NoEvmBlsFinalityVerification as em, type NoEvmFinalityBlockReference as en, type NoEvmFinalityCertificate as eo, type NoEvmFinalityEvidence as ep, type NoEvmReceiptFinalityTrustPolicy as eq, type NoEvmReceiptProof as er, NoEvmReceiptProofError as es, type NoEvmReceiptProofErrorCode as et, type NoEvmReceiptProofVerification as eu, type NoEvmReceiptTrustIssue as ev, type NoEvmReceiptTrustIssueCode as ew, type NoEvmReceiptTrustPolicy as ex, type NoEvmReceiptTrustVerification as ey, type NoEvmReceiptTrustedBlsSigner as ez, type NativeEventsFilter as f, type SpendingPolicyArgs as f$, type P2pSeed as f0, PENDING_CHANGE_KIND_CODES as f1, PROVER_MARKET_ADDRESS as f2, PROVER_MARKET_BID_DOMAIN as f3, PROVER_MARKET_EVENT_SIGS as f4, PROVER_MARKET_REQUEST_DOMAIN as f5, PROVER_MARKET_SELECTORS as f6, PROVER_MARKET_SUBMIT_DOMAIN as f7, PROVER_SLASH_REASON_BAD_PROOF as f8, PROVER_SLASH_REASON_NON_DELIVERY as f9, type ReceiptProofTrustArchivePolicy as fA, type ReceiptProofTrustArchiveSigner as fB, type ReceiptProofTrustFinalityPolicy as fC, type ReceiptProofTrustFinalitySigner as fD, type ReceiptProofTrustPolicy as fE, type RedemptionQueueTicket as fF, type RegistryRecord as fG, type ReportServiceProbeCalldataArgs as fH, type ReportServiceProbeRequest as fI, type ReportServiceProbeResponse as fJ, type RequestClusterJoinCalldataArgs as fK, type ResolveNameResponse as fL, type RichListHolder as fM, type RichListResponse as fN, type RoundCertificateResponse as fO, type RoundInfo as fP, type RpcClientOptions as fQ, type RpcEndpoint as fR, type RuntimeProvenanceResponse as fS, SERVES_GPU_PROVE as fT, SERVICE_PROBE_STATUS as fU, SET_POLICY_CLAIM_DOMAIN_TAG as fV, SPENDING_POLICY_SELECTORS as fW, type SearchHit as fX, type ServiceProbeStatusLabel as fY, type SetOperatorDisplayCalldataArgs as fZ, type SigningEntryStatus as f_, type ParsedName as fa, type PeerSummary as fb, type PeerSummaryAggregate as fc, type PendingChangeKind as fd, type PendingCharterView as fe, type PendingRewardsRow as ff, type PendingTxSummary as fg, type PlaceLimitOrderViaArgs as fh, type PlaceLimitOrderViaPlan as fi, type PlaceSpotLimitOrderArgs as fj, type PlaceSpotMarketOrderArgs as fk, type PlaceSpotMarketOrderExArgs as fl, type PrecompileCatalogueResponse as fm, type PrecompileDescriptor as fn, type ProofRequestRow as fo, type ProofRequestView as fp, type ProverBidView as fq, type ProverBidsResponse as fr, ProverMarketError as fs, type ProverMarketState as ft, type ProverMarketStatusResponse as fu, type PublishOperatorSealKeyCalldataArgs as fv, type Quantity as fw, type QuoteLiquidity as fx, RESERVED_ADDRESS_HRPS as fy, type RankedBridgeRoute as fz, type NativeEventsResponse as g, buildNativeNftSweepExpiredListingsModuleCall as g$, SpendingPolicyError as g0, type SpendingPolicyTimeWindow as g1, type SpendingPolicyView as g2, type SpotLimitOrderSide as g3, type SpotMarketOrderMode as g4, type StorageProofBatch as g5, type SubmitPendingChangeCalldataArgs as g6, type SwapIntentStatus as g7, type SyncStatus as g8, TESTNET_69420 as g9, archiveMerkleInnerHash as gA, archiveMerkleLeafHash as gB, assertNativeMarketOrderBookStreamPayload as gC, assessBridgeRoute as gD, bech32ToAddress as gE, bech32ToAddressBytes as gF, bidSighash as gG, bridgeAddressHex as gH, bridgeDrainRemaining as gI, bridgeQuoteSubmitReadiness as gJ, bridgeRoutesReadiness as gK, bridgeTransferCandidates as gL, buildBridgeRouteCatalogue as gM, buildCancelSpotOrderPlan as gN, buildNativeCallForwarderArtifact as gO, buildNativeMarketModuleCallEnvelope as gP, buildNativeNftBuyListingForwarderInput as gQ, buildNativeNftBuyListingModuleCall as gR, buildNativeNftCancelListingForwarderInput as gS, buildNativeNftCancelListingModuleCall as gT, buildNativeNftCreateListingForwarderInput as gU, buildNativeNftCreateListingModuleCall as gV, buildNativeNftPlaceAuctionBidForwarderInput as gW, buildNativeNftPlaceAuctionBidModuleCall as gX, buildNativeNftSettleAuctionForwarderInput as gY, buildNativeNftSettleAuctionModuleCall as gZ, buildNativeNftSweepExpiredListingsForwarderInput as g_, type TokenBalanceMrcIdentity as ga, type TokenBalanceRecord as gb, type TokenBalanceWithMetadata as gc, type TotalBurnedResponse as gd, type TpmAttestationResponse as ge, type TransactionReceipt as gf, type TransactionView as gg, type TxConfirmations as gh, type TxFeedReceipt as gi, type TxFeedTransaction as gj, type TxStatusFoundResponse as gk, type TxStatusNotFoundResponse as gl, type TxStatusResponse as gm, type UpcomingDutiesResponse as gn, type UpcomingDutyMap as go, type UpdateCharterCalldataArgs as gp, type UserAddressInput as gq, V1_BRIDGE_ALLOWED_FEE_TOKEN as gr, V1_BRIDGE_ALLOWED_PROTOCOL as gs, type VertexAtRound as gt, type VerticesAtRoundResponse as gu, type VoteClusterAdmitCalldataArgs as gv, addressBytesToHex as gw, addressToBech32 as gx, addressToTypedBech32 as gy, allowRootFor as gz, type NativeAgentStateFilter as h, encodeCreateRequestCanonical as h$, buildNativeSpotCancelOrderForwarderInput as h0, buildNativeSpotCancelOrderModuleCall as h1, buildNativeSpotCreateMarketForwarderInput as h2, buildNativeSpotCreateMarketModuleCall as h3, buildNativeSpotLimitOrderForwarderInput as h4, buildNativeSpotLimitOrderModuleCall as h5, buildNativeSpotSettleLimitOrderForwarderInput as h6, buildNativeSpotSettleLimitOrderModuleCall as h7, buildNativeSpotSettleRoutedLimitOrderForwarderInput as h8, buildNativeSpotSettleRoutedLimitOrderModuleCall as h9, decodeOracleEvent as hA, decodePendingCharter as hB, decodeProbeAuthority as hC, decodeScoreServiceProbe as hD, decodeTimeWindow as hE, decodeTxFeedResponse as hF, denyRootFor as hG, deriveArchiveChallenge as hH, deriveClobMarketId as hI, deriveClusterAnchorAddress as hJ, deriveFeedId as hK, deriveNativeSpotMarketId as hL, deriveNativeSpotOrderId as hM, destinationRoot as hN, encodeAnswerArchiveChallengeCalldata as hO, encodeAttestDkgReshareCalldata as hP, encodeAttestServiceProbeCalldata as hQ, encodeBlockSelector as hR, encodeBridgeChallengeCalldata as hS, encodeBridgeClaimCalldata as hT, encodeCancelClusterJoinCalldata as hU, encodeCancelOrderCalldata as hV, encodeCancelPendingChangeCalldata as hW, encodeClaimPolicyByAddressCalldata as hX, encodeClusterCharter as hY, encodeCommitArchiveRootCalldata as hZ, encodeCreateRequestCalldata as h_, buildPlaceLimitOrderViaPlan as ha, buildPlaceSpotLimitOrderPlan as hb, buildPlaceSpotMarketOrderExPlan as hc, buildPlaceSpotMarketOrderPlan as hd, categoryRoot as he, clobAddressHex as hf, clusterApyPercent as hg, composeClaimBoundMessage as hh, computeNoEvmDacFinalityMessage as hi, computeNoEvmLeaderFinalityMessage as hj, computeNoEvmReceiptsRoot as hk, computeNoEvmRoundFinalityMessage as hl, computeNoEvmTargetReceiptHash as hm, computeQuoteLiquidity as hn, consumeNativeEvents as ho, decodeClusterCharter as hp, decodeClusterDiversity as hq, decodeClusterFormedEvent as hr, decodeClusterJoinRequest as hs, decodeNativeAgentStateResponse as ht, decodeNativeMarketOrderBookDeltasResponse as hu, decodeNativeReceiptResponse as hv, decodeNoEvmReceiptTranscript as hw, decodeOperatorFeeChargedEvent as hx, decodeOperatorNetworkMetadata as hy, decodeOperatorSealKey as hz, type NativeAgentStateResponse as i, isBridgeFinalityZeroRevert as i$, encodeDisableCalldata as i0, encodeEnableCalldata as i1, encodeExpireClusterJoinCalldata as i2, encodeFormClusterCalldata as i3, encodeFormClusterV2Calldata as i4, encodeGetClusterJoinRequestCalldata as i5, encodeGetOperatorSealKeyCalldata as i6, encodeGetPendingCharterCalldata as i7, encodeGetProbeAuthorityCalldata as i8, encodeLockBridgeConfigCalldata as i9, encodeSetBridgeRouteFinalityCalldata as iA, encodeSetLotSizeCalldata as iB, encodeSetMinNotionalCalldata as iC, encodeSetOperatorDisplayCalldata as iD, encodeSetPolicyCalldata as iE, encodeSetPolicyClaimCalldata as iF, encodeSetProbeAuthorityCalldata as iG, encodeSetTickSizeCalldata as iH, encodeSubmitBridgeProofCalldata as iI, encodeSubmitPendingChangeCalldata as iJ, encodeUpdateCharterCalldata as iK, encodeVoteClusterAdmitCalldata as iL, exportBridgeRouteCatalogueJson as iM, fetchChainInfoLatest as iN, fetchChainRegistryLatest as iO, formClusterMessage as iP, formClusterMessageHex as iQ, formClusterMessageV2 as iR, formClusterMessageV2Hex as iS, formatOraclePrice as iT, getChainInfo as iU, getNoEvmReceiptTrustPolicy as iV, getP2pSeeds as iW, getRpcEndpoints as iX, hexToAddressBytes as iY, isBridgeAdminLockedRevert as iZ, isBridgeCooldownZeroRevert as i_, encodeNameAcceptTransferCall as ia, encodeNameProposeTransferCall as ib, encodeNameRegisterCall as ic, encodeNativeMarketModuleForwarderInput as id, encodeNativeNftBuyListingCall as ie, encodeNativeNftCancelListingCall as ig, encodeNativeNftCreateListingCall as ih, encodeNativeNftPlaceAuctionBidCall as ii, encodeNativeNftSettleAuctionCall as ij, encodeNativeNftSweepExpiredListingsCall as ik, encodeNativeSpotCancelOrderCall as il, encodeNativeSpotCreateMarketCall as im, encodeNativeSpotLimitOrderCall as io, encodeNativeSpotSettleLimitOrderCall as ip, encodeNativeSpotSettleRoutedLimitOrderCall as iq, encodePlaceLimitOrderCalldata as ir, encodePlaceLimitOrderViaCalldata as is, encodePlaceMarketOrderCalldata as it, encodePlaceMarketOrderExCalldata as iu, encodePublishOperatorSealKeyCalldata as iv, encodeRecoverOperatorNodeCalldata as iw, encodeReportServiceProbeCalldata as ix, encodeRequestClusterJoinCalldata as iy, encodeSetBridgeResumeCooldownCalldata as iz, type NativeMarketStateFilter as j, verifyNoEvmFinalityEvidenceMultisig as j$, isBridgeResumeCooldownActiveRevert as j0, isConcreteServiceProbeStatus as j1, isNativeDecodedEvent as j2, isNativeMarketOrderBookStreamPayload as j3, isSinglePublicServiceProbeMask as j4, isValidNodeRegistryCapabilities as j5, isValidPublicServiceProbeMask as j6, nameLengthModifierX10 as j7, nameRegistrationCost as j8, nameRegistryAddressHex as j9, parseQuantityBig as jA, protocolNonceForEpoch as jB, proverMarketStateFromByte as jC, quoteOperatorFee as jD, rankBridgeRoutes as jE, rankMarketsByVolume as jF, requestSighash as jG, requireTypedAddress as jH, selectBridgeTransferRoute as jI, serviceMaskToBitIndex as jJ, serviceProbeStatusLabel as jK, setDestinationRoot as jL, slotArchiveChallengePass as jM, slotClusterServiceScore as jN, slotEpochChallengeSeed as jO, slotProbeAuthority as jP, slotScoreServiceProbe as jQ, spendingPolicyAddressHex as jR, submitSighash as jS, typedBech32ToAddress as jT, updateCharterMessage as jU, updateCharterMessageHex as jV, validateAddress as jW, validateBridgeRouteCatalogue as jX, verifyNoEvmArchiveProofSignatures as jY, verifyNoEvmBlockFinalityEvidenceMultisig as jZ, verifyNoEvmBlockFinalityEvidenceThreshold as j_, nativeAgentStateFilterParams as ja, nativeEventMatches as jb, nativeEventsFilterParams as jc, nativeEventsFromHistory as jd, nativeEventsFromReceipt as je, nativeMarketEventFilter as jf, nativeMarketEventsFromHistory as jg, nativeMarketEventsFromReceipt as jh, nativeMarketStateFilterParams as ji, noEvmReceiptTrustPolicyFromChainInfo as jj, nodeHostingClassFromByte as jk, nodeHostingClassToByte as jl, nodeRegistryAddressHex as jm, normalizeAddressHex as jn, normalizeBridgeRouteCatalogue as jo, normalizePendingChangeKind as jp, oracleAddressHex as jq, oraclePriceToNumber as jr, packTimeWindow as js, parseAddress as jt, parseBridgeRouteCatalogueJson as ju, parseChainRegistryToml as jv, parseDkgResharePublicKeys as jw, parseNameCategory as jx, parseNativeDecodedEvent as jy, parseQuantity as jz, type NativeMarketStateResponse as k, sealTransaction as k$, verifyNoEvmFinalityEvidenceThreshold as k0, verifyNoEvmReceiptProof as k1, verifyNoEvmReceiptProofTrust as k2, ADDRESS_DERIVATION_DOMAIN as k3, CLUSTER_MLKEM_SHAMIR as k4, CLUSTER_MLKEM_SHAMIR_ALGO as k5, type ClusterSealKeyEntryInput as k6, DKG_AEAD_TAG_LEN as k7, DKG_NONCE_LEN as k8, type DecryptHint as k9, SEAL_SHARE_LEN as kA, SEAL_TAG_LEN as kB, STANDARD_ALGO_NUMBER_ML_DSA_65 as kC, type SealRandomSource as kD, type SealRecipient as kE, type SealedSubmission as kF, bincodeDecryptHint as kG, bincodeEncryptedEnvelope as kH, bincodeNonceAad as kI, bincodeSignedTransaction as kJ, buildEncryptedEnvelope as kK, buildEncryptedSubmission as kL, buildPlaintextSubmission as kM, cryptoRandomSource as kN, encodeMlDsa65Opaque as kO, encodeSealEnvelope as kP, encodeTransactionForHash as kQ, encryptInnerTx as kR, fetchEncryptionKey as kS, generateOperatorSealKeypair as kT, getClusterSealKeys as kU, mlDsa65AddressBytes as kV, mlDsa65AddressFromPublicKey as kW, outerSigDigest as kX, parseClusterSealKeys as kY, sealRosterHash as kZ, sealToCluster as k_, ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE as ka, ENUM_VARIANT_INDEX_ML_DSA_65 as kb, type EncryptedEnvelope as kc, type EncryptedSubmission as kd, type JsonRpcCallClient as ke, type LythiumSealEnvelope as kf, ML_DSA_65_PUBLIC_KEY_LEN as kg, ML_DSA_65_SEED_LEN as kh, ML_DSA_65_SIGNATURE_LEN as ki, ML_DSA_65_SIGNING_KEY_LEN as kj, ML_KEM_768_CIPHERTEXT_LEN as kk, ML_KEM_768_ENCAPSULATION_KEY_LEN as kl, ML_KEM_768_SHARED_SECRET_LEN as km, type NativeTxExtension as kn, type NativeTxExtensionDescriptor as ko, type NativeTxExtensionLike as kp, type NonceAad as kq, type OperatorSealKeypair as kr, type PlaintextSubmission as ks, SEAL_COMMIT_LEN as kt, SEAL_DK_LEN as ku, SEAL_EK_LEN as kv, SEAL_KEM_CT_LEN as kw, SEAL_KEM_SEED_LEN as kx, SEAL_KEY_LEN as ky, SEAL_NONCE_LEN as kz, type NativeMarketOrderBookDeltasRequest as l, submitEncryptedEnvelope as l0, submitPlaintextTransaction as l1, submitSealedTransaction as l2, submitTransactionWithPrivacy as l3, type NativeMarketOrderBookDeltasResponse as m, type AddressProfileResponse as n, type AddressFlowResponse as o, type RedemptionQueueResponse as p, type MrcAccountResponse as q, type MrcHoldersResponse as r, type BridgeRoutesRequest as s, type BridgeRoutesResponse as t, type ServiceProbeResponse as u, type ClobMarketsResponse as v, type ClobMarketResponse as w, type ClobTradesResponse as x, type ClobOhlcResponse as y, type ClobOrderBookResponse as z };
|