@monolythium/core-sdk 0.5.0 → 0.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -3106,8 +3106,8 @@ declare const NODE_REGISTRY_SELECTORS: {
3106
3106
  readonly advertiseSeat: string;
3107
3107
  /**
3108
3108
  * `applyForSeat(uint32,uint32,bytes)` returns `bytes32 appKey` (L6).
3109
- * Payable — the native `value` carries the refundable application
3110
- * escrow ({@link NODE_REGISTRY_SEAT_APPLICATION_ESCROW_LYTHOSHI}).
3109
+ * Payable — the native `value` escrows the full operator self-bond at
3110
+ * apply ({@link NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI}).
3111
3111
  */
3112
3112
  readonly applyForSeat: string;
3113
3113
  /**
@@ -3927,22 +3927,14 @@ declare function deriveClusterAnchorAddress(roster: readonly (string | Uint8Arra
3927
3927
  * the same tag byte under a different namespace.
3928
3928
  */
3929
3929
  declare const NODE_REGISTRY_TAG_CLUSTER_SEAT = 50;
3930
- /**
3931
- * Refundable application escrow charged by `applyForSeat`, in lythoshi
3932
- * (`100 LYTH`). Mirrors mono-core
3933
- * `cluster_seat::APPLICATION_ESCROW_LYTHOSHI`. This is an anti-spam
3934
- * escrow only — it is refunded on withdraw/reject and is DISTINCT from
3935
- * the {@link NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI} self-bond, which is
3936
- * bound only when the seat is filled (on admit), NOT at apply time.
3937
- */
3938
- declare const NODE_REGISTRY_SEAT_APPLICATION_ESCROW_LYTHOSHI: bigint;
3939
3930
  /**
3940
3931
  * Operator self-bond floor in lythoshi (`5,000 LYTH`). Mirrors mono-core
3941
3932
  * `bond::MIN_SELF_BOND_LYTHOSHI` — the constitutional floor (raise-only;
3942
- * lowering it is a hard fork). It is bound into the operator's bond at
3943
- * seat-fill (admit), not escrowed at apply. NOTE: the 50,000 / 75,000
3944
- * figures in the legacy design surfaces are stale fiction the SDK
3945
- * carries the on-chain floor only.
3933
+ * lowering it is a hard fork). `applyForSeat` escrows the full self-bond
3934
+ * up front `max(this floor, seat.minBond)` and retains it into the
3935
+ * operator's bond on admit. NOTE: the 50,000 / 75,000 figures in the
3936
+ * legacy design surfaces are stale fiction — the SDK carries the on-chain
3937
+ * floor only.
3946
3938
  */
3947
3939
  declare const NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI: bigint;
3948
3940
  /** Active-vacancy seat kind (`kind=0`). Mirrors `cluster_seat::SEAT_KIND_ACTIVE`. */
@@ -4107,7 +4099,7 @@ interface SeatApplicationView {
4107
4099
  appKey: string;
4108
4100
  /** Application owner address (`0x` 20 bytes). */
4109
4101
  owner: string;
4110
- /** Escrow currently held in lythoshi. */
4102
+ /** Full self-bond escrowed at apply, in lythoshi. */
4111
4103
  bondEscrowedLythoshi: bigint;
4112
4104
  /** Admit votes recorded so far. */
4113
4105
  voteCount: number;
@@ -4145,8 +4137,8 @@ interface SeatAppliedEvent {
4145
4137
  operatorId: string;
4146
4138
  /** Application owner address (`0x` 20 bytes). */
4147
4139
  owner: string;
4148
- /** Escrow held in lythoshi. */
4149
- escrowLythoshi: bigint;
4140
+ /** Full self-bond escrowed at apply, in lythoshi. */
4141
+ bondLythoshi: bigint;
4150
4142
  }
4151
4143
  /** Decoded `SeatFilled` event (L6). Mirrors `events::SEAT_FILLED`. */
4152
4144
  interface SeatFilledEvent {
@@ -4178,7 +4170,7 @@ interface SeatClosedEvent {
4178
4170
  declare function decodeSeatAdvertisedEvent(topics: readonly (string | Uint8Array | readonly number[])[], data: string | Uint8Array | readonly number[]): SeatAdvertisedEvent;
4179
4171
  /**
4180
4172
  * Decode a `SeatApplied` log (L6). Indexed topics: `clusterId`, `seatId`,
4181
- * `operatorId`. Data: `(address owner, uint128 escrow)` — 2 words.
4173
+ * `operatorId`. Data: `(address owner, uint128 bond)` — 2 words.
4182
4174
  */
4183
4175
  declare function decodeSeatAppliedEvent(topics: readonly (string | Uint8Array | readonly number[])[], data: string | Uint8Array | readonly number[]): SeatAppliedEvent;
4184
4176
  /**
@@ -8797,10 +8789,12 @@ declare function submitVoteClusterAdmit(args: SubmitVoteClusterAdmitArgs): Promi
8797
8789
  * signed-consent path — these builders add discovery + intent, no new
8798
8790
  * consensus surface.
8799
8791
  *
8800
- * The `applyForSeat` builder defaults the native value to the refundable
8801
- * application escrow ({@link NODE_REGISTRY_SEAT_APPLICATION_ESCROW_LYTHOSHI},
8802
- * 100 LYTH). The 5,000 LYTH self-bond is NOT posted here it is bound
8803
- * only when the seat is filled on admit.
8792
+ * The `applyForSeat` builder defaults the native value to the full
8793
+ * operator self-bond floor ({@link NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI},
8794
+ * 5,000 LYTH): the on-chain primitive escrows the full self-bond at apply
8795
+ * `max(min_self_bond_floor, seat.minBond)` and rejects an under-funded
8796
+ * applicant up front. When a targeted seat advertises a `minBond` above
8797
+ * the floor, the caller must override the value with that larger figure.
8804
8798
  */
8805
8799
 
8806
8800
  /** Default execution-unit limit for an open-seat marketplace transaction. */
@@ -8826,11 +8820,14 @@ interface BuildApplyForSeatTxFieldsArgs extends ApplyForSeatCalldataArgs {
8826
8820
  nonce: bigint | number | string;
8827
8821
  fee: SeatTxFee;
8828
8822
  /**
8829
- * Native escrow to attach, in lythoshi. Defaults to
8830
- * {@link NODE_REGISTRY_SEAT_APPLICATION_ESCROW_LYTHOSHI} (100 LYTH,
8831
- * refundable). The 5,000 LYTH self-bond is bound at admit, not here.
8823
+ * Self-bond to escrow at apply, in lythoshi. Defaults to the operator
8824
+ * self-bond floor {@link NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI}
8825
+ * (5,000 LYTH). The on-chain primitive requires
8826
+ * `max(min_self_bond_floor, seat.minBond)`, so when the targeted seat
8827
+ * advertises a `minBondLythoshi` above the floor the caller MUST pass
8828
+ * that larger amount here or the application reverts (`SeatBondTooLow`).
8832
8829
  */
8833
- escrowLythoshi?: bigint | number | string;
8830
+ selfBondLythoshi?: bigint | number | string;
8834
8831
  }
8835
8832
  interface BuildVoteSeatAdmitTxFieldsArgs extends VoteSeatAdmitCalldataArgs {
8836
8833
  chainId: bigint | number | string;
@@ -8859,9 +8856,12 @@ declare function resolveSeatExecutionFee(quote: ExecutionUnitPriceResponse, opti
8859
8856
  declare function buildAdvertiseSeatTxFields(args: BuildAdvertiseSeatTxFieldsArgs): NativeEvmTxFields;
8860
8857
  /**
8861
8858
  * Build `applyForSeat` transaction fields (operator; payable). The native
8862
- * `value` carries the refundable application escrow defaulting to
8863
- * {@link NODE_REGISTRY_SEAT_APPLICATION_ESCROW_LYTHOSHI} unless an
8864
- * explicit `escrowLythoshi` is supplied.
8859
+ * `value` escrows the operator self-bond at apply, defaulting to the
8860
+ * self-bond floor {@link NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI}
8861
+ * (5,000 LYTH). The on-chain primitive requires
8862
+ * `max(min_self_bond_floor, seat.minBond)`; when the targeted seat's
8863
+ * `minBondLythoshi` exceeds the floor, pass that larger figure via
8864
+ * `selfBondLythoshi` or the application reverts (`SeatBondTooLow`).
8865
8865
  */
8866
8866
  declare function buildApplyForSeatTxFields(args: BuildApplyForSeatTxFieldsArgs): NativeEvmTxFields;
8867
8867
  /** Build `voteSeatAdmit` transaction fields (active member; non-payable). */
@@ -9479,4 +9479,4 @@ interface MonolythiumNetworkConfig {
9479
9479
  */
9480
9480
  declare const version = "0.4.18";
9481
9481
 
9482
- export { ADDRESS_HRP, ADDRESS_KIND_HRPS, API_STREAM_TOPICS, type AccountPolicy, type AccountProofResponse, type ActiveCharterView, type Address, type AddressActivityArchiveRedirect, type AddressActivityEntry, type AddressActivityEntryEnriched, type AddressActivityKind, type AddressActivityKindResponse, type AddressActivityKindRetention, AddressError, type AddressFlowResponse, type AddressKind, type AddressLabelRecord, type AddressProfileResponse, type AddressValidation, type AdvertiseSeatCalldataArgs, AgentActionError, type AgentReputationCategoryScope, type AgentReputationRecord, type AgentReputationResponse, type AnswerArchiveChallengeCalldataArgs, type ApiAddressActivityData, type ApiAddressActivityEntry, type ApiAddressActivityKind, type ApiAddressActivityKindData, type ApiAddressActivityKindSummary, type ApiBlockData, type ApiBlockHeader, type ApiBlockTransactionsData, type ApiCapabilitiesResponse, ApiClient, type ApiClientOptions, type ApiClusterData, type ApiClusterDirectoryEntry, type ApiClusterDirectoryPage, type ApiClusterMember, type ApiClusterStatus, type ApiClustersData, type ApiEnvelope, type ApiErrorEnvelope, type ApiHealthResponse, type ApiIndexerStatus, type ApiLatestAnchor, type ApiLogEntry, type ApiOperatorData, type ApiOperatorInfo, type ApiQueryValue, type ApiRuntimeProvenanceData, type ApiServiceProbeData, type ApiStreamTopic, type ApiStreamTopicMetadata, type ApiStreamTopicRetention, type ApiStreamsIndexResponse, type ApiTransactionData, type ApiTransactionNativeReceiptData, type ApiTransactionReceipt, type ApiTransactionReceiptData, type ApiTransactionView, type ApiUpgradePlanStatus, type ApiUpgradeStatus, type ApiUpgradeStatusData, type ApplyForSeatCalldataArgs, type ArchiveChallenge, type AssetPolicy, type AttestDkgReshareCalldataArgs, type AttestServiceProbeCalldataArgs, type AttestationWindow, BRIDGE_QUOTE_API_BLOCKED_REASON, BRIDGE_REVERT_TAGS, BRIDGE_SELECTORS, BRIDGE_SUBMIT_API_BLOCKED_REASON, BURN_ADDR, type BinaryProofEndpoint, type BlockHeader, type BlockSelector, type BlockTag, type BlsCertificateResponse, type BridgeAdminControl, type BridgeAnchorState, type BridgeBreakerState, type BridgeBytesInput, type BridgeCircuitBreakerFields, type BridgeCircuitBreakerState, type BridgeDrainCap, type BridgeDrainStatus, type BridgeHealthRecord, type BridgeHealthResponse, BridgePrecompileError, type BridgeQuoteSubmitReadiness, type BridgeRiskTier, type BridgeRouteAssessment, type BridgeRouteCandidate, type BridgeRouteCatalogue, BridgeRouteCatalogueError, type BridgeRouteCatalogueJsonOptions, type BridgeRouteCataloguePayload, type BridgeRouteCatalogueRoute, type BridgeRouteCatalogueValidation, type BridgeRouteDisclosure, type BridgeRouteSelection, type BridgeRoutesRequest, type BridgeRoutesResponse, type BridgeRoutesSource, type BridgeTransferIntent, type BridgeTransferRequest, type BridgeVerifierDisclosure, type BuildAdvertiseSeatTxFieldsArgs, type BuildApplyForSeatTxFieldsArgs, type BuildCloseSeatTxFieldsArgs, type BuildRequestClusterJoinTxFieldsArgs, type BuildVoteClusterAdmitTxFieldsArgs, type BuildVoteSeatAdmitTxFieldsArgs, type BuildWithdrawSeatApplicationTxFieldsArgs, CHAIN_REGISTRY, CHAIN_REGISTRY_RAW_BASE, CLOB_MARKET_ID_DOMAIN_TAG, CLOB_SELECTORS, CLUSTER_FORMED_EVENT_SIG, type CallRequest, type CancelClusterJoinCalldataArgs, type CancelPendingChangeCalldataArgs, type CancelSpotOrderArgs, type CapabilitiesResponse, type CapabilityDescriptor, type ChainInfo, type ChainRegistry, type ChainStatsResponse, type CheckpointRecord, type CirculatingSupplyResponse, type ClobMarketAssets, type ClobMarketRecord, type ClobMarketResponse, type ClobMarketSummary, type ClobMarketsResponse, type ClobOhlcResponse, type ClobOrderBookResponse, type ClobTrade, type ClobTradesResponse, type CloseSeatCalldataArgs, type ClusterAprResponse, type ClusterCharterArgs, type ClusterDelegatorsResponse, type ClusterDirectoryEntryResponse, type ClusterDirectoryPageResponse, type ClusterDiversity, type ClusterDiversityView, type ClusterEntityResponse, type ClusterFormedEvent, type ClusterJoinFeeOptions, type ClusterJoinReadClient, type ClusterJoinRequestStatus, type ClusterJoinRequestView, type ClusterJoinSubmitClient, type ClusterJoinSubmitResult, type ClusterJoinTxFee, type ClusterMemberResponse, type ClusterNameResponse, type ClusterResignationRow, type ClusterResignationsResponse, type ClusterStatusResponse, type CommitArchiveRootCalldataArgs, type CreateFixedSupplyMrc20CalldataArgs, type CreateRequestCanonicalArgs, type CreateTokenCalldataArgs, DEFAULT_CLUSTER_JOIN_EXECUTION_UNIT_LIMIT, DEFAULT_SEAT_EXECUTION_UNIT_LIMIT, DELEGATION_REVERT_TAGS, DELEGATION_SELECTORS, DIVERSITY_SCORE_MAX, type DagParent, type DagParentsResponse, type DagSyncStatus, type DecodeTxExtension, type DecodeTxLog, type DecodeTxPqAttestation, type DecodeTxResponse, type DelegationCapResponse, type DelegationHistoryRecord, DelegationPrecompileError, type DelegationRow, type DelegationsResponse, type DutyAbsence, EMPTY_ROOT, EXECUTION_UNIT_PRICE_SAFETY_MULTIPLIER, type EncodeNativeAgentAvailabilitySlotArgs, type EncodeNativeAgentCounterEscrowArgs, type EncodeNativeAgentCreateEscrowArgs, type EncodeNativeAgentDeactivateServiceArgs, type EncodeNativeAgentEscrowActorArgs, type EncodeNativeAgentGrantConsentArgs, type EncodeNativeAgentIssueAttestationArgs, type EncodeNativeAgentListServiceArgs, type EncodeNativeAgentRecordPolicySpendArgs, type EncodeNativeAgentRecordReputationArgs, type EncodeNativeAgentRegisterArbiterArgs, type EncodeNativeAgentRegisterIssuerArgs, type EncodeNativeAgentResolveEscrowArgs, type EncodeNativeAgentRevokeAttestationArgs, type EncodeNativeAgentRevokeConsentArgs, type EncodeNativeAgentSetAvailabilityArgs, type EncodeNativeAgentSetSpendingPolicyArgs, type EncodeNativeAgentStartEscrowArgs, type EncodeNativeAgentSubmitEscrowArgs, type EncodeNativeNftBuyListingArgs, type EncodeNativeNftCancelListingArgs, type EncodeNativeNftCreateListingArgs, type EncodeNativeNftPlaceAuctionBidArgs, type EncodeNativeNftSettleAuctionArgs, type EncodeNativeNftSweepExpiredListingsArgs, type EncodeNativeSpotCancelOrderArgs, type EncodeNativeSpotCreateMarketArgs, type EncodeNativeSpotLimitOrderArgs, type EncodeNativeSpotSettleLimitOrderArgs, type EncodeNativeSpotSettleRoutedLimitOrderArgs, type EntityRatchetResponse, type EthCallRequest, type EthSendTransactionRequest, type ExecutionUnitPriceResponse, type ExpireClusterJoinCalldataArgs, type ExplorerEndpoint, FEED_ID_DOMAIN_TAG, type FeeHistoryResponse, type FormClusterCalldataArgs, type FormClusterV2CalldataArgs, type GapRange, type GapRecord, type GapRecordsResponse, type GenesisVerdict, type GetClusterJoinRequestCalldataArgs, type Hash, type HealthSummary, type Hex, type IndexerStatus, type JailStatusWindow, type KeyRotationWindow, LYTHOSHI_PER_LYTH, LYTH_DECIMALS, type LatencyBands, type ListProofRequestsResponse, type LythFormatOptions, type LythUpgradePlanStatus, type LythUpgradeStatusResponse, MAX_MULTISIG_MEMBERS, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES, MAX_NATIVE_RECEIPT_EVENTS, MIN_EXECUTION_UNIT_PRICE_LYTHOSHI, MIN_MULTISIG_MEMBERS, ML_DSA_65_PUBLIC_KEY_LEN, ML_DSA_65_SIGNATURE_LEN, MONOLYTHIUM_NETWORKS, MONOLYTHIUM_TESTNET_CHAIN_ID, MONOLYTHIUM_TESTNET_NETWORK_NAME, MRV_DEPLOY_PAYLOAD_VERSION, MRV_FORMAT_VERSION, MRV_MAX_ABI_SYMBOLS, MRV_MAX_CODE_BYTES, MRV_MAX_DEBUG_BYTES, MRV_MAX_MEMORY_PAGES, MRV_MAX_STORAGE_NAMESPACE_BYTES, MRV_MEMORY_PAGE_BYTES, MRV_PROFILE_MONO_RV32IM_V1, MRV_STRUCTURED_FEE_FIELDS, MRV_TX_EXTENSION_KIND, MRV_TX_EXTENSION_V1, MULTISIG_ADDRESS_DERIVATION_DOMAIN$1 as MULTISIG_ADDRESS_DERIVATION_DOMAIN, MULTISIG_ADDRESS_DERIVATION_DOMAIN as MULTISIG_WITNESS_ADDRESS_DERIVATION_DOMAIN, MULTISIG_WITNESS_DOMAIN, MarketActionError, type MarketTransactionPlan, type MemberPubkeyInput, type MempoolSnapshot, type MeshDecodedTx, type MeshSignedTxResponse, type MeshTxIntent, type MeshUnsignedTxResponse, type MetricsRangeResponse, type MetricsRangeSample, type MetricsRangeSeries, type MetricsRangeStatus, type MonolythiumNetworkConfig, type MrcAccountRecord, type MrcAccountRequest, type MrcAccountResponse, type MrcHoldersRequest, type MrcHoldersResponse, type MrcMetadataRecord, type MrcMetadataResponse, type MrcPolicyRecord, type MrcPolicySpendRecord, type MrvAbiManifest, type MrvAbiParam, type MrvAbiSymbol, type MrvAbiSymbolKind, type MrvAbiType, type MrvAddressKind, type MrvArtifactMetadata, type MrvBuildMetadata, type MrvBytesLike, type MrvCallNativeTxOptions, type MrvCallNativeTxPlan, type MrvCallPlan, type MrvCallRequest, type MrvCallResponse, type MrvCallStatus, type MrvCallSubmission, type MrvCallSubmitOptions, type MrvDecimalLike, type MrvDeployNativeTxOptions, type MrvDeployNativeTxPlan, type MrvDeployPayload, type MrvDeployPayloadNativeTxOptions, type MrvDeployPayloadPlanOptions, type MrvDeployPayloadRequestOptions, type MrvDeployPayloadSubmission, type MrvDeployPayloadSubmitOptions, type MrvDeployPlan, type MrvDeployPlanOptions, type MrvDeployRequest, type MrvDeployResponse, type MrvDeploySubmission, type MrvDeploySubmitOptions, type MrvEventRecord, type MrvExecutionReceipt, type MrvFeeDisplayConformanceInput, type MrvFeeDisplayConformanceReport, type MrvMemoryLimits, type MrvMeterCounters, type MrvNativeFeePreview, type MrvNativeStateDelta, type MrvNativeTxFacade, type MrvRequestBuildOptions, type MrvResolvedSyscall, type MrvRevertPayload, type MrvRiscvProfile, type MrvStorageNamespace, type MrvStructuredFeeConformanceOptions, type MrvStructuredFeeConformanceReport, type MrvSubmissionResult, type MrvSyscallImport, type MrvTransactionExtension, type MrvTypedAddress, type MrvValidatedArtifactMetadata, MrvValidationError, MultisigError, type MultisigMember, type MultisigMemberSignature, type MultisigWitness, NAME_BASE_MULTIPLIER, NAME_FALLBACK_FEE_UNIT_LYTHOSHI, NAME_LABEL_MAX_LEN, NAME_LABEL_MIN_LEN, NAME_MAX_LEN, NAME_REGISTRY_SELECTORS, NATIVE_AGENT_MODULE_ADDRESS, NATIVE_AGENT_MODULE_ADDRESS_BYTES, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET, NATIVE_DEV_HOST_API_VERSION, NATIVE_DEV_IPC_PROTOCOL_VERSION, NATIVE_DEV_MANIFEST_SCHEMA_VERSION, NATIVE_LYTH_DECIMALS, NATIVE_MARKET_EVENT_FAMILY, NATIVE_MARKET_MODULE_ADDRESS, NATIVE_MARKET_MODULE_ADDRESS_BYTES, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC, NODE_REGISTRY_ARCHIVE_CHALLENGE_DOMAIN, NODE_REGISTRY_ARCHIVE_KIND_EPOCH_SEED, NODE_REGISTRY_ARCHIVE_NONCE_DOMAIN, NODE_REGISTRY_BLS_PUBKEY_BYTES, NODE_REGISTRY_CAPABILITIES, NODE_REGISTRY_CAPABILITY_MASK, NODE_REGISTRY_CHALLENGE_EPOCH_WINDOW, NODE_REGISTRY_CHARTER_COOLDOWN_EPOCHS, NODE_REGISTRY_CLUSTER_CHARTER_BYTES, NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS, NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES, NODE_REGISTRY_CONSENSUS_POP_BYTES, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN_V2, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES, NODE_REGISTRY_MAX_MERKLE_PROOF_DEPTH, NODE_REGISTRY_MERKLE_INNER_DOMAIN, NODE_REGISTRY_MERKLE_LEAF_DOMAIN, NODE_REGISTRY_MIN_ARCHIVE_LEAF_COUNT, NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI, NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES, NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID, NODE_REGISTRY_PUBLIC_SERVICE_MASK, NODE_REGISTRY_SEAT_APPLICATION_ESCROW_LYTHOSHI, NODE_REGISTRY_SEAT_KIND_ACTIVE, NODE_REGISTRY_SEAT_KIND_STANDBY, NODE_REGISTRY_SELECTORS, NODE_REGISTRY_SUBKIND_CHARTER_DELEGATOR_BPS, NODE_REGISTRY_SUBKIND_CHARTER_MEMBER_SHARES, NODE_REGISTRY_TAG_ARCHIVE_CHALLENGE, NODE_REGISTRY_TAG_CLUSTER_CHARTER, NODE_REGISTRY_TAG_CLUSTER_SEAT, NODE_REGISTRY_TAG_SERVICE_SCORE, NODE_REGISTRY_TAG_TREASURY, NODE_REGISTRY_UPDATE_CHARTER_MESSAGE_DOMAIN, NODE_REGISTRY_UPDATE_CHARTER_THRESHOLD, NO_EVM_ARCHIVE_PROOF_SCHEMA, NO_EVM_ARCHIVE_SIGNATURE_SCHEME, NO_EVM_FINALITY_EVIDENCE_SCHEMA, NO_EVM_FINALITY_EVIDENCE_SOURCE, NO_EVM_RECEIPTS_ROOT_DOMAIN, NO_EVM_RECEIPT_CODEC, NO_EVM_RECEIPT_PROOF_SCHEMA, NO_EVM_RECEIPT_PROOF_TYPE, NO_EVM_RECEIPT_ROOT_ALGORITHM, type NameCategory, type NameOfResponse, type NameRegistrationQuote, NameRegistryError, type NativeAgentAddressInput, type NativeAgentAddressKind, type NativeAgentArbiterStateRecord, type NativeAgentAttestationStateRecord, type NativeAgentAvailabilityStateRecord, type NativeAgentConsentStateRecord, type NativeAgentEscrowResolution, type NativeAgentEscrowStateRecord, type NativeAgentForwarderInput, type NativeAgentIssuerStateRecord, type NativeAgentModuleCallEnvelope, type NativeAgentModuleContractCall, type NativeAgentPolicySpendStateRecord, type NativeAgentPolicyStateRecord, type NativeAgentReputationReviewStateRecord, type NativeAgentReputationScores, type NativeAgentServiceStateRecord, type NativeAgentStateFilter, type NativeAgentStateFilterParamValue, type NativeAgentStateResponse, type NativeAgentStateResponseFilters, type NativeAgentStateSource, type NativeCallForwarderArtifact, type NativeCollectionRoyaltyStateRecord, type NativeDecodedEvent, type NativeDevApprovalKind, type NativeDevCommandName, type NativeDevContractPassport, type NativeDevHostApprovalResultMessage, type NativeDevHostCommandMessage, type NativeDevHostContextMessage, type NativeDevIpcMessage, type NativeDevMrcAllocation, type NativeDevMrcAssetKind, type NativeDevMrcTokenPlan, type NativeDevMrvDeployPlan, type NativeDevRiskLabel, type NativeDevRiskSeverity, type NativeDevSidecarApprovalRequestMessage, type NativeDevSidecarCommandResultMessage, type NativeDevSidecarProjectEventMessage, type NativeDevSidecarReadyMessage, type NativeDevVerificationBundle, type NativeDevWalletApprovalRequest, type NativeDevkitArchive, type NativeDevkitChannel, type NativeDevkitCompatibility, type NativeDevkitManifest, type NativeDevkitSidecarManifest, type NativeDevkitSidecarStatus, type NativeDevkitStatus, type NativeEventConsumer, type NativeEventFilter, type NativeEventProjection, type NativeEventsFilter, type NativeEventsResponse, type NativeEventsResponseFilters, type NativeEventsSource, type NativeMarketAddressInput, type NativeMarketAddressKind, type NativeMarketForwarderInput, type NativeMarketModuleCallEnvelope, type NativeMarketModuleContractCall, type NativeMarketOrderBookDelta, type NativeMarketOrderBookDeltasRequest, type NativeMarketOrderBookDeltasResponse, type NativeMarketOrderBookDeltasResponseFilters, type NativeMarketOrderBookDeltasSource, type NativeMarketOrderBookStreamAction, type NativeMarketOrderBookStreamPayload, type NativeMarketStateFilter, type NativeMarketStateFilterParamValue, type NativeMarketStateResponse, type NativeMarketStateResponseFilters, type NativeMarketStateSource, type NativeModuleForwarderDescriptor, type NativeMrcPolicyProjection, type NativeNftAssetStandard, type NativeNftListingKind, type NativeNftListingStateRecord, type NativeReceiptCounters, type NativeReceiptEvent, type NativeReceiptFee, type NativeReceiptFeeDisplay, type NativeReceiptResponse, type NativeReceiptSource, type NativeSpotMarketStateRecord, type NativeSpotOrderStateRecord, type NetworkClientOptions, type NetworkSlug, type NoEvmArchiveCoveringSnapshot, type NoEvmArchiveProof, type NoEvmArchiveSignatureVerification, type NoEvmArchiveSignatureVerificationIssue, type NoEvmArchiveSignatureVerificationIssueCode, type NoEvmArchiveTrustedSigner, type NoEvmBlockBlsFinalityVerification, type NoEvmBlockRoundFinalityVerification, type NoEvmBlsFinalityVerification, type NoEvmFinalityBlockReference, type NoEvmFinalityCertificate, type NoEvmFinalityEvidence, type NoEvmReceiptFinalityTrustPolicy, type NoEvmReceiptProof, NoEvmReceiptProofError, type NoEvmReceiptProofErrorCode, type NoEvmReceiptProofVerification, type NoEvmReceiptTrustIssue, type NoEvmReceiptTrustIssueCode, type NoEvmReceiptTrustPolicy, type NoEvmReceiptTrustVerification, type NoEvmReceiptTrustedBlsSigner, type NoEvmReceiptTrustedSigner, type NoEvmRoundFinalityVerification, type NodeHostingClass, NodeRegistryError, type NonInclusionProofEnvelope, OPERATOR_ROUTER_ADDRESS, OPERATOR_ROUTER_EVENT_SIGS, OPERATOR_ROUTER_SELECTORS, OPERATOR_ROUTER_SIGS, ORACLE_EVENT_SIGS, type OpenSeatView, type OperatorAuthorityResponse, type OperatorCapabilitiesResponse, type OperatorFeeChargedEvent, type OperatorFeeConfig, type OperatorFeeQuote, type OperatorInfoResponse, type OperatorNetworkMetadata, type OperatorNetworkMetadataView, type OperatorOnboardingPreview, type OperatorRiskResponse, type OperatorRouterConfig, type OperatorSigningActivityResponse, type OperatorSigningEntry, type OperatorSurfaceCapability, type OperatorSurfaceStatus, OperatorTrustError, type OperatorTrustReason, type OracleEvent, OracleEventError, type OracleFeedConfig, type OracleLatestPrice, type OracleSignerRow, type OracleSignersResponse, type OracleWriters, type P2pSeed, PENDING_CHANGE_KIND_CODES, PRECOMPILE_ADDRESSES, PROOF_KIND_BINARY, PROTOCOL_MAX_OPERATOR_FEE_BPS, PROVER_MARKET_ADDRESS, PROVER_MARKET_BID_DOMAIN, PROVER_MARKET_EVENT_SIGS, PROVER_MARKET_REQUEST_DOMAIN, PROVER_MARKET_SELECTORS, PROVER_MARKET_SUBMIT_DOMAIN, PROVER_SLASH_REASON_BAD_PROOF, PROVER_SLASH_REASON_NON_DELIVERY, PUBKEY_REGISTRY_ML_DSA_65_PUBLIC_KEY_LEN, PUBKEY_REGISTRY_SELECTORS, type ParsedName, type PeerSummary, type PeerSummaryAggregate, type PendingChangeKind, type PendingCharterView, type PendingRewardsResponse, type PendingRewardsRow, type PendingTxSummary, type PlaceLimitOrderViaArgs, type PlaceLimitOrderViaPlan, type PlaceSpotLimitOrderArgs, type PlaceSpotMarketOrderArgs, type PlaceSpotMarketOrderExArgs, type PrecompileAddress, type PrecompileCatalogueResponse, type PrecompileDescriptor, type PrecompileName, type ProofEnvelope, type ProofRequestRow, type ProofRequestView, ProofVerifier, ProofVerifyError, type ProofVerifyErrorCode, type ProverBidView, type ProverBidsResponse, ProverMarketError, type ProverMarketState, type ProverMarketStatusResponse, type PubkeyLookup, PubkeyRegistryError, QUARANTINED_RPC_CODE, type Quantity, type QuoteLiquidity, REGISTRY_DEFAULT_EXECUTION_UNIT_LIMIT, RESERVED_ADDRESS_HRPS, type RankedBridgeRoute, type ReceiptProofTrustArchivePolicy, type ReceiptProofTrustArchiveSigner, type ReceiptProofTrustFinalityPolicy, type ReceiptProofTrustFinalitySigner, type ReceiptProofTrustPolicy, type RedemptionQueueResponse, type RedemptionQueueTicket, type RegistryRecord, type ReportServiceProbeCalldataArgs, type ReportServiceProbeRequest, type ReportServiceProbeResponse, type RequestClusterJoinCalldataArgs, type ResolveNameResponse, type ResolvedExecutionFee, type RichListHolder, type RichListResponse, type RoundCertificateResponse, type RoundInfo, RpcClient, type RpcClientOptions, type RpcEndpoint, type RuntimeBuildProvenance, type RuntimeProvenanceResponse, type RuntimeUpgradeStatus, SEAT_ADVERTISED_EVENT_SIG, SEAT_APPLIED_EVENT_SIG, SEAT_CLOSED_EVENT_SIG, SEAT_FILLED_EVENT_SIG, SEAT_KINDS, SEAT_STATUS_CODES, SERVES_GPU_PROVE, SERVICE_PROBE_STATUS, SET_POLICY_CLAIM_DOMAIN_TAG, SPENDING_POLICY_SELECTORS, SdkError, type SearchHit, type SearchResponse, type SeatAdvertisedEvent, type SeatApplicationView, type SeatAppliedEvent, type SeatClosedEvent, type SeatFeeOptions, type SeatFilledEvent, type SeatKind, type SeatStatus, type SeatTxFee, type ServiceProbeResponse, type ServiceProbeStatusLabel, type SetOperatorDisplayCalldataArgs, type SigningEntryStatus, type SpendingPolicyArgs, SpendingPolicyError, type SpendingPolicyTimeWindow, type SpendingPolicyView, type SpotLimitOrderSide, type SpotMarketOrderMode, type StorageProofBatch, type StudioHostState, type StudioHostStatus, type SubmitPendingChangeCalldataArgs, type SubmitRequestClusterJoinArgs, type SubmitVoteClusterAdmitArgs, type SwapIntentStatus, type SyncStatus, TESTNET_69420, TOKEN_FACTORY_CREATE_DEPOSIT_LYTHOSHI, TOKEN_FACTORY_FLAGS, TOKEN_FACTORY_KNOWN_FLAG_MASK, TOKEN_FACTORY_MAX_CREATOR_FEE_BPS, TOKEN_FACTORY_MAX_DECIMALS, TOKEN_FACTORY_NAME_MAX_BYTES, TOKEN_FACTORY_SELECTORS, TOKEN_FACTORY_SIGS, TOKEN_FACTORY_SYMBOL_MAX_BYTES, TOKEN_FACTORY_TOKEN_ID_DOMAIN_TAG, TRANSFER_DEFAULT_EXECUTION_UNIT_LIMIT, TX_EXTENSION_KIND_MULTISIG, TX_EXTENSION_MULTISIG_V1, type TokenBalanceMrcIdentity, type TokenBalanceRecord, type TokenBalanceWithMetadata, type TokenFactoryAddressInput, type TokenFactoryBytes32Input, TokenFactoryError, type TokenFactoryUintInput, type TotalBurnedResponse, type TpmAttestationResponse, type TransactionFeeExposure, type TransactionReceipt, type TransactionView, type TxConfirmations, type TxFeedReceipt, type TxFeedResponse, type TxFeedTransaction, type TxStatusFoundResponse, type TxStatusNotFoundResponse, type TxStatusResponse, type TypedAddress, type TypedNativeReceiptEvent, type UpcomingDutiesResponse, type UpcomingDutyMap, type UpdateCharterCalldataArgs, type UserAddressInput, V1_BRIDGE_ALLOWED_FEE_TOKEN, V1_BRIDGE_ALLOWED_PROTOCOL, VRF_DOMAIN_TAG_MAX_BYTES, VRF_HEIGHT_NOT_FINALIZED_REVERT, VRF_OUTPUT_BYTES, type VertexAtRound, type VerticesAtRoundResponse, type VoteClusterAdmitCalldataArgs, type VoteSeatAdmitCalldataArgs, VrfCallError, type VrfDomainTagInput, type WithdrawSeatApplicationCalldataArgs, addressBytesToHex, addressToBech32, addressToTypedBech32, allowRootFor, apiEndpointFromRpcEndpoint, archiveMerkleInnerHash, archiveMerkleLeafHash, asBinaryProofEnvelope, assembleMultisigSigned, assembleMultisigWitness, assertMrvCallNativeSubmissionPlan, assertMrvDeployNativeSubmissionPlan, assertMrvFeeDisplayConformance, assertMrvStructuredFeeConformance, assertNativeDevMrcTokenPlan, assertNativeDevMrvDeployPlan, assertNativeDevWalletApprovalRequest, assertNativeMarketOrderBookStreamPayload, assessBridgeRoute, bech32ToAddress, bech32ToAddressBytes, bidSighash, bridgeAddressHex, bridgeDrainRemaining, bridgeQuoteSubmitReadiness, bridgeRoutesReadiness, bridgeTransferCandidates, buildAdvertiseSeatTxFields, buildApplyForSeatTxFields, buildBridgeRouteCatalogue, buildCancelSpotOrderPlan, buildCloseSeatTxFields, buildMrvCallNativeTxPlan, buildMrvCallPlan, buildMrvCallRequest, buildMrvDeployNativeTxPlan, buildMrvDeployPayloadNativeTxPlan, buildMrvDeployPayloadPlan, buildMrvDeployPayloadRequest, buildMrvDeployPlan, buildMrvDeployRequest, buildNativeAgentCreateEscrowForwarderInput, buildNativeAgentCreateEscrowModuleCall, buildNativeAgentModuleCallEnvelope, buildNativeAgentRecordReputationForwarderInput, buildNativeAgentRecordReputationModuleCall, buildNativeAgentSetSpendingPolicyForwarderInput, buildNativeAgentSetSpendingPolicyModuleCall, buildNativeCallForwarderArtifact, buildNativeMarketModuleCallEnvelope, buildNativeNftBuyListingForwarderInput, buildNativeNftBuyListingModuleCall, buildNativeNftCancelListingForwarderInput, buildNativeNftCancelListingModuleCall, buildNativeNftCreateListingForwarderInput, buildNativeNftCreateListingModuleCall, buildNativeNftPlaceAuctionBidForwarderInput, buildNativeNftPlaceAuctionBidModuleCall, buildNativeNftSettleAuctionForwarderInput, buildNativeNftSettleAuctionModuleCall, buildNativeNftSweepExpiredListingsForwarderInput, buildNativeNftSweepExpiredListingsModuleCall, buildNativeSpotCancelOrderForwarderInput, buildNativeSpotCancelOrderModuleCall, buildNativeSpotCreateMarketForwarderInput, buildNativeSpotCreateMarketModuleCall, buildNativeSpotLimitOrderForwarderInput, buildNativeSpotLimitOrderModuleCall, buildNativeSpotSettleLimitOrderForwarderInput, buildNativeSpotSettleLimitOrderModuleCall, buildNativeSpotSettleRoutedLimitOrderForwarderInput, buildNativeSpotSettleRoutedLimitOrderModuleCall, buildPlaceLimitOrderViaPlan, buildPlaceSpotLimitOrderPlan, buildPlaceSpotMarketOrderExPlan, buildPlaceSpotMarketOrderPlan, buildRequestClusterJoinTxFields, buildVoteClusterAdmitTxFields, buildVoteSeatAdmitTxFields, buildWithdrawSeatApplicationTxFields, categoryRoot, checkMrvFeeDisplayConformance, checkMrvStructuredFeeConformance, checkNativeDevkitCompatibility, clampPriorityTip, clobAddressHex, clusterApyPercent, clusterJoinRequestExists, compareNativeDevVersions, composeClaimBoundMessage, computeNoEvmDacFinalityMessage, computeNoEvmLeaderFinalityMessage, computeNoEvmReceiptsRoot, computeNoEvmRoundFinalityMessage, computeNoEvmTargetReceiptHash, computeQuoteLiquidity, consumeNativeEvents, decodeActiveCharter, decodeClusterCharter, decodeClusterDiversity, decodeClusterFormedEvent, decodeClusterJoinRequest, decodeHasPubkeyReturn, decodeLookupPubkeyReturn, decodeNativeAgentStateResponse, decodeNativeMarketOrderBookDeltasResponse, decodeNativeReceiptResponse, decodeNoEvmReceiptTranscript, decodeOperatorFeeChargedEvent, decodeOperatorNetworkMetadata, decodeOracleEvent, decodePendingCharter, decodeProbeAuthority, decodeScoreServiceProbe, decodeSeatAdvertisedEvent, decodeSeatAppliedEvent, decodeSeatClosedEvent, decodeSeatFilledEvent, decodeTimeWindow, decodeTokenFactoryTokenId, decodeTxFeedResponse, decodeVrfOutput, delegationAddressHex, denyRootFor, deriveArchiveChallenge, deriveClobMarketId, deriveClusterAnchorAddress, deriveClusterJoinOperatorId, deriveFeedId, deriveMrvContractAddress, deriveMultisigAddress, deriveMultisigAddressBytes, deriveNativeSpotMarketId, deriveNativeSpotOrderId, deriveSeatApplicationKey, deriveTokenFactoryTokenId, destinationRoot, encodeAdvertiseSeatCalldata, encodeAnswerArchiveChallengeCalldata, encodeApplyForSeatCalldata, encodeAttestDkgReshareCalldata, encodeAttestServiceProbeCalldata, encodeBlockSelector, encodeBridgeChallengeCalldata, encodeBridgeClaimCalldata, encodeCancelClusterJoinCalldata, encodeCancelOrderCalldata, encodeCancelPendingChangeCalldata, encodeClaimCalldata, encodeClaimPolicyByAddressCalldata, encodeCloseSeatCalldata, encodeClusterCharter, encodeCommitArchiveRootCalldata, encodeCreateFixedSupplyMrc20Calldata, encodeCreateRequestCalldata, encodeCreateRequestCanonical, encodeCreateTokenCalldata, encodeDelegateCalldata, encodeDisableCalldata, encodeEnableCalldata, encodeExpireClusterJoinCalldata, encodeFormClusterCalldata, encodeFormClusterV2Calldata, encodeGetClusterJoinRequestCalldata, encodeGetPendingCharterCalldata, encodeGetProbeAuthorityCalldata, encodeHasPubkeyCalldata, encodeLockBridgeConfigCalldata, encodeLookupPubkeyCalldata, encodeMrvDeployPayload, encodeMultisigWitnessBody, encodeNameAcceptTransferCall, encodeNameProposeTransferCall, encodeNameRegisterCall, encodeNativeAgentAcceptEscrowCall, encodeNativeAgentApproveEscrowCall, encodeNativeAgentArbiterGetCall, encodeNativeAgentAttestationGetCall, encodeNativeAgentAvailabilityGetCall, encodeNativeAgentCancelEscrowCall, encodeNativeAgentCloseAvailabilityCall, encodeNativeAgentConsentGetCall, encodeNativeAgentCounterEscrowCall, encodeNativeAgentCreateEscrowCall, encodeNativeAgentDeactivateServiceCall, encodeNativeAgentDisputeEscrowCall, encodeNativeAgentEscrowGetCall, encodeNativeAgentGrantConsentCall, encodeNativeAgentIssueAttestationCall, encodeNativeAgentIssuerGetCall, encodeNativeAgentListServiceCall, encodeNativeAgentModuleForwarderInput, encodeNativeAgentOpenAvailabilityCall, encodeNativeAgentRecordPolicySpendCall, encodeNativeAgentRecordReputationCall, encodeNativeAgentRegisterArbiterCall, encodeNativeAgentRegisterIssuerCall, encodeNativeAgentReputationGetCall, encodeNativeAgentResolveEscrowCall, encodeNativeAgentRevokeAttestationCall, encodeNativeAgentRevokeConsentCall, encodeNativeAgentServiceGetCall, encodeNativeAgentSetAvailabilityCall, encodeNativeAgentSetSpendingPolicyCall, encodeNativeAgentSpendingPolicyGetCall, encodeNativeAgentStartEscrowCall, encodeNativeAgentSubmitEscrowCall, encodeNativeMarketModuleForwarderInput, encodeNativeNftBuyListingCall, encodeNativeNftCancelListingCall, encodeNativeNftCreateListingCall, encodeNativeNftPlaceAuctionBidCall, encodeNativeNftSettleAuctionCall, encodeNativeNftSweepExpiredListingsCall, encodeNativeSpotCancelOrderCall, encodeNativeSpotCreateMarketCall, encodeNativeSpotLimitOrderCall, encodeNativeSpotSettleLimitOrderCall, encodeNativeSpotSettleRoutedLimitOrderCall, encodePlaceLimitOrderCalldata, encodePlaceLimitOrderViaCalldata, encodePlaceMarketOrderCalldata, encodePlaceMarketOrderExCalldata, encodeRecoverOperatorNodeCalldata, encodeRedelegateCalldata, encodeRegisterPubkeyCalldata, encodeReportServiceProbeCalldata, encodeRequestClusterJoinCalldata, encodeSetAutoCompoundCalldata, encodeSetBridgeResumeCooldownCalldata, encodeSetBridgeRouteFinalityCalldata, encodeSetLotSizeCalldata, encodeSetMinNotionalCalldata, encodeSetOperatorDisplayCalldata, encodeSetPolicyCalldata, encodeSetPolicyClaimCalldata, encodeSetProbeAuthorityCalldata, encodeSetTickSizeCalldata, encodeSubmitBridgeProofCalldata, encodeSubmitPendingChangeCalldata, encodeTokenFactoryAllowanceCalldata, encodeTokenFactoryApproveCalldata, encodeTokenFactoryBalanceOfCalldata, encodeTokenFactoryBurnCalldata, encodeTokenFactoryDecreaseAllowanceCalldata, encodeTokenFactoryDestroyCalldata, encodeTokenFactoryIncreaseAllowanceCalldata, encodeTokenFactoryMetadataCalldata, encodeTokenFactoryMintCalldata, encodeTokenFactorySetPausedCalldata, encodeTokenFactoryTotalSupplyCalldata, encodeTokenFactoryTransferCalldata, encodeTokenFactoryTransferFromCalldata, encodeTokenFactoryTransferOwnershipCalldata, encodeUndelegateCalldata, encodeUpdateCharterCalldata, encodeVoteClusterAdmitCalldata, encodeVoteSeatAdmitCalldata, encodeVrfEvaluateCalldata, encodeWithdrawSeatApplicationCalldata, exportBridgeRouteCatalogueJson, fetchChainInfoLatest, fetchChainRegistryLatest, formClusterMessage, formClusterMessageHex, formClusterMessageV2, formClusterMessageV2Hex, formatLyth, formatLythoshi, formatNativeReceiptFeeDisplay, formatOraclePrice, getChainInfo, getNoEvmReceiptTrustPolicy, getP2pSeeds, getRpcEndpoints, hashToHex, hexToAddressBytes, isBridgeAdminLockedRevert, isBridgeCooldownZeroRevert, isBridgeFinalityZeroRevert, isBridgeResumeCooldownActiveRevert, isConcreteServiceProbeStatus, isNativeDecodedEvent, isNativeMarketOrderBookStreamPayload, isQuarantineError, isSinglePublicServiceProbeMask, isUnexpectedValueRevert, isValidNodeRegistryCapabilities, isValidPublicServiceProbeMask, mrvAddressToBech32, mrvBech32ToAddress, mrvCodeHashHex, mrvV1TransactionExtension, multisigBaseSighash, multisigMemberIndex, nameLengthModifierX10, nameRegistrationCost, nameRegistryAddressHex, nativeAgentStateFilterParams, nativeDevSchemaFieldNames, nativeDevUiStrings, nativeEventMatches, nativeEventsFilterParams, nativeEventsFromHistory, nativeEventsFromReceipt, nativeMarketEventFilter, nativeMarketEventsFromHistory, nativeMarketEventsFromReceipt, nativeMarketStateFilterParams, noEvmReceiptTrustPolicyFromChainInfo, nodeHostingClassFromByte, nodeHostingClassToByte, nodeRegistryAddressHex, normalizeAddressHex, normalizeBridgeRouteCatalogue, normalizePendingChangeKind, openSeatFromAdvertised, oracleAddressHex, oraclePriceToNumber, packTimeWindow, parseAddress, parseBridgeRouteCatalogueJson, parseChainRegistryToml, parseDkgResharePublicKeys, parseLythToLythoshi, parseNameCategory, parseNativeDecodedEvent, parseQuantity, parseQuantityBig, preflightClusterJoinRequest, previewRequestClusterJoin, previewVoteClusterAdmit, proofVerifier, protocolNonceForEpoch, proverMarketStateFromByte, pubkeyRegistryAddressHex, quoteOperatorFee, rankBridgeRoutes, rankMarketsByVolume, readClusterJoinRequest, requestSighash, requireTypedAddress, resolveClusterJoinExecutionFee, resolveExecutionFee, resolveMaxExecutionUnitPrice, resolveRegistryExecutionFee, resolveSeatExecutionFee, resolveStudioHostStatus, seatKindFromByte, seatKindToByte, seatStatusFromByte, selectBridgeTransferRoute, selectTrustedOperator, selectTrustedOperatorForNetwork, serviceMaskToBitIndex, serviceProbeStatusLabel, setDestinationRoot, slotArchiveChallengePass, slotClusterCharter, slotClusterCharterDelegator, slotClusterCharterMembers, slotClusterServiceScore, slotEpochChallengeSeed, slotProbeAuthority, slotScoreServiceProbe, sortMultisigMembers, spendingPolicyAddressHex, submitMrvCallNativeTx, submitMrvDeployNativeTx, submitMrvDeployPayloadNativeTx, submitRequestClusterJoin, submitSighash, submitVoteClusterAdmit, tokenFactoryAddressHex, transactionFeeExposure, typedBech32ToAddress, updateCharterMessage, updateCharterMessageHex, validateAddress, validateBridgeRouteCatalogue, validateMrvArtifactMetadata, validateMrvCallRequest, validateMrvDeployRequest, validateMultisigRoster, validateTokenFactoryFlags, verifyNoEvmArchiveProofSignatures, verifyNoEvmBlockFinalityEvidenceMultisig, verifyNoEvmBlockFinalityEvidenceThreshold, verifyNoEvmFinalityEvidenceMultisig, verifyNoEvmFinalityEvidenceThreshold, verifyNoEvmReceiptProof, verifyNoEvmReceiptProofTrust, verifyOperatorGenesis, version, vrfAddressHex };
9482
+ export { ADDRESS_HRP, ADDRESS_KIND_HRPS, API_STREAM_TOPICS, type AccountPolicy, type AccountProofResponse, type ActiveCharterView, type Address, type AddressActivityArchiveRedirect, type AddressActivityEntry, type AddressActivityEntryEnriched, type AddressActivityKind, type AddressActivityKindResponse, type AddressActivityKindRetention, AddressError, type AddressFlowResponse, type AddressKind, type AddressLabelRecord, type AddressProfileResponse, type AddressValidation, type AdvertiseSeatCalldataArgs, AgentActionError, type AgentReputationCategoryScope, type AgentReputationRecord, type AgentReputationResponse, type AnswerArchiveChallengeCalldataArgs, type ApiAddressActivityData, type ApiAddressActivityEntry, type ApiAddressActivityKind, type ApiAddressActivityKindData, type ApiAddressActivityKindSummary, type ApiBlockData, type ApiBlockHeader, type ApiBlockTransactionsData, type ApiCapabilitiesResponse, ApiClient, type ApiClientOptions, type ApiClusterData, type ApiClusterDirectoryEntry, type ApiClusterDirectoryPage, type ApiClusterMember, type ApiClusterStatus, type ApiClustersData, type ApiEnvelope, type ApiErrorEnvelope, type ApiHealthResponse, type ApiIndexerStatus, type ApiLatestAnchor, type ApiLogEntry, type ApiOperatorData, type ApiOperatorInfo, type ApiQueryValue, type ApiRuntimeProvenanceData, type ApiServiceProbeData, type ApiStreamTopic, type ApiStreamTopicMetadata, type ApiStreamTopicRetention, type ApiStreamsIndexResponse, type ApiTransactionData, type ApiTransactionNativeReceiptData, type ApiTransactionReceipt, type ApiTransactionReceiptData, type ApiTransactionView, type ApiUpgradePlanStatus, type ApiUpgradeStatus, type ApiUpgradeStatusData, type ApplyForSeatCalldataArgs, type ArchiveChallenge, type AssetPolicy, type AttestDkgReshareCalldataArgs, type AttestServiceProbeCalldataArgs, type AttestationWindow, BRIDGE_QUOTE_API_BLOCKED_REASON, BRIDGE_REVERT_TAGS, BRIDGE_SELECTORS, BRIDGE_SUBMIT_API_BLOCKED_REASON, BURN_ADDR, type BinaryProofEndpoint, type BlockHeader, type BlockSelector, type BlockTag, type BlsCertificateResponse, type BridgeAdminControl, type BridgeAnchorState, type BridgeBreakerState, type BridgeBytesInput, type BridgeCircuitBreakerFields, type BridgeCircuitBreakerState, type BridgeDrainCap, type BridgeDrainStatus, type BridgeHealthRecord, type BridgeHealthResponse, BridgePrecompileError, type BridgeQuoteSubmitReadiness, type BridgeRiskTier, type BridgeRouteAssessment, type BridgeRouteCandidate, type BridgeRouteCatalogue, BridgeRouteCatalogueError, type BridgeRouteCatalogueJsonOptions, type BridgeRouteCataloguePayload, type BridgeRouteCatalogueRoute, type BridgeRouteCatalogueValidation, type BridgeRouteDisclosure, type BridgeRouteSelection, type BridgeRoutesRequest, type BridgeRoutesResponse, type BridgeRoutesSource, type BridgeTransferIntent, type BridgeTransferRequest, type BridgeVerifierDisclosure, type BuildAdvertiseSeatTxFieldsArgs, type BuildApplyForSeatTxFieldsArgs, type BuildCloseSeatTxFieldsArgs, type BuildRequestClusterJoinTxFieldsArgs, type BuildVoteClusterAdmitTxFieldsArgs, type BuildVoteSeatAdmitTxFieldsArgs, type BuildWithdrawSeatApplicationTxFieldsArgs, CHAIN_REGISTRY, CHAIN_REGISTRY_RAW_BASE, CLOB_MARKET_ID_DOMAIN_TAG, CLOB_SELECTORS, CLUSTER_FORMED_EVENT_SIG, type CallRequest, type CancelClusterJoinCalldataArgs, type CancelPendingChangeCalldataArgs, type CancelSpotOrderArgs, type CapabilitiesResponse, type CapabilityDescriptor, type ChainInfo, type ChainRegistry, type ChainStatsResponse, type CheckpointRecord, type CirculatingSupplyResponse, type ClobMarketAssets, type ClobMarketRecord, type ClobMarketResponse, type ClobMarketSummary, type ClobMarketsResponse, type ClobOhlcResponse, type ClobOrderBookResponse, type ClobTrade, type ClobTradesResponse, type CloseSeatCalldataArgs, type ClusterAprResponse, type ClusterCharterArgs, type ClusterDelegatorsResponse, type ClusterDirectoryEntryResponse, type ClusterDirectoryPageResponse, type ClusterDiversity, type ClusterDiversityView, type ClusterEntityResponse, type ClusterFormedEvent, type ClusterJoinFeeOptions, type ClusterJoinReadClient, type ClusterJoinRequestStatus, type ClusterJoinRequestView, type ClusterJoinSubmitClient, type ClusterJoinSubmitResult, type ClusterJoinTxFee, type ClusterMemberResponse, type ClusterNameResponse, type ClusterResignationRow, type ClusterResignationsResponse, type ClusterStatusResponse, type CommitArchiveRootCalldataArgs, type CreateFixedSupplyMrc20CalldataArgs, type CreateRequestCanonicalArgs, type CreateTokenCalldataArgs, DEFAULT_CLUSTER_JOIN_EXECUTION_UNIT_LIMIT, DEFAULT_SEAT_EXECUTION_UNIT_LIMIT, DELEGATION_REVERT_TAGS, DELEGATION_SELECTORS, DIVERSITY_SCORE_MAX, type DagParent, type DagParentsResponse, type DagSyncStatus, type DecodeTxExtension, type DecodeTxLog, type DecodeTxPqAttestation, type DecodeTxResponse, type DelegationCapResponse, type DelegationHistoryRecord, DelegationPrecompileError, type DelegationRow, type DelegationsResponse, type DutyAbsence, EMPTY_ROOT, EXECUTION_UNIT_PRICE_SAFETY_MULTIPLIER, type EncodeNativeAgentAvailabilitySlotArgs, type EncodeNativeAgentCounterEscrowArgs, type EncodeNativeAgentCreateEscrowArgs, type EncodeNativeAgentDeactivateServiceArgs, type EncodeNativeAgentEscrowActorArgs, type EncodeNativeAgentGrantConsentArgs, type EncodeNativeAgentIssueAttestationArgs, type EncodeNativeAgentListServiceArgs, type EncodeNativeAgentRecordPolicySpendArgs, type EncodeNativeAgentRecordReputationArgs, type EncodeNativeAgentRegisterArbiterArgs, type EncodeNativeAgentRegisterIssuerArgs, type EncodeNativeAgentResolveEscrowArgs, type EncodeNativeAgentRevokeAttestationArgs, type EncodeNativeAgentRevokeConsentArgs, type EncodeNativeAgentSetAvailabilityArgs, type EncodeNativeAgentSetSpendingPolicyArgs, type EncodeNativeAgentStartEscrowArgs, type EncodeNativeAgentSubmitEscrowArgs, type EncodeNativeNftBuyListingArgs, type EncodeNativeNftCancelListingArgs, type EncodeNativeNftCreateListingArgs, type EncodeNativeNftPlaceAuctionBidArgs, type EncodeNativeNftSettleAuctionArgs, type EncodeNativeNftSweepExpiredListingsArgs, type EncodeNativeSpotCancelOrderArgs, type EncodeNativeSpotCreateMarketArgs, type EncodeNativeSpotLimitOrderArgs, type EncodeNativeSpotSettleLimitOrderArgs, type EncodeNativeSpotSettleRoutedLimitOrderArgs, type EntityRatchetResponse, type EthCallRequest, type EthSendTransactionRequest, type ExecutionUnitPriceResponse, type ExpireClusterJoinCalldataArgs, type ExplorerEndpoint, FEED_ID_DOMAIN_TAG, type FeeHistoryResponse, type FormClusterCalldataArgs, type FormClusterV2CalldataArgs, type GapRange, type GapRecord, type GapRecordsResponse, type GenesisVerdict, type GetClusterJoinRequestCalldataArgs, type Hash, type HealthSummary, type Hex, type IndexerStatus, type JailStatusWindow, type KeyRotationWindow, LYTHOSHI_PER_LYTH, LYTH_DECIMALS, type LatencyBands, type ListProofRequestsResponse, type LythFormatOptions, type LythUpgradePlanStatus, type LythUpgradeStatusResponse, MAX_MULTISIG_MEMBERS, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES, MAX_NATIVE_RECEIPT_EVENTS, MIN_EXECUTION_UNIT_PRICE_LYTHOSHI, MIN_MULTISIG_MEMBERS, ML_DSA_65_PUBLIC_KEY_LEN, ML_DSA_65_SIGNATURE_LEN, MONOLYTHIUM_NETWORKS, MONOLYTHIUM_TESTNET_CHAIN_ID, MONOLYTHIUM_TESTNET_NETWORK_NAME, MRV_DEPLOY_PAYLOAD_VERSION, MRV_FORMAT_VERSION, MRV_MAX_ABI_SYMBOLS, MRV_MAX_CODE_BYTES, MRV_MAX_DEBUG_BYTES, MRV_MAX_MEMORY_PAGES, MRV_MAX_STORAGE_NAMESPACE_BYTES, MRV_MEMORY_PAGE_BYTES, MRV_PROFILE_MONO_RV32IM_V1, MRV_STRUCTURED_FEE_FIELDS, MRV_TX_EXTENSION_KIND, MRV_TX_EXTENSION_V1, MULTISIG_ADDRESS_DERIVATION_DOMAIN$1 as MULTISIG_ADDRESS_DERIVATION_DOMAIN, MULTISIG_ADDRESS_DERIVATION_DOMAIN as MULTISIG_WITNESS_ADDRESS_DERIVATION_DOMAIN, MULTISIG_WITNESS_DOMAIN, MarketActionError, type MarketTransactionPlan, type MemberPubkeyInput, type MempoolSnapshot, type MeshDecodedTx, type MeshSignedTxResponse, type MeshTxIntent, type MeshUnsignedTxResponse, type MetricsRangeResponse, type MetricsRangeSample, type MetricsRangeSeries, type MetricsRangeStatus, type MonolythiumNetworkConfig, type MrcAccountRecord, type MrcAccountRequest, type MrcAccountResponse, type MrcHoldersRequest, type MrcHoldersResponse, type MrcMetadataRecord, type MrcMetadataResponse, type MrcPolicyRecord, type MrcPolicySpendRecord, type MrvAbiManifest, type MrvAbiParam, type MrvAbiSymbol, type MrvAbiSymbolKind, type MrvAbiType, type MrvAddressKind, type MrvArtifactMetadata, type MrvBuildMetadata, type MrvBytesLike, type MrvCallNativeTxOptions, type MrvCallNativeTxPlan, type MrvCallPlan, type MrvCallRequest, type MrvCallResponse, type MrvCallStatus, type MrvCallSubmission, type MrvCallSubmitOptions, type MrvDecimalLike, type MrvDeployNativeTxOptions, type MrvDeployNativeTxPlan, type MrvDeployPayload, type MrvDeployPayloadNativeTxOptions, type MrvDeployPayloadPlanOptions, type MrvDeployPayloadRequestOptions, type MrvDeployPayloadSubmission, type MrvDeployPayloadSubmitOptions, type MrvDeployPlan, type MrvDeployPlanOptions, type MrvDeployRequest, type MrvDeployResponse, type MrvDeploySubmission, type MrvDeploySubmitOptions, type MrvEventRecord, type MrvExecutionReceipt, type MrvFeeDisplayConformanceInput, type MrvFeeDisplayConformanceReport, type MrvMemoryLimits, type MrvMeterCounters, type MrvNativeFeePreview, type MrvNativeStateDelta, type MrvNativeTxFacade, type MrvRequestBuildOptions, type MrvResolvedSyscall, type MrvRevertPayload, type MrvRiscvProfile, type MrvStorageNamespace, type MrvStructuredFeeConformanceOptions, type MrvStructuredFeeConformanceReport, type MrvSubmissionResult, type MrvSyscallImport, type MrvTransactionExtension, type MrvTypedAddress, type MrvValidatedArtifactMetadata, MrvValidationError, MultisigError, type MultisigMember, type MultisigMemberSignature, type MultisigWitness, NAME_BASE_MULTIPLIER, NAME_FALLBACK_FEE_UNIT_LYTHOSHI, NAME_LABEL_MAX_LEN, NAME_LABEL_MIN_LEN, NAME_MAX_LEN, NAME_REGISTRY_SELECTORS, NATIVE_AGENT_MODULE_ADDRESS, NATIVE_AGENT_MODULE_ADDRESS_BYTES, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET, NATIVE_DEV_HOST_API_VERSION, NATIVE_DEV_IPC_PROTOCOL_VERSION, NATIVE_DEV_MANIFEST_SCHEMA_VERSION, NATIVE_LYTH_DECIMALS, NATIVE_MARKET_EVENT_FAMILY, NATIVE_MARKET_MODULE_ADDRESS, NATIVE_MARKET_MODULE_ADDRESS_BYTES, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC, NODE_REGISTRY_ARCHIVE_CHALLENGE_DOMAIN, NODE_REGISTRY_ARCHIVE_KIND_EPOCH_SEED, NODE_REGISTRY_ARCHIVE_NONCE_DOMAIN, NODE_REGISTRY_BLS_PUBKEY_BYTES, NODE_REGISTRY_CAPABILITIES, NODE_REGISTRY_CAPABILITY_MASK, NODE_REGISTRY_CHALLENGE_EPOCH_WINDOW, NODE_REGISTRY_CHARTER_COOLDOWN_EPOCHS, NODE_REGISTRY_CLUSTER_CHARTER_BYTES, NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS, NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES, NODE_REGISTRY_CONSENSUS_POP_BYTES, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN_V2, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES, NODE_REGISTRY_MAX_MERKLE_PROOF_DEPTH, NODE_REGISTRY_MERKLE_INNER_DOMAIN, NODE_REGISTRY_MERKLE_LEAF_DOMAIN, NODE_REGISTRY_MIN_ARCHIVE_LEAF_COUNT, NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI, NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES, NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID, NODE_REGISTRY_PUBLIC_SERVICE_MASK, NODE_REGISTRY_SEAT_KIND_ACTIVE, NODE_REGISTRY_SEAT_KIND_STANDBY, NODE_REGISTRY_SELECTORS, NODE_REGISTRY_SUBKIND_CHARTER_DELEGATOR_BPS, NODE_REGISTRY_SUBKIND_CHARTER_MEMBER_SHARES, NODE_REGISTRY_TAG_ARCHIVE_CHALLENGE, NODE_REGISTRY_TAG_CLUSTER_CHARTER, NODE_REGISTRY_TAG_CLUSTER_SEAT, NODE_REGISTRY_TAG_SERVICE_SCORE, NODE_REGISTRY_TAG_TREASURY, NODE_REGISTRY_UPDATE_CHARTER_MESSAGE_DOMAIN, NODE_REGISTRY_UPDATE_CHARTER_THRESHOLD, NO_EVM_ARCHIVE_PROOF_SCHEMA, NO_EVM_ARCHIVE_SIGNATURE_SCHEME, NO_EVM_FINALITY_EVIDENCE_SCHEMA, NO_EVM_FINALITY_EVIDENCE_SOURCE, NO_EVM_RECEIPTS_ROOT_DOMAIN, NO_EVM_RECEIPT_CODEC, NO_EVM_RECEIPT_PROOF_SCHEMA, NO_EVM_RECEIPT_PROOF_TYPE, NO_EVM_RECEIPT_ROOT_ALGORITHM, type NameCategory, type NameOfResponse, type NameRegistrationQuote, NameRegistryError, type NativeAgentAddressInput, type NativeAgentAddressKind, type NativeAgentArbiterStateRecord, type NativeAgentAttestationStateRecord, type NativeAgentAvailabilityStateRecord, type NativeAgentConsentStateRecord, type NativeAgentEscrowResolution, type NativeAgentEscrowStateRecord, type NativeAgentForwarderInput, type NativeAgentIssuerStateRecord, type NativeAgentModuleCallEnvelope, type NativeAgentModuleContractCall, type NativeAgentPolicySpendStateRecord, type NativeAgentPolicyStateRecord, type NativeAgentReputationReviewStateRecord, type NativeAgentReputationScores, type NativeAgentServiceStateRecord, type NativeAgentStateFilter, type NativeAgentStateFilterParamValue, type NativeAgentStateResponse, type NativeAgentStateResponseFilters, type NativeAgentStateSource, type NativeCallForwarderArtifact, type NativeCollectionRoyaltyStateRecord, type NativeDecodedEvent, type NativeDevApprovalKind, type NativeDevCommandName, type NativeDevContractPassport, type NativeDevHostApprovalResultMessage, type NativeDevHostCommandMessage, type NativeDevHostContextMessage, type NativeDevIpcMessage, type NativeDevMrcAllocation, type NativeDevMrcAssetKind, type NativeDevMrcTokenPlan, type NativeDevMrvDeployPlan, type NativeDevRiskLabel, type NativeDevRiskSeverity, type NativeDevSidecarApprovalRequestMessage, type NativeDevSidecarCommandResultMessage, type NativeDevSidecarProjectEventMessage, type NativeDevSidecarReadyMessage, type NativeDevVerificationBundle, type NativeDevWalletApprovalRequest, type NativeDevkitArchive, type NativeDevkitChannel, type NativeDevkitCompatibility, type NativeDevkitManifest, type NativeDevkitSidecarManifest, type NativeDevkitSidecarStatus, type NativeDevkitStatus, type NativeEventConsumer, type NativeEventFilter, type NativeEventProjection, type NativeEventsFilter, type NativeEventsResponse, type NativeEventsResponseFilters, type NativeEventsSource, type NativeMarketAddressInput, type NativeMarketAddressKind, type NativeMarketForwarderInput, type NativeMarketModuleCallEnvelope, type NativeMarketModuleContractCall, type NativeMarketOrderBookDelta, type NativeMarketOrderBookDeltasRequest, type NativeMarketOrderBookDeltasResponse, type NativeMarketOrderBookDeltasResponseFilters, type NativeMarketOrderBookDeltasSource, type NativeMarketOrderBookStreamAction, type NativeMarketOrderBookStreamPayload, type NativeMarketStateFilter, type NativeMarketStateFilterParamValue, type NativeMarketStateResponse, type NativeMarketStateResponseFilters, type NativeMarketStateSource, type NativeModuleForwarderDescriptor, type NativeMrcPolicyProjection, type NativeNftAssetStandard, type NativeNftListingKind, type NativeNftListingStateRecord, type NativeReceiptCounters, type NativeReceiptEvent, type NativeReceiptFee, type NativeReceiptFeeDisplay, type NativeReceiptResponse, type NativeReceiptSource, type NativeSpotMarketStateRecord, type NativeSpotOrderStateRecord, type NetworkClientOptions, type NetworkSlug, type NoEvmArchiveCoveringSnapshot, type NoEvmArchiveProof, type NoEvmArchiveSignatureVerification, type NoEvmArchiveSignatureVerificationIssue, type NoEvmArchiveSignatureVerificationIssueCode, type NoEvmArchiveTrustedSigner, type NoEvmBlockBlsFinalityVerification, type NoEvmBlockRoundFinalityVerification, type NoEvmBlsFinalityVerification, type NoEvmFinalityBlockReference, type NoEvmFinalityCertificate, type NoEvmFinalityEvidence, type NoEvmReceiptFinalityTrustPolicy, type NoEvmReceiptProof, NoEvmReceiptProofError, type NoEvmReceiptProofErrorCode, type NoEvmReceiptProofVerification, type NoEvmReceiptTrustIssue, type NoEvmReceiptTrustIssueCode, type NoEvmReceiptTrustPolicy, type NoEvmReceiptTrustVerification, type NoEvmReceiptTrustedBlsSigner, type NoEvmReceiptTrustedSigner, type NoEvmRoundFinalityVerification, type NodeHostingClass, NodeRegistryError, type NonInclusionProofEnvelope, OPERATOR_ROUTER_ADDRESS, OPERATOR_ROUTER_EVENT_SIGS, OPERATOR_ROUTER_SELECTORS, OPERATOR_ROUTER_SIGS, ORACLE_EVENT_SIGS, type OpenSeatView, type OperatorAuthorityResponse, type OperatorCapabilitiesResponse, type OperatorFeeChargedEvent, type OperatorFeeConfig, type OperatorFeeQuote, type OperatorInfoResponse, type OperatorNetworkMetadata, type OperatorNetworkMetadataView, type OperatorOnboardingPreview, type OperatorRiskResponse, type OperatorRouterConfig, type OperatorSigningActivityResponse, type OperatorSigningEntry, type OperatorSurfaceCapability, type OperatorSurfaceStatus, OperatorTrustError, type OperatorTrustReason, type OracleEvent, OracleEventError, type OracleFeedConfig, type OracleLatestPrice, type OracleSignerRow, type OracleSignersResponse, type OracleWriters, type P2pSeed, PENDING_CHANGE_KIND_CODES, PRECOMPILE_ADDRESSES, PROOF_KIND_BINARY, PROTOCOL_MAX_OPERATOR_FEE_BPS, PROVER_MARKET_ADDRESS, PROVER_MARKET_BID_DOMAIN, PROVER_MARKET_EVENT_SIGS, PROVER_MARKET_REQUEST_DOMAIN, PROVER_MARKET_SELECTORS, PROVER_MARKET_SUBMIT_DOMAIN, PROVER_SLASH_REASON_BAD_PROOF, PROVER_SLASH_REASON_NON_DELIVERY, PUBKEY_REGISTRY_ML_DSA_65_PUBLIC_KEY_LEN, PUBKEY_REGISTRY_SELECTORS, type ParsedName, type PeerSummary, type PeerSummaryAggregate, type PendingChangeKind, type PendingCharterView, type PendingRewardsResponse, type PendingRewardsRow, type PendingTxSummary, type PlaceLimitOrderViaArgs, type PlaceLimitOrderViaPlan, type PlaceSpotLimitOrderArgs, type PlaceSpotMarketOrderArgs, type PlaceSpotMarketOrderExArgs, type PrecompileAddress, type PrecompileCatalogueResponse, type PrecompileDescriptor, type PrecompileName, type ProofEnvelope, type ProofRequestRow, type ProofRequestView, ProofVerifier, ProofVerifyError, type ProofVerifyErrorCode, type ProverBidView, type ProverBidsResponse, ProverMarketError, type ProverMarketState, type ProverMarketStatusResponse, type PubkeyLookup, PubkeyRegistryError, QUARANTINED_RPC_CODE, type Quantity, type QuoteLiquidity, REGISTRY_DEFAULT_EXECUTION_UNIT_LIMIT, RESERVED_ADDRESS_HRPS, type RankedBridgeRoute, type ReceiptProofTrustArchivePolicy, type ReceiptProofTrustArchiveSigner, type ReceiptProofTrustFinalityPolicy, type ReceiptProofTrustFinalitySigner, type ReceiptProofTrustPolicy, type RedemptionQueueResponse, type RedemptionQueueTicket, type RegistryRecord, type ReportServiceProbeCalldataArgs, type ReportServiceProbeRequest, type ReportServiceProbeResponse, type RequestClusterJoinCalldataArgs, type ResolveNameResponse, type ResolvedExecutionFee, type RichListHolder, type RichListResponse, type RoundCertificateResponse, type RoundInfo, RpcClient, type RpcClientOptions, type RpcEndpoint, type RuntimeBuildProvenance, type RuntimeProvenanceResponse, type RuntimeUpgradeStatus, SEAT_ADVERTISED_EVENT_SIG, SEAT_APPLIED_EVENT_SIG, SEAT_CLOSED_EVENT_SIG, SEAT_FILLED_EVENT_SIG, SEAT_KINDS, SEAT_STATUS_CODES, SERVES_GPU_PROVE, SERVICE_PROBE_STATUS, SET_POLICY_CLAIM_DOMAIN_TAG, SPENDING_POLICY_SELECTORS, SdkError, type SearchHit, type SearchResponse, type SeatAdvertisedEvent, type SeatApplicationView, type SeatAppliedEvent, type SeatClosedEvent, type SeatFeeOptions, type SeatFilledEvent, type SeatKind, type SeatStatus, type SeatTxFee, type ServiceProbeResponse, type ServiceProbeStatusLabel, type SetOperatorDisplayCalldataArgs, type SigningEntryStatus, type SpendingPolicyArgs, SpendingPolicyError, type SpendingPolicyTimeWindow, type SpendingPolicyView, type SpotLimitOrderSide, type SpotMarketOrderMode, type StorageProofBatch, type StudioHostState, type StudioHostStatus, type SubmitPendingChangeCalldataArgs, type SubmitRequestClusterJoinArgs, type SubmitVoteClusterAdmitArgs, type SwapIntentStatus, type SyncStatus, TESTNET_69420, TOKEN_FACTORY_CREATE_DEPOSIT_LYTHOSHI, TOKEN_FACTORY_FLAGS, TOKEN_FACTORY_KNOWN_FLAG_MASK, TOKEN_FACTORY_MAX_CREATOR_FEE_BPS, TOKEN_FACTORY_MAX_DECIMALS, TOKEN_FACTORY_NAME_MAX_BYTES, TOKEN_FACTORY_SELECTORS, TOKEN_FACTORY_SIGS, TOKEN_FACTORY_SYMBOL_MAX_BYTES, TOKEN_FACTORY_TOKEN_ID_DOMAIN_TAG, TRANSFER_DEFAULT_EXECUTION_UNIT_LIMIT, TX_EXTENSION_KIND_MULTISIG, TX_EXTENSION_MULTISIG_V1, type TokenBalanceMrcIdentity, type TokenBalanceRecord, type TokenBalanceWithMetadata, type TokenFactoryAddressInput, type TokenFactoryBytes32Input, TokenFactoryError, type TokenFactoryUintInput, type TotalBurnedResponse, type TpmAttestationResponse, type TransactionFeeExposure, type TransactionReceipt, type TransactionView, type TxConfirmations, type TxFeedReceipt, type TxFeedResponse, type TxFeedTransaction, type TxStatusFoundResponse, type TxStatusNotFoundResponse, type TxStatusResponse, type TypedAddress, type TypedNativeReceiptEvent, type UpcomingDutiesResponse, type UpcomingDutyMap, type UpdateCharterCalldataArgs, type UserAddressInput, V1_BRIDGE_ALLOWED_FEE_TOKEN, V1_BRIDGE_ALLOWED_PROTOCOL, VRF_DOMAIN_TAG_MAX_BYTES, VRF_HEIGHT_NOT_FINALIZED_REVERT, VRF_OUTPUT_BYTES, type VertexAtRound, type VerticesAtRoundResponse, type VoteClusterAdmitCalldataArgs, type VoteSeatAdmitCalldataArgs, VrfCallError, type VrfDomainTagInput, type WithdrawSeatApplicationCalldataArgs, addressBytesToHex, addressToBech32, addressToTypedBech32, allowRootFor, apiEndpointFromRpcEndpoint, archiveMerkleInnerHash, archiveMerkleLeafHash, asBinaryProofEnvelope, assembleMultisigSigned, assembleMultisigWitness, assertMrvCallNativeSubmissionPlan, assertMrvDeployNativeSubmissionPlan, assertMrvFeeDisplayConformance, assertMrvStructuredFeeConformance, assertNativeDevMrcTokenPlan, assertNativeDevMrvDeployPlan, assertNativeDevWalletApprovalRequest, assertNativeMarketOrderBookStreamPayload, assessBridgeRoute, bech32ToAddress, bech32ToAddressBytes, bidSighash, bridgeAddressHex, bridgeDrainRemaining, bridgeQuoteSubmitReadiness, bridgeRoutesReadiness, bridgeTransferCandidates, buildAdvertiseSeatTxFields, buildApplyForSeatTxFields, buildBridgeRouteCatalogue, buildCancelSpotOrderPlan, buildCloseSeatTxFields, buildMrvCallNativeTxPlan, buildMrvCallPlan, buildMrvCallRequest, buildMrvDeployNativeTxPlan, buildMrvDeployPayloadNativeTxPlan, buildMrvDeployPayloadPlan, buildMrvDeployPayloadRequest, buildMrvDeployPlan, buildMrvDeployRequest, buildNativeAgentCreateEscrowForwarderInput, buildNativeAgentCreateEscrowModuleCall, buildNativeAgentModuleCallEnvelope, buildNativeAgentRecordReputationForwarderInput, buildNativeAgentRecordReputationModuleCall, buildNativeAgentSetSpendingPolicyForwarderInput, buildNativeAgentSetSpendingPolicyModuleCall, buildNativeCallForwarderArtifact, buildNativeMarketModuleCallEnvelope, buildNativeNftBuyListingForwarderInput, buildNativeNftBuyListingModuleCall, buildNativeNftCancelListingForwarderInput, buildNativeNftCancelListingModuleCall, buildNativeNftCreateListingForwarderInput, buildNativeNftCreateListingModuleCall, buildNativeNftPlaceAuctionBidForwarderInput, buildNativeNftPlaceAuctionBidModuleCall, buildNativeNftSettleAuctionForwarderInput, buildNativeNftSettleAuctionModuleCall, buildNativeNftSweepExpiredListingsForwarderInput, buildNativeNftSweepExpiredListingsModuleCall, buildNativeSpotCancelOrderForwarderInput, buildNativeSpotCancelOrderModuleCall, buildNativeSpotCreateMarketForwarderInput, buildNativeSpotCreateMarketModuleCall, buildNativeSpotLimitOrderForwarderInput, buildNativeSpotLimitOrderModuleCall, buildNativeSpotSettleLimitOrderForwarderInput, buildNativeSpotSettleLimitOrderModuleCall, buildNativeSpotSettleRoutedLimitOrderForwarderInput, buildNativeSpotSettleRoutedLimitOrderModuleCall, buildPlaceLimitOrderViaPlan, buildPlaceSpotLimitOrderPlan, buildPlaceSpotMarketOrderExPlan, buildPlaceSpotMarketOrderPlan, buildRequestClusterJoinTxFields, buildVoteClusterAdmitTxFields, buildVoteSeatAdmitTxFields, buildWithdrawSeatApplicationTxFields, categoryRoot, checkMrvFeeDisplayConformance, checkMrvStructuredFeeConformance, checkNativeDevkitCompatibility, clampPriorityTip, clobAddressHex, clusterApyPercent, clusterJoinRequestExists, compareNativeDevVersions, composeClaimBoundMessage, computeNoEvmDacFinalityMessage, computeNoEvmLeaderFinalityMessage, computeNoEvmReceiptsRoot, computeNoEvmRoundFinalityMessage, computeNoEvmTargetReceiptHash, computeQuoteLiquidity, consumeNativeEvents, decodeActiveCharter, decodeClusterCharter, decodeClusterDiversity, decodeClusterFormedEvent, decodeClusterJoinRequest, decodeHasPubkeyReturn, decodeLookupPubkeyReturn, decodeNativeAgentStateResponse, decodeNativeMarketOrderBookDeltasResponse, decodeNativeReceiptResponse, decodeNoEvmReceiptTranscript, decodeOperatorFeeChargedEvent, decodeOperatorNetworkMetadata, decodeOracleEvent, decodePendingCharter, decodeProbeAuthority, decodeScoreServiceProbe, decodeSeatAdvertisedEvent, decodeSeatAppliedEvent, decodeSeatClosedEvent, decodeSeatFilledEvent, decodeTimeWindow, decodeTokenFactoryTokenId, decodeTxFeedResponse, decodeVrfOutput, delegationAddressHex, denyRootFor, deriveArchiveChallenge, deriveClobMarketId, deriveClusterAnchorAddress, deriveClusterJoinOperatorId, deriveFeedId, deriveMrvContractAddress, deriveMultisigAddress, deriveMultisigAddressBytes, deriveNativeSpotMarketId, deriveNativeSpotOrderId, deriveSeatApplicationKey, deriveTokenFactoryTokenId, destinationRoot, encodeAdvertiseSeatCalldata, encodeAnswerArchiveChallengeCalldata, encodeApplyForSeatCalldata, encodeAttestDkgReshareCalldata, encodeAttestServiceProbeCalldata, encodeBlockSelector, encodeBridgeChallengeCalldata, encodeBridgeClaimCalldata, encodeCancelClusterJoinCalldata, encodeCancelOrderCalldata, encodeCancelPendingChangeCalldata, encodeClaimCalldata, encodeClaimPolicyByAddressCalldata, encodeCloseSeatCalldata, encodeClusterCharter, encodeCommitArchiveRootCalldata, encodeCreateFixedSupplyMrc20Calldata, encodeCreateRequestCalldata, encodeCreateRequestCanonical, encodeCreateTokenCalldata, encodeDelegateCalldata, encodeDisableCalldata, encodeEnableCalldata, encodeExpireClusterJoinCalldata, encodeFormClusterCalldata, encodeFormClusterV2Calldata, encodeGetClusterJoinRequestCalldata, encodeGetPendingCharterCalldata, encodeGetProbeAuthorityCalldata, encodeHasPubkeyCalldata, encodeLockBridgeConfigCalldata, encodeLookupPubkeyCalldata, encodeMrvDeployPayload, encodeMultisigWitnessBody, encodeNameAcceptTransferCall, encodeNameProposeTransferCall, encodeNameRegisterCall, encodeNativeAgentAcceptEscrowCall, encodeNativeAgentApproveEscrowCall, encodeNativeAgentArbiterGetCall, encodeNativeAgentAttestationGetCall, encodeNativeAgentAvailabilityGetCall, encodeNativeAgentCancelEscrowCall, encodeNativeAgentCloseAvailabilityCall, encodeNativeAgentConsentGetCall, encodeNativeAgentCounterEscrowCall, encodeNativeAgentCreateEscrowCall, encodeNativeAgentDeactivateServiceCall, encodeNativeAgentDisputeEscrowCall, encodeNativeAgentEscrowGetCall, encodeNativeAgentGrantConsentCall, encodeNativeAgentIssueAttestationCall, encodeNativeAgentIssuerGetCall, encodeNativeAgentListServiceCall, encodeNativeAgentModuleForwarderInput, encodeNativeAgentOpenAvailabilityCall, encodeNativeAgentRecordPolicySpendCall, encodeNativeAgentRecordReputationCall, encodeNativeAgentRegisterArbiterCall, encodeNativeAgentRegisterIssuerCall, encodeNativeAgentReputationGetCall, encodeNativeAgentResolveEscrowCall, encodeNativeAgentRevokeAttestationCall, encodeNativeAgentRevokeConsentCall, encodeNativeAgentServiceGetCall, encodeNativeAgentSetAvailabilityCall, encodeNativeAgentSetSpendingPolicyCall, encodeNativeAgentSpendingPolicyGetCall, encodeNativeAgentStartEscrowCall, encodeNativeAgentSubmitEscrowCall, encodeNativeMarketModuleForwarderInput, encodeNativeNftBuyListingCall, encodeNativeNftCancelListingCall, encodeNativeNftCreateListingCall, encodeNativeNftPlaceAuctionBidCall, encodeNativeNftSettleAuctionCall, encodeNativeNftSweepExpiredListingsCall, encodeNativeSpotCancelOrderCall, encodeNativeSpotCreateMarketCall, encodeNativeSpotLimitOrderCall, encodeNativeSpotSettleLimitOrderCall, encodeNativeSpotSettleRoutedLimitOrderCall, encodePlaceLimitOrderCalldata, encodePlaceLimitOrderViaCalldata, encodePlaceMarketOrderCalldata, encodePlaceMarketOrderExCalldata, encodeRecoverOperatorNodeCalldata, encodeRedelegateCalldata, encodeRegisterPubkeyCalldata, encodeReportServiceProbeCalldata, encodeRequestClusterJoinCalldata, encodeSetAutoCompoundCalldata, encodeSetBridgeResumeCooldownCalldata, encodeSetBridgeRouteFinalityCalldata, encodeSetLotSizeCalldata, encodeSetMinNotionalCalldata, encodeSetOperatorDisplayCalldata, encodeSetPolicyCalldata, encodeSetPolicyClaimCalldata, encodeSetProbeAuthorityCalldata, encodeSetTickSizeCalldata, encodeSubmitBridgeProofCalldata, encodeSubmitPendingChangeCalldata, encodeTokenFactoryAllowanceCalldata, encodeTokenFactoryApproveCalldata, encodeTokenFactoryBalanceOfCalldata, encodeTokenFactoryBurnCalldata, encodeTokenFactoryDecreaseAllowanceCalldata, encodeTokenFactoryDestroyCalldata, encodeTokenFactoryIncreaseAllowanceCalldata, encodeTokenFactoryMetadataCalldata, encodeTokenFactoryMintCalldata, encodeTokenFactorySetPausedCalldata, encodeTokenFactoryTotalSupplyCalldata, encodeTokenFactoryTransferCalldata, encodeTokenFactoryTransferFromCalldata, encodeTokenFactoryTransferOwnershipCalldata, encodeUndelegateCalldata, encodeUpdateCharterCalldata, encodeVoteClusterAdmitCalldata, encodeVoteSeatAdmitCalldata, encodeVrfEvaluateCalldata, encodeWithdrawSeatApplicationCalldata, exportBridgeRouteCatalogueJson, fetchChainInfoLatest, fetchChainRegistryLatest, formClusterMessage, formClusterMessageHex, formClusterMessageV2, formClusterMessageV2Hex, formatLyth, formatLythoshi, formatNativeReceiptFeeDisplay, formatOraclePrice, getChainInfo, getNoEvmReceiptTrustPolicy, getP2pSeeds, getRpcEndpoints, hashToHex, hexToAddressBytes, isBridgeAdminLockedRevert, isBridgeCooldownZeroRevert, isBridgeFinalityZeroRevert, isBridgeResumeCooldownActiveRevert, isConcreteServiceProbeStatus, isNativeDecodedEvent, isNativeMarketOrderBookStreamPayload, isQuarantineError, isSinglePublicServiceProbeMask, isUnexpectedValueRevert, isValidNodeRegistryCapabilities, isValidPublicServiceProbeMask, mrvAddressToBech32, mrvBech32ToAddress, mrvCodeHashHex, mrvV1TransactionExtension, multisigBaseSighash, multisigMemberIndex, nameLengthModifierX10, nameRegistrationCost, nameRegistryAddressHex, nativeAgentStateFilterParams, nativeDevSchemaFieldNames, nativeDevUiStrings, nativeEventMatches, nativeEventsFilterParams, nativeEventsFromHistory, nativeEventsFromReceipt, nativeMarketEventFilter, nativeMarketEventsFromHistory, nativeMarketEventsFromReceipt, nativeMarketStateFilterParams, noEvmReceiptTrustPolicyFromChainInfo, nodeHostingClassFromByte, nodeHostingClassToByte, nodeRegistryAddressHex, normalizeAddressHex, normalizeBridgeRouteCatalogue, normalizePendingChangeKind, openSeatFromAdvertised, oracleAddressHex, oraclePriceToNumber, packTimeWindow, parseAddress, parseBridgeRouteCatalogueJson, parseChainRegistryToml, parseDkgResharePublicKeys, parseLythToLythoshi, parseNameCategory, parseNativeDecodedEvent, parseQuantity, parseQuantityBig, preflightClusterJoinRequest, previewRequestClusterJoin, previewVoteClusterAdmit, proofVerifier, protocolNonceForEpoch, proverMarketStateFromByte, pubkeyRegistryAddressHex, quoteOperatorFee, rankBridgeRoutes, rankMarketsByVolume, readClusterJoinRequest, requestSighash, requireTypedAddress, resolveClusterJoinExecutionFee, resolveExecutionFee, resolveMaxExecutionUnitPrice, resolveRegistryExecutionFee, resolveSeatExecutionFee, resolveStudioHostStatus, seatKindFromByte, seatKindToByte, seatStatusFromByte, selectBridgeTransferRoute, selectTrustedOperator, selectTrustedOperatorForNetwork, serviceMaskToBitIndex, serviceProbeStatusLabel, setDestinationRoot, slotArchiveChallengePass, slotClusterCharter, slotClusterCharterDelegator, slotClusterCharterMembers, slotClusterServiceScore, slotEpochChallengeSeed, slotProbeAuthority, slotScoreServiceProbe, sortMultisigMembers, spendingPolicyAddressHex, submitMrvCallNativeTx, submitMrvDeployNativeTx, submitMrvDeployPayloadNativeTx, submitRequestClusterJoin, submitSighash, submitVoteClusterAdmit, tokenFactoryAddressHex, transactionFeeExposure, typedBech32ToAddress, updateCharterMessage, updateCharterMessageHex, validateAddress, validateBridgeRouteCatalogue, validateMrvArtifactMetadata, validateMrvCallRequest, validateMrvDeployRequest, validateMultisigRoster, validateTokenFactoryFlags, verifyNoEvmArchiveProofSignatures, verifyNoEvmBlockFinalityEvidenceMultisig, verifyNoEvmBlockFinalityEvidenceThreshold, verifyNoEvmFinalityEvidenceMultisig, verifyNoEvmFinalityEvidenceThreshold, verifyNoEvmReceiptProof, verifyNoEvmReceiptProofTrust, verifyOperatorGenesis, version, vrfAddressHex };
package/dist/index.d.ts CHANGED
@@ -3106,8 +3106,8 @@ declare const NODE_REGISTRY_SELECTORS: {
3106
3106
  readonly advertiseSeat: string;
3107
3107
  /**
3108
3108
  * `applyForSeat(uint32,uint32,bytes)` returns `bytes32 appKey` (L6).
3109
- * Payable — the native `value` carries the refundable application
3110
- * escrow ({@link NODE_REGISTRY_SEAT_APPLICATION_ESCROW_LYTHOSHI}).
3109
+ * Payable — the native `value` escrows the full operator self-bond at
3110
+ * apply ({@link NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI}).
3111
3111
  */
3112
3112
  readonly applyForSeat: string;
3113
3113
  /**
@@ -3927,22 +3927,14 @@ declare function deriveClusterAnchorAddress(roster: readonly (string | Uint8Arra
3927
3927
  * the same tag byte under a different namespace.
3928
3928
  */
3929
3929
  declare const NODE_REGISTRY_TAG_CLUSTER_SEAT = 50;
3930
- /**
3931
- * Refundable application escrow charged by `applyForSeat`, in lythoshi
3932
- * (`100 LYTH`). Mirrors mono-core
3933
- * `cluster_seat::APPLICATION_ESCROW_LYTHOSHI`. This is an anti-spam
3934
- * escrow only — it is refunded on withdraw/reject and is DISTINCT from
3935
- * the {@link NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI} self-bond, which is
3936
- * bound only when the seat is filled (on admit), NOT at apply time.
3937
- */
3938
- declare const NODE_REGISTRY_SEAT_APPLICATION_ESCROW_LYTHOSHI: bigint;
3939
3930
  /**
3940
3931
  * Operator self-bond floor in lythoshi (`5,000 LYTH`). Mirrors mono-core
3941
3932
  * `bond::MIN_SELF_BOND_LYTHOSHI` — the constitutional floor (raise-only;
3942
- * lowering it is a hard fork). It is bound into the operator's bond at
3943
- * seat-fill (admit), not escrowed at apply. NOTE: the 50,000 / 75,000
3944
- * figures in the legacy design surfaces are stale fiction the SDK
3945
- * carries the on-chain floor only.
3933
+ * lowering it is a hard fork). `applyForSeat` escrows the full self-bond
3934
+ * up front `max(this floor, seat.minBond)` and retains it into the
3935
+ * operator's bond on admit. NOTE: the 50,000 / 75,000 figures in the
3936
+ * legacy design surfaces are stale fiction — the SDK carries the on-chain
3937
+ * floor only.
3946
3938
  */
3947
3939
  declare const NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI: bigint;
3948
3940
  /** Active-vacancy seat kind (`kind=0`). Mirrors `cluster_seat::SEAT_KIND_ACTIVE`. */
@@ -4107,7 +4099,7 @@ interface SeatApplicationView {
4107
4099
  appKey: string;
4108
4100
  /** Application owner address (`0x` 20 bytes). */
4109
4101
  owner: string;
4110
- /** Escrow currently held in lythoshi. */
4102
+ /** Full self-bond escrowed at apply, in lythoshi. */
4111
4103
  bondEscrowedLythoshi: bigint;
4112
4104
  /** Admit votes recorded so far. */
4113
4105
  voteCount: number;
@@ -4145,8 +4137,8 @@ interface SeatAppliedEvent {
4145
4137
  operatorId: string;
4146
4138
  /** Application owner address (`0x` 20 bytes). */
4147
4139
  owner: string;
4148
- /** Escrow held in lythoshi. */
4149
- escrowLythoshi: bigint;
4140
+ /** Full self-bond escrowed at apply, in lythoshi. */
4141
+ bondLythoshi: bigint;
4150
4142
  }
4151
4143
  /** Decoded `SeatFilled` event (L6). Mirrors `events::SEAT_FILLED`. */
4152
4144
  interface SeatFilledEvent {
@@ -4178,7 +4170,7 @@ interface SeatClosedEvent {
4178
4170
  declare function decodeSeatAdvertisedEvent(topics: readonly (string | Uint8Array | readonly number[])[], data: string | Uint8Array | readonly number[]): SeatAdvertisedEvent;
4179
4171
  /**
4180
4172
  * Decode a `SeatApplied` log (L6). Indexed topics: `clusterId`, `seatId`,
4181
- * `operatorId`. Data: `(address owner, uint128 escrow)` — 2 words.
4173
+ * `operatorId`. Data: `(address owner, uint128 bond)` — 2 words.
4182
4174
  */
4183
4175
  declare function decodeSeatAppliedEvent(topics: readonly (string | Uint8Array | readonly number[])[], data: string | Uint8Array | readonly number[]): SeatAppliedEvent;
4184
4176
  /**
@@ -8797,10 +8789,12 @@ declare function submitVoteClusterAdmit(args: SubmitVoteClusterAdmitArgs): Promi
8797
8789
  * signed-consent path — these builders add discovery + intent, no new
8798
8790
  * consensus surface.
8799
8791
  *
8800
- * The `applyForSeat` builder defaults the native value to the refundable
8801
- * application escrow ({@link NODE_REGISTRY_SEAT_APPLICATION_ESCROW_LYTHOSHI},
8802
- * 100 LYTH). The 5,000 LYTH self-bond is NOT posted here it is bound
8803
- * only when the seat is filled on admit.
8792
+ * The `applyForSeat` builder defaults the native value to the full
8793
+ * operator self-bond floor ({@link NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI},
8794
+ * 5,000 LYTH): the on-chain primitive escrows the full self-bond at apply
8795
+ * `max(min_self_bond_floor, seat.minBond)` and rejects an under-funded
8796
+ * applicant up front. When a targeted seat advertises a `minBond` above
8797
+ * the floor, the caller must override the value with that larger figure.
8804
8798
  */
8805
8799
 
8806
8800
  /** Default execution-unit limit for an open-seat marketplace transaction. */
@@ -8826,11 +8820,14 @@ interface BuildApplyForSeatTxFieldsArgs extends ApplyForSeatCalldataArgs {
8826
8820
  nonce: bigint | number | string;
8827
8821
  fee: SeatTxFee;
8828
8822
  /**
8829
- * Native escrow to attach, in lythoshi. Defaults to
8830
- * {@link NODE_REGISTRY_SEAT_APPLICATION_ESCROW_LYTHOSHI} (100 LYTH,
8831
- * refundable). The 5,000 LYTH self-bond is bound at admit, not here.
8823
+ * Self-bond to escrow at apply, in lythoshi. Defaults to the operator
8824
+ * self-bond floor {@link NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI}
8825
+ * (5,000 LYTH). The on-chain primitive requires
8826
+ * `max(min_self_bond_floor, seat.minBond)`, so when the targeted seat
8827
+ * advertises a `minBondLythoshi` above the floor the caller MUST pass
8828
+ * that larger amount here or the application reverts (`SeatBondTooLow`).
8832
8829
  */
8833
- escrowLythoshi?: bigint | number | string;
8830
+ selfBondLythoshi?: bigint | number | string;
8834
8831
  }
8835
8832
  interface BuildVoteSeatAdmitTxFieldsArgs extends VoteSeatAdmitCalldataArgs {
8836
8833
  chainId: bigint | number | string;
@@ -8859,9 +8856,12 @@ declare function resolveSeatExecutionFee(quote: ExecutionUnitPriceResponse, opti
8859
8856
  declare function buildAdvertiseSeatTxFields(args: BuildAdvertiseSeatTxFieldsArgs): NativeEvmTxFields;
8860
8857
  /**
8861
8858
  * Build `applyForSeat` transaction fields (operator; payable). The native
8862
- * `value` carries the refundable application escrow defaulting to
8863
- * {@link NODE_REGISTRY_SEAT_APPLICATION_ESCROW_LYTHOSHI} unless an
8864
- * explicit `escrowLythoshi` is supplied.
8859
+ * `value` escrows the operator self-bond at apply, defaulting to the
8860
+ * self-bond floor {@link NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI}
8861
+ * (5,000 LYTH). The on-chain primitive requires
8862
+ * `max(min_self_bond_floor, seat.minBond)`; when the targeted seat's
8863
+ * `minBondLythoshi` exceeds the floor, pass that larger figure via
8864
+ * `selfBondLythoshi` or the application reverts (`SeatBondTooLow`).
8865
8865
  */
8866
8866
  declare function buildApplyForSeatTxFields(args: BuildApplyForSeatTxFieldsArgs): NativeEvmTxFields;
8867
8867
  /** Build `voteSeatAdmit` transaction fields (active member; non-payable). */
@@ -9479,4 +9479,4 @@ interface MonolythiumNetworkConfig {
9479
9479
  */
9480
9480
  declare const version = "0.4.18";
9481
9481
 
9482
- export { ADDRESS_HRP, ADDRESS_KIND_HRPS, API_STREAM_TOPICS, type AccountPolicy, type AccountProofResponse, type ActiveCharterView, type Address, type AddressActivityArchiveRedirect, type AddressActivityEntry, type AddressActivityEntryEnriched, type AddressActivityKind, type AddressActivityKindResponse, type AddressActivityKindRetention, AddressError, type AddressFlowResponse, type AddressKind, type AddressLabelRecord, type AddressProfileResponse, type AddressValidation, type AdvertiseSeatCalldataArgs, AgentActionError, type AgentReputationCategoryScope, type AgentReputationRecord, type AgentReputationResponse, type AnswerArchiveChallengeCalldataArgs, type ApiAddressActivityData, type ApiAddressActivityEntry, type ApiAddressActivityKind, type ApiAddressActivityKindData, type ApiAddressActivityKindSummary, type ApiBlockData, type ApiBlockHeader, type ApiBlockTransactionsData, type ApiCapabilitiesResponse, ApiClient, type ApiClientOptions, type ApiClusterData, type ApiClusterDirectoryEntry, type ApiClusterDirectoryPage, type ApiClusterMember, type ApiClusterStatus, type ApiClustersData, type ApiEnvelope, type ApiErrorEnvelope, type ApiHealthResponse, type ApiIndexerStatus, type ApiLatestAnchor, type ApiLogEntry, type ApiOperatorData, type ApiOperatorInfo, type ApiQueryValue, type ApiRuntimeProvenanceData, type ApiServiceProbeData, type ApiStreamTopic, type ApiStreamTopicMetadata, type ApiStreamTopicRetention, type ApiStreamsIndexResponse, type ApiTransactionData, type ApiTransactionNativeReceiptData, type ApiTransactionReceipt, type ApiTransactionReceiptData, type ApiTransactionView, type ApiUpgradePlanStatus, type ApiUpgradeStatus, type ApiUpgradeStatusData, type ApplyForSeatCalldataArgs, type ArchiveChallenge, type AssetPolicy, type AttestDkgReshareCalldataArgs, type AttestServiceProbeCalldataArgs, type AttestationWindow, BRIDGE_QUOTE_API_BLOCKED_REASON, BRIDGE_REVERT_TAGS, BRIDGE_SELECTORS, BRIDGE_SUBMIT_API_BLOCKED_REASON, BURN_ADDR, type BinaryProofEndpoint, type BlockHeader, type BlockSelector, type BlockTag, type BlsCertificateResponse, type BridgeAdminControl, type BridgeAnchorState, type BridgeBreakerState, type BridgeBytesInput, type BridgeCircuitBreakerFields, type BridgeCircuitBreakerState, type BridgeDrainCap, type BridgeDrainStatus, type BridgeHealthRecord, type BridgeHealthResponse, BridgePrecompileError, type BridgeQuoteSubmitReadiness, type BridgeRiskTier, type BridgeRouteAssessment, type BridgeRouteCandidate, type BridgeRouteCatalogue, BridgeRouteCatalogueError, type BridgeRouteCatalogueJsonOptions, type BridgeRouteCataloguePayload, type BridgeRouteCatalogueRoute, type BridgeRouteCatalogueValidation, type BridgeRouteDisclosure, type BridgeRouteSelection, type BridgeRoutesRequest, type BridgeRoutesResponse, type BridgeRoutesSource, type BridgeTransferIntent, type BridgeTransferRequest, type BridgeVerifierDisclosure, type BuildAdvertiseSeatTxFieldsArgs, type BuildApplyForSeatTxFieldsArgs, type BuildCloseSeatTxFieldsArgs, type BuildRequestClusterJoinTxFieldsArgs, type BuildVoteClusterAdmitTxFieldsArgs, type BuildVoteSeatAdmitTxFieldsArgs, type BuildWithdrawSeatApplicationTxFieldsArgs, CHAIN_REGISTRY, CHAIN_REGISTRY_RAW_BASE, CLOB_MARKET_ID_DOMAIN_TAG, CLOB_SELECTORS, CLUSTER_FORMED_EVENT_SIG, type CallRequest, type CancelClusterJoinCalldataArgs, type CancelPendingChangeCalldataArgs, type CancelSpotOrderArgs, type CapabilitiesResponse, type CapabilityDescriptor, type ChainInfo, type ChainRegistry, type ChainStatsResponse, type CheckpointRecord, type CirculatingSupplyResponse, type ClobMarketAssets, type ClobMarketRecord, type ClobMarketResponse, type ClobMarketSummary, type ClobMarketsResponse, type ClobOhlcResponse, type ClobOrderBookResponse, type ClobTrade, type ClobTradesResponse, type CloseSeatCalldataArgs, type ClusterAprResponse, type ClusterCharterArgs, type ClusterDelegatorsResponse, type ClusterDirectoryEntryResponse, type ClusterDirectoryPageResponse, type ClusterDiversity, type ClusterDiversityView, type ClusterEntityResponse, type ClusterFormedEvent, type ClusterJoinFeeOptions, type ClusterJoinReadClient, type ClusterJoinRequestStatus, type ClusterJoinRequestView, type ClusterJoinSubmitClient, type ClusterJoinSubmitResult, type ClusterJoinTxFee, type ClusterMemberResponse, type ClusterNameResponse, type ClusterResignationRow, type ClusterResignationsResponse, type ClusterStatusResponse, type CommitArchiveRootCalldataArgs, type CreateFixedSupplyMrc20CalldataArgs, type CreateRequestCanonicalArgs, type CreateTokenCalldataArgs, DEFAULT_CLUSTER_JOIN_EXECUTION_UNIT_LIMIT, DEFAULT_SEAT_EXECUTION_UNIT_LIMIT, DELEGATION_REVERT_TAGS, DELEGATION_SELECTORS, DIVERSITY_SCORE_MAX, type DagParent, type DagParentsResponse, type DagSyncStatus, type DecodeTxExtension, type DecodeTxLog, type DecodeTxPqAttestation, type DecodeTxResponse, type DelegationCapResponse, type DelegationHistoryRecord, DelegationPrecompileError, type DelegationRow, type DelegationsResponse, type DutyAbsence, EMPTY_ROOT, EXECUTION_UNIT_PRICE_SAFETY_MULTIPLIER, type EncodeNativeAgentAvailabilitySlotArgs, type EncodeNativeAgentCounterEscrowArgs, type EncodeNativeAgentCreateEscrowArgs, type EncodeNativeAgentDeactivateServiceArgs, type EncodeNativeAgentEscrowActorArgs, type EncodeNativeAgentGrantConsentArgs, type EncodeNativeAgentIssueAttestationArgs, type EncodeNativeAgentListServiceArgs, type EncodeNativeAgentRecordPolicySpendArgs, type EncodeNativeAgentRecordReputationArgs, type EncodeNativeAgentRegisterArbiterArgs, type EncodeNativeAgentRegisterIssuerArgs, type EncodeNativeAgentResolveEscrowArgs, type EncodeNativeAgentRevokeAttestationArgs, type EncodeNativeAgentRevokeConsentArgs, type EncodeNativeAgentSetAvailabilityArgs, type EncodeNativeAgentSetSpendingPolicyArgs, type EncodeNativeAgentStartEscrowArgs, type EncodeNativeAgentSubmitEscrowArgs, type EncodeNativeNftBuyListingArgs, type EncodeNativeNftCancelListingArgs, type EncodeNativeNftCreateListingArgs, type EncodeNativeNftPlaceAuctionBidArgs, type EncodeNativeNftSettleAuctionArgs, type EncodeNativeNftSweepExpiredListingsArgs, type EncodeNativeSpotCancelOrderArgs, type EncodeNativeSpotCreateMarketArgs, type EncodeNativeSpotLimitOrderArgs, type EncodeNativeSpotSettleLimitOrderArgs, type EncodeNativeSpotSettleRoutedLimitOrderArgs, type EntityRatchetResponse, type EthCallRequest, type EthSendTransactionRequest, type ExecutionUnitPriceResponse, type ExpireClusterJoinCalldataArgs, type ExplorerEndpoint, FEED_ID_DOMAIN_TAG, type FeeHistoryResponse, type FormClusterCalldataArgs, type FormClusterV2CalldataArgs, type GapRange, type GapRecord, type GapRecordsResponse, type GenesisVerdict, type GetClusterJoinRequestCalldataArgs, type Hash, type HealthSummary, type Hex, type IndexerStatus, type JailStatusWindow, type KeyRotationWindow, LYTHOSHI_PER_LYTH, LYTH_DECIMALS, type LatencyBands, type ListProofRequestsResponse, type LythFormatOptions, type LythUpgradePlanStatus, type LythUpgradeStatusResponse, MAX_MULTISIG_MEMBERS, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES, MAX_NATIVE_RECEIPT_EVENTS, MIN_EXECUTION_UNIT_PRICE_LYTHOSHI, MIN_MULTISIG_MEMBERS, ML_DSA_65_PUBLIC_KEY_LEN, ML_DSA_65_SIGNATURE_LEN, MONOLYTHIUM_NETWORKS, MONOLYTHIUM_TESTNET_CHAIN_ID, MONOLYTHIUM_TESTNET_NETWORK_NAME, MRV_DEPLOY_PAYLOAD_VERSION, MRV_FORMAT_VERSION, MRV_MAX_ABI_SYMBOLS, MRV_MAX_CODE_BYTES, MRV_MAX_DEBUG_BYTES, MRV_MAX_MEMORY_PAGES, MRV_MAX_STORAGE_NAMESPACE_BYTES, MRV_MEMORY_PAGE_BYTES, MRV_PROFILE_MONO_RV32IM_V1, MRV_STRUCTURED_FEE_FIELDS, MRV_TX_EXTENSION_KIND, MRV_TX_EXTENSION_V1, MULTISIG_ADDRESS_DERIVATION_DOMAIN$1 as MULTISIG_ADDRESS_DERIVATION_DOMAIN, MULTISIG_ADDRESS_DERIVATION_DOMAIN as MULTISIG_WITNESS_ADDRESS_DERIVATION_DOMAIN, MULTISIG_WITNESS_DOMAIN, MarketActionError, type MarketTransactionPlan, type MemberPubkeyInput, type MempoolSnapshot, type MeshDecodedTx, type MeshSignedTxResponse, type MeshTxIntent, type MeshUnsignedTxResponse, type MetricsRangeResponse, type MetricsRangeSample, type MetricsRangeSeries, type MetricsRangeStatus, type MonolythiumNetworkConfig, type MrcAccountRecord, type MrcAccountRequest, type MrcAccountResponse, type MrcHoldersRequest, type MrcHoldersResponse, type MrcMetadataRecord, type MrcMetadataResponse, type MrcPolicyRecord, type MrcPolicySpendRecord, type MrvAbiManifest, type MrvAbiParam, type MrvAbiSymbol, type MrvAbiSymbolKind, type MrvAbiType, type MrvAddressKind, type MrvArtifactMetadata, type MrvBuildMetadata, type MrvBytesLike, type MrvCallNativeTxOptions, type MrvCallNativeTxPlan, type MrvCallPlan, type MrvCallRequest, type MrvCallResponse, type MrvCallStatus, type MrvCallSubmission, type MrvCallSubmitOptions, type MrvDecimalLike, type MrvDeployNativeTxOptions, type MrvDeployNativeTxPlan, type MrvDeployPayload, type MrvDeployPayloadNativeTxOptions, type MrvDeployPayloadPlanOptions, type MrvDeployPayloadRequestOptions, type MrvDeployPayloadSubmission, type MrvDeployPayloadSubmitOptions, type MrvDeployPlan, type MrvDeployPlanOptions, type MrvDeployRequest, type MrvDeployResponse, type MrvDeploySubmission, type MrvDeploySubmitOptions, type MrvEventRecord, type MrvExecutionReceipt, type MrvFeeDisplayConformanceInput, type MrvFeeDisplayConformanceReport, type MrvMemoryLimits, type MrvMeterCounters, type MrvNativeFeePreview, type MrvNativeStateDelta, type MrvNativeTxFacade, type MrvRequestBuildOptions, type MrvResolvedSyscall, type MrvRevertPayload, type MrvRiscvProfile, type MrvStorageNamespace, type MrvStructuredFeeConformanceOptions, type MrvStructuredFeeConformanceReport, type MrvSubmissionResult, type MrvSyscallImport, type MrvTransactionExtension, type MrvTypedAddress, type MrvValidatedArtifactMetadata, MrvValidationError, MultisigError, type MultisigMember, type MultisigMemberSignature, type MultisigWitness, NAME_BASE_MULTIPLIER, NAME_FALLBACK_FEE_UNIT_LYTHOSHI, NAME_LABEL_MAX_LEN, NAME_LABEL_MIN_LEN, NAME_MAX_LEN, NAME_REGISTRY_SELECTORS, NATIVE_AGENT_MODULE_ADDRESS, NATIVE_AGENT_MODULE_ADDRESS_BYTES, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET, NATIVE_DEV_HOST_API_VERSION, NATIVE_DEV_IPC_PROTOCOL_VERSION, NATIVE_DEV_MANIFEST_SCHEMA_VERSION, NATIVE_LYTH_DECIMALS, NATIVE_MARKET_EVENT_FAMILY, NATIVE_MARKET_MODULE_ADDRESS, NATIVE_MARKET_MODULE_ADDRESS_BYTES, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC, NODE_REGISTRY_ARCHIVE_CHALLENGE_DOMAIN, NODE_REGISTRY_ARCHIVE_KIND_EPOCH_SEED, NODE_REGISTRY_ARCHIVE_NONCE_DOMAIN, NODE_REGISTRY_BLS_PUBKEY_BYTES, NODE_REGISTRY_CAPABILITIES, NODE_REGISTRY_CAPABILITY_MASK, NODE_REGISTRY_CHALLENGE_EPOCH_WINDOW, NODE_REGISTRY_CHARTER_COOLDOWN_EPOCHS, NODE_REGISTRY_CLUSTER_CHARTER_BYTES, NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS, NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES, NODE_REGISTRY_CONSENSUS_POP_BYTES, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN_V2, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES, NODE_REGISTRY_MAX_MERKLE_PROOF_DEPTH, NODE_REGISTRY_MERKLE_INNER_DOMAIN, NODE_REGISTRY_MERKLE_LEAF_DOMAIN, NODE_REGISTRY_MIN_ARCHIVE_LEAF_COUNT, NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI, NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES, NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID, NODE_REGISTRY_PUBLIC_SERVICE_MASK, NODE_REGISTRY_SEAT_APPLICATION_ESCROW_LYTHOSHI, NODE_REGISTRY_SEAT_KIND_ACTIVE, NODE_REGISTRY_SEAT_KIND_STANDBY, NODE_REGISTRY_SELECTORS, NODE_REGISTRY_SUBKIND_CHARTER_DELEGATOR_BPS, NODE_REGISTRY_SUBKIND_CHARTER_MEMBER_SHARES, NODE_REGISTRY_TAG_ARCHIVE_CHALLENGE, NODE_REGISTRY_TAG_CLUSTER_CHARTER, NODE_REGISTRY_TAG_CLUSTER_SEAT, NODE_REGISTRY_TAG_SERVICE_SCORE, NODE_REGISTRY_TAG_TREASURY, NODE_REGISTRY_UPDATE_CHARTER_MESSAGE_DOMAIN, NODE_REGISTRY_UPDATE_CHARTER_THRESHOLD, NO_EVM_ARCHIVE_PROOF_SCHEMA, NO_EVM_ARCHIVE_SIGNATURE_SCHEME, NO_EVM_FINALITY_EVIDENCE_SCHEMA, NO_EVM_FINALITY_EVIDENCE_SOURCE, NO_EVM_RECEIPTS_ROOT_DOMAIN, NO_EVM_RECEIPT_CODEC, NO_EVM_RECEIPT_PROOF_SCHEMA, NO_EVM_RECEIPT_PROOF_TYPE, NO_EVM_RECEIPT_ROOT_ALGORITHM, type NameCategory, type NameOfResponse, type NameRegistrationQuote, NameRegistryError, type NativeAgentAddressInput, type NativeAgentAddressKind, type NativeAgentArbiterStateRecord, type NativeAgentAttestationStateRecord, type NativeAgentAvailabilityStateRecord, type NativeAgentConsentStateRecord, type NativeAgentEscrowResolution, type NativeAgentEscrowStateRecord, type NativeAgentForwarderInput, type NativeAgentIssuerStateRecord, type NativeAgentModuleCallEnvelope, type NativeAgentModuleContractCall, type NativeAgentPolicySpendStateRecord, type NativeAgentPolicyStateRecord, type NativeAgentReputationReviewStateRecord, type NativeAgentReputationScores, type NativeAgentServiceStateRecord, type NativeAgentStateFilter, type NativeAgentStateFilterParamValue, type NativeAgentStateResponse, type NativeAgentStateResponseFilters, type NativeAgentStateSource, type NativeCallForwarderArtifact, type NativeCollectionRoyaltyStateRecord, type NativeDecodedEvent, type NativeDevApprovalKind, type NativeDevCommandName, type NativeDevContractPassport, type NativeDevHostApprovalResultMessage, type NativeDevHostCommandMessage, type NativeDevHostContextMessage, type NativeDevIpcMessage, type NativeDevMrcAllocation, type NativeDevMrcAssetKind, type NativeDevMrcTokenPlan, type NativeDevMrvDeployPlan, type NativeDevRiskLabel, type NativeDevRiskSeverity, type NativeDevSidecarApprovalRequestMessage, type NativeDevSidecarCommandResultMessage, type NativeDevSidecarProjectEventMessage, type NativeDevSidecarReadyMessage, type NativeDevVerificationBundle, type NativeDevWalletApprovalRequest, type NativeDevkitArchive, type NativeDevkitChannel, type NativeDevkitCompatibility, type NativeDevkitManifest, type NativeDevkitSidecarManifest, type NativeDevkitSidecarStatus, type NativeDevkitStatus, type NativeEventConsumer, type NativeEventFilter, type NativeEventProjection, type NativeEventsFilter, type NativeEventsResponse, type NativeEventsResponseFilters, type NativeEventsSource, type NativeMarketAddressInput, type NativeMarketAddressKind, type NativeMarketForwarderInput, type NativeMarketModuleCallEnvelope, type NativeMarketModuleContractCall, type NativeMarketOrderBookDelta, type NativeMarketOrderBookDeltasRequest, type NativeMarketOrderBookDeltasResponse, type NativeMarketOrderBookDeltasResponseFilters, type NativeMarketOrderBookDeltasSource, type NativeMarketOrderBookStreamAction, type NativeMarketOrderBookStreamPayload, type NativeMarketStateFilter, type NativeMarketStateFilterParamValue, type NativeMarketStateResponse, type NativeMarketStateResponseFilters, type NativeMarketStateSource, type NativeModuleForwarderDescriptor, type NativeMrcPolicyProjection, type NativeNftAssetStandard, type NativeNftListingKind, type NativeNftListingStateRecord, type NativeReceiptCounters, type NativeReceiptEvent, type NativeReceiptFee, type NativeReceiptFeeDisplay, type NativeReceiptResponse, type NativeReceiptSource, type NativeSpotMarketStateRecord, type NativeSpotOrderStateRecord, type NetworkClientOptions, type NetworkSlug, type NoEvmArchiveCoveringSnapshot, type NoEvmArchiveProof, type NoEvmArchiveSignatureVerification, type NoEvmArchiveSignatureVerificationIssue, type NoEvmArchiveSignatureVerificationIssueCode, type NoEvmArchiveTrustedSigner, type NoEvmBlockBlsFinalityVerification, type NoEvmBlockRoundFinalityVerification, type NoEvmBlsFinalityVerification, type NoEvmFinalityBlockReference, type NoEvmFinalityCertificate, type NoEvmFinalityEvidence, type NoEvmReceiptFinalityTrustPolicy, type NoEvmReceiptProof, NoEvmReceiptProofError, type NoEvmReceiptProofErrorCode, type NoEvmReceiptProofVerification, type NoEvmReceiptTrustIssue, type NoEvmReceiptTrustIssueCode, type NoEvmReceiptTrustPolicy, type NoEvmReceiptTrustVerification, type NoEvmReceiptTrustedBlsSigner, type NoEvmReceiptTrustedSigner, type NoEvmRoundFinalityVerification, type NodeHostingClass, NodeRegistryError, type NonInclusionProofEnvelope, OPERATOR_ROUTER_ADDRESS, OPERATOR_ROUTER_EVENT_SIGS, OPERATOR_ROUTER_SELECTORS, OPERATOR_ROUTER_SIGS, ORACLE_EVENT_SIGS, type OpenSeatView, type OperatorAuthorityResponse, type OperatorCapabilitiesResponse, type OperatorFeeChargedEvent, type OperatorFeeConfig, type OperatorFeeQuote, type OperatorInfoResponse, type OperatorNetworkMetadata, type OperatorNetworkMetadataView, type OperatorOnboardingPreview, type OperatorRiskResponse, type OperatorRouterConfig, type OperatorSigningActivityResponse, type OperatorSigningEntry, type OperatorSurfaceCapability, type OperatorSurfaceStatus, OperatorTrustError, type OperatorTrustReason, type OracleEvent, OracleEventError, type OracleFeedConfig, type OracleLatestPrice, type OracleSignerRow, type OracleSignersResponse, type OracleWriters, type P2pSeed, PENDING_CHANGE_KIND_CODES, PRECOMPILE_ADDRESSES, PROOF_KIND_BINARY, PROTOCOL_MAX_OPERATOR_FEE_BPS, PROVER_MARKET_ADDRESS, PROVER_MARKET_BID_DOMAIN, PROVER_MARKET_EVENT_SIGS, PROVER_MARKET_REQUEST_DOMAIN, PROVER_MARKET_SELECTORS, PROVER_MARKET_SUBMIT_DOMAIN, PROVER_SLASH_REASON_BAD_PROOF, PROVER_SLASH_REASON_NON_DELIVERY, PUBKEY_REGISTRY_ML_DSA_65_PUBLIC_KEY_LEN, PUBKEY_REGISTRY_SELECTORS, type ParsedName, type PeerSummary, type PeerSummaryAggregate, type PendingChangeKind, type PendingCharterView, type PendingRewardsResponse, type PendingRewardsRow, type PendingTxSummary, type PlaceLimitOrderViaArgs, type PlaceLimitOrderViaPlan, type PlaceSpotLimitOrderArgs, type PlaceSpotMarketOrderArgs, type PlaceSpotMarketOrderExArgs, type PrecompileAddress, type PrecompileCatalogueResponse, type PrecompileDescriptor, type PrecompileName, type ProofEnvelope, type ProofRequestRow, type ProofRequestView, ProofVerifier, ProofVerifyError, type ProofVerifyErrorCode, type ProverBidView, type ProverBidsResponse, ProverMarketError, type ProverMarketState, type ProverMarketStatusResponse, type PubkeyLookup, PubkeyRegistryError, QUARANTINED_RPC_CODE, type Quantity, type QuoteLiquidity, REGISTRY_DEFAULT_EXECUTION_UNIT_LIMIT, RESERVED_ADDRESS_HRPS, type RankedBridgeRoute, type ReceiptProofTrustArchivePolicy, type ReceiptProofTrustArchiveSigner, type ReceiptProofTrustFinalityPolicy, type ReceiptProofTrustFinalitySigner, type ReceiptProofTrustPolicy, type RedemptionQueueResponse, type RedemptionQueueTicket, type RegistryRecord, type ReportServiceProbeCalldataArgs, type ReportServiceProbeRequest, type ReportServiceProbeResponse, type RequestClusterJoinCalldataArgs, type ResolveNameResponse, type ResolvedExecutionFee, type RichListHolder, type RichListResponse, type RoundCertificateResponse, type RoundInfo, RpcClient, type RpcClientOptions, type RpcEndpoint, type RuntimeBuildProvenance, type RuntimeProvenanceResponse, type RuntimeUpgradeStatus, SEAT_ADVERTISED_EVENT_SIG, SEAT_APPLIED_EVENT_SIG, SEAT_CLOSED_EVENT_SIG, SEAT_FILLED_EVENT_SIG, SEAT_KINDS, SEAT_STATUS_CODES, SERVES_GPU_PROVE, SERVICE_PROBE_STATUS, SET_POLICY_CLAIM_DOMAIN_TAG, SPENDING_POLICY_SELECTORS, SdkError, type SearchHit, type SearchResponse, type SeatAdvertisedEvent, type SeatApplicationView, type SeatAppliedEvent, type SeatClosedEvent, type SeatFeeOptions, type SeatFilledEvent, type SeatKind, type SeatStatus, type SeatTxFee, type ServiceProbeResponse, type ServiceProbeStatusLabel, type SetOperatorDisplayCalldataArgs, type SigningEntryStatus, type SpendingPolicyArgs, SpendingPolicyError, type SpendingPolicyTimeWindow, type SpendingPolicyView, type SpotLimitOrderSide, type SpotMarketOrderMode, type StorageProofBatch, type StudioHostState, type StudioHostStatus, type SubmitPendingChangeCalldataArgs, type SubmitRequestClusterJoinArgs, type SubmitVoteClusterAdmitArgs, type SwapIntentStatus, type SyncStatus, TESTNET_69420, TOKEN_FACTORY_CREATE_DEPOSIT_LYTHOSHI, TOKEN_FACTORY_FLAGS, TOKEN_FACTORY_KNOWN_FLAG_MASK, TOKEN_FACTORY_MAX_CREATOR_FEE_BPS, TOKEN_FACTORY_MAX_DECIMALS, TOKEN_FACTORY_NAME_MAX_BYTES, TOKEN_FACTORY_SELECTORS, TOKEN_FACTORY_SIGS, TOKEN_FACTORY_SYMBOL_MAX_BYTES, TOKEN_FACTORY_TOKEN_ID_DOMAIN_TAG, TRANSFER_DEFAULT_EXECUTION_UNIT_LIMIT, TX_EXTENSION_KIND_MULTISIG, TX_EXTENSION_MULTISIG_V1, type TokenBalanceMrcIdentity, type TokenBalanceRecord, type TokenBalanceWithMetadata, type TokenFactoryAddressInput, type TokenFactoryBytes32Input, TokenFactoryError, type TokenFactoryUintInput, type TotalBurnedResponse, type TpmAttestationResponse, type TransactionFeeExposure, type TransactionReceipt, type TransactionView, type TxConfirmations, type TxFeedReceipt, type TxFeedResponse, type TxFeedTransaction, type TxStatusFoundResponse, type TxStatusNotFoundResponse, type TxStatusResponse, type TypedAddress, type TypedNativeReceiptEvent, type UpcomingDutiesResponse, type UpcomingDutyMap, type UpdateCharterCalldataArgs, type UserAddressInput, V1_BRIDGE_ALLOWED_FEE_TOKEN, V1_BRIDGE_ALLOWED_PROTOCOL, VRF_DOMAIN_TAG_MAX_BYTES, VRF_HEIGHT_NOT_FINALIZED_REVERT, VRF_OUTPUT_BYTES, type VertexAtRound, type VerticesAtRoundResponse, type VoteClusterAdmitCalldataArgs, type VoteSeatAdmitCalldataArgs, VrfCallError, type VrfDomainTagInput, type WithdrawSeatApplicationCalldataArgs, addressBytesToHex, addressToBech32, addressToTypedBech32, allowRootFor, apiEndpointFromRpcEndpoint, archiveMerkleInnerHash, archiveMerkleLeafHash, asBinaryProofEnvelope, assembleMultisigSigned, assembleMultisigWitness, assertMrvCallNativeSubmissionPlan, assertMrvDeployNativeSubmissionPlan, assertMrvFeeDisplayConformance, assertMrvStructuredFeeConformance, assertNativeDevMrcTokenPlan, assertNativeDevMrvDeployPlan, assertNativeDevWalletApprovalRequest, assertNativeMarketOrderBookStreamPayload, assessBridgeRoute, bech32ToAddress, bech32ToAddressBytes, bidSighash, bridgeAddressHex, bridgeDrainRemaining, bridgeQuoteSubmitReadiness, bridgeRoutesReadiness, bridgeTransferCandidates, buildAdvertiseSeatTxFields, buildApplyForSeatTxFields, buildBridgeRouteCatalogue, buildCancelSpotOrderPlan, buildCloseSeatTxFields, buildMrvCallNativeTxPlan, buildMrvCallPlan, buildMrvCallRequest, buildMrvDeployNativeTxPlan, buildMrvDeployPayloadNativeTxPlan, buildMrvDeployPayloadPlan, buildMrvDeployPayloadRequest, buildMrvDeployPlan, buildMrvDeployRequest, buildNativeAgentCreateEscrowForwarderInput, buildNativeAgentCreateEscrowModuleCall, buildNativeAgentModuleCallEnvelope, buildNativeAgentRecordReputationForwarderInput, buildNativeAgentRecordReputationModuleCall, buildNativeAgentSetSpendingPolicyForwarderInput, buildNativeAgentSetSpendingPolicyModuleCall, buildNativeCallForwarderArtifact, buildNativeMarketModuleCallEnvelope, buildNativeNftBuyListingForwarderInput, buildNativeNftBuyListingModuleCall, buildNativeNftCancelListingForwarderInput, buildNativeNftCancelListingModuleCall, buildNativeNftCreateListingForwarderInput, buildNativeNftCreateListingModuleCall, buildNativeNftPlaceAuctionBidForwarderInput, buildNativeNftPlaceAuctionBidModuleCall, buildNativeNftSettleAuctionForwarderInput, buildNativeNftSettleAuctionModuleCall, buildNativeNftSweepExpiredListingsForwarderInput, buildNativeNftSweepExpiredListingsModuleCall, buildNativeSpotCancelOrderForwarderInput, buildNativeSpotCancelOrderModuleCall, buildNativeSpotCreateMarketForwarderInput, buildNativeSpotCreateMarketModuleCall, buildNativeSpotLimitOrderForwarderInput, buildNativeSpotLimitOrderModuleCall, buildNativeSpotSettleLimitOrderForwarderInput, buildNativeSpotSettleLimitOrderModuleCall, buildNativeSpotSettleRoutedLimitOrderForwarderInput, buildNativeSpotSettleRoutedLimitOrderModuleCall, buildPlaceLimitOrderViaPlan, buildPlaceSpotLimitOrderPlan, buildPlaceSpotMarketOrderExPlan, buildPlaceSpotMarketOrderPlan, buildRequestClusterJoinTxFields, buildVoteClusterAdmitTxFields, buildVoteSeatAdmitTxFields, buildWithdrawSeatApplicationTxFields, categoryRoot, checkMrvFeeDisplayConformance, checkMrvStructuredFeeConformance, checkNativeDevkitCompatibility, clampPriorityTip, clobAddressHex, clusterApyPercent, clusterJoinRequestExists, compareNativeDevVersions, composeClaimBoundMessage, computeNoEvmDacFinalityMessage, computeNoEvmLeaderFinalityMessage, computeNoEvmReceiptsRoot, computeNoEvmRoundFinalityMessage, computeNoEvmTargetReceiptHash, computeQuoteLiquidity, consumeNativeEvents, decodeActiveCharter, decodeClusterCharter, decodeClusterDiversity, decodeClusterFormedEvent, decodeClusterJoinRequest, decodeHasPubkeyReturn, decodeLookupPubkeyReturn, decodeNativeAgentStateResponse, decodeNativeMarketOrderBookDeltasResponse, decodeNativeReceiptResponse, decodeNoEvmReceiptTranscript, decodeOperatorFeeChargedEvent, decodeOperatorNetworkMetadata, decodeOracleEvent, decodePendingCharter, decodeProbeAuthority, decodeScoreServiceProbe, decodeSeatAdvertisedEvent, decodeSeatAppliedEvent, decodeSeatClosedEvent, decodeSeatFilledEvent, decodeTimeWindow, decodeTokenFactoryTokenId, decodeTxFeedResponse, decodeVrfOutput, delegationAddressHex, denyRootFor, deriveArchiveChallenge, deriveClobMarketId, deriveClusterAnchorAddress, deriveClusterJoinOperatorId, deriveFeedId, deriveMrvContractAddress, deriveMultisigAddress, deriveMultisigAddressBytes, deriveNativeSpotMarketId, deriveNativeSpotOrderId, deriveSeatApplicationKey, deriveTokenFactoryTokenId, destinationRoot, encodeAdvertiseSeatCalldata, encodeAnswerArchiveChallengeCalldata, encodeApplyForSeatCalldata, encodeAttestDkgReshareCalldata, encodeAttestServiceProbeCalldata, encodeBlockSelector, encodeBridgeChallengeCalldata, encodeBridgeClaimCalldata, encodeCancelClusterJoinCalldata, encodeCancelOrderCalldata, encodeCancelPendingChangeCalldata, encodeClaimCalldata, encodeClaimPolicyByAddressCalldata, encodeCloseSeatCalldata, encodeClusterCharter, encodeCommitArchiveRootCalldata, encodeCreateFixedSupplyMrc20Calldata, encodeCreateRequestCalldata, encodeCreateRequestCanonical, encodeCreateTokenCalldata, encodeDelegateCalldata, encodeDisableCalldata, encodeEnableCalldata, encodeExpireClusterJoinCalldata, encodeFormClusterCalldata, encodeFormClusterV2Calldata, encodeGetClusterJoinRequestCalldata, encodeGetPendingCharterCalldata, encodeGetProbeAuthorityCalldata, encodeHasPubkeyCalldata, encodeLockBridgeConfigCalldata, encodeLookupPubkeyCalldata, encodeMrvDeployPayload, encodeMultisigWitnessBody, encodeNameAcceptTransferCall, encodeNameProposeTransferCall, encodeNameRegisterCall, encodeNativeAgentAcceptEscrowCall, encodeNativeAgentApproveEscrowCall, encodeNativeAgentArbiterGetCall, encodeNativeAgentAttestationGetCall, encodeNativeAgentAvailabilityGetCall, encodeNativeAgentCancelEscrowCall, encodeNativeAgentCloseAvailabilityCall, encodeNativeAgentConsentGetCall, encodeNativeAgentCounterEscrowCall, encodeNativeAgentCreateEscrowCall, encodeNativeAgentDeactivateServiceCall, encodeNativeAgentDisputeEscrowCall, encodeNativeAgentEscrowGetCall, encodeNativeAgentGrantConsentCall, encodeNativeAgentIssueAttestationCall, encodeNativeAgentIssuerGetCall, encodeNativeAgentListServiceCall, encodeNativeAgentModuleForwarderInput, encodeNativeAgentOpenAvailabilityCall, encodeNativeAgentRecordPolicySpendCall, encodeNativeAgentRecordReputationCall, encodeNativeAgentRegisterArbiterCall, encodeNativeAgentRegisterIssuerCall, encodeNativeAgentReputationGetCall, encodeNativeAgentResolveEscrowCall, encodeNativeAgentRevokeAttestationCall, encodeNativeAgentRevokeConsentCall, encodeNativeAgentServiceGetCall, encodeNativeAgentSetAvailabilityCall, encodeNativeAgentSetSpendingPolicyCall, encodeNativeAgentSpendingPolicyGetCall, encodeNativeAgentStartEscrowCall, encodeNativeAgentSubmitEscrowCall, encodeNativeMarketModuleForwarderInput, encodeNativeNftBuyListingCall, encodeNativeNftCancelListingCall, encodeNativeNftCreateListingCall, encodeNativeNftPlaceAuctionBidCall, encodeNativeNftSettleAuctionCall, encodeNativeNftSweepExpiredListingsCall, encodeNativeSpotCancelOrderCall, encodeNativeSpotCreateMarketCall, encodeNativeSpotLimitOrderCall, encodeNativeSpotSettleLimitOrderCall, encodeNativeSpotSettleRoutedLimitOrderCall, encodePlaceLimitOrderCalldata, encodePlaceLimitOrderViaCalldata, encodePlaceMarketOrderCalldata, encodePlaceMarketOrderExCalldata, encodeRecoverOperatorNodeCalldata, encodeRedelegateCalldata, encodeRegisterPubkeyCalldata, encodeReportServiceProbeCalldata, encodeRequestClusterJoinCalldata, encodeSetAutoCompoundCalldata, encodeSetBridgeResumeCooldownCalldata, encodeSetBridgeRouteFinalityCalldata, encodeSetLotSizeCalldata, encodeSetMinNotionalCalldata, encodeSetOperatorDisplayCalldata, encodeSetPolicyCalldata, encodeSetPolicyClaimCalldata, encodeSetProbeAuthorityCalldata, encodeSetTickSizeCalldata, encodeSubmitBridgeProofCalldata, encodeSubmitPendingChangeCalldata, encodeTokenFactoryAllowanceCalldata, encodeTokenFactoryApproveCalldata, encodeTokenFactoryBalanceOfCalldata, encodeTokenFactoryBurnCalldata, encodeTokenFactoryDecreaseAllowanceCalldata, encodeTokenFactoryDestroyCalldata, encodeTokenFactoryIncreaseAllowanceCalldata, encodeTokenFactoryMetadataCalldata, encodeTokenFactoryMintCalldata, encodeTokenFactorySetPausedCalldata, encodeTokenFactoryTotalSupplyCalldata, encodeTokenFactoryTransferCalldata, encodeTokenFactoryTransferFromCalldata, encodeTokenFactoryTransferOwnershipCalldata, encodeUndelegateCalldata, encodeUpdateCharterCalldata, encodeVoteClusterAdmitCalldata, encodeVoteSeatAdmitCalldata, encodeVrfEvaluateCalldata, encodeWithdrawSeatApplicationCalldata, exportBridgeRouteCatalogueJson, fetchChainInfoLatest, fetchChainRegistryLatest, formClusterMessage, formClusterMessageHex, formClusterMessageV2, formClusterMessageV2Hex, formatLyth, formatLythoshi, formatNativeReceiptFeeDisplay, formatOraclePrice, getChainInfo, getNoEvmReceiptTrustPolicy, getP2pSeeds, getRpcEndpoints, hashToHex, hexToAddressBytes, isBridgeAdminLockedRevert, isBridgeCooldownZeroRevert, isBridgeFinalityZeroRevert, isBridgeResumeCooldownActiveRevert, isConcreteServiceProbeStatus, isNativeDecodedEvent, isNativeMarketOrderBookStreamPayload, isQuarantineError, isSinglePublicServiceProbeMask, isUnexpectedValueRevert, isValidNodeRegistryCapabilities, isValidPublicServiceProbeMask, mrvAddressToBech32, mrvBech32ToAddress, mrvCodeHashHex, mrvV1TransactionExtension, multisigBaseSighash, multisigMemberIndex, nameLengthModifierX10, nameRegistrationCost, nameRegistryAddressHex, nativeAgentStateFilterParams, nativeDevSchemaFieldNames, nativeDevUiStrings, nativeEventMatches, nativeEventsFilterParams, nativeEventsFromHistory, nativeEventsFromReceipt, nativeMarketEventFilter, nativeMarketEventsFromHistory, nativeMarketEventsFromReceipt, nativeMarketStateFilterParams, noEvmReceiptTrustPolicyFromChainInfo, nodeHostingClassFromByte, nodeHostingClassToByte, nodeRegistryAddressHex, normalizeAddressHex, normalizeBridgeRouteCatalogue, normalizePendingChangeKind, openSeatFromAdvertised, oracleAddressHex, oraclePriceToNumber, packTimeWindow, parseAddress, parseBridgeRouteCatalogueJson, parseChainRegistryToml, parseDkgResharePublicKeys, parseLythToLythoshi, parseNameCategory, parseNativeDecodedEvent, parseQuantity, parseQuantityBig, preflightClusterJoinRequest, previewRequestClusterJoin, previewVoteClusterAdmit, proofVerifier, protocolNonceForEpoch, proverMarketStateFromByte, pubkeyRegistryAddressHex, quoteOperatorFee, rankBridgeRoutes, rankMarketsByVolume, readClusterJoinRequest, requestSighash, requireTypedAddress, resolveClusterJoinExecutionFee, resolveExecutionFee, resolveMaxExecutionUnitPrice, resolveRegistryExecutionFee, resolveSeatExecutionFee, resolveStudioHostStatus, seatKindFromByte, seatKindToByte, seatStatusFromByte, selectBridgeTransferRoute, selectTrustedOperator, selectTrustedOperatorForNetwork, serviceMaskToBitIndex, serviceProbeStatusLabel, setDestinationRoot, slotArchiveChallengePass, slotClusterCharter, slotClusterCharterDelegator, slotClusterCharterMembers, slotClusterServiceScore, slotEpochChallengeSeed, slotProbeAuthority, slotScoreServiceProbe, sortMultisigMembers, spendingPolicyAddressHex, submitMrvCallNativeTx, submitMrvDeployNativeTx, submitMrvDeployPayloadNativeTx, submitRequestClusterJoin, submitSighash, submitVoteClusterAdmit, tokenFactoryAddressHex, transactionFeeExposure, typedBech32ToAddress, updateCharterMessage, updateCharterMessageHex, validateAddress, validateBridgeRouteCatalogue, validateMrvArtifactMetadata, validateMrvCallRequest, validateMrvDeployRequest, validateMultisigRoster, validateTokenFactoryFlags, verifyNoEvmArchiveProofSignatures, verifyNoEvmBlockFinalityEvidenceMultisig, verifyNoEvmBlockFinalityEvidenceThreshold, verifyNoEvmFinalityEvidenceMultisig, verifyNoEvmFinalityEvidenceThreshold, verifyNoEvmReceiptProof, verifyNoEvmReceiptProofTrust, verifyOperatorGenesis, version, vrfAddressHex };
9482
+ export { ADDRESS_HRP, ADDRESS_KIND_HRPS, API_STREAM_TOPICS, type AccountPolicy, type AccountProofResponse, type ActiveCharterView, type Address, type AddressActivityArchiveRedirect, type AddressActivityEntry, type AddressActivityEntryEnriched, type AddressActivityKind, type AddressActivityKindResponse, type AddressActivityKindRetention, AddressError, type AddressFlowResponse, type AddressKind, type AddressLabelRecord, type AddressProfileResponse, type AddressValidation, type AdvertiseSeatCalldataArgs, AgentActionError, type AgentReputationCategoryScope, type AgentReputationRecord, type AgentReputationResponse, type AnswerArchiveChallengeCalldataArgs, type ApiAddressActivityData, type ApiAddressActivityEntry, type ApiAddressActivityKind, type ApiAddressActivityKindData, type ApiAddressActivityKindSummary, type ApiBlockData, type ApiBlockHeader, type ApiBlockTransactionsData, type ApiCapabilitiesResponse, ApiClient, type ApiClientOptions, type ApiClusterData, type ApiClusterDirectoryEntry, type ApiClusterDirectoryPage, type ApiClusterMember, type ApiClusterStatus, type ApiClustersData, type ApiEnvelope, type ApiErrorEnvelope, type ApiHealthResponse, type ApiIndexerStatus, type ApiLatestAnchor, type ApiLogEntry, type ApiOperatorData, type ApiOperatorInfo, type ApiQueryValue, type ApiRuntimeProvenanceData, type ApiServiceProbeData, type ApiStreamTopic, type ApiStreamTopicMetadata, type ApiStreamTopicRetention, type ApiStreamsIndexResponse, type ApiTransactionData, type ApiTransactionNativeReceiptData, type ApiTransactionReceipt, type ApiTransactionReceiptData, type ApiTransactionView, type ApiUpgradePlanStatus, type ApiUpgradeStatus, type ApiUpgradeStatusData, type ApplyForSeatCalldataArgs, type ArchiveChallenge, type AssetPolicy, type AttestDkgReshareCalldataArgs, type AttestServiceProbeCalldataArgs, type AttestationWindow, BRIDGE_QUOTE_API_BLOCKED_REASON, BRIDGE_REVERT_TAGS, BRIDGE_SELECTORS, BRIDGE_SUBMIT_API_BLOCKED_REASON, BURN_ADDR, type BinaryProofEndpoint, type BlockHeader, type BlockSelector, type BlockTag, type BlsCertificateResponse, type BridgeAdminControl, type BridgeAnchorState, type BridgeBreakerState, type BridgeBytesInput, type BridgeCircuitBreakerFields, type BridgeCircuitBreakerState, type BridgeDrainCap, type BridgeDrainStatus, type BridgeHealthRecord, type BridgeHealthResponse, BridgePrecompileError, type BridgeQuoteSubmitReadiness, type BridgeRiskTier, type BridgeRouteAssessment, type BridgeRouteCandidate, type BridgeRouteCatalogue, BridgeRouteCatalogueError, type BridgeRouteCatalogueJsonOptions, type BridgeRouteCataloguePayload, type BridgeRouteCatalogueRoute, type BridgeRouteCatalogueValidation, type BridgeRouteDisclosure, type BridgeRouteSelection, type BridgeRoutesRequest, type BridgeRoutesResponse, type BridgeRoutesSource, type BridgeTransferIntent, type BridgeTransferRequest, type BridgeVerifierDisclosure, type BuildAdvertiseSeatTxFieldsArgs, type BuildApplyForSeatTxFieldsArgs, type BuildCloseSeatTxFieldsArgs, type BuildRequestClusterJoinTxFieldsArgs, type BuildVoteClusterAdmitTxFieldsArgs, type BuildVoteSeatAdmitTxFieldsArgs, type BuildWithdrawSeatApplicationTxFieldsArgs, CHAIN_REGISTRY, CHAIN_REGISTRY_RAW_BASE, CLOB_MARKET_ID_DOMAIN_TAG, CLOB_SELECTORS, CLUSTER_FORMED_EVENT_SIG, type CallRequest, type CancelClusterJoinCalldataArgs, type CancelPendingChangeCalldataArgs, type CancelSpotOrderArgs, type CapabilitiesResponse, type CapabilityDescriptor, type ChainInfo, type ChainRegistry, type ChainStatsResponse, type CheckpointRecord, type CirculatingSupplyResponse, type ClobMarketAssets, type ClobMarketRecord, type ClobMarketResponse, type ClobMarketSummary, type ClobMarketsResponse, type ClobOhlcResponse, type ClobOrderBookResponse, type ClobTrade, type ClobTradesResponse, type CloseSeatCalldataArgs, type ClusterAprResponse, type ClusterCharterArgs, type ClusterDelegatorsResponse, type ClusterDirectoryEntryResponse, type ClusterDirectoryPageResponse, type ClusterDiversity, type ClusterDiversityView, type ClusterEntityResponse, type ClusterFormedEvent, type ClusterJoinFeeOptions, type ClusterJoinReadClient, type ClusterJoinRequestStatus, type ClusterJoinRequestView, type ClusterJoinSubmitClient, type ClusterJoinSubmitResult, type ClusterJoinTxFee, type ClusterMemberResponse, type ClusterNameResponse, type ClusterResignationRow, type ClusterResignationsResponse, type ClusterStatusResponse, type CommitArchiveRootCalldataArgs, type CreateFixedSupplyMrc20CalldataArgs, type CreateRequestCanonicalArgs, type CreateTokenCalldataArgs, DEFAULT_CLUSTER_JOIN_EXECUTION_UNIT_LIMIT, DEFAULT_SEAT_EXECUTION_UNIT_LIMIT, DELEGATION_REVERT_TAGS, DELEGATION_SELECTORS, DIVERSITY_SCORE_MAX, type DagParent, type DagParentsResponse, type DagSyncStatus, type DecodeTxExtension, type DecodeTxLog, type DecodeTxPqAttestation, type DecodeTxResponse, type DelegationCapResponse, type DelegationHistoryRecord, DelegationPrecompileError, type DelegationRow, type DelegationsResponse, type DutyAbsence, EMPTY_ROOT, EXECUTION_UNIT_PRICE_SAFETY_MULTIPLIER, type EncodeNativeAgentAvailabilitySlotArgs, type EncodeNativeAgentCounterEscrowArgs, type EncodeNativeAgentCreateEscrowArgs, type EncodeNativeAgentDeactivateServiceArgs, type EncodeNativeAgentEscrowActorArgs, type EncodeNativeAgentGrantConsentArgs, type EncodeNativeAgentIssueAttestationArgs, type EncodeNativeAgentListServiceArgs, type EncodeNativeAgentRecordPolicySpendArgs, type EncodeNativeAgentRecordReputationArgs, type EncodeNativeAgentRegisterArbiterArgs, type EncodeNativeAgentRegisterIssuerArgs, type EncodeNativeAgentResolveEscrowArgs, type EncodeNativeAgentRevokeAttestationArgs, type EncodeNativeAgentRevokeConsentArgs, type EncodeNativeAgentSetAvailabilityArgs, type EncodeNativeAgentSetSpendingPolicyArgs, type EncodeNativeAgentStartEscrowArgs, type EncodeNativeAgentSubmitEscrowArgs, type EncodeNativeNftBuyListingArgs, type EncodeNativeNftCancelListingArgs, type EncodeNativeNftCreateListingArgs, type EncodeNativeNftPlaceAuctionBidArgs, type EncodeNativeNftSettleAuctionArgs, type EncodeNativeNftSweepExpiredListingsArgs, type EncodeNativeSpotCancelOrderArgs, type EncodeNativeSpotCreateMarketArgs, type EncodeNativeSpotLimitOrderArgs, type EncodeNativeSpotSettleLimitOrderArgs, type EncodeNativeSpotSettleRoutedLimitOrderArgs, type EntityRatchetResponse, type EthCallRequest, type EthSendTransactionRequest, type ExecutionUnitPriceResponse, type ExpireClusterJoinCalldataArgs, type ExplorerEndpoint, FEED_ID_DOMAIN_TAG, type FeeHistoryResponse, type FormClusterCalldataArgs, type FormClusterV2CalldataArgs, type GapRange, type GapRecord, type GapRecordsResponse, type GenesisVerdict, type GetClusterJoinRequestCalldataArgs, type Hash, type HealthSummary, type Hex, type IndexerStatus, type JailStatusWindow, type KeyRotationWindow, LYTHOSHI_PER_LYTH, LYTH_DECIMALS, type LatencyBands, type ListProofRequestsResponse, type LythFormatOptions, type LythUpgradePlanStatus, type LythUpgradeStatusResponse, MAX_MULTISIG_MEMBERS, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES, MAX_NATIVE_RECEIPT_EVENTS, MIN_EXECUTION_UNIT_PRICE_LYTHOSHI, MIN_MULTISIG_MEMBERS, ML_DSA_65_PUBLIC_KEY_LEN, ML_DSA_65_SIGNATURE_LEN, MONOLYTHIUM_NETWORKS, MONOLYTHIUM_TESTNET_CHAIN_ID, MONOLYTHIUM_TESTNET_NETWORK_NAME, MRV_DEPLOY_PAYLOAD_VERSION, MRV_FORMAT_VERSION, MRV_MAX_ABI_SYMBOLS, MRV_MAX_CODE_BYTES, MRV_MAX_DEBUG_BYTES, MRV_MAX_MEMORY_PAGES, MRV_MAX_STORAGE_NAMESPACE_BYTES, MRV_MEMORY_PAGE_BYTES, MRV_PROFILE_MONO_RV32IM_V1, MRV_STRUCTURED_FEE_FIELDS, MRV_TX_EXTENSION_KIND, MRV_TX_EXTENSION_V1, MULTISIG_ADDRESS_DERIVATION_DOMAIN$1 as MULTISIG_ADDRESS_DERIVATION_DOMAIN, MULTISIG_ADDRESS_DERIVATION_DOMAIN as MULTISIG_WITNESS_ADDRESS_DERIVATION_DOMAIN, MULTISIG_WITNESS_DOMAIN, MarketActionError, type MarketTransactionPlan, type MemberPubkeyInput, type MempoolSnapshot, type MeshDecodedTx, type MeshSignedTxResponse, type MeshTxIntent, type MeshUnsignedTxResponse, type MetricsRangeResponse, type MetricsRangeSample, type MetricsRangeSeries, type MetricsRangeStatus, type MonolythiumNetworkConfig, type MrcAccountRecord, type MrcAccountRequest, type MrcAccountResponse, type MrcHoldersRequest, type MrcHoldersResponse, type MrcMetadataRecord, type MrcMetadataResponse, type MrcPolicyRecord, type MrcPolicySpendRecord, type MrvAbiManifest, type MrvAbiParam, type MrvAbiSymbol, type MrvAbiSymbolKind, type MrvAbiType, type MrvAddressKind, type MrvArtifactMetadata, type MrvBuildMetadata, type MrvBytesLike, type MrvCallNativeTxOptions, type MrvCallNativeTxPlan, type MrvCallPlan, type MrvCallRequest, type MrvCallResponse, type MrvCallStatus, type MrvCallSubmission, type MrvCallSubmitOptions, type MrvDecimalLike, type MrvDeployNativeTxOptions, type MrvDeployNativeTxPlan, type MrvDeployPayload, type MrvDeployPayloadNativeTxOptions, type MrvDeployPayloadPlanOptions, type MrvDeployPayloadRequestOptions, type MrvDeployPayloadSubmission, type MrvDeployPayloadSubmitOptions, type MrvDeployPlan, type MrvDeployPlanOptions, type MrvDeployRequest, type MrvDeployResponse, type MrvDeploySubmission, type MrvDeploySubmitOptions, type MrvEventRecord, type MrvExecutionReceipt, type MrvFeeDisplayConformanceInput, type MrvFeeDisplayConformanceReport, type MrvMemoryLimits, type MrvMeterCounters, type MrvNativeFeePreview, type MrvNativeStateDelta, type MrvNativeTxFacade, type MrvRequestBuildOptions, type MrvResolvedSyscall, type MrvRevertPayload, type MrvRiscvProfile, type MrvStorageNamespace, type MrvStructuredFeeConformanceOptions, type MrvStructuredFeeConformanceReport, type MrvSubmissionResult, type MrvSyscallImport, type MrvTransactionExtension, type MrvTypedAddress, type MrvValidatedArtifactMetadata, MrvValidationError, MultisigError, type MultisigMember, type MultisigMemberSignature, type MultisigWitness, NAME_BASE_MULTIPLIER, NAME_FALLBACK_FEE_UNIT_LYTHOSHI, NAME_LABEL_MAX_LEN, NAME_LABEL_MIN_LEN, NAME_MAX_LEN, NAME_REGISTRY_SELECTORS, NATIVE_AGENT_MODULE_ADDRESS, NATIVE_AGENT_MODULE_ADDRESS_BYTES, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET, NATIVE_DEV_HOST_API_VERSION, NATIVE_DEV_IPC_PROTOCOL_VERSION, NATIVE_DEV_MANIFEST_SCHEMA_VERSION, NATIVE_LYTH_DECIMALS, NATIVE_MARKET_EVENT_FAMILY, NATIVE_MARKET_MODULE_ADDRESS, NATIVE_MARKET_MODULE_ADDRESS_BYTES, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC, NODE_REGISTRY_ARCHIVE_CHALLENGE_DOMAIN, NODE_REGISTRY_ARCHIVE_KIND_EPOCH_SEED, NODE_REGISTRY_ARCHIVE_NONCE_DOMAIN, NODE_REGISTRY_BLS_PUBKEY_BYTES, NODE_REGISTRY_CAPABILITIES, NODE_REGISTRY_CAPABILITY_MASK, NODE_REGISTRY_CHALLENGE_EPOCH_WINDOW, NODE_REGISTRY_CHARTER_COOLDOWN_EPOCHS, NODE_REGISTRY_CLUSTER_CHARTER_BYTES, NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS, NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES, NODE_REGISTRY_CONSENSUS_POP_BYTES, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN_V2, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES, NODE_REGISTRY_MAX_MERKLE_PROOF_DEPTH, NODE_REGISTRY_MERKLE_INNER_DOMAIN, NODE_REGISTRY_MERKLE_LEAF_DOMAIN, NODE_REGISTRY_MIN_ARCHIVE_LEAF_COUNT, NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI, NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES, NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID, NODE_REGISTRY_PUBLIC_SERVICE_MASK, NODE_REGISTRY_SEAT_KIND_ACTIVE, NODE_REGISTRY_SEAT_KIND_STANDBY, NODE_REGISTRY_SELECTORS, NODE_REGISTRY_SUBKIND_CHARTER_DELEGATOR_BPS, NODE_REGISTRY_SUBKIND_CHARTER_MEMBER_SHARES, NODE_REGISTRY_TAG_ARCHIVE_CHALLENGE, NODE_REGISTRY_TAG_CLUSTER_CHARTER, NODE_REGISTRY_TAG_CLUSTER_SEAT, NODE_REGISTRY_TAG_SERVICE_SCORE, NODE_REGISTRY_TAG_TREASURY, NODE_REGISTRY_UPDATE_CHARTER_MESSAGE_DOMAIN, NODE_REGISTRY_UPDATE_CHARTER_THRESHOLD, NO_EVM_ARCHIVE_PROOF_SCHEMA, NO_EVM_ARCHIVE_SIGNATURE_SCHEME, NO_EVM_FINALITY_EVIDENCE_SCHEMA, NO_EVM_FINALITY_EVIDENCE_SOURCE, NO_EVM_RECEIPTS_ROOT_DOMAIN, NO_EVM_RECEIPT_CODEC, NO_EVM_RECEIPT_PROOF_SCHEMA, NO_EVM_RECEIPT_PROOF_TYPE, NO_EVM_RECEIPT_ROOT_ALGORITHM, type NameCategory, type NameOfResponse, type NameRegistrationQuote, NameRegistryError, type NativeAgentAddressInput, type NativeAgentAddressKind, type NativeAgentArbiterStateRecord, type NativeAgentAttestationStateRecord, type NativeAgentAvailabilityStateRecord, type NativeAgentConsentStateRecord, type NativeAgentEscrowResolution, type NativeAgentEscrowStateRecord, type NativeAgentForwarderInput, type NativeAgentIssuerStateRecord, type NativeAgentModuleCallEnvelope, type NativeAgentModuleContractCall, type NativeAgentPolicySpendStateRecord, type NativeAgentPolicyStateRecord, type NativeAgentReputationReviewStateRecord, type NativeAgentReputationScores, type NativeAgentServiceStateRecord, type NativeAgentStateFilter, type NativeAgentStateFilterParamValue, type NativeAgentStateResponse, type NativeAgentStateResponseFilters, type NativeAgentStateSource, type NativeCallForwarderArtifact, type NativeCollectionRoyaltyStateRecord, type NativeDecodedEvent, type NativeDevApprovalKind, type NativeDevCommandName, type NativeDevContractPassport, type NativeDevHostApprovalResultMessage, type NativeDevHostCommandMessage, type NativeDevHostContextMessage, type NativeDevIpcMessage, type NativeDevMrcAllocation, type NativeDevMrcAssetKind, type NativeDevMrcTokenPlan, type NativeDevMrvDeployPlan, type NativeDevRiskLabel, type NativeDevRiskSeverity, type NativeDevSidecarApprovalRequestMessage, type NativeDevSidecarCommandResultMessage, type NativeDevSidecarProjectEventMessage, type NativeDevSidecarReadyMessage, type NativeDevVerificationBundle, type NativeDevWalletApprovalRequest, type NativeDevkitArchive, type NativeDevkitChannel, type NativeDevkitCompatibility, type NativeDevkitManifest, type NativeDevkitSidecarManifest, type NativeDevkitSidecarStatus, type NativeDevkitStatus, type NativeEventConsumer, type NativeEventFilter, type NativeEventProjection, type NativeEventsFilter, type NativeEventsResponse, type NativeEventsResponseFilters, type NativeEventsSource, type NativeMarketAddressInput, type NativeMarketAddressKind, type NativeMarketForwarderInput, type NativeMarketModuleCallEnvelope, type NativeMarketModuleContractCall, type NativeMarketOrderBookDelta, type NativeMarketOrderBookDeltasRequest, type NativeMarketOrderBookDeltasResponse, type NativeMarketOrderBookDeltasResponseFilters, type NativeMarketOrderBookDeltasSource, type NativeMarketOrderBookStreamAction, type NativeMarketOrderBookStreamPayload, type NativeMarketStateFilter, type NativeMarketStateFilterParamValue, type NativeMarketStateResponse, type NativeMarketStateResponseFilters, type NativeMarketStateSource, type NativeModuleForwarderDescriptor, type NativeMrcPolicyProjection, type NativeNftAssetStandard, type NativeNftListingKind, type NativeNftListingStateRecord, type NativeReceiptCounters, type NativeReceiptEvent, type NativeReceiptFee, type NativeReceiptFeeDisplay, type NativeReceiptResponse, type NativeReceiptSource, type NativeSpotMarketStateRecord, type NativeSpotOrderStateRecord, type NetworkClientOptions, type NetworkSlug, type NoEvmArchiveCoveringSnapshot, type NoEvmArchiveProof, type NoEvmArchiveSignatureVerification, type NoEvmArchiveSignatureVerificationIssue, type NoEvmArchiveSignatureVerificationIssueCode, type NoEvmArchiveTrustedSigner, type NoEvmBlockBlsFinalityVerification, type NoEvmBlockRoundFinalityVerification, type NoEvmBlsFinalityVerification, type NoEvmFinalityBlockReference, type NoEvmFinalityCertificate, type NoEvmFinalityEvidence, type NoEvmReceiptFinalityTrustPolicy, type NoEvmReceiptProof, NoEvmReceiptProofError, type NoEvmReceiptProofErrorCode, type NoEvmReceiptProofVerification, type NoEvmReceiptTrustIssue, type NoEvmReceiptTrustIssueCode, type NoEvmReceiptTrustPolicy, type NoEvmReceiptTrustVerification, type NoEvmReceiptTrustedBlsSigner, type NoEvmReceiptTrustedSigner, type NoEvmRoundFinalityVerification, type NodeHostingClass, NodeRegistryError, type NonInclusionProofEnvelope, OPERATOR_ROUTER_ADDRESS, OPERATOR_ROUTER_EVENT_SIGS, OPERATOR_ROUTER_SELECTORS, OPERATOR_ROUTER_SIGS, ORACLE_EVENT_SIGS, type OpenSeatView, type OperatorAuthorityResponse, type OperatorCapabilitiesResponse, type OperatorFeeChargedEvent, type OperatorFeeConfig, type OperatorFeeQuote, type OperatorInfoResponse, type OperatorNetworkMetadata, type OperatorNetworkMetadataView, type OperatorOnboardingPreview, type OperatorRiskResponse, type OperatorRouterConfig, type OperatorSigningActivityResponse, type OperatorSigningEntry, type OperatorSurfaceCapability, type OperatorSurfaceStatus, OperatorTrustError, type OperatorTrustReason, type OracleEvent, OracleEventError, type OracleFeedConfig, type OracleLatestPrice, type OracleSignerRow, type OracleSignersResponse, type OracleWriters, type P2pSeed, PENDING_CHANGE_KIND_CODES, PRECOMPILE_ADDRESSES, PROOF_KIND_BINARY, PROTOCOL_MAX_OPERATOR_FEE_BPS, PROVER_MARKET_ADDRESS, PROVER_MARKET_BID_DOMAIN, PROVER_MARKET_EVENT_SIGS, PROVER_MARKET_REQUEST_DOMAIN, PROVER_MARKET_SELECTORS, PROVER_MARKET_SUBMIT_DOMAIN, PROVER_SLASH_REASON_BAD_PROOF, PROVER_SLASH_REASON_NON_DELIVERY, PUBKEY_REGISTRY_ML_DSA_65_PUBLIC_KEY_LEN, PUBKEY_REGISTRY_SELECTORS, type ParsedName, type PeerSummary, type PeerSummaryAggregate, type PendingChangeKind, type PendingCharterView, type PendingRewardsResponse, type PendingRewardsRow, type PendingTxSummary, type PlaceLimitOrderViaArgs, type PlaceLimitOrderViaPlan, type PlaceSpotLimitOrderArgs, type PlaceSpotMarketOrderArgs, type PlaceSpotMarketOrderExArgs, type PrecompileAddress, type PrecompileCatalogueResponse, type PrecompileDescriptor, type PrecompileName, type ProofEnvelope, type ProofRequestRow, type ProofRequestView, ProofVerifier, ProofVerifyError, type ProofVerifyErrorCode, type ProverBidView, type ProverBidsResponse, ProverMarketError, type ProverMarketState, type ProverMarketStatusResponse, type PubkeyLookup, PubkeyRegistryError, QUARANTINED_RPC_CODE, type Quantity, type QuoteLiquidity, REGISTRY_DEFAULT_EXECUTION_UNIT_LIMIT, RESERVED_ADDRESS_HRPS, type RankedBridgeRoute, type ReceiptProofTrustArchivePolicy, type ReceiptProofTrustArchiveSigner, type ReceiptProofTrustFinalityPolicy, type ReceiptProofTrustFinalitySigner, type ReceiptProofTrustPolicy, type RedemptionQueueResponse, type RedemptionQueueTicket, type RegistryRecord, type ReportServiceProbeCalldataArgs, type ReportServiceProbeRequest, type ReportServiceProbeResponse, type RequestClusterJoinCalldataArgs, type ResolveNameResponse, type ResolvedExecutionFee, type RichListHolder, type RichListResponse, type RoundCertificateResponse, type RoundInfo, RpcClient, type RpcClientOptions, type RpcEndpoint, type RuntimeBuildProvenance, type RuntimeProvenanceResponse, type RuntimeUpgradeStatus, SEAT_ADVERTISED_EVENT_SIG, SEAT_APPLIED_EVENT_SIG, SEAT_CLOSED_EVENT_SIG, SEAT_FILLED_EVENT_SIG, SEAT_KINDS, SEAT_STATUS_CODES, SERVES_GPU_PROVE, SERVICE_PROBE_STATUS, SET_POLICY_CLAIM_DOMAIN_TAG, SPENDING_POLICY_SELECTORS, SdkError, type SearchHit, type SearchResponse, type SeatAdvertisedEvent, type SeatApplicationView, type SeatAppliedEvent, type SeatClosedEvent, type SeatFeeOptions, type SeatFilledEvent, type SeatKind, type SeatStatus, type SeatTxFee, type ServiceProbeResponse, type ServiceProbeStatusLabel, type SetOperatorDisplayCalldataArgs, type SigningEntryStatus, type SpendingPolicyArgs, SpendingPolicyError, type SpendingPolicyTimeWindow, type SpendingPolicyView, type SpotLimitOrderSide, type SpotMarketOrderMode, type StorageProofBatch, type StudioHostState, type StudioHostStatus, type SubmitPendingChangeCalldataArgs, type SubmitRequestClusterJoinArgs, type SubmitVoteClusterAdmitArgs, type SwapIntentStatus, type SyncStatus, TESTNET_69420, TOKEN_FACTORY_CREATE_DEPOSIT_LYTHOSHI, TOKEN_FACTORY_FLAGS, TOKEN_FACTORY_KNOWN_FLAG_MASK, TOKEN_FACTORY_MAX_CREATOR_FEE_BPS, TOKEN_FACTORY_MAX_DECIMALS, TOKEN_FACTORY_NAME_MAX_BYTES, TOKEN_FACTORY_SELECTORS, TOKEN_FACTORY_SIGS, TOKEN_FACTORY_SYMBOL_MAX_BYTES, TOKEN_FACTORY_TOKEN_ID_DOMAIN_TAG, TRANSFER_DEFAULT_EXECUTION_UNIT_LIMIT, TX_EXTENSION_KIND_MULTISIG, TX_EXTENSION_MULTISIG_V1, type TokenBalanceMrcIdentity, type TokenBalanceRecord, type TokenBalanceWithMetadata, type TokenFactoryAddressInput, type TokenFactoryBytes32Input, TokenFactoryError, type TokenFactoryUintInput, type TotalBurnedResponse, type TpmAttestationResponse, type TransactionFeeExposure, type TransactionReceipt, type TransactionView, type TxConfirmations, type TxFeedReceipt, type TxFeedResponse, type TxFeedTransaction, type TxStatusFoundResponse, type TxStatusNotFoundResponse, type TxStatusResponse, type TypedAddress, type TypedNativeReceiptEvent, type UpcomingDutiesResponse, type UpcomingDutyMap, type UpdateCharterCalldataArgs, type UserAddressInput, V1_BRIDGE_ALLOWED_FEE_TOKEN, V1_BRIDGE_ALLOWED_PROTOCOL, VRF_DOMAIN_TAG_MAX_BYTES, VRF_HEIGHT_NOT_FINALIZED_REVERT, VRF_OUTPUT_BYTES, type VertexAtRound, type VerticesAtRoundResponse, type VoteClusterAdmitCalldataArgs, type VoteSeatAdmitCalldataArgs, VrfCallError, type VrfDomainTagInput, type WithdrawSeatApplicationCalldataArgs, addressBytesToHex, addressToBech32, addressToTypedBech32, allowRootFor, apiEndpointFromRpcEndpoint, archiveMerkleInnerHash, archiveMerkleLeafHash, asBinaryProofEnvelope, assembleMultisigSigned, assembleMultisigWitness, assertMrvCallNativeSubmissionPlan, assertMrvDeployNativeSubmissionPlan, assertMrvFeeDisplayConformance, assertMrvStructuredFeeConformance, assertNativeDevMrcTokenPlan, assertNativeDevMrvDeployPlan, assertNativeDevWalletApprovalRequest, assertNativeMarketOrderBookStreamPayload, assessBridgeRoute, bech32ToAddress, bech32ToAddressBytes, bidSighash, bridgeAddressHex, bridgeDrainRemaining, bridgeQuoteSubmitReadiness, bridgeRoutesReadiness, bridgeTransferCandidates, buildAdvertiseSeatTxFields, buildApplyForSeatTxFields, buildBridgeRouteCatalogue, buildCancelSpotOrderPlan, buildCloseSeatTxFields, buildMrvCallNativeTxPlan, buildMrvCallPlan, buildMrvCallRequest, buildMrvDeployNativeTxPlan, buildMrvDeployPayloadNativeTxPlan, buildMrvDeployPayloadPlan, buildMrvDeployPayloadRequest, buildMrvDeployPlan, buildMrvDeployRequest, buildNativeAgentCreateEscrowForwarderInput, buildNativeAgentCreateEscrowModuleCall, buildNativeAgentModuleCallEnvelope, buildNativeAgentRecordReputationForwarderInput, buildNativeAgentRecordReputationModuleCall, buildNativeAgentSetSpendingPolicyForwarderInput, buildNativeAgentSetSpendingPolicyModuleCall, buildNativeCallForwarderArtifact, buildNativeMarketModuleCallEnvelope, buildNativeNftBuyListingForwarderInput, buildNativeNftBuyListingModuleCall, buildNativeNftCancelListingForwarderInput, buildNativeNftCancelListingModuleCall, buildNativeNftCreateListingForwarderInput, buildNativeNftCreateListingModuleCall, buildNativeNftPlaceAuctionBidForwarderInput, buildNativeNftPlaceAuctionBidModuleCall, buildNativeNftSettleAuctionForwarderInput, buildNativeNftSettleAuctionModuleCall, buildNativeNftSweepExpiredListingsForwarderInput, buildNativeNftSweepExpiredListingsModuleCall, buildNativeSpotCancelOrderForwarderInput, buildNativeSpotCancelOrderModuleCall, buildNativeSpotCreateMarketForwarderInput, buildNativeSpotCreateMarketModuleCall, buildNativeSpotLimitOrderForwarderInput, buildNativeSpotLimitOrderModuleCall, buildNativeSpotSettleLimitOrderForwarderInput, buildNativeSpotSettleLimitOrderModuleCall, buildNativeSpotSettleRoutedLimitOrderForwarderInput, buildNativeSpotSettleRoutedLimitOrderModuleCall, buildPlaceLimitOrderViaPlan, buildPlaceSpotLimitOrderPlan, buildPlaceSpotMarketOrderExPlan, buildPlaceSpotMarketOrderPlan, buildRequestClusterJoinTxFields, buildVoteClusterAdmitTxFields, buildVoteSeatAdmitTxFields, buildWithdrawSeatApplicationTxFields, categoryRoot, checkMrvFeeDisplayConformance, checkMrvStructuredFeeConformance, checkNativeDevkitCompatibility, clampPriorityTip, clobAddressHex, clusterApyPercent, clusterJoinRequestExists, compareNativeDevVersions, composeClaimBoundMessage, computeNoEvmDacFinalityMessage, computeNoEvmLeaderFinalityMessage, computeNoEvmReceiptsRoot, computeNoEvmRoundFinalityMessage, computeNoEvmTargetReceiptHash, computeQuoteLiquidity, consumeNativeEvents, decodeActiveCharter, decodeClusterCharter, decodeClusterDiversity, decodeClusterFormedEvent, decodeClusterJoinRequest, decodeHasPubkeyReturn, decodeLookupPubkeyReturn, decodeNativeAgentStateResponse, decodeNativeMarketOrderBookDeltasResponse, decodeNativeReceiptResponse, decodeNoEvmReceiptTranscript, decodeOperatorFeeChargedEvent, decodeOperatorNetworkMetadata, decodeOracleEvent, decodePendingCharter, decodeProbeAuthority, decodeScoreServiceProbe, decodeSeatAdvertisedEvent, decodeSeatAppliedEvent, decodeSeatClosedEvent, decodeSeatFilledEvent, decodeTimeWindow, decodeTokenFactoryTokenId, decodeTxFeedResponse, decodeVrfOutput, delegationAddressHex, denyRootFor, deriveArchiveChallenge, deriveClobMarketId, deriveClusterAnchorAddress, deriveClusterJoinOperatorId, deriveFeedId, deriveMrvContractAddress, deriveMultisigAddress, deriveMultisigAddressBytes, deriveNativeSpotMarketId, deriveNativeSpotOrderId, deriveSeatApplicationKey, deriveTokenFactoryTokenId, destinationRoot, encodeAdvertiseSeatCalldata, encodeAnswerArchiveChallengeCalldata, encodeApplyForSeatCalldata, encodeAttestDkgReshareCalldata, encodeAttestServiceProbeCalldata, encodeBlockSelector, encodeBridgeChallengeCalldata, encodeBridgeClaimCalldata, encodeCancelClusterJoinCalldata, encodeCancelOrderCalldata, encodeCancelPendingChangeCalldata, encodeClaimCalldata, encodeClaimPolicyByAddressCalldata, encodeCloseSeatCalldata, encodeClusterCharter, encodeCommitArchiveRootCalldata, encodeCreateFixedSupplyMrc20Calldata, encodeCreateRequestCalldata, encodeCreateRequestCanonical, encodeCreateTokenCalldata, encodeDelegateCalldata, encodeDisableCalldata, encodeEnableCalldata, encodeExpireClusterJoinCalldata, encodeFormClusterCalldata, encodeFormClusterV2Calldata, encodeGetClusterJoinRequestCalldata, encodeGetPendingCharterCalldata, encodeGetProbeAuthorityCalldata, encodeHasPubkeyCalldata, encodeLockBridgeConfigCalldata, encodeLookupPubkeyCalldata, encodeMrvDeployPayload, encodeMultisigWitnessBody, encodeNameAcceptTransferCall, encodeNameProposeTransferCall, encodeNameRegisterCall, encodeNativeAgentAcceptEscrowCall, encodeNativeAgentApproveEscrowCall, encodeNativeAgentArbiterGetCall, encodeNativeAgentAttestationGetCall, encodeNativeAgentAvailabilityGetCall, encodeNativeAgentCancelEscrowCall, encodeNativeAgentCloseAvailabilityCall, encodeNativeAgentConsentGetCall, encodeNativeAgentCounterEscrowCall, encodeNativeAgentCreateEscrowCall, encodeNativeAgentDeactivateServiceCall, encodeNativeAgentDisputeEscrowCall, encodeNativeAgentEscrowGetCall, encodeNativeAgentGrantConsentCall, encodeNativeAgentIssueAttestationCall, encodeNativeAgentIssuerGetCall, encodeNativeAgentListServiceCall, encodeNativeAgentModuleForwarderInput, encodeNativeAgentOpenAvailabilityCall, encodeNativeAgentRecordPolicySpendCall, encodeNativeAgentRecordReputationCall, encodeNativeAgentRegisterArbiterCall, encodeNativeAgentRegisterIssuerCall, encodeNativeAgentReputationGetCall, encodeNativeAgentResolveEscrowCall, encodeNativeAgentRevokeAttestationCall, encodeNativeAgentRevokeConsentCall, encodeNativeAgentServiceGetCall, encodeNativeAgentSetAvailabilityCall, encodeNativeAgentSetSpendingPolicyCall, encodeNativeAgentSpendingPolicyGetCall, encodeNativeAgentStartEscrowCall, encodeNativeAgentSubmitEscrowCall, encodeNativeMarketModuleForwarderInput, encodeNativeNftBuyListingCall, encodeNativeNftCancelListingCall, encodeNativeNftCreateListingCall, encodeNativeNftPlaceAuctionBidCall, encodeNativeNftSettleAuctionCall, encodeNativeNftSweepExpiredListingsCall, encodeNativeSpotCancelOrderCall, encodeNativeSpotCreateMarketCall, encodeNativeSpotLimitOrderCall, encodeNativeSpotSettleLimitOrderCall, encodeNativeSpotSettleRoutedLimitOrderCall, encodePlaceLimitOrderCalldata, encodePlaceLimitOrderViaCalldata, encodePlaceMarketOrderCalldata, encodePlaceMarketOrderExCalldata, encodeRecoverOperatorNodeCalldata, encodeRedelegateCalldata, encodeRegisterPubkeyCalldata, encodeReportServiceProbeCalldata, encodeRequestClusterJoinCalldata, encodeSetAutoCompoundCalldata, encodeSetBridgeResumeCooldownCalldata, encodeSetBridgeRouteFinalityCalldata, encodeSetLotSizeCalldata, encodeSetMinNotionalCalldata, encodeSetOperatorDisplayCalldata, encodeSetPolicyCalldata, encodeSetPolicyClaimCalldata, encodeSetProbeAuthorityCalldata, encodeSetTickSizeCalldata, encodeSubmitBridgeProofCalldata, encodeSubmitPendingChangeCalldata, encodeTokenFactoryAllowanceCalldata, encodeTokenFactoryApproveCalldata, encodeTokenFactoryBalanceOfCalldata, encodeTokenFactoryBurnCalldata, encodeTokenFactoryDecreaseAllowanceCalldata, encodeTokenFactoryDestroyCalldata, encodeTokenFactoryIncreaseAllowanceCalldata, encodeTokenFactoryMetadataCalldata, encodeTokenFactoryMintCalldata, encodeTokenFactorySetPausedCalldata, encodeTokenFactoryTotalSupplyCalldata, encodeTokenFactoryTransferCalldata, encodeTokenFactoryTransferFromCalldata, encodeTokenFactoryTransferOwnershipCalldata, encodeUndelegateCalldata, encodeUpdateCharterCalldata, encodeVoteClusterAdmitCalldata, encodeVoteSeatAdmitCalldata, encodeVrfEvaluateCalldata, encodeWithdrawSeatApplicationCalldata, exportBridgeRouteCatalogueJson, fetchChainInfoLatest, fetchChainRegistryLatest, formClusterMessage, formClusterMessageHex, formClusterMessageV2, formClusterMessageV2Hex, formatLyth, formatLythoshi, formatNativeReceiptFeeDisplay, formatOraclePrice, getChainInfo, getNoEvmReceiptTrustPolicy, getP2pSeeds, getRpcEndpoints, hashToHex, hexToAddressBytes, isBridgeAdminLockedRevert, isBridgeCooldownZeroRevert, isBridgeFinalityZeroRevert, isBridgeResumeCooldownActiveRevert, isConcreteServiceProbeStatus, isNativeDecodedEvent, isNativeMarketOrderBookStreamPayload, isQuarantineError, isSinglePublicServiceProbeMask, isUnexpectedValueRevert, isValidNodeRegistryCapabilities, isValidPublicServiceProbeMask, mrvAddressToBech32, mrvBech32ToAddress, mrvCodeHashHex, mrvV1TransactionExtension, multisigBaseSighash, multisigMemberIndex, nameLengthModifierX10, nameRegistrationCost, nameRegistryAddressHex, nativeAgentStateFilterParams, nativeDevSchemaFieldNames, nativeDevUiStrings, nativeEventMatches, nativeEventsFilterParams, nativeEventsFromHistory, nativeEventsFromReceipt, nativeMarketEventFilter, nativeMarketEventsFromHistory, nativeMarketEventsFromReceipt, nativeMarketStateFilterParams, noEvmReceiptTrustPolicyFromChainInfo, nodeHostingClassFromByte, nodeHostingClassToByte, nodeRegistryAddressHex, normalizeAddressHex, normalizeBridgeRouteCatalogue, normalizePendingChangeKind, openSeatFromAdvertised, oracleAddressHex, oraclePriceToNumber, packTimeWindow, parseAddress, parseBridgeRouteCatalogueJson, parseChainRegistryToml, parseDkgResharePublicKeys, parseLythToLythoshi, parseNameCategory, parseNativeDecodedEvent, parseQuantity, parseQuantityBig, preflightClusterJoinRequest, previewRequestClusterJoin, previewVoteClusterAdmit, proofVerifier, protocolNonceForEpoch, proverMarketStateFromByte, pubkeyRegistryAddressHex, quoteOperatorFee, rankBridgeRoutes, rankMarketsByVolume, readClusterJoinRequest, requestSighash, requireTypedAddress, resolveClusterJoinExecutionFee, resolveExecutionFee, resolveMaxExecutionUnitPrice, resolveRegistryExecutionFee, resolveSeatExecutionFee, resolveStudioHostStatus, seatKindFromByte, seatKindToByte, seatStatusFromByte, selectBridgeTransferRoute, selectTrustedOperator, selectTrustedOperatorForNetwork, serviceMaskToBitIndex, serviceProbeStatusLabel, setDestinationRoot, slotArchiveChallengePass, slotClusterCharter, slotClusterCharterDelegator, slotClusterCharterMembers, slotClusterServiceScore, slotEpochChallengeSeed, slotProbeAuthority, slotScoreServiceProbe, sortMultisigMembers, spendingPolicyAddressHex, submitMrvCallNativeTx, submitMrvDeployNativeTx, submitMrvDeployPayloadNativeTx, submitRequestClusterJoin, submitSighash, submitVoteClusterAdmit, tokenFactoryAddressHex, transactionFeeExposure, typedBech32ToAddress, updateCharterMessage, updateCharterMessageHex, validateAddress, validateBridgeRouteCatalogue, validateMrvArtifactMetadata, validateMrvCallRequest, validateMrvDeployRequest, validateMultisigRoster, validateTokenFactoryFlags, verifyNoEvmArchiveProofSignatures, verifyNoEvmBlockFinalityEvidenceMultisig, verifyNoEvmBlockFinalityEvidenceThreshold, verifyNoEvmFinalityEvidenceMultisig, verifyNoEvmFinalityEvidenceThreshold, verifyNoEvmReceiptProof, verifyNoEvmReceiptProofTrust, verifyOperatorGenesis, version, vrfAddressHex };