@monolythium/core-sdk 0.4.1 → 0.4.2

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.
@@ -2440,13 +2440,19 @@ declare const NODE_REGISTRY_SELECTORS: {
2440
2440
  readonly expireClusterJoin: string;
2441
2441
  /** `getClusterJoinRequest(uint32,bytes32)` — CJ-1 request status view. */
2442
2442
  readonly getClusterJoinRequest: string;
2443
+ /** `formCluster(bytes,bytes,bytes)` — no-foundation cluster formation by roster consent. */
2444
+ readonly formCluster: string;
2443
2445
  };
2444
- /** Legacy cluster-member pubkey width. Kept for genesis-roster and finality surfaces. */
2446
+ /** Cluster-member reference width used by genesis and formation rosters. */
2447
+ declare const NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES = 48;
2448
+ /** @deprecated Use NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES. */
2445
2449
  declare const NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES = 48;
2446
- /** @deprecated Use NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES. */
2450
+ /** @deprecated Use NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES. */
2447
2451
  declare const NODE_REGISTRY_BLS_PUBKEY_BYTES = 48;
2448
2452
  /** Full ML-DSA-65 consensus pubkey width used by register and pending-change calldata. */
2449
2453
  declare const NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES = 1952;
2454
+ /** ML-DSA-65 consensus signature width. */
2455
+ declare const NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES = 3309;
2450
2456
  /** ML-DSA-65 self-signature width used as register proof-of-possession. */
2451
2457
  declare const NODE_REGISTRY_CONSENSUS_POP_BYTES = 3309;
2452
2458
  /** DKG-reshare attestation signature width. Removal is tracked outside W1. */
@@ -2456,6 +2462,11 @@ declare const NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES = 96;
2456
2462
  declare const NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS = 5;
2457
2463
  declare const NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS = 7;
2458
2464
  declare const NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID: bigint;
2465
+ declare const NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT = 7;
2466
+ declare const NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT = 3;
2467
+ declare const NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT: number;
2468
+ declare const NODE_REGISTRY_FORM_CLUSTER_THRESHOLD = 7;
2469
+ declare const NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN: "PROTOCORE_NODE_REGISTRY_CLUSTER_FORM_V1\0";
2459
2470
  type PendingChangeKind = "add" | "remove" | "rotate";
2460
2471
  declare const PENDING_CHANGE_KIND_CODES: Record<PendingChangeKind, number>;
2461
2472
  /** Canonical `ClusterFormed(uint32,uint64,address,bytes)` event topic0 (MB-5). */
@@ -2498,10 +2509,16 @@ interface GetClusterJoinRequestCalldataArgs {
2498
2509
  clusterId: bigint | number | string;
2499
2510
  operatorId: string | Uint8Array | readonly number[];
2500
2511
  }
2512
+ interface FormClusterCalldataArgs {
2513
+ activePubkeys: string | Uint8Array | readonly number[];
2514
+ standbyPubkeys: string | Uint8Array | readonly number[];
2515
+ signatures: string | Uint8Array | readonly number[];
2516
+ }
2501
2517
  type ClusterJoinRequestStatus = "none" | "open" | "admitted" | "cancelled" | "expired" | "unknown";
2502
2518
  interface ClusterJoinRequestView {
2503
2519
  owner: string;
2504
2520
  requestEpoch: bigint;
2521
+ requestNonce?: bigint;
2505
2522
  snapshotThreshold: number;
2506
2523
  snapshotN: number;
2507
2524
  voteCount: number;
@@ -2540,6 +2557,9 @@ declare function encodeVoteClusterAdmitCalldata(args: VoteClusterAdmitCalldataAr
2540
2557
  declare function encodeCancelClusterJoinCalldata(args: CancelClusterJoinCalldataArgs): string;
2541
2558
  declare function encodeExpireClusterJoinCalldata(args: ExpireClusterJoinCalldataArgs): string;
2542
2559
  declare function encodeGetClusterJoinRequestCalldata(args: GetClusterJoinRequestCalldataArgs): string;
2560
+ declare function formClusterMessage(activePubkeys: string | Uint8Array | readonly number[], standbyPubkeys: string | Uint8Array | readonly number[]): Uint8Array;
2561
+ declare function formClusterMessageHex(activePubkeys: string | Uint8Array | readonly number[], standbyPubkeys: string | Uint8Array | readonly number[]): string;
2562
+ declare function encodeFormClusterCalldata(args: FormClusterCalldataArgs): string;
2543
2563
  /**
2544
2564
  * Decode CJ-1 `getClusterJoinRequest(uint32,bytes32)` return data.
2545
2565
  *
@@ -2655,7 +2675,11 @@ interface ClusterFormedEvent {
2655
2675
  effectiveEpoch: bigint;
2656
2676
  /** Primary anchor address (`0x` 20 bytes). */
2657
2677
  anchorAddress: string;
2658
- /** Concatenated legacy 48-byte cluster-member pubkeys (`0x` hex). */
2678
+ /**
2679
+ * Concatenated 48-byte cluster-member references (`0x` hex). PQ
2680
+ * rosters place the 32-byte operator id in the first 32 bytes and
2681
+ * zero-pad the remaining 16 bytes.
2682
+ */
2659
2683
  operatorRoster: string;
2660
2684
  }
2661
2685
  /**
@@ -5963,6 +5987,255 @@ declare function mlDsa65AddressFromPublicKey(publicKey: Uint8Array | readonly nu
5963
5987
  declare function mlDsa65AddressBytes(publicKey: Uint8Array | readonly number[]): Uint8Array;
5964
5988
  declare function encodeMlDsa65Opaque(raw: Uint8Array | readonly number[]): Uint8Array;
5965
5989
 
5990
+ /**
5991
+ * LythiumSeal scheme-3 client-side seal primitive.
5992
+ *
5993
+ * Post-quantum cluster-threshold encrypted-mempool sealing:
5994
+ * cluster-ML-KEM-768 (FIPS-203) + information-theoretic GF(256) Shamir
5995
+ * `t`-of-`n` + committing ChaCha20-Poly1305 (with an explicit SHAKE256
5996
+ * key-commitment). A signed transaction body is sealed to a committee of
5997
+ * `n` operators such that any `t` of them, each holding only its own
5998
+ * ML-KEM decapsulation key, must cooperate to recover the plaintext. No
5999
+ * single operator (and no minority of `< t`) can read the body.
6000
+ *
6001
+ * This is a byte-exact port of the standalone `lythiumseal` Rust crate
6002
+ * (github.com/monolythium/lythiumseal) plus the chain-side
6003
+ * `LythiumSealEnvelope` wire shape from `mono-core`'s mempool
6004
+ * (`seal_to_cluster`). Byte-compatibility is proven by a cross-language
6005
+ * KAT (`tests/lythiumseal-kat.test.ts`) against vectors generated from the
6006
+ * Rust reference: the same fixed roster + deterministic draw order
6007
+ * reproduces the exact envelope bincode bytes the chain accepts, and a
6008
+ * Rust-sealed envelope round-trips through the TS decoder.
6009
+ *
6010
+ * The cryptography is standardized: ML-KEM-768 from `@noble/post-quantum`,
6011
+ * ChaCha20-Poly1305 from `@noble/ciphers`, and SHAKE256 from
6012
+ * `@noble/hashes`. The GF(256) Shamir layer is the AES field (reduction
6013
+ * polynomial 0x11b) implemented in-module to match the crate exactly.
6014
+ */
6015
+ /** ML-KEM-768 encapsulation-key byte length. */
6016
+ declare const SEAL_EK_LEN = 1184;
6017
+ /** ML-KEM-768 decapsulation-key byte length. */
6018
+ declare const SEAL_DK_LEN = 2400;
6019
+ /** ML-KEM-768 ciphertext byte length. */
6020
+ declare const SEAL_KEM_CT_LEN = 1088;
6021
+ /** ML-KEM-768 keygen seed length (`d || z`, FIPS-203). */
6022
+ declare const SEAL_KEM_SEED_LEN = 64;
6023
+ /** AEAD key length (ChaCha20-Poly1305 / body key). */
6024
+ declare const SEAL_KEY_LEN = 32;
6025
+ /** AEAD nonce length (96-bit). */
6026
+ declare const SEAL_NONCE_LEN = 12;
6027
+ /** Poly1305 tag length. */
6028
+ declare const SEAL_TAG_LEN = 16;
6029
+ /** Explicit SHAKE256 key-commitment length. */
6030
+ declare const SEAL_COMMIT_LEN = 32;
6031
+ /** Shamir share wire length (`index || value`). */
6032
+ declare const SEAL_SHARE_LEN: number;
6033
+ /** Scheme selector for the cluster-ML-KEM + Shamir threshold body. */
6034
+ declare const CLUSTER_MLKEM_SHAMIR = 3;
6035
+ /**
6036
+ * Random source for a seal: fills `dest` with random bytes. Production
6037
+ * callers pass a CSPRNG-backed source ({@link cryptoRandomSource}); the
6038
+ * KAT passes a deterministic source so the seal bytes are reproducible.
6039
+ *
6040
+ * Each call must consume the source the same way the Rust reference does:
6041
+ * the deterministic source models `rand_core`'s `fill_bytes`, which fills
6042
+ * in 8-byte chunks (one `u64` per chunk) and discards the unused tail of
6043
+ * the final chunk of each call.
6044
+ */
6045
+ interface SealRandomSource {
6046
+ fillBytes(dest: Uint8Array): void;
6047
+ }
6048
+ /** CSPRNG-backed source (WebCrypto). The default for production seals. */
6049
+ declare function cryptoRandomSource(): SealRandomSource;
6050
+ interface CommittingBody {
6051
+ nonce: Uint8Array;
6052
+ ct: Uint8Array;
6053
+ commitment: Uint8Array;
6054
+ }
6055
+ /**
6056
+ * `keccak256(domain || cluster_id_le || t || n || concat(idx || ek)...)`.
6057
+ * Commits to the exact recipient ek set + order. Operators and wallets
6058
+ * MUST compute it identically; this is the single canonical site.
6059
+ *
6060
+ * keccak256 is taken from the ml-dsa module's hash import to avoid a second
6061
+ * keccak dependency; passed in by the caller to keep this module
6062
+ * cipher-only.
6063
+ */
6064
+ declare function sealRosterHash(keccak256: (input: Uint8Array) => Uint8Array, clusterId: number, t: number, n: number, roster: ReadonlyArray<{
6065
+ operatorIndex: number;
6066
+ ek: Uint8Array;
6067
+ }>): Uint8Array;
6068
+ /** One recipient slot in the scheme-3 envelope. */
6069
+ interface SealRecipient {
6070
+ operatorIndex: number;
6071
+ kemCt: Uint8Array;
6072
+ wrapped: CommittingBody;
6073
+ }
6074
+ /**
6075
+ * Scheme-3 LythiumSeal envelope - the encrypted-tx body for the
6076
+ * cluster-ML-KEM + Shamir threshold path. Bincode-encodes into the bytes
6077
+ * that ride inside `EncryptedEnvelope.ciphertext`.
6078
+ */
6079
+ interface LythiumSealEnvelope {
6080
+ clusterId: number;
6081
+ epoch: bigint;
6082
+ rosterHash: Uint8Array;
6083
+ t: number;
6084
+ n: number;
6085
+ aeadBody: CommittingBody;
6086
+ recipients: SealRecipient[];
6087
+ }
6088
+ /**
6089
+ * Bincode-encode (bincode 1.3 defaults: LE fixint, `u64` length prefixes,
6090
+ * raw fixed-size arrays) the envelope into the `EncryptedEnvelope.ciphertext`
6091
+ * body bytes. Byte-identical to `LythiumSealEnvelope::encode` in mono-core.
6092
+ */
6093
+ declare function encodeSealEnvelope(env: LythiumSealEnvelope): Uint8Array;
6094
+ /**
6095
+ * Seal `plaintext` to the cluster's ordered `recipientEks` (`n` operators)
6096
+ * at reconstruction threshold `t`, bound to `(clusterId, epoch,
6097
+ * rosterHash)`. Draws a fresh body key for every call (nonce safety rests
6098
+ * on body-key freshness, not nonce uniqueness - see the crate invariants),
6099
+ * GF(256) Shamir `t`-of-`n` splits it, and ML-KEM-encapsulates one share
6100
+ * to each operator's encapsulation key under a KDF-bound member KEK.
6101
+ *
6102
+ * The result is the `LythiumSealEnvelope` (scheme 3) that nests inside the
6103
+ * outer `EncryptedEnvelope.ciphertext`. Recovering the plaintext requires
6104
+ * `t` operators to each decapsulate their own slot; no single operator can.
6105
+ *
6106
+ * @param rng deterministic source for the KAT; defaults to a CSPRNG.
6107
+ */
6108
+ declare function sealToCluster(args: {
6109
+ plaintext: Uint8Array;
6110
+ recipientEks: ReadonlyArray<Uint8Array>;
6111
+ t: number;
6112
+ clusterId: number;
6113
+ epoch: bigint;
6114
+ rosterHash: Uint8Array;
6115
+ rng?: SealRandomSource;
6116
+ }): LythiumSealEnvelope;
6117
+
6118
+ /**
6119
+ * Client-side scheme-3 LythiumSeal seal path for the wallet/SDK.
6120
+ *
6121
+ * `getClusterSealKeys` reads the cluster seal roster (per-operator ML-KEM-768
6122
+ * encapsulation keys + `(t, n)` + roster hash + epoch). `sealTransaction`
6123
+ * turns a signed inner transaction into the scheme-3 `LythiumSealEnvelope`,
6124
+ * wraps it in an `EncryptedEnvelope` with the outer ML-DSA-65 signature, and
6125
+ * yields the wire bytes mono-core's `lyth_submitEncrypted` accepts.
6126
+ *
6127
+ * Byte-compatibility with the chain is proven by the cross-language KAT in
6128
+ * `tests/lythiumseal-kat.test.ts`.
6129
+ */
6130
+
6131
+ /** Algorithm tag the node serves for the scheme-3 seal path. */
6132
+ declare const CLUSTER_MLKEM_SHAMIR_ALGO = "cluster-mlkem768-shamir";
6133
+ /**
6134
+ * The cluster seal roster the SDK seals a transaction body to.
6135
+ *
6136
+ * Built from the `lyth_getClusterSealKeys(clusterId)` RPC response (or read
6137
+ * from genesis when that RPC is disabled on the public profile): the ordered
6138
+ * per-operator ML-KEM-768 encapsulation keys + the `(t, n)` threshold + the
6139
+ * roster hash + the epoch.
6140
+ */
6141
+ interface ClusterSealKeys {
6142
+ algo: string;
6143
+ clusterId: number;
6144
+ epoch: bigint;
6145
+ /** 32-byte roster hash the seal context binds. */
6146
+ rosterHash: Uint8Array;
6147
+ /** Reconstruction threshold `t`. */
6148
+ t: number;
6149
+ /** Total operators `n`. */
6150
+ n: number;
6151
+ /** Per-operator 1184-byte ML-KEM-768 encapsulation keys, ordered `1..=n`. */
6152
+ recipientEks: Uint8Array[];
6153
+ }
6154
+ /** One operator's entry in a roster source (RPC JSON or genesis). */
6155
+ interface ClusterSealKeyEntryInput {
6156
+ operatorIndex: number;
6157
+ /** `0x`-hex of the operator's 1184-byte ML-KEM-768 encapsulation key. */
6158
+ mlKemEk: string;
6159
+ }
6160
+ /** A cluster seal roster as served by the RPC or read from genesis. */
6161
+ interface ClusterSealKeysSource {
6162
+ algo?: string;
6163
+ clusterId: number;
6164
+ epoch: number | string | bigint;
6165
+ /** `0x`-hex of the 32-byte roster hash (optional; recomputed + verified). */
6166
+ rosterHash?: string;
6167
+ t: number;
6168
+ n: number;
6169
+ roster: ClusterSealKeyEntryInput[];
6170
+ }
6171
+ /**
6172
+ * Normalize a roster source into the typed {@link ClusterSealKeys} the SDK
6173
+ * seals against. The roster hash is RECOMPUTED from the ordered ek set via
6174
+ * the canonical `seal_roster_hash` and, when the source carries one, the
6175
+ * recomputed value must match - so a wallet can never seal under a roster
6176
+ * hash that does not commit to the exact recipient set it is sealing to.
6177
+ *
6178
+ * @throws if the roster is empty, an ek has the wrong length, the operator
6179
+ * indices are not the contiguous `1..=n` order, the threshold is out of
6180
+ * `2 <= t <= n`, or a supplied roster hash does not match the recomputed one.
6181
+ */
6182
+ declare function parseClusterSealKeys(source: ClusterSealKeysSource): ClusterSealKeys;
6183
+ /**
6184
+ * Fetch the cluster seal roster from a running node via
6185
+ * `lyth_getClusterSealKeys(clusterId)`.
6186
+ *
6187
+ * NOTE: this RPC is DISABLED on the public node profile. When it returns
6188
+ * "method not found" / "unavailable", read the roster from genesis instead
6189
+ * and pass it through {@link parseClusterSealKeys} - the roster lives in the
6190
+ * genesis `[[clusters.members]]` `seal_ek` fields, which is exactly what the
6191
+ * RPC would otherwise serve.
6192
+ *
6193
+ * @throws if the RPC is unavailable (carry the roster as input instead) or
6194
+ * the served roster does not validate.
6195
+ */
6196
+ declare function getClusterSealKeys(client: RpcClient, clusterId?: number): Promise<ClusterSealKeys>;
6197
+ /** A built scheme-3 encrypted submission, ready for `lyth_submitEncrypted`. */
6198
+ interface SealedSubmission {
6199
+ /** Bincode `EncryptedEnvelope` wire bytes, `0x`-prefixed hex. */
6200
+ envelopeWireHex: string;
6201
+ /** Bincode `EncryptedEnvelope` wire bytes. */
6202
+ envelopeWireBytes: Uint8Array;
6203
+ /** Length of the inner scheme-3 ciphertext body in bytes. */
6204
+ ciphertextBytes: number;
6205
+ }
6206
+ /**
6207
+ * Seal a signed inner transaction to the cluster and wrap it in an
6208
+ * `EncryptedEnvelope` with the outer ML-DSA-65 signature.
6209
+ *
6210
+ * `signedTxBincode` is the bincode `SignedTransaction` wire bytes (the body
6211
+ * `mesh_submitTx` would otherwise carry in the clear). `aad` is the
6212
+ * authenticated envelope header; per Law §3.6 / R3-H08 its fee fields MUST
6213
+ * mirror the inner tx's fee fields exactly, so the chain's `verify_inner_match`
6214
+ * passes on reveal - the caller is responsible for building it from the same
6215
+ * fields it signed.
6216
+ *
6217
+ * The outer signature is taken over the canonical preimage
6218
+ * `keccak256(bincode(aad) || ciphertext || bincode(hint) || sender_pubkey)`,
6219
+ * identical to mono-core's `EncryptedEnvelope::signed_digest`.
6220
+ *
6221
+ * @param rng deterministic source for the KAT; defaults to a CSPRNG.
6222
+ */
6223
+ declare function sealTransaction(args: {
6224
+ signedTxBincode: Uint8Array;
6225
+ clusterSealKeys: ClusterSealKeys;
6226
+ aad: NonceAad;
6227
+ senderAddress: Uint8Array;
6228
+ senderPubkey: Uint8Array;
6229
+ signOuterDigest: (digest: Uint8Array) => Promise<Uint8Array> | Uint8Array;
6230
+ rng?: SealRandomSource;
6231
+ }): Promise<SealedSubmission>;
6232
+ /**
6233
+ * Submit a built scheme-3 encrypted envelope through `lyth_submitEncrypted`.
6234
+ *
6235
+ * @returns the mempool tx hash the node assigns on admission.
6236
+ */
6237
+ declare function submitSealedTransaction(client: RpcClient, submission: SealedSubmission): Promise<string>;
6238
+
5966
6239
  interface JsonRpcCallClient {
5967
6240
  call<T>(method: string, params?: unknown): Promise<T>;
5968
6241
  }
@@ -6004,40 +6277,27 @@ declare function fetchEncryptionKey(client: JsonRpcCallClient): Promise<Encrypti
6004
6277
  /**
6005
6278
  * Error message returned when an encrypted-mempool submission is attempted.
6006
6279
  *
6007
- * The encrypted-submit path is gated OFF until the chain's MB-3 Ferveo
6008
- * threshold decryption is live (see {@link buildEncryptedSubmission}).
6280
+ * Scheme-3 encrypted submission needs a cluster seal roster. Public node
6281
+ * profiles may keep `lyth_getClusterSealKeys` disabled, in which case callers
6282
+ * should pass a roster source from the pinned genesis/chain registry.
6009
6283
  */
6010
- declare const ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE = "encrypted mempool submission unavailable until MB-3 threshold decryption is active";
6284
+ declare const ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE = "private submission requires cluster seal keys; pass clusterSealKeysSource or enable lyth_getClusterSealKeys";
6011
6285
  /**
6012
- * Encrypted-mempool submission is GATED OFF.
6013
- *
6014
- * The single-key ML-KEM-768 `scheme: 0` envelope this used to build is the
6015
- * RETIRED scheme: a single operator holding the cluster decryption key could
6016
- * decrypt the inner transaction, violating the threshold-privacy guarantee
6017
- * the encrypted mempool promises. The live chain runs with plaintext
6018
- * submission as the default and does NOT run threshold decryption yet, so
6019
- * there is no safe encrypted path to emit.
6020
- *
6021
- * This helper therefore refuses to build any envelope and throws. It never
6022
- * produces a `scheme: 0` (or any) envelope, so a wallet can never be tricked
6023
- * into believing its transaction is privately decryptable by a threshold of
6024
- * operators when it is in fact decryptable by one.
6025
- *
6026
- * Use {@link buildPlaintextSubmission} / {@link submitPlaintextTransaction}
6027
- * (the unaffected default path) for transaction submission.
6286
+ * Build a scheme-3 LythiumSeal encrypted-mempool submission.
6028
6287
  *
6029
- * TODO(MB-3): when the chain activates MB-3 threshold decryption, port the
6030
- * chain's Ferveo `scheme = 2` path here — the `ThresholdPubkey` is a 96-byte
6031
- * BLS12-381 G1 element fetched from `lyth_getEncryptionKey`, and the inner tx
6032
- * is encrypted to that threshold public key (not a single ML-KEM-768
6033
- * encapsulation key). Only then may an envelope be emitted again.
6034
- *
6035
- * @throws always — the encrypted path is unavailable.
6288
+ * The caller may pass already parsed cluster keys, a JSON roster source, or
6289
+ * allow the SDK to fetch `lyth_getClusterSealKeys(clusterId)`. The single-key
6290
+ * envelope path stays retired; this function only emits the threshold
6291
+ * cluster-sealed envelope accepted by `lyth_submitEncrypted`.
6036
6292
  */
6037
- declare function buildEncryptedSubmission(_args: {
6293
+ declare function buildEncryptedSubmission(args: {
6294
+ client?: JsonRpcCallClient;
6038
6295
  backend: MlDsa65Backend;
6039
6296
  tx: NativeEvmTxFields;
6040
- encryptionKey: EncryptionKey;
6297
+ encryptionKey?: EncryptionKey;
6298
+ clusterId?: number;
6299
+ clusterSealKeys?: ClusterSealKeys;
6300
+ clusterSealKeysSource?: ClusterSealKeysSource;
6041
6301
  class?: MempoolClass;
6042
6302
  }): Promise<EncryptedSubmission>;
6043
6303
  declare function submitEncryptedEnvelope(client: JsonRpcCallClient, envelopeWireHex: string): Promise<string>;
@@ -6075,23 +6335,15 @@ declare function buildPlaintextSubmission(args: {
6075
6335
  declare function submitPlaintextTransaction(client: JsonRpcCallClient, signedTxWireHex: string, expectedTxHashHex: string): Promise<string>;
6076
6336
  /**
6077
6337
  * Build, sign, and submit a native transaction with an explicit
6078
- * encryption toggle. `private == false` (the default for the RC testnet
6079
- * / operator posture) routes through the plaintext `mesh_submitTx`
6080
- * path; `private == true` routes through the encrypted pipeline.
6081
- * Wallets wire a UI privacy toggle straight onto `private`.
6338
+ * encryption toggle. `private == false` routes through the plaintext
6339
+ * `mesh_submitTx` path; `private == true` routes through the scheme-3
6340
+ * LythiumSeal encrypted pipeline.
6082
6341
  *
6083
6342
  * Mirrors `TxClient::build_sign_submit_with_privacy` in the Rust SDK.
6084
- * The default is PLAINTEXT and is fully supported.
6085
- *
6086
- * MB-3 gate: `private === true` is currently UNAVAILABLE — the encrypted
6087
- * path throws {@link ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE} via
6088
- * {@link buildEncryptedSubmission} because the chain does not yet run
6089
- * Ferveo threshold decryption and the retired single-key scheme is unsafe.
6090
- * Keep wallet privacy toggles disabled until MB-3 activates.
6091
6343
  *
6092
6344
  * @returns for the plaintext path, the node-echoed-and-validated canonical
6093
- * native tx hash (`0x`-prefixed).
6094
- * @throws when `private === true` (encrypted submission unavailable).
6345
+ * native tx hash (`0x`-prefixed); for the private path, the locally computed
6346
+ * inner native tx hash after the encrypted envelope is admitted.
6095
6347
  */
6096
6348
  declare function submitTransactionWithPrivacy(args: {
6097
6349
  client: JsonRpcCallClient;
@@ -6099,7 +6351,10 @@ declare function submitTransactionWithPrivacy(args: {
6099
6351
  tx: NativeEvmTxFields;
6100
6352
  private: boolean;
6101
6353
  encryptionKey?: EncryptionKey;
6354
+ clusterId?: number;
6355
+ clusterSealKeys?: ClusterSealKeys;
6356
+ clusterSealKeysSource?: ClusterSealKeysSource;
6102
6357
  class?: MempoolClass;
6103
6358
  }): Promise<string>;
6104
6359
 
6105
- export { type AddressActivityEntryEnriched 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 ClusterJoinRequestView as K, type AddressKind as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, ADDRESS_HRP as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, ADDRESS_KIND_HRPS as U, API_STREAM_TOPICS as V, type AccountPolicy as W, type AccountProofResponse as X, type Address as Y, type AddressActivityArchiveRedirect as Z, type AddressActivityEntry as _, type RuntimeUpgradeStatus as a, type ClobMarketAssets as a$, type AddressActivityKind as a0, type AddressActivityKindResponse as a1, type AddressActivityKindRetention as a2, AddressError as a3, type AddressLabelRecord as a4, type AddressValidation as a5, type AgentReputationCategoryScope as a6, type AgentReputationRecord as a7, type AgentReputationResponse as a8, type ApiStreamTopic as a9, type BridgeRouteCandidate as aA, type BridgeRouteCatalogue as aB, BridgeRouteCatalogueError as aC, type BridgeRouteCatalogueJsonOptions as aD, type BridgeRouteCataloguePayload as aE, type BridgeRouteCatalogueRoute as aF, type BridgeRouteCatalogueValidation as aG, type BridgeRouteDisclosure as aH, type BridgeRouteSelection as aI, type BridgeRoutesSource as aJ, type BridgeTransferIntent as aK, type BridgeTransferRequest as aL, type BridgeVerifierDisclosure as aM, CHAIN_REGISTRY as aN, CHAIN_REGISTRY_RAW_BASE as aO, CLOB_MARKET_ID_DOMAIN_TAG as aP, CLOB_SELECTORS as aQ, CLUSTER_FORMED_EVENT_SIG as aR, type CancelClusterJoinCalldataArgs as aS, type CancelPendingChangeCalldataArgs as aT, type CancelSpotOrderArgs as aU, type CapabilitiesResponse as aV, type CapabilityDescriptor as aW, type ChainInfo as aX, type ChainRegistry as aY, type CheckpointRecord as aZ, type CirculatingSupplyResponse as a_, type ApiStreamTopicMetadata as aa, type ApiStreamTopicRetention as ab, type AssetPolicy as ac, type AttestDkgReshareCalldataArgs as ad, type AttestationWindow as ae, BRIDGE_QUOTE_API_BLOCKED_REASON as af, BRIDGE_REVERT_TAGS as ag, BRIDGE_SELECTORS as ah, BRIDGE_SUBMIT_API_BLOCKED_REASON as ai, type BlockHeader as aj, type BlockTag as ak, type BlsCertificateResponse as al, type BridgeAdminControl as am, type BridgeAnchorState as an, type BridgeBreakerState as ao, type BridgeBytesInput as ap, type BridgeCircuitBreakerFields as aq, type BridgeCircuitBreakerState as ar, type BridgeDrainCap as as, type BridgeDrainStatus as at, type BridgeHealthRecord as au, type BridgeHealthResponse as av, BridgePrecompileError as aw, type BridgeQuoteSubmitReadiness as ax, type BridgeRiskTier as ay, type BridgeRouteAssessment as az, type NativeReceiptResponse as b, MAX_NATIVE_RECEIPT_EVENTS as b$, type ClobMarketRecord as b0, type ClobMarketSummary as b1, type ClobTrade as b2, type ClusterAprResponse as b3, type ClusterDelegatorsResponse as b4, type ClusterDirectoryEntryResponse as b5, type ClusterDirectoryPageResponse as b6, type ClusterDiversity as b7, type ClusterDiversityView as b8, type ClusterEntityResponse as b9, type EncodeNativeNftSettleAuctionArgs as bA, type EncodeNativeNftSweepExpiredListingsArgs as bB, type EncodeNativeSpotCancelOrderArgs as bC, type EncodeNativeSpotCreateMarketArgs as bD, type EncodeNativeSpotLimitOrderArgs as bE, type EncodeNativeSpotSettleLimitOrderArgs as bF, type EncodeNativeSpotSettleRoutedLimitOrderArgs as bG, type EncryptionKeyResponse as bH, type EntityRatchetResponse as bI, type EthSendTransactionRequest as bJ, type ExpireClusterJoinCalldataArgs as bK, type ExplorerEndpoint as bL, FEED_ID_DOMAIN_TAG as bM, type FeeHistoryResponse as bN, type GapRange as bO, type GapRecord as bP, type GapRecordsResponse as bQ, type GetClusterJoinRequestCalldataArgs as bR, type Hash as bS, type Hex as bT, type IndexerStatus as bU, type JailStatusWindow as bV, type KeyRotationWindow as bW, type ListProofRequestsResponse as bX, type LythUpgradePlanStatus as bY, type LythUpgradeStatusResponse as bZ, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES as b_, type ClusterFormedEvent as ba, type ClusterJoinRequestStatus as bb, type ClusterMemberResponse as bc, type ClusterNameResponse as bd, type ClusterResignationRow as be, type ClusterResignationsResponse as bf, type ClusterStatusResponse as bg, type CreateRequestCanonicalArgs as bh, DIVERSITY_SCORE_MAX as bi, type DagParent as bj, type DagParentsResponse as bk, type DagSyncStatus as bl, type DecodeTxExtension as bm, type DecodeTxLog as bn, type DecodeTxPqAttestation as bo, type DecodeTxResponse as bp, type DelegationCapResponse as bq, type DelegationHistoryRecord as br, type DelegationRow as bs, type DelegationsResponse as bt, type DutyAbsence as bu, EMPTY_ROOT as bv, type EncodeNativeNftBuyListingArgs as bw, type EncodeNativeNftCancelListingArgs as bx, type EncodeNativeNftCreateListingArgs as by, type EncodeNativeNftPlaceAuctionBidArgs as bz, type NativeDecodedEvent as c, type NativeAgentPolicySpendStateRecord as c$, ML_DSA_65_PUBLIC_KEY_LEN$1 as c0, ML_DSA_65_SIGNATURE_LEN$1 as c1, MULTISIG_ADDRESS_DERIVATION_DOMAIN as c2, MarketActionError as c3, type MarketTransactionPlan as c4, type MempoolSnapshot as c5, type MeshDecodedTx as c6, type MeshSignedTxResponse as c7, type MeshTxIntent as c8, type MeshUnsignedTxResponse as c9, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES as cA, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS as cB, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS as cC, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES as cD, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES as cE, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID as cF, NODE_REGISTRY_PUBLIC_SERVICE_MASK as cG, NODE_REGISTRY_SELECTORS as cH, NO_EVM_ARCHIVE_PROOF_SCHEMA as cI, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as cJ, NO_EVM_FINALITY_EVIDENCE_SCHEMA as cK, NO_EVM_FINALITY_EVIDENCE_SOURCE as cL, NO_EVM_RECEIPTS_ROOT_DOMAIN as cM, NO_EVM_RECEIPT_CODEC as cN, NO_EVM_RECEIPT_PROOF_SCHEMA as cO, NO_EVM_RECEIPT_PROOF_TYPE as cP, NO_EVM_RECEIPT_ROOT_ALGORITHM as cQ, type NameCategory as cR, type NameOfResponse as cS, type NameRegistrationQuote as cT, NameRegistryError as cU, type NativeAgentArbiterStateRecord as cV, type NativeAgentAttestationStateRecord as cW, type NativeAgentAvailabilityStateRecord as cX, type NativeAgentConsentStateRecord as cY, type NativeAgentEscrowStateRecord as cZ, type NativeAgentIssuerStateRecord as c_, type MetricsRangeResponse as ca, type MetricsRangeSample as cb, type MetricsRangeSeries as cc, type MetricsRangeStatus as cd, type MrcAccountRecord as ce, type MrcMetadataRecord as cf, type MrcPolicyRecord as cg, type MrcPolicySpendRecord as ch, NAME_BASE_MULTIPLIER as ci, NAME_FALLBACK_FEE_UNIT_LYTHOSHI as cj, NAME_LABEL_MAX_LEN as ck, NAME_LABEL_MIN_LEN as cl, NAME_MAX_LEN as cm, NAME_REGISTRY_SELECTORS as cn, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE as co, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY as cp, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET as cq, NATIVE_MARKET_EVENT_FAMILY as cr, NATIVE_MARKET_MODULE_ADDRESS as cs, NATIVE_MARKET_MODULE_ADDRESS_BYTES as ct, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as cu, NODE_REGISTRY_BLS_PUBKEY_BYTES as cv, NODE_REGISTRY_CAPABILITIES as cw, NODE_REGISTRY_CAPABILITY_MASK as cx, NODE_REGISTRY_CONSENSUS_POP_BYTES as cy, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES as cz, type NativeEventFilter as d, NodeRegistryError as d$, type NativeAgentPolicyStateRecord as d0, type NativeAgentReputationReviewStateRecord as d1, type NativeAgentServiceStateRecord as d2, type NativeAgentStateFilterParamValue as d3, type NativeAgentStateResponseFilters as d4, type NativeAgentStateSource as d5, type NativeCallForwarderArtifact as d6, type NativeCollectionRoyaltyStateRecord as d7, type NativeEventConsumer as d8, type NativeEventProjection as d9, type NetworkClientOptions as dA, type NetworkSlug as dB, type NoEvmArchiveCoveringSnapshot as dC, type NoEvmArchiveProof as dD, type NoEvmArchiveSignatureVerification as dE, type NoEvmArchiveSignatureVerificationIssue as dF, type NoEvmArchiveSignatureVerificationIssueCode as dG, type NoEvmArchiveTrustedSigner as dH, type NoEvmBlockBlsFinalityVerification as dI, type NoEvmBlockRoundFinalityVerification as dJ, type NoEvmBlsFinalityVerification as dK, type NoEvmFinalityBlockReference as dL, type NoEvmFinalityCertificate as dM, type NoEvmFinalityEvidence as dN, type NoEvmReceiptFinalityTrustPolicy as dO, type NoEvmReceiptProof as dP, NoEvmReceiptProofError as dQ, type NoEvmReceiptProofErrorCode as dR, type NoEvmReceiptProofVerification as dS, type NoEvmReceiptTrustIssue as dT, type NoEvmReceiptTrustIssueCode as dU, type NoEvmReceiptTrustPolicy as dV, type NoEvmReceiptTrustVerification as dW, type NoEvmReceiptTrustedBlsSigner as dX, type NoEvmReceiptTrustedSigner as dY, type NoEvmRoundFinalityVerification as dZ, type NodeHostingClass as d_, type NativeEventsResponseFilters as da, type NativeEventsSource as db, type NativeMarketAddressInput as dc, type NativeMarketAddressKind as dd, type NativeMarketForwarderInput as de, type NativeMarketModuleCallEnvelope as df, type NativeMarketModuleContractCall as dg, type NativeMarketOrderBookDelta as dh, type NativeMarketOrderBookDeltasResponseFilters as di, type NativeMarketOrderBookDeltasSource as dj, type NativeMarketOrderBookStreamAction as dk, type NativeMarketOrderBookStreamPayload as dl, type NativeMarketStateFilterParamValue as dm, type NativeMarketStateResponseFilters as dn, type NativeMarketStateSource as dp, type NativeModuleForwarderDescriptor as dq, type NativeMrcPolicyProjection as dr, type NativeNftAssetStandard as ds, type NativeNftListingKind as dt, type NativeNftListingStateRecord as du, type NativeReceiptCounters as dv, type NativeReceiptEvent as dw, type NativeReceiptSource as dx, type NativeSpotMarketStateRecord as dy, type NativeSpotOrderStateRecord as dz, type TypedNativeReceiptEvent as e, type RedemptionQueueTicket as e$, OPERATOR_ROUTER_EVENT_SIGS as e0, OPERATOR_ROUTER_SELECTORS as e1, OPERATOR_ROUTER_SIGS as e2, ORACLE_EVENT_SIGS as e3, type OperatorAuthorityResponse as e4, type OperatorFeeChargedEvent as e5, type OperatorFeeConfig as e6, type OperatorFeeQuote as e7, type OperatorInfoResponse as e8, type OperatorNetworkMetadata as e9, type PeerSummaryAggregate as eA, type PendingChangeKind as eB, type PendingRewardsRow as eC, type PendingTxSummary as eD, type PlaceLimitOrderViaArgs as eE, type PlaceLimitOrderViaPlan as eF, type PlaceSpotLimitOrderArgs as eG, type PlaceSpotMarketOrderArgs as eH, type PlaceSpotMarketOrderExArgs as eI, type PrecompileCatalogueResponse as eJ, type PrecompileDescriptor as eK, type ProofRequestRow as eL, type ProofRequestView as eM, type ProverBidView as eN, type ProverBidsResponse as eO, ProverMarketError as eP, type ProverMarketState as eQ, type ProverMarketStatusResponse as eR, type Quantity as eS, type QuoteLiquidity as eT, RESERVED_ADDRESS_HRPS as eU, type RankedBridgeRoute as eV, type ReceiptProofTrustArchivePolicy as eW, type ReceiptProofTrustArchiveSigner as eX, type ReceiptProofTrustFinalityPolicy as eY, type ReceiptProofTrustFinalitySigner as eZ, type ReceiptProofTrustPolicy as e_, type OperatorNetworkMetadataView as ea, type OperatorRiskResponse as eb, type OperatorRouterConfig as ec, type OperatorSigningActivityResponse as ed, type OperatorSigningEntry as ee, type OperatorSurfaceCapability as ef, type OperatorSurfaceStatus as eg, type OracleEvent as eh, OracleEventError as ei, type OracleFeedConfig as ej, type OracleLatestPrice as ek, type OracleSignerRow as el, type OracleSignersResponse as em, type OracleWriters as en, type P2pSeed as eo, PENDING_CHANGE_KIND_CODES as ep, PROVER_MARKET_ADDRESS as eq, PROVER_MARKET_BID_DOMAIN as er, PROVER_MARKET_EVENT_SIGS as es, PROVER_MARKET_REQUEST_DOMAIN as et, PROVER_MARKET_SELECTORS as eu, PROVER_MARKET_SUBMIT_DOMAIN as ev, PROVER_SLASH_REASON_BAD_PROOF as ew, PROVER_SLASH_REASON_NON_DELIVERY as ex, type ParsedName as ey, type PeerSummary as ez, type NativeEventsFilter as f, bridgeQuoteSubmitReadiness as f$, type RegistryRecord as f0, type ReportServiceProbeCalldataArgs as f1, type ReportServiceProbeRequest as f2, type ReportServiceProbeResponse as f3, type RequestClusterJoinCalldataArgs as f4, type ResolveNameResponse as f5, type RichListHolder as f6, type RichListResponse as f7, type RoundCertificateResponse as f8, type RoundInfo as f9, type TransactionReceipt as fA, type TransactionView as fB, type TxConfirmations as fC, type TxFeedReceipt as fD, type TxFeedTransaction as fE, type TxStatusFoundResponse as fF, type TxStatusNotFoundResponse as fG, type TxStatusResponse as fH, type UpcomingDutiesResponse as fI, type UpcomingDutyMap as fJ, type UserAddressInput as fK, V1_BRIDGE_ALLOWED_FEE_TOKEN as fL, V1_BRIDGE_ALLOWED_PROTOCOL as fM, type VertexAtRound as fN, type VerticesAtRoundResponse as fO, type VoteClusterAdmitCalldataArgs as fP, addressBytesToHex as fQ, addressToBech32 as fR, addressToTypedBech32 as fS, allowRootFor as fT, assertNativeMarketOrderBookStreamPayload as fU, assessBridgeRoute as fV, bech32ToAddress as fW, bech32ToAddressBytes as fX, bidSighash as fY, bridgeAddressHex as fZ, bridgeDrainRemaining as f_, type RpcClientOptions as fa, type RpcEndpoint as fb, type RuntimeProvenanceResponse as fc, SERVES_GPU_PROVE as fd, SERVICE_PROBE_STATUS as fe, SET_POLICY_CLAIM_DOMAIN_TAG as ff, SPENDING_POLICY_SELECTORS as fg, type SearchHit as fh, type ServiceProbeStatusLabel as fi, type SigningEntryStatus as fj, type SpendingPolicyArgs as fk, SpendingPolicyError as fl, type SpendingPolicyTimeWindow as fm, type SpendingPolicyView as fn, type SpotLimitOrderSide as fo, type SpotMarketOrderMode as fp, type StorageProofBatch as fq, type SubmitPendingChangeCalldataArgs as fr, type SwapIntentStatus as fs, type SyncStatus as ft, TESTNET_69420 as fu, type TokenBalanceMrcIdentity as fv, type TokenBalanceRecord as fw, type TokenBalanceWithMetadata as fx, type TotalBurnedResponse as fy, type TpmAttestationResponse as fz, type NativeEventsResponse as g, encodeBlockSelector as g$, bridgeRoutesReadiness as g0, bridgeTransferCandidates as g1, buildBridgeRouteCatalogue as g2, buildCancelSpotOrderPlan as g3, buildNativeCallForwarderArtifact as g4, buildNativeMarketModuleCallEnvelope as g5, buildNativeNftBuyListingForwarderInput as g6, buildNativeNftBuyListingModuleCall as g7, buildNativeNftCancelListingForwarderInput as g8, buildNativeNftCancelListingModuleCall as g9, computeNoEvmDacFinalityMessage as gA, computeNoEvmLeaderFinalityMessage as gB, computeNoEvmReceiptsRoot as gC, computeNoEvmRoundFinalityMessage as gD, computeNoEvmTargetReceiptHash as gE, computeQuoteLiquidity as gF, consumeNativeEvents as gG, decodeClusterDiversity as gH, decodeClusterFormedEvent as gI, decodeClusterJoinRequest as gJ, decodeNativeAgentStateResponse as gK, decodeNativeMarketOrderBookDeltasResponse as gL, decodeNativeReceiptResponse as gM, decodeNoEvmReceiptTranscript as gN, decodeOperatorFeeChargedEvent as gO, decodeOperatorNetworkMetadata as gP, decodeOracleEvent as gQ, decodeTimeWindow as gR, decodeTxFeedResponse as gS, denyRootFor as gT, deriveClobMarketId as gU, deriveClusterAnchorAddress as gV, deriveFeedId as gW, deriveNativeSpotMarketId as gX, deriveNativeSpotOrderId as gY, destinationRoot as gZ, encodeAttestDkgReshareCalldata as g_, buildNativeNftCreateListingForwarderInput as ga, buildNativeNftCreateListingModuleCall as gb, buildNativeNftPlaceAuctionBidForwarderInput as gc, buildNativeNftPlaceAuctionBidModuleCall as gd, buildNativeNftSettleAuctionForwarderInput as ge, buildNativeNftSettleAuctionModuleCall as gf, buildNativeNftSweepExpiredListingsForwarderInput as gg, buildNativeNftSweepExpiredListingsModuleCall as gh, buildNativeSpotCancelOrderForwarderInput as gi, buildNativeSpotCancelOrderModuleCall as gj, buildNativeSpotCreateMarketForwarderInput as gk, buildNativeSpotCreateMarketModuleCall as gl, buildNativeSpotLimitOrderForwarderInput as gm, buildNativeSpotLimitOrderModuleCall as gn, buildNativeSpotSettleLimitOrderForwarderInput as go, buildNativeSpotSettleLimitOrderModuleCall as gp, buildNativeSpotSettleRoutedLimitOrderForwarderInput as gq, buildNativeSpotSettleRoutedLimitOrderModuleCall as gr, buildPlaceLimitOrderViaPlan as gs, buildPlaceSpotLimitOrderPlan as gt, buildPlaceSpotMarketOrderExPlan as gu, buildPlaceSpotMarketOrderPlan as gv, categoryRoot as gw, clobAddressHex as gx, clusterApyPercent as gy, composeClaimBoundMessage as gz, type NativeAgentStateFilter as h, isValidPublicServiceProbeMask as h$, encodeBridgeChallengeCalldata as h0, encodeBridgeClaimCalldata as h1, encodeCancelClusterJoinCalldata as h2, encodeCancelOrderCalldata as h3, encodeCancelPendingChangeCalldata as h4, encodeClaimPolicyByAddressCalldata as h5, encodeCreateRequestCalldata as h6, encodeCreateRequestCanonical as h7, encodeDisableCalldata as h8, encodeEnableCalldata as h9, encodeSetBridgeRouteFinalityCalldata as hA, encodeSetLotSizeCalldata as hB, encodeSetMinNotionalCalldata as hC, encodeSetPolicyCalldata as hD, encodeSetPolicyClaimCalldata as hE, encodeSetTickSizeCalldata as hF, encodeSubmitBridgeProofCalldata as hG, encodeSubmitPendingChangeCalldata as hH, encodeVoteClusterAdmitCalldata as hI, exportBridgeRouteCatalogueJson as hJ, fetchChainInfoLatest as hK, fetchChainRegistryLatest as hL, formatOraclePrice as hM, getChainInfo as hN, getNoEvmReceiptTrustPolicy as hO, getP2pSeeds as hP, getRpcEndpoints as hQ, hexToAddressBytes as hR, isBridgeAdminLockedRevert as hS, isBridgeCooldownZeroRevert as hT, isBridgeFinalityZeroRevert as hU, isBridgeResumeCooldownActiveRevert as hV, isConcreteServiceProbeStatus as hW, isNativeDecodedEvent as hX, isNativeMarketOrderBookStreamPayload as hY, isSinglePublicServiceProbeMask as hZ, isValidNodeRegistryCapabilities as h_, encodeExpireClusterJoinCalldata as ha, encodeGetClusterJoinRequestCalldata as hb, encodeLockBridgeConfigCalldata as hc, encodeNameAcceptTransferCall as hd, encodeNameProposeTransferCall as he, encodeNameRegisterCall as hf, encodeNativeMarketModuleForwarderInput as hg, encodeNativeNftBuyListingCall as hh, encodeNativeNftCancelListingCall as hi, encodeNativeNftCreateListingCall as hj, encodeNativeNftPlaceAuctionBidCall as hk, encodeNativeNftSettleAuctionCall as hl, encodeNativeNftSweepExpiredListingsCall as hm, encodeNativeSpotCancelOrderCall as hn, encodeNativeSpotCreateMarketCall as ho, encodeNativeSpotLimitOrderCall as hp, encodeNativeSpotSettleLimitOrderCall as hq, encodeNativeSpotSettleRoutedLimitOrderCall as hr, encodePlaceLimitOrderCalldata as hs, encodePlaceLimitOrderViaCalldata as ht, encodePlaceMarketOrderCalldata as hu, encodePlaceMarketOrderExCalldata as hv, encodeRecoverOperatorNodeCalldata as hw, encodeReportServiceProbeCalldata as hx, encodeRequestClusterJoinCalldata as hy, encodeSetBridgeResumeCooldownCalldata as hz, type NativeAgentStateResponse as i, ML_DSA_65_PUBLIC_KEY_LEN as i$, nameLengthModifierX10 as i0, nameRegistrationCost as i1, nameRegistryAddressHex as i2, nativeAgentStateFilterParams as i3, nativeEventMatches as i4, nativeEventsFilterParams as i5, nativeEventsFromHistory as i6, nativeEventsFromReceipt as i7, nativeMarketEventFilter as i8, nativeMarketEventsFromHistory as i9, requestSighash as iA, requireTypedAddress as iB, selectBridgeTransferRoute as iC, serviceProbeStatusLabel as iD, setDestinationRoot as iE, spendingPolicyAddressHex as iF, submitSighash as iG, typedBech32ToAddress as iH, validateAddress as iI, validateBridgeRouteCatalogue as iJ, verifyNoEvmArchiveProofSignatures as iK, verifyNoEvmBlockFinalityEvidenceMultisig as iL, verifyNoEvmBlockFinalityEvidenceThreshold as iM, verifyNoEvmFinalityEvidenceMultisig as iN, verifyNoEvmFinalityEvidenceThreshold as iO, verifyNoEvmReceiptProof as iP, verifyNoEvmReceiptProofTrust as iQ, type NonceAad as iR, ADDRESS_DERIVATION_DOMAIN as iS, DKG_AEAD_TAG_LEN as iT, DKG_NONCE_LEN as iU, type DecryptHint as iV, ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE as iW, ENUM_VARIANT_INDEX_ML_DSA_65 as iX, type EncryptedEnvelope as iY, type EncryptedSubmission as iZ, type JsonRpcCallClient as i_, nativeMarketEventsFromReceipt as ia, nativeMarketStateFilterParams as ib, noEvmReceiptTrustPolicyFromChainInfo as ic, nodeHostingClassFromByte as id, nodeHostingClassToByte as ie, nodeRegistryAddressHex as ig, normalizeAddressHex as ih, normalizeBridgeRouteCatalogue as ii, normalizePendingChangeKind as ij, oracleAddressHex as ik, oraclePriceToNumber as il, packTimeWindow as im, parseAddress as io, parseBridgeRouteCatalogueJson as ip, parseChainRegistryToml as iq, parseDkgResharePublicKeys as ir, parseNameCategory as is, parseNativeDecodedEvent as it, parseQuantity as iu, parseQuantityBig as iv, proverMarketStateFromByte as iw, quoteOperatorFee as ix, rankBridgeRoutes as iy, rankMarketsByVolume as iz, type NativeMarketStateFilter as j, ML_DSA_65_SEED_LEN as j0, ML_DSA_65_SIGNATURE_LEN as j1, ML_DSA_65_SIGNING_KEY_LEN as j2, ML_KEM_768_CIPHERTEXT_LEN as j3, ML_KEM_768_ENCAPSULATION_KEY_LEN as j4, ML_KEM_768_SHARED_SECRET_LEN as j5, type NativeTxExtension as j6, type NativeTxExtensionDescriptor as j7, type NativeTxExtensionLike as j8, type PlaintextSubmission as j9, STANDARD_ALGO_NUMBER_ML_DSA_65 as ja, bincodeDecryptHint as jb, bincodeEncryptedEnvelope as jc, bincodeNonceAad as jd, bincodeSignedTransaction as je, buildEncryptedEnvelope as jf, buildEncryptedSubmission as jg, buildPlaintextSubmission as jh, encodeMlDsa65Opaque as ji, encodeTransactionForHash as jj, encryptInnerTx as jk, fetchEncryptionKey as jl, mlDsa65AddressBytes as jm, mlDsa65AddressFromPublicKey as jn, outerSigDigest as jo, submitEncryptedEnvelope as jp, submitPlaintextTransaction as jq, submitTransactionWithPrivacy as jr, type NativeMarketStateResponse as k, 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 };
6360
+ export { type AddressActivityEntryEnriched 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 ClusterJoinRequestView as K, type AddressKind as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, ADDRESS_HRP as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, ADDRESS_KIND_HRPS as U, API_STREAM_TOPICS as V, type AccountPolicy as W, type AccountProofResponse as X, type Address as Y, type AddressActivityArchiveRedirect as Z, type AddressActivityEntry as _, type RuntimeUpgradeStatus as a, type ClobMarketAssets as a$, type AddressActivityKind as a0, type AddressActivityKindResponse as a1, type AddressActivityKindRetention as a2, AddressError as a3, type AddressLabelRecord as a4, type AddressValidation as a5, type AgentReputationCategoryScope as a6, type AgentReputationRecord as a7, type AgentReputationResponse as a8, type ApiStreamTopic as a9, type BridgeRouteCandidate as aA, type BridgeRouteCatalogue as aB, BridgeRouteCatalogueError as aC, type BridgeRouteCatalogueJsonOptions as aD, type BridgeRouteCataloguePayload as aE, type BridgeRouteCatalogueRoute as aF, type BridgeRouteCatalogueValidation as aG, type BridgeRouteDisclosure as aH, type BridgeRouteSelection as aI, type BridgeRoutesSource as aJ, type BridgeTransferIntent as aK, type BridgeTransferRequest as aL, type BridgeVerifierDisclosure as aM, CHAIN_REGISTRY as aN, CHAIN_REGISTRY_RAW_BASE as aO, CLOB_MARKET_ID_DOMAIN_TAG as aP, CLOB_SELECTORS as aQ, CLUSTER_FORMED_EVENT_SIG as aR, type CancelClusterJoinCalldataArgs as aS, type CancelPendingChangeCalldataArgs as aT, type CancelSpotOrderArgs as aU, type CapabilitiesResponse as aV, type CapabilityDescriptor as aW, type ChainInfo as aX, type ChainRegistry as aY, type CheckpointRecord as aZ, type CirculatingSupplyResponse as a_, type ApiStreamTopicMetadata as aa, type ApiStreamTopicRetention as ab, type AssetPolicy as ac, type AttestDkgReshareCalldataArgs as ad, type AttestationWindow as ae, BRIDGE_QUOTE_API_BLOCKED_REASON as af, BRIDGE_REVERT_TAGS as ag, BRIDGE_SELECTORS as ah, BRIDGE_SUBMIT_API_BLOCKED_REASON as ai, type BlockHeader as aj, type BlockTag as ak, type BlsCertificateResponse as al, type BridgeAdminControl as am, type BridgeAnchorState as an, type BridgeBreakerState as ao, type BridgeBytesInput as ap, type BridgeCircuitBreakerFields as aq, type BridgeCircuitBreakerState as ar, type BridgeDrainCap as as, type BridgeDrainStatus as at, type BridgeHealthRecord as au, type BridgeHealthResponse as av, BridgePrecompileError as aw, type BridgeQuoteSubmitReadiness as ax, type BridgeRiskTier as ay, type BridgeRouteAssessment as az, type NativeReceiptResponse as b, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES as b$, type ClobMarketRecord as b0, type ClobMarketSummary as b1, type ClobTrade as b2, type ClusterAprResponse as b3, type ClusterDelegatorsResponse as b4, type ClusterDirectoryEntryResponse as b5, type ClusterDirectoryPageResponse as b6, type ClusterDiversity as b7, type ClusterDiversityView as b8, type ClusterEntityResponse as b9, type EncodeNativeNftSettleAuctionArgs as bA, type EncodeNativeNftSweepExpiredListingsArgs as bB, type EncodeNativeSpotCancelOrderArgs as bC, type EncodeNativeSpotCreateMarketArgs as bD, type EncodeNativeSpotLimitOrderArgs as bE, type EncodeNativeSpotSettleLimitOrderArgs as bF, type EncodeNativeSpotSettleRoutedLimitOrderArgs as bG, type EncryptionKeyResponse as bH, type EntityRatchetResponse as bI, type EthSendTransactionRequest as bJ, type ExpireClusterJoinCalldataArgs as bK, type ExplorerEndpoint as bL, FEED_ID_DOMAIN_TAG as bM, type FeeHistoryResponse as bN, type FormClusterCalldataArgs as bO, type GapRange as bP, type GapRecord as bQ, type GapRecordsResponse as bR, type GetClusterJoinRequestCalldataArgs as bS, type Hash as bT, type Hex as bU, type IndexerStatus as bV, type JailStatusWindow as bW, type KeyRotationWindow as bX, type ListProofRequestsResponse as bY, type LythUpgradePlanStatus as bZ, type LythUpgradeStatusResponse as b_, type ClusterFormedEvent as ba, type ClusterJoinRequestStatus as bb, type ClusterMemberResponse as bc, type ClusterNameResponse as bd, type ClusterResignationRow as be, type ClusterResignationsResponse as bf, type ClusterStatusResponse as bg, type CreateRequestCanonicalArgs as bh, DIVERSITY_SCORE_MAX as bi, type DagParent as bj, type DagParentsResponse as bk, type DagSyncStatus as bl, type DecodeTxExtension as bm, type DecodeTxLog as bn, type DecodeTxPqAttestation as bo, type DecodeTxResponse as bp, type DelegationCapResponse as bq, type DelegationHistoryRecord as br, type DelegationRow as bs, type DelegationsResponse as bt, type DutyAbsence as bu, EMPTY_ROOT as bv, type EncodeNativeNftBuyListingArgs as bw, type EncodeNativeNftCancelListingArgs as bx, type EncodeNativeNftCreateListingArgs as by, type EncodeNativeNftPlaceAuctionBidArgs as bz, type NativeDecodedEvent as c, type NameRegistrationQuote as c$, MAX_NATIVE_RECEIPT_EVENTS as c0, ML_DSA_65_PUBLIC_KEY_LEN$1 as c1, ML_DSA_65_SIGNATURE_LEN$1 as c2, MULTISIG_ADDRESS_DERIVATION_DOMAIN as c3, MarketActionError as c4, type MarketTransactionPlan as c5, type MempoolSnapshot as c6, type MeshDecodedTx as c7, type MeshSignedTxResponse as c8, type MeshTxIntent as c9, NODE_REGISTRY_CONSENSUS_POP_BYTES as cA, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES as cB, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES as cC, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES as cD, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS as cE, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS as cF, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES as cG, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT as cH, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT as cI, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN as cJ, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT as cK, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD as cL, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES as cM, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID as cN, NODE_REGISTRY_PUBLIC_SERVICE_MASK as cO, NODE_REGISTRY_SELECTORS as cP, NO_EVM_ARCHIVE_PROOF_SCHEMA as cQ, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as cR, NO_EVM_FINALITY_EVIDENCE_SCHEMA as cS, NO_EVM_FINALITY_EVIDENCE_SOURCE as cT, NO_EVM_RECEIPTS_ROOT_DOMAIN as cU, NO_EVM_RECEIPT_CODEC as cV, NO_EVM_RECEIPT_PROOF_SCHEMA as cW, NO_EVM_RECEIPT_PROOF_TYPE as cX, NO_EVM_RECEIPT_ROOT_ALGORITHM as cY, type NameCategory as cZ, type NameOfResponse as c_, type MeshUnsignedTxResponse as ca, type MetricsRangeResponse as cb, type MetricsRangeSample as cc, type MetricsRangeSeries as cd, type MetricsRangeStatus as ce, type MrcAccountRecord as cf, type MrcMetadataRecord as cg, type MrcPolicyRecord as ch, type MrcPolicySpendRecord as ci, NAME_BASE_MULTIPLIER as cj, NAME_FALLBACK_FEE_UNIT_LYTHOSHI as ck, NAME_LABEL_MAX_LEN as cl, NAME_LABEL_MIN_LEN as cm, NAME_MAX_LEN as cn, NAME_REGISTRY_SELECTORS as co, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE as cp, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY as cq, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET as cr, NATIVE_MARKET_EVENT_FAMILY as cs, NATIVE_MARKET_MODULE_ADDRESS as ct, NATIVE_MARKET_MODULE_ADDRESS_BYTES as cu, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as cv, NODE_REGISTRY_BLS_PUBKEY_BYTES as cw, NODE_REGISTRY_CAPABILITIES as cx, NODE_REGISTRY_CAPABILITY_MASK as cy, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES as cz, type NativeEventFilter as d, type NoEvmReceiptTrustIssue as d$, NameRegistryError as d0, type NativeAgentArbiterStateRecord as d1, type NativeAgentAttestationStateRecord as d2, type NativeAgentAvailabilityStateRecord as d3, type NativeAgentConsentStateRecord as d4, type NativeAgentEscrowStateRecord as d5, type NativeAgentIssuerStateRecord as d6, type NativeAgentPolicySpendStateRecord as d7, type NativeAgentPolicyStateRecord as d8, type NativeAgentReputationReviewStateRecord as d9, type NativeNftAssetStandard as dA, type NativeNftListingKind as dB, type NativeNftListingStateRecord as dC, type NativeReceiptCounters as dD, type NativeReceiptEvent as dE, type NativeReceiptSource as dF, type NativeSpotMarketStateRecord as dG, type NativeSpotOrderStateRecord as dH, type NetworkClientOptions as dI, type NetworkSlug as dJ, type NoEvmArchiveCoveringSnapshot as dK, type NoEvmArchiveProof as dL, type NoEvmArchiveSignatureVerification as dM, type NoEvmArchiveSignatureVerificationIssue as dN, type NoEvmArchiveSignatureVerificationIssueCode as dO, type NoEvmArchiveTrustedSigner as dP, type NoEvmBlockBlsFinalityVerification as dQ, type NoEvmBlockRoundFinalityVerification as dR, type NoEvmBlsFinalityVerification as dS, type NoEvmFinalityBlockReference as dT, type NoEvmFinalityCertificate as dU, type NoEvmFinalityEvidence as dV, type NoEvmReceiptFinalityTrustPolicy as dW, type NoEvmReceiptProof as dX, NoEvmReceiptProofError as dY, type NoEvmReceiptProofErrorCode as dZ, type NoEvmReceiptProofVerification as d_, type NativeAgentServiceStateRecord as da, type NativeAgentStateFilterParamValue as db, type NativeAgentStateResponseFilters as dc, type NativeAgentStateSource as dd, type NativeCallForwarderArtifact as de, type NativeCollectionRoyaltyStateRecord as df, type NativeEventConsumer as dg, type NativeEventProjection as dh, type NativeEventsResponseFilters as di, type NativeEventsSource as dj, type NativeMarketAddressInput as dk, type NativeMarketAddressKind as dl, type NativeMarketForwarderInput as dm, type NativeMarketModuleCallEnvelope as dn, type NativeMarketModuleContractCall as dp, type NativeMarketOrderBookDelta as dq, type NativeMarketOrderBookDeltasResponseFilters as dr, type NativeMarketOrderBookDeltasSource as ds, type NativeMarketOrderBookStreamAction as dt, type NativeMarketOrderBookStreamPayload as du, type NativeMarketStateFilterParamValue as dv, type NativeMarketStateResponseFilters as dw, type NativeMarketStateSource as dx, type NativeModuleForwarderDescriptor as dy, type NativeMrcPolicyProjection as dz, type TypedNativeReceiptEvent as e, type QuoteLiquidity as e$, type NoEvmReceiptTrustIssueCode as e0, type NoEvmReceiptTrustPolicy as e1, type NoEvmReceiptTrustVerification as e2, type NoEvmReceiptTrustedBlsSigner as e3, type NoEvmReceiptTrustedSigner as e4, type NoEvmRoundFinalityVerification as e5, type NodeHostingClass as e6, NodeRegistryError as e7, OPERATOR_ROUTER_EVENT_SIGS as e8, OPERATOR_ROUTER_SELECTORS as e9, PROVER_MARKET_EVENT_SIGS as eA, PROVER_MARKET_REQUEST_DOMAIN as eB, PROVER_MARKET_SELECTORS as eC, PROVER_MARKET_SUBMIT_DOMAIN as eD, PROVER_SLASH_REASON_BAD_PROOF as eE, PROVER_SLASH_REASON_NON_DELIVERY as eF, type ParsedName as eG, type PeerSummary as eH, type PeerSummaryAggregate as eI, type PendingChangeKind as eJ, type PendingRewardsRow as eK, type PendingTxSummary as eL, type PlaceLimitOrderViaArgs as eM, type PlaceLimitOrderViaPlan as eN, type PlaceSpotLimitOrderArgs as eO, type PlaceSpotMarketOrderArgs as eP, type PlaceSpotMarketOrderExArgs as eQ, type PrecompileCatalogueResponse as eR, type PrecompileDescriptor as eS, type ProofRequestRow as eT, type ProofRequestView as eU, type ProverBidView as eV, type ProverBidsResponse as eW, ProverMarketError as eX, type ProverMarketState as eY, type ProverMarketStatusResponse as eZ, type Quantity as e_, OPERATOR_ROUTER_SIGS as ea, ORACLE_EVENT_SIGS as eb, type OperatorAuthorityResponse as ec, type OperatorFeeChargedEvent as ed, type OperatorFeeConfig as ee, type OperatorFeeQuote as ef, type OperatorInfoResponse as eg, type OperatorNetworkMetadata as eh, type OperatorNetworkMetadataView as ei, type OperatorRiskResponse as ej, type OperatorRouterConfig as ek, type OperatorSigningActivityResponse as el, type OperatorSigningEntry as em, type OperatorSurfaceCapability as en, type OperatorSurfaceStatus as eo, type OracleEvent as ep, OracleEventError as eq, type OracleFeedConfig as er, type OracleLatestPrice as es, type OracleSignerRow as et, type OracleSignersResponse as eu, type OracleWriters as ev, type P2pSeed as ew, PENDING_CHANGE_KIND_CODES as ex, PROVER_MARKET_ADDRESS as ey, PROVER_MARKET_BID_DOMAIN as ez, type NativeEventsFilter as f, allowRootFor as f$, RESERVED_ADDRESS_HRPS as f0, type RankedBridgeRoute as f1, type ReceiptProofTrustArchivePolicy as f2, type ReceiptProofTrustArchiveSigner as f3, type ReceiptProofTrustFinalityPolicy as f4, type ReceiptProofTrustFinalitySigner as f5, type ReceiptProofTrustPolicy as f6, type RedemptionQueueTicket as f7, type RegistryRecord as f8, type ReportServiceProbeCalldataArgs as f9, type SwapIntentStatus as fA, type SyncStatus as fB, TESTNET_69420 as fC, type TokenBalanceMrcIdentity as fD, type TokenBalanceRecord as fE, type TokenBalanceWithMetadata as fF, type TotalBurnedResponse as fG, type TpmAttestationResponse as fH, type TransactionReceipt as fI, type TransactionView as fJ, type TxConfirmations as fK, type TxFeedReceipt as fL, type TxFeedTransaction as fM, type TxStatusFoundResponse as fN, type TxStatusNotFoundResponse as fO, type TxStatusResponse as fP, type UpcomingDutiesResponse as fQ, type UpcomingDutyMap as fR, type UserAddressInput as fS, V1_BRIDGE_ALLOWED_FEE_TOKEN as fT, V1_BRIDGE_ALLOWED_PROTOCOL as fU, type VertexAtRound as fV, type VerticesAtRoundResponse as fW, type VoteClusterAdmitCalldataArgs as fX, addressBytesToHex as fY, addressToBech32 as fZ, addressToTypedBech32 as f_, type ReportServiceProbeRequest as fa, type ReportServiceProbeResponse as fb, type RequestClusterJoinCalldataArgs as fc, type ResolveNameResponse as fd, type RichListHolder as fe, type RichListResponse as ff, type RoundCertificateResponse as fg, type RoundInfo as fh, type RpcClientOptions as fi, type RpcEndpoint as fj, type RuntimeProvenanceResponse as fk, SERVES_GPU_PROVE as fl, SERVICE_PROBE_STATUS as fm, SET_POLICY_CLAIM_DOMAIN_TAG as fn, SPENDING_POLICY_SELECTORS as fo, type SearchHit as fp, type ServiceProbeStatusLabel as fq, type SigningEntryStatus as fr, type SpendingPolicyArgs as fs, SpendingPolicyError as ft, type SpendingPolicyTimeWindow as fu, type SpendingPolicyView as fv, type SpotLimitOrderSide as fw, type SpotMarketOrderMode as fx, type StorageProofBatch as fy, type SubmitPendingChangeCalldataArgs as fz, type NativeEventsResponse as g, denyRootFor as g$, assertNativeMarketOrderBookStreamPayload as g0, assessBridgeRoute as g1, bech32ToAddress as g2, bech32ToAddressBytes as g3, bidSighash as g4, bridgeAddressHex as g5, bridgeDrainRemaining as g6, bridgeQuoteSubmitReadiness as g7, bridgeRoutesReadiness as g8, bridgeTransferCandidates as g9, buildPlaceLimitOrderViaPlan as gA, buildPlaceSpotLimitOrderPlan as gB, buildPlaceSpotMarketOrderExPlan as gC, buildPlaceSpotMarketOrderPlan as gD, categoryRoot as gE, clobAddressHex as gF, clusterApyPercent as gG, composeClaimBoundMessage as gH, computeNoEvmDacFinalityMessage as gI, computeNoEvmLeaderFinalityMessage as gJ, computeNoEvmReceiptsRoot as gK, computeNoEvmRoundFinalityMessage as gL, computeNoEvmTargetReceiptHash as gM, computeQuoteLiquidity as gN, consumeNativeEvents as gO, decodeClusterDiversity as gP, decodeClusterFormedEvent as gQ, decodeClusterJoinRequest as gR, decodeNativeAgentStateResponse as gS, decodeNativeMarketOrderBookDeltasResponse as gT, decodeNativeReceiptResponse as gU, decodeNoEvmReceiptTranscript as gV, decodeOperatorFeeChargedEvent as gW, decodeOperatorNetworkMetadata as gX, decodeOracleEvent as gY, decodeTimeWindow as gZ, decodeTxFeedResponse as g_, buildBridgeRouteCatalogue as ga, buildCancelSpotOrderPlan as gb, buildNativeCallForwarderArtifact as gc, buildNativeMarketModuleCallEnvelope as gd, buildNativeNftBuyListingForwarderInput as ge, buildNativeNftBuyListingModuleCall as gf, buildNativeNftCancelListingForwarderInput as gg, buildNativeNftCancelListingModuleCall as gh, buildNativeNftCreateListingForwarderInput as gi, buildNativeNftCreateListingModuleCall as gj, buildNativeNftPlaceAuctionBidForwarderInput as gk, buildNativeNftPlaceAuctionBidModuleCall as gl, buildNativeNftSettleAuctionForwarderInput as gm, buildNativeNftSettleAuctionModuleCall as gn, buildNativeNftSweepExpiredListingsForwarderInput as go, buildNativeNftSweepExpiredListingsModuleCall as gp, buildNativeSpotCancelOrderForwarderInput as gq, buildNativeSpotCancelOrderModuleCall as gr, buildNativeSpotCreateMarketForwarderInput as gs, buildNativeSpotCreateMarketModuleCall as gt, buildNativeSpotLimitOrderForwarderInput as gu, buildNativeSpotLimitOrderModuleCall as gv, buildNativeSpotSettleLimitOrderForwarderInput as gw, buildNativeSpotSettleLimitOrderModuleCall as gx, buildNativeSpotSettleRoutedLimitOrderForwarderInput as gy, buildNativeSpotSettleRoutedLimitOrderModuleCall as gz, type NativeAgentStateFilter as h, getRpcEndpoints as h$, deriveClobMarketId as h0, deriveClusterAnchorAddress as h1, deriveFeedId as h2, deriveNativeSpotMarketId as h3, deriveNativeSpotOrderId as h4, destinationRoot as h5, encodeAttestDkgReshareCalldata as h6, encodeBlockSelector as h7, encodeBridgeChallengeCalldata as h8, encodeBridgeClaimCalldata as h9, encodeNativeSpotSettleRoutedLimitOrderCall as hA, encodePlaceLimitOrderCalldata as hB, encodePlaceLimitOrderViaCalldata as hC, encodePlaceMarketOrderCalldata as hD, encodePlaceMarketOrderExCalldata as hE, encodeRecoverOperatorNodeCalldata as hF, encodeReportServiceProbeCalldata as hG, encodeRequestClusterJoinCalldata as hH, encodeSetBridgeResumeCooldownCalldata as hI, encodeSetBridgeRouteFinalityCalldata as hJ, encodeSetLotSizeCalldata as hK, encodeSetMinNotionalCalldata as hL, encodeSetPolicyCalldata as hM, encodeSetPolicyClaimCalldata as hN, encodeSetTickSizeCalldata as hO, encodeSubmitBridgeProofCalldata as hP, encodeSubmitPendingChangeCalldata as hQ, encodeVoteClusterAdmitCalldata as hR, exportBridgeRouteCatalogueJson as hS, fetchChainInfoLatest as hT, fetchChainRegistryLatest as hU, formClusterMessage as hV, formClusterMessageHex as hW, formatOraclePrice as hX, getChainInfo as hY, getNoEvmReceiptTrustPolicy as hZ, getP2pSeeds as h_, encodeCancelClusterJoinCalldata as ha, encodeCancelOrderCalldata as hb, encodeCancelPendingChangeCalldata as hc, encodeClaimPolicyByAddressCalldata as hd, encodeCreateRequestCalldata as he, encodeCreateRequestCanonical as hf, encodeDisableCalldata as hg, encodeEnableCalldata as hh, encodeExpireClusterJoinCalldata as hi, encodeFormClusterCalldata as hj, encodeGetClusterJoinRequestCalldata as hk, encodeLockBridgeConfigCalldata as hl, encodeNameAcceptTransferCall as hm, encodeNameProposeTransferCall as hn, encodeNameRegisterCall as ho, encodeNativeMarketModuleForwarderInput as hp, encodeNativeNftBuyListingCall as hq, encodeNativeNftCancelListingCall as hr, encodeNativeNftCreateListingCall as hs, encodeNativeNftPlaceAuctionBidCall as ht, encodeNativeNftSettleAuctionCall as hu, encodeNativeNftSweepExpiredListingsCall as hv, encodeNativeSpotCancelOrderCall as hw, encodeNativeSpotCreateMarketCall as hx, encodeNativeSpotLimitOrderCall as hy, encodeNativeSpotSettleLimitOrderCall as hz, type NativeAgentStateResponse as i, verifyNoEvmReceiptProofTrust as i$, hexToAddressBytes as i0, isBridgeAdminLockedRevert as i1, isBridgeCooldownZeroRevert as i2, isBridgeFinalityZeroRevert as i3, isBridgeResumeCooldownActiveRevert as i4, isConcreteServiceProbeStatus as i5, isNativeDecodedEvent as i6, isNativeMarketOrderBookStreamPayload as i7, isSinglePublicServiceProbeMask as i8, isValidNodeRegistryCapabilities as i9, parseBridgeRouteCatalogueJson as iA, parseChainRegistryToml as iB, parseDkgResharePublicKeys as iC, parseNameCategory as iD, parseNativeDecodedEvent as iE, parseQuantity as iF, parseQuantityBig as iG, proverMarketStateFromByte as iH, quoteOperatorFee as iI, rankBridgeRoutes as iJ, rankMarketsByVolume as iK, requestSighash as iL, requireTypedAddress as iM, selectBridgeTransferRoute as iN, serviceProbeStatusLabel as iO, setDestinationRoot as iP, spendingPolicyAddressHex as iQ, submitSighash as iR, typedBech32ToAddress as iS, validateAddress as iT, validateBridgeRouteCatalogue as iU, verifyNoEvmArchiveProofSignatures as iV, verifyNoEvmBlockFinalityEvidenceMultisig as iW, verifyNoEvmBlockFinalityEvidenceThreshold as iX, verifyNoEvmFinalityEvidenceMultisig as iY, verifyNoEvmFinalityEvidenceThreshold as iZ, verifyNoEvmReceiptProof as i_, isValidPublicServiceProbeMask as ia, nameLengthModifierX10 as ib, nameRegistrationCost as ic, nameRegistryAddressHex as id, nativeAgentStateFilterParams as ie, nativeEventMatches as ig, nativeEventsFilterParams as ih, nativeEventsFromHistory as ii, nativeEventsFromReceipt as ij, nativeMarketEventFilter as ik, nativeMarketEventsFromHistory as il, nativeMarketEventsFromReceipt as im, nativeMarketStateFilterParams as io, noEvmReceiptTrustPolicyFromChainInfo as ip, nodeHostingClassFromByte as iq, nodeHostingClassToByte as ir, nodeRegistryAddressHex as is, normalizeAddressHex as it, normalizeBridgeRouteCatalogue as iu, normalizePendingChangeKind as iv, oracleAddressHex as iw, oraclePriceToNumber as ix, packTimeWindow as iy, parseAddress as iz, type NativeMarketStateFilter as j, submitSealedTransaction as j$, ADDRESS_DERIVATION_DOMAIN as j0, CLUSTER_MLKEM_SHAMIR as j1, CLUSTER_MLKEM_SHAMIR_ALGO as j2, type ClusterSealKeyEntryInput as j3, type ClusterSealKeys as j4, type ClusterSealKeysSource as j5, DKG_AEAD_TAG_LEN as j6, DKG_NONCE_LEN as j7, type DecryptHint as j8, ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE as j9, STANDARD_ALGO_NUMBER_ML_DSA_65 as jA, type SealRandomSource as jB, type SealRecipient as jC, type SealedSubmission as jD, bincodeDecryptHint as jE, bincodeEncryptedEnvelope as jF, bincodeNonceAad as jG, bincodeSignedTransaction as jH, buildEncryptedEnvelope as jI, buildEncryptedSubmission as jJ, buildPlaintextSubmission as jK, cryptoRandomSource as jL, encodeMlDsa65Opaque as jM, encodeSealEnvelope as jN, encodeTransactionForHash as jO, encryptInnerTx as jP, fetchEncryptionKey as jQ, getClusterSealKeys as jR, mlDsa65AddressBytes as jS, mlDsa65AddressFromPublicKey as jT, outerSigDigest as jU, parseClusterSealKeys as jV, sealRosterHash as jW, sealToCluster as jX, sealTransaction as jY, submitEncryptedEnvelope as jZ, submitPlaintextTransaction as j_, ENUM_VARIANT_INDEX_ML_DSA_65 as ja, type EncryptedEnvelope as jb, type EncryptedSubmission as jc, type JsonRpcCallClient as jd, type LythiumSealEnvelope as je, ML_DSA_65_PUBLIC_KEY_LEN as jf, ML_DSA_65_SEED_LEN as jg, ML_DSA_65_SIGNATURE_LEN as jh, ML_DSA_65_SIGNING_KEY_LEN as ji, ML_KEM_768_CIPHERTEXT_LEN as jj, ML_KEM_768_ENCAPSULATION_KEY_LEN as jk, ML_KEM_768_SHARED_SECRET_LEN as jl, type NativeTxExtension as jm, type NativeTxExtensionDescriptor as jn, type NativeTxExtensionLike as jo, type NonceAad as jp, type PlaintextSubmission as jq, SEAL_COMMIT_LEN as jr, SEAL_DK_LEN as js, SEAL_EK_LEN as jt, SEAL_KEM_CT_LEN as ju, SEAL_KEM_SEED_LEN as jv, SEAL_KEY_LEN as jw, SEAL_NONCE_LEN as jx, SEAL_SHARE_LEN as jy, SEAL_TAG_LEN as jz, type NativeMarketStateResponse as k, submitTransactionWithPrivacy as k0, 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 };