@monolythium/core-sdk 0.4.13 → 0.4.15

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.
@@ -2505,6 +2505,12 @@ declare const NODE_REGISTRY_SELECTORS: {
2505
2505
  readonly getClusterJoinRequest: string;
2506
2506
  /** `formCluster(bytes,bytes,bytes)` — no-foundation cluster formation by roster consent. */
2507
2507
  readonly formCluster: string;
2508
+ /**
2509
+ * `formCluster(bytes,bytes,bytes,bytes)` — V2 formation carrying the
2510
+ * 30-byte economics charter (Law §6.8); consents verify over the V2
2511
+ * digest, which commits to the charter bytes.
2512
+ */
2513
+ readonly formClusterV2: string;
2508
2514
  /** `setOperatorDisplay(bytes32,string,string)` — owner-callable public display metadata. */
2509
2515
  readonly setOperatorDisplay: string;
2510
2516
  /** `publishOperatorSealKey(bytes32,bytes)` — owner-callable LythiumSeal EK publication. */
@@ -2538,6 +2544,17 @@ declare const NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT = 3;
2538
2544
  declare const NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT: number;
2539
2545
  declare const NODE_REGISTRY_FORM_CLUSTER_THRESHOLD = 7;
2540
2546
  declare const NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN: "PROTOCORE_NODE_REGISTRY_CLUSTER_FORM_V1\0";
2547
+ declare const NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN_V2: "PROTOCORE_NODE_REGISTRY_CLUSTER_FORM_V2\0";
2548
+ /**
2549
+ * Fixed byte width of the V2 charter argument: 10×u16 BE member shares
2550
+ * (member-declaration order: active 0..7, then standby 7..10) ‖ u16 BE
2551
+ * delegator share ‖ u64 BE consent expiry (ms).
2552
+ */
2553
+ declare const NODE_REGISTRY_CLUSTER_CHARTER_BYTES = 30;
2554
+ /** Protocol floor for a charter's delegator share (Law §6.8). */
2555
+ declare const NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS = 2000;
2556
+ /** Basis-point denominator a charter's member shares must sum to. */
2557
+ declare const NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS = 10000;
2541
2558
  declare const NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES = 128;
2542
2559
  declare const NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES = 64;
2543
2560
  type PendingChangeKind = "add" | "remove" | "rotate";
@@ -2599,6 +2616,26 @@ interface FormClusterCalldataArgs {
2599
2616
  standbyPubkeys: string | Uint8Array | readonly number[];
2600
2617
  signatures: string | Uint8Array | readonly number[];
2601
2618
  }
2619
+ /** Decoded form of the 30-byte V2 cluster charter (Law §6.8). */
2620
+ interface ClusterCharterArgs {
2621
+ /**
2622
+ * Per-member operator-pot shares in basis points, member-declaration
2623
+ * order (active 0..7, then standby 7..10). Must sum to exactly
2624
+ * `NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS`.
2625
+ */
2626
+ memberShareBps: readonly number[];
2627
+ /**
2628
+ * Delegator share of the cluster pot in basis points, within
2629
+ * `[NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS, 10000]`.
2630
+ */
2631
+ delegatorShareBps: number;
2632
+ /** Consent expiry as a Unix timestamp in milliseconds. */
2633
+ expiresMs: bigint | number;
2634
+ }
2635
+ interface FormClusterV2CalldataArgs extends FormClusterCalldataArgs {
2636
+ /** The 30-byte charter wire payload (see `encodeClusterCharter`). */
2637
+ charter: string | Uint8Array | readonly number[];
2638
+ }
2602
2639
  type ClusterJoinRequestStatus = "none" | "open" | "admitted" | "cancelled" | "expired" | "unknown";
2603
2640
  interface ClusterJoinRequestView {
2604
2641
  owner: string;
@@ -2649,6 +2686,36 @@ declare function encodeGetClusterJoinRequestCalldata(args: GetClusterJoinRequest
2649
2686
  declare function formClusterMessage(activePubkeys: string | Uint8Array | readonly number[], standbyPubkeys: string | Uint8Array | readonly number[]): Uint8Array;
2650
2687
  declare function formClusterMessageHex(activePubkeys: string | Uint8Array | readonly number[], standbyPubkeys: string | Uint8Array | readonly number[]): string;
2651
2688
  declare function encodeFormClusterCalldata(args: FormClusterCalldataArgs): string;
2689
+ /**
2690
+ * Encode the 30-byte V2 charter wire payload: 10×u16 BE member shares
2691
+ * ‖ u16 BE delegator share ‖ u64 BE consent expiry (ms).
2692
+ *
2693
+ * Performs the same structural validation as the on-chain
2694
+ * `decode_cluster_charter` (length, share sum, delegator floor band) so
2695
+ * a malformed charter fails client-side before a nonce is burned.
2696
+ * Byte-identical to the Rust SDK `encode_cluster_charter`.
2697
+ */
2698
+ declare function encodeClusterCharter(args: ClusterCharterArgs): Uint8Array;
2699
+ /**
2700
+ * V2 roster-consent digest — the V1 commitment plus the length-prefixed
2701
+ * charter bytes under the `..._CLUSTER_FORM_V2\0` domain. Economics +
2702
+ * consent expiry are INSIDE the signed message: no member can be bound
2703
+ * to terms they did not sign, and no V2 consent replays under different
2704
+ * terms (or under the V1 digest — the domains differ). Byte-identical
2705
+ * to mono-core's `form_cluster_message_v2`.
2706
+ */
2707
+ declare function formClusterMessageV2(activePubkeys: string | Uint8Array | readonly number[], standbyPubkeys: string | Uint8Array | readonly number[], charter: string | Uint8Array | readonly number[]): Uint8Array;
2708
+ declare function formClusterMessageV2Hex(activePubkeys: string | Uint8Array | readonly number[], standbyPubkeys: string | Uint8Array | readonly number[], charter: string | Uint8Array | readonly number[]): string;
2709
+ /**
2710
+ * Encode `formCluster(bytes,bytes,bytes,bytes)` calldata — the V2
2711
+ * (charter) selector. Same layout discipline as
2712
+ * `encodeFormClusterCalldata` with a fourth dynamic `bytes` tail.
2713
+ * Byte-identical to the Rust SDK `encode_form_cluster_v2_calldata`.
2714
+ *
2715
+ * The 10 consent signatures must verify over `formClusterMessageV2`
2716
+ * (NOT the V1 digest).
2717
+ */
2718
+ declare function encodeFormClusterV2Calldata(args: FormClusterV2CalldataArgs): string;
2652
2719
  /**
2653
2720
  * Decode CJ-1 `getClusterJoinRequest(uint32,bytes32)` return data.
2654
2721
  *
@@ -6483,4 +6550,4 @@ declare function submitTransactionWithPrivacy(args: {
6483
6550
  class?: MempoolClass;
6484
6551
  }): Promise<string>;
6485
6552
 
6486
- export { type AddressActivityArchiveRedirect as $, type ApiStreamsIndexResponse as A, type BlockSelector as B, type ChainStatsResponse as C, type NativeEvmTxFields as D, type EncryptionKey as E, MempoolClass as F, type TypedAddress as G, RpcClient as H, MlDsa65Backend as I, type ExecutionUnitPriceResponse as J, type ClusterSealKeys as K, type ClusterSealKeysSource as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, type ClusterJoinRequestView as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, type AddressKind as U, ADDRESS_HRP as V, ADDRESS_KIND_HRPS as W, API_STREAM_TOPICS as X, type AccountPolicy as Y, type AccountProofResponse as Z, type Address as _, type RuntimeUpgradeStatus as a, type ChainRegistry as a$, type AddressActivityEntry as a0, type AddressActivityEntryEnriched as a1, type AddressActivityKind as a2, type AddressActivityKindResponse as a3, type AddressActivityKindRetention as a4, AddressError as a5, type AddressLabelRecord as a6, type AddressValidation as a7, type AgentReputationCategoryScope as a8, type AgentReputationRecord as a9, type BridgeRiskTier as aA, type BridgeRouteAssessment as aB, type BridgeRouteCandidate as aC, type BridgeRouteCatalogue as aD, BridgeRouteCatalogueError as aE, type BridgeRouteCatalogueJsonOptions as aF, type BridgeRouteCataloguePayload as aG, type BridgeRouteCatalogueRoute as aH, type BridgeRouteCatalogueValidation as aI, type BridgeRouteDisclosure as aJ, type BridgeRouteSelection as aK, type BridgeRoutesSource as aL, type BridgeTransferIntent as aM, type BridgeTransferRequest as aN, type BridgeVerifierDisclosure as aO, CHAIN_REGISTRY as aP, CHAIN_REGISTRY_RAW_BASE as aQ, CLOB_MARKET_ID_DOMAIN_TAG as aR, CLOB_SELECTORS as aS, CLUSTER_FORMED_EVENT_SIG as aT, type CallRequest as aU, type CancelClusterJoinCalldataArgs as aV, type CancelPendingChangeCalldataArgs as aW, type CancelSpotOrderArgs as aX, type CapabilitiesResponse as aY, type CapabilityDescriptor as aZ, type ChainInfo as a_, type AgentReputationResponse as aa, type ApiStreamTopic as ab, type ApiStreamTopicMetadata as ac, type ApiStreamTopicRetention as ad, type AssetPolicy as ae, type AttestDkgReshareCalldataArgs as af, type AttestationWindow as ag, BRIDGE_QUOTE_API_BLOCKED_REASON as ah, BRIDGE_REVERT_TAGS as ai, BRIDGE_SELECTORS as aj, BRIDGE_SUBMIT_API_BLOCKED_REASON as ak, type BlockHeader as al, type BlockTag as am, type BlsCertificateResponse as an, type BridgeAdminControl as ao, type BridgeAnchorState as ap, type BridgeBreakerState as aq, type BridgeBytesInput as ar, type BridgeCircuitBreakerFields as as, type BridgeCircuitBreakerState as at, type BridgeDrainCap as au, type BridgeDrainStatus as av, type BridgeHealthRecord as aw, type BridgeHealthResponse as ax, BridgePrecompileError as ay, type BridgeQuoteSubmitReadiness as az, type NativeReceiptResponse as b, type JailStatusWindow as b$, type CheckpointRecord as b0, type CirculatingSupplyResponse as b1, type ClobMarketAssets as b2, type ClobMarketRecord as b3, type ClobMarketSummary as b4, type ClobTrade as b5, type ClusterAprResponse as b6, type ClusterDelegatorsResponse as b7, type ClusterDirectoryEntryResponse as b8, type ClusterDirectoryPageResponse as b9, type EncodeNativeNftCancelListingArgs as bA, type EncodeNativeNftCreateListingArgs as bB, type EncodeNativeNftPlaceAuctionBidArgs as bC, type EncodeNativeNftSettleAuctionArgs as bD, type EncodeNativeNftSweepExpiredListingsArgs as bE, type EncodeNativeSpotCancelOrderArgs as bF, type EncodeNativeSpotCreateMarketArgs as bG, type EncodeNativeSpotLimitOrderArgs as bH, type EncodeNativeSpotSettleLimitOrderArgs as bI, type EncodeNativeSpotSettleRoutedLimitOrderArgs as bJ, type EncryptionKeyResponse as bK, type EntityRatchetResponse as bL, type EthCallRequest as bM, type EthSendTransactionRequest as bN, type ExpireClusterJoinCalldataArgs as bO, type ExplorerEndpoint as bP, FEED_ID_DOMAIN_TAG as bQ, type FeeHistoryResponse as bR, type FormClusterCalldataArgs as bS, type GapRange as bT, type GapRecord as bU, type GapRecordsResponse as bV, type GetClusterJoinRequestCalldataArgs as bW, type GetOperatorSealKeyCalldataArgs as bX, type Hash as bY, type Hex as bZ, type IndexerStatus as b_, type ClusterDiversity as ba, type ClusterDiversityView as bb, type ClusterEntityResponse as bc, type ClusterFormedEvent as bd, type ClusterJoinRequestStatus as be, type ClusterMemberResponse as bf, type ClusterNameResponse as bg, type ClusterResignationRow as bh, type ClusterResignationsResponse as bi, type ClusterStatusResponse as bj, type CreateRequestCanonicalArgs as bk, DIVERSITY_SCORE_MAX as bl, type DagParent as bm, type DagParentsResponse as bn, type DagSyncStatus as bo, type DecodeTxExtension as bp, type DecodeTxLog as bq, type DecodeTxPqAttestation as br, type DecodeTxResponse as bs, type DelegationCapResponse as bt, type DelegationHistoryRecord as bu, type DelegationRow as bv, type DelegationsResponse as bw, type DutyAbsence as bx, EMPTY_ROOT as by, type EncodeNativeNftBuyListingArgs as bz, type NativeDecodedEvent as c, NO_EVM_FINALITY_EVIDENCE_SOURCE as c$, type KeyRotationWindow as c0, type ListProofRequestsResponse as c1, type LythUpgradePlanStatus as c2, type LythUpgradeStatusResponse as c3, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES as c4, MAX_NATIVE_RECEIPT_EVENTS as c5, ML_DSA_65_PUBLIC_KEY_LEN$1 as c6, ML_DSA_65_SIGNATURE_LEN$1 as c7, MULTISIG_ADDRESS_DERIVATION_DOMAIN as c8, MarketActionError as c9, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as cA, NODE_REGISTRY_BLS_PUBKEY_BYTES as cB, NODE_REGISTRY_CAPABILITIES as cC, NODE_REGISTRY_CAPABILITY_MASK as cD, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES as cE, NODE_REGISTRY_CONSENSUS_POP_BYTES as cF, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES as cG, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES as cH, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES as cI, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS as cJ, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS as cK, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES as cL, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT as cM, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT as cN, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN as cO, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT as cP, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD as cQ, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES as cR, NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES as cS, NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES as cT, NODE_REGISTRY_OPERATOR_SEAL_EK_BYTES as cU, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID as cV, NODE_REGISTRY_PUBLIC_SERVICE_MASK as cW, NODE_REGISTRY_SELECTORS as cX, NO_EVM_ARCHIVE_PROOF_SCHEMA as cY, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as cZ, NO_EVM_FINALITY_EVIDENCE_SCHEMA as c_, type MarketTransactionPlan as ca, type MempoolSnapshot as cb, type MeshDecodedTx as cc, type MeshSignedTxResponse as cd, type MeshTxIntent as ce, type MeshUnsignedTxResponse as cf, type MetricsRangeResponse as cg, type MetricsRangeSample as ch, type MetricsRangeSeries as ci, type MetricsRangeStatus as cj, type MrcAccountRecord as ck, type MrcMetadataRecord as cl, type MrcPolicyRecord as cm, type MrcPolicySpendRecord as cn, NAME_BASE_MULTIPLIER as co, NAME_FALLBACK_FEE_UNIT_LYTHOSHI as cp, NAME_LABEL_MAX_LEN as cq, NAME_LABEL_MIN_LEN as cr, NAME_MAX_LEN as cs, NAME_REGISTRY_SELECTORS as ct, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE as cu, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY as cv, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET as cw, NATIVE_MARKET_EVENT_FAMILY as cx, NATIVE_MARKET_MODULE_ADDRESS as cy, NATIVE_MARKET_MODULE_ADDRESS_BYTES as cz, type NativeEventFilter as d, type NoEvmFinalityBlockReference as d$, NO_EVM_RECEIPTS_ROOT_DOMAIN as d0, NO_EVM_RECEIPT_CODEC as d1, NO_EVM_RECEIPT_PROOF_SCHEMA as d2, NO_EVM_RECEIPT_PROOF_TYPE as d3, NO_EVM_RECEIPT_ROOT_ALGORITHM as d4, type NameCategory as d5, type NameOfResponse as d6, type NameRegistrationQuote as d7, NameRegistryError as d8, type NativeAgentArbiterStateRecord as d9, type NativeMarketOrderBookDeltasSource as dA, type NativeMarketOrderBookStreamAction as dB, type NativeMarketOrderBookStreamPayload as dC, type NativeMarketStateFilterParamValue as dD, type NativeMarketStateResponseFilters as dE, type NativeMarketStateSource as dF, type NativeModuleForwarderDescriptor as dG, type NativeMrcPolicyProjection as dH, type NativeNftAssetStandard as dI, type NativeNftListingKind as dJ, type NativeNftListingStateRecord as dK, type NativeReceiptCounters as dL, type NativeReceiptEvent as dM, type NativeReceiptSource as dN, type NativeSpotMarketStateRecord as dO, type NativeSpotOrderStateRecord as dP, type NetworkClientOptions as dQ, type NetworkSlug as dR, type NoEvmArchiveCoveringSnapshot as dS, type NoEvmArchiveProof as dT, type NoEvmArchiveSignatureVerification as dU, type NoEvmArchiveSignatureVerificationIssue as dV, type NoEvmArchiveSignatureVerificationIssueCode as dW, type NoEvmArchiveTrustedSigner as dX, type NoEvmBlockBlsFinalityVerification as dY, type NoEvmBlockRoundFinalityVerification as dZ, type NoEvmBlsFinalityVerification as d_, type NativeAgentAttestationStateRecord as da, type NativeAgentAvailabilityStateRecord as db, type NativeAgentConsentStateRecord as dc, type NativeAgentEscrowStateRecord as dd, type NativeAgentIssuerStateRecord as de, type NativeAgentPolicySpendStateRecord as df, type NativeAgentPolicyStateRecord as dg, type NativeAgentReputationReviewStateRecord as dh, type NativeAgentServiceStateRecord as di, type NativeAgentStateFilterParamValue as dj, type NativeAgentStateResponseFilters as dk, type NativeAgentStateSource as dl, type NativeCallForwarderArtifact as dm, type NativeCollectionRoyaltyStateRecord as dn, type NativeEventConsumer as dp, type NativeEventProjection as dq, type NativeEventsResponseFilters as dr, type NativeEventsSource as ds, type NativeMarketAddressInput as dt, type NativeMarketAddressKind as du, type NativeMarketForwarderInput as dv, type NativeMarketModuleCallEnvelope as dw, type NativeMarketModuleContractCall as dx, type NativeMarketOrderBookDelta as dy, type NativeMarketOrderBookDeltasResponseFilters as dz, type TypedNativeReceiptEvent as e, type ProofRequestRow as e$, type NoEvmFinalityCertificate as e0, type NoEvmFinalityEvidence as e1, type NoEvmReceiptFinalityTrustPolicy as e2, type NoEvmReceiptProof as e3, NoEvmReceiptProofError as e4, type NoEvmReceiptProofErrorCode as e5, type NoEvmReceiptProofVerification as e6, type NoEvmReceiptTrustIssue as e7, type NoEvmReceiptTrustIssueCode as e8, type NoEvmReceiptTrustPolicy as e9, type OracleLatestPrice as eA, type OracleSignerRow as eB, type OracleSignersResponse as eC, type OracleWriters as eD, type P2pSeed as eE, PENDING_CHANGE_KIND_CODES as eF, PROVER_MARKET_ADDRESS as eG, PROVER_MARKET_BID_DOMAIN as eH, PROVER_MARKET_EVENT_SIGS as eI, PROVER_MARKET_REQUEST_DOMAIN as eJ, PROVER_MARKET_SELECTORS as eK, PROVER_MARKET_SUBMIT_DOMAIN as eL, PROVER_SLASH_REASON_BAD_PROOF as eM, PROVER_SLASH_REASON_NON_DELIVERY as eN, type ParsedName as eO, type PeerSummary as eP, type PeerSummaryAggregate as eQ, type PendingChangeKind as eR, type PendingRewardsRow as eS, type PendingTxSummary as eT, type PlaceLimitOrderViaArgs as eU, type PlaceLimitOrderViaPlan as eV, type PlaceSpotLimitOrderArgs as eW, type PlaceSpotMarketOrderArgs as eX, type PlaceSpotMarketOrderExArgs as eY, type PrecompileCatalogueResponse as eZ, type PrecompileDescriptor as e_, type NoEvmReceiptTrustVerification as ea, type NoEvmReceiptTrustedBlsSigner as eb, type NoEvmReceiptTrustedSigner as ec, type NoEvmRoundFinalityVerification as ed, type NodeHostingClass as ee, NodeRegistryError as ef, OPERATOR_ROUTER_EVENT_SIGS as eg, OPERATOR_ROUTER_SELECTORS as eh, OPERATOR_ROUTER_SIGS as ei, ORACLE_EVENT_SIGS as ej, type OperatorAuthorityResponse as ek, type OperatorFeeChargedEvent as el, type OperatorFeeConfig as em, type OperatorFeeQuote as en, type OperatorInfoResponse as eo, type OperatorNetworkMetadata as ep, type OperatorNetworkMetadataView as eq, type OperatorRiskResponse as er, type OperatorRouterConfig as es, type OperatorSigningActivityResponse as et, type OperatorSigningEntry as eu, type OperatorSurfaceCapability as ev, type OperatorSurfaceStatus as ew, type OracleEvent as ex, OracleEventError as ey, type OracleFeedConfig as ez, type NativeEventsFilter as f, type UpcomingDutyMap as f$, type ProofRequestView as f0, type ProverBidView as f1, type ProverBidsResponse as f2, ProverMarketError as f3, type ProverMarketState as f4, type ProverMarketStatusResponse as f5, type PublishOperatorSealKeyCalldataArgs as f6, type Quantity as f7, type QuoteLiquidity as f8, RESERVED_ADDRESS_HRPS as f9, type SetOperatorDisplayCalldataArgs as fA, type SigningEntryStatus as fB, type SpendingPolicyArgs as fC, SpendingPolicyError as fD, type SpendingPolicyTimeWindow as fE, type SpendingPolicyView as fF, type SpotLimitOrderSide as fG, type SpotMarketOrderMode as fH, type StorageProofBatch as fI, type SubmitPendingChangeCalldataArgs as fJ, type SwapIntentStatus as fK, type SyncStatus as fL, TESTNET_69420 as fM, type TokenBalanceMrcIdentity as fN, type TokenBalanceRecord as fO, type TokenBalanceWithMetadata as fP, type TotalBurnedResponse as fQ, type TpmAttestationResponse as fR, type TransactionReceipt as fS, type TransactionView as fT, type TxConfirmations as fU, type TxFeedReceipt as fV, type TxFeedTransaction as fW, type TxStatusFoundResponse as fX, type TxStatusNotFoundResponse as fY, type TxStatusResponse as fZ, type UpcomingDutiesResponse as f_, type RankedBridgeRoute as fa, type ReceiptProofTrustArchivePolicy as fb, type ReceiptProofTrustArchiveSigner as fc, type ReceiptProofTrustFinalityPolicy as fd, type ReceiptProofTrustFinalitySigner as fe, type ReceiptProofTrustPolicy as ff, type RedemptionQueueTicket as fg, type RegistryRecord as fh, type ReportServiceProbeCalldataArgs as fi, type ReportServiceProbeRequest as fj, type ReportServiceProbeResponse as fk, type RequestClusterJoinCalldataArgs as fl, type ResolveNameResponse as fm, type RichListHolder as fn, type RichListResponse as fo, type RoundCertificateResponse as fp, type RoundInfo as fq, type RpcClientOptions as fr, type RpcEndpoint as fs, type RuntimeProvenanceResponse as ft, SERVES_GPU_PROVE as fu, SERVICE_PROBE_STATUS as fv, SET_POLICY_CLAIM_DOMAIN_TAG as fw, SPENDING_POLICY_SELECTORS as fx, type SearchHit as fy, type ServiceProbeStatusLabel as fz, type NativeEventsResponse as g, decodeClusterJoinRequest as g$, type UserAddressInput as g0, V1_BRIDGE_ALLOWED_FEE_TOKEN as g1, V1_BRIDGE_ALLOWED_PROTOCOL as g2, type VertexAtRound as g3, type VerticesAtRoundResponse as g4, type VoteClusterAdmitCalldataArgs as g5, addressBytesToHex as g6, addressToBech32 as g7, addressToTypedBech32 as g8, allowRootFor as g9, buildNativeSpotCancelOrderForwarderInput as gA, buildNativeSpotCancelOrderModuleCall as gB, buildNativeSpotCreateMarketForwarderInput as gC, buildNativeSpotCreateMarketModuleCall as gD, buildNativeSpotLimitOrderForwarderInput as gE, buildNativeSpotLimitOrderModuleCall as gF, buildNativeSpotSettleLimitOrderForwarderInput as gG, buildNativeSpotSettleLimitOrderModuleCall as gH, buildNativeSpotSettleRoutedLimitOrderForwarderInput as gI, buildNativeSpotSettleRoutedLimitOrderModuleCall as gJ, buildPlaceLimitOrderViaPlan as gK, buildPlaceSpotLimitOrderPlan as gL, buildPlaceSpotMarketOrderExPlan as gM, buildPlaceSpotMarketOrderPlan as gN, categoryRoot as gO, clobAddressHex as gP, clusterApyPercent as gQ, composeClaimBoundMessage as gR, computeNoEvmDacFinalityMessage as gS, computeNoEvmLeaderFinalityMessage as gT, computeNoEvmReceiptsRoot as gU, computeNoEvmRoundFinalityMessage as gV, computeNoEvmTargetReceiptHash as gW, computeQuoteLiquidity as gX, consumeNativeEvents as gY, decodeClusterDiversity as gZ, decodeClusterFormedEvent as g_, assertNativeMarketOrderBookStreamPayload as ga, assessBridgeRoute as gb, bech32ToAddress as gc, bech32ToAddressBytes as gd, bidSighash as ge, bridgeAddressHex as gf, bridgeDrainRemaining as gg, bridgeQuoteSubmitReadiness as gh, bridgeRoutesReadiness as gi, bridgeTransferCandidates as gj, buildBridgeRouteCatalogue as gk, buildCancelSpotOrderPlan as gl, buildNativeCallForwarderArtifact as gm, buildNativeMarketModuleCallEnvelope as gn, buildNativeNftBuyListingForwarderInput as go, buildNativeNftBuyListingModuleCall as gp, buildNativeNftCancelListingForwarderInput as gq, buildNativeNftCancelListingModuleCall as gr, buildNativeNftCreateListingForwarderInput as gs, buildNativeNftCreateListingModuleCall as gt, buildNativeNftPlaceAuctionBidForwarderInput as gu, buildNativeNftPlaceAuctionBidModuleCall as gv, buildNativeNftSettleAuctionForwarderInput as gw, buildNativeNftSettleAuctionModuleCall as gx, buildNativeNftSweepExpiredListingsForwarderInput as gy, buildNativeNftSweepExpiredListingsModuleCall as gz, type NativeAgentStateFilter as h, encodeSetPolicyClaimCalldata as h$, decodeNativeAgentStateResponse as h0, decodeNativeMarketOrderBookDeltasResponse as h1, decodeNativeReceiptResponse as h2, decodeNoEvmReceiptTranscript as h3, decodeOperatorFeeChargedEvent as h4, decodeOperatorNetworkMetadata as h5, decodeOperatorSealKey as h6, decodeOracleEvent as h7, decodeTimeWindow as h8, decodeTxFeedResponse as h9, encodeNameRegisterCall as hA, encodeNativeMarketModuleForwarderInput as hB, encodeNativeNftBuyListingCall as hC, encodeNativeNftCancelListingCall as hD, encodeNativeNftCreateListingCall as hE, encodeNativeNftPlaceAuctionBidCall as hF, encodeNativeNftSettleAuctionCall as hG, encodeNativeNftSweepExpiredListingsCall as hH, encodeNativeSpotCancelOrderCall as hI, encodeNativeSpotCreateMarketCall as hJ, encodeNativeSpotLimitOrderCall as hK, encodeNativeSpotSettleLimitOrderCall as hL, encodeNativeSpotSettleRoutedLimitOrderCall as hM, encodePlaceLimitOrderCalldata as hN, encodePlaceLimitOrderViaCalldata as hO, encodePlaceMarketOrderCalldata as hP, encodePlaceMarketOrderExCalldata as hQ, encodePublishOperatorSealKeyCalldata as hR, encodeRecoverOperatorNodeCalldata as hS, encodeReportServiceProbeCalldata as hT, encodeRequestClusterJoinCalldata as hU, encodeSetBridgeResumeCooldownCalldata as hV, encodeSetBridgeRouteFinalityCalldata as hW, encodeSetLotSizeCalldata as hX, encodeSetMinNotionalCalldata as hY, encodeSetOperatorDisplayCalldata as hZ, encodeSetPolicyCalldata as h_, denyRootFor as ha, deriveClobMarketId as hb, deriveClusterAnchorAddress as hc, deriveFeedId as hd, deriveNativeSpotMarketId as he, deriveNativeSpotOrderId as hf, destinationRoot as hg, encodeAttestDkgReshareCalldata as hh, encodeBlockSelector as hi, encodeBridgeChallengeCalldata as hj, encodeBridgeClaimCalldata as hk, encodeCancelClusterJoinCalldata as hl, encodeCancelOrderCalldata as hm, encodeCancelPendingChangeCalldata as hn, encodeClaimPolicyByAddressCalldata as ho, encodeCreateRequestCalldata as hp, encodeCreateRequestCanonical as hq, encodeDisableCalldata as hr, encodeEnableCalldata as hs, encodeExpireClusterJoinCalldata as ht, encodeFormClusterCalldata as hu, encodeGetClusterJoinRequestCalldata as hv, encodeGetOperatorSealKeyCalldata as hw, encodeLockBridgeConfigCalldata as hx, encodeNameAcceptTransferCall as hy, encodeNameProposeTransferCall as hz, type NativeAgentStateResponse as i, selectBridgeTransferRoute as i$, encodeSetTickSizeCalldata as i0, encodeSubmitBridgeProofCalldata as i1, encodeSubmitPendingChangeCalldata as i2, encodeVoteClusterAdmitCalldata as i3, exportBridgeRouteCatalogueJson as i4, fetchChainInfoLatest as i5, fetchChainRegistryLatest as i6, formClusterMessage as i7, formClusterMessageHex as i8, formatOraclePrice as i9, nativeMarketEventsFromHistory as iA, nativeMarketEventsFromReceipt as iB, nativeMarketStateFilterParams as iC, noEvmReceiptTrustPolicyFromChainInfo as iD, nodeHostingClassFromByte as iE, nodeHostingClassToByte as iF, nodeRegistryAddressHex as iG, normalizeAddressHex as iH, normalizeBridgeRouteCatalogue as iI, normalizePendingChangeKind as iJ, oracleAddressHex as iK, oraclePriceToNumber as iL, packTimeWindow as iM, parseAddress as iN, parseBridgeRouteCatalogueJson as iO, parseChainRegistryToml as iP, parseDkgResharePublicKeys as iQ, parseNameCategory as iR, parseNativeDecodedEvent as iS, parseQuantity as iT, parseQuantityBig as iU, proverMarketStateFromByte as iV, quoteOperatorFee as iW, rankBridgeRoutes as iX, rankMarketsByVolume as iY, requestSighash as iZ, requireTypedAddress as i_, getChainInfo as ia, getNoEvmReceiptTrustPolicy as ib, getP2pSeeds as ic, getRpcEndpoints as id, hexToAddressBytes as ie, isBridgeAdminLockedRevert as ig, isBridgeCooldownZeroRevert as ih, isBridgeFinalityZeroRevert as ii, isBridgeResumeCooldownActiveRevert as ij, isConcreteServiceProbeStatus as ik, isNativeDecodedEvent as il, isNativeMarketOrderBookStreamPayload as im, isSinglePublicServiceProbeMask as io, isValidNodeRegistryCapabilities as ip, isValidPublicServiceProbeMask as iq, nameLengthModifierX10 as ir, nameRegistrationCost as is, nameRegistryAddressHex as it, nativeAgentStateFilterParams as iu, nativeEventMatches as iv, nativeEventsFilterParams as iw, nativeEventsFromHistory as ix, nativeEventsFromReceipt as iy, nativeMarketEventFilter as iz, type NativeMarketStateFilter as j, encodeTransactionForHash as j$, serviceProbeStatusLabel as j0, setDestinationRoot as j1, spendingPolicyAddressHex as j2, submitSighash as j3, typedBech32ToAddress as j4, validateAddress as j5, validateBridgeRouteCatalogue as j6, verifyNoEvmArchiveProofSignatures as j7, verifyNoEvmBlockFinalityEvidenceMultisig as j8, verifyNoEvmBlockFinalityEvidenceThreshold as j9, type NativeTxExtensionLike as jA, type NonceAad as jB, type OperatorSealKeypair as jC, type PlaintextSubmission as jD, SEAL_COMMIT_LEN as jE, SEAL_DK_LEN as jF, SEAL_EK_LEN as jG, SEAL_KEM_CT_LEN as jH, SEAL_KEM_SEED_LEN as jI, SEAL_KEY_LEN as jJ, SEAL_NONCE_LEN as jK, SEAL_SHARE_LEN as jL, SEAL_TAG_LEN as jM, STANDARD_ALGO_NUMBER_ML_DSA_65 as jN, type SealRandomSource as jO, type SealRecipient as jP, type SealedSubmission as jQ, bincodeDecryptHint as jR, bincodeEncryptedEnvelope as jS, bincodeNonceAad as jT, bincodeSignedTransaction as jU, buildEncryptedEnvelope as jV, buildEncryptedSubmission as jW, buildPlaintextSubmission as jX, cryptoRandomSource as jY, encodeMlDsa65Opaque as jZ, encodeSealEnvelope as j_, verifyNoEvmFinalityEvidenceMultisig as ja, verifyNoEvmFinalityEvidenceThreshold as jb, verifyNoEvmReceiptProof as jc, verifyNoEvmReceiptProofTrust as jd, ADDRESS_DERIVATION_DOMAIN as je, CLUSTER_MLKEM_SHAMIR as jf, CLUSTER_MLKEM_SHAMIR_ALGO as jg, type ClusterSealKeyEntryInput as jh, DKG_AEAD_TAG_LEN as ji, DKG_NONCE_LEN as jj, type DecryptHint as jk, ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE as jl, ENUM_VARIANT_INDEX_ML_DSA_65 as jm, type EncryptedEnvelope as jn, type EncryptedSubmission as jo, type JsonRpcCallClient as jp, type LythiumSealEnvelope as jq, ML_DSA_65_PUBLIC_KEY_LEN as jr, ML_DSA_65_SEED_LEN as js, ML_DSA_65_SIGNATURE_LEN as jt, ML_DSA_65_SIGNING_KEY_LEN as ju, ML_KEM_768_CIPHERTEXT_LEN as jv, ML_KEM_768_ENCAPSULATION_KEY_LEN as jw, ML_KEM_768_SHARED_SECRET_LEN as jx, type NativeTxExtension as jy, type NativeTxExtensionDescriptor as jz, type NativeMarketStateResponse as k, encryptInnerTx as k0, fetchEncryptionKey as k1, generateOperatorSealKeypair as k2, getClusterSealKeys as k3, mlDsa65AddressBytes as k4, mlDsa65AddressFromPublicKey as k5, outerSigDigest as k6, parseClusterSealKeys as k7, sealRosterHash as k8, sealToCluster as k9, sealTransaction as ka, submitEncryptedEnvelope as kb, submitPlaintextTransaction as kc, submitSealedTransaction as kd, submitTransactionWithPrivacy as ke, type NativeMarketOrderBookDeltasRequest as l, type NativeMarketOrderBookDeltasResponse as m, type AddressProfileResponse as n, type AddressFlowResponse as o, type RedemptionQueueResponse as p, type MrcAccountResponse as q, type MrcHoldersResponse as r, type BridgeRoutesRequest as s, type BridgeRoutesResponse as t, type ServiceProbeResponse as u, type ClobMarketsResponse as v, type ClobMarketResponse as w, type ClobTradesResponse as x, type ClobOhlcResponse as y, type ClobOrderBookResponse as z };
6553
+ export { type AddressActivityArchiveRedirect as $, type ApiStreamsIndexResponse as A, type BlockSelector as B, type ChainStatsResponse as C, type NativeEvmTxFields as D, type EncryptionKey as E, MempoolClass as F, type TypedAddress as G, RpcClient as H, MlDsa65Backend as I, type ExecutionUnitPriceResponse as J, type ClusterSealKeys as K, type ClusterSealKeysSource as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, type ClusterJoinRequestView as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, type AddressKind as U, ADDRESS_HRP as V, ADDRESS_KIND_HRPS as W, API_STREAM_TOPICS as X, type AccountPolicy as Y, type AccountProofResponse as Z, type Address as _, type RuntimeUpgradeStatus as a, type ChainRegistry as a$, type AddressActivityEntry as a0, type AddressActivityEntryEnriched as a1, type AddressActivityKind as a2, type AddressActivityKindResponse as a3, type AddressActivityKindRetention as a4, AddressError as a5, type AddressLabelRecord as a6, type AddressValidation as a7, type AgentReputationCategoryScope as a8, type AgentReputationRecord as a9, type BridgeRiskTier as aA, type BridgeRouteAssessment as aB, type BridgeRouteCandidate as aC, type BridgeRouteCatalogue as aD, BridgeRouteCatalogueError as aE, type BridgeRouteCatalogueJsonOptions as aF, type BridgeRouteCataloguePayload as aG, type BridgeRouteCatalogueRoute as aH, type BridgeRouteCatalogueValidation as aI, type BridgeRouteDisclosure as aJ, type BridgeRouteSelection as aK, type BridgeRoutesSource as aL, type BridgeTransferIntent as aM, type BridgeTransferRequest as aN, type BridgeVerifierDisclosure as aO, CHAIN_REGISTRY as aP, CHAIN_REGISTRY_RAW_BASE as aQ, CLOB_MARKET_ID_DOMAIN_TAG as aR, CLOB_SELECTORS as aS, CLUSTER_FORMED_EVENT_SIG as aT, type CallRequest as aU, type CancelClusterJoinCalldataArgs as aV, type CancelPendingChangeCalldataArgs as aW, type CancelSpotOrderArgs as aX, type CapabilitiesResponse as aY, type CapabilityDescriptor as aZ, type ChainInfo as a_, type AgentReputationResponse as aa, type ApiStreamTopic as ab, type ApiStreamTopicMetadata as ac, type ApiStreamTopicRetention as ad, type AssetPolicy as ae, type AttestDkgReshareCalldataArgs as af, type AttestationWindow as ag, BRIDGE_QUOTE_API_BLOCKED_REASON as ah, BRIDGE_REVERT_TAGS as ai, BRIDGE_SELECTORS as aj, BRIDGE_SUBMIT_API_BLOCKED_REASON as ak, type BlockHeader as al, type BlockTag as am, type BlsCertificateResponse as an, type BridgeAdminControl as ao, type BridgeAnchorState as ap, type BridgeBreakerState as aq, type BridgeBytesInput as ar, type BridgeCircuitBreakerFields as as, type BridgeCircuitBreakerState as at, type BridgeDrainCap as au, type BridgeDrainStatus as av, type BridgeHealthRecord as aw, type BridgeHealthResponse as ax, BridgePrecompileError as ay, type BridgeQuoteSubmitReadiness as az, type NativeReceiptResponse as b, type Hex as b$, type CheckpointRecord as b0, type CirculatingSupplyResponse as b1, type ClobMarketAssets as b2, type ClobMarketRecord as b3, type ClobMarketSummary as b4, type ClobTrade as b5, type ClusterAprResponse as b6, type ClusterCharterArgs as b7, type ClusterDelegatorsResponse as b8, type ClusterDirectoryEntryResponse as b9, type EncodeNativeNftBuyListingArgs as bA, type EncodeNativeNftCancelListingArgs as bB, type EncodeNativeNftCreateListingArgs as bC, type EncodeNativeNftPlaceAuctionBidArgs as bD, type EncodeNativeNftSettleAuctionArgs as bE, type EncodeNativeNftSweepExpiredListingsArgs as bF, type EncodeNativeSpotCancelOrderArgs as bG, type EncodeNativeSpotCreateMarketArgs as bH, type EncodeNativeSpotLimitOrderArgs as bI, type EncodeNativeSpotSettleLimitOrderArgs as bJ, type EncodeNativeSpotSettleRoutedLimitOrderArgs as bK, type EncryptionKeyResponse as bL, type EntityRatchetResponse as bM, type EthCallRequest as bN, type EthSendTransactionRequest as bO, type ExpireClusterJoinCalldataArgs as bP, type ExplorerEndpoint as bQ, FEED_ID_DOMAIN_TAG as bR, type FeeHistoryResponse as bS, type FormClusterCalldataArgs as bT, type FormClusterV2CalldataArgs as bU, type GapRange as bV, type GapRecord as bW, type GapRecordsResponse as bX, type GetClusterJoinRequestCalldataArgs as bY, type GetOperatorSealKeyCalldataArgs as bZ, type Hash as b_, type ClusterDirectoryPageResponse as ba, type ClusterDiversity as bb, type ClusterDiversityView as bc, type ClusterEntityResponse as bd, type ClusterFormedEvent as be, type ClusterJoinRequestStatus as bf, type ClusterMemberResponse as bg, type ClusterNameResponse as bh, type ClusterResignationRow as bi, type ClusterResignationsResponse as bj, type ClusterStatusResponse as bk, type CreateRequestCanonicalArgs as bl, DIVERSITY_SCORE_MAX as bm, type DagParent as bn, type DagParentsResponse as bo, type DagSyncStatus as bp, type DecodeTxExtension as bq, type DecodeTxLog as br, type DecodeTxPqAttestation as bs, type DecodeTxResponse as bt, type DelegationCapResponse as bu, type DelegationHistoryRecord as bv, type DelegationRow as bw, type DelegationsResponse as bx, type DutyAbsence as by, EMPTY_ROOT as bz, type NativeDecodedEvent as c, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID as c$, type IndexerStatus as c0, type JailStatusWindow as c1, type KeyRotationWindow as c2, type ListProofRequestsResponse as c3, type LythUpgradePlanStatus as c4, type LythUpgradeStatusResponse as c5, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES as c6, MAX_NATIVE_RECEIPT_EVENTS as c7, ML_DSA_65_PUBLIC_KEY_LEN$1 as c8, ML_DSA_65_SIGNATURE_LEN$1 as c9, NATIVE_MARKET_MODULE_ADDRESS as cA, NATIVE_MARKET_MODULE_ADDRESS_BYTES as cB, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as cC, NODE_REGISTRY_BLS_PUBKEY_BYTES as cD, NODE_REGISTRY_CAPABILITIES as cE, NODE_REGISTRY_CAPABILITY_MASK as cF, NODE_REGISTRY_CLUSTER_CHARTER_BYTES as cG, NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS as cH, NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS as cI, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES as cJ, NODE_REGISTRY_CONSENSUS_POP_BYTES as cK, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES as cL, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES as cM, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES as cN, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS as cO, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS as cP, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES as cQ, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT as cR, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT as cS, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN as cT, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN_V2 as cU, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT as cV, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD as cW, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES as cX, NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES as cY, NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES as cZ, NODE_REGISTRY_OPERATOR_SEAL_EK_BYTES as c_, MULTISIG_ADDRESS_DERIVATION_DOMAIN as ca, MarketActionError as cb, type MarketTransactionPlan as cc, type MempoolSnapshot as cd, type MeshDecodedTx as ce, type MeshSignedTxResponse as cf, type MeshTxIntent as cg, type MeshUnsignedTxResponse as ch, type MetricsRangeResponse as ci, type MetricsRangeSample as cj, type MetricsRangeSeries as ck, type MetricsRangeStatus as cl, type MrcAccountRecord as cm, type MrcMetadataRecord as cn, type MrcPolicyRecord as co, type MrcPolicySpendRecord as cp, NAME_BASE_MULTIPLIER as cq, NAME_FALLBACK_FEE_UNIT_LYTHOSHI as cr, NAME_LABEL_MAX_LEN as cs, NAME_LABEL_MIN_LEN as ct, NAME_MAX_LEN as cu, NAME_REGISTRY_SELECTORS as cv, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE as cw, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY as cx, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET as cy, NATIVE_MARKET_EVENT_FAMILY as cz, type NativeEventFilter as d, type NoEvmArchiveSignatureVerificationIssue as d$, NODE_REGISTRY_PUBLIC_SERVICE_MASK as d0, NODE_REGISTRY_SELECTORS as d1, NO_EVM_ARCHIVE_PROOF_SCHEMA as d2, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as d3, NO_EVM_FINALITY_EVIDENCE_SCHEMA as d4, NO_EVM_FINALITY_EVIDENCE_SOURCE as d5, NO_EVM_RECEIPTS_ROOT_DOMAIN as d6, NO_EVM_RECEIPT_CODEC as d7, NO_EVM_RECEIPT_PROOF_SCHEMA as d8, NO_EVM_RECEIPT_PROOF_TYPE as d9, type NativeMarketAddressKind as dA, type NativeMarketForwarderInput as dB, type NativeMarketModuleCallEnvelope as dC, type NativeMarketModuleContractCall as dD, type NativeMarketOrderBookDelta as dE, type NativeMarketOrderBookDeltasResponseFilters as dF, type NativeMarketOrderBookDeltasSource as dG, type NativeMarketOrderBookStreamAction as dH, type NativeMarketOrderBookStreamPayload as dI, type NativeMarketStateFilterParamValue as dJ, type NativeMarketStateResponseFilters as dK, type NativeMarketStateSource as dL, type NativeModuleForwarderDescriptor as dM, type NativeMrcPolicyProjection as dN, type NativeNftAssetStandard as dO, type NativeNftListingKind as dP, type NativeNftListingStateRecord as dQ, type NativeReceiptCounters as dR, type NativeReceiptEvent as dS, type NativeReceiptSource as dT, type NativeSpotMarketStateRecord as dU, type NativeSpotOrderStateRecord as dV, type NetworkClientOptions as dW, type NetworkSlug as dX, type NoEvmArchiveCoveringSnapshot as dY, type NoEvmArchiveProof as dZ, type NoEvmArchiveSignatureVerification as d_, NO_EVM_RECEIPT_ROOT_ALGORITHM as da, type NameCategory as db, type NameOfResponse as dc, type NameRegistrationQuote as dd, NameRegistryError as de, type NativeAgentArbiterStateRecord as df, type NativeAgentAttestationStateRecord as dg, type NativeAgentAvailabilityStateRecord as dh, type NativeAgentConsentStateRecord as di, type NativeAgentEscrowStateRecord as dj, type NativeAgentIssuerStateRecord as dk, type NativeAgentPolicySpendStateRecord as dl, type NativeAgentPolicyStateRecord as dm, type NativeAgentReputationReviewStateRecord as dn, type NativeAgentServiceStateRecord as dp, type NativeAgentStateFilterParamValue as dq, type NativeAgentStateResponseFilters as dr, type NativeAgentStateSource as ds, type NativeCallForwarderArtifact as dt, type NativeCollectionRoyaltyStateRecord as du, type NativeEventConsumer as dv, type NativeEventProjection as dw, type NativeEventsResponseFilters as dx, type NativeEventsSource as dy, type NativeMarketAddressInput as dz, type TypedNativeReceiptEvent as e, type PlaceLimitOrderViaPlan as e$, type NoEvmArchiveSignatureVerificationIssueCode as e0, type NoEvmArchiveTrustedSigner as e1, type NoEvmBlockBlsFinalityVerification as e2, type NoEvmBlockRoundFinalityVerification as e3, type NoEvmBlsFinalityVerification as e4, type NoEvmFinalityBlockReference as e5, type NoEvmFinalityCertificate as e6, type NoEvmFinalityEvidence as e7, type NoEvmReceiptFinalityTrustPolicy as e8, type NoEvmReceiptProof as e9, type OperatorSigningEntry as eA, type OperatorSurfaceCapability as eB, type OperatorSurfaceStatus as eC, type OracleEvent as eD, OracleEventError as eE, type OracleFeedConfig as eF, type OracleLatestPrice as eG, type OracleSignerRow as eH, type OracleSignersResponse as eI, type OracleWriters as eJ, type P2pSeed as eK, PENDING_CHANGE_KIND_CODES as eL, PROVER_MARKET_ADDRESS as eM, PROVER_MARKET_BID_DOMAIN as eN, PROVER_MARKET_EVENT_SIGS as eO, PROVER_MARKET_REQUEST_DOMAIN as eP, PROVER_MARKET_SELECTORS as eQ, PROVER_MARKET_SUBMIT_DOMAIN as eR, PROVER_SLASH_REASON_BAD_PROOF as eS, PROVER_SLASH_REASON_NON_DELIVERY as eT, type ParsedName as eU, type PeerSummary as eV, type PeerSummaryAggregate as eW, type PendingChangeKind as eX, type PendingRewardsRow as eY, type PendingTxSummary as eZ, type PlaceLimitOrderViaArgs as e_, NoEvmReceiptProofError as ea, type NoEvmReceiptProofErrorCode as eb, type NoEvmReceiptProofVerification as ec, type NoEvmReceiptTrustIssue as ed, type NoEvmReceiptTrustIssueCode as ee, type NoEvmReceiptTrustPolicy as ef, type NoEvmReceiptTrustVerification as eg, type NoEvmReceiptTrustedBlsSigner as eh, type NoEvmReceiptTrustedSigner as ei, type NoEvmRoundFinalityVerification as ej, type NodeHostingClass as ek, NodeRegistryError as el, OPERATOR_ROUTER_EVENT_SIGS as em, OPERATOR_ROUTER_SELECTORS as en, OPERATOR_ROUTER_SIGS as eo, ORACLE_EVENT_SIGS as ep, type OperatorAuthorityResponse as eq, type OperatorFeeChargedEvent as er, type OperatorFeeConfig as es, type OperatorFeeQuote as et, type OperatorInfoResponse as eu, type OperatorNetworkMetadata as ev, type OperatorNetworkMetadataView as ew, type OperatorRiskResponse as ex, type OperatorRouterConfig as ey, type OperatorSigningActivityResponse as ez, type NativeEventsFilter as f, type TxFeedReceipt as f$, type PlaceSpotLimitOrderArgs as f0, type PlaceSpotMarketOrderArgs as f1, type PlaceSpotMarketOrderExArgs as f2, type PrecompileCatalogueResponse as f3, type PrecompileDescriptor as f4, type ProofRequestRow as f5, type ProofRequestView as f6, type ProverBidView as f7, type ProverBidsResponse as f8, ProverMarketError as f9, SERVES_GPU_PROVE as fA, SERVICE_PROBE_STATUS as fB, SET_POLICY_CLAIM_DOMAIN_TAG as fC, SPENDING_POLICY_SELECTORS as fD, type SearchHit as fE, type ServiceProbeStatusLabel as fF, type SetOperatorDisplayCalldataArgs as fG, type SigningEntryStatus as fH, type SpendingPolicyArgs as fI, SpendingPolicyError as fJ, type SpendingPolicyTimeWindow as fK, type SpendingPolicyView as fL, type SpotLimitOrderSide as fM, type SpotMarketOrderMode as fN, type StorageProofBatch as fO, type SubmitPendingChangeCalldataArgs as fP, type SwapIntentStatus as fQ, type SyncStatus as fR, TESTNET_69420 as fS, type TokenBalanceMrcIdentity as fT, type TokenBalanceRecord as fU, type TokenBalanceWithMetadata as fV, type TotalBurnedResponse as fW, type TpmAttestationResponse as fX, type TransactionReceipt as fY, type TransactionView as fZ, type TxConfirmations as f_, type ProverMarketState as fa, type ProverMarketStatusResponse as fb, type PublishOperatorSealKeyCalldataArgs as fc, type Quantity as fd, type QuoteLiquidity as fe, RESERVED_ADDRESS_HRPS as ff, type RankedBridgeRoute as fg, type ReceiptProofTrustArchivePolicy as fh, type ReceiptProofTrustArchiveSigner as fi, type ReceiptProofTrustFinalityPolicy as fj, type ReceiptProofTrustFinalitySigner as fk, type ReceiptProofTrustPolicy as fl, type RedemptionQueueTicket as fm, type RegistryRecord as fn, type ReportServiceProbeCalldataArgs as fo, type ReportServiceProbeRequest as fp, type ReportServiceProbeResponse as fq, type RequestClusterJoinCalldataArgs as fr, type ResolveNameResponse as fs, type RichListHolder as ft, type RichListResponse as fu, type RoundCertificateResponse as fv, type RoundInfo as fw, type RpcClientOptions as fx, type RpcEndpoint as fy, type RuntimeProvenanceResponse as fz, type NativeEventsResponse as g, computeNoEvmRoundFinalityMessage as g$, type TxFeedTransaction as g0, type TxStatusFoundResponse as g1, type TxStatusNotFoundResponse as g2, type TxStatusResponse as g3, type UpcomingDutiesResponse as g4, type UpcomingDutyMap as g5, type UserAddressInput as g6, V1_BRIDGE_ALLOWED_FEE_TOKEN as g7, V1_BRIDGE_ALLOWED_PROTOCOL as g8, type VertexAtRound as g9, buildNativeNftPlaceAuctionBidForwarderInput as gA, buildNativeNftPlaceAuctionBidModuleCall as gB, buildNativeNftSettleAuctionForwarderInput as gC, buildNativeNftSettleAuctionModuleCall as gD, buildNativeNftSweepExpiredListingsForwarderInput as gE, buildNativeNftSweepExpiredListingsModuleCall as gF, buildNativeSpotCancelOrderForwarderInput as gG, buildNativeSpotCancelOrderModuleCall as gH, buildNativeSpotCreateMarketForwarderInput as gI, buildNativeSpotCreateMarketModuleCall as gJ, buildNativeSpotLimitOrderForwarderInput as gK, buildNativeSpotLimitOrderModuleCall as gL, buildNativeSpotSettleLimitOrderForwarderInput as gM, buildNativeSpotSettleLimitOrderModuleCall as gN, buildNativeSpotSettleRoutedLimitOrderForwarderInput as gO, buildNativeSpotSettleRoutedLimitOrderModuleCall as gP, buildPlaceLimitOrderViaPlan as gQ, buildPlaceSpotLimitOrderPlan as gR, buildPlaceSpotMarketOrderExPlan as gS, buildPlaceSpotMarketOrderPlan as gT, categoryRoot as gU, clobAddressHex as gV, clusterApyPercent as gW, composeClaimBoundMessage as gX, computeNoEvmDacFinalityMessage as gY, computeNoEvmLeaderFinalityMessage as gZ, computeNoEvmReceiptsRoot as g_, type VerticesAtRoundResponse as ga, type VoteClusterAdmitCalldataArgs as gb, addressBytesToHex as gc, addressToBech32 as gd, addressToTypedBech32 as ge, allowRootFor as gf, assertNativeMarketOrderBookStreamPayload as gg, assessBridgeRoute as gh, bech32ToAddress as gi, bech32ToAddressBytes as gj, bidSighash as gk, bridgeAddressHex as gl, bridgeDrainRemaining as gm, bridgeQuoteSubmitReadiness as gn, bridgeRoutesReadiness as go, bridgeTransferCandidates as gp, buildBridgeRouteCatalogue as gq, buildCancelSpotOrderPlan as gr, buildNativeCallForwarderArtifact as gs, buildNativeMarketModuleCallEnvelope as gt, buildNativeNftBuyListingForwarderInput as gu, buildNativeNftBuyListingModuleCall as gv, buildNativeNftCancelListingForwarderInput as gw, buildNativeNftCancelListingModuleCall as gx, buildNativeNftCreateListingForwarderInput as gy, buildNativeNftCreateListingModuleCall as gz, type NativeAgentStateFilter as h, encodeReportServiceProbeCalldata as h$, computeNoEvmTargetReceiptHash as h0, computeQuoteLiquidity as h1, consumeNativeEvents as h2, decodeClusterDiversity as h3, decodeClusterFormedEvent as h4, decodeClusterJoinRequest as h5, decodeNativeAgentStateResponse as h6, decodeNativeMarketOrderBookDeltasResponse as h7, decodeNativeReceiptResponse as h8, decodeNoEvmReceiptTranscript as h9, encodeExpireClusterJoinCalldata as hA, encodeFormClusterCalldata as hB, encodeFormClusterV2Calldata as hC, encodeGetClusterJoinRequestCalldata as hD, encodeGetOperatorSealKeyCalldata as hE, encodeLockBridgeConfigCalldata as hF, encodeNameAcceptTransferCall as hG, encodeNameProposeTransferCall as hH, encodeNameRegisterCall as hI, encodeNativeMarketModuleForwarderInput as hJ, encodeNativeNftBuyListingCall as hK, encodeNativeNftCancelListingCall as hL, encodeNativeNftCreateListingCall as hM, encodeNativeNftPlaceAuctionBidCall as hN, encodeNativeNftSettleAuctionCall as hO, encodeNativeNftSweepExpiredListingsCall as hP, encodeNativeSpotCancelOrderCall as hQ, encodeNativeSpotCreateMarketCall as hR, encodeNativeSpotLimitOrderCall as hS, encodeNativeSpotSettleLimitOrderCall as hT, encodeNativeSpotSettleRoutedLimitOrderCall as hU, encodePlaceLimitOrderCalldata as hV, encodePlaceLimitOrderViaCalldata as hW, encodePlaceMarketOrderCalldata as hX, encodePlaceMarketOrderExCalldata as hY, encodePublishOperatorSealKeyCalldata as hZ, encodeRecoverOperatorNodeCalldata as h_, decodeOperatorFeeChargedEvent as ha, decodeOperatorNetworkMetadata as hb, decodeOperatorSealKey as hc, decodeOracleEvent as hd, decodeTimeWindow as he, decodeTxFeedResponse as hf, denyRootFor as hg, deriveClobMarketId as hh, deriveClusterAnchorAddress as hi, deriveFeedId as hj, deriveNativeSpotMarketId as hk, deriveNativeSpotOrderId as hl, destinationRoot as hm, encodeAttestDkgReshareCalldata as hn, encodeBlockSelector as ho, encodeBridgeChallengeCalldata as hp, encodeBridgeClaimCalldata as hq, encodeCancelClusterJoinCalldata as hr, encodeCancelOrderCalldata as hs, encodeCancelPendingChangeCalldata as ht, encodeClaimPolicyByAddressCalldata as hu, encodeClusterCharter as hv, encodeCreateRequestCalldata as hw, encodeCreateRequestCanonical as hx, encodeDisableCalldata as hy, encodeEnableCalldata as hz, type NativeAgentStateResponse as i, parseNameCategory as i$, encodeRequestClusterJoinCalldata as i0, encodeSetBridgeResumeCooldownCalldata as i1, encodeSetBridgeRouteFinalityCalldata as i2, encodeSetLotSizeCalldata as i3, encodeSetMinNotionalCalldata as i4, encodeSetOperatorDisplayCalldata as i5, encodeSetPolicyCalldata as i6, encodeSetPolicyClaimCalldata as i7, encodeSetTickSizeCalldata as i8, encodeSubmitBridgeProofCalldata as i9, isValidPublicServiceProbeMask as iA, nameLengthModifierX10 as iB, nameRegistrationCost as iC, nameRegistryAddressHex as iD, nativeAgentStateFilterParams as iE, nativeEventMatches as iF, nativeEventsFilterParams as iG, nativeEventsFromHistory as iH, nativeEventsFromReceipt as iI, nativeMarketEventFilter as iJ, nativeMarketEventsFromHistory as iK, nativeMarketEventsFromReceipt as iL, nativeMarketStateFilterParams as iM, noEvmReceiptTrustPolicyFromChainInfo as iN, nodeHostingClassFromByte as iO, nodeHostingClassToByte as iP, nodeRegistryAddressHex as iQ, normalizeAddressHex as iR, normalizeBridgeRouteCatalogue as iS, normalizePendingChangeKind as iT, oracleAddressHex as iU, oraclePriceToNumber as iV, packTimeWindow as iW, parseAddress as iX, parseBridgeRouteCatalogueJson as iY, parseChainRegistryToml as iZ, parseDkgResharePublicKeys as i_, encodeSubmitPendingChangeCalldata as ia, encodeVoteClusterAdmitCalldata as ib, exportBridgeRouteCatalogueJson as ic, fetchChainInfoLatest as id, fetchChainRegistryLatest as ie, formClusterMessage as ig, formClusterMessageHex as ih, formClusterMessageV2 as ii, formClusterMessageV2Hex as ij, formatOraclePrice as ik, getChainInfo as il, getNoEvmReceiptTrustPolicy as im, getP2pSeeds as io, getRpcEndpoints as ip, hexToAddressBytes as iq, isBridgeAdminLockedRevert as ir, isBridgeCooldownZeroRevert as is, isBridgeFinalityZeroRevert as it, isBridgeResumeCooldownActiveRevert as iu, isConcreteServiceProbeStatus as iv, isNativeDecodedEvent as iw, isNativeMarketOrderBookStreamPayload as ix, isSinglePublicServiceProbeMask as iy, isValidNodeRegistryCapabilities as iz, type NativeMarketStateFilter as j, bincodeDecryptHint as j$, parseNativeDecodedEvent as j0, parseQuantity as j1, parseQuantityBig as j2, proverMarketStateFromByte as j3, quoteOperatorFee as j4, rankBridgeRoutes as j5, rankMarketsByVolume as j6, requestSighash as j7, requireTypedAddress as j8, selectBridgeTransferRoute as j9, type LythiumSealEnvelope as jA, ML_DSA_65_PUBLIC_KEY_LEN as jB, ML_DSA_65_SEED_LEN as jC, ML_DSA_65_SIGNATURE_LEN as jD, ML_DSA_65_SIGNING_KEY_LEN as jE, ML_KEM_768_CIPHERTEXT_LEN as jF, ML_KEM_768_ENCAPSULATION_KEY_LEN as jG, ML_KEM_768_SHARED_SECRET_LEN as jH, type NativeTxExtension as jI, type NativeTxExtensionDescriptor as jJ, type NativeTxExtensionLike as jK, type NonceAad as jL, type OperatorSealKeypair as jM, type PlaintextSubmission as jN, SEAL_COMMIT_LEN as jO, SEAL_DK_LEN as jP, SEAL_EK_LEN as jQ, SEAL_KEM_CT_LEN as jR, SEAL_KEM_SEED_LEN as jS, SEAL_KEY_LEN as jT, SEAL_NONCE_LEN as jU, SEAL_SHARE_LEN as jV, SEAL_TAG_LEN as jW, STANDARD_ALGO_NUMBER_ML_DSA_65 as jX, type SealRandomSource as jY, type SealRecipient as jZ, type SealedSubmission as j_, serviceProbeStatusLabel as ja, setDestinationRoot as jb, spendingPolicyAddressHex as jc, submitSighash as jd, typedBech32ToAddress as je, validateAddress as jf, validateBridgeRouteCatalogue as jg, verifyNoEvmArchiveProofSignatures as jh, verifyNoEvmBlockFinalityEvidenceMultisig as ji, verifyNoEvmBlockFinalityEvidenceThreshold as jj, verifyNoEvmFinalityEvidenceMultisig as jk, verifyNoEvmFinalityEvidenceThreshold as jl, verifyNoEvmReceiptProof as jm, verifyNoEvmReceiptProofTrust as jn, ADDRESS_DERIVATION_DOMAIN as jo, CLUSTER_MLKEM_SHAMIR as jp, CLUSTER_MLKEM_SHAMIR_ALGO as jq, type ClusterSealKeyEntryInput as jr, DKG_AEAD_TAG_LEN as js, DKG_NONCE_LEN as jt, type DecryptHint as ju, ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE as jv, ENUM_VARIANT_INDEX_ML_DSA_65 as jw, type EncryptedEnvelope as jx, type EncryptedSubmission as jy, type JsonRpcCallClient as jz, type NativeMarketStateResponse as k, bincodeEncryptedEnvelope as k0, bincodeNonceAad as k1, bincodeSignedTransaction as k2, buildEncryptedEnvelope as k3, buildEncryptedSubmission as k4, buildPlaintextSubmission as k5, cryptoRandomSource as k6, encodeMlDsa65Opaque as k7, encodeSealEnvelope as k8, encodeTransactionForHash as k9, encryptInnerTx as ka, fetchEncryptionKey as kb, generateOperatorSealKeypair as kc, getClusterSealKeys as kd, mlDsa65AddressBytes as ke, mlDsa65AddressFromPublicKey as kf, outerSigDigest as kg, parseClusterSealKeys as kh, sealRosterHash as ki, sealToCluster as kj, sealTransaction as kk, submitEncryptedEnvelope as kl, submitPlaintextTransaction as km, submitSealedTransaction as kn, submitTransactionWithPrivacy as ko, type NativeMarketOrderBookDeltasRequest as l, type NativeMarketOrderBookDeltasResponse as m, type AddressProfileResponse as n, type AddressFlowResponse as o, type RedemptionQueueResponse as p, type MrcAccountResponse as q, type MrcHoldersResponse as r, type BridgeRoutesRequest as s, type BridgeRoutesResponse as t, type ServiceProbeResponse as u, type ClobMarketsResponse as v, type ClobMarketResponse as w, type ClobTradesResponse as x, type ClobOhlcResponse as y, type ClobOrderBookResponse as z };
@@ -2505,6 +2505,12 @@ declare const NODE_REGISTRY_SELECTORS: {
2505
2505
  readonly getClusterJoinRequest: string;
2506
2506
  /** `formCluster(bytes,bytes,bytes)` — no-foundation cluster formation by roster consent. */
2507
2507
  readonly formCluster: string;
2508
+ /**
2509
+ * `formCluster(bytes,bytes,bytes,bytes)` — V2 formation carrying the
2510
+ * 30-byte economics charter (Law §6.8); consents verify over the V2
2511
+ * digest, which commits to the charter bytes.
2512
+ */
2513
+ readonly formClusterV2: string;
2508
2514
  /** `setOperatorDisplay(bytes32,string,string)` — owner-callable public display metadata. */
2509
2515
  readonly setOperatorDisplay: string;
2510
2516
  /** `publishOperatorSealKey(bytes32,bytes)` — owner-callable LythiumSeal EK publication. */
@@ -2538,6 +2544,17 @@ declare const NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT = 3;
2538
2544
  declare const NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT: number;
2539
2545
  declare const NODE_REGISTRY_FORM_CLUSTER_THRESHOLD = 7;
2540
2546
  declare const NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN: "PROTOCORE_NODE_REGISTRY_CLUSTER_FORM_V1\0";
2547
+ declare const NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN_V2: "PROTOCORE_NODE_REGISTRY_CLUSTER_FORM_V2\0";
2548
+ /**
2549
+ * Fixed byte width of the V2 charter argument: 10×u16 BE member shares
2550
+ * (member-declaration order: active 0..7, then standby 7..10) ‖ u16 BE
2551
+ * delegator share ‖ u64 BE consent expiry (ms).
2552
+ */
2553
+ declare const NODE_REGISTRY_CLUSTER_CHARTER_BYTES = 30;
2554
+ /** Protocol floor for a charter's delegator share (Law §6.8). */
2555
+ declare const NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS = 2000;
2556
+ /** Basis-point denominator a charter's member shares must sum to. */
2557
+ declare const NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS = 10000;
2541
2558
  declare const NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES = 128;
2542
2559
  declare const NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES = 64;
2543
2560
  type PendingChangeKind = "add" | "remove" | "rotate";
@@ -2599,6 +2616,26 @@ interface FormClusterCalldataArgs {
2599
2616
  standbyPubkeys: string | Uint8Array | readonly number[];
2600
2617
  signatures: string | Uint8Array | readonly number[];
2601
2618
  }
2619
+ /** Decoded form of the 30-byte V2 cluster charter (Law §6.8). */
2620
+ interface ClusterCharterArgs {
2621
+ /**
2622
+ * Per-member operator-pot shares in basis points, member-declaration
2623
+ * order (active 0..7, then standby 7..10). Must sum to exactly
2624
+ * `NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS`.
2625
+ */
2626
+ memberShareBps: readonly number[];
2627
+ /**
2628
+ * Delegator share of the cluster pot in basis points, within
2629
+ * `[NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS, 10000]`.
2630
+ */
2631
+ delegatorShareBps: number;
2632
+ /** Consent expiry as a Unix timestamp in milliseconds. */
2633
+ expiresMs: bigint | number;
2634
+ }
2635
+ interface FormClusterV2CalldataArgs extends FormClusterCalldataArgs {
2636
+ /** The 30-byte charter wire payload (see `encodeClusterCharter`). */
2637
+ charter: string | Uint8Array | readonly number[];
2638
+ }
2602
2639
  type ClusterJoinRequestStatus = "none" | "open" | "admitted" | "cancelled" | "expired" | "unknown";
2603
2640
  interface ClusterJoinRequestView {
2604
2641
  owner: string;
@@ -2649,6 +2686,36 @@ declare function encodeGetClusterJoinRequestCalldata(args: GetClusterJoinRequest
2649
2686
  declare function formClusterMessage(activePubkeys: string | Uint8Array | readonly number[], standbyPubkeys: string | Uint8Array | readonly number[]): Uint8Array;
2650
2687
  declare function formClusterMessageHex(activePubkeys: string | Uint8Array | readonly number[], standbyPubkeys: string | Uint8Array | readonly number[]): string;
2651
2688
  declare function encodeFormClusterCalldata(args: FormClusterCalldataArgs): string;
2689
+ /**
2690
+ * Encode the 30-byte V2 charter wire payload: 10×u16 BE member shares
2691
+ * ‖ u16 BE delegator share ‖ u64 BE consent expiry (ms).
2692
+ *
2693
+ * Performs the same structural validation as the on-chain
2694
+ * `decode_cluster_charter` (length, share sum, delegator floor band) so
2695
+ * a malformed charter fails client-side before a nonce is burned.
2696
+ * Byte-identical to the Rust SDK `encode_cluster_charter`.
2697
+ */
2698
+ declare function encodeClusterCharter(args: ClusterCharterArgs): Uint8Array;
2699
+ /**
2700
+ * V2 roster-consent digest — the V1 commitment plus the length-prefixed
2701
+ * charter bytes under the `..._CLUSTER_FORM_V2\0` domain. Economics +
2702
+ * consent expiry are INSIDE the signed message: no member can be bound
2703
+ * to terms they did not sign, and no V2 consent replays under different
2704
+ * terms (or under the V1 digest — the domains differ). Byte-identical
2705
+ * to mono-core's `form_cluster_message_v2`.
2706
+ */
2707
+ declare function formClusterMessageV2(activePubkeys: string | Uint8Array | readonly number[], standbyPubkeys: string | Uint8Array | readonly number[], charter: string | Uint8Array | readonly number[]): Uint8Array;
2708
+ declare function formClusterMessageV2Hex(activePubkeys: string | Uint8Array | readonly number[], standbyPubkeys: string | Uint8Array | readonly number[], charter: string | Uint8Array | readonly number[]): string;
2709
+ /**
2710
+ * Encode `formCluster(bytes,bytes,bytes,bytes)` calldata — the V2
2711
+ * (charter) selector. Same layout discipline as
2712
+ * `encodeFormClusterCalldata` with a fourth dynamic `bytes` tail.
2713
+ * Byte-identical to the Rust SDK `encode_form_cluster_v2_calldata`.
2714
+ *
2715
+ * The 10 consent signatures must verify over `formClusterMessageV2`
2716
+ * (NOT the V1 digest).
2717
+ */
2718
+ declare function encodeFormClusterV2Calldata(args: FormClusterV2CalldataArgs): string;
2652
2719
  /**
2653
2720
  * Decode CJ-1 `getClusterJoinRequest(uint32,bytes32)` return data.
2654
2721
  *
@@ -6483,4 +6550,4 @@ declare function submitTransactionWithPrivacy(args: {
6483
6550
  class?: MempoolClass;
6484
6551
  }): Promise<string>;
6485
6552
 
6486
- export { type AddressActivityArchiveRedirect as $, type ApiStreamsIndexResponse as A, type BlockSelector as B, type ChainStatsResponse as C, type NativeEvmTxFields as D, type EncryptionKey as E, MempoolClass as F, type TypedAddress as G, RpcClient as H, MlDsa65Backend as I, type ExecutionUnitPriceResponse as J, type ClusterSealKeys as K, type ClusterSealKeysSource as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, type ClusterJoinRequestView as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, type AddressKind as U, ADDRESS_HRP as V, ADDRESS_KIND_HRPS as W, API_STREAM_TOPICS as X, type AccountPolicy as Y, type AccountProofResponse as Z, type Address as _, type RuntimeUpgradeStatus as a, type ChainRegistry as a$, type AddressActivityEntry as a0, type AddressActivityEntryEnriched as a1, type AddressActivityKind as a2, type AddressActivityKindResponse as a3, type AddressActivityKindRetention as a4, AddressError as a5, type AddressLabelRecord as a6, type AddressValidation as a7, type AgentReputationCategoryScope as a8, type AgentReputationRecord as a9, type BridgeRiskTier as aA, type BridgeRouteAssessment as aB, type BridgeRouteCandidate as aC, type BridgeRouteCatalogue as aD, BridgeRouteCatalogueError as aE, type BridgeRouteCatalogueJsonOptions as aF, type BridgeRouteCataloguePayload as aG, type BridgeRouteCatalogueRoute as aH, type BridgeRouteCatalogueValidation as aI, type BridgeRouteDisclosure as aJ, type BridgeRouteSelection as aK, type BridgeRoutesSource as aL, type BridgeTransferIntent as aM, type BridgeTransferRequest as aN, type BridgeVerifierDisclosure as aO, CHAIN_REGISTRY as aP, CHAIN_REGISTRY_RAW_BASE as aQ, CLOB_MARKET_ID_DOMAIN_TAG as aR, CLOB_SELECTORS as aS, CLUSTER_FORMED_EVENT_SIG as aT, type CallRequest as aU, type CancelClusterJoinCalldataArgs as aV, type CancelPendingChangeCalldataArgs as aW, type CancelSpotOrderArgs as aX, type CapabilitiesResponse as aY, type CapabilityDescriptor as aZ, type ChainInfo as a_, type AgentReputationResponse as aa, type ApiStreamTopic as ab, type ApiStreamTopicMetadata as ac, type ApiStreamTopicRetention as ad, type AssetPolicy as ae, type AttestDkgReshareCalldataArgs as af, type AttestationWindow as ag, BRIDGE_QUOTE_API_BLOCKED_REASON as ah, BRIDGE_REVERT_TAGS as ai, BRIDGE_SELECTORS as aj, BRIDGE_SUBMIT_API_BLOCKED_REASON as ak, type BlockHeader as al, type BlockTag as am, type BlsCertificateResponse as an, type BridgeAdminControl as ao, type BridgeAnchorState as ap, type BridgeBreakerState as aq, type BridgeBytesInput as ar, type BridgeCircuitBreakerFields as as, type BridgeCircuitBreakerState as at, type BridgeDrainCap as au, type BridgeDrainStatus as av, type BridgeHealthRecord as aw, type BridgeHealthResponse as ax, BridgePrecompileError as ay, type BridgeQuoteSubmitReadiness as az, type NativeReceiptResponse as b, type JailStatusWindow as b$, type CheckpointRecord as b0, type CirculatingSupplyResponse as b1, type ClobMarketAssets as b2, type ClobMarketRecord as b3, type ClobMarketSummary as b4, type ClobTrade as b5, type ClusterAprResponse as b6, type ClusterDelegatorsResponse as b7, type ClusterDirectoryEntryResponse as b8, type ClusterDirectoryPageResponse as b9, type EncodeNativeNftCancelListingArgs as bA, type EncodeNativeNftCreateListingArgs as bB, type EncodeNativeNftPlaceAuctionBidArgs as bC, type EncodeNativeNftSettleAuctionArgs as bD, type EncodeNativeNftSweepExpiredListingsArgs as bE, type EncodeNativeSpotCancelOrderArgs as bF, type EncodeNativeSpotCreateMarketArgs as bG, type EncodeNativeSpotLimitOrderArgs as bH, type EncodeNativeSpotSettleLimitOrderArgs as bI, type EncodeNativeSpotSettleRoutedLimitOrderArgs as bJ, type EncryptionKeyResponse as bK, type EntityRatchetResponse as bL, type EthCallRequest as bM, type EthSendTransactionRequest as bN, type ExpireClusterJoinCalldataArgs as bO, type ExplorerEndpoint as bP, FEED_ID_DOMAIN_TAG as bQ, type FeeHistoryResponse as bR, type FormClusterCalldataArgs as bS, type GapRange as bT, type GapRecord as bU, type GapRecordsResponse as bV, type GetClusterJoinRequestCalldataArgs as bW, type GetOperatorSealKeyCalldataArgs as bX, type Hash as bY, type Hex as bZ, type IndexerStatus as b_, type ClusterDiversity as ba, type ClusterDiversityView as bb, type ClusterEntityResponse as bc, type ClusterFormedEvent as bd, type ClusterJoinRequestStatus as be, type ClusterMemberResponse as bf, type ClusterNameResponse as bg, type ClusterResignationRow as bh, type ClusterResignationsResponse as bi, type ClusterStatusResponse as bj, type CreateRequestCanonicalArgs as bk, DIVERSITY_SCORE_MAX as bl, type DagParent as bm, type DagParentsResponse as bn, type DagSyncStatus as bo, type DecodeTxExtension as bp, type DecodeTxLog as bq, type DecodeTxPqAttestation as br, type DecodeTxResponse as bs, type DelegationCapResponse as bt, type DelegationHistoryRecord as bu, type DelegationRow as bv, type DelegationsResponse as bw, type DutyAbsence as bx, EMPTY_ROOT as by, type EncodeNativeNftBuyListingArgs as bz, type NativeDecodedEvent as c, NO_EVM_FINALITY_EVIDENCE_SOURCE as c$, type KeyRotationWindow as c0, type ListProofRequestsResponse as c1, type LythUpgradePlanStatus as c2, type LythUpgradeStatusResponse as c3, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES as c4, MAX_NATIVE_RECEIPT_EVENTS as c5, ML_DSA_65_PUBLIC_KEY_LEN$1 as c6, ML_DSA_65_SIGNATURE_LEN$1 as c7, MULTISIG_ADDRESS_DERIVATION_DOMAIN as c8, MarketActionError as c9, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as cA, NODE_REGISTRY_BLS_PUBKEY_BYTES as cB, NODE_REGISTRY_CAPABILITIES as cC, NODE_REGISTRY_CAPABILITY_MASK as cD, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES as cE, NODE_REGISTRY_CONSENSUS_POP_BYTES as cF, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES as cG, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES as cH, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES as cI, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS as cJ, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS as cK, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES as cL, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT as cM, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT as cN, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN as cO, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT as cP, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD as cQ, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES as cR, NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES as cS, NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES as cT, NODE_REGISTRY_OPERATOR_SEAL_EK_BYTES as cU, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID as cV, NODE_REGISTRY_PUBLIC_SERVICE_MASK as cW, NODE_REGISTRY_SELECTORS as cX, NO_EVM_ARCHIVE_PROOF_SCHEMA as cY, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as cZ, NO_EVM_FINALITY_EVIDENCE_SCHEMA as c_, type MarketTransactionPlan as ca, type MempoolSnapshot as cb, type MeshDecodedTx as cc, type MeshSignedTxResponse as cd, type MeshTxIntent as ce, type MeshUnsignedTxResponse as cf, type MetricsRangeResponse as cg, type MetricsRangeSample as ch, type MetricsRangeSeries as ci, type MetricsRangeStatus as cj, type MrcAccountRecord as ck, type MrcMetadataRecord as cl, type MrcPolicyRecord as cm, type MrcPolicySpendRecord as cn, NAME_BASE_MULTIPLIER as co, NAME_FALLBACK_FEE_UNIT_LYTHOSHI as cp, NAME_LABEL_MAX_LEN as cq, NAME_LABEL_MIN_LEN as cr, NAME_MAX_LEN as cs, NAME_REGISTRY_SELECTORS as ct, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE as cu, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY as cv, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET as cw, NATIVE_MARKET_EVENT_FAMILY as cx, NATIVE_MARKET_MODULE_ADDRESS as cy, NATIVE_MARKET_MODULE_ADDRESS_BYTES as cz, type NativeEventFilter as d, type NoEvmFinalityBlockReference as d$, NO_EVM_RECEIPTS_ROOT_DOMAIN as d0, NO_EVM_RECEIPT_CODEC as d1, NO_EVM_RECEIPT_PROOF_SCHEMA as d2, NO_EVM_RECEIPT_PROOF_TYPE as d3, NO_EVM_RECEIPT_ROOT_ALGORITHM as d4, type NameCategory as d5, type NameOfResponse as d6, type NameRegistrationQuote as d7, NameRegistryError as d8, type NativeAgentArbiterStateRecord as d9, type NativeMarketOrderBookDeltasSource as dA, type NativeMarketOrderBookStreamAction as dB, type NativeMarketOrderBookStreamPayload as dC, type NativeMarketStateFilterParamValue as dD, type NativeMarketStateResponseFilters as dE, type NativeMarketStateSource as dF, type NativeModuleForwarderDescriptor as dG, type NativeMrcPolicyProjection as dH, type NativeNftAssetStandard as dI, type NativeNftListingKind as dJ, type NativeNftListingStateRecord as dK, type NativeReceiptCounters as dL, type NativeReceiptEvent as dM, type NativeReceiptSource as dN, type NativeSpotMarketStateRecord as dO, type NativeSpotOrderStateRecord as dP, type NetworkClientOptions as dQ, type NetworkSlug as dR, type NoEvmArchiveCoveringSnapshot as dS, type NoEvmArchiveProof as dT, type NoEvmArchiveSignatureVerification as dU, type NoEvmArchiveSignatureVerificationIssue as dV, type NoEvmArchiveSignatureVerificationIssueCode as dW, type NoEvmArchiveTrustedSigner as dX, type NoEvmBlockBlsFinalityVerification as dY, type NoEvmBlockRoundFinalityVerification as dZ, type NoEvmBlsFinalityVerification as d_, type NativeAgentAttestationStateRecord as da, type NativeAgentAvailabilityStateRecord as db, type NativeAgentConsentStateRecord as dc, type NativeAgentEscrowStateRecord as dd, type NativeAgentIssuerStateRecord as de, type NativeAgentPolicySpendStateRecord as df, type NativeAgentPolicyStateRecord as dg, type NativeAgentReputationReviewStateRecord as dh, type NativeAgentServiceStateRecord as di, type NativeAgentStateFilterParamValue as dj, type NativeAgentStateResponseFilters as dk, type NativeAgentStateSource as dl, type NativeCallForwarderArtifact as dm, type NativeCollectionRoyaltyStateRecord as dn, type NativeEventConsumer as dp, type NativeEventProjection as dq, type NativeEventsResponseFilters as dr, type NativeEventsSource as ds, type NativeMarketAddressInput as dt, type NativeMarketAddressKind as du, type NativeMarketForwarderInput as dv, type NativeMarketModuleCallEnvelope as dw, type NativeMarketModuleContractCall as dx, type NativeMarketOrderBookDelta as dy, type NativeMarketOrderBookDeltasResponseFilters as dz, type TypedNativeReceiptEvent as e, type ProofRequestRow as e$, type NoEvmFinalityCertificate as e0, type NoEvmFinalityEvidence as e1, type NoEvmReceiptFinalityTrustPolicy as e2, type NoEvmReceiptProof as e3, NoEvmReceiptProofError as e4, type NoEvmReceiptProofErrorCode as e5, type NoEvmReceiptProofVerification as e6, type NoEvmReceiptTrustIssue as e7, type NoEvmReceiptTrustIssueCode as e8, type NoEvmReceiptTrustPolicy as e9, type OracleLatestPrice as eA, type OracleSignerRow as eB, type OracleSignersResponse as eC, type OracleWriters as eD, type P2pSeed as eE, PENDING_CHANGE_KIND_CODES as eF, PROVER_MARKET_ADDRESS as eG, PROVER_MARKET_BID_DOMAIN as eH, PROVER_MARKET_EVENT_SIGS as eI, PROVER_MARKET_REQUEST_DOMAIN as eJ, PROVER_MARKET_SELECTORS as eK, PROVER_MARKET_SUBMIT_DOMAIN as eL, PROVER_SLASH_REASON_BAD_PROOF as eM, PROVER_SLASH_REASON_NON_DELIVERY as eN, type ParsedName as eO, type PeerSummary as eP, type PeerSummaryAggregate as eQ, type PendingChangeKind as eR, type PendingRewardsRow as eS, type PendingTxSummary as eT, type PlaceLimitOrderViaArgs as eU, type PlaceLimitOrderViaPlan as eV, type PlaceSpotLimitOrderArgs as eW, type PlaceSpotMarketOrderArgs as eX, type PlaceSpotMarketOrderExArgs as eY, type PrecompileCatalogueResponse as eZ, type PrecompileDescriptor as e_, type NoEvmReceiptTrustVerification as ea, type NoEvmReceiptTrustedBlsSigner as eb, type NoEvmReceiptTrustedSigner as ec, type NoEvmRoundFinalityVerification as ed, type NodeHostingClass as ee, NodeRegistryError as ef, OPERATOR_ROUTER_EVENT_SIGS as eg, OPERATOR_ROUTER_SELECTORS as eh, OPERATOR_ROUTER_SIGS as ei, ORACLE_EVENT_SIGS as ej, type OperatorAuthorityResponse as ek, type OperatorFeeChargedEvent as el, type OperatorFeeConfig as em, type OperatorFeeQuote as en, type OperatorInfoResponse as eo, type OperatorNetworkMetadata as ep, type OperatorNetworkMetadataView as eq, type OperatorRiskResponse as er, type OperatorRouterConfig as es, type OperatorSigningActivityResponse as et, type OperatorSigningEntry as eu, type OperatorSurfaceCapability as ev, type OperatorSurfaceStatus as ew, type OracleEvent as ex, OracleEventError as ey, type OracleFeedConfig as ez, type NativeEventsFilter as f, type UpcomingDutyMap as f$, type ProofRequestView as f0, type ProverBidView as f1, type ProverBidsResponse as f2, ProverMarketError as f3, type ProverMarketState as f4, type ProverMarketStatusResponse as f5, type PublishOperatorSealKeyCalldataArgs as f6, type Quantity as f7, type QuoteLiquidity as f8, RESERVED_ADDRESS_HRPS as f9, type SetOperatorDisplayCalldataArgs as fA, type SigningEntryStatus as fB, type SpendingPolicyArgs as fC, SpendingPolicyError as fD, type SpendingPolicyTimeWindow as fE, type SpendingPolicyView as fF, type SpotLimitOrderSide as fG, type SpotMarketOrderMode as fH, type StorageProofBatch as fI, type SubmitPendingChangeCalldataArgs as fJ, type SwapIntentStatus as fK, type SyncStatus as fL, TESTNET_69420 as fM, type TokenBalanceMrcIdentity as fN, type TokenBalanceRecord as fO, type TokenBalanceWithMetadata as fP, type TotalBurnedResponse as fQ, type TpmAttestationResponse as fR, type TransactionReceipt as fS, type TransactionView as fT, type TxConfirmations as fU, type TxFeedReceipt as fV, type TxFeedTransaction as fW, type TxStatusFoundResponse as fX, type TxStatusNotFoundResponse as fY, type TxStatusResponse as fZ, type UpcomingDutiesResponse as f_, type RankedBridgeRoute as fa, type ReceiptProofTrustArchivePolicy as fb, type ReceiptProofTrustArchiveSigner as fc, type ReceiptProofTrustFinalityPolicy as fd, type ReceiptProofTrustFinalitySigner as fe, type ReceiptProofTrustPolicy as ff, type RedemptionQueueTicket as fg, type RegistryRecord as fh, type ReportServiceProbeCalldataArgs as fi, type ReportServiceProbeRequest as fj, type ReportServiceProbeResponse as fk, type RequestClusterJoinCalldataArgs as fl, type ResolveNameResponse as fm, type RichListHolder as fn, type RichListResponse as fo, type RoundCertificateResponse as fp, type RoundInfo as fq, type RpcClientOptions as fr, type RpcEndpoint as fs, type RuntimeProvenanceResponse as ft, SERVES_GPU_PROVE as fu, SERVICE_PROBE_STATUS as fv, SET_POLICY_CLAIM_DOMAIN_TAG as fw, SPENDING_POLICY_SELECTORS as fx, type SearchHit as fy, type ServiceProbeStatusLabel as fz, type NativeEventsResponse as g, decodeClusterJoinRequest as g$, type UserAddressInput as g0, V1_BRIDGE_ALLOWED_FEE_TOKEN as g1, V1_BRIDGE_ALLOWED_PROTOCOL as g2, type VertexAtRound as g3, type VerticesAtRoundResponse as g4, type VoteClusterAdmitCalldataArgs as g5, addressBytesToHex as g6, addressToBech32 as g7, addressToTypedBech32 as g8, allowRootFor as g9, buildNativeSpotCancelOrderForwarderInput as gA, buildNativeSpotCancelOrderModuleCall as gB, buildNativeSpotCreateMarketForwarderInput as gC, buildNativeSpotCreateMarketModuleCall as gD, buildNativeSpotLimitOrderForwarderInput as gE, buildNativeSpotLimitOrderModuleCall as gF, buildNativeSpotSettleLimitOrderForwarderInput as gG, buildNativeSpotSettleLimitOrderModuleCall as gH, buildNativeSpotSettleRoutedLimitOrderForwarderInput as gI, buildNativeSpotSettleRoutedLimitOrderModuleCall as gJ, buildPlaceLimitOrderViaPlan as gK, buildPlaceSpotLimitOrderPlan as gL, buildPlaceSpotMarketOrderExPlan as gM, buildPlaceSpotMarketOrderPlan as gN, categoryRoot as gO, clobAddressHex as gP, clusterApyPercent as gQ, composeClaimBoundMessage as gR, computeNoEvmDacFinalityMessage as gS, computeNoEvmLeaderFinalityMessage as gT, computeNoEvmReceiptsRoot as gU, computeNoEvmRoundFinalityMessage as gV, computeNoEvmTargetReceiptHash as gW, computeQuoteLiquidity as gX, consumeNativeEvents as gY, decodeClusterDiversity as gZ, decodeClusterFormedEvent as g_, assertNativeMarketOrderBookStreamPayload as ga, assessBridgeRoute as gb, bech32ToAddress as gc, bech32ToAddressBytes as gd, bidSighash as ge, bridgeAddressHex as gf, bridgeDrainRemaining as gg, bridgeQuoteSubmitReadiness as gh, bridgeRoutesReadiness as gi, bridgeTransferCandidates as gj, buildBridgeRouteCatalogue as gk, buildCancelSpotOrderPlan as gl, buildNativeCallForwarderArtifact as gm, buildNativeMarketModuleCallEnvelope as gn, buildNativeNftBuyListingForwarderInput as go, buildNativeNftBuyListingModuleCall as gp, buildNativeNftCancelListingForwarderInput as gq, buildNativeNftCancelListingModuleCall as gr, buildNativeNftCreateListingForwarderInput as gs, buildNativeNftCreateListingModuleCall as gt, buildNativeNftPlaceAuctionBidForwarderInput as gu, buildNativeNftPlaceAuctionBidModuleCall as gv, buildNativeNftSettleAuctionForwarderInput as gw, buildNativeNftSettleAuctionModuleCall as gx, buildNativeNftSweepExpiredListingsForwarderInput as gy, buildNativeNftSweepExpiredListingsModuleCall as gz, type NativeAgentStateFilter as h, encodeSetPolicyClaimCalldata as h$, decodeNativeAgentStateResponse as h0, decodeNativeMarketOrderBookDeltasResponse as h1, decodeNativeReceiptResponse as h2, decodeNoEvmReceiptTranscript as h3, decodeOperatorFeeChargedEvent as h4, decodeOperatorNetworkMetadata as h5, decodeOperatorSealKey as h6, decodeOracleEvent as h7, decodeTimeWindow as h8, decodeTxFeedResponse as h9, encodeNameRegisterCall as hA, encodeNativeMarketModuleForwarderInput as hB, encodeNativeNftBuyListingCall as hC, encodeNativeNftCancelListingCall as hD, encodeNativeNftCreateListingCall as hE, encodeNativeNftPlaceAuctionBidCall as hF, encodeNativeNftSettleAuctionCall as hG, encodeNativeNftSweepExpiredListingsCall as hH, encodeNativeSpotCancelOrderCall as hI, encodeNativeSpotCreateMarketCall as hJ, encodeNativeSpotLimitOrderCall as hK, encodeNativeSpotSettleLimitOrderCall as hL, encodeNativeSpotSettleRoutedLimitOrderCall as hM, encodePlaceLimitOrderCalldata as hN, encodePlaceLimitOrderViaCalldata as hO, encodePlaceMarketOrderCalldata as hP, encodePlaceMarketOrderExCalldata as hQ, encodePublishOperatorSealKeyCalldata as hR, encodeRecoverOperatorNodeCalldata as hS, encodeReportServiceProbeCalldata as hT, encodeRequestClusterJoinCalldata as hU, encodeSetBridgeResumeCooldownCalldata as hV, encodeSetBridgeRouteFinalityCalldata as hW, encodeSetLotSizeCalldata as hX, encodeSetMinNotionalCalldata as hY, encodeSetOperatorDisplayCalldata as hZ, encodeSetPolicyCalldata as h_, denyRootFor as ha, deriveClobMarketId as hb, deriveClusterAnchorAddress as hc, deriveFeedId as hd, deriveNativeSpotMarketId as he, deriveNativeSpotOrderId as hf, destinationRoot as hg, encodeAttestDkgReshareCalldata as hh, encodeBlockSelector as hi, encodeBridgeChallengeCalldata as hj, encodeBridgeClaimCalldata as hk, encodeCancelClusterJoinCalldata as hl, encodeCancelOrderCalldata as hm, encodeCancelPendingChangeCalldata as hn, encodeClaimPolicyByAddressCalldata as ho, encodeCreateRequestCalldata as hp, encodeCreateRequestCanonical as hq, encodeDisableCalldata as hr, encodeEnableCalldata as hs, encodeExpireClusterJoinCalldata as ht, encodeFormClusterCalldata as hu, encodeGetClusterJoinRequestCalldata as hv, encodeGetOperatorSealKeyCalldata as hw, encodeLockBridgeConfigCalldata as hx, encodeNameAcceptTransferCall as hy, encodeNameProposeTransferCall as hz, type NativeAgentStateResponse as i, selectBridgeTransferRoute as i$, encodeSetTickSizeCalldata as i0, encodeSubmitBridgeProofCalldata as i1, encodeSubmitPendingChangeCalldata as i2, encodeVoteClusterAdmitCalldata as i3, exportBridgeRouteCatalogueJson as i4, fetchChainInfoLatest as i5, fetchChainRegistryLatest as i6, formClusterMessage as i7, formClusterMessageHex as i8, formatOraclePrice as i9, nativeMarketEventsFromHistory as iA, nativeMarketEventsFromReceipt as iB, nativeMarketStateFilterParams as iC, noEvmReceiptTrustPolicyFromChainInfo as iD, nodeHostingClassFromByte as iE, nodeHostingClassToByte as iF, nodeRegistryAddressHex as iG, normalizeAddressHex as iH, normalizeBridgeRouteCatalogue as iI, normalizePendingChangeKind as iJ, oracleAddressHex as iK, oraclePriceToNumber as iL, packTimeWindow as iM, parseAddress as iN, parseBridgeRouteCatalogueJson as iO, parseChainRegistryToml as iP, parseDkgResharePublicKeys as iQ, parseNameCategory as iR, parseNativeDecodedEvent as iS, parseQuantity as iT, parseQuantityBig as iU, proverMarketStateFromByte as iV, quoteOperatorFee as iW, rankBridgeRoutes as iX, rankMarketsByVolume as iY, requestSighash as iZ, requireTypedAddress as i_, getChainInfo as ia, getNoEvmReceiptTrustPolicy as ib, getP2pSeeds as ic, getRpcEndpoints as id, hexToAddressBytes as ie, isBridgeAdminLockedRevert as ig, isBridgeCooldownZeroRevert as ih, isBridgeFinalityZeroRevert as ii, isBridgeResumeCooldownActiveRevert as ij, isConcreteServiceProbeStatus as ik, isNativeDecodedEvent as il, isNativeMarketOrderBookStreamPayload as im, isSinglePublicServiceProbeMask as io, isValidNodeRegistryCapabilities as ip, isValidPublicServiceProbeMask as iq, nameLengthModifierX10 as ir, nameRegistrationCost as is, nameRegistryAddressHex as it, nativeAgentStateFilterParams as iu, nativeEventMatches as iv, nativeEventsFilterParams as iw, nativeEventsFromHistory as ix, nativeEventsFromReceipt as iy, nativeMarketEventFilter as iz, type NativeMarketStateFilter as j, encodeTransactionForHash as j$, serviceProbeStatusLabel as j0, setDestinationRoot as j1, spendingPolicyAddressHex as j2, submitSighash as j3, typedBech32ToAddress as j4, validateAddress as j5, validateBridgeRouteCatalogue as j6, verifyNoEvmArchiveProofSignatures as j7, verifyNoEvmBlockFinalityEvidenceMultisig as j8, verifyNoEvmBlockFinalityEvidenceThreshold as j9, type NativeTxExtensionLike as jA, type NonceAad as jB, type OperatorSealKeypair as jC, type PlaintextSubmission as jD, SEAL_COMMIT_LEN as jE, SEAL_DK_LEN as jF, SEAL_EK_LEN as jG, SEAL_KEM_CT_LEN as jH, SEAL_KEM_SEED_LEN as jI, SEAL_KEY_LEN as jJ, SEAL_NONCE_LEN as jK, SEAL_SHARE_LEN as jL, SEAL_TAG_LEN as jM, STANDARD_ALGO_NUMBER_ML_DSA_65 as jN, type SealRandomSource as jO, type SealRecipient as jP, type SealedSubmission as jQ, bincodeDecryptHint as jR, bincodeEncryptedEnvelope as jS, bincodeNonceAad as jT, bincodeSignedTransaction as jU, buildEncryptedEnvelope as jV, buildEncryptedSubmission as jW, buildPlaintextSubmission as jX, cryptoRandomSource as jY, encodeMlDsa65Opaque as jZ, encodeSealEnvelope as j_, verifyNoEvmFinalityEvidenceMultisig as ja, verifyNoEvmFinalityEvidenceThreshold as jb, verifyNoEvmReceiptProof as jc, verifyNoEvmReceiptProofTrust as jd, ADDRESS_DERIVATION_DOMAIN as je, CLUSTER_MLKEM_SHAMIR as jf, CLUSTER_MLKEM_SHAMIR_ALGO as jg, type ClusterSealKeyEntryInput as jh, DKG_AEAD_TAG_LEN as ji, DKG_NONCE_LEN as jj, type DecryptHint as jk, ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE as jl, ENUM_VARIANT_INDEX_ML_DSA_65 as jm, type EncryptedEnvelope as jn, type EncryptedSubmission as jo, type JsonRpcCallClient as jp, type LythiumSealEnvelope as jq, ML_DSA_65_PUBLIC_KEY_LEN as jr, ML_DSA_65_SEED_LEN as js, ML_DSA_65_SIGNATURE_LEN as jt, ML_DSA_65_SIGNING_KEY_LEN as ju, ML_KEM_768_CIPHERTEXT_LEN as jv, ML_KEM_768_ENCAPSULATION_KEY_LEN as jw, ML_KEM_768_SHARED_SECRET_LEN as jx, type NativeTxExtension as jy, type NativeTxExtensionDescriptor as jz, type NativeMarketStateResponse as k, encryptInnerTx as k0, fetchEncryptionKey as k1, generateOperatorSealKeypair as k2, getClusterSealKeys as k3, mlDsa65AddressBytes as k4, mlDsa65AddressFromPublicKey as k5, outerSigDigest as k6, parseClusterSealKeys as k7, sealRosterHash as k8, sealToCluster as k9, sealTransaction as ka, submitEncryptedEnvelope as kb, submitPlaintextTransaction as kc, submitSealedTransaction as kd, submitTransactionWithPrivacy as ke, type NativeMarketOrderBookDeltasRequest as l, type NativeMarketOrderBookDeltasResponse as m, type AddressProfileResponse as n, type AddressFlowResponse as o, type RedemptionQueueResponse as p, type MrcAccountResponse as q, type MrcHoldersResponse as r, type BridgeRoutesRequest as s, type BridgeRoutesResponse as t, type ServiceProbeResponse as u, type ClobMarketsResponse as v, type ClobMarketResponse as w, type ClobTradesResponse as x, type ClobOhlcResponse as y, type ClobOrderBookResponse as z };
6553
+ export { type AddressActivityArchiveRedirect as $, type ApiStreamsIndexResponse as A, type BlockSelector as B, type ChainStatsResponse as C, type NativeEvmTxFields as D, type EncryptionKey as E, MempoolClass as F, type TypedAddress as G, RpcClient as H, MlDsa65Backend as I, type ExecutionUnitPriceResponse as J, type ClusterSealKeys as K, type ClusterSealKeysSource as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, type ClusterJoinRequestView as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, type AddressKind as U, ADDRESS_HRP as V, ADDRESS_KIND_HRPS as W, API_STREAM_TOPICS as X, type AccountPolicy as Y, type AccountProofResponse as Z, type Address as _, type RuntimeUpgradeStatus as a, type ChainRegistry as a$, type AddressActivityEntry as a0, type AddressActivityEntryEnriched as a1, type AddressActivityKind as a2, type AddressActivityKindResponse as a3, type AddressActivityKindRetention as a4, AddressError as a5, type AddressLabelRecord as a6, type AddressValidation as a7, type AgentReputationCategoryScope as a8, type AgentReputationRecord as a9, type BridgeRiskTier as aA, type BridgeRouteAssessment as aB, type BridgeRouteCandidate as aC, type BridgeRouteCatalogue as aD, BridgeRouteCatalogueError as aE, type BridgeRouteCatalogueJsonOptions as aF, type BridgeRouteCataloguePayload as aG, type BridgeRouteCatalogueRoute as aH, type BridgeRouteCatalogueValidation as aI, type BridgeRouteDisclosure as aJ, type BridgeRouteSelection as aK, type BridgeRoutesSource as aL, type BridgeTransferIntent as aM, type BridgeTransferRequest as aN, type BridgeVerifierDisclosure as aO, CHAIN_REGISTRY as aP, CHAIN_REGISTRY_RAW_BASE as aQ, CLOB_MARKET_ID_DOMAIN_TAG as aR, CLOB_SELECTORS as aS, CLUSTER_FORMED_EVENT_SIG as aT, type CallRequest as aU, type CancelClusterJoinCalldataArgs as aV, type CancelPendingChangeCalldataArgs as aW, type CancelSpotOrderArgs as aX, type CapabilitiesResponse as aY, type CapabilityDescriptor as aZ, type ChainInfo as a_, type AgentReputationResponse as aa, type ApiStreamTopic as ab, type ApiStreamTopicMetadata as ac, type ApiStreamTopicRetention as ad, type AssetPolicy as ae, type AttestDkgReshareCalldataArgs as af, type AttestationWindow as ag, BRIDGE_QUOTE_API_BLOCKED_REASON as ah, BRIDGE_REVERT_TAGS as ai, BRIDGE_SELECTORS as aj, BRIDGE_SUBMIT_API_BLOCKED_REASON as ak, type BlockHeader as al, type BlockTag as am, type BlsCertificateResponse as an, type BridgeAdminControl as ao, type BridgeAnchorState as ap, type BridgeBreakerState as aq, type BridgeBytesInput as ar, type BridgeCircuitBreakerFields as as, type BridgeCircuitBreakerState as at, type BridgeDrainCap as au, type BridgeDrainStatus as av, type BridgeHealthRecord as aw, type BridgeHealthResponse as ax, BridgePrecompileError as ay, type BridgeQuoteSubmitReadiness as az, type NativeReceiptResponse as b, type Hex as b$, type CheckpointRecord as b0, type CirculatingSupplyResponse as b1, type ClobMarketAssets as b2, type ClobMarketRecord as b3, type ClobMarketSummary as b4, type ClobTrade as b5, type ClusterAprResponse as b6, type ClusterCharterArgs as b7, type ClusterDelegatorsResponse as b8, type ClusterDirectoryEntryResponse as b9, type EncodeNativeNftBuyListingArgs as bA, type EncodeNativeNftCancelListingArgs as bB, type EncodeNativeNftCreateListingArgs as bC, type EncodeNativeNftPlaceAuctionBidArgs as bD, type EncodeNativeNftSettleAuctionArgs as bE, type EncodeNativeNftSweepExpiredListingsArgs as bF, type EncodeNativeSpotCancelOrderArgs as bG, type EncodeNativeSpotCreateMarketArgs as bH, type EncodeNativeSpotLimitOrderArgs as bI, type EncodeNativeSpotSettleLimitOrderArgs as bJ, type EncodeNativeSpotSettleRoutedLimitOrderArgs as bK, type EncryptionKeyResponse as bL, type EntityRatchetResponse as bM, type EthCallRequest as bN, type EthSendTransactionRequest as bO, type ExpireClusterJoinCalldataArgs as bP, type ExplorerEndpoint as bQ, FEED_ID_DOMAIN_TAG as bR, type FeeHistoryResponse as bS, type FormClusterCalldataArgs as bT, type FormClusterV2CalldataArgs as bU, type GapRange as bV, type GapRecord as bW, type GapRecordsResponse as bX, type GetClusterJoinRequestCalldataArgs as bY, type GetOperatorSealKeyCalldataArgs as bZ, type Hash as b_, type ClusterDirectoryPageResponse as ba, type ClusterDiversity as bb, type ClusterDiversityView as bc, type ClusterEntityResponse as bd, type ClusterFormedEvent as be, type ClusterJoinRequestStatus as bf, type ClusterMemberResponse as bg, type ClusterNameResponse as bh, type ClusterResignationRow as bi, type ClusterResignationsResponse as bj, type ClusterStatusResponse as bk, type CreateRequestCanonicalArgs as bl, DIVERSITY_SCORE_MAX as bm, type DagParent as bn, type DagParentsResponse as bo, type DagSyncStatus as bp, type DecodeTxExtension as bq, type DecodeTxLog as br, type DecodeTxPqAttestation as bs, type DecodeTxResponse as bt, type DelegationCapResponse as bu, type DelegationHistoryRecord as bv, type DelegationRow as bw, type DelegationsResponse as bx, type DutyAbsence as by, EMPTY_ROOT as bz, type NativeDecodedEvent as c, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID as c$, type IndexerStatus as c0, type JailStatusWindow as c1, type KeyRotationWindow as c2, type ListProofRequestsResponse as c3, type LythUpgradePlanStatus as c4, type LythUpgradeStatusResponse as c5, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES as c6, MAX_NATIVE_RECEIPT_EVENTS as c7, ML_DSA_65_PUBLIC_KEY_LEN$1 as c8, ML_DSA_65_SIGNATURE_LEN$1 as c9, NATIVE_MARKET_MODULE_ADDRESS as cA, NATIVE_MARKET_MODULE_ADDRESS_BYTES as cB, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as cC, NODE_REGISTRY_BLS_PUBKEY_BYTES as cD, NODE_REGISTRY_CAPABILITIES as cE, NODE_REGISTRY_CAPABILITY_MASK as cF, NODE_REGISTRY_CLUSTER_CHARTER_BYTES as cG, NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS as cH, NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS as cI, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES as cJ, NODE_REGISTRY_CONSENSUS_POP_BYTES as cK, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES as cL, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES as cM, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES as cN, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS as cO, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS as cP, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES as cQ, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT as cR, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT as cS, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN as cT, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN_V2 as cU, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT as cV, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD as cW, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES as cX, NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES as cY, NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES as cZ, NODE_REGISTRY_OPERATOR_SEAL_EK_BYTES as c_, MULTISIG_ADDRESS_DERIVATION_DOMAIN as ca, MarketActionError as cb, type MarketTransactionPlan as cc, type MempoolSnapshot as cd, type MeshDecodedTx as ce, type MeshSignedTxResponse as cf, type MeshTxIntent as cg, type MeshUnsignedTxResponse as ch, type MetricsRangeResponse as ci, type MetricsRangeSample as cj, type MetricsRangeSeries as ck, type MetricsRangeStatus as cl, type MrcAccountRecord as cm, type MrcMetadataRecord as cn, type MrcPolicyRecord as co, type MrcPolicySpendRecord as cp, NAME_BASE_MULTIPLIER as cq, NAME_FALLBACK_FEE_UNIT_LYTHOSHI as cr, NAME_LABEL_MAX_LEN as cs, NAME_LABEL_MIN_LEN as ct, NAME_MAX_LEN as cu, NAME_REGISTRY_SELECTORS as cv, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE as cw, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY as cx, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET as cy, NATIVE_MARKET_EVENT_FAMILY as cz, type NativeEventFilter as d, type NoEvmArchiveSignatureVerificationIssue as d$, NODE_REGISTRY_PUBLIC_SERVICE_MASK as d0, NODE_REGISTRY_SELECTORS as d1, NO_EVM_ARCHIVE_PROOF_SCHEMA as d2, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as d3, NO_EVM_FINALITY_EVIDENCE_SCHEMA as d4, NO_EVM_FINALITY_EVIDENCE_SOURCE as d5, NO_EVM_RECEIPTS_ROOT_DOMAIN as d6, NO_EVM_RECEIPT_CODEC as d7, NO_EVM_RECEIPT_PROOF_SCHEMA as d8, NO_EVM_RECEIPT_PROOF_TYPE as d9, type NativeMarketAddressKind as dA, type NativeMarketForwarderInput as dB, type NativeMarketModuleCallEnvelope as dC, type NativeMarketModuleContractCall as dD, type NativeMarketOrderBookDelta as dE, type NativeMarketOrderBookDeltasResponseFilters as dF, type NativeMarketOrderBookDeltasSource as dG, type NativeMarketOrderBookStreamAction as dH, type NativeMarketOrderBookStreamPayload as dI, type NativeMarketStateFilterParamValue as dJ, type NativeMarketStateResponseFilters as dK, type NativeMarketStateSource as dL, type NativeModuleForwarderDescriptor as dM, type NativeMrcPolicyProjection as dN, type NativeNftAssetStandard as dO, type NativeNftListingKind as dP, type NativeNftListingStateRecord as dQ, type NativeReceiptCounters as dR, type NativeReceiptEvent as dS, type NativeReceiptSource as dT, type NativeSpotMarketStateRecord as dU, type NativeSpotOrderStateRecord as dV, type NetworkClientOptions as dW, type NetworkSlug as dX, type NoEvmArchiveCoveringSnapshot as dY, type NoEvmArchiveProof as dZ, type NoEvmArchiveSignatureVerification as d_, NO_EVM_RECEIPT_ROOT_ALGORITHM as da, type NameCategory as db, type NameOfResponse as dc, type NameRegistrationQuote as dd, NameRegistryError as de, type NativeAgentArbiterStateRecord as df, type NativeAgentAttestationStateRecord as dg, type NativeAgentAvailabilityStateRecord as dh, type NativeAgentConsentStateRecord as di, type NativeAgentEscrowStateRecord as dj, type NativeAgentIssuerStateRecord as dk, type NativeAgentPolicySpendStateRecord as dl, type NativeAgentPolicyStateRecord as dm, type NativeAgentReputationReviewStateRecord as dn, type NativeAgentServiceStateRecord as dp, type NativeAgentStateFilterParamValue as dq, type NativeAgentStateResponseFilters as dr, type NativeAgentStateSource as ds, type NativeCallForwarderArtifact as dt, type NativeCollectionRoyaltyStateRecord as du, type NativeEventConsumer as dv, type NativeEventProjection as dw, type NativeEventsResponseFilters as dx, type NativeEventsSource as dy, type NativeMarketAddressInput as dz, type TypedNativeReceiptEvent as e, type PlaceLimitOrderViaPlan as e$, type NoEvmArchiveSignatureVerificationIssueCode as e0, type NoEvmArchiveTrustedSigner as e1, type NoEvmBlockBlsFinalityVerification as e2, type NoEvmBlockRoundFinalityVerification as e3, type NoEvmBlsFinalityVerification as e4, type NoEvmFinalityBlockReference as e5, type NoEvmFinalityCertificate as e6, type NoEvmFinalityEvidence as e7, type NoEvmReceiptFinalityTrustPolicy as e8, type NoEvmReceiptProof as e9, type OperatorSigningEntry as eA, type OperatorSurfaceCapability as eB, type OperatorSurfaceStatus as eC, type OracleEvent as eD, OracleEventError as eE, type OracleFeedConfig as eF, type OracleLatestPrice as eG, type OracleSignerRow as eH, type OracleSignersResponse as eI, type OracleWriters as eJ, type P2pSeed as eK, PENDING_CHANGE_KIND_CODES as eL, PROVER_MARKET_ADDRESS as eM, PROVER_MARKET_BID_DOMAIN as eN, PROVER_MARKET_EVENT_SIGS as eO, PROVER_MARKET_REQUEST_DOMAIN as eP, PROVER_MARKET_SELECTORS as eQ, PROVER_MARKET_SUBMIT_DOMAIN as eR, PROVER_SLASH_REASON_BAD_PROOF as eS, PROVER_SLASH_REASON_NON_DELIVERY as eT, type ParsedName as eU, type PeerSummary as eV, type PeerSummaryAggregate as eW, type PendingChangeKind as eX, type PendingRewardsRow as eY, type PendingTxSummary as eZ, type PlaceLimitOrderViaArgs as e_, NoEvmReceiptProofError as ea, type NoEvmReceiptProofErrorCode as eb, type NoEvmReceiptProofVerification as ec, type NoEvmReceiptTrustIssue as ed, type NoEvmReceiptTrustIssueCode as ee, type NoEvmReceiptTrustPolicy as ef, type NoEvmReceiptTrustVerification as eg, type NoEvmReceiptTrustedBlsSigner as eh, type NoEvmReceiptTrustedSigner as ei, type NoEvmRoundFinalityVerification as ej, type NodeHostingClass as ek, NodeRegistryError as el, OPERATOR_ROUTER_EVENT_SIGS as em, OPERATOR_ROUTER_SELECTORS as en, OPERATOR_ROUTER_SIGS as eo, ORACLE_EVENT_SIGS as ep, type OperatorAuthorityResponse as eq, type OperatorFeeChargedEvent as er, type OperatorFeeConfig as es, type OperatorFeeQuote as et, type OperatorInfoResponse as eu, type OperatorNetworkMetadata as ev, type OperatorNetworkMetadataView as ew, type OperatorRiskResponse as ex, type OperatorRouterConfig as ey, type OperatorSigningActivityResponse as ez, type NativeEventsFilter as f, type TxFeedReceipt as f$, type PlaceSpotLimitOrderArgs as f0, type PlaceSpotMarketOrderArgs as f1, type PlaceSpotMarketOrderExArgs as f2, type PrecompileCatalogueResponse as f3, type PrecompileDescriptor as f4, type ProofRequestRow as f5, type ProofRequestView as f6, type ProverBidView as f7, type ProverBidsResponse as f8, ProverMarketError as f9, SERVES_GPU_PROVE as fA, SERVICE_PROBE_STATUS as fB, SET_POLICY_CLAIM_DOMAIN_TAG as fC, SPENDING_POLICY_SELECTORS as fD, type SearchHit as fE, type ServiceProbeStatusLabel as fF, type SetOperatorDisplayCalldataArgs as fG, type SigningEntryStatus as fH, type SpendingPolicyArgs as fI, SpendingPolicyError as fJ, type SpendingPolicyTimeWindow as fK, type SpendingPolicyView as fL, type SpotLimitOrderSide as fM, type SpotMarketOrderMode as fN, type StorageProofBatch as fO, type SubmitPendingChangeCalldataArgs as fP, type SwapIntentStatus as fQ, type SyncStatus as fR, TESTNET_69420 as fS, type TokenBalanceMrcIdentity as fT, type TokenBalanceRecord as fU, type TokenBalanceWithMetadata as fV, type TotalBurnedResponse as fW, type TpmAttestationResponse as fX, type TransactionReceipt as fY, type TransactionView as fZ, type TxConfirmations as f_, type ProverMarketState as fa, type ProverMarketStatusResponse as fb, type PublishOperatorSealKeyCalldataArgs as fc, type Quantity as fd, type QuoteLiquidity as fe, RESERVED_ADDRESS_HRPS as ff, type RankedBridgeRoute as fg, type ReceiptProofTrustArchivePolicy as fh, type ReceiptProofTrustArchiveSigner as fi, type ReceiptProofTrustFinalityPolicy as fj, type ReceiptProofTrustFinalitySigner as fk, type ReceiptProofTrustPolicy as fl, type RedemptionQueueTicket as fm, type RegistryRecord as fn, type ReportServiceProbeCalldataArgs as fo, type ReportServiceProbeRequest as fp, type ReportServiceProbeResponse as fq, type RequestClusterJoinCalldataArgs as fr, type ResolveNameResponse as fs, type RichListHolder as ft, type RichListResponse as fu, type RoundCertificateResponse as fv, type RoundInfo as fw, type RpcClientOptions as fx, type RpcEndpoint as fy, type RuntimeProvenanceResponse as fz, type NativeEventsResponse as g, computeNoEvmRoundFinalityMessage as g$, type TxFeedTransaction as g0, type TxStatusFoundResponse as g1, type TxStatusNotFoundResponse as g2, type TxStatusResponse as g3, type UpcomingDutiesResponse as g4, type UpcomingDutyMap as g5, type UserAddressInput as g6, V1_BRIDGE_ALLOWED_FEE_TOKEN as g7, V1_BRIDGE_ALLOWED_PROTOCOL as g8, type VertexAtRound as g9, buildNativeNftPlaceAuctionBidForwarderInput as gA, buildNativeNftPlaceAuctionBidModuleCall as gB, buildNativeNftSettleAuctionForwarderInput as gC, buildNativeNftSettleAuctionModuleCall as gD, buildNativeNftSweepExpiredListingsForwarderInput as gE, buildNativeNftSweepExpiredListingsModuleCall as gF, buildNativeSpotCancelOrderForwarderInput as gG, buildNativeSpotCancelOrderModuleCall as gH, buildNativeSpotCreateMarketForwarderInput as gI, buildNativeSpotCreateMarketModuleCall as gJ, buildNativeSpotLimitOrderForwarderInput as gK, buildNativeSpotLimitOrderModuleCall as gL, buildNativeSpotSettleLimitOrderForwarderInput as gM, buildNativeSpotSettleLimitOrderModuleCall as gN, buildNativeSpotSettleRoutedLimitOrderForwarderInput as gO, buildNativeSpotSettleRoutedLimitOrderModuleCall as gP, buildPlaceLimitOrderViaPlan as gQ, buildPlaceSpotLimitOrderPlan as gR, buildPlaceSpotMarketOrderExPlan as gS, buildPlaceSpotMarketOrderPlan as gT, categoryRoot as gU, clobAddressHex as gV, clusterApyPercent as gW, composeClaimBoundMessage as gX, computeNoEvmDacFinalityMessage as gY, computeNoEvmLeaderFinalityMessage as gZ, computeNoEvmReceiptsRoot as g_, type VerticesAtRoundResponse as ga, type VoteClusterAdmitCalldataArgs as gb, addressBytesToHex as gc, addressToBech32 as gd, addressToTypedBech32 as ge, allowRootFor as gf, assertNativeMarketOrderBookStreamPayload as gg, assessBridgeRoute as gh, bech32ToAddress as gi, bech32ToAddressBytes as gj, bidSighash as gk, bridgeAddressHex as gl, bridgeDrainRemaining as gm, bridgeQuoteSubmitReadiness as gn, bridgeRoutesReadiness as go, bridgeTransferCandidates as gp, buildBridgeRouteCatalogue as gq, buildCancelSpotOrderPlan as gr, buildNativeCallForwarderArtifact as gs, buildNativeMarketModuleCallEnvelope as gt, buildNativeNftBuyListingForwarderInput as gu, buildNativeNftBuyListingModuleCall as gv, buildNativeNftCancelListingForwarderInput as gw, buildNativeNftCancelListingModuleCall as gx, buildNativeNftCreateListingForwarderInput as gy, buildNativeNftCreateListingModuleCall as gz, type NativeAgentStateFilter as h, encodeReportServiceProbeCalldata as h$, computeNoEvmTargetReceiptHash as h0, computeQuoteLiquidity as h1, consumeNativeEvents as h2, decodeClusterDiversity as h3, decodeClusterFormedEvent as h4, decodeClusterJoinRequest as h5, decodeNativeAgentStateResponse as h6, decodeNativeMarketOrderBookDeltasResponse as h7, decodeNativeReceiptResponse as h8, decodeNoEvmReceiptTranscript as h9, encodeExpireClusterJoinCalldata as hA, encodeFormClusterCalldata as hB, encodeFormClusterV2Calldata as hC, encodeGetClusterJoinRequestCalldata as hD, encodeGetOperatorSealKeyCalldata as hE, encodeLockBridgeConfigCalldata as hF, encodeNameAcceptTransferCall as hG, encodeNameProposeTransferCall as hH, encodeNameRegisterCall as hI, encodeNativeMarketModuleForwarderInput as hJ, encodeNativeNftBuyListingCall as hK, encodeNativeNftCancelListingCall as hL, encodeNativeNftCreateListingCall as hM, encodeNativeNftPlaceAuctionBidCall as hN, encodeNativeNftSettleAuctionCall as hO, encodeNativeNftSweepExpiredListingsCall as hP, encodeNativeSpotCancelOrderCall as hQ, encodeNativeSpotCreateMarketCall as hR, encodeNativeSpotLimitOrderCall as hS, encodeNativeSpotSettleLimitOrderCall as hT, encodeNativeSpotSettleRoutedLimitOrderCall as hU, encodePlaceLimitOrderCalldata as hV, encodePlaceLimitOrderViaCalldata as hW, encodePlaceMarketOrderCalldata as hX, encodePlaceMarketOrderExCalldata as hY, encodePublishOperatorSealKeyCalldata as hZ, encodeRecoverOperatorNodeCalldata as h_, decodeOperatorFeeChargedEvent as ha, decodeOperatorNetworkMetadata as hb, decodeOperatorSealKey as hc, decodeOracleEvent as hd, decodeTimeWindow as he, decodeTxFeedResponse as hf, denyRootFor as hg, deriveClobMarketId as hh, deriveClusterAnchorAddress as hi, deriveFeedId as hj, deriveNativeSpotMarketId as hk, deriveNativeSpotOrderId as hl, destinationRoot as hm, encodeAttestDkgReshareCalldata as hn, encodeBlockSelector as ho, encodeBridgeChallengeCalldata as hp, encodeBridgeClaimCalldata as hq, encodeCancelClusterJoinCalldata as hr, encodeCancelOrderCalldata as hs, encodeCancelPendingChangeCalldata as ht, encodeClaimPolicyByAddressCalldata as hu, encodeClusterCharter as hv, encodeCreateRequestCalldata as hw, encodeCreateRequestCanonical as hx, encodeDisableCalldata as hy, encodeEnableCalldata as hz, type NativeAgentStateResponse as i, parseNameCategory as i$, encodeRequestClusterJoinCalldata as i0, encodeSetBridgeResumeCooldownCalldata as i1, encodeSetBridgeRouteFinalityCalldata as i2, encodeSetLotSizeCalldata as i3, encodeSetMinNotionalCalldata as i4, encodeSetOperatorDisplayCalldata as i5, encodeSetPolicyCalldata as i6, encodeSetPolicyClaimCalldata as i7, encodeSetTickSizeCalldata as i8, encodeSubmitBridgeProofCalldata as i9, isValidPublicServiceProbeMask as iA, nameLengthModifierX10 as iB, nameRegistrationCost as iC, nameRegistryAddressHex as iD, nativeAgentStateFilterParams as iE, nativeEventMatches as iF, nativeEventsFilterParams as iG, nativeEventsFromHistory as iH, nativeEventsFromReceipt as iI, nativeMarketEventFilter as iJ, nativeMarketEventsFromHistory as iK, nativeMarketEventsFromReceipt as iL, nativeMarketStateFilterParams as iM, noEvmReceiptTrustPolicyFromChainInfo as iN, nodeHostingClassFromByte as iO, nodeHostingClassToByte as iP, nodeRegistryAddressHex as iQ, normalizeAddressHex as iR, normalizeBridgeRouteCatalogue as iS, normalizePendingChangeKind as iT, oracleAddressHex as iU, oraclePriceToNumber as iV, packTimeWindow as iW, parseAddress as iX, parseBridgeRouteCatalogueJson as iY, parseChainRegistryToml as iZ, parseDkgResharePublicKeys as i_, encodeSubmitPendingChangeCalldata as ia, encodeVoteClusterAdmitCalldata as ib, exportBridgeRouteCatalogueJson as ic, fetchChainInfoLatest as id, fetchChainRegistryLatest as ie, formClusterMessage as ig, formClusterMessageHex as ih, formClusterMessageV2 as ii, formClusterMessageV2Hex as ij, formatOraclePrice as ik, getChainInfo as il, getNoEvmReceiptTrustPolicy as im, getP2pSeeds as io, getRpcEndpoints as ip, hexToAddressBytes as iq, isBridgeAdminLockedRevert as ir, isBridgeCooldownZeroRevert as is, isBridgeFinalityZeroRevert as it, isBridgeResumeCooldownActiveRevert as iu, isConcreteServiceProbeStatus as iv, isNativeDecodedEvent as iw, isNativeMarketOrderBookStreamPayload as ix, isSinglePublicServiceProbeMask as iy, isValidNodeRegistryCapabilities as iz, type NativeMarketStateFilter as j, bincodeDecryptHint as j$, parseNativeDecodedEvent as j0, parseQuantity as j1, parseQuantityBig as j2, proverMarketStateFromByte as j3, quoteOperatorFee as j4, rankBridgeRoutes as j5, rankMarketsByVolume as j6, requestSighash as j7, requireTypedAddress as j8, selectBridgeTransferRoute as j9, type LythiumSealEnvelope as jA, ML_DSA_65_PUBLIC_KEY_LEN as jB, ML_DSA_65_SEED_LEN as jC, ML_DSA_65_SIGNATURE_LEN as jD, ML_DSA_65_SIGNING_KEY_LEN as jE, ML_KEM_768_CIPHERTEXT_LEN as jF, ML_KEM_768_ENCAPSULATION_KEY_LEN as jG, ML_KEM_768_SHARED_SECRET_LEN as jH, type NativeTxExtension as jI, type NativeTxExtensionDescriptor as jJ, type NativeTxExtensionLike as jK, type NonceAad as jL, type OperatorSealKeypair as jM, type PlaintextSubmission as jN, SEAL_COMMIT_LEN as jO, SEAL_DK_LEN as jP, SEAL_EK_LEN as jQ, SEAL_KEM_CT_LEN as jR, SEAL_KEM_SEED_LEN as jS, SEAL_KEY_LEN as jT, SEAL_NONCE_LEN as jU, SEAL_SHARE_LEN as jV, SEAL_TAG_LEN as jW, STANDARD_ALGO_NUMBER_ML_DSA_65 as jX, type SealRandomSource as jY, type SealRecipient as jZ, type SealedSubmission as j_, serviceProbeStatusLabel as ja, setDestinationRoot as jb, spendingPolicyAddressHex as jc, submitSighash as jd, typedBech32ToAddress as je, validateAddress as jf, validateBridgeRouteCatalogue as jg, verifyNoEvmArchiveProofSignatures as jh, verifyNoEvmBlockFinalityEvidenceMultisig as ji, verifyNoEvmBlockFinalityEvidenceThreshold as jj, verifyNoEvmFinalityEvidenceMultisig as jk, verifyNoEvmFinalityEvidenceThreshold as jl, verifyNoEvmReceiptProof as jm, verifyNoEvmReceiptProofTrust as jn, ADDRESS_DERIVATION_DOMAIN as jo, CLUSTER_MLKEM_SHAMIR as jp, CLUSTER_MLKEM_SHAMIR_ALGO as jq, type ClusterSealKeyEntryInput as jr, DKG_AEAD_TAG_LEN as js, DKG_NONCE_LEN as jt, type DecryptHint as ju, ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE as jv, ENUM_VARIANT_INDEX_ML_DSA_65 as jw, type EncryptedEnvelope as jx, type EncryptedSubmission as jy, type JsonRpcCallClient as jz, type NativeMarketStateResponse as k, bincodeEncryptedEnvelope as k0, bincodeNonceAad as k1, bincodeSignedTransaction as k2, buildEncryptedEnvelope as k3, buildEncryptedSubmission as k4, buildPlaintextSubmission as k5, cryptoRandomSource as k6, encodeMlDsa65Opaque as k7, encodeSealEnvelope as k8, encodeTransactionForHash as k9, encryptInnerTx as ka, fetchEncryptionKey as kb, generateOperatorSealKeypair as kc, getClusterSealKeys as kd, mlDsa65AddressBytes as ke, mlDsa65AddressFromPublicKey as kf, outerSigDigest as kg, parseClusterSealKeys as kh, sealRosterHash as ki, sealToCluster as kj, sealTransaction as kk, submitEncryptedEnvelope as kl, submitPlaintextTransaction as km, submitSealedTransaction as kn, submitTransactionWithPrivacy as ko, type NativeMarketOrderBookDeltasRequest as l, type NativeMarketOrderBookDeltasResponse as m, type AddressProfileResponse as n, type AddressFlowResponse as o, type RedemptionQueueResponse as p, type MrcAccountResponse as q, type MrcHoldersResponse as r, type BridgeRoutesRequest as s, type BridgeRoutesResponse as t, type ServiceProbeResponse as u, type ClobMarketsResponse as v, type ClobMarketResponse as w, type ClobTradesResponse as x, type ClobOhlcResponse as y, type ClobOrderBookResponse as z };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monolythium/core-sdk",
3
- "version": "0.4.13",
3
+ "version": "0.4.15",
4
4
  "description": "Official TypeScript SDK for Monolythium / LythiumDAG-BFT",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {