@monolythium/core-sdk 0.4.15 → 0.4.17

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.
@@ -2517,6 +2517,32 @@ declare const NODE_REGISTRY_SELECTORS: {
2517
2517
  readonly publishOperatorSealKey: string;
2518
2518
  /** `getOperatorSealKey(bytes32)` view — returns the operator's published LythiumSeal EK. */
2519
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;
2520
2546
  };
2521
2547
  /** Cluster-member reference width used by genesis and formation rosters. */
2522
2548
  declare const NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES = 48;
@@ -2557,6 +2583,118 @@ declare const NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS = 2000;
2557
2583
  declare const NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS = 10000;
2558
2584
  declare const NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES = 128;
2559
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;
2674
+ /**
2675
+ * Storage-slot tag byte for the per-cluster ACTIVE economics charter family
2676
+ * (under `0x1005`). Mirrors mono-core
2677
+ * `protocore_node_registry::cluster_anchor::TAG_CLUSTER_CHARTER`. The active
2678
+ * charter is written by the V2 `formCluster(bytes,bytes,bytes,bytes)` path
2679
+ * (and amended via `updateCharter` once the cooldown lands) and read by the
2680
+ * reward engine each block. Two sub-kind slots per cluster — see
2681
+ * {@link slotClusterCharterDelegator} / {@link slotClusterCharterMembers}.
2682
+ */
2683
+ declare const NODE_REGISTRY_TAG_CLUSTER_CHARTER = 49;
2684
+ /**
2685
+ * Charter sub-kind `0x00` — the presence + delegator-share slot. The stored
2686
+ * value is a right-aligned `u64` equal to `delegatorShareBps + 1`; a zero
2687
+ * word means NO active charter (genesis clusters / 3-arg formCluster, which
2688
+ * fall back to the legacy default split). Mirrors
2689
+ * `SUBKIND_CHARTER_DELEGATOR_BPS`.
2690
+ */
2691
+ declare const NODE_REGISTRY_SUBKIND_CHARTER_DELEGATOR_BPS = 0;
2692
+ /**
2693
+ * Charter sub-kind `0x01` — the packed member-shares slot. The stored value
2694
+ * is a single 32-byte word holding the 10×u16 BE member shares in its low
2695
+ * 20 bytes (offset 12..32). Mirrors `SUBKIND_CHARTER_MEMBER_SHARES`.
2696
+ */
2697
+ declare const NODE_REGISTRY_SUBKIND_CHARTER_MEMBER_SHARES = 1;
2560
2698
  type PendingChangeKind = "add" | "remove" | "rotate";
2561
2699
  declare const PENDING_CHANGE_KIND_CODES: Record<PendingChangeKind, number>;
2562
2700
  /** Canonical `ClusterFormed(uint32,uint64,address,bytes)` event topic0 (MB-5). */
@@ -2656,6 +2794,117 @@ interface ReportServiceProbeCalldataArgs {
2656
2794
  latencyMs: number;
2657
2795
  probeDigest: string | Uint8Array | readonly number[];
2658
2796
  }
2797
+ /** Args for `updateCharter(uint32,bytes,bytes,bytes)` (Component H). */
2798
+ interface UpdateCharterCalldataArgs {
2799
+ clusterId: bigint | number | string;
2800
+ /** The 30-byte charter wire payload (see `encodeClusterCharter`). */
2801
+ charter: string | Uint8Array | readonly number[];
2802
+ /**
2803
+ * The consenting operators' 1952-byte ML-DSA-65 consensus pubkeys, in
2804
+ * the same order as `signatures`. `7..=10` keys. May be supplied as a
2805
+ * single concatenated buffer or an array of per-signer keys.
2806
+ */
2807
+ signerPubkeys: string | Uint8Array | readonly number[] | readonly (string | Uint8Array | readonly number[])[];
2808
+ /**
2809
+ * The 3309-byte ML-DSA-65 signatures over `updateCharterMessage`, 1:1
2810
+ * with `signerPubkeys`. May be a concatenated buffer or an array.
2811
+ */
2812
+ signatures: string | Uint8Array | readonly number[] | readonly (string | Uint8Array | readonly number[])[];
2813
+ }
2814
+ /**
2815
+ * Decoded `getPendingCharter(uint32)` return (Component H). Zeroed /
2816
+ * `present=false` when no amendment is pending.
2817
+ */
2818
+ interface PendingCharterView {
2819
+ /** `true` iff a pending amendment is posted for the cluster. */
2820
+ present: boolean;
2821
+ /** Proposed delegator share of the cluster pot in basis points. */
2822
+ delegatorShareBps: number;
2823
+ /** Epoch at/after which the pending charter takes effect (the cooldown landing). */
2824
+ effectiveEpoch: bigint;
2825
+ /** Count of recorded active signers that consented to the pending charter. */
2826
+ signerCount: number;
2827
+ /**
2828
+ * The proposed per-member operator-pot shares in basis points,
2829
+ * member-declaration order (active 0..7, then standby 7..10). Empty when
2830
+ * `present` is `false`.
2831
+ */
2832
+ memberShareBps: readonly number[];
2833
+ }
2834
+ /**
2835
+ * Decoded ACTIVE cluster charter (Law §6.8), reconstructed from the two
2836
+ * `TAG_CLUSTER_CHARTER` (`0x31`) storage words SLOADed against the
2837
+ * node-registry account `0x1005`. `present=false` (with zeroed shares) when
2838
+ * the cluster has no active charter — genesis clusters and clusters formed
2839
+ * through the 3-arg `formCluster` selector, which fall back to the legacy
2840
+ * default split. The active charter carries no on-chain effective epoch (it
2841
+ * is the currently-effective record); the cooldown / `effectiveEpoch` lives
2842
+ * only on the {@link PendingCharterView}.
2843
+ */
2844
+ interface ActiveCharterView {
2845
+ /** `true` iff the cluster has an active on-chain charter record. */
2846
+ present: boolean;
2847
+ /** The active delegator share of the cluster pot in basis points. */
2848
+ delegatorShareBps: number;
2849
+ /**
2850
+ * The active per-member operator-pot shares in basis points,
2851
+ * member-declaration order (active 0..7, then standby 7..10). Empty when
2852
+ * `present` is `false`.
2853
+ */
2854
+ memberShareBps: readonly number[];
2855
+ }
2856
+ /** Args for `commitArchiveRoot(bytes32,uint16,bytes32,uint64)` (Component B). */
2857
+ interface CommitArchiveRootCalldataArgs {
2858
+ peerId: string | Uint8Array | readonly number[];
2859
+ shardIndex: number;
2860
+ /** The per-shard merkle root over the archived shard data (32 bytes). */
2861
+ shardRoot: string | Uint8Array | readonly number[];
2862
+ /** The committed leaf count (tree width); must be non-zero. */
2863
+ leafCount: bigint | number | string;
2864
+ }
2865
+ /**
2866
+ * Args for `answerArchiveChallenge(bytes32,uint16,uint64,bytes,bytes32[])`
2867
+ * (Component B).
2868
+ *
2869
+ * BLOCKER-1 (mono-core `service-rewards` d2ee4548): the caller-supplied
2870
+ * `roundCertDigest` and `nonce` were REMOVED. The challenge seed is now the
2871
+ * protocol-pinned per-epoch quorum-certificate digest (sloaded from
2872
+ * {@link slotEpochChallengeSeed}) and the nonce is derived from it
2873
+ * ({@link protocolNonceForEpoch}) — the operator can no longer choose the
2874
+ * challenge coordinate. Off-chain tooling derives the challenged leaf via
2875
+ * {@link deriveArchiveChallenge}, then submits the revealed leaf + proof.
2876
+ */
2877
+ interface AnswerArchiveChallengeCalldataArgs {
2878
+ peerId: string | Uint8Array | readonly number[];
2879
+ shardIndex: number;
2880
+ epoch: bigint | number | string;
2881
+ /** The revealed challenged leaf bytes. */
2882
+ leaf: string | Uint8Array | readonly number[];
2883
+ /** The bottom-up merkle authentication path (each element 32 bytes). */
2884
+ proof: readonly (string | Uint8Array | readonly number[])[];
2885
+ }
2886
+ /** A fully-deterministic archive serve-challenge (mirror of mono-core `ArchiveChallenge`). */
2887
+ interface ArchiveChallenge {
2888
+ /** The 32-byte op-hash of the operator under challenge (`0x` hex). */
2889
+ opHash: string;
2890
+ /** The shard whose committed root the answer must verify against. */
2891
+ shardIndex: number;
2892
+ /** The leaf the operator must reveal + prove, reduced modulo the committed leaf count. */
2893
+ leafIndex: bigint;
2894
+ /** The full 32-byte challenge seed (`0x` hex). */
2895
+ seed: string;
2896
+ }
2897
+ /** Args for `attestServiceProbe(bytes32,uint32,uint8,uint64)` (Component C). */
2898
+ interface AttestServiceProbeCalldataArgs {
2899
+ /** The operator's canonical op-hash (`BLAKE3(consensusPubkey)[..32]`, 32 bytes). */
2900
+ opHash: string | Uint8Array | readonly number[];
2901
+ /** Bitmask of public services to attest (must be a valid public-service mask). */
2902
+ serviceMask: number;
2903
+ /** Concrete probe status (`REACHABLE` / `DEGRADED` / `UNREACHABLE`). */
2904
+ status: number;
2905
+ /** Attestation epoch stamped into the score-domain slot. */
2906
+ epoch: bigint | number | string;
2907
+ }
2659
2908
  declare class NodeRegistryError extends Error {
2660
2909
  constructor(message: string);
2661
2910
  }
@@ -2716,6 +2965,235 @@ declare function formClusterMessageV2Hex(activePubkeys: string | Uint8Array | re
2716
2965
  * (NOT the V1 digest).
2717
2966
  */
2718
2967
  declare function encodeFormClusterV2Calldata(args: FormClusterV2CalldataArgs): string;
2968
+ /**
2969
+ * Decode the 30-byte V2 charter wire payload into its terms.
2970
+ *
2971
+ * Inverse of {@link encodeClusterCharter}; applies the same structural
2972
+ * validation as the on-chain `decode_cluster_charter` (length, share sum,
2973
+ * delegator floor band). Used by {@link decodePendingCharter} and any UI
2974
+ * that renders an active charter read from chain.
2975
+ */
2976
+ declare function decodeClusterCharter(charter: string | Uint8Array | readonly number[]): ClusterCharterArgs;
2977
+ /**
2978
+ * Build the `updateCharter` consent digest every signer must sign
2979
+ * (Component H). Binds the amendment to the exact `clusterId` and the
2980
+ * full 30-byte charter wire payload under the
2981
+ * `..._CLUSTER_UPDATE_CHARTER_V1\0` domain:
2982
+ *
2983
+ * `BLAKE3(DOMAIN ‖ clusterId_be32 ‖ UPDATE_CHARTER_THRESHOLD_be16 ‖
2984
+ * charter.len_be32 ‖ charter)`.
2985
+ *
2986
+ * Byte-identical to mono-core's `cluster_form::update_charter_message` —
2987
+ * this is the value Monarch's signing flow hashes. There is no
2988
+ * blind-signing surface: the Rust derivation is the SSOT.
2989
+ */
2990
+ declare function updateCharterMessage(clusterId: bigint | number | string, charter: string | Uint8Array | readonly number[]): Uint8Array;
2991
+ declare function updateCharterMessageHex(clusterId: bigint | number | string, charter: string | Uint8Array | readonly number[]): string;
2992
+ /**
2993
+ * Encode `updateCharter(uint32,bytes,bytes,bytes)` calldata (Component H).
2994
+ *
2995
+ * Head: `clusterId` word + three dynamic-`bytes` offset words. Tails (in
2996
+ * order): the 30-byte charter, the concatenated 1952-byte signer pubkeys,
2997
+ * and the concatenated 3309-byte signatures. The signatures must verify
2998
+ * over {@link updateCharterMessage}. `signerPubkeys`/`signatures` accept
2999
+ * either a single concatenated buffer or an array of per-signer values
3000
+ * (`7..=10` entries, equal counts).
3001
+ */
3002
+ declare function encodeUpdateCharterCalldata(args: UpdateCharterCalldataArgs): string;
3003
+ /** Encode `getPendingCharter(uint32)` view calldata (Component H). */
3004
+ declare function encodeGetPendingCharterCalldata(clusterId: bigint | number | string): string;
3005
+ /**
3006
+ * Decode a `getPendingCharter(uint32)` return tuple (Component H).
3007
+ *
3008
+ * Wire return: head of 5 words `(bool present, uint16 delegatorShareBps,
3009
+ * uint64 effectiveEpoch, uint16 signerCount, uint64 bytesOffset)`, then a
3010
+ * `bytes` tail `(length word + one 32-byte packed-shares word)`. The
3011
+ * packed-shares word holds the 10×u16 BE member shares in its low 20
3012
+ * bytes (offset 12..32) — the same layout the on-chain encoder writes.
3013
+ */
3014
+ declare function decodePendingCharter(returnData: string | Uint8Array | readonly number[]): PendingCharterView;
3015
+ /**
3016
+ * Encode `commitArchiveRoot(bytes32,uint16,bytes32,uint64)` calldata
3017
+ * (Component B). All four args are fixed-size — a flat 4-word head.
3018
+ *
3019
+ * BLOCKER-1: enforces the on-chain `MIN_ARCHIVE_LEAF_COUNT` floor
3020
+ * client-side — a `leafCount` below
3021
+ * {@link NODE_REGISTRY_MIN_ARCHIVE_LEAF_COUNT} is rejected here so a
3022
+ * doomed commit never burns a nonce (the chain rejects it with
3023
+ * `ArchiveCommitmentTooFewLeaves`).
3024
+ */
3025
+ declare function encodeCommitArchiveRootCalldata(args: CommitArchiveRootCalldataArgs): string;
3026
+ /**
3027
+ * Encode `answerArchiveChallenge(bytes32,uint16,uint64,bytes,bytes32[])`
3028
+ * calldata (Component B).
3029
+ *
3030
+ * BLOCKER-1 (mono-core `service-rewards` d2ee4548): the caller-supplied
3031
+ * `roundCertDigest` + `nonce` were removed. The challenge seed is the
3032
+ * protocol-pinned per-epoch quorum-certificate digest and the nonce is
3033
+ * derived from it on-chain, so the caller submits only `(peerId,
3034
+ * shardIndex, epoch, leaf, proof)`.
3035
+ *
3036
+ * Head: 5 words — three fixed args then the `bytes leaf` offset and the
3037
+ * `bytes32[] proof` offset. Tails: the leaf bytes, then the proof array
3038
+ * (length word + N × 32-byte sibling words).
3039
+ */
3040
+ declare function encodeAnswerArchiveChallengeCalldata(args: AnswerArchiveChallengeCalldataArgs): string;
3041
+ /**
3042
+ * Slot holding the protocol-issued archive challenge seed pinned for
3043
+ * `epoch` (Component B, BLOCKER-1). `keccak256(0x32 || epoch_be64 ||
3044
+ * 0x03)`. The stored 32-byte value is the quorum-certificate digest the
3045
+ * protocol pins at the epoch boundary; a zero word means no seed pinned
3046
+ * (the epoch is un-answerable / fail-closed). Mirrors mono-core
3047
+ * `archive_challenge::slot_epoch_challenge_seed`.
3048
+ *
3049
+ * No RPC method exists for this read yet — derive the slot key and SLOAD
3050
+ * it via `eth_getStorageAt` / `lyth_getStorageAt` against the node-registry
3051
+ * account `0x1005`, then feed the returned word into
3052
+ * {@link deriveArchiveChallenge}.
3053
+ */
3054
+ declare function slotEpochChallengeSeed(epoch: bigint | number | string): string;
3055
+ /**
3056
+ * Derive the protocol-issued challenge nonce for `epoch` from the pinned
3057
+ * challenge `seed` (Component B, BLOCKER-1). Mirrors mono-core
3058
+ * `archive_challenge::protocol_nonce_for_epoch`:
3059
+ *
3060
+ * `nonce = u64_be(BLAKE3(ARCHIVE_NONCE_DOMAIN ‖ epoch_be64 ‖ seed)[..8])`.
3061
+ *
3062
+ * The nonce is a pure function of the pinned (ungrindable) seed and the
3063
+ * epoch — there is exactly one valid `(epoch, nonce)` coordinate per epoch,
3064
+ * fixed by consensus state the operator does not control.
3065
+ */
3066
+ declare function protocolNonceForEpoch(seed: string | Uint8Array | readonly number[], epoch: bigint | number | string): bigint;
3067
+ /**
3068
+ * Derive the deterministic archive serve-challenge for `(opHash,
3069
+ * shardIndex, epoch)` against a committed `leafCount`, using the
3070
+ * ON-CHAIN protocol-pinned `seed` (Component B, BLOCKER-1). Mirrors
3071
+ * mono-core `archive_challenge::derive_challenge` with the protocol nonce
3072
+ * derived internally via {@link protocolNonceForEpoch}:
3073
+ *
3074
+ * `nonce = protocolNonceForEpoch(seed, epoch)`;
3075
+ * `challengeSeed = BLAKE3(ARCHIVE_CHALLENGE_DOMAIN ‖ seed ‖ opHash ‖
3076
+ * shardIndex_be16 ‖ epoch_be64 ‖ nonce_be64)`; the leaf index is the
3077
+ * challenge seed's first 8 bytes (BE u64) modulo `leafCount`.
3078
+ *
3079
+ * `seed` is NOT caller-chosen — it is the quorum-certificate digest the
3080
+ * protocol pins for `epoch`, read from {@link slotEpochChallengeSeed} via
3081
+ * `eth_getStorageAt`. Returns `null` when `leafCount === 0` (nothing
3082
+ * committed → nothing to challenge). Useful for off-chain tooling that
3083
+ * mirrors what an operator is about to be asked.
3084
+ */
3085
+ 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;
3086
+ /**
3087
+ * Hash one merkle leaf with Component B's domain separation:
3088
+ * `BLAKE3(0x00 || leaf)`. Mirrors mono-core `merkle_leaf_hash`.
3089
+ */
3090
+ declare function archiveMerkleLeafHash(leaf: string | Uint8Array | readonly number[]): Uint8Array;
3091
+ /**
3092
+ * Hash an inner merkle node with Component B's domain separation:
3093
+ * `BLAKE3(0x01 || left || right)`. Mirrors mono-core `merkle_inner_hash`.
3094
+ */
3095
+ declare function archiveMerkleInnerHash(left: string | Uint8Array | readonly number[], right: string | Uint8Array | readonly number[]): Uint8Array;
3096
+ /**
3097
+ * Encode `setProbeAuthority(address)` calldata (Component C,
3098
+ * foundation-multisig-gated). `address(0)` clears the dedicated authority
3099
+ * (attestation then authorises against the foundation multisig alone).
3100
+ */
3101
+ declare function encodeSetProbeAuthorityCalldata(probeAuthority: string | Uint8Array | readonly number[]): string;
3102
+ /** Encode `getProbeAuthority()` view calldata (Component C). */
3103
+ declare function encodeGetProbeAuthorityCalldata(): string;
3104
+ /**
3105
+ * Decode a `getProbeAuthority()` return word into a `0x`-prefixed 20-byte
3106
+ * address (Component C). The zero address means no dedicated authority is
3107
+ * configured (the foundation multisig is the sole attestor).
3108
+ */
3109
+ declare function decodeProbeAuthority(returnData: string | Uint8Array | readonly number[]): string;
3110
+ /**
3111
+ * Encode `attestServiceProbe(bytes32,uint32,uint8,uint64)` calldata
3112
+ * (Component C, probe-authority/foundation-gated). Writes the
3113
+ * score-domain attested status for every service bit in `serviceMask`,
3114
+ * keyed by `opHash` and stamped with `epoch`. A flat 4-word head.
3115
+ */
3116
+ declare function encodeAttestServiceProbeCalldata(args: AttestServiceProbeCalldataArgs): string;
3117
+ /**
3118
+ * Slot holding the settled per-cluster ServiceScore (Component A), read
3119
+ * each block by the reward path. `keccak256(0x24 || 0x00 ||
3120
+ * clusterId_be32)`. The value is a right-aligned `u64`; `0` ⇒ never
3121
+ * scored. Mirrors `protocore_service_score::slot_cluster_service_score`.
3122
+ */
3123
+ declare function slotClusterServiceScore(clusterId: bigint | number | string): string;
3124
+ /**
3125
+ * Slot holding the `(cluster, epoch)` archive-challenge pass flag
3126
+ * (Component B writes; Component A reads). `keccak256(0x24 || 0x01 ||
3127
+ * clusterId_be32 || epoch_be64)`. Mirrors
3128
+ * `protocore_service_score::slot_archive_challenge_pass` /
3129
+ * node-registry `slot_cluster_pass`.
3130
+ */
3131
+ declare function slotArchiveChallengePass(clusterId: bigint | number | string, epoch: bigint | number | string): string;
3132
+ /**
3133
+ * Slot holding the attested probe status for `(opHash, serviceBit)`
3134
+ * (Component C writes; Component A reads). `keccak256(0x24 || 0x02 ||
3135
+ * opHash || serviceBit)`. `serviceBit` is the BIT INDEX (`SERVES_RPC`=0,
3136
+ * `SERVES_INDEXER`=1, `SERVES_ARCHIVE`=3, …) — NOT the capability mask
3137
+ * value. The stored word packs `(epoch << 8) | status` (see
3138
+ * {@link decodeScoreServiceProbe}). Mirrors
3139
+ * `protocore_service_score::slot_service_probe_status` /
3140
+ * node-registry `slot_score_service_probe`.
3141
+ */
3142
+ declare function slotScoreServiceProbe(opHash: string | Uint8Array | readonly number[], serviceBit: number): string;
3143
+ /** The single bit index (`0..=15`) of a single-flag capability mask, or `null`. */
3144
+ declare function serviceMaskToBitIndex(mask: number): number | null;
3145
+ /**
3146
+ * Decode a `slotScoreServiceProbe` storage word — the packed
3147
+ * `(epoch << 8) | status` value. Returns the attestation epoch and the
3148
+ * status byte. A zero word means no attestation on file.
3149
+ */
3150
+ declare function decodeScoreServiceProbe(word: string | Uint8Array | readonly number[]): {
3151
+ epoch: bigint;
3152
+ status: number;
3153
+ };
3154
+ /**
3155
+ * Slot holding the rotatable probe-authority address (Component C).
3156
+ * `keccak256(TAG_TREASURY=0x1F || 32 zero bytes || 0x0A)`. Mirrors
3157
+ * node-registry `storage::slot_probe_authority`.
3158
+ */
3159
+ declare function slotProbeAuthority(): string;
3160
+ /**
3161
+ * Slot for one sub-kind of a cluster's ACTIVE charter record (Law §6.8).
3162
+ * `keccak256(0x31 || clusterId_be32 || subkind)`. Mirrors mono-core
3163
+ * `cluster_anchor::slot_cluster_charter`.
3164
+ *
3165
+ * No RPC method exists for the active charter — derive the slot key and
3166
+ * SLOAD it via `eth_getStorageAt` / `lyth_getStorageAt` against the
3167
+ * node-registry account `0x1005`, then feed both words into
3168
+ * {@link decodeActiveCharter}. See {@link slotClusterCharterDelegator} and
3169
+ * {@link slotClusterCharterMembers} for the two concrete sub-kinds.
3170
+ */
3171
+ declare function slotClusterCharter(clusterId: bigint | number | string, subkind: number): string;
3172
+ /**
3173
+ * Slot holding the active charter's presence + delegator share
3174
+ * (sub-kind `0x00`). The stored word is a right-aligned `u64` equal to
3175
+ * `delegatorShareBps + 1`; a zero word means NO active charter.
3176
+ */
3177
+ declare function slotClusterCharterDelegator(clusterId: bigint | number | string): string;
3178
+ /**
3179
+ * Slot holding the active charter's packed member shares (sub-kind `0x01`).
3180
+ * The stored word holds the 10×u16 BE member shares in its low 20 bytes
3181
+ * (offset 12..32).
3182
+ */
3183
+ declare function slotClusterCharterMembers(clusterId: bigint | number | string): string;
3184
+ /**
3185
+ * Decode the two ACTIVE-charter storage words into an {@link ActiveCharterView}.
3186
+ *
3187
+ * `delegatorWord` is the sub-kind `0x00` presence word
3188
+ * ({@link slotClusterCharterDelegator}); `membersWord` is the sub-kind
3189
+ * `0x01` packed-shares word ({@link slotClusterCharterMembers}). When the
3190
+ * presence word is zero the cluster has no active charter and `present` is
3191
+ * `false` (zeroed shares). Mirrors mono-core
3192
+ * `cluster_anchor::load_cluster_charter_*`: the presence word decodes as
3193
+ * `delegatorShareBps = word - 1` (saturating), and the members word packs
3194
+ * the 10×u16 BE shares at byte offset 12.
3195
+ */
3196
+ declare function decodeActiveCharter(delegatorWord: string | Uint8Array | readonly number[], membersWord: string | Uint8Array | readonly number[]): ActiveCharterView;
2719
3197
  /**
2720
3198
  * Decode CJ-1 `getClusterJoinRequest(uint32,bytes32)` return data.
2721
3199
  *
@@ -5793,6 +6271,35 @@ declare class RpcClient {
5793
6271
  lythGetSpendingPolicy(subAccount: string): Promise<SpendingPolicyView>;
5794
6272
  /** PF-6 — `lyth_getClusterDiversity`: diversity score + asn/geo/hosting breakdown. */
5795
6273
  lythGetClusterDiversity(clusterId: number): Promise<ClusterDiversityView>;
6274
+ /**
6275
+ * Component H — read a cluster's ACTIVE economics charter (Law §6.8).
6276
+ *
6277
+ * There is no `lyth_*` / view-selector for the active charter, so this
6278
+ * SLOADs the two `TAG_CLUSTER_CHARTER` (`0x31`) storage words from the
6279
+ * node-registry account `0x1005` via `eth_getStorageAt` and decodes them
6280
+ * with {@link decodeActiveCharter}. Returns `{ present: false }` (zeroed
6281
+ * shares) for genesis / 3-arg-formCluster clusters that never adopted a
6282
+ * charter. The active record carries no `effectiveEpoch` — that lives on
6283
+ * the pending amendment ({@link lythGetPendingCharter}).
6284
+ */
6285
+ lythGetClusterCharter(clusterId: number, block?: BlockSelector): Promise<ActiveCharterView>;
6286
+ /**
6287
+ * Component H — read a cluster's PENDING charter amendment (Law §6.8).
6288
+ *
6289
+ * Calls the `getPendingCharter(uint32)` view on the node-registry account
6290
+ * `0x1005` over `eth_call` and decodes the return with
6291
+ * {@link decodePendingCharter}. Returns `{ present: false }` when no
6292
+ * amendment is posted; otherwise carries the proposed shares plus the
6293
+ * `effectiveEpoch` at which the delegator-protective cooldown lands.
6294
+ */
6295
+ lythGetPendingCharter(clusterId: number, block?: BlockSelector): Promise<PendingCharterView>;
6296
+ /**
6297
+ * Component A — read a cluster's settled per-cluster ServiceScore (the
6298
+ * `u64` the reward path reads each block). SLOADs the `TAG_SERVICE_SCORE`
6299
+ * (`0x24`) score slot from `0x1005` via `eth_getStorageAt`; `0n` means the
6300
+ * cluster has never been scored.
6301
+ */
6302
+ lythGetClusterServiceScore(clusterId: number, block?: BlockSelector): Promise<bigint>;
5796
6303
  /**
5797
6304
  * PF-6 — `lyth_getOperatorNetworkMetadata`: ASN/geo/hosting-class/IP/PCR
5798
6305
  * for a peer. `operatorId` is the 32-byte operator/peer id as `0x…` hex
@@ -6550,4 +7057,4 @@ declare function submitTransactionWithPrivacy(args: {
6550
7057
  class?: MempoolClass;
6551
7058
  }): Promise<string>;
6552
7059
 
6553
- 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 Hex 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 ClusterCharterArgs as b7, type ClusterDelegatorsResponse as b8, type ClusterDirectoryEntryResponse as b9, type EncodeNativeNftBuyListingArgs as bA, type EncodeNativeNftCancelListingArgs as bB, type EncodeNativeNftCreateListingArgs as bC, type EncodeNativeNftPlaceAuctionBidArgs as bD, type EncodeNativeNftSettleAuctionArgs as bE, type EncodeNativeNftSweepExpiredListingsArgs as bF, type EncodeNativeSpotCancelOrderArgs as bG, type EncodeNativeSpotCreateMarketArgs as bH, type EncodeNativeSpotLimitOrderArgs as bI, type EncodeNativeSpotSettleLimitOrderArgs as bJ, type EncodeNativeSpotSettleRoutedLimitOrderArgs as bK, type EncryptionKeyResponse as bL, type EntityRatchetResponse as bM, type EthCallRequest as bN, type EthSendTransactionRequest as bO, type ExpireClusterJoinCalldataArgs as bP, type ExplorerEndpoint as bQ, FEED_ID_DOMAIN_TAG as bR, type FeeHistoryResponse as bS, type FormClusterCalldataArgs as bT, type FormClusterV2CalldataArgs as bU, type GapRange as bV, type GapRecord as bW, type GapRecordsResponse as bX, type GetClusterJoinRequestCalldataArgs as bY, type GetOperatorSealKeyCalldataArgs as bZ, type Hash as b_, type ClusterDirectoryPageResponse as ba, type ClusterDiversity as bb, type ClusterDiversityView as bc, type ClusterEntityResponse as bd, type ClusterFormedEvent as be, type ClusterJoinRequestStatus as bf, type ClusterMemberResponse as bg, type ClusterNameResponse as bh, type ClusterResignationRow as bi, type ClusterResignationsResponse as bj, type ClusterStatusResponse as bk, type CreateRequestCanonicalArgs as bl, DIVERSITY_SCORE_MAX as bm, type DagParent as bn, type DagParentsResponse as bo, type DagSyncStatus as bp, type DecodeTxExtension as bq, type DecodeTxLog as br, type DecodeTxPqAttestation as bs, type DecodeTxResponse as bt, type DelegationCapResponse as bu, type DelegationHistoryRecord as bv, type DelegationRow as bw, type DelegationsResponse as bx, type DutyAbsence as by, EMPTY_ROOT as bz, type NativeDecodedEvent as c, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID as c$, type IndexerStatus as c0, type JailStatusWindow as c1, type KeyRotationWindow as c2, type ListProofRequestsResponse as c3, type LythUpgradePlanStatus as c4, type LythUpgradeStatusResponse as c5, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES as c6, MAX_NATIVE_RECEIPT_EVENTS as c7, ML_DSA_65_PUBLIC_KEY_LEN$1 as c8, ML_DSA_65_SIGNATURE_LEN$1 as c9, NATIVE_MARKET_MODULE_ADDRESS as cA, NATIVE_MARKET_MODULE_ADDRESS_BYTES as cB, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as cC, NODE_REGISTRY_BLS_PUBKEY_BYTES as cD, NODE_REGISTRY_CAPABILITIES as cE, NODE_REGISTRY_CAPABILITY_MASK as cF, NODE_REGISTRY_CLUSTER_CHARTER_BYTES as cG, NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS as cH, NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS as cI, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES as cJ, NODE_REGISTRY_CONSENSUS_POP_BYTES as cK, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES as cL, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES as cM, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES as cN, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS as cO, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS as cP, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES as cQ, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT as cR, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT as cS, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN as cT, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN_V2 as cU, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT as cV, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD as cW, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES as cX, NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES as cY, NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES as cZ, NODE_REGISTRY_OPERATOR_SEAL_EK_BYTES as c_, MULTISIG_ADDRESS_DERIVATION_DOMAIN as ca, MarketActionError as cb, type MarketTransactionPlan as cc, type MempoolSnapshot as cd, type MeshDecodedTx as ce, type MeshSignedTxResponse as cf, type MeshTxIntent as cg, type MeshUnsignedTxResponse as ch, type MetricsRangeResponse as ci, type MetricsRangeSample as cj, type MetricsRangeSeries as ck, type MetricsRangeStatus as cl, type MrcAccountRecord as cm, type MrcMetadataRecord as cn, type MrcPolicyRecord as co, type MrcPolicySpendRecord as cp, NAME_BASE_MULTIPLIER as cq, NAME_FALLBACK_FEE_UNIT_LYTHOSHI as cr, NAME_LABEL_MAX_LEN as cs, NAME_LABEL_MIN_LEN as ct, NAME_MAX_LEN as cu, NAME_REGISTRY_SELECTORS as cv, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE as cw, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY as cx, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET as cy, NATIVE_MARKET_EVENT_FAMILY as cz, type NativeEventFilter as d, type NoEvmArchiveSignatureVerificationIssue as d$, NODE_REGISTRY_PUBLIC_SERVICE_MASK as d0, NODE_REGISTRY_SELECTORS as d1, NO_EVM_ARCHIVE_PROOF_SCHEMA as d2, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as d3, NO_EVM_FINALITY_EVIDENCE_SCHEMA as d4, NO_EVM_FINALITY_EVIDENCE_SOURCE as d5, NO_EVM_RECEIPTS_ROOT_DOMAIN as d6, NO_EVM_RECEIPT_CODEC as d7, NO_EVM_RECEIPT_PROOF_SCHEMA as d8, NO_EVM_RECEIPT_PROOF_TYPE as d9, type NativeMarketAddressKind as dA, type NativeMarketForwarderInput as dB, type NativeMarketModuleCallEnvelope as dC, type NativeMarketModuleContractCall as dD, type NativeMarketOrderBookDelta as dE, type NativeMarketOrderBookDeltasResponseFilters as dF, type NativeMarketOrderBookDeltasSource as dG, type NativeMarketOrderBookStreamAction as dH, type NativeMarketOrderBookStreamPayload as dI, type NativeMarketStateFilterParamValue as dJ, type NativeMarketStateResponseFilters as dK, type NativeMarketStateSource as dL, type NativeModuleForwarderDescriptor as dM, type NativeMrcPolicyProjection as dN, type NativeNftAssetStandard as dO, type NativeNftListingKind as dP, type NativeNftListingStateRecord as dQ, type NativeReceiptCounters as dR, type NativeReceiptEvent as dS, type NativeReceiptSource as dT, type NativeSpotMarketStateRecord as dU, type NativeSpotOrderStateRecord as dV, type NetworkClientOptions as dW, type NetworkSlug as dX, type NoEvmArchiveCoveringSnapshot as dY, type NoEvmArchiveProof as dZ, type NoEvmArchiveSignatureVerification as d_, NO_EVM_RECEIPT_ROOT_ALGORITHM as da, type NameCategory as db, type NameOfResponse as dc, type NameRegistrationQuote as dd, NameRegistryError as de, type NativeAgentArbiterStateRecord as df, type NativeAgentAttestationStateRecord as dg, type NativeAgentAvailabilityStateRecord as dh, type NativeAgentConsentStateRecord as di, type NativeAgentEscrowStateRecord as dj, type NativeAgentIssuerStateRecord as dk, type NativeAgentPolicySpendStateRecord as dl, type NativeAgentPolicyStateRecord as dm, type NativeAgentReputationReviewStateRecord as dn, type NativeAgentServiceStateRecord as dp, type NativeAgentStateFilterParamValue as dq, type NativeAgentStateResponseFilters as dr, type NativeAgentStateSource as ds, type NativeCallForwarderArtifact as dt, type NativeCollectionRoyaltyStateRecord as du, type NativeEventConsumer as dv, type NativeEventProjection as dw, type NativeEventsResponseFilters as dx, type NativeEventsSource as dy, type NativeMarketAddressInput as dz, type TypedNativeReceiptEvent as e, type PlaceLimitOrderViaPlan as e$, type NoEvmArchiveSignatureVerificationIssueCode as e0, type NoEvmArchiveTrustedSigner as e1, type NoEvmBlockBlsFinalityVerification as e2, type NoEvmBlockRoundFinalityVerification as e3, type NoEvmBlsFinalityVerification as e4, type NoEvmFinalityBlockReference as e5, type NoEvmFinalityCertificate as e6, type NoEvmFinalityEvidence as e7, type NoEvmReceiptFinalityTrustPolicy as e8, type NoEvmReceiptProof as e9, type OperatorSigningEntry as eA, type OperatorSurfaceCapability as eB, type OperatorSurfaceStatus as eC, type OracleEvent as eD, OracleEventError as eE, type OracleFeedConfig as eF, type OracleLatestPrice as eG, type OracleSignerRow as eH, type OracleSignersResponse as eI, type OracleWriters as eJ, type P2pSeed as eK, PENDING_CHANGE_KIND_CODES as eL, PROVER_MARKET_ADDRESS as eM, PROVER_MARKET_BID_DOMAIN as eN, PROVER_MARKET_EVENT_SIGS as eO, PROVER_MARKET_REQUEST_DOMAIN as eP, PROVER_MARKET_SELECTORS as eQ, PROVER_MARKET_SUBMIT_DOMAIN as eR, PROVER_SLASH_REASON_BAD_PROOF as eS, PROVER_SLASH_REASON_NON_DELIVERY as eT, type ParsedName as eU, type PeerSummary as eV, type PeerSummaryAggregate as eW, type PendingChangeKind as eX, type PendingRewardsRow as eY, type PendingTxSummary as eZ, type PlaceLimitOrderViaArgs as e_, NoEvmReceiptProofError as ea, type NoEvmReceiptProofErrorCode as eb, type NoEvmReceiptProofVerification as ec, type NoEvmReceiptTrustIssue as ed, type NoEvmReceiptTrustIssueCode as ee, type NoEvmReceiptTrustPolicy as ef, type NoEvmReceiptTrustVerification as eg, type NoEvmReceiptTrustedBlsSigner as eh, type NoEvmReceiptTrustedSigner as ei, type NoEvmRoundFinalityVerification as ej, type NodeHostingClass as ek, NodeRegistryError as el, OPERATOR_ROUTER_EVENT_SIGS as em, OPERATOR_ROUTER_SELECTORS as en, OPERATOR_ROUTER_SIGS as eo, ORACLE_EVENT_SIGS as ep, type OperatorAuthorityResponse as eq, type OperatorFeeChargedEvent as er, type OperatorFeeConfig as es, type OperatorFeeQuote as et, type OperatorInfoResponse as eu, type OperatorNetworkMetadata as ev, type OperatorNetworkMetadataView as ew, type OperatorRiskResponse as ex, type OperatorRouterConfig as ey, type OperatorSigningActivityResponse as ez, type NativeEventsFilter as f, type TxFeedReceipt as f$, type PlaceSpotLimitOrderArgs as f0, type PlaceSpotMarketOrderArgs as f1, type PlaceSpotMarketOrderExArgs as f2, type PrecompileCatalogueResponse as f3, type PrecompileDescriptor as f4, type ProofRequestRow as f5, type ProofRequestView as f6, type ProverBidView as f7, type ProverBidsResponse as f8, ProverMarketError as f9, SERVES_GPU_PROVE as fA, SERVICE_PROBE_STATUS as fB, SET_POLICY_CLAIM_DOMAIN_TAG as fC, SPENDING_POLICY_SELECTORS as fD, type SearchHit as fE, type ServiceProbeStatusLabel as fF, type SetOperatorDisplayCalldataArgs as fG, type SigningEntryStatus as fH, type SpendingPolicyArgs as fI, SpendingPolicyError as fJ, type SpendingPolicyTimeWindow as fK, type SpendingPolicyView as fL, type SpotLimitOrderSide as fM, type SpotMarketOrderMode as fN, type StorageProofBatch as fO, type SubmitPendingChangeCalldataArgs as fP, type SwapIntentStatus as fQ, type SyncStatus as fR, TESTNET_69420 as fS, type TokenBalanceMrcIdentity as fT, type TokenBalanceRecord as fU, type TokenBalanceWithMetadata as fV, type TotalBurnedResponse as fW, type TpmAttestationResponse as fX, type TransactionReceipt as fY, type TransactionView as fZ, type TxConfirmations as f_, type ProverMarketState as fa, type ProverMarketStatusResponse as fb, type PublishOperatorSealKeyCalldataArgs as fc, type Quantity as fd, type QuoteLiquidity as fe, RESERVED_ADDRESS_HRPS as ff, type RankedBridgeRoute as fg, type ReceiptProofTrustArchivePolicy as fh, type ReceiptProofTrustArchiveSigner as fi, type ReceiptProofTrustFinalityPolicy as fj, type ReceiptProofTrustFinalitySigner as fk, type ReceiptProofTrustPolicy as fl, type RedemptionQueueTicket as fm, type RegistryRecord as fn, type ReportServiceProbeCalldataArgs as fo, type ReportServiceProbeRequest as fp, type ReportServiceProbeResponse as fq, type RequestClusterJoinCalldataArgs as fr, type ResolveNameResponse as fs, type RichListHolder as ft, type RichListResponse as fu, type RoundCertificateResponse as fv, type RoundInfo as fw, type RpcClientOptions as fx, type RpcEndpoint as fy, type RuntimeProvenanceResponse as fz, type NativeEventsResponse as g, computeNoEvmRoundFinalityMessage as g$, type TxFeedTransaction as g0, type TxStatusFoundResponse as g1, type TxStatusNotFoundResponse as g2, type TxStatusResponse as g3, type UpcomingDutiesResponse as g4, type UpcomingDutyMap as g5, type UserAddressInput as g6, V1_BRIDGE_ALLOWED_FEE_TOKEN as g7, V1_BRIDGE_ALLOWED_PROTOCOL as g8, type VertexAtRound as g9, buildNativeNftPlaceAuctionBidForwarderInput as gA, buildNativeNftPlaceAuctionBidModuleCall as gB, buildNativeNftSettleAuctionForwarderInput as gC, buildNativeNftSettleAuctionModuleCall as gD, buildNativeNftSweepExpiredListingsForwarderInput as gE, buildNativeNftSweepExpiredListingsModuleCall as gF, buildNativeSpotCancelOrderForwarderInput as gG, buildNativeSpotCancelOrderModuleCall as gH, buildNativeSpotCreateMarketForwarderInput as gI, buildNativeSpotCreateMarketModuleCall as gJ, buildNativeSpotLimitOrderForwarderInput as gK, buildNativeSpotLimitOrderModuleCall as gL, buildNativeSpotSettleLimitOrderForwarderInput as gM, buildNativeSpotSettleLimitOrderModuleCall as gN, buildNativeSpotSettleRoutedLimitOrderForwarderInput as gO, buildNativeSpotSettleRoutedLimitOrderModuleCall as gP, buildPlaceLimitOrderViaPlan as gQ, buildPlaceSpotLimitOrderPlan as gR, buildPlaceSpotMarketOrderExPlan as gS, buildPlaceSpotMarketOrderPlan as gT, categoryRoot as gU, clobAddressHex as gV, clusterApyPercent as gW, composeClaimBoundMessage as gX, computeNoEvmDacFinalityMessage as gY, computeNoEvmLeaderFinalityMessage as gZ, computeNoEvmReceiptsRoot as g_, type VerticesAtRoundResponse as ga, type VoteClusterAdmitCalldataArgs as gb, addressBytesToHex as gc, addressToBech32 as gd, addressToTypedBech32 as ge, allowRootFor as gf, assertNativeMarketOrderBookStreamPayload as gg, assessBridgeRoute as gh, bech32ToAddress as gi, bech32ToAddressBytes as gj, bidSighash as gk, bridgeAddressHex as gl, bridgeDrainRemaining as gm, bridgeQuoteSubmitReadiness as gn, bridgeRoutesReadiness as go, bridgeTransferCandidates as gp, buildBridgeRouteCatalogue as gq, buildCancelSpotOrderPlan as gr, buildNativeCallForwarderArtifact as gs, buildNativeMarketModuleCallEnvelope as gt, buildNativeNftBuyListingForwarderInput as gu, buildNativeNftBuyListingModuleCall as gv, buildNativeNftCancelListingForwarderInput as gw, buildNativeNftCancelListingModuleCall as gx, buildNativeNftCreateListingForwarderInput as gy, buildNativeNftCreateListingModuleCall as gz, type NativeAgentStateFilter as h, encodeReportServiceProbeCalldata as h$, computeNoEvmTargetReceiptHash as h0, computeQuoteLiquidity as h1, consumeNativeEvents as h2, decodeClusterDiversity as h3, decodeClusterFormedEvent as h4, decodeClusterJoinRequest as h5, decodeNativeAgentStateResponse as h6, decodeNativeMarketOrderBookDeltasResponse as h7, decodeNativeReceiptResponse as h8, decodeNoEvmReceiptTranscript as h9, encodeExpireClusterJoinCalldata as hA, encodeFormClusterCalldata as hB, encodeFormClusterV2Calldata as hC, encodeGetClusterJoinRequestCalldata as hD, encodeGetOperatorSealKeyCalldata as hE, encodeLockBridgeConfigCalldata as hF, encodeNameAcceptTransferCall as hG, encodeNameProposeTransferCall as hH, encodeNameRegisterCall as hI, encodeNativeMarketModuleForwarderInput as hJ, encodeNativeNftBuyListingCall as hK, encodeNativeNftCancelListingCall as hL, encodeNativeNftCreateListingCall as hM, encodeNativeNftPlaceAuctionBidCall as hN, encodeNativeNftSettleAuctionCall as hO, encodeNativeNftSweepExpiredListingsCall as hP, encodeNativeSpotCancelOrderCall as hQ, encodeNativeSpotCreateMarketCall as hR, encodeNativeSpotLimitOrderCall as hS, encodeNativeSpotSettleLimitOrderCall as hT, encodeNativeSpotSettleRoutedLimitOrderCall as hU, encodePlaceLimitOrderCalldata as hV, encodePlaceLimitOrderViaCalldata as hW, encodePlaceMarketOrderCalldata as hX, encodePlaceMarketOrderExCalldata as hY, encodePublishOperatorSealKeyCalldata as hZ, encodeRecoverOperatorNodeCalldata as h_, decodeOperatorFeeChargedEvent as ha, decodeOperatorNetworkMetadata as hb, decodeOperatorSealKey as hc, decodeOracleEvent as hd, decodeTimeWindow as he, decodeTxFeedResponse as hf, denyRootFor as hg, deriveClobMarketId as hh, deriveClusterAnchorAddress as hi, deriveFeedId as hj, deriveNativeSpotMarketId as hk, deriveNativeSpotOrderId as hl, destinationRoot as hm, encodeAttestDkgReshareCalldata as hn, encodeBlockSelector as ho, encodeBridgeChallengeCalldata as hp, encodeBridgeClaimCalldata as hq, encodeCancelClusterJoinCalldata as hr, encodeCancelOrderCalldata as hs, encodeCancelPendingChangeCalldata as ht, encodeClaimPolicyByAddressCalldata as hu, encodeClusterCharter as hv, encodeCreateRequestCalldata as hw, encodeCreateRequestCanonical as hx, encodeDisableCalldata as hy, encodeEnableCalldata as hz, type NativeAgentStateResponse as i, parseNameCategory as i$, encodeRequestClusterJoinCalldata as i0, encodeSetBridgeResumeCooldownCalldata as i1, encodeSetBridgeRouteFinalityCalldata as i2, encodeSetLotSizeCalldata as i3, encodeSetMinNotionalCalldata as i4, encodeSetOperatorDisplayCalldata as i5, encodeSetPolicyCalldata as i6, encodeSetPolicyClaimCalldata as i7, encodeSetTickSizeCalldata as i8, encodeSubmitBridgeProofCalldata as i9, isValidPublicServiceProbeMask as iA, nameLengthModifierX10 as iB, nameRegistrationCost as iC, nameRegistryAddressHex as iD, nativeAgentStateFilterParams as iE, nativeEventMatches as iF, nativeEventsFilterParams as iG, nativeEventsFromHistory as iH, nativeEventsFromReceipt as iI, nativeMarketEventFilter as iJ, nativeMarketEventsFromHistory as iK, nativeMarketEventsFromReceipt as iL, nativeMarketStateFilterParams as iM, noEvmReceiptTrustPolicyFromChainInfo as iN, nodeHostingClassFromByte as iO, nodeHostingClassToByte as iP, nodeRegistryAddressHex as iQ, normalizeAddressHex as iR, normalizeBridgeRouteCatalogue as iS, normalizePendingChangeKind as iT, oracleAddressHex as iU, oraclePriceToNumber as iV, packTimeWindow as iW, parseAddress as iX, parseBridgeRouteCatalogueJson as iY, parseChainRegistryToml as iZ, parseDkgResharePublicKeys as i_, encodeSubmitPendingChangeCalldata as ia, encodeVoteClusterAdmitCalldata as ib, exportBridgeRouteCatalogueJson as ic, fetchChainInfoLatest as id, fetchChainRegistryLatest as ie, formClusterMessage as ig, formClusterMessageHex as ih, formClusterMessageV2 as ii, formClusterMessageV2Hex as ij, formatOraclePrice as ik, getChainInfo as il, getNoEvmReceiptTrustPolicy as im, getP2pSeeds as io, getRpcEndpoints as ip, hexToAddressBytes as iq, isBridgeAdminLockedRevert as ir, isBridgeCooldownZeroRevert as is, isBridgeFinalityZeroRevert as it, isBridgeResumeCooldownActiveRevert as iu, isConcreteServiceProbeStatus as iv, isNativeDecodedEvent as iw, isNativeMarketOrderBookStreamPayload as ix, isSinglePublicServiceProbeMask as iy, isValidNodeRegistryCapabilities as iz, type NativeMarketStateFilter as j, bincodeDecryptHint as j$, parseNativeDecodedEvent as j0, parseQuantity as j1, parseQuantityBig as j2, proverMarketStateFromByte as j3, quoteOperatorFee as j4, rankBridgeRoutes as j5, rankMarketsByVolume as j6, requestSighash as j7, requireTypedAddress as j8, selectBridgeTransferRoute as j9, type LythiumSealEnvelope as jA, ML_DSA_65_PUBLIC_KEY_LEN as jB, ML_DSA_65_SEED_LEN as jC, ML_DSA_65_SIGNATURE_LEN as jD, ML_DSA_65_SIGNING_KEY_LEN as jE, ML_KEM_768_CIPHERTEXT_LEN as jF, ML_KEM_768_ENCAPSULATION_KEY_LEN as jG, ML_KEM_768_SHARED_SECRET_LEN as jH, type NativeTxExtension as jI, type NativeTxExtensionDescriptor as jJ, type NativeTxExtensionLike as jK, type NonceAad as jL, type OperatorSealKeypair as jM, type PlaintextSubmission as jN, SEAL_COMMIT_LEN as jO, SEAL_DK_LEN as jP, SEAL_EK_LEN as jQ, SEAL_KEM_CT_LEN as jR, SEAL_KEM_SEED_LEN as jS, SEAL_KEY_LEN as jT, SEAL_NONCE_LEN as jU, SEAL_SHARE_LEN as jV, SEAL_TAG_LEN as jW, STANDARD_ALGO_NUMBER_ML_DSA_65 as jX, type SealRandomSource as jY, type SealRecipient as jZ, type SealedSubmission as j_, serviceProbeStatusLabel as ja, setDestinationRoot as jb, spendingPolicyAddressHex as jc, submitSighash as jd, typedBech32ToAddress as je, validateAddress as jf, validateBridgeRouteCatalogue as jg, verifyNoEvmArchiveProofSignatures as jh, verifyNoEvmBlockFinalityEvidenceMultisig as ji, verifyNoEvmBlockFinalityEvidenceThreshold as jj, verifyNoEvmFinalityEvidenceMultisig as jk, verifyNoEvmFinalityEvidenceThreshold as jl, verifyNoEvmReceiptProof as jm, verifyNoEvmReceiptProofTrust as jn, ADDRESS_DERIVATION_DOMAIN as jo, CLUSTER_MLKEM_SHAMIR as jp, CLUSTER_MLKEM_SHAMIR_ALGO as jq, type ClusterSealKeyEntryInput as jr, DKG_AEAD_TAG_LEN as js, DKG_NONCE_LEN as jt, type DecryptHint as ju, ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE as jv, ENUM_VARIANT_INDEX_ML_DSA_65 as jw, type EncryptedEnvelope as jx, type EncryptedSubmission as jy, type JsonRpcCallClient as jz, type NativeMarketStateResponse as k, bincodeEncryptedEnvelope as k0, bincodeNonceAad as k1, bincodeSignedTransaction as k2, buildEncryptedEnvelope as k3, buildEncryptedSubmission as k4, buildPlaintextSubmission as k5, cryptoRandomSource as k6, encodeMlDsa65Opaque as k7, encodeSealEnvelope as k8, encodeTransactionForHash as k9, encryptInnerTx as ka, fetchEncryptionKey as kb, generateOperatorSealKeypair as kc, getClusterSealKeys as kd, mlDsa65AddressBytes as ke, mlDsa65AddressFromPublicKey as kf, outerSigDigest as kg, parseClusterSealKeys as kh, sealRosterHash as ki, sealToCluster as kj, sealTransaction as kk, submitEncryptedEnvelope as kl, submitPlaintextTransaction as km, submitSealedTransaction as kn, submitTransactionWithPrivacy as ko, 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 };
7060
+ export { type Address 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 ActiveCharterView as _, type RuntimeUpgradeStatus as a, type CancelSpotOrderArgs as a$, type AddressActivityArchiveRedirect as a0, type AddressActivityEntry as a1, type AddressActivityEntryEnriched as a2, type AddressActivityKind as a3, type AddressActivityKindResponse as a4, type AddressActivityKindRetention as a5, AddressError as a6, type AddressLabelRecord as a7, type AddressValidation as a8, type AgentReputationCategoryScope as a9, type BridgeHealthRecord as aA, type BridgeHealthResponse as aB, BridgePrecompileError as aC, type BridgeQuoteSubmitReadiness as aD, type BridgeRiskTier as aE, type BridgeRouteAssessment as aF, type BridgeRouteCandidate as aG, type BridgeRouteCatalogue as aH, BridgeRouteCatalogueError as aI, type BridgeRouteCatalogueJsonOptions as aJ, type BridgeRouteCataloguePayload as aK, type BridgeRouteCatalogueRoute as aL, type BridgeRouteCatalogueValidation as aM, type BridgeRouteDisclosure as aN, type BridgeRouteSelection as aO, type BridgeRoutesSource as aP, type BridgeTransferIntent as aQ, type BridgeTransferRequest as aR, type BridgeVerifierDisclosure as aS, CHAIN_REGISTRY as aT, CHAIN_REGISTRY_RAW_BASE as aU, CLOB_MARKET_ID_DOMAIN_TAG as aV, CLOB_SELECTORS as aW, CLUSTER_FORMED_EVENT_SIG as aX, type CallRequest as aY, type CancelClusterJoinCalldataArgs as aZ, type CancelPendingChangeCalldataArgs as a_, type AgentReputationRecord as aa, type AgentReputationResponse as ab, type AnswerArchiveChallengeCalldataArgs as ac, type ApiStreamTopic as ad, type ApiStreamTopicMetadata as ae, type ApiStreamTopicRetention as af, type ArchiveChallenge as ag, type AssetPolicy as ah, type AttestDkgReshareCalldataArgs as ai, type AttestServiceProbeCalldataArgs as aj, type AttestationWindow as ak, BRIDGE_QUOTE_API_BLOCKED_REASON as al, BRIDGE_REVERT_TAGS as am, BRIDGE_SELECTORS as an, BRIDGE_SUBMIT_API_BLOCKED_REASON as ao, type BlockHeader as ap, type BlockTag as aq, type BlsCertificateResponse as ar, type BridgeAdminControl as as, type BridgeAnchorState as at, type BridgeBreakerState as au, type BridgeBytesInput as av, type BridgeCircuitBreakerFields as aw, type BridgeCircuitBreakerState as ax, type BridgeDrainCap as ay, type BridgeDrainStatus as az, type NativeReceiptResponse as b, type GapRecord as b$, type CapabilitiesResponse as b0, type CapabilityDescriptor as b1, type ChainInfo as b2, type ChainRegistry as b3, type CheckpointRecord as b4, type CirculatingSupplyResponse as b5, type ClobMarketAssets as b6, type ClobMarketRecord as b7, type ClobMarketSummary as b8, type ClobTrade as b9, type DelegationHistoryRecord as bA, type DelegationRow as bB, type DelegationsResponse as bC, type DutyAbsence as bD, EMPTY_ROOT as bE, type EncodeNativeNftBuyListingArgs as bF, type EncodeNativeNftCancelListingArgs as bG, type EncodeNativeNftCreateListingArgs as bH, type EncodeNativeNftPlaceAuctionBidArgs as bI, type EncodeNativeNftSettleAuctionArgs as bJ, type EncodeNativeNftSweepExpiredListingsArgs as bK, type EncodeNativeSpotCancelOrderArgs as bL, type EncodeNativeSpotCreateMarketArgs as bM, type EncodeNativeSpotLimitOrderArgs as bN, type EncodeNativeSpotSettleLimitOrderArgs as bO, type EncodeNativeSpotSettleRoutedLimitOrderArgs as bP, type EncryptionKeyResponse as bQ, type EntityRatchetResponse as bR, type EthCallRequest as bS, type EthSendTransactionRequest as bT, type ExpireClusterJoinCalldataArgs as bU, type ExplorerEndpoint as bV, FEED_ID_DOMAIN_TAG as bW, type FeeHistoryResponse as bX, type FormClusterCalldataArgs as bY, type FormClusterV2CalldataArgs as bZ, type GapRange as b_, type ClusterAprResponse as ba, type ClusterCharterArgs as bb, type ClusterDelegatorsResponse as bc, type ClusterDirectoryEntryResponse as bd, type ClusterDirectoryPageResponse as be, type ClusterDiversity as bf, type ClusterDiversityView as bg, type ClusterEntityResponse as bh, type ClusterFormedEvent as bi, type ClusterJoinRequestStatus as bj, type ClusterMemberResponse as bk, type ClusterNameResponse as bl, type ClusterResignationRow as bm, type ClusterResignationsResponse as bn, type ClusterStatusResponse as bo, type CommitArchiveRootCalldataArgs as bp, type CreateRequestCanonicalArgs as bq, DIVERSITY_SCORE_MAX as br, type DagParent as bs, type DagParentsResponse as bt, type DagSyncStatus as bu, type DecodeTxExtension as bv, type DecodeTxLog as bw, type DecodeTxPqAttestation as bx, type DecodeTxResponse as by, type DelegationCapResponse as bz, type NativeDecodedEvent as c, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT as c$, type GapRecordsResponse as c0, type GetClusterJoinRequestCalldataArgs as c1, type GetOperatorSealKeyCalldataArgs as c2, type Hash as c3, type Hex as c4, type IndexerStatus as c5, type JailStatusWindow as c6, type KeyRotationWindow as c7, type ListProofRequestsResponse as c8, type LythUpgradePlanStatus as c9, NAME_REGISTRY_SELECTORS as cA, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE as cB, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY as cC, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET as cD, NATIVE_MARKET_EVENT_FAMILY as cE, NATIVE_MARKET_MODULE_ADDRESS as cF, NATIVE_MARKET_MODULE_ADDRESS_BYTES as cG, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as cH, NODE_REGISTRY_ARCHIVE_CHALLENGE_DOMAIN as cI, NODE_REGISTRY_ARCHIVE_KIND_EPOCH_SEED as cJ, NODE_REGISTRY_ARCHIVE_NONCE_DOMAIN as cK, NODE_REGISTRY_BLS_PUBKEY_BYTES as cL, NODE_REGISTRY_CAPABILITIES as cM, NODE_REGISTRY_CAPABILITY_MASK as cN, NODE_REGISTRY_CHALLENGE_EPOCH_WINDOW as cO, NODE_REGISTRY_CHARTER_COOLDOWN_EPOCHS as cP, NODE_REGISTRY_CLUSTER_CHARTER_BYTES as cQ, NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS as cR, NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS as cS, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES as cT, NODE_REGISTRY_CONSENSUS_POP_BYTES as cU, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES as cV, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES as cW, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES as cX, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS as cY, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS as cZ, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES as c_, type LythUpgradeStatusResponse as ca, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES as cb, MAX_NATIVE_RECEIPT_EVENTS as cc, ML_DSA_65_PUBLIC_KEY_LEN$1 as cd, ML_DSA_65_SIGNATURE_LEN$1 as ce, MULTISIG_ADDRESS_DERIVATION_DOMAIN as cf, MarketActionError as cg, type MarketTransactionPlan as ch, type MempoolSnapshot as ci, type MeshDecodedTx as cj, type MeshSignedTxResponse as ck, type MeshTxIntent as cl, type MeshUnsignedTxResponse as cm, type MetricsRangeResponse as cn, type MetricsRangeSample as co, type MetricsRangeSeries as cp, type MetricsRangeStatus as cq, type MrcAccountRecord as cr, type MrcMetadataRecord as cs, type MrcPolicyRecord as ct, type MrcPolicySpendRecord as cu, NAME_BASE_MULTIPLIER as cv, NAME_FALLBACK_FEE_UNIT_LYTHOSHI as cw, NAME_LABEL_MAX_LEN as cx, NAME_LABEL_MIN_LEN as cy, NAME_MAX_LEN as cz, type NativeEventFilter as d, type NativeMarketOrderBookDeltasResponseFilters as d$, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT as d0, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN as d1, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN_V2 as d2, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT as d3, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD as d4, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES as d5, NODE_REGISTRY_MAX_MERKLE_PROOF_DEPTH as d6, NODE_REGISTRY_MERKLE_INNER_DOMAIN as d7, NODE_REGISTRY_MERKLE_LEAF_DOMAIN as d8, NODE_REGISTRY_MIN_ARCHIVE_LEAF_COUNT as d9, type NameRegistrationQuote as dA, NameRegistryError as dB, type NativeAgentArbiterStateRecord as dC, type NativeAgentAttestationStateRecord as dD, type NativeAgentAvailabilityStateRecord as dE, type NativeAgentConsentStateRecord as dF, type NativeAgentEscrowStateRecord as dG, type NativeAgentIssuerStateRecord as dH, type NativeAgentPolicySpendStateRecord as dI, type NativeAgentPolicyStateRecord as dJ, type NativeAgentReputationReviewStateRecord as dK, type NativeAgentServiceStateRecord as dL, type NativeAgentStateFilterParamValue as dM, type NativeAgentStateResponseFilters as dN, type NativeAgentStateSource as dO, type NativeCallForwarderArtifact as dP, type NativeCollectionRoyaltyStateRecord as dQ, type NativeEventConsumer as dR, type NativeEventProjection as dS, type NativeEventsResponseFilters as dT, type NativeEventsSource as dU, type NativeMarketAddressInput as dV, type NativeMarketAddressKind as dW, type NativeMarketForwarderInput as dX, type NativeMarketModuleCallEnvelope as dY, type NativeMarketModuleContractCall as dZ, type NativeMarketOrderBookDelta as d_, NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES as da, NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES as db, NODE_REGISTRY_OPERATOR_SEAL_EK_BYTES as dc, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID as dd, NODE_REGISTRY_PUBLIC_SERVICE_MASK as de, NODE_REGISTRY_SELECTORS as df, NODE_REGISTRY_SUBKIND_CHARTER_DELEGATOR_BPS as dg, NODE_REGISTRY_SUBKIND_CHARTER_MEMBER_SHARES as dh, NODE_REGISTRY_TAG_ARCHIVE_CHALLENGE as di, NODE_REGISTRY_TAG_CLUSTER_CHARTER as dj, NODE_REGISTRY_TAG_SERVICE_SCORE as dk, NODE_REGISTRY_TAG_TREASURY as dl, NODE_REGISTRY_UPDATE_CHARTER_MESSAGE_DOMAIN as dm, NODE_REGISTRY_UPDATE_CHARTER_THRESHOLD as dn, NO_EVM_ARCHIVE_PROOF_SCHEMA as dp, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as dq, NO_EVM_FINALITY_EVIDENCE_SCHEMA as dr, NO_EVM_FINALITY_EVIDENCE_SOURCE as ds, NO_EVM_RECEIPTS_ROOT_DOMAIN as dt, NO_EVM_RECEIPT_CODEC as du, NO_EVM_RECEIPT_PROOF_SCHEMA as dv, NO_EVM_RECEIPT_PROOF_TYPE as dw, NO_EVM_RECEIPT_ROOT_ALGORITHM as dx, type NameCategory as dy, type NameOfResponse as dz, type TypedNativeReceiptEvent as e, type OracleFeedConfig as e$, type NativeMarketOrderBookDeltasSource as e0, type NativeMarketOrderBookStreamAction as e1, type NativeMarketOrderBookStreamPayload as e2, type NativeMarketStateFilterParamValue as e3, type NativeMarketStateResponseFilters as e4, type NativeMarketStateSource as e5, type NativeModuleForwarderDescriptor as e6, type NativeMrcPolicyProjection as e7, type NativeNftAssetStandard as e8, type NativeNftListingKind as e9, type NoEvmReceiptTrustIssueCode as eA, type NoEvmReceiptTrustPolicy as eB, type NoEvmReceiptTrustVerification as eC, type NoEvmReceiptTrustedBlsSigner as eD, type NoEvmReceiptTrustedSigner as eE, type NoEvmRoundFinalityVerification as eF, type NodeHostingClass as eG, NodeRegistryError as eH, OPERATOR_ROUTER_EVENT_SIGS as eI, OPERATOR_ROUTER_SELECTORS as eJ, OPERATOR_ROUTER_SIGS as eK, ORACLE_EVENT_SIGS as eL, type OperatorAuthorityResponse as eM, type OperatorFeeChargedEvent as eN, type OperatorFeeConfig as eO, type OperatorFeeQuote as eP, type OperatorInfoResponse as eQ, type OperatorNetworkMetadata as eR, type OperatorNetworkMetadataView as eS, type OperatorRiskResponse as eT, type OperatorRouterConfig as eU, type OperatorSigningActivityResponse as eV, type OperatorSigningEntry as eW, type OperatorSurfaceCapability as eX, type OperatorSurfaceStatus as eY, type OracleEvent as eZ, OracleEventError as e_, type NativeNftListingStateRecord as ea, type NativeReceiptCounters as eb, type NativeReceiptEvent as ec, type NativeReceiptSource as ed, type NativeSpotMarketStateRecord as ee, type NativeSpotOrderStateRecord as ef, type NetworkClientOptions as eg, type NetworkSlug as eh, type NoEvmArchiveCoveringSnapshot as ei, type NoEvmArchiveProof as ej, type NoEvmArchiveSignatureVerification as ek, type NoEvmArchiveSignatureVerificationIssue as el, type NoEvmArchiveSignatureVerificationIssueCode as em, type NoEvmArchiveTrustedSigner as en, type NoEvmBlockBlsFinalityVerification as eo, type NoEvmBlockRoundFinalityVerification as ep, type NoEvmBlsFinalityVerification as eq, type NoEvmFinalityBlockReference as er, type NoEvmFinalityCertificate as es, type NoEvmFinalityEvidence as et, type NoEvmReceiptFinalityTrustPolicy as eu, type NoEvmReceiptProof as ev, NoEvmReceiptProofError as ew, type NoEvmReceiptProofErrorCode as ex, type NoEvmReceiptProofVerification as ey, type NoEvmReceiptTrustIssue as ez, type NativeEventsFilter as f, type SearchHit as f$, type OracleLatestPrice as f0, type OracleSignerRow as f1, type OracleSignersResponse as f2, type OracleWriters as f3, type P2pSeed as f4, PENDING_CHANGE_KIND_CODES as f5, PROVER_MARKET_ADDRESS as f6, PROVER_MARKET_BID_DOMAIN as f7, PROVER_MARKET_EVENT_SIGS as f8, PROVER_MARKET_REQUEST_DOMAIN as f9, type Quantity as fA, type QuoteLiquidity as fB, RESERVED_ADDRESS_HRPS as fC, type RankedBridgeRoute as fD, type ReceiptProofTrustArchivePolicy as fE, type ReceiptProofTrustArchiveSigner as fF, type ReceiptProofTrustFinalityPolicy as fG, type ReceiptProofTrustFinalitySigner as fH, type ReceiptProofTrustPolicy as fI, type RedemptionQueueTicket as fJ, type RegistryRecord as fK, type ReportServiceProbeCalldataArgs as fL, type ReportServiceProbeRequest as fM, type ReportServiceProbeResponse as fN, type RequestClusterJoinCalldataArgs as fO, type ResolveNameResponse as fP, type RichListHolder as fQ, type RichListResponse as fR, type RoundCertificateResponse as fS, type RoundInfo as fT, type RpcClientOptions as fU, type RpcEndpoint as fV, type RuntimeProvenanceResponse as fW, SERVES_GPU_PROVE as fX, SERVICE_PROBE_STATUS as fY, SET_POLICY_CLAIM_DOMAIN_TAG as fZ, SPENDING_POLICY_SELECTORS as f_, PROVER_MARKET_SELECTORS as fa, PROVER_MARKET_SUBMIT_DOMAIN as fb, PROVER_SLASH_REASON_BAD_PROOF as fc, PROVER_SLASH_REASON_NON_DELIVERY as fd, type ParsedName as fe, type PeerSummary as ff, type PeerSummaryAggregate as fg, type PendingChangeKind as fh, type PendingCharterView as fi, type PendingRewardsRow as fj, type PendingTxSummary as fk, type PlaceLimitOrderViaArgs as fl, type PlaceLimitOrderViaPlan as fm, type PlaceSpotLimitOrderArgs as fn, type PlaceSpotMarketOrderArgs as fo, type PlaceSpotMarketOrderExArgs as fp, type PrecompileCatalogueResponse as fq, type PrecompileDescriptor as fr, type ProofRequestRow as fs, type ProofRequestView as ft, type ProverBidView as fu, type ProverBidsResponse as fv, ProverMarketError as fw, type ProverMarketState as fx, type ProverMarketStatusResponse as fy, type PublishOperatorSealKeyCalldataArgs as fz, type NativeEventsResponse as g, buildNativeNftPlaceAuctionBidModuleCall as g$, type ServiceProbeStatusLabel as g0, type SetOperatorDisplayCalldataArgs as g1, type SigningEntryStatus as g2, type SpendingPolicyArgs as g3, SpendingPolicyError as g4, type SpendingPolicyTimeWindow as g5, type SpendingPolicyView as g6, type SpotLimitOrderSide as g7, type SpotMarketOrderMode as g8, type StorageProofBatch as g9, addressBytesToHex as gA, addressToBech32 as gB, addressToTypedBech32 as gC, allowRootFor as gD, archiveMerkleInnerHash as gE, archiveMerkleLeafHash as gF, assertNativeMarketOrderBookStreamPayload as gG, assessBridgeRoute as gH, bech32ToAddress as gI, bech32ToAddressBytes as gJ, bidSighash as gK, bridgeAddressHex as gL, bridgeDrainRemaining as gM, bridgeQuoteSubmitReadiness as gN, bridgeRoutesReadiness as gO, bridgeTransferCandidates as gP, buildBridgeRouteCatalogue as gQ, buildCancelSpotOrderPlan as gR, buildNativeCallForwarderArtifact as gS, buildNativeMarketModuleCallEnvelope as gT, buildNativeNftBuyListingForwarderInput as gU, buildNativeNftBuyListingModuleCall as gV, buildNativeNftCancelListingForwarderInput as gW, buildNativeNftCancelListingModuleCall as gX, buildNativeNftCreateListingForwarderInput as gY, buildNativeNftCreateListingModuleCall as gZ, buildNativeNftPlaceAuctionBidForwarderInput as g_, type SubmitPendingChangeCalldataArgs as ga, type SwapIntentStatus as gb, type SyncStatus as gc, TESTNET_69420 as gd, type TokenBalanceMrcIdentity as ge, type TokenBalanceRecord as gf, type TokenBalanceWithMetadata as gg, type TotalBurnedResponse as gh, type TpmAttestationResponse as gi, type TransactionReceipt as gj, type TransactionView as gk, type TxConfirmations as gl, type TxFeedReceipt as gm, type TxFeedTransaction as gn, type TxStatusFoundResponse as go, type TxStatusNotFoundResponse as gp, type TxStatusResponse as gq, type UpcomingDutiesResponse as gr, type UpcomingDutyMap as gs, type UpdateCharterCalldataArgs as gt, type UserAddressInput as gu, V1_BRIDGE_ALLOWED_FEE_TOKEN as gv, V1_BRIDGE_ALLOWED_PROTOCOL as gw, type VertexAtRound as gx, type VerticesAtRoundResponse as gy, type VoteClusterAdmitCalldataArgs as gz, type NativeAgentStateFilter as h, encodeCancelPendingChangeCalldata as h$, buildNativeNftSettleAuctionForwarderInput as h0, buildNativeNftSettleAuctionModuleCall as h1, buildNativeNftSweepExpiredListingsForwarderInput as h2, buildNativeNftSweepExpiredListingsModuleCall as h3, buildNativeSpotCancelOrderForwarderInput as h4, buildNativeSpotCancelOrderModuleCall as h5, buildNativeSpotCreateMarketForwarderInput as h6, buildNativeSpotCreateMarketModuleCall as h7, buildNativeSpotLimitOrderForwarderInput as h8, buildNativeSpotLimitOrderModuleCall as h9, decodeNativeReceiptResponse as hA, decodeNoEvmReceiptTranscript as hB, decodeOperatorFeeChargedEvent as hC, decodeOperatorNetworkMetadata as hD, decodeOperatorSealKey as hE, decodeOracleEvent as hF, decodePendingCharter as hG, decodeProbeAuthority as hH, decodeScoreServiceProbe as hI, decodeTimeWindow as hJ, decodeTxFeedResponse as hK, denyRootFor as hL, deriveArchiveChallenge as hM, deriveClobMarketId as hN, deriveClusterAnchorAddress as hO, deriveFeedId as hP, deriveNativeSpotMarketId as hQ, deriveNativeSpotOrderId as hR, destinationRoot as hS, encodeAnswerArchiveChallengeCalldata as hT, encodeAttestDkgReshareCalldata as hU, encodeAttestServiceProbeCalldata as hV, encodeBlockSelector as hW, encodeBridgeChallengeCalldata as hX, encodeBridgeClaimCalldata as hY, encodeCancelClusterJoinCalldata as hZ, encodeCancelOrderCalldata as h_, buildNativeSpotSettleLimitOrderForwarderInput as ha, buildNativeSpotSettleLimitOrderModuleCall as hb, buildNativeSpotSettleRoutedLimitOrderForwarderInput as hc, buildNativeSpotSettleRoutedLimitOrderModuleCall as hd, buildPlaceLimitOrderViaPlan as he, buildPlaceSpotLimitOrderPlan as hf, buildPlaceSpotMarketOrderExPlan as hg, buildPlaceSpotMarketOrderPlan as hh, categoryRoot as hi, clobAddressHex as hj, clusterApyPercent as hk, composeClaimBoundMessage as hl, computeNoEvmDacFinalityMessage as hm, computeNoEvmLeaderFinalityMessage as hn, computeNoEvmReceiptsRoot as ho, computeNoEvmRoundFinalityMessage as hp, computeNoEvmTargetReceiptHash as hq, computeQuoteLiquidity as hr, consumeNativeEvents as hs, decodeActiveCharter as ht, decodeClusterCharter as hu, decodeClusterDiversity as hv, decodeClusterFormedEvent as hw, decodeClusterJoinRequest as hx, decodeNativeAgentStateResponse as hy, decodeNativeMarketOrderBookDeltasResponse as hz, type NativeAgentStateResponse as i, getP2pSeeds as i$, encodeClaimPolicyByAddressCalldata as i0, encodeClusterCharter as i1, encodeCommitArchiveRootCalldata as i2, encodeCreateRequestCalldata as i3, encodeCreateRequestCanonical as i4, encodeDisableCalldata as i5, encodeEnableCalldata as i6, encodeExpireClusterJoinCalldata as i7, encodeFormClusterCalldata as i8, encodeFormClusterV2Calldata as i9, encodePublishOperatorSealKeyCalldata as iA, encodeRecoverOperatorNodeCalldata as iB, encodeReportServiceProbeCalldata as iC, encodeRequestClusterJoinCalldata as iD, encodeSetBridgeResumeCooldownCalldata as iE, encodeSetBridgeRouteFinalityCalldata as iF, encodeSetLotSizeCalldata as iG, encodeSetMinNotionalCalldata as iH, encodeSetOperatorDisplayCalldata as iI, encodeSetPolicyCalldata as iJ, encodeSetPolicyClaimCalldata as iK, encodeSetProbeAuthorityCalldata as iL, encodeSetTickSizeCalldata as iM, encodeSubmitBridgeProofCalldata as iN, encodeSubmitPendingChangeCalldata as iO, encodeUpdateCharterCalldata as iP, encodeVoteClusterAdmitCalldata as iQ, exportBridgeRouteCatalogueJson as iR, fetchChainInfoLatest as iS, fetchChainRegistryLatest as iT, formClusterMessage as iU, formClusterMessageHex as iV, formClusterMessageV2 as iW, formClusterMessageV2Hex as iX, formatOraclePrice as iY, getChainInfo as iZ, getNoEvmReceiptTrustPolicy as i_, encodeGetClusterJoinRequestCalldata as ia, encodeGetOperatorSealKeyCalldata as ib, encodeGetPendingCharterCalldata as ic, encodeGetProbeAuthorityCalldata as id, encodeLockBridgeConfigCalldata as ie, encodeNameAcceptTransferCall as ig, encodeNameProposeTransferCall as ih, encodeNameRegisterCall as ii, encodeNativeMarketModuleForwarderInput as ij, encodeNativeNftBuyListingCall as ik, encodeNativeNftCancelListingCall as il, encodeNativeNftCreateListingCall as im, encodeNativeNftPlaceAuctionBidCall as io, encodeNativeNftSettleAuctionCall as ip, encodeNativeNftSweepExpiredListingsCall as iq, encodeNativeSpotCancelOrderCall as ir, encodeNativeSpotCreateMarketCall as is, encodeNativeSpotLimitOrderCall as it, encodeNativeSpotSettleLimitOrderCall as iu, encodeNativeSpotSettleRoutedLimitOrderCall as iv, encodePlaceLimitOrderCalldata as iw, encodePlaceLimitOrderViaCalldata as ix, encodePlaceMarketOrderCalldata as iy, encodePlaceMarketOrderExCalldata as iz, type NativeMarketStateFilter as j, typedBech32ToAddress as j$, getRpcEndpoints as j0, hexToAddressBytes as j1, isBridgeAdminLockedRevert as j2, isBridgeCooldownZeroRevert as j3, isBridgeFinalityZeroRevert as j4, isBridgeResumeCooldownActiveRevert as j5, isConcreteServiceProbeStatus as j6, isNativeDecodedEvent as j7, isNativeMarketOrderBookStreamPayload as j8, isSinglePublicServiceProbeMask as j9, parseChainRegistryToml as jA, parseDkgResharePublicKeys as jB, parseNameCategory as jC, parseNativeDecodedEvent as jD, parseQuantity as jE, parseQuantityBig as jF, protocolNonceForEpoch as jG, proverMarketStateFromByte as jH, quoteOperatorFee as jI, rankBridgeRoutes as jJ, rankMarketsByVolume as jK, requestSighash as jL, requireTypedAddress as jM, selectBridgeTransferRoute as jN, serviceMaskToBitIndex as jO, serviceProbeStatusLabel as jP, setDestinationRoot as jQ, slotArchiveChallengePass as jR, slotClusterCharter as jS, slotClusterCharterDelegator as jT, slotClusterCharterMembers as jU, slotClusterServiceScore as jV, slotEpochChallengeSeed as jW, slotProbeAuthority as jX, slotScoreServiceProbe as jY, spendingPolicyAddressHex as jZ, submitSighash as j_, isValidNodeRegistryCapabilities as ja, isValidPublicServiceProbeMask as jb, nameLengthModifierX10 as jc, nameRegistrationCost as jd, nameRegistryAddressHex as je, nativeAgentStateFilterParams as jf, nativeEventMatches as jg, nativeEventsFilterParams as jh, nativeEventsFromHistory as ji, nativeEventsFromReceipt as jj, nativeMarketEventFilter as jk, nativeMarketEventsFromHistory as jl, nativeMarketEventsFromReceipt as jm, nativeMarketStateFilterParams as jn, noEvmReceiptTrustPolicyFromChainInfo as jo, nodeHostingClassFromByte as jp, nodeHostingClassToByte as jq, nodeRegistryAddressHex as jr, normalizeAddressHex as js, normalizeBridgeRouteCatalogue as jt, normalizePendingChangeKind as ju, oracleAddressHex as jv, oraclePriceToNumber as jw, packTimeWindow as jx, parseAddress as jy, parseBridgeRouteCatalogueJson as jz, type NativeMarketStateResponse as k, generateOperatorSealKeypair as k$, updateCharterMessage as k0, updateCharterMessageHex as k1, validateAddress as k2, validateBridgeRouteCatalogue as k3, verifyNoEvmArchiveProofSignatures as k4, verifyNoEvmBlockFinalityEvidenceMultisig as k5, verifyNoEvmBlockFinalityEvidenceThreshold as k6, verifyNoEvmFinalityEvidenceMultisig as k7, verifyNoEvmFinalityEvidenceThreshold as k8, verifyNoEvmReceiptProof as k9, type PlaintextSubmission as kA, SEAL_COMMIT_LEN as kB, SEAL_DK_LEN as kC, SEAL_EK_LEN as kD, SEAL_KEM_CT_LEN as kE, SEAL_KEM_SEED_LEN as kF, SEAL_KEY_LEN as kG, SEAL_NONCE_LEN as kH, SEAL_SHARE_LEN as kI, SEAL_TAG_LEN as kJ, STANDARD_ALGO_NUMBER_ML_DSA_65 as kK, type SealRandomSource as kL, type SealRecipient as kM, type SealedSubmission as kN, bincodeDecryptHint as kO, bincodeEncryptedEnvelope as kP, bincodeNonceAad as kQ, bincodeSignedTransaction as kR, buildEncryptedEnvelope as kS, buildEncryptedSubmission as kT, buildPlaintextSubmission as kU, cryptoRandomSource as kV, encodeMlDsa65Opaque as kW, encodeSealEnvelope as kX, encodeTransactionForHash as kY, encryptInnerTx as kZ, fetchEncryptionKey as k_, verifyNoEvmReceiptProofTrust as ka, ADDRESS_DERIVATION_DOMAIN as kb, CLUSTER_MLKEM_SHAMIR as kc, CLUSTER_MLKEM_SHAMIR_ALGO as kd, type ClusterSealKeyEntryInput as ke, DKG_AEAD_TAG_LEN as kf, DKG_NONCE_LEN as kg, type DecryptHint as kh, ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE as ki, ENUM_VARIANT_INDEX_ML_DSA_65 as kj, type EncryptedEnvelope as kk, type EncryptedSubmission as kl, type JsonRpcCallClient as km, type LythiumSealEnvelope as kn, ML_DSA_65_PUBLIC_KEY_LEN as ko, ML_DSA_65_SEED_LEN as kp, ML_DSA_65_SIGNATURE_LEN as kq, ML_DSA_65_SIGNING_KEY_LEN as kr, ML_KEM_768_CIPHERTEXT_LEN as ks, ML_KEM_768_ENCAPSULATION_KEY_LEN as kt, ML_KEM_768_SHARED_SECRET_LEN as ku, type NativeTxExtension as kv, type NativeTxExtensionDescriptor as kw, type NativeTxExtensionLike as kx, type NonceAad as ky, type OperatorSealKeypair as kz, type NativeMarketOrderBookDeltasRequest as l, getClusterSealKeys as l0, mlDsa65AddressBytes as l1, mlDsa65AddressFromPublicKey as l2, outerSigDigest as l3, parseClusterSealKeys as l4, sealRosterHash as l5, sealToCluster as l6, sealTransaction as l7, submitEncryptedEnvelope as l8, submitPlaintextTransaction as l9, submitSealedTransaction as la, submitTransactionWithPrivacy as lb, 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 };