@monolythium/core-sdk 0.4.16 → 0.4.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2671,6 +2671,30 @@ declare const NODE_REGISTRY_TAG_SERVICE_SCORE = 36;
2671
2671
  * node-registry `storage::TAG_TREASURY`.
2672
2672
  */
2673
2673
  declare const NODE_REGISTRY_TAG_TREASURY = 31;
2674
+ /**
2675
+ * Storage-slot tag byte for the per-cluster ACTIVE economics charter family
2676
+ * (under `0x1005`). Mirrors mono-core
2677
+ * `protocore_node_registry::cluster_anchor::TAG_CLUSTER_CHARTER`. The active
2678
+ * charter is written by the V2 `formCluster(bytes,bytes,bytes,bytes)` path
2679
+ * (and amended via `updateCharter` once the cooldown lands) and read by the
2680
+ * reward engine each block. Two sub-kind slots per cluster — see
2681
+ * {@link slotClusterCharterDelegator} / {@link slotClusterCharterMembers}.
2682
+ */
2683
+ declare const NODE_REGISTRY_TAG_CLUSTER_CHARTER = 49;
2684
+ /**
2685
+ * Charter sub-kind `0x00` — the presence + delegator-share slot. The stored
2686
+ * value is a right-aligned `u64` equal to `delegatorShareBps + 1`; a zero
2687
+ * word means NO active charter (genesis clusters / 3-arg formCluster, which
2688
+ * fall back to the legacy default split). Mirrors
2689
+ * `SUBKIND_CHARTER_DELEGATOR_BPS`.
2690
+ */
2691
+ declare const NODE_REGISTRY_SUBKIND_CHARTER_DELEGATOR_BPS = 0;
2692
+ /**
2693
+ * Charter sub-kind `0x01` — the packed member-shares slot. The stored value
2694
+ * is a single 32-byte word holding the 10×u16 BE member shares in its low
2695
+ * 20 bytes (offset 12..32). Mirrors `SUBKIND_CHARTER_MEMBER_SHARES`.
2696
+ */
2697
+ declare const NODE_REGISTRY_SUBKIND_CHARTER_MEMBER_SHARES = 1;
2674
2698
  type PendingChangeKind = "add" | "remove" | "rotate";
2675
2699
  declare const PENDING_CHANGE_KIND_CODES: Record<PendingChangeKind, number>;
2676
2700
  /** Canonical `ClusterFormed(uint32,uint64,address,bytes)` event topic0 (MB-5). */
@@ -2807,6 +2831,28 @@ interface PendingCharterView {
2807
2831
  */
2808
2832
  memberShareBps: readonly number[];
2809
2833
  }
2834
+ /**
2835
+ * Decoded ACTIVE cluster charter (Law §6.8), reconstructed from the two
2836
+ * `TAG_CLUSTER_CHARTER` (`0x31`) storage words SLOADed against the
2837
+ * node-registry account `0x1005`. `present=false` (with zeroed shares) when
2838
+ * the cluster has no active charter — genesis clusters and clusters formed
2839
+ * through the 3-arg `formCluster` selector, which fall back to the legacy
2840
+ * default split. The active charter carries no on-chain effective epoch (it
2841
+ * is the currently-effective record); the cooldown / `effectiveEpoch` lives
2842
+ * only on the {@link PendingCharterView}.
2843
+ */
2844
+ interface ActiveCharterView {
2845
+ /** `true` iff the cluster has an active on-chain charter record. */
2846
+ present: boolean;
2847
+ /** The active delegator share of the cluster pot in basis points. */
2848
+ delegatorShareBps: number;
2849
+ /**
2850
+ * The active per-member operator-pot shares in basis points,
2851
+ * member-declaration order (active 0..7, then standby 7..10). Empty when
2852
+ * `present` is `false`.
2853
+ */
2854
+ memberShareBps: readonly number[];
2855
+ }
2810
2856
  /** Args for `commitArchiveRoot(bytes32,uint16,bytes32,uint64)` (Component B). */
2811
2857
  interface CommitArchiveRootCalldataArgs {
2812
2858
  peerId: string | Uint8Array | readonly number[];
@@ -3111,6 +3157,43 @@ declare function decodeScoreServiceProbe(word: string | Uint8Array | readonly nu
3111
3157
  * node-registry `storage::slot_probe_authority`.
3112
3158
  */
3113
3159
  declare function slotProbeAuthority(): string;
3160
+ /**
3161
+ * Slot for one sub-kind of a cluster's ACTIVE charter record (Law §6.8).
3162
+ * `keccak256(0x31 || clusterId_be32 || subkind)`. Mirrors mono-core
3163
+ * `cluster_anchor::slot_cluster_charter`.
3164
+ *
3165
+ * No RPC method exists for the active charter — derive the slot key and
3166
+ * SLOAD it via `eth_getStorageAt` / `lyth_getStorageAt` against the
3167
+ * node-registry account `0x1005`, then feed both words into
3168
+ * {@link decodeActiveCharter}. See {@link slotClusterCharterDelegator} and
3169
+ * {@link slotClusterCharterMembers} for the two concrete sub-kinds.
3170
+ */
3171
+ declare function slotClusterCharter(clusterId: bigint | number | string, subkind: number): string;
3172
+ /**
3173
+ * Slot holding the active charter's presence + delegator share
3174
+ * (sub-kind `0x00`). The stored word is a right-aligned `u64` equal to
3175
+ * `delegatorShareBps + 1`; a zero word means NO active charter.
3176
+ */
3177
+ declare function slotClusterCharterDelegator(clusterId: bigint | number | string): string;
3178
+ /**
3179
+ * Slot holding the active charter's packed member shares (sub-kind `0x01`).
3180
+ * The stored word holds the 10×u16 BE member shares in its low 20 bytes
3181
+ * (offset 12..32).
3182
+ */
3183
+ declare function slotClusterCharterMembers(clusterId: bigint | number | string): string;
3184
+ /**
3185
+ * Decode the two ACTIVE-charter storage words into an {@link ActiveCharterView}.
3186
+ *
3187
+ * `delegatorWord` is the sub-kind `0x00` presence word
3188
+ * ({@link slotClusterCharterDelegator}); `membersWord` is the sub-kind
3189
+ * `0x01` packed-shares word ({@link slotClusterCharterMembers}). When the
3190
+ * presence word is zero the cluster has no active charter and `present` is
3191
+ * `false` (zeroed shares). Mirrors mono-core
3192
+ * `cluster_anchor::load_cluster_charter_*`: the presence word decodes as
3193
+ * `delegatorShareBps = word - 1` (saturating), and the members word packs
3194
+ * the 10×u16 BE shares at byte offset 12.
3195
+ */
3196
+ declare function decodeActiveCharter(delegatorWord: string | Uint8Array | readonly number[], membersWord: string | Uint8Array | readonly number[]): ActiveCharterView;
3114
3197
  /**
3115
3198
  * Decode CJ-1 `getClusterJoinRequest(uint32,bytes32)` return data.
3116
3199
  *
@@ -6188,6 +6271,35 @@ declare class RpcClient {
6188
6271
  lythGetSpendingPolicy(subAccount: string): Promise<SpendingPolicyView>;
6189
6272
  /** PF-6 — `lyth_getClusterDiversity`: diversity score + asn/geo/hosting breakdown. */
6190
6273
  lythGetClusterDiversity(clusterId: number): Promise<ClusterDiversityView>;
6274
+ /**
6275
+ * Component H — read a cluster's ACTIVE economics charter (Law §6.8).
6276
+ *
6277
+ * There is no `lyth_*` / view-selector for the active charter, so this
6278
+ * SLOADs the two `TAG_CLUSTER_CHARTER` (`0x31`) storage words from the
6279
+ * node-registry account `0x1005` via `eth_getStorageAt` and decodes them
6280
+ * with {@link decodeActiveCharter}. Returns `{ present: false }` (zeroed
6281
+ * shares) for genesis / 3-arg-formCluster clusters that never adopted a
6282
+ * charter. The active record carries no `effectiveEpoch` — that lives on
6283
+ * the pending amendment ({@link lythGetPendingCharter}).
6284
+ */
6285
+ lythGetClusterCharter(clusterId: number, block?: BlockSelector): Promise<ActiveCharterView>;
6286
+ /**
6287
+ * Component H — read a cluster's PENDING charter amendment (Law §6.8).
6288
+ *
6289
+ * Calls the `getPendingCharter(uint32)` view on the node-registry account
6290
+ * `0x1005` over `eth_call` and decodes the return with
6291
+ * {@link decodePendingCharter}. Returns `{ present: false }` when no
6292
+ * amendment is posted; otherwise carries the proposed shares plus the
6293
+ * `effectiveEpoch` at which the delegator-protective cooldown lands.
6294
+ */
6295
+ lythGetPendingCharter(clusterId: number, block?: BlockSelector): Promise<PendingCharterView>;
6296
+ /**
6297
+ * Component A — read a cluster's settled per-cluster ServiceScore (the
6298
+ * `u64` the reward path reads each block). SLOADs the `TAG_SERVICE_SCORE`
6299
+ * (`0x24`) score slot from `0x1005` via `eth_getStorageAt`; `0n` means the
6300
+ * cluster has never been scored.
6301
+ */
6302
+ lythGetClusterServiceScore(clusterId: number, block?: BlockSelector): Promise<bigint>;
6191
6303
  /**
6192
6304
  * PF-6 — `lyth_getOperatorNetworkMetadata`: ASN/geo/hosting-class/IP/PCR
6193
6305
  * for a peer. `operatorId` is the 32-byte operator/peer id as `0x…` hex
@@ -6945,4 +7057,4 @@ declare function submitTransactionWithPrivacy(args: {
6945
7057
  class?: MempoolClass;
6946
7058
  }): Promise<string>;
6947
7059
 
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 };
7060
+ export { type Address as $, type ApiStreamsIndexResponse as A, type BlockSelector as B, type ChainStatsResponse as C, type NativeEvmTxFields as D, type EncryptionKey as E, MempoolClass as F, type TypedAddress as G, RpcClient as H, MlDsa65Backend as I, type ExecutionUnitPriceResponse as J, type ClusterSealKeys as K, type ClusterSealKeysSource as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, type ClusterJoinRequestView as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, type AddressKind as U, ADDRESS_HRP as V, ADDRESS_KIND_HRPS as W, API_STREAM_TOPICS as X, type AccountPolicy as Y, type AccountProofResponse as Z, type ActiveCharterView as _, type RuntimeUpgradeStatus as a, type CancelSpotOrderArgs as a$, type AddressActivityArchiveRedirect as a0, type AddressActivityEntry as a1, type AddressActivityEntryEnriched as a2, type AddressActivityKind as a3, type AddressActivityKindResponse as a4, type AddressActivityKindRetention as a5, AddressError as a6, type AddressLabelRecord as a7, type AddressValidation as a8, type AgentReputationCategoryScope as a9, type BridgeHealthRecord as aA, type BridgeHealthResponse as aB, BridgePrecompileError as aC, type BridgeQuoteSubmitReadiness as aD, type BridgeRiskTier as aE, type BridgeRouteAssessment as aF, type BridgeRouteCandidate as aG, type BridgeRouteCatalogue as aH, BridgeRouteCatalogueError as aI, type BridgeRouteCatalogueJsonOptions as aJ, type BridgeRouteCataloguePayload as aK, type BridgeRouteCatalogueRoute as aL, type BridgeRouteCatalogueValidation as aM, type BridgeRouteDisclosure as aN, type BridgeRouteSelection as aO, type BridgeRoutesSource as aP, type BridgeTransferIntent as aQ, type BridgeTransferRequest as aR, type BridgeVerifierDisclosure as aS, CHAIN_REGISTRY as aT, CHAIN_REGISTRY_RAW_BASE as aU, CLOB_MARKET_ID_DOMAIN_TAG as aV, CLOB_SELECTORS as aW, CLUSTER_FORMED_EVENT_SIG as aX, type CallRequest as aY, type CancelClusterJoinCalldataArgs as aZ, type CancelPendingChangeCalldataArgs as a_, type AgentReputationRecord as aa, type AgentReputationResponse as ab, type AnswerArchiveChallengeCalldataArgs as ac, type ApiStreamTopic as ad, type ApiStreamTopicMetadata as ae, type ApiStreamTopicRetention as af, type ArchiveChallenge as ag, type AssetPolicy as ah, type AttestDkgReshareCalldataArgs as ai, type AttestServiceProbeCalldataArgs as aj, type AttestationWindow as ak, BRIDGE_QUOTE_API_BLOCKED_REASON as al, BRIDGE_REVERT_TAGS as am, BRIDGE_SELECTORS as an, BRIDGE_SUBMIT_API_BLOCKED_REASON as ao, type BlockHeader as ap, type BlockTag as aq, type BlsCertificateResponse as ar, type BridgeAdminControl as as, type BridgeAnchorState as at, type BridgeBreakerState as au, type BridgeBytesInput as av, type BridgeCircuitBreakerFields as aw, type BridgeCircuitBreakerState as ax, type BridgeDrainCap as ay, type BridgeDrainStatus as az, type NativeReceiptResponse as b, type GapRecord as b$, type CapabilitiesResponse as b0, type CapabilityDescriptor as b1, type ChainInfo as b2, type ChainRegistry as b3, type CheckpointRecord as b4, type CirculatingSupplyResponse as b5, type ClobMarketAssets as b6, type ClobMarketRecord as b7, type ClobMarketSummary as b8, type ClobTrade as b9, type DelegationHistoryRecord as bA, type DelegationRow as bB, type DelegationsResponse as bC, type DutyAbsence as bD, EMPTY_ROOT as bE, type EncodeNativeNftBuyListingArgs as bF, type EncodeNativeNftCancelListingArgs as bG, type EncodeNativeNftCreateListingArgs as bH, type EncodeNativeNftPlaceAuctionBidArgs as bI, type EncodeNativeNftSettleAuctionArgs as bJ, type EncodeNativeNftSweepExpiredListingsArgs as bK, type EncodeNativeSpotCancelOrderArgs as bL, type EncodeNativeSpotCreateMarketArgs as bM, type EncodeNativeSpotLimitOrderArgs as bN, type EncodeNativeSpotSettleLimitOrderArgs as bO, type EncodeNativeSpotSettleRoutedLimitOrderArgs as bP, type EncryptionKeyResponse as bQ, type EntityRatchetResponse as bR, type EthCallRequest as bS, type EthSendTransactionRequest as bT, type ExpireClusterJoinCalldataArgs as bU, type ExplorerEndpoint as bV, FEED_ID_DOMAIN_TAG as bW, type FeeHistoryResponse as bX, type FormClusterCalldataArgs as bY, type FormClusterV2CalldataArgs as bZ, type GapRange as b_, type ClusterAprResponse as ba, type ClusterCharterArgs as bb, type ClusterDelegatorsResponse as bc, type ClusterDirectoryEntryResponse as bd, type ClusterDirectoryPageResponse as be, type ClusterDiversity as bf, type ClusterDiversityView as bg, type ClusterEntityResponse as bh, type ClusterFormedEvent as bi, type ClusterJoinRequestStatus as bj, type ClusterMemberResponse as bk, type ClusterNameResponse as bl, type ClusterResignationRow as bm, type ClusterResignationsResponse as bn, type ClusterStatusResponse as bo, type CommitArchiveRootCalldataArgs as bp, type CreateRequestCanonicalArgs as bq, DIVERSITY_SCORE_MAX as br, type DagParent as bs, type DagParentsResponse as bt, type DagSyncStatus as bu, type DecodeTxExtension as bv, type DecodeTxLog as bw, type DecodeTxPqAttestation as bx, type DecodeTxResponse as by, type DelegationCapResponse as bz, type NativeDecodedEvent as c, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT as c$, type GapRecordsResponse as c0, type GetClusterJoinRequestCalldataArgs as c1, type GetOperatorSealKeyCalldataArgs as c2, type Hash as c3, type Hex as c4, type IndexerStatus as c5, type JailStatusWindow as c6, type KeyRotationWindow as c7, type ListProofRequestsResponse as c8, type LythUpgradePlanStatus as c9, NAME_REGISTRY_SELECTORS as cA, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE as cB, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY as cC, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET as cD, NATIVE_MARKET_EVENT_FAMILY as cE, NATIVE_MARKET_MODULE_ADDRESS as cF, NATIVE_MARKET_MODULE_ADDRESS_BYTES as cG, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as cH, NODE_REGISTRY_ARCHIVE_CHALLENGE_DOMAIN as cI, NODE_REGISTRY_ARCHIVE_KIND_EPOCH_SEED as cJ, NODE_REGISTRY_ARCHIVE_NONCE_DOMAIN as cK, NODE_REGISTRY_BLS_PUBKEY_BYTES as cL, NODE_REGISTRY_CAPABILITIES as cM, NODE_REGISTRY_CAPABILITY_MASK as cN, NODE_REGISTRY_CHALLENGE_EPOCH_WINDOW as cO, NODE_REGISTRY_CHARTER_COOLDOWN_EPOCHS as cP, NODE_REGISTRY_CLUSTER_CHARTER_BYTES as cQ, NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS as cR, NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS as cS, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES as cT, NODE_REGISTRY_CONSENSUS_POP_BYTES as cU, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES as cV, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES as cW, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES as cX, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS as cY, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS as cZ, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES as c_, type LythUpgradeStatusResponse as ca, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES as cb, MAX_NATIVE_RECEIPT_EVENTS as cc, ML_DSA_65_PUBLIC_KEY_LEN$1 as cd, ML_DSA_65_SIGNATURE_LEN$1 as ce, MULTISIG_ADDRESS_DERIVATION_DOMAIN as cf, MarketActionError as cg, type MarketTransactionPlan as ch, type MempoolSnapshot as ci, type MeshDecodedTx as cj, type MeshSignedTxResponse as ck, type MeshTxIntent as cl, type MeshUnsignedTxResponse as cm, type MetricsRangeResponse as cn, type MetricsRangeSample as co, type MetricsRangeSeries as cp, type MetricsRangeStatus as cq, type MrcAccountRecord as cr, type MrcMetadataRecord as cs, type MrcPolicyRecord as ct, type MrcPolicySpendRecord as cu, NAME_BASE_MULTIPLIER as cv, NAME_FALLBACK_FEE_UNIT_LYTHOSHI as cw, NAME_LABEL_MAX_LEN as cx, NAME_LABEL_MIN_LEN as cy, NAME_MAX_LEN as cz, type NativeEventFilter as d, type NativeMarketOrderBookDeltasResponseFilters as d$, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT as d0, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN as d1, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN_V2 as d2, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT as d3, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD as d4, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES as d5, NODE_REGISTRY_MAX_MERKLE_PROOF_DEPTH as d6, NODE_REGISTRY_MERKLE_INNER_DOMAIN as d7, NODE_REGISTRY_MERKLE_LEAF_DOMAIN as d8, NODE_REGISTRY_MIN_ARCHIVE_LEAF_COUNT as d9, type NameRegistrationQuote as dA, NameRegistryError as dB, type NativeAgentArbiterStateRecord as dC, type NativeAgentAttestationStateRecord as dD, type NativeAgentAvailabilityStateRecord as dE, type NativeAgentConsentStateRecord as dF, type NativeAgentEscrowStateRecord as dG, type NativeAgentIssuerStateRecord as dH, type NativeAgentPolicySpendStateRecord as dI, type NativeAgentPolicyStateRecord as dJ, type NativeAgentReputationReviewStateRecord as dK, type NativeAgentServiceStateRecord as dL, type NativeAgentStateFilterParamValue as dM, type NativeAgentStateResponseFilters as dN, type NativeAgentStateSource as dO, type NativeCallForwarderArtifact as dP, type NativeCollectionRoyaltyStateRecord as dQ, type NativeEventConsumer as dR, type NativeEventProjection as dS, type NativeEventsResponseFilters as dT, type NativeEventsSource as dU, type NativeMarketAddressInput as dV, type NativeMarketAddressKind as dW, type NativeMarketForwarderInput as dX, type NativeMarketModuleCallEnvelope as dY, type NativeMarketModuleContractCall as dZ, type NativeMarketOrderBookDelta as d_, NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES as da, NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES as db, NODE_REGISTRY_OPERATOR_SEAL_EK_BYTES as dc, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID as dd, NODE_REGISTRY_PUBLIC_SERVICE_MASK as de, NODE_REGISTRY_SELECTORS as df, NODE_REGISTRY_SUBKIND_CHARTER_DELEGATOR_BPS as dg, NODE_REGISTRY_SUBKIND_CHARTER_MEMBER_SHARES as dh, NODE_REGISTRY_TAG_ARCHIVE_CHALLENGE as di, NODE_REGISTRY_TAG_CLUSTER_CHARTER as dj, NODE_REGISTRY_TAG_SERVICE_SCORE as dk, NODE_REGISTRY_TAG_TREASURY as dl, NODE_REGISTRY_UPDATE_CHARTER_MESSAGE_DOMAIN as dm, NODE_REGISTRY_UPDATE_CHARTER_THRESHOLD as dn, NO_EVM_ARCHIVE_PROOF_SCHEMA as dp, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as dq, NO_EVM_FINALITY_EVIDENCE_SCHEMA as dr, NO_EVM_FINALITY_EVIDENCE_SOURCE as ds, NO_EVM_RECEIPTS_ROOT_DOMAIN as dt, NO_EVM_RECEIPT_CODEC as du, NO_EVM_RECEIPT_PROOF_SCHEMA as dv, NO_EVM_RECEIPT_PROOF_TYPE as dw, NO_EVM_RECEIPT_ROOT_ALGORITHM as dx, type NameCategory as dy, type NameOfResponse as dz, type TypedNativeReceiptEvent as e, type OracleFeedConfig as e$, type NativeMarketOrderBookDeltasSource as e0, type NativeMarketOrderBookStreamAction as e1, type NativeMarketOrderBookStreamPayload as e2, type NativeMarketStateFilterParamValue as e3, type NativeMarketStateResponseFilters as e4, type NativeMarketStateSource as e5, type NativeModuleForwarderDescriptor as e6, type NativeMrcPolicyProjection as e7, type NativeNftAssetStandard as e8, type NativeNftListingKind as e9, type NoEvmReceiptTrustIssueCode as eA, type NoEvmReceiptTrustPolicy as eB, type NoEvmReceiptTrustVerification as eC, type NoEvmReceiptTrustedBlsSigner as eD, type NoEvmReceiptTrustedSigner as eE, type NoEvmRoundFinalityVerification as eF, type NodeHostingClass as eG, NodeRegistryError as eH, OPERATOR_ROUTER_EVENT_SIGS as eI, OPERATOR_ROUTER_SELECTORS as eJ, OPERATOR_ROUTER_SIGS as eK, ORACLE_EVENT_SIGS as eL, type OperatorAuthorityResponse as eM, type OperatorFeeChargedEvent as eN, type OperatorFeeConfig as eO, type OperatorFeeQuote as eP, type OperatorInfoResponse as eQ, type OperatorNetworkMetadata as eR, type OperatorNetworkMetadataView as eS, type OperatorRiskResponse as eT, type OperatorRouterConfig as eU, type OperatorSigningActivityResponse as eV, type OperatorSigningEntry as eW, type OperatorSurfaceCapability as eX, type OperatorSurfaceStatus as eY, type OracleEvent as eZ, OracleEventError as e_, type NativeNftListingStateRecord as ea, type NativeReceiptCounters as eb, type NativeReceiptEvent as ec, type NativeReceiptSource as ed, type NativeSpotMarketStateRecord as ee, type NativeSpotOrderStateRecord as ef, type NetworkClientOptions as eg, type NetworkSlug as eh, type NoEvmArchiveCoveringSnapshot as ei, type NoEvmArchiveProof as ej, type NoEvmArchiveSignatureVerification as ek, type NoEvmArchiveSignatureVerificationIssue as el, type NoEvmArchiveSignatureVerificationIssueCode as em, type NoEvmArchiveTrustedSigner as en, type NoEvmBlockBlsFinalityVerification as eo, type NoEvmBlockRoundFinalityVerification as ep, type NoEvmBlsFinalityVerification as eq, type NoEvmFinalityBlockReference as er, type NoEvmFinalityCertificate as es, type NoEvmFinalityEvidence as et, type NoEvmReceiptFinalityTrustPolicy as eu, type NoEvmReceiptProof as ev, NoEvmReceiptProofError as ew, type NoEvmReceiptProofErrorCode as ex, type NoEvmReceiptProofVerification as ey, type NoEvmReceiptTrustIssue as ez, type NativeEventsFilter as f, type SearchHit as f$, type OracleLatestPrice as f0, type OracleSignerRow as f1, type OracleSignersResponse as f2, type OracleWriters as f3, type P2pSeed as f4, PENDING_CHANGE_KIND_CODES as f5, PROVER_MARKET_ADDRESS as f6, PROVER_MARKET_BID_DOMAIN as f7, PROVER_MARKET_EVENT_SIGS as f8, PROVER_MARKET_REQUEST_DOMAIN as f9, type Quantity as fA, type QuoteLiquidity as fB, RESERVED_ADDRESS_HRPS as fC, type RankedBridgeRoute as fD, type ReceiptProofTrustArchivePolicy as fE, type ReceiptProofTrustArchiveSigner as fF, type ReceiptProofTrustFinalityPolicy as fG, type ReceiptProofTrustFinalitySigner as fH, type ReceiptProofTrustPolicy as fI, type RedemptionQueueTicket as fJ, type RegistryRecord as fK, type ReportServiceProbeCalldataArgs as fL, type ReportServiceProbeRequest as fM, type ReportServiceProbeResponse as fN, type RequestClusterJoinCalldataArgs as fO, type ResolveNameResponse as fP, type RichListHolder as fQ, type RichListResponse as fR, type RoundCertificateResponse as fS, type RoundInfo as fT, type RpcClientOptions as fU, type RpcEndpoint as fV, type RuntimeProvenanceResponse as fW, SERVES_GPU_PROVE as fX, SERVICE_PROBE_STATUS as fY, SET_POLICY_CLAIM_DOMAIN_TAG as fZ, SPENDING_POLICY_SELECTORS as f_, PROVER_MARKET_SELECTORS as fa, PROVER_MARKET_SUBMIT_DOMAIN as fb, PROVER_SLASH_REASON_BAD_PROOF as fc, PROVER_SLASH_REASON_NON_DELIVERY as fd, type ParsedName as fe, type PeerSummary as ff, type PeerSummaryAggregate as fg, type PendingChangeKind as fh, type PendingCharterView as fi, type PendingRewardsRow as fj, type PendingTxSummary as fk, type PlaceLimitOrderViaArgs as fl, type PlaceLimitOrderViaPlan as fm, type PlaceSpotLimitOrderArgs as fn, type PlaceSpotMarketOrderArgs as fo, type PlaceSpotMarketOrderExArgs as fp, type PrecompileCatalogueResponse as fq, type PrecompileDescriptor as fr, type ProofRequestRow as fs, type ProofRequestView as ft, type ProverBidView as fu, type ProverBidsResponse as fv, ProverMarketError as fw, type ProverMarketState as fx, type ProverMarketStatusResponse as fy, type PublishOperatorSealKeyCalldataArgs as fz, type NativeEventsResponse as g, buildNativeNftPlaceAuctionBidModuleCall as g$, type ServiceProbeStatusLabel as g0, type SetOperatorDisplayCalldataArgs as g1, type SigningEntryStatus as g2, type SpendingPolicyArgs as g3, SpendingPolicyError as g4, type SpendingPolicyTimeWindow as g5, type SpendingPolicyView as g6, type SpotLimitOrderSide as g7, type SpotMarketOrderMode as g8, type StorageProofBatch as g9, addressBytesToHex as gA, addressToBech32 as gB, addressToTypedBech32 as gC, allowRootFor as gD, archiveMerkleInnerHash as gE, archiveMerkleLeafHash as gF, assertNativeMarketOrderBookStreamPayload as gG, assessBridgeRoute as gH, bech32ToAddress as gI, bech32ToAddressBytes as gJ, bidSighash as gK, bridgeAddressHex as gL, bridgeDrainRemaining as gM, bridgeQuoteSubmitReadiness as gN, bridgeRoutesReadiness as gO, bridgeTransferCandidates as gP, buildBridgeRouteCatalogue as gQ, buildCancelSpotOrderPlan as gR, buildNativeCallForwarderArtifact as gS, buildNativeMarketModuleCallEnvelope as gT, buildNativeNftBuyListingForwarderInput as gU, buildNativeNftBuyListingModuleCall as gV, buildNativeNftCancelListingForwarderInput as gW, buildNativeNftCancelListingModuleCall as gX, buildNativeNftCreateListingForwarderInput as gY, buildNativeNftCreateListingModuleCall as gZ, buildNativeNftPlaceAuctionBidForwarderInput as g_, type SubmitPendingChangeCalldataArgs as ga, type SwapIntentStatus as gb, type SyncStatus as gc, TESTNET_69420 as gd, type TokenBalanceMrcIdentity as ge, type TokenBalanceRecord as gf, type TokenBalanceWithMetadata as gg, type TotalBurnedResponse as gh, type TpmAttestationResponse as gi, type TransactionReceipt as gj, type TransactionView as gk, type TxConfirmations as gl, type TxFeedReceipt as gm, type TxFeedTransaction as gn, type TxStatusFoundResponse as go, type TxStatusNotFoundResponse as gp, type TxStatusResponse as gq, type UpcomingDutiesResponse as gr, type UpcomingDutyMap as gs, type UpdateCharterCalldataArgs as gt, type UserAddressInput as gu, V1_BRIDGE_ALLOWED_FEE_TOKEN as gv, V1_BRIDGE_ALLOWED_PROTOCOL as gw, type VertexAtRound as gx, type VerticesAtRoundResponse as gy, type VoteClusterAdmitCalldataArgs as gz, type NativeAgentStateFilter as h, encodeCancelPendingChangeCalldata as h$, buildNativeNftSettleAuctionForwarderInput as h0, buildNativeNftSettleAuctionModuleCall as h1, buildNativeNftSweepExpiredListingsForwarderInput as h2, buildNativeNftSweepExpiredListingsModuleCall as h3, buildNativeSpotCancelOrderForwarderInput as h4, buildNativeSpotCancelOrderModuleCall as h5, buildNativeSpotCreateMarketForwarderInput as h6, buildNativeSpotCreateMarketModuleCall as h7, buildNativeSpotLimitOrderForwarderInput as h8, buildNativeSpotLimitOrderModuleCall as h9, decodeNativeReceiptResponse as hA, decodeNoEvmReceiptTranscript as hB, decodeOperatorFeeChargedEvent as hC, decodeOperatorNetworkMetadata as hD, decodeOperatorSealKey as hE, decodeOracleEvent as hF, decodePendingCharter as hG, decodeProbeAuthority as hH, decodeScoreServiceProbe as hI, decodeTimeWindow as hJ, decodeTxFeedResponse as hK, denyRootFor as hL, deriveArchiveChallenge as hM, deriveClobMarketId as hN, deriveClusterAnchorAddress as hO, deriveFeedId as hP, deriveNativeSpotMarketId as hQ, deriveNativeSpotOrderId as hR, destinationRoot as hS, encodeAnswerArchiveChallengeCalldata as hT, encodeAttestDkgReshareCalldata as hU, encodeAttestServiceProbeCalldata as hV, encodeBlockSelector as hW, encodeBridgeChallengeCalldata as hX, encodeBridgeClaimCalldata as hY, encodeCancelClusterJoinCalldata as hZ, encodeCancelOrderCalldata as h_, buildNativeSpotSettleLimitOrderForwarderInput as ha, buildNativeSpotSettleLimitOrderModuleCall as hb, buildNativeSpotSettleRoutedLimitOrderForwarderInput as hc, buildNativeSpotSettleRoutedLimitOrderModuleCall as hd, buildPlaceLimitOrderViaPlan as he, buildPlaceSpotLimitOrderPlan as hf, buildPlaceSpotMarketOrderExPlan as hg, buildPlaceSpotMarketOrderPlan as hh, categoryRoot as hi, clobAddressHex as hj, clusterApyPercent as hk, composeClaimBoundMessage as hl, computeNoEvmDacFinalityMessage as hm, computeNoEvmLeaderFinalityMessage as hn, computeNoEvmReceiptsRoot as ho, computeNoEvmRoundFinalityMessage as hp, computeNoEvmTargetReceiptHash as hq, computeQuoteLiquidity as hr, consumeNativeEvents as hs, decodeActiveCharter as ht, decodeClusterCharter as hu, decodeClusterDiversity as hv, decodeClusterFormedEvent as hw, decodeClusterJoinRequest as hx, decodeNativeAgentStateResponse as hy, decodeNativeMarketOrderBookDeltasResponse as hz, type NativeAgentStateResponse as i, getP2pSeeds as i$, encodeClaimPolicyByAddressCalldata as i0, encodeClusterCharter as i1, encodeCommitArchiveRootCalldata as i2, encodeCreateRequestCalldata as i3, encodeCreateRequestCanonical as i4, encodeDisableCalldata as i5, encodeEnableCalldata as i6, encodeExpireClusterJoinCalldata as i7, encodeFormClusterCalldata as i8, encodeFormClusterV2Calldata as i9, encodePublishOperatorSealKeyCalldata as iA, encodeRecoverOperatorNodeCalldata as iB, encodeReportServiceProbeCalldata as iC, encodeRequestClusterJoinCalldata as iD, encodeSetBridgeResumeCooldownCalldata as iE, encodeSetBridgeRouteFinalityCalldata as iF, encodeSetLotSizeCalldata as iG, encodeSetMinNotionalCalldata as iH, encodeSetOperatorDisplayCalldata as iI, encodeSetPolicyCalldata as iJ, encodeSetPolicyClaimCalldata as iK, encodeSetProbeAuthorityCalldata as iL, encodeSetTickSizeCalldata as iM, encodeSubmitBridgeProofCalldata as iN, encodeSubmitPendingChangeCalldata as iO, encodeUpdateCharterCalldata as iP, encodeVoteClusterAdmitCalldata as iQ, exportBridgeRouteCatalogueJson as iR, fetchChainInfoLatest as iS, fetchChainRegistryLatest as iT, formClusterMessage as iU, formClusterMessageHex as iV, formClusterMessageV2 as iW, formClusterMessageV2Hex as iX, formatOraclePrice as iY, getChainInfo as iZ, getNoEvmReceiptTrustPolicy as i_, encodeGetClusterJoinRequestCalldata as ia, encodeGetOperatorSealKeyCalldata as ib, encodeGetPendingCharterCalldata as ic, encodeGetProbeAuthorityCalldata as id, encodeLockBridgeConfigCalldata as ie, encodeNameAcceptTransferCall as ig, encodeNameProposeTransferCall as ih, encodeNameRegisterCall as ii, encodeNativeMarketModuleForwarderInput as ij, encodeNativeNftBuyListingCall as ik, encodeNativeNftCancelListingCall as il, encodeNativeNftCreateListingCall as im, encodeNativeNftPlaceAuctionBidCall as io, encodeNativeNftSettleAuctionCall as ip, encodeNativeNftSweepExpiredListingsCall as iq, encodeNativeSpotCancelOrderCall as ir, encodeNativeSpotCreateMarketCall as is, encodeNativeSpotLimitOrderCall as it, encodeNativeSpotSettleLimitOrderCall as iu, encodeNativeSpotSettleRoutedLimitOrderCall as iv, encodePlaceLimitOrderCalldata as iw, encodePlaceLimitOrderViaCalldata as ix, encodePlaceMarketOrderCalldata as iy, encodePlaceMarketOrderExCalldata as iz, type NativeMarketStateFilter as j, typedBech32ToAddress as j$, getRpcEndpoints as j0, hexToAddressBytes as j1, isBridgeAdminLockedRevert as j2, isBridgeCooldownZeroRevert as j3, isBridgeFinalityZeroRevert as j4, isBridgeResumeCooldownActiveRevert as j5, isConcreteServiceProbeStatus as j6, isNativeDecodedEvent as j7, isNativeMarketOrderBookStreamPayload as j8, isSinglePublicServiceProbeMask as j9, parseChainRegistryToml as jA, parseDkgResharePublicKeys as jB, parseNameCategory as jC, parseNativeDecodedEvent as jD, parseQuantity as jE, parseQuantityBig as jF, protocolNonceForEpoch as jG, proverMarketStateFromByte as jH, quoteOperatorFee as jI, rankBridgeRoutes as jJ, rankMarketsByVolume as jK, requestSighash as jL, requireTypedAddress as jM, selectBridgeTransferRoute as jN, serviceMaskToBitIndex as jO, serviceProbeStatusLabel as jP, setDestinationRoot as jQ, slotArchiveChallengePass as jR, slotClusterCharter as jS, slotClusterCharterDelegator as jT, slotClusterCharterMembers as jU, slotClusterServiceScore as jV, slotEpochChallengeSeed as jW, slotProbeAuthority as jX, slotScoreServiceProbe as jY, spendingPolicyAddressHex as jZ, submitSighash as j_, isValidNodeRegistryCapabilities as ja, isValidPublicServiceProbeMask as jb, nameLengthModifierX10 as jc, nameRegistrationCost as jd, nameRegistryAddressHex as je, nativeAgentStateFilterParams as jf, nativeEventMatches as jg, nativeEventsFilterParams as jh, nativeEventsFromHistory as ji, nativeEventsFromReceipt as jj, nativeMarketEventFilter as jk, nativeMarketEventsFromHistory as jl, nativeMarketEventsFromReceipt as jm, nativeMarketStateFilterParams as jn, noEvmReceiptTrustPolicyFromChainInfo as jo, nodeHostingClassFromByte as jp, nodeHostingClassToByte as jq, nodeRegistryAddressHex as jr, normalizeAddressHex as js, normalizeBridgeRouteCatalogue as jt, normalizePendingChangeKind as ju, oracleAddressHex as jv, oraclePriceToNumber as jw, packTimeWindow as jx, parseAddress as jy, parseBridgeRouteCatalogueJson as jz, type NativeMarketStateResponse as k, generateOperatorSealKeypair as k$, updateCharterMessage as k0, updateCharterMessageHex as k1, validateAddress as k2, validateBridgeRouteCatalogue as k3, verifyNoEvmArchiveProofSignatures as k4, verifyNoEvmBlockFinalityEvidenceMultisig as k5, verifyNoEvmBlockFinalityEvidenceThreshold as k6, verifyNoEvmFinalityEvidenceMultisig as k7, verifyNoEvmFinalityEvidenceThreshold as k8, verifyNoEvmReceiptProof as k9, type PlaintextSubmission as kA, SEAL_COMMIT_LEN as kB, SEAL_DK_LEN as kC, SEAL_EK_LEN as kD, SEAL_KEM_CT_LEN as kE, SEAL_KEM_SEED_LEN as kF, SEAL_KEY_LEN as kG, SEAL_NONCE_LEN as kH, SEAL_SHARE_LEN as kI, SEAL_TAG_LEN as kJ, STANDARD_ALGO_NUMBER_ML_DSA_65 as kK, type SealRandomSource as kL, type SealRecipient as kM, type SealedSubmission as kN, bincodeDecryptHint as kO, bincodeEncryptedEnvelope as kP, bincodeNonceAad as kQ, bincodeSignedTransaction as kR, buildEncryptedEnvelope as kS, buildEncryptedSubmission as kT, buildPlaintextSubmission as kU, cryptoRandomSource as kV, encodeMlDsa65Opaque as kW, encodeSealEnvelope as kX, encodeTransactionForHash as kY, encryptInnerTx as kZ, fetchEncryptionKey as k_, verifyNoEvmReceiptProofTrust as ka, ADDRESS_DERIVATION_DOMAIN as kb, CLUSTER_MLKEM_SHAMIR as kc, CLUSTER_MLKEM_SHAMIR_ALGO as kd, type ClusterSealKeyEntryInput as ke, DKG_AEAD_TAG_LEN as kf, DKG_NONCE_LEN as kg, type DecryptHint as kh, ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE as ki, ENUM_VARIANT_INDEX_ML_DSA_65 as kj, type EncryptedEnvelope as kk, type EncryptedSubmission as kl, type JsonRpcCallClient as km, type LythiumSealEnvelope as kn, ML_DSA_65_PUBLIC_KEY_LEN as ko, ML_DSA_65_SEED_LEN as kp, ML_DSA_65_SIGNATURE_LEN as kq, ML_DSA_65_SIGNING_KEY_LEN as kr, ML_KEM_768_CIPHERTEXT_LEN as ks, ML_KEM_768_ENCAPSULATION_KEY_LEN as kt, ML_KEM_768_SHARED_SECRET_LEN as ku, type NativeTxExtension as kv, type NativeTxExtensionDescriptor as kw, type NativeTxExtensionLike as kx, type NonceAad as ky, type OperatorSealKeypair as kz, type NativeMarketOrderBookDeltasRequest as l, getClusterSealKeys as l0, mlDsa65AddressBytes as l1, mlDsa65AddressFromPublicKey as l2, outerSigDigest as l3, parseClusterSealKeys as l4, sealRosterHash as l5, sealToCluster as l6, sealTransaction as l7, submitEncryptedEnvelope as l8, submitPlaintextTransaction as l9, submitSealedTransaction as la, submitTransactionWithPrivacy as lb, type NativeMarketOrderBookDeltasResponse as m, type AddressProfileResponse as n, type AddressFlowResponse as o, type RedemptionQueueResponse as p, type MrcAccountResponse as q, type MrcHoldersResponse as r, type BridgeRoutesRequest as s, type BridgeRoutesResponse as t, type ServiceProbeResponse as u, type ClobMarketsResponse as v, type ClobMarketResponse as w, type ClobTradesResponse as x, type ClobOhlcResponse as y, type ClobOrderBookResponse as z };
@@ -2671,6 +2671,30 @@ declare const NODE_REGISTRY_TAG_SERVICE_SCORE = 36;
2671
2671
  * node-registry `storage::TAG_TREASURY`.
2672
2672
  */
2673
2673
  declare const NODE_REGISTRY_TAG_TREASURY = 31;
2674
+ /**
2675
+ * Storage-slot tag byte for the per-cluster ACTIVE economics charter family
2676
+ * (under `0x1005`). Mirrors mono-core
2677
+ * `protocore_node_registry::cluster_anchor::TAG_CLUSTER_CHARTER`. The active
2678
+ * charter is written by the V2 `formCluster(bytes,bytes,bytes,bytes)` path
2679
+ * (and amended via `updateCharter` once the cooldown lands) and read by the
2680
+ * reward engine each block. Two sub-kind slots per cluster — see
2681
+ * {@link slotClusterCharterDelegator} / {@link slotClusterCharterMembers}.
2682
+ */
2683
+ declare const NODE_REGISTRY_TAG_CLUSTER_CHARTER = 49;
2684
+ /**
2685
+ * Charter sub-kind `0x00` — the presence + delegator-share slot. The stored
2686
+ * value is a right-aligned `u64` equal to `delegatorShareBps + 1`; a zero
2687
+ * word means NO active charter (genesis clusters / 3-arg formCluster, which
2688
+ * fall back to the legacy default split). Mirrors
2689
+ * `SUBKIND_CHARTER_DELEGATOR_BPS`.
2690
+ */
2691
+ declare const NODE_REGISTRY_SUBKIND_CHARTER_DELEGATOR_BPS = 0;
2692
+ /**
2693
+ * Charter sub-kind `0x01` — the packed member-shares slot. The stored value
2694
+ * is a single 32-byte word holding the 10×u16 BE member shares in its low
2695
+ * 20 bytes (offset 12..32). Mirrors `SUBKIND_CHARTER_MEMBER_SHARES`.
2696
+ */
2697
+ declare const NODE_REGISTRY_SUBKIND_CHARTER_MEMBER_SHARES = 1;
2674
2698
  type PendingChangeKind = "add" | "remove" | "rotate";
2675
2699
  declare const PENDING_CHANGE_KIND_CODES: Record<PendingChangeKind, number>;
2676
2700
  /** Canonical `ClusterFormed(uint32,uint64,address,bytes)` event topic0 (MB-5). */
@@ -2807,6 +2831,28 @@ interface PendingCharterView {
2807
2831
  */
2808
2832
  memberShareBps: readonly number[];
2809
2833
  }
2834
+ /**
2835
+ * Decoded ACTIVE cluster charter (Law §6.8), reconstructed from the two
2836
+ * `TAG_CLUSTER_CHARTER` (`0x31`) storage words SLOADed against the
2837
+ * node-registry account `0x1005`. `present=false` (with zeroed shares) when
2838
+ * the cluster has no active charter — genesis clusters and clusters formed
2839
+ * through the 3-arg `formCluster` selector, which fall back to the legacy
2840
+ * default split. The active charter carries no on-chain effective epoch (it
2841
+ * is the currently-effective record); the cooldown / `effectiveEpoch` lives
2842
+ * only on the {@link PendingCharterView}.
2843
+ */
2844
+ interface ActiveCharterView {
2845
+ /** `true` iff the cluster has an active on-chain charter record. */
2846
+ present: boolean;
2847
+ /** The active delegator share of the cluster pot in basis points. */
2848
+ delegatorShareBps: number;
2849
+ /**
2850
+ * The active per-member operator-pot shares in basis points,
2851
+ * member-declaration order (active 0..7, then standby 7..10). Empty when
2852
+ * `present` is `false`.
2853
+ */
2854
+ memberShareBps: readonly number[];
2855
+ }
2810
2856
  /** Args for `commitArchiveRoot(bytes32,uint16,bytes32,uint64)` (Component B). */
2811
2857
  interface CommitArchiveRootCalldataArgs {
2812
2858
  peerId: string | Uint8Array | readonly number[];
@@ -3111,6 +3157,43 @@ declare function decodeScoreServiceProbe(word: string | Uint8Array | readonly nu
3111
3157
  * node-registry `storage::slot_probe_authority`.
3112
3158
  */
3113
3159
  declare function slotProbeAuthority(): string;
3160
+ /**
3161
+ * Slot for one sub-kind of a cluster's ACTIVE charter record (Law §6.8).
3162
+ * `keccak256(0x31 || clusterId_be32 || subkind)`. Mirrors mono-core
3163
+ * `cluster_anchor::slot_cluster_charter`.
3164
+ *
3165
+ * No RPC method exists for the active charter — derive the slot key and
3166
+ * SLOAD it via `eth_getStorageAt` / `lyth_getStorageAt` against the
3167
+ * node-registry account `0x1005`, then feed both words into
3168
+ * {@link decodeActiveCharter}. See {@link slotClusterCharterDelegator} and
3169
+ * {@link slotClusterCharterMembers} for the two concrete sub-kinds.
3170
+ */
3171
+ declare function slotClusterCharter(clusterId: bigint | number | string, subkind: number): string;
3172
+ /**
3173
+ * Slot holding the active charter's presence + delegator share
3174
+ * (sub-kind `0x00`). The stored word is a right-aligned `u64` equal to
3175
+ * `delegatorShareBps + 1`; a zero word means NO active charter.
3176
+ */
3177
+ declare function slotClusterCharterDelegator(clusterId: bigint | number | string): string;
3178
+ /**
3179
+ * Slot holding the active charter's packed member shares (sub-kind `0x01`).
3180
+ * The stored word holds the 10×u16 BE member shares in its low 20 bytes
3181
+ * (offset 12..32).
3182
+ */
3183
+ declare function slotClusterCharterMembers(clusterId: bigint | number | string): string;
3184
+ /**
3185
+ * Decode the two ACTIVE-charter storage words into an {@link ActiveCharterView}.
3186
+ *
3187
+ * `delegatorWord` is the sub-kind `0x00` presence word
3188
+ * ({@link slotClusterCharterDelegator}); `membersWord` is the sub-kind
3189
+ * `0x01` packed-shares word ({@link slotClusterCharterMembers}). When the
3190
+ * presence word is zero the cluster has no active charter and `present` is
3191
+ * `false` (zeroed shares). Mirrors mono-core
3192
+ * `cluster_anchor::load_cluster_charter_*`: the presence word decodes as
3193
+ * `delegatorShareBps = word - 1` (saturating), and the members word packs
3194
+ * the 10×u16 BE shares at byte offset 12.
3195
+ */
3196
+ declare function decodeActiveCharter(delegatorWord: string | Uint8Array | readonly number[], membersWord: string | Uint8Array | readonly number[]): ActiveCharterView;
3114
3197
  /**
3115
3198
  * Decode CJ-1 `getClusterJoinRequest(uint32,bytes32)` return data.
3116
3199
  *
@@ -6188,6 +6271,35 @@ declare class RpcClient {
6188
6271
  lythGetSpendingPolicy(subAccount: string): Promise<SpendingPolicyView>;
6189
6272
  /** PF-6 — `lyth_getClusterDiversity`: diversity score + asn/geo/hosting breakdown. */
6190
6273
  lythGetClusterDiversity(clusterId: number): Promise<ClusterDiversityView>;
6274
+ /**
6275
+ * Component H — read a cluster's ACTIVE economics charter (Law §6.8).
6276
+ *
6277
+ * There is no `lyth_*` / view-selector for the active charter, so this
6278
+ * SLOADs the two `TAG_CLUSTER_CHARTER` (`0x31`) storage words from the
6279
+ * node-registry account `0x1005` via `eth_getStorageAt` and decodes them
6280
+ * with {@link decodeActiveCharter}. Returns `{ present: false }` (zeroed
6281
+ * shares) for genesis / 3-arg-formCluster clusters that never adopted a
6282
+ * charter. The active record carries no `effectiveEpoch` — that lives on
6283
+ * the pending amendment ({@link lythGetPendingCharter}).
6284
+ */
6285
+ lythGetClusterCharter(clusterId: number, block?: BlockSelector): Promise<ActiveCharterView>;
6286
+ /**
6287
+ * Component H — read a cluster's PENDING charter amendment (Law §6.8).
6288
+ *
6289
+ * Calls the `getPendingCharter(uint32)` view on the node-registry account
6290
+ * `0x1005` over `eth_call` and decodes the return with
6291
+ * {@link decodePendingCharter}. Returns `{ present: false }` when no
6292
+ * amendment is posted; otherwise carries the proposed shares plus the
6293
+ * `effectiveEpoch` at which the delegator-protective cooldown lands.
6294
+ */
6295
+ lythGetPendingCharter(clusterId: number, block?: BlockSelector): Promise<PendingCharterView>;
6296
+ /**
6297
+ * Component A — read a cluster's settled per-cluster ServiceScore (the
6298
+ * `u64` the reward path reads each block). SLOADs the `TAG_SERVICE_SCORE`
6299
+ * (`0x24`) score slot from `0x1005` via `eth_getStorageAt`; `0n` means the
6300
+ * cluster has never been scored.
6301
+ */
6302
+ lythGetClusterServiceScore(clusterId: number, block?: BlockSelector): Promise<bigint>;
6191
6303
  /**
6192
6304
  * PF-6 — `lyth_getOperatorNetworkMetadata`: ASN/geo/hosting-class/IP/PCR
6193
6305
  * for a peer. `operatorId` is the 32-byte operator/peer id as `0x…` hex
@@ -6945,4 +7057,4 @@ declare function submitTransactionWithPrivacy(args: {
6945
7057
  class?: MempoolClass;
6946
7058
  }): Promise<string>;
6947
7059
 
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 };
7060
+ export { type Address as $, type ApiStreamsIndexResponse as A, type BlockSelector as B, type ChainStatsResponse as C, type NativeEvmTxFields as D, type EncryptionKey as E, MempoolClass as F, type TypedAddress as G, RpcClient as H, MlDsa65Backend as I, type ExecutionUnitPriceResponse as J, type ClusterSealKeys as K, type ClusterSealKeysSource as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, type ClusterJoinRequestView as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, type AddressKind as U, ADDRESS_HRP as V, ADDRESS_KIND_HRPS as W, API_STREAM_TOPICS as X, type AccountPolicy as Y, type AccountProofResponse as Z, type ActiveCharterView as _, type RuntimeUpgradeStatus as a, type CancelSpotOrderArgs as a$, type AddressActivityArchiveRedirect as a0, type AddressActivityEntry as a1, type AddressActivityEntryEnriched as a2, type AddressActivityKind as a3, type AddressActivityKindResponse as a4, type AddressActivityKindRetention as a5, AddressError as a6, type AddressLabelRecord as a7, type AddressValidation as a8, type AgentReputationCategoryScope as a9, type BridgeHealthRecord as aA, type BridgeHealthResponse as aB, BridgePrecompileError as aC, type BridgeQuoteSubmitReadiness as aD, type BridgeRiskTier as aE, type BridgeRouteAssessment as aF, type BridgeRouteCandidate as aG, type BridgeRouteCatalogue as aH, BridgeRouteCatalogueError as aI, type BridgeRouteCatalogueJsonOptions as aJ, type BridgeRouteCataloguePayload as aK, type BridgeRouteCatalogueRoute as aL, type BridgeRouteCatalogueValidation as aM, type BridgeRouteDisclosure as aN, type BridgeRouteSelection as aO, type BridgeRoutesSource as aP, type BridgeTransferIntent as aQ, type BridgeTransferRequest as aR, type BridgeVerifierDisclosure as aS, CHAIN_REGISTRY as aT, CHAIN_REGISTRY_RAW_BASE as aU, CLOB_MARKET_ID_DOMAIN_TAG as aV, CLOB_SELECTORS as aW, CLUSTER_FORMED_EVENT_SIG as aX, type CallRequest as aY, type CancelClusterJoinCalldataArgs as aZ, type CancelPendingChangeCalldataArgs as a_, type AgentReputationRecord as aa, type AgentReputationResponse as ab, type AnswerArchiveChallengeCalldataArgs as ac, type ApiStreamTopic as ad, type ApiStreamTopicMetadata as ae, type ApiStreamTopicRetention as af, type ArchiveChallenge as ag, type AssetPolicy as ah, type AttestDkgReshareCalldataArgs as ai, type AttestServiceProbeCalldataArgs as aj, type AttestationWindow as ak, BRIDGE_QUOTE_API_BLOCKED_REASON as al, BRIDGE_REVERT_TAGS as am, BRIDGE_SELECTORS as an, BRIDGE_SUBMIT_API_BLOCKED_REASON as ao, type BlockHeader as ap, type BlockTag as aq, type BlsCertificateResponse as ar, type BridgeAdminControl as as, type BridgeAnchorState as at, type BridgeBreakerState as au, type BridgeBytesInput as av, type BridgeCircuitBreakerFields as aw, type BridgeCircuitBreakerState as ax, type BridgeDrainCap as ay, type BridgeDrainStatus as az, type NativeReceiptResponse as b, type GapRecord as b$, type CapabilitiesResponse as b0, type CapabilityDescriptor as b1, type ChainInfo as b2, type ChainRegistry as b3, type CheckpointRecord as b4, type CirculatingSupplyResponse as b5, type ClobMarketAssets as b6, type ClobMarketRecord as b7, type ClobMarketSummary as b8, type ClobTrade as b9, type DelegationHistoryRecord as bA, type DelegationRow as bB, type DelegationsResponse as bC, type DutyAbsence as bD, EMPTY_ROOT as bE, type EncodeNativeNftBuyListingArgs as bF, type EncodeNativeNftCancelListingArgs as bG, type EncodeNativeNftCreateListingArgs as bH, type EncodeNativeNftPlaceAuctionBidArgs as bI, type EncodeNativeNftSettleAuctionArgs as bJ, type EncodeNativeNftSweepExpiredListingsArgs as bK, type EncodeNativeSpotCancelOrderArgs as bL, type EncodeNativeSpotCreateMarketArgs as bM, type EncodeNativeSpotLimitOrderArgs as bN, type EncodeNativeSpotSettleLimitOrderArgs as bO, type EncodeNativeSpotSettleRoutedLimitOrderArgs as bP, type EncryptionKeyResponse as bQ, type EntityRatchetResponse as bR, type EthCallRequest as bS, type EthSendTransactionRequest as bT, type ExpireClusterJoinCalldataArgs as bU, type ExplorerEndpoint as bV, FEED_ID_DOMAIN_TAG as bW, type FeeHistoryResponse as bX, type FormClusterCalldataArgs as bY, type FormClusterV2CalldataArgs as bZ, type GapRange as b_, type ClusterAprResponse as ba, type ClusterCharterArgs as bb, type ClusterDelegatorsResponse as bc, type ClusterDirectoryEntryResponse as bd, type ClusterDirectoryPageResponse as be, type ClusterDiversity as bf, type ClusterDiversityView as bg, type ClusterEntityResponse as bh, type ClusterFormedEvent as bi, type ClusterJoinRequestStatus as bj, type ClusterMemberResponse as bk, type ClusterNameResponse as bl, type ClusterResignationRow as bm, type ClusterResignationsResponse as bn, type ClusterStatusResponse as bo, type CommitArchiveRootCalldataArgs as bp, type CreateRequestCanonicalArgs as bq, DIVERSITY_SCORE_MAX as br, type DagParent as bs, type DagParentsResponse as bt, type DagSyncStatus as bu, type DecodeTxExtension as bv, type DecodeTxLog as bw, type DecodeTxPqAttestation as bx, type DecodeTxResponse as by, type DelegationCapResponse as bz, type NativeDecodedEvent as c, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT as c$, type GapRecordsResponse as c0, type GetClusterJoinRequestCalldataArgs as c1, type GetOperatorSealKeyCalldataArgs as c2, type Hash as c3, type Hex as c4, type IndexerStatus as c5, type JailStatusWindow as c6, type KeyRotationWindow as c7, type ListProofRequestsResponse as c8, type LythUpgradePlanStatus as c9, NAME_REGISTRY_SELECTORS as cA, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE as cB, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY as cC, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET as cD, NATIVE_MARKET_EVENT_FAMILY as cE, NATIVE_MARKET_MODULE_ADDRESS as cF, NATIVE_MARKET_MODULE_ADDRESS_BYTES as cG, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as cH, NODE_REGISTRY_ARCHIVE_CHALLENGE_DOMAIN as cI, NODE_REGISTRY_ARCHIVE_KIND_EPOCH_SEED as cJ, NODE_REGISTRY_ARCHIVE_NONCE_DOMAIN as cK, NODE_REGISTRY_BLS_PUBKEY_BYTES as cL, NODE_REGISTRY_CAPABILITIES as cM, NODE_REGISTRY_CAPABILITY_MASK as cN, NODE_REGISTRY_CHALLENGE_EPOCH_WINDOW as cO, NODE_REGISTRY_CHARTER_COOLDOWN_EPOCHS as cP, NODE_REGISTRY_CLUSTER_CHARTER_BYTES as cQ, NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS as cR, NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS as cS, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES as cT, NODE_REGISTRY_CONSENSUS_POP_BYTES as cU, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES as cV, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES as cW, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES as cX, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS as cY, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS as cZ, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES as c_, type LythUpgradeStatusResponse as ca, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES as cb, MAX_NATIVE_RECEIPT_EVENTS as cc, ML_DSA_65_PUBLIC_KEY_LEN$1 as cd, ML_DSA_65_SIGNATURE_LEN$1 as ce, MULTISIG_ADDRESS_DERIVATION_DOMAIN as cf, MarketActionError as cg, type MarketTransactionPlan as ch, type MempoolSnapshot as ci, type MeshDecodedTx as cj, type MeshSignedTxResponse as ck, type MeshTxIntent as cl, type MeshUnsignedTxResponse as cm, type MetricsRangeResponse as cn, type MetricsRangeSample as co, type MetricsRangeSeries as cp, type MetricsRangeStatus as cq, type MrcAccountRecord as cr, type MrcMetadataRecord as cs, type MrcPolicyRecord as ct, type MrcPolicySpendRecord as cu, NAME_BASE_MULTIPLIER as cv, NAME_FALLBACK_FEE_UNIT_LYTHOSHI as cw, NAME_LABEL_MAX_LEN as cx, NAME_LABEL_MIN_LEN as cy, NAME_MAX_LEN as cz, type NativeEventFilter as d, type NativeMarketOrderBookDeltasResponseFilters as d$, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT as d0, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN as d1, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN_V2 as d2, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT as d3, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD as d4, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES as d5, NODE_REGISTRY_MAX_MERKLE_PROOF_DEPTH as d6, NODE_REGISTRY_MERKLE_INNER_DOMAIN as d7, NODE_REGISTRY_MERKLE_LEAF_DOMAIN as d8, NODE_REGISTRY_MIN_ARCHIVE_LEAF_COUNT as d9, type NameRegistrationQuote as dA, NameRegistryError as dB, type NativeAgentArbiterStateRecord as dC, type NativeAgentAttestationStateRecord as dD, type NativeAgentAvailabilityStateRecord as dE, type NativeAgentConsentStateRecord as dF, type NativeAgentEscrowStateRecord as dG, type NativeAgentIssuerStateRecord as dH, type NativeAgentPolicySpendStateRecord as dI, type NativeAgentPolicyStateRecord as dJ, type NativeAgentReputationReviewStateRecord as dK, type NativeAgentServiceStateRecord as dL, type NativeAgentStateFilterParamValue as dM, type NativeAgentStateResponseFilters as dN, type NativeAgentStateSource as dO, type NativeCallForwarderArtifact as dP, type NativeCollectionRoyaltyStateRecord as dQ, type NativeEventConsumer as dR, type NativeEventProjection as dS, type NativeEventsResponseFilters as dT, type NativeEventsSource as dU, type NativeMarketAddressInput as dV, type NativeMarketAddressKind as dW, type NativeMarketForwarderInput as dX, type NativeMarketModuleCallEnvelope as dY, type NativeMarketModuleContractCall as dZ, type NativeMarketOrderBookDelta as d_, NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES as da, NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES as db, NODE_REGISTRY_OPERATOR_SEAL_EK_BYTES as dc, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID as dd, NODE_REGISTRY_PUBLIC_SERVICE_MASK as de, NODE_REGISTRY_SELECTORS as df, NODE_REGISTRY_SUBKIND_CHARTER_DELEGATOR_BPS as dg, NODE_REGISTRY_SUBKIND_CHARTER_MEMBER_SHARES as dh, NODE_REGISTRY_TAG_ARCHIVE_CHALLENGE as di, NODE_REGISTRY_TAG_CLUSTER_CHARTER as dj, NODE_REGISTRY_TAG_SERVICE_SCORE as dk, NODE_REGISTRY_TAG_TREASURY as dl, NODE_REGISTRY_UPDATE_CHARTER_MESSAGE_DOMAIN as dm, NODE_REGISTRY_UPDATE_CHARTER_THRESHOLD as dn, NO_EVM_ARCHIVE_PROOF_SCHEMA as dp, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as dq, NO_EVM_FINALITY_EVIDENCE_SCHEMA as dr, NO_EVM_FINALITY_EVIDENCE_SOURCE as ds, NO_EVM_RECEIPTS_ROOT_DOMAIN as dt, NO_EVM_RECEIPT_CODEC as du, NO_EVM_RECEIPT_PROOF_SCHEMA as dv, NO_EVM_RECEIPT_PROOF_TYPE as dw, NO_EVM_RECEIPT_ROOT_ALGORITHM as dx, type NameCategory as dy, type NameOfResponse as dz, type TypedNativeReceiptEvent as e, type OracleFeedConfig as e$, type NativeMarketOrderBookDeltasSource as e0, type NativeMarketOrderBookStreamAction as e1, type NativeMarketOrderBookStreamPayload as e2, type NativeMarketStateFilterParamValue as e3, type NativeMarketStateResponseFilters as e4, type NativeMarketStateSource as e5, type NativeModuleForwarderDescriptor as e6, type NativeMrcPolicyProjection as e7, type NativeNftAssetStandard as e8, type NativeNftListingKind as e9, type NoEvmReceiptTrustIssueCode as eA, type NoEvmReceiptTrustPolicy as eB, type NoEvmReceiptTrustVerification as eC, type NoEvmReceiptTrustedBlsSigner as eD, type NoEvmReceiptTrustedSigner as eE, type NoEvmRoundFinalityVerification as eF, type NodeHostingClass as eG, NodeRegistryError as eH, OPERATOR_ROUTER_EVENT_SIGS as eI, OPERATOR_ROUTER_SELECTORS as eJ, OPERATOR_ROUTER_SIGS as eK, ORACLE_EVENT_SIGS as eL, type OperatorAuthorityResponse as eM, type OperatorFeeChargedEvent as eN, type OperatorFeeConfig as eO, type OperatorFeeQuote as eP, type OperatorInfoResponse as eQ, type OperatorNetworkMetadata as eR, type OperatorNetworkMetadataView as eS, type OperatorRiskResponse as eT, type OperatorRouterConfig as eU, type OperatorSigningActivityResponse as eV, type OperatorSigningEntry as eW, type OperatorSurfaceCapability as eX, type OperatorSurfaceStatus as eY, type OracleEvent as eZ, OracleEventError as e_, type NativeNftListingStateRecord as ea, type NativeReceiptCounters as eb, type NativeReceiptEvent as ec, type NativeReceiptSource as ed, type NativeSpotMarketStateRecord as ee, type NativeSpotOrderStateRecord as ef, type NetworkClientOptions as eg, type NetworkSlug as eh, type NoEvmArchiveCoveringSnapshot as ei, type NoEvmArchiveProof as ej, type NoEvmArchiveSignatureVerification as ek, type NoEvmArchiveSignatureVerificationIssue as el, type NoEvmArchiveSignatureVerificationIssueCode as em, type NoEvmArchiveTrustedSigner as en, type NoEvmBlockBlsFinalityVerification as eo, type NoEvmBlockRoundFinalityVerification as ep, type NoEvmBlsFinalityVerification as eq, type NoEvmFinalityBlockReference as er, type NoEvmFinalityCertificate as es, type NoEvmFinalityEvidence as et, type NoEvmReceiptFinalityTrustPolicy as eu, type NoEvmReceiptProof as ev, NoEvmReceiptProofError as ew, type NoEvmReceiptProofErrorCode as ex, type NoEvmReceiptProofVerification as ey, type NoEvmReceiptTrustIssue as ez, type NativeEventsFilter as f, type SearchHit as f$, type OracleLatestPrice as f0, type OracleSignerRow as f1, type OracleSignersResponse as f2, type OracleWriters as f3, type P2pSeed as f4, PENDING_CHANGE_KIND_CODES as f5, PROVER_MARKET_ADDRESS as f6, PROVER_MARKET_BID_DOMAIN as f7, PROVER_MARKET_EVENT_SIGS as f8, PROVER_MARKET_REQUEST_DOMAIN as f9, type Quantity as fA, type QuoteLiquidity as fB, RESERVED_ADDRESS_HRPS as fC, type RankedBridgeRoute as fD, type ReceiptProofTrustArchivePolicy as fE, type ReceiptProofTrustArchiveSigner as fF, type ReceiptProofTrustFinalityPolicy as fG, type ReceiptProofTrustFinalitySigner as fH, type ReceiptProofTrustPolicy as fI, type RedemptionQueueTicket as fJ, type RegistryRecord as fK, type ReportServiceProbeCalldataArgs as fL, type ReportServiceProbeRequest as fM, type ReportServiceProbeResponse as fN, type RequestClusterJoinCalldataArgs as fO, type ResolveNameResponse as fP, type RichListHolder as fQ, type RichListResponse as fR, type RoundCertificateResponse as fS, type RoundInfo as fT, type RpcClientOptions as fU, type RpcEndpoint as fV, type RuntimeProvenanceResponse as fW, SERVES_GPU_PROVE as fX, SERVICE_PROBE_STATUS as fY, SET_POLICY_CLAIM_DOMAIN_TAG as fZ, SPENDING_POLICY_SELECTORS as f_, PROVER_MARKET_SELECTORS as fa, PROVER_MARKET_SUBMIT_DOMAIN as fb, PROVER_SLASH_REASON_BAD_PROOF as fc, PROVER_SLASH_REASON_NON_DELIVERY as fd, type ParsedName as fe, type PeerSummary as ff, type PeerSummaryAggregate as fg, type PendingChangeKind as fh, type PendingCharterView as fi, type PendingRewardsRow as fj, type PendingTxSummary as fk, type PlaceLimitOrderViaArgs as fl, type PlaceLimitOrderViaPlan as fm, type PlaceSpotLimitOrderArgs as fn, type PlaceSpotMarketOrderArgs as fo, type PlaceSpotMarketOrderExArgs as fp, type PrecompileCatalogueResponse as fq, type PrecompileDescriptor as fr, type ProofRequestRow as fs, type ProofRequestView as ft, type ProverBidView as fu, type ProverBidsResponse as fv, ProverMarketError as fw, type ProverMarketState as fx, type ProverMarketStatusResponse as fy, type PublishOperatorSealKeyCalldataArgs as fz, type NativeEventsResponse as g, buildNativeNftPlaceAuctionBidModuleCall as g$, type ServiceProbeStatusLabel as g0, type SetOperatorDisplayCalldataArgs as g1, type SigningEntryStatus as g2, type SpendingPolicyArgs as g3, SpendingPolicyError as g4, type SpendingPolicyTimeWindow as g5, type SpendingPolicyView as g6, type SpotLimitOrderSide as g7, type SpotMarketOrderMode as g8, type StorageProofBatch as g9, addressBytesToHex as gA, addressToBech32 as gB, addressToTypedBech32 as gC, allowRootFor as gD, archiveMerkleInnerHash as gE, archiveMerkleLeafHash as gF, assertNativeMarketOrderBookStreamPayload as gG, assessBridgeRoute as gH, bech32ToAddress as gI, bech32ToAddressBytes as gJ, bidSighash as gK, bridgeAddressHex as gL, bridgeDrainRemaining as gM, bridgeQuoteSubmitReadiness as gN, bridgeRoutesReadiness as gO, bridgeTransferCandidates as gP, buildBridgeRouteCatalogue as gQ, buildCancelSpotOrderPlan as gR, buildNativeCallForwarderArtifact as gS, buildNativeMarketModuleCallEnvelope as gT, buildNativeNftBuyListingForwarderInput as gU, buildNativeNftBuyListingModuleCall as gV, buildNativeNftCancelListingForwarderInput as gW, buildNativeNftCancelListingModuleCall as gX, buildNativeNftCreateListingForwarderInput as gY, buildNativeNftCreateListingModuleCall as gZ, buildNativeNftPlaceAuctionBidForwarderInput as g_, type SubmitPendingChangeCalldataArgs as ga, type SwapIntentStatus as gb, type SyncStatus as gc, TESTNET_69420 as gd, type TokenBalanceMrcIdentity as ge, type TokenBalanceRecord as gf, type TokenBalanceWithMetadata as gg, type TotalBurnedResponse as gh, type TpmAttestationResponse as gi, type TransactionReceipt as gj, type TransactionView as gk, type TxConfirmations as gl, type TxFeedReceipt as gm, type TxFeedTransaction as gn, type TxStatusFoundResponse as go, type TxStatusNotFoundResponse as gp, type TxStatusResponse as gq, type UpcomingDutiesResponse as gr, type UpcomingDutyMap as gs, type UpdateCharterCalldataArgs as gt, type UserAddressInput as gu, V1_BRIDGE_ALLOWED_FEE_TOKEN as gv, V1_BRIDGE_ALLOWED_PROTOCOL as gw, type VertexAtRound as gx, type VerticesAtRoundResponse as gy, type VoteClusterAdmitCalldataArgs as gz, type NativeAgentStateFilter as h, encodeCancelPendingChangeCalldata as h$, buildNativeNftSettleAuctionForwarderInput as h0, buildNativeNftSettleAuctionModuleCall as h1, buildNativeNftSweepExpiredListingsForwarderInput as h2, buildNativeNftSweepExpiredListingsModuleCall as h3, buildNativeSpotCancelOrderForwarderInput as h4, buildNativeSpotCancelOrderModuleCall as h5, buildNativeSpotCreateMarketForwarderInput as h6, buildNativeSpotCreateMarketModuleCall as h7, buildNativeSpotLimitOrderForwarderInput as h8, buildNativeSpotLimitOrderModuleCall as h9, decodeNativeReceiptResponse as hA, decodeNoEvmReceiptTranscript as hB, decodeOperatorFeeChargedEvent as hC, decodeOperatorNetworkMetadata as hD, decodeOperatorSealKey as hE, decodeOracleEvent as hF, decodePendingCharter as hG, decodeProbeAuthority as hH, decodeScoreServiceProbe as hI, decodeTimeWindow as hJ, decodeTxFeedResponse as hK, denyRootFor as hL, deriveArchiveChallenge as hM, deriveClobMarketId as hN, deriveClusterAnchorAddress as hO, deriveFeedId as hP, deriveNativeSpotMarketId as hQ, deriveNativeSpotOrderId as hR, destinationRoot as hS, encodeAnswerArchiveChallengeCalldata as hT, encodeAttestDkgReshareCalldata as hU, encodeAttestServiceProbeCalldata as hV, encodeBlockSelector as hW, encodeBridgeChallengeCalldata as hX, encodeBridgeClaimCalldata as hY, encodeCancelClusterJoinCalldata as hZ, encodeCancelOrderCalldata as h_, buildNativeSpotSettleLimitOrderForwarderInput as ha, buildNativeSpotSettleLimitOrderModuleCall as hb, buildNativeSpotSettleRoutedLimitOrderForwarderInput as hc, buildNativeSpotSettleRoutedLimitOrderModuleCall as hd, buildPlaceLimitOrderViaPlan as he, buildPlaceSpotLimitOrderPlan as hf, buildPlaceSpotMarketOrderExPlan as hg, buildPlaceSpotMarketOrderPlan as hh, categoryRoot as hi, clobAddressHex as hj, clusterApyPercent as hk, composeClaimBoundMessage as hl, computeNoEvmDacFinalityMessage as hm, computeNoEvmLeaderFinalityMessage as hn, computeNoEvmReceiptsRoot as ho, computeNoEvmRoundFinalityMessage as hp, computeNoEvmTargetReceiptHash as hq, computeQuoteLiquidity as hr, consumeNativeEvents as hs, decodeActiveCharter as ht, decodeClusterCharter as hu, decodeClusterDiversity as hv, decodeClusterFormedEvent as hw, decodeClusterJoinRequest as hx, decodeNativeAgentStateResponse as hy, decodeNativeMarketOrderBookDeltasResponse as hz, type NativeAgentStateResponse as i, getP2pSeeds as i$, encodeClaimPolicyByAddressCalldata as i0, encodeClusterCharter as i1, encodeCommitArchiveRootCalldata as i2, encodeCreateRequestCalldata as i3, encodeCreateRequestCanonical as i4, encodeDisableCalldata as i5, encodeEnableCalldata as i6, encodeExpireClusterJoinCalldata as i7, encodeFormClusterCalldata as i8, encodeFormClusterV2Calldata as i9, encodePublishOperatorSealKeyCalldata as iA, encodeRecoverOperatorNodeCalldata as iB, encodeReportServiceProbeCalldata as iC, encodeRequestClusterJoinCalldata as iD, encodeSetBridgeResumeCooldownCalldata as iE, encodeSetBridgeRouteFinalityCalldata as iF, encodeSetLotSizeCalldata as iG, encodeSetMinNotionalCalldata as iH, encodeSetOperatorDisplayCalldata as iI, encodeSetPolicyCalldata as iJ, encodeSetPolicyClaimCalldata as iK, encodeSetProbeAuthorityCalldata as iL, encodeSetTickSizeCalldata as iM, encodeSubmitBridgeProofCalldata as iN, encodeSubmitPendingChangeCalldata as iO, encodeUpdateCharterCalldata as iP, encodeVoteClusterAdmitCalldata as iQ, exportBridgeRouteCatalogueJson as iR, fetchChainInfoLatest as iS, fetchChainRegistryLatest as iT, formClusterMessage as iU, formClusterMessageHex as iV, formClusterMessageV2 as iW, formClusterMessageV2Hex as iX, formatOraclePrice as iY, getChainInfo as iZ, getNoEvmReceiptTrustPolicy as i_, encodeGetClusterJoinRequestCalldata as ia, encodeGetOperatorSealKeyCalldata as ib, encodeGetPendingCharterCalldata as ic, encodeGetProbeAuthorityCalldata as id, encodeLockBridgeConfigCalldata as ie, encodeNameAcceptTransferCall as ig, encodeNameProposeTransferCall as ih, encodeNameRegisterCall as ii, encodeNativeMarketModuleForwarderInput as ij, encodeNativeNftBuyListingCall as ik, encodeNativeNftCancelListingCall as il, encodeNativeNftCreateListingCall as im, encodeNativeNftPlaceAuctionBidCall as io, encodeNativeNftSettleAuctionCall as ip, encodeNativeNftSweepExpiredListingsCall as iq, encodeNativeSpotCancelOrderCall as ir, encodeNativeSpotCreateMarketCall as is, encodeNativeSpotLimitOrderCall as it, encodeNativeSpotSettleLimitOrderCall as iu, encodeNativeSpotSettleRoutedLimitOrderCall as iv, encodePlaceLimitOrderCalldata as iw, encodePlaceLimitOrderViaCalldata as ix, encodePlaceMarketOrderCalldata as iy, encodePlaceMarketOrderExCalldata as iz, type NativeMarketStateFilter as j, typedBech32ToAddress as j$, getRpcEndpoints as j0, hexToAddressBytes as j1, isBridgeAdminLockedRevert as j2, isBridgeCooldownZeroRevert as j3, isBridgeFinalityZeroRevert as j4, isBridgeResumeCooldownActiveRevert as j5, isConcreteServiceProbeStatus as j6, isNativeDecodedEvent as j7, isNativeMarketOrderBookStreamPayload as j8, isSinglePublicServiceProbeMask as j9, parseChainRegistryToml as jA, parseDkgResharePublicKeys as jB, parseNameCategory as jC, parseNativeDecodedEvent as jD, parseQuantity as jE, parseQuantityBig as jF, protocolNonceForEpoch as jG, proverMarketStateFromByte as jH, quoteOperatorFee as jI, rankBridgeRoutes as jJ, rankMarketsByVolume as jK, requestSighash as jL, requireTypedAddress as jM, selectBridgeTransferRoute as jN, serviceMaskToBitIndex as jO, serviceProbeStatusLabel as jP, setDestinationRoot as jQ, slotArchiveChallengePass as jR, slotClusterCharter as jS, slotClusterCharterDelegator as jT, slotClusterCharterMembers as jU, slotClusterServiceScore as jV, slotEpochChallengeSeed as jW, slotProbeAuthority as jX, slotScoreServiceProbe as jY, spendingPolicyAddressHex as jZ, submitSighash as j_, isValidNodeRegistryCapabilities as ja, isValidPublicServiceProbeMask as jb, nameLengthModifierX10 as jc, nameRegistrationCost as jd, nameRegistryAddressHex as je, nativeAgentStateFilterParams as jf, nativeEventMatches as jg, nativeEventsFilterParams as jh, nativeEventsFromHistory as ji, nativeEventsFromReceipt as jj, nativeMarketEventFilter as jk, nativeMarketEventsFromHistory as jl, nativeMarketEventsFromReceipt as jm, nativeMarketStateFilterParams as jn, noEvmReceiptTrustPolicyFromChainInfo as jo, nodeHostingClassFromByte as jp, nodeHostingClassToByte as jq, nodeRegistryAddressHex as jr, normalizeAddressHex as js, normalizeBridgeRouteCatalogue as jt, normalizePendingChangeKind as ju, oracleAddressHex as jv, oraclePriceToNumber as jw, packTimeWindow as jx, parseAddress as jy, parseBridgeRouteCatalogueJson as jz, type NativeMarketStateResponse as k, generateOperatorSealKeypair as k$, updateCharterMessage as k0, updateCharterMessageHex as k1, validateAddress as k2, validateBridgeRouteCatalogue as k3, verifyNoEvmArchiveProofSignatures as k4, verifyNoEvmBlockFinalityEvidenceMultisig as k5, verifyNoEvmBlockFinalityEvidenceThreshold as k6, verifyNoEvmFinalityEvidenceMultisig as k7, verifyNoEvmFinalityEvidenceThreshold as k8, verifyNoEvmReceiptProof as k9, type PlaintextSubmission as kA, SEAL_COMMIT_LEN as kB, SEAL_DK_LEN as kC, SEAL_EK_LEN as kD, SEAL_KEM_CT_LEN as kE, SEAL_KEM_SEED_LEN as kF, SEAL_KEY_LEN as kG, SEAL_NONCE_LEN as kH, SEAL_SHARE_LEN as kI, SEAL_TAG_LEN as kJ, STANDARD_ALGO_NUMBER_ML_DSA_65 as kK, type SealRandomSource as kL, type SealRecipient as kM, type SealedSubmission as kN, bincodeDecryptHint as kO, bincodeEncryptedEnvelope as kP, bincodeNonceAad as kQ, bincodeSignedTransaction as kR, buildEncryptedEnvelope as kS, buildEncryptedSubmission as kT, buildPlaintextSubmission as kU, cryptoRandomSource as kV, encodeMlDsa65Opaque as kW, encodeSealEnvelope as kX, encodeTransactionForHash as kY, encryptInnerTx as kZ, fetchEncryptionKey as k_, verifyNoEvmReceiptProofTrust as ka, ADDRESS_DERIVATION_DOMAIN as kb, CLUSTER_MLKEM_SHAMIR as kc, CLUSTER_MLKEM_SHAMIR_ALGO as kd, type ClusterSealKeyEntryInput as ke, DKG_AEAD_TAG_LEN as kf, DKG_NONCE_LEN as kg, type DecryptHint as kh, ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE as ki, ENUM_VARIANT_INDEX_ML_DSA_65 as kj, type EncryptedEnvelope as kk, type EncryptedSubmission as kl, type JsonRpcCallClient as km, type LythiumSealEnvelope as kn, ML_DSA_65_PUBLIC_KEY_LEN as ko, ML_DSA_65_SEED_LEN as kp, ML_DSA_65_SIGNATURE_LEN as kq, ML_DSA_65_SIGNING_KEY_LEN as kr, ML_KEM_768_CIPHERTEXT_LEN as ks, ML_KEM_768_ENCAPSULATION_KEY_LEN as kt, ML_KEM_768_SHARED_SECRET_LEN as ku, type NativeTxExtension as kv, type NativeTxExtensionDescriptor as kw, type NativeTxExtensionLike as kx, type NonceAad as ky, type OperatorSealKeypair as kz, type NativeMarketOrderBookDeltasRequest as l, getClusterSealKeys as l0, mlDsa65AddressBytes as l1, mlDsa65AddressFromPublicKey as l2, outerSigDigest as l3, parseClusterSealKeys as l4, sealRosterHash as l5, sealToCluster as l6, sealTransaction as l7, submitEncryptedEnvelope as l8, submitPlaintextTransaction as l9, submitSealedTransaction as la, submitTransactionWithPrivacy as lb, type NativeMarketOrderBookDeltasResponse as m, type AddressProfileResponse as n, type AddressFlowResponse as o, type RedemptionQueueResponse as p, type MrcAccountResponse as q, type MrcHoldersResponse as r, type BridgeRoutesRequest as s, type BridgeRoutesResponse as t, type ServiceProbeResponse as u, type ClobMarketsResponse as v, type ClobMarketResponse as w, type ClobTradesResponse as x, type ClobOhlcResponse as y, type ClobOrderBookResponse as z };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monolythium/core-sdk",
3
- "version": "0.4.16",
3
+ "version": "0.4.17",
4
4
  "description": "Official TypeScript SDK for Monolythium / LythiumDAG-BFT",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {