@monolythium/core-sdk 0.4.15 → 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 +452 -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 +416 -23
- package/dist/index.js.map +1 -1
- package/dist/{submission-BnCjjGo0.d.cts → submission-BdBhOdg7.d.cts} +396 -1
- package/dist/{submission-BnCjjGo0.d.ts → submission-BdBhOdg7.d.ts} +396 -1
- package/package.json +1 -1
|
@@ -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,94 @@ 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;
|
|
2560
2674
|
type PendingChangeKind = "add" | "remove" | "rotate";
|
|
2561
2675
|
declare const PENDING_CHANGE_KIND_CODES: Record<PendingChangeKind, number>;
|
|
2562
2676
|
/** Canonical `ClusterFormed(uint32,uint64,address,bytes)` event topic0 (MB-5). */
|
|
@@ -2656,6 +2770,95 @@ interface ReportServiceProbeCalldataArgs {
|
|
|
2656
2770
|
latencyMs: number;
|
|
2657
2771
|
probeDigest: string | Uint8Array | readonly number[];
|
|
2658
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
|
+
}
|
|
2659
2862
|
declare class NodeRegistryError extends Error {
|
|
2660
2863
|
constructor(message: string);
|
|
2661
2864
|
}
|
|
@@ -2716,6 +2919,198 @@ declare function formClusterMessageV2Hex(activePubkeys: string | Uint8Array | re
|
|
|
2716
2919
|
* (NOT the V1 digest).
|
|
2717
2920
|
*/
|
|
2718
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;
|
|
2719
3114
|
/**
|
|
2720
3115
|
* Decode CJ-1 `getClusterJoinRequest(uint32,bytes32)` return data.
|
|
2721
3116
|
*
|
|
@@ -6550,4 +6945,4 @@ declare function submitTransactionWithPrivacy(args: {
|
|
|
6550
6945
|
class?: MempoolClass;
|
|
6551
6946
|
}): Promise<string>;
|
|
6552
6947
|
|
|
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 };
|
|
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 };
|