@monolythium/core-sdk 0.3.14 → 0.3.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/crypto/index.cjs +5 -73
- package/dist/crypto/index.cjs.map +1 -1
- package/dist/crypto/index.d.cts +2 -2
- package/dist/crypto/index.d.ts +2 -2
- package/dist/crypto/index.js +5 -74
- package/dist/crypto/index.js.map +1 -1
- package/dist/index.cjs +75 -201
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.js +75 -201
- package/dist/index.js.map +1 -1
- package/dist/{submission-vhPqAwkD.d.cts → submission-BeEYbbGi.d.cts} +66 -17
- package/dist/{submission-vhPqAwkD.d.ts → submission-BeEYbbGi.d.ts} +66 -17
- package/package.json +1 -1
|
@@ -473,7 +473,11 @@ type MrcAccountRecord = {
|
|
|
473
473
|
*/
|
|
474
474
|
controller: string;
|
|
475
475
|
/**
|
|
476
|
-
* Recovery address registered for this account, when smart-account state
|
|
476
|
+
* Recovery address registered for this account, when smart-account state
|
|
477
|
+
* carries one. ADVISORY / DISPLAY-ONLY: this is an inert stored field —
|
|
478
|
+
* the chain has no on-chain account `Recover` / `RotateController` path
|
|
479
|
+
* yet, so a registered recovery address cannot currently be exercised.
|
|
480
|
+
* Surfaces MUST NOT present this as a working "recover account" action.
|
|
477
481
|
*/
|
|
478
482
|
recovery: string | null;
|
|
479
483
|
/**
|
|
@@ -4177,8 +4181,8 @@ declare const NAME_REGISTRY_SELECTORS: {
|
|
|
4177
4181
|
};
|
|
4178
4182
|
/** Per-category base multiplier (`validate.rs` `base_multiplier`). `system` is not user-registerable. */
|
|
4179
4183
|
declare const NAME_BASE_MULTIPLIER: Record<Exclude<NameCategory, "system">, number>;
|
|
4180
|
-
/** Fallback fee unit when the block base fee reads zero (`ops.rs` `FALLBACK_FEE_UNIT_LYTHOSHI`). */
|
|
4181
|
-
declare const NAME_FALLBACK_FEE_UNIT_LYTHOSHI =
|
|
4184
|
+
/** Fallback fee unit when the block base fee reads zero (`ops.rs` `FALLBACK_FEE_UNIT_LYTHOSHI`); 18-decimal value per ADR-0037. */
|
|
4185
|
+
declare const NAME_FALLBACK_FEE_UNIT_LYTHOSHI = 1000000000000n;
|
|
4182
4186
|
declare const NAME_MAX_LEN = 80;
|
|
4183
4187
|
declare const NAME_LABEL_MIN_LEN = 1;
|
|
4184
4188
|
declare const NAME_LABEL_MAX_LEN = 63;
|
|
@@ -5334,7 +5338,18 @@ declare class RpcClient {
|
|
|
5334
5338
|
* tooling. Native callers should prefer `lythExecutionUnitPrice`.
|
|
5335
5339
|
*/
|
|
5336
5340
|
ethGasPrice(): Promise<bigint>;
|
|
5337
|
-
/**
|
|
5341
|
+
/**
|
|
5342
|
+
* `eth_feeHistory` — base-fee + gas-used history.
|
|
5343
|
+
*
|
|
5344
|
+
* The chain's eth-compat surface serializes the base-fee window under the
|
|
5345
|
+
* camelCase key `baseFeePerGas`. Internally the chain header field is
|
|
5346
|
+
* `base_fee_per_gas`; this method asserts the on-the-wire response actually
|
|
5347
|
+
* carries the expected `baseFeePerGas` array and fails LOUD if the field is
|
|
5348
|
+
* missing or has drifted to snake_case `base_fee_per_gas`. Without this
|
|
5349
|
+
* guard a future rename would silently collapse the base fee to an empty
|
|
5350
|
+
* array and over-/under-quote fees (e.g. name registration would fall back
|
|
5351
|
+
* to the placeholder fee unit and revert `IncorrectFee` on submit).
|
|
5352
|
+
*/
|
|
5338
5353
|
ethFeeHistory(blockCount: number, newestBlock?: BlockSelector, rewardPercentiles?: number[]): Promise<FeeHistoryResponse>;
|
|
5339
5354
|
/** `eth_syncing` — `null` when caught up. */
|
|
5340
5355
|
ethSyncing(): Promise<SyncStatus | null>;
|
|
@@ -5886,7 +5901,40 @@ interface PlaintextSubmission {
|
|
|
5886
5901
|
innerWireBytes: number;
|
|
5887
5902
|
}
|
|
5888
5903
|
declare function fetchEncryptionKey(client: RpcClient): Promise<EncryptionKey>;
|
|
5889
|
-
|
|
5904
|
+
/**
|
|
5905
|
+
* Error message returned when an encrypted-mempool submission is attempted.
|
|
5906
|
+
*
|
|
5907
|
+
* The encrypted-submit path is gated OFF until the chain's MB-3 Ferveo
|
|
5908
|
+
* threshold decryption is live (see {@link buildEncryptedSubmission}).
|
|
5909
|
+
*/
|
|
5910
|
+
declare const ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE = "encrypted mempool submission unavailable until MB-3 threshold decryption is active";
|
|
5911
|
+
/**
|
|
5912
|
+
* Encrypted-mempool submission is GATED OFF.
|
|
5913
|
+
*
|
|
5914
|
+
* The single-key ML-KEM-768 `scheme: 0` envelope this used to build is the
|
|
5915
|
+
* RETIRED scheme: a single operator holding the cluster decryption key could
|
|
5916
|
+
* decrypt the inner transaction, violating the threshold-privacy guarantee
|
|
5917
|
+
* the encrypted mempool promises. The live chain runs with plaintext
|
|
5918
|
+
* submission as the default and does NOT run threshold decryption yet, so
|
|
5919
|
+
* there is no safe encrypted path to emit.
|
|
5920
|
+
*
|
|
5921
|
+
* This helper therefore refuses to build any envelope and throws. It never
|
|
5922
|
+
* produces a `scheme: 0` (or any) envelope, so a wallet can never be tricked
|
|
5923
|
+
* into believing its transaction is privately decryptable by a threshold of
|
|
5924
|
+
* operators when it is in fact decryptable by one.
|
|
5925
|
+
*
|
|
5926
|
+
* Use {@link buildPlaintextSubmission} / {@link submitPlaintextTransaction}
|
|
5927
|
+
* (the unaffected default path) for transaction submission.
|
|
5928
|
+
*
|
|
5929
|
+
* TODO(MB-3): when the chain activates MB-3 threshold decryption, port the
|
|
5930
|
+
* chain's Ferveo `scheme = 2` path here — the `ThresholdPubkey` is a 96-byte
|
|
5931
|
+
* BLS12-381 G1 element fetched from `lyth_getEncryptionKey`, and the inner tx
|
|
5932
|
+
* is encrypted to that threshold public key (not a single ML-KEM-768
|
|
5933
|
+
* encapsulation key). Only then may an envelope be emitted again.
|
|
5934
|
+
*
|
|
5935
|
+
* @throws always — the encrypted path is unavailable.
|
|
5936
|
+
*/
|
|
5937
|
+
declare function buildEncryptedSubmission(_args: {
|
|
5890
5938
|
backend: MlDsa65Backend;
|
|
5891
5939
|
tx: NativeEvmTxFields;
|
|
5892
5940
|
encryptionKey: EncryptionKey;
|
|
@@ -5929,20 +5977,21 @@ declare function submitPlaintextTransaction(client: RpcClient, signedTxWireHex:
|
|
|
5929
5977
|
* Build, sign, and submit a native transaction with an explicit
|
|
5930
5978
|
* encryption toggle. `private == false` (the default for the RC testnet
|
|
5931
5979
|
* / operator posture) routes through the plaintext `mesh_submitTx`
|
|
5932
|
-
* path; `private == true` routes through the
|
|
5933
|
-
*
|
|
5980
|
+
* path; `private == true` routes through the encrypted pipeline.
|
|
5981
|
+
* Wallets wire a UI privacy toggle straight onto `private`.
|
|
5934
5982
|
*
|
|
5935
5983
|
* Mirrors `TxClient::build_sign_submit_with_privacy` in the Rust SDK.
|
|
5936
|
-
* The default is PLAINTEXT
|
|
5937
|
-
*
|
|
5938
|
-
*
|
|
5984
|
+
* The default is PLAINTEXT and is fully supported.
|
|
5985
|
+
*
|
|
5986
|
+
* MB-3 gate: `private === true` is currently UNAVAILABLE — the encrypted
|
|
5987
|
+
* path throws {@link ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE} via
|
|
5988
|
+
* {@link buildEncryptedSubmission} because the chain does not yet run
|
|
5989
|
+
* Ferveo threshold decryption and the retired single-key scheme is unsafe.
|
|
5990
|
+
* Keep wallet privacy toggles disabled until MB-3 activates.
|
|
5939
5991
|
*
|
|
5940
|
-
* @returns the
|
|
5941
|
-
*
|
|
5942
|
-
*
|
|
5943
|
-
* `lyth_submitEncrypted` RPC returns the encrypted-envelope admission
|
|
5944
|
-
* hash, so wallets track the canonical inner hash for receipts /
|
|
5945
|
-
* `lyth_txStatus` / indexer history).
|
|
5992
|
+
* @returns for the plaintext path, the node-echoed-and-validated canonical
|
|
5993
|
+
* native tx hash (`0x`-prefixed).
|
|
5994
|
+
* @throws when `private === true` (encrypted submission unavailable).
|
|
5946
5995
|
*/
|
|
5947
5996
|
declare function submitTransactionWithPrivacy(args: {
|
|
5948
5997
|
client: RpcClient;
|
|
@@ -5953,4 +6002,4 @@ declare function submitTransactionWithPrivacy(args: {
|
|
|
5953
6002
|
class?: MempoolClass;
|
|
5954
6003
|
}): Promise<string>;
|
|
5955
6004
|
|
|
5956
|
-
export { type AddressActivityKindResponse as $, type ApiStreamsIndexResponse as A, type BlockSelector as B, type ChainStatsResponse as C, type NativeEvmTxFields as D, type EncryptionKey as E, MempoolClass as F, type TypedAddress as G, RpcClient as H, MlDsa65Backend as I, type AddressKind as J, ADDRESS_HRP as K, ADDRESS_KIND_HRPS as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, API_STREAM_TOPICS as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, type AccountPolicy as U, type AccountProofResponse as V, type Address as W, type AddressActivityArchiveRedirect as X, type AddressActivityEntry as Y, type AddressActivityEntryEnriched as Z, type AddressActivityKind as _, type RuntimeUpgradeStatus as a, type ClobTrade as a$, type AddressActivityKindRetention as a0, AddressError as a1, type AddressLabelRecord as a2, type AddressValidation as a3, type AgentReputationCategoryScope as a4, type AgentReputationRecord as a5, type AgentReputationResponse as a6, type ApiStreamTopic as a7, type ApiStreamTopicMetadata as a8, type ApiStreamTopicRetention as a9, BridgeRouteCatalogueError as aA, type BridgeRouteCatalogueJsonOptions as aB, type BridgeRouteCataloguePayload as aC, type BridgeRouteCatalogueRoute as aD, type BridgeRouteCatalogueValidation as aE, type BridgeRouteDisclosure as aF, type BridgeRouteSelection as aG, type BridgeRoutesSource as aH, type BridgeTransferIntent as aI, type BridgeTransferRequest as aJ, type BridgeVerifierDisclosure as aK, CHAIN_REGISTRY as aL, CHAIN_REGISTRY_RAW_BASE as aM, CLOB_MARKET_ID_DOMAIN_TAG as aN, CLOB_SELECTORS as aO, CLUSTER_FORMED_EVENT_SIG as aP, type CancelPendingChangeCalldataArgs as aQ, type CancelSpotOrderArgs as aR, type CapabilitiesResponse as aS, type CapabilityDescriptor as aT, type ChainInfo as aU, type ChainRegistry as aV, type CheckpointRecord as aW, type CirculatingSupplyResponse as aX, type ClobMarketAssets as aY, type ClobMarketRecord as aZ, type ClobMarketSummary as a_, type AssetPolicy as aa, type AttestDkgReshareCalldataArgs as ab, type AttestationWindow as ac, BRIDGE_QUOTE_API_BLOCKED_REASON as ad, BRIDGE_REVERT_TAGS as ae, BRIDGE_SELECTORS as af, BRIDGE_SUBMIT_API_BLOCKED_REASON as ag, type BlockHeader as ah, type BlockTag as ai, type BlsCertificateResponse as aj, type BridgeAdminControl as ak, type BridgeAnchorState as al, type BridgeBreakerState as am, type BridgeBytesInput as an, type BridgeCircuitBreakerFields as ao, type BridgeCircuitBreakerState as ap, type BridgeDrainCap as aq, type BridgeDrainStatus as ar, type BridgeHealthRecord as as, type BridgeHealthResponse as at, BridgePrecompileError as au, type BridgeQuoteSubmitReadiness as av, type BridgeRiskTier as aw, type BridgeRouteAssessment as ax, type BridgeRouteCandidate as ay, type BridgeRouteCatalogue as az, type NativeReceiptResponse as b, type MarketTransactionPlan as b$, type ClusterAprResponse as b0, type ClusterDelegatorsResponse as b1, type ClusterDirectoryEntryResponse as b2, type ClusterDirectoryPageResponse as b3, type ClusterDiversity as b4, type ClusterDiversityView as b5, type ClusterEntityResponse as b6, type ClusterFormedEvent as b7, type ClusterMemberResponse as b8, type ClusterNameResponse as b9, type EncodeNativeSpotLimitOrderArgs as bA, type EncodeNativeSpotSettleLimitOrderArgs as bB, type EncodeNativeSpotSettleRoutedLimitOrderArgs as bC, type EncryptionKeyResponse as bD, type EntityRatchetResponse as bE, type EthSendTransactionRequest as bF, type ExecutionUnitPriceResponse as bG, type ExplorerEndpoint as bH, FEED_ID_DOMAIN_TAG as bI, type FeeHistoryResponse as bJ, type GapRange as bK, type GapRecord as bL, type GapRecordsResponse as bM, type Hash as bN, type Hex as bO, type IndexerStatus as bP, type JailStatusWindow as bQ, type KeyRotationWindow as bR, type ListProofRequestsResponse as bS, type LythUpgradePlanStatus as bT, type LythUpgradeStatusResponse as bU, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES as bV, MAX_NATIVE_RECEIPT_EVENTS as bW, ML_DSA_65_PUBLIC_KEY_LEN$1 as bX, ML_DSA_65_SIGNATURE_LEN$1 as bY, MULTISIG_ADDRESS_DERIVATION_DOMAIN as bZ, MarketActionError as b_, type ClusterResignationRow as ba, type ClusterResignationsResponse as bb, type ClusterStatusResponse as bc, type CreateRequestCanonicalArgs as bd, DIVERSITY_SCORE_MAX as be, type DagParent as bf, type DagParentsResponse as bg, type DagSyncStatus as bh, type DecodeTxExtension as bi, type DecodeTxLog as bj, type DecodeTxPqAttestation as bk, type DecodeTxResponse as bl, type DelegationCapResponse as bm, type DelegationHistoryRecord as bn, type DelegationRow as bo, type DelegationsResponse as bp, type DutyAbsence as bq, EMPTY_ROOT as br, type EncodeNativeNftBuyListingArgs as bs, type EncodeNativeNftCancelListingArgs as bt, type EncodeNativeNftCreateListingArgs as bu, type EncodeNativeNftPlaceAuctionBidArgs as bv, type EncodeNativeNftSettleAuctionArgs as bw, type EncodeNativeNftSweepExpiredListingsArgs as bx, type EncodeNativeSpotCancelOrderArgs as by, type EncodeNativeSpotCreateMarketArgs as bz, type NativeDecodedEvent as c, type NativeEventConsumer as c$, type MempoolSnapshot as c0, type MeshDecodedTx as c1, type MeshSignedTxResponse as c2, type MeshTxIntent as c3, type MeshUnsignedTxResponse as c4, type MetricsRangeResponse as c5, type MetricsRangeSample as c6, type MetricsRangeSeries as c7, type MetricsRangeStatus as c8, type MrcAccountRecord as c9, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as cA, NO_EVM_FINALITY_EVIDENCE_SCHEMA as cB, NO_EVM_FINALITY_EVIDENCE_SOURCE as cC, NO_EVM_RECEIPTS_ROOT_DOMAIN as cD, NO_EVM_RECEIPT_CODEC as cE, NO_EVM_RECEIPT_PROOF_SCHEMA as cF, NO_EVM_RECEIPT_PROOF_TYPE as cG, NO_EVM_RECEIPT_ROOT_ALGORITHM as cH, type NameCategory as cI, type NameOfResponse as cJ, type NameRegistrationQuote as cK, NameRegistryError as cL, type NativeAgentArbiterStateRecord as cM, type NativeAgentAttestationStateRecord as cN, type NativeAgentAvailabilityStateRecord as cO, type NativeAgentConsentStateRecord as cP, type NativeAgentEscrowStateRecord as cQ, type NativeAgentIssuerStateRecord as cR, type NativeAgentPolicySpendStateRecord as cS, type NativeAgentPolicyStateRecord as cT, type NativeAgentReputationReviewStateRecord as cU, type NativeAgentServiceStateRecord as cV, type NativeAgentStateFilterParamValue as cW, type NativeAgentStateResponseFilters as cX, type NativeAgentStateSource as cY, type NativeCallForwarderArtifact as cZ, type NativeCollectionRoyaltyStateRecord as c_, type MrcMetadataRecord as ca, type MrcPolicyRecord as cb, type MrcPolicySpendRecord as cc, NAME_BASE_MULTIPLIER as cd, NAME_FALLBACK_FEE_UNIT_LYTHOSHI as ce, NAME_LABEL_MAX_LEN as cf, NAME_LABEL_MIN_LEN as cg, NAME_MAX_LEN as ch, NAME_REGISTRY_SELECTORS as ci, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE as cj, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY as ck, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET as cl, NATIVE_MARKET_EVENT_FAMILY as cm, NATIVE_MARKET_MODULE_ADDRESS as cn, NATIVE_MARKET_MODULE_ADDRESS_BYTES as co, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as cp, NODE_REGISTRY_BLS_PUBKEY_BYTES as cq, NODE_REGISTRY_CAPABILITIES as cr, NODE_REGISTRY_CAPABILITY_MASK as cs, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS as ct, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS as cu, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES as cv, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID as cw, NODE_REGISTRY_PUBLIC_SERVICE_MASK as cx, NODE_REGISTRY_SELECTORS as cy, NO_EVM_ARCHIVE_PROOF_SCHEMA as cz, type NativeEventFilter as d, type OperatorRiskResponse as d$, type NativeEventProjection as d0, type NativeEventsResponseFilters as d1, type NativeEventsSource as d2, type NativeMarketAddressInput as d3, type NativeMarketAddressKind as d4, type NativeMarketForwarderInput as d5, type NativeMarketModuleCallEnvelope as d6, type NativeMarketModuleContractCall as d7, type NativeMarketOrderBookDelta as d8, type NativeMarketOrderBookDeltasResponseFilters as d9, type NoEvmBlsFinalityVerification as dA, type NoEvmFinalityBlockReference as dB, type NoEvmFinalityCertificate as dC, type NoEvmFinalityEvidence as dD, type NoEvmReceiptFinalityTrustPolicy as dE, type NoEvmReceiptProof as dF, NoEvmReceiptProofError as dG, type NoEvmReceiptProofErrorCode as dH, type NoEvmReceiptProofVerification as dI, type NoEvmReceiptTrustIssue as dJ, type NoEvmReceiptTrustIssueCode as dK, type NoEvmReceiptTrustPolicy as dL, type NoEvmReceiptTrustVerification as dM, type NoEvmReceiptTrustedBlsSigner as dN, type NodeHostingClass as dO, NodeRegistryError as dP, OPERATOR_ROUTER_EVENT_SIGS as dQ, OPERATOR_ROUTER_SELECTORS as dR, OPERATOR_ROUTER_SIGS as dS, ORACLE_EVENT_SIGS as dT, type OperatorAuthorityResponse as dU, type OperatorFeeChargedEvent as dV, type OperatorFeeConfig as dW, type OperatorFeeQuote as dX, type OperatorInfoResponse as dY, type OperatorNetworkMetadata as dZ, type OperatorNetworkMetadataView as d_, type NativeMarketOrderBookDeltasSource as da, type NativeMarketOrderBookStreamAction as db, type NativeMarketOrderBookStreamPayload as dc, type NativeMarketStateFilterParamValue as dd, type NativeMarketStateResponseFilters as de, type NativeMarketStateSource as df, type NativeModuleForwarderDescriptor as dg, type NativeMrcPolicyProjection as dh, type NativeNftAssetStandard as di, type NativeNftListingKind as dj, type NativeNftListingStateRecord as dk, type NativeReceiptCounters as dl, type NativeReceiptEvent as dm, type NativeReceiptSource as dn, type NativeSpotMarketStateRecord as dp, type NativeSpotOrderStateRecord as dq, type NetworkClientOptions as dr, type NetworkSlug as ds, type NoEvmArchiveCoveringSnapshot as dt, type NoEvmArchiveProof as du, type NoEvmArchiveSignatureVerification as dv, type NoEvmArchiveSignatureVerificationIssue as dw, type NoEvmArchiveSignatureVerificationIssueCode as dx, type NoEvmArchiveTrustedSigner as dy, type NoEvmBlockBlsFinalityVerification as dz, type TypedNativeReceiptEvent as e, SERVES_GPU_PROVE as e$, type OperatorRouterConfig as e0, type OperatorSigningActivityResponse as e1, type OperatorSigningEntry as e2, type OperatorSurfaceCapability as e3, type OperatorSurfaceStatus as e4, type OracleEvent as e5, OracleEventError as e6, type OracleFeedConfig as e7, type OracleLatestPrice as e8, type OracleSignerRow as e9, type ProofRequestView as eA, type ProverBidView as eB, type ProverBidsResponse as eC, ProverMarketError as eD, type ProverMarketState as eE, type ProverMarketStatusResponse as eF, type Quantity as eG, type QuoteLiquidity as eH, RESERVED_ADDRESS_HRPS as eI, type RankedBridgeRoute as eJ, type ReceiptProofTrustArchivePolicy as eK, type ReceiptProofTrustArchiveSigner as eL, type ReceiptProofTrustFinalityPolicy as eM, type ReceiptProofTrustFinalitySigner as eN, type ReceiptProofTrustPolicy as eO, type RedemptionQueueTicket as eP, type RegistryRecord as eQ, type ReportServiceProbeCalldataArgs as eR, type ReportServiceProbeRequest as eS, type ReportServiceProbeResponse as eT, type ResolveNameResponse as eU, type RichListHolder as eV, type RichListResponse as eW, type RoundInfo as eX, type RpcClientOptions as eY, type RpcEndpoint as eZ, type RuntimeProvenanceResponse as e_, type OracleSignersResponse as ea, type OracleWriters as eb, type P2pSeed as ec, PENDING_CHANGE_KIND_CODES as ed, PROVER_MARKET_ADDRESS as ee, PROVER_MARKET_BID_DOMAIN as ef, PROVER_MARKET_EVENT_SIGS as eg, PROVER_MARKET_REQUEST_DOMAIN as eh, PROVER_MARKET_SELECTORS as ei, PROVER_MARKET_SUBMIT_DOMAIN as ej, PROVER_SLASH_REASON_BAD_PROOF as ek, PROVER_SLASH_REASON_NON_DELIVERY as el, type ParsedName as em, type PeerSummary as en, type PeerSummaryAggregate as eo, type PendingChangeKind as ep, type PendingRewardsRow as eq, type PendingTxSummary as er, type PlaceLimitOrderViaArgs as es, type PlaceLimitOrderViaPlan as et, type PlaceSpotLimitOrderArgs as eu, type PlaceSpotMarketOrderArgs as ev, type PlaceSpotMarketOrderExArgs as ew, type PrecompileCatalogueResponse as ex, type PrecompileDescriptor as ey, type ProofRequestRow as ez, type NativeEventsFilter as f, buildNativeNftSettleAuctionForwarderInput as f$, SERVICE_PROBE_STATUS as f0, SET_POLICY_CLAIM_DOMAIN_TAG as f1, SPENDING_POLICY_SELECTORS as f2, type SearchHit as f3, type ServiceProbeStatusLabel as f4, type SigningEntryStatus as f5, type SpendingPolicyArgs as f6, SpendingPolicyError as f7, type SpendingPolicyTimeWindow as f8, type SpendingPolicyView as f9, type VerticesAtRoundResponse as fA, addressBytesToHex as fB, addressToBech32 as fC, addressToTypedBech32 as fD, allowRootFor as fE, assertNativeMarketOrderBookStreamPayload as fF, assessBridgeRoute as fG, bech32ToAddress as fH, bech32ToAddressBytes as fI, bidSighash as fJ, bridgeAddressHex as fK, bridgeDrainRemaining as fL, bridgeQuoteSubmitReadiness as fM, bridgeRoutesReadiness as fN, bridgeTransferCandidates as fO, buildBridgeRouteCatalogue as fP, buildCancelSpotOrderPlan as fQ, buildNativeCallForwarderArtifact as fR, buildNativeMarketModuleCallEnvelope as fS, buildNativeNftBuyListingForwarderInput as fT, buildNativeNftBuyListingModuleCall as fU, buildNativeNftCancelListingForwarderInput as fV, buildNativeNftCancelListingModuleCall as fW, buildNativeNftCreateListingForwarderInput as fX, buildNativeNftCreateListingModuleCall as fY, buildNativeNftPlaceAuctionBidForwarderInput as fZ, buildNativeNftPlaceAuctionBidModuleCall as f_, type SpotLimitOrderSide as fa, type SpotMarketOrderMode as fb, type StorageProofBatch as fc, type SubmitPendingChangeCalldataArgs as fd, type SwapIntentStatus as fe, type SyncStatus as ff, TESTNET_69420 as fg, type TokenBalanceMrcIdentity as fh, type TokenBalanceRecord as fi, type TokenBalanceWithMetadata as fj, type TotalBurnedResponse as fk, type TpmAttestationResponse as fl, type TransactionReceipt as fm, type TransactionView as fn, type TxConfirmations as fo, type TxFeedReceipt as fp, type TxFeedTransaction as fq, type TxStatusFoundResponse as fr, type TxStatusNotFoundResponse as fs, type TxStatusResponse as ft, type UpcomingDutiesResponse as fu, type UpcomingDutyMap as fv, type UserAddressInput as fw, V1_BRIDGE_ALLOWED_FEE_TOKEN as fx, V1_BRIDGE_ALLOWED_PROTOCOL as fy, type VertexAtRound as fz, type NativeEventsResponse as g, encodeNativeNftCancelListingCall as g$, buildNativeNftSettleAuctionModuleCall as g0, buildNativeNftSweepExpiredListingsForwarderInput as g1, buildNativeNftSweepExpiredListingsModuleCall as g2, buildNativeSpotCancelOrderForwarderInput as g3, buildNativeSpotCancelOrderModuleCall as g4, buildNativeSpotCreateMarketForwarderInput as g5, buildNativeSpotCreateMarketModuleCall as g6, buildNativeSpotLimitOrderForwarderInput as g7, buildNativeSpotLimitOrderModuleCall as g8, buildNativeSpotSettleLimitOrderForwarderInput as g9, decodeOracleEvent as gA, decodeTimeWindow as gB, decodeTxFeedResponse as gC, denyRootFor as gD, deriveClobMarketId as gE, deriveClusterAnchorAddress as gF, deriveFeedId as gG, deriveNativeSpotMarketId as gH, deriveNativeSpotOrderId as gI, destinationRoot as gJ, encodeAttestDkgReshareCalldata as gK, encodeBlockSelector as gL, encodeBridgeChallengeCalldata as gM, encodeBridgeClaimCalldata as gN, encodeCancelOrderCalldata as gO, encodeCancelPendingChangeCalldata as gP, encodeClaimPolicyByAddressCalldata as gQ, encodeCreateRequestCalldata as gR, encodeCreateRequestCanonical as gS, encodeDisableCalldata as gT, encodeEnableCalldata as gU, encodeLockBridgeConfigCalldata as gV, encodeNameAcceptTransferCall as gW, encodeNameProposeTransferCall as gX, encodeNameRegisterCall as gY, encodeNativeMarketModuleForwarderInput as gZ, encodeNativeNftBuyListingCall as g_, buildNativeSpotSettleLimitOrderModuleCall as ga, buildNativeSpotSettleRoutedLimitOrderForwarderInput as gb, buildNativeSpotSettleRoutedLimitOrderModuleCall as gc, buildPlaceLimitOrderViaPlan as gd, buildPlaceSpotLimitOrderPlan as ge, buildPlaceSpotMarketOrderExPlan as gf, buildPlaceSpotMarketOrderPlan as gg, categoryRoot as gh, clobAddressHex as gi, clusterApyPercent as gj, composeClaimBoundMessage as gk, computeNoEvmDacFinalityMessage as gl, computeNoEvmLeaderFinalityMessage as gm, computeNoEvmReceiptsRoot as gn, computeNoEvmRoundFinalityMessage as go, computeNoEvmTargetReceiptHash as gp, computeQuoteLiquidity as gq, consumeNativeEvents as gr, decodeClusterDiversity as gs, decodeClusterFormedEvent as gt, decodeNativeAgentStateResponse as gu, decodeNativeMarketOrderBookDeltasResponse as gv, decodeNativeReceiptResponse as gw, decodeNoEvmReceiptTranscript as gx, decodeOperatorFeeChargedEvent as gy, decodeOperatorNetworkMetadata as gz, type NativeAgentStateFilter as h, oraclePriceToNumber as h$, encodeNativeNftCreateListingCall as h0, encodeNativeNftPlaceAuctionBidCall as h1, encodeNativeNftSettleAuctionCall as h2, encodeNativeNftSweepExpiredListingsCall as h3, encodeNativeSpotCancelOrderCall as h4, encodeNativeSpotCreateMarketCall as h5, encodeNativeSpotLimitOrderCall as h6, encodeNativeSpotSettleLimitOrderCall as h7, encodeNativeSpotSettleRoutedLimitOrderCall as h8, encodePlaceLimitOrderCalldata as h9, isBridgeResumeCooldownActiveRevert as hA, isConcreteServiceProbeStatus as hB, isNativeDecodedEvent as hC, isNativeMarketOrderBookStreamPayload as hD, isSinglePublicServiceProbeMask as hE, isValidNodeRegistryCapabilities as hF, isValidPublicServiceProbeMask as hG, nameLengthModifierX10 as hH, nameRegistrationCost as hI, nameRegistryAddressHex as hJ, nativeAgentStateFilterParams as hK, nativeEventMatches as hL, nativeEventsFilterParams as hM, nativeEventsFromHistory as hN, nativeEventsFromReceipt as hO, nativeMarketEventFilter as hP, nativeMarketEventsFromHistory as hQ, nativeMarketEventsFromReceipt as hR, nativeMarketStateFilterParams as hS, noEvmReceiptTrustPolicyFromChainInfo as hT, nodeHostingClassFromByte as hU, nodeHostingClassToByte as hV, nodeRegistryAddressHex as hW, normalizeAddressHex as hX, normalizeBridgeRouteCatalogue as hY, normalizePendingChangeKind as hZ, oracleAddressHex as h_, encodePlaceLimitOrderViaCalldata as ha, encodePlaceMarketOrderCalldata as hb, encodePlaceMarketOrderExCalldata as hc, encodeRecoverOperatorNodeCalldata as hd, encodeReportServiceProbeCalldata as he, encodeSetBridgeResumeCooldownCalldata as hf, encodeSetBridgeRouteFinalityCalldata as hg, encodeSetLotSizeCalldata as hh, encodeSetMinNotionalCalldata as hi, encodeSetPolicyCalldata as hj, encodeSetPolicyClaimCalldata as hk, encodeSetTickSizeCalldata as hl, encodeSubmitBridgeProofCalldata as hm, encodeSubmitPendingChangeCalldata as hn, exportBridgeRouteCatalogueJson as ho, fetchChainInfoLatest as hp, fetchChainRegistryLatest as hq, formatOraclePrice as hr, getChainInfo as hs, getNoEvmReceiptTrustPolicy as ht, getP2pSeeds as hu, getRpcEndpoints as hv, hexToAddressBytes as hw, isBridgeAdminLockedRevert as hx, isBridgeCooldownZeroRevert as hy, isBridgeFinalityZeroRevert as hz, type NativeAgentStateResponse as i, mlDsa65AddressBytes as i$, packTimeWindow as i0, parseAddress as i1, parseBridgeRouteCatalogueJson as i2, parseChainRegistryToml as i3, parseDkgResharePublicKeys as i4, parseNameCategory as i5, parseNativeDecodedEvent as i6, parseQuantity as i7, parseQuantityBig as i8, proverMarketStateFromByte as i9, ENUM_VARIANT_INDEX_ML_DSA_65 as iA, type EncryptedEnvelope as iB, type EncryptedSubmission as iC, ML_DSA_65_PUBLIC_KEY_LEN as iD, ML_DSA_65_SEED_LEN as iE, ML_DSA_65_SIGNATURE_LEN as iF, ML_DSA_65_SIGNING_KEY_LEN as iG, ML_KEM_768_CIPHERTEXT_LEN as iH, ML_KEM_768_ENCAPSULATION_KEY_LEN as iI, ML_KEM_768_SHARED_SECRET_LEN as iJ, type NativeTxExtension as iK, type NativeTxExtensionDescriptor as iL, type NativeTxExtensionLike as iM, type NonceAad as iN, type PlaintextSubmission as iO, STANDARD_ALGO_NUMBER_ML_DSA_65 as iP, bincodeDecryptHint as iQ, bincodeEncryptedEnvelope as iR, bincodeNonceAad as iS, bincodeSignedTransaction as iT, buildEncryptedEnvelope as iU, buildEncryptedSubmission as iV, buildPlaintextSubmission as iW, encodeMlDsa65Opaque as iX, encodeTransactionForHash as iY, encryptInnerTx as iZ, fetchEncryptionKey as i_, quoteOperatorFee as ia, rankBridgeRoutes as ib, rankMarketsByVolume as ic, requestSighash as id, requireTypedAddress as ie, selectBridgeTransferRoute as ig, serviceProbeStatusLabel as ih, setDestinationRoot as ii, spendingPolicyAddressHex as ij, submitSighash as ik, typedBech32ToAddress as il, validateAddress as im, validateBridgeRouteCatalogue as io, verifyNoEvmArchiveProofSignatures as ip, verifyNoEvmBlockFinalityEvidenceMultisig as iq, verifyNoEvmBlockFinalityEvidenceThreshold as ir, verifyNoEvmFinalityEvidenceMultisig as is, verifyNoEvmFinalityEvidenceThreshold as it, verifyNoEvmReceiptProof as iu, verifyNoEvmReceiptProofTrust as iv, ADDRESS_DERIVATION_DOMAIN as iw, DKG_AEAD_TAG_LEN as ix, DKG_NONCE_LEN as iy, type DecryptHint as iz, type NativeMarketStateFilter as j, mlDsa65AddressFromPublicKey as j0, outerSigDigest as j1, submitEncryptedEnvelope as j2, submitPlaintextTransaction as j3, submitTransactionWithPrivacy as j4, type NativeMarketStateResponse as k, type NativeMarketOrderBookDeltasRequest as l, type NativeMarketOrderBookDeltasResponse as m, type AddressProfileResponse as n, type AddressFlowResponse as o, type RedemptionQueueResponse as p, type MrcAccountResponse as q, type MrcHoldersResponse as r, type BridgeRoutesRequest as s, type BridgeRoutesResponse as t, type ServiceProbeResponse as u, type ClobMarketsResponse as v, type ClobMarketResponse as w, type ClobTradesResponse as x, type ClobOhlcResponse as y, type ClobOrderBookResponse as z };
|
|
6005
|
+
export { type AddressActivityKindResponse as $, type ApiStreamsIndexResponse as A, type BlockSelector as B, type ChainStatsResponse as C, type NativeEvmTxFields as D, type EncryptionKey as E, MempoolClass as F, type TypedAddress as G, RpcClient as H, MlDsa65Backend as I, type AddressKind as J, ADDRESS_HRP as K, ADDRESS_KIND_HRPS as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, API_STREAM_TOPICS as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, type AccountPolicy as U, type AccountProofResponse as V, type Address as W, type AddressActivityArchiveRedirect as X, type AddressActivityEntry as Y, type AddressActivityEntryEnriched as Z, type AddressActivityKind as _, type RuntimeUpgradeStatus as a, type ClobTrade as a$, type AddressActivityKindRetention as a0, AddressError as a1, type AddressLabelRecord as a2, type AddressValidation as a3, type AgentReputationCategoryScope as a4, type AgentReputationRecord as a5, type AgentReputationResponse as a6, type ApiStreamTopic as a7, type ApiStreamTopicMetadata as a8, type ApiStreamTopicRetention as a9, BridgeRouteCatalogueError as aA, type BridgeRouteCatalogueJsonOptions as aB, type BridgeRouteCataloguePayload as aC, type BridgeRouteCatalogueRoute as aD, type BridgeRouteCatalogueValidation as aE, type BridgeRouteDisclosure as aF, type BridgeRouteSelection as aG, type BridgeRoutesSource as aH, type BridgeTransferIntent as aI, type BridgeTransferRequest as aJ, type BridgeVerifierDisclosure as aK, CHAIN_REGISTRY as aL, CHAIN_REGISTRY_RAW_BASE as aM, CLOB_MARKET_ID_DOMAIN_TAG as aN, CLOB_SELECTORS as aO, CLUSTER_FORMED_EVENT_SIG as aP, type CancelPendingChangeCalldataArgs as aQ, type CancelSpotOrderArgs as aR, type CapabilitiesResponse as aS, type CapabilityDescriptor as aT, type ChainInfo as aU, type ChainRegistry as aV, type CheckpointRecord as aW, type CirculatingSupplyResponse as aX, type ClobMarketAssets as aY, type ClobMarketRecord as aZ, type ClobMarketSummary as a_, type AssetPolicy as aa, type AttestDkgReshareCalldataArgs as ab, type AttestationWindow as ac, BRIDGE_QUOTE_API_BLOCKED_REASON as ad, BRIDGE_REVERT_TAGS as ae, BRIDGE_SELECTORS as af, BRIDGE_SUBMIT_API_BLOCKED_REASON as ag, type BlockHeader as ah, type BlockTag as ai, type BlsCertificateResponse as aj, type BridgeAdminControl as ak, type BridgeAnchorState as al, type BridgeBreakerState as am, type BridgeBytesInput as an, type BridgeCircuitBreakerFields as ao, type BridgeCircuitBreakerState as ap, type BridgeDrainCap as aq, type BridgeDrainStatus as ar, type BridgeHealthRecord as as, type BridgeHealthResponse as at, BridgePrecompileError as au, type BridgeQuoteSubmitReadiness as av, type BridgeRiskTier as aw, type BridgeRouteAssessment as ax, type BridgeRouteCandidate as ay, type BridgeRouteCatalogue as az, type NativeReceiptResponse as b, type MarketTransactionPlan as b$, type ClusterAprResponse as b0, type ClusterDelegatorsResponse as b1, type ClusterDirectoryEntryResponse as b2, type ClusterDirectoryPageResponse as b3, type ClusterDiversity as b4, type ClusterDiversityView as b5, type ClusterEntityResponse as b6, type ClusterFormedEvent as b7, type ClusterMemberResponse as b8, type ClusterNameResponse as b9, type EncodeNativeSpotLimitOrderArgs as bA, type EncodeNativeSpotSettleLimitOrderArgs as bB, type EncodeNativeSpotSettleRoutedLimitOrderArgs as bC, type EncryptionKeyResponse as bD, type EntityRatchetResponse as bE, type EthSendTransactionRequest as bF, type ExecutionUnitPriceResponse as bG, type ExplorerEndpoint as bH, FEED_ID_DOMAIN_TAG as bI, type FeeHistoryResponse as bJ, type GapRange as bK, type GapRecord as bL, type GapRecordsResponse as bM, type Hash as bN, type Hex as bO, type IndexerStatus as bP, type JailStatusWindow as bQ, type KeyRotationWindow as bR, type ListProofRequestsResponse as bS, type LythUpgradePlanStatus as bT, type LythUpgradeStatusResponse as bU, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES as bV, MAX_NATIVE_RECEIPT_EVENTS as bW, ML_DSA_65_PUBLIC_KEY_LEN$1 as bX, ML_DSA_65_SIGNATURE_LEN$1 as bY, MULTISIG_ADDRESS_DERIVATION_DOMAIN as bZ, MarketActionError as b_, type ClusterResignationRow as ba, type ClusterResignationsResponse as bb, type ClusterStatusResponse as bc, type CreateRequestCanonicalArgs as bd, DIVERSITY_SCORE_MAX as be, type DagParent as bf, type DagParentsResponse as bg, type DagSyncStatus as bh, type DecodeTxExtension as bi, type DecodeTxLog as bj, type DecodeTxPqAttestation as bk, type DecodeTxResponse as bl, type DelegationCapResponse as bm, type DelegationHistoryRecord as bn, type DelegationRow as bo, type DelegationsResponse as bp, type DutyAbsence as bq, EMPTY_ROOT as br, type EncodeNativeNftBuyListingArgs as bs, type EncodeNativeNftCancelListingArgs as bt, type EncodeNativeNftCreateListingArgs as bu, type EncodeNativeNftPlaceAuctionBidArgs as bv, type EncodeNativeNftSettleAuctionArgs as bw, type EncodeNativeNftSweepExpiredListingsArgs as bx, type EncodeNativeSpotCancelOrderArgs as by, type EncodeNativeSpotCreateMarketArgs as bz, type NativeDecodedEvent as c, type NativeEventConsumer as c$, type MempoolSnapshot as c0, type MeshDecodedTx as c1, type MeshSignedTxResponse as c2, type MeshTxIntent as c3, type MeshUnsignedTxResponse as c4, type MetricsRangeResponse as c5, type MetricsRangeSample as c6, type MetricsRangeSeries as c7, type MetricsRangeStatus as c8, type MrcAccountRecord as c9, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as cA, NO_EVM_FINALITY_EVIDENCE_SCHEMA as cB, NO_EVM_FINALITY_EVIDENCE_SOURCE as cC, NO_EVM_RECEIPTS_ROOT_DOMAIN as cD, NO_EVM_RECEIPT_CODEC as cE, NO_EVM_RECEIPT_PROOF_SCHEMA as cF, NO_EVM_RECEIPT_PROOF_TYPE as cG, NO_EVM_RECEIPT_ROOT_ALGORITHM as cH, type NameCategory as cI, type NameOfResponse as cJ, type NameRegistrationQuote as cK, NameRegistryError as cL, type NativeAgentArbiterStateRecord as cM, type NativeAgentAttestationStateRecord as cN, type NativeAgentAvailabilityStateRecord as cO, type NativeAgentConsentStateRecord as cP, type NativeAgentEscrowStateRecord as cQ, type NativeAgentIssuerStateRecord as cR, type NativeAgentPolicySpendStateRecord as cS, type NativeAgentPolicyStateRecord as cT, type NativeAgentReputationReviewStateRecord as cU, type NativeAgentServiceStateRecord as cV, type NativeAgentStateFilterParamValue as cW, type NativeAgentStateResponseFilters as cX, type NativeAgentStateSource as cY, type NativeCallForwarderArtifact as cZ, type NativeCollectionRoyaltyStateRecord as c_, type MrcMetadataRecord as ca, type MrcPolicyRecord as cb, type MrcPolicySpendRecord as cc, NAME_BASE_MULTIPLIER as cd, NAME_FALLBACK_FEE_UNIT_LYTHOSHI as ce, NAME_LABEL_MAX_LEN as cf, NAME_LABEL_MIN_LEN as cg, NAME_MAX_LEN as ch, NAME_REGISTRY_SELECTORS as ci, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE as cj, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY as ck, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET as cl, NATIVE_MARKET_EVENT_FAMILY as cm, NATIVE_MARKET_MODULE_ADDRESS as cn, NATIVE_MARKET_MODULE_ADDRESS_BYTES as co, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as cp, NODE_REGISTRY_BLS_PUBKEY_BYTES as cq, NODE_REGISTRY_CAPABILITIES as cr, NODE_REGISTRY_CAPABILITY_MASK as cs, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS as ct, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS as cu, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES as cv, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID as cw, NODE_REGISTRY_PUBLIC_SERVICE_MASK as cx, NODE_REGISTRY_SELECTORS as cy, NO_EVM_ARCHIVE_PROOF_SCHEMA as cz, type NativeEventFilter as d, type OperatorRiskResponse as d$, type NativeEventProjection as d0, type NativeEventsResponseFilters as d1, type NativeEventsSource as d2, type NativeMarketAddressInput as d3, type NativeMarketAddressKind as d4, type NativeMarketForwarderInput as d5, type NativeMarketModuleCallEnvelope as d6, type NativeMarketModuleContractCall as d7, type NativeMarketOrderBookDelta as d8, type NativeMarketOrderBookDeltasResponseFilters as d9, type NoEvmBlsFinalityVerification as dA, type NoEvmFinalityBlockReference as dB, type NoEvmFinalityCertificate as dC, type NoEvmFinalityEvidence as dD, type NoEvmReceiptFinalityTrustPolicy as dE, type NoEvmReceiptProof as dF, NoEvmReceiptProofError as dG, type NoEvmReceiptProofErrorCode as dH, type NoEvmReceiptProofVerification as dI, type NoEvmReceiptTrustIssue as dJ, type NoEvmReceiptTrustIssueCode as dK, type NoEvmReceiptTrustPolicy as dL, type NoEvmReceiptTrustVerification as dM, type NoEvmReceiptTrustedBlsSigner as dN, type NodeHostingClass as dO, NodeRegistryError as dP, OPERATOR_ROUTER_EVENT_SIGS as dQ, OPERATOR_ROUTER_SELECTORS as dR, OPERATOR_ROUTER_SIGS as dS, ORACLE_EVENT_SIGS as dT, type OperatorAuthorityResponse as dU, type OperatorFeeChargedEvent as dV, type OperatorFeeConfig as dW, type OperatorFeeQuote as dX, type OperatorInfoResponse as dY, type OperatorNetworkMetadata as dZ, type OperatorNetworkMetadataView as d_, type NativeMarketOrderBookDeltasSource as da, type NativeMarketOrderBookStreamAction as db, type NativeMarketOrderBookStreamPayload as dc, type NativeMarketStateFilterParamValue as dd, type NativeMarketStateResponseFilters as de, type NativeMarketStateSource as df, type NativeModuleForwarderDescriptor as dg, type NativeMrcPolicyProjection as dh, type NativeNftAssetStandard as di, type NativeNftListingKind as dj, type NativeNftListingStateRecord as dk, type NativeReceiptCounters as dl, type NativeReceiptEvent as dm, type NativeReceiptSource as dn, type NativeSpotMarketStateRecord as dp, type NativeSpotOrderStateRecord as dq, type NetworkClientOptions as dr, type NetworkSlug as ds, type NoEvmArchiveCoveringSnapshot as dt, type NoEvmArchiveProof as du, type NoEvmArchiveSignatureVerification as dv, type NoEvmArchiveSignatureVerificationIssue as dw, type NoEvmArchiveSignatureVerificationIssueCode as dx, type NoEvmArchiveTrustedSigner as dy, type NoEvmBlockBlsFinalityVerification as dz, type TypedNativeReceiptEvent as e, SERVES_GPU_PROVE as e$, type OperatorRouterConfig as e0, type OperatorSigningActivityResponse as e1, type OperatorSigningEntry as e2, type OperatorSurfaceCapability as e3, type OperatorSurfaceStatus as e4, type OracleEvent as e5, OracleEventError as e6, type OracleFeedConfig as e7, type OracleLatestPrice as e8, type OracleSignerRow as e9, type ProofRequestView as eA, type ProverBidView as eB, type ProverBidsResponse as eC, ProverMarketError as eD, type ProverMarketState as eE, type ProverMarketStatusResponse as eF, type Quantity as eG, type QuoteLiquidity as eH, RESERVED_ADDRESS_HRPS as eI, type RankedBridgeRoute as eJ, type ReceiptProofTrustArchivePolicy as eK, type ReceiptProofTrustArchiveSigner as eL, type ReceiptProofTrustFinalityPolicy as eM, type ReceiptProofTrustFinalitySigner as eN, type ReceiptProofTrustPolicy as eO, type RedemptionQueueTicket as eP, type RegistryRecord as eQ, type ReportServiceProbeCalldataArgs as eR, type ReportServiceProbeRequest as eS, type ReportServiceProbeResponse as eT, type ResolveNameResponse as eU, type RichListHolder as eV, type RichListResponse as eW, type RoundInfo as eX, type RpcClientOptions as eY, type RpcEndpoint as eZ, type RuntimeProvenanceResponse as e_, type OracleSignersResponse as ea, type OracleWriters as eb, type P2pSeed as ec, PENDING_CHANGE_KIND_CODES as ed, PROVER_MARKET_ADDRESS as ee, PROVER_MARKET_BID_DOMAIN as ef, PROVER_MARKET_EVENT_SIGS as eg, PROVER_MARKET_REQUEST_DOMAIN as eh, PROVER_MARKET_SELECTORS as ei, PROVER_MARKET_SUBMIT_DOMAIN as ej, PROVER_SLASH_REASON_BAD_PROOF as ek, PROVER_SLASH_REASON_NON_DELIVERY as el, type ParsedName as em, type PeerSummary as en, type PeerSummaryAggregate as eo, type PendingChangeKind as ep, type PendingRewardsRow as eq, type PendingTxSummary as er, type PlaceLimitOrderViaArgs as es, type PlaceLimitOrderViaPlan as et, type PlaceSpotLimitOrderArgs as eu, type PlaceSpotMarketOrderArgs as ev, type PlaceSpotMarketOrderExArgs as ew, type PrecompileCatalogueResponse as ex, type PrecompileDescriptor as ey, type ProofRequestRow as ez, type NativeEventsFilter as f, buildNativeNftSettleAuctionForwarderInput as f$, SERVICE_PROBE_STATUS as f0, SET_POLICY_CLAIM_DOMAIN_TAG as f1, SPENDING_POLICY_SELECTORS as f2, type SearchHit as f3, type ServiceProbeStatusLabel as f4, type SigningEntryStatus as f5, type SpendingPolicyArgs as f6, SpendingPolicyError as f7, type SpendingPolicyTimeWindow as f8, type SpendingPolicyView as f9, type VerticesAtRoundResponse as fA, addressBytesToHex as fB, addressToBech32 as fC, addressToTypedBech32 as fD, allowRootFor as fE, assertNativeMarketOrderBookStreamPayload as fF, assessBridgeRoute as fG, bech32ToAddress as fH, bech32ToAddressBytes as fI, bidSighash as fJ, bridgeAddressHex as fK, bridgeDrainRemaining as fL, bridgeQuoteSubmitReadiness as fM, bridgeRoutesReadiness as fN, bridgeTransferCandidates as fO, buildBridgeRouteCatalogue as fP, buildCancelSpotOrderPlan as fQ, buildNativeCallForwarderArtifact as fR, buildNativeMarketModuleCallEnvelope as fS, buildNativeNftBuyListingForwarderInput as fT, buildNativeNftBuyListingModuleCall as fU, buildNativeNftCancelListingForwarderInput as fV, buildNativeNftCancelListingModuleCall as fW, buildNativeNftCreateListingForwarderInput as fX, buildNativeNftCreateListingModuleCall as fY, buildNativeNftPlaceAuctionBidForwarderInput as fZ, buildNativeNftPlaceAuctionBidModuleCall as f_, type SpotLimitOrderSide as fa, type SpotMarketOrderMode as fb, type StorageProofBatch as fc, type SubmitPendingChangeCalldataArgs as fd, type SwapIntentStatus as fe, type SyncStatus as ff, TESTNET_69420 as fg, type TokenBalanceMrcIdentity as fh, type TokenBalanceRecord as fi, type TokenBalanceWithMetadata as fj, type TotalBurnedResponse as fk, type TpmAttestationResponse as fl, type TransactionReceipt as fm, type TransactionView as fn, type TxConfirmations as fo, type TxFeedReceipt as fp, type TxFeedTransaction as fq, type TxStatusFoundResponse as fr, type TxStatusNotFoundResponse as fs, type TxStatusResponse as ft, type UpcomingDutiesResponse as fu, type UpcomingDutyMap as fv, type UserAddressInput as fw, V1_BRIDGE_ALLOWED_FEE_TOKEN as fx, V1_BRIDGE_ALLOWED_PROTOCOL as fy, type VertexAtRound as fz, type NativeEventsResponse as g, encodeNativeNftCancelListingCall as g$, buildNativeNftSettleAuctionModuleCall as g0, buildNativeNftSweepExpiredListingsForwarderInput as g1, buildNativeNftSweepExpiredListingsModuleCall as g2, buildNativeSpotCancelOrderForwarderInput as g3, buildNativeSpotCancelOrderModuleCall as g4, buildNativeSpotCreateMarketForwarderInput as g5, buildNativeSpotCreateMarketModuleCall as g6, buildNativeSpotLimitOrderForwarderInput as g7, buildNativeSpotLimitOrderModuleCall as g8, buildNativeSpotSettleLimitOrderForwarderInput as g9, decodeOracleEvent as gA, decodeTimeWindow as gB, decodeTxFeedResponse as gC, denyRootFor as gD, deriveClobMarketId as gE, deriveClusterAnchorAddress as gF, deriveFeedId as gG, deriveNativeSpotMarketId as gH, deriveNativeSpotOrderId as gI, destinationRoot as gJ, encodeAttestDkgReshareCalldata as gK, encodeBlockSelector as gL, encodeBridgeChallengeCalldata as gM, encodeBridgeClaimCalldata as gN, encodeCancelOrderCalldata as gO, encodeCancelPendingChangeCalldata as gP, encodeClaimPolicyByAddressCalldata as gQ, encodeCreateRequestCalldata as gR, encodeCreateRequestCanonical as gS, encodeDisableCalldata as gT, encodeEnableCalldata as gU, encodeLockBridgeConfigCalldata as gV, encodeNameAcceptTransferCall as gW, encodeNameProposeTransferCall as gX, encodeNameRegisterCall as gY, encodeNativeMarketModuleForwarderInput as gZ, encodeNativeNftBuyListingCall as g_, buildNativeSpotSettleLimitOrderModuleCall as ga, buildNativeSpotSettleRoutedLimitOrderForwarderInput as gb, buildNativeSpotSettleRoutedLimitOrderModuleCall as gc, buildPlaceLimitOrderViaPlan as gd, buildPlaceSpotLimitOrderPlan as ge, buildPlaceSpotMarketOrderExPlan as gf, buildPlaceSpotMarketOrderPlan as gg, categoryRoot as gh, clobAddressHex as gi, clusterApyPercent as gj, composeClaimBoundMessage as gk, computeNoEvmDacFinalityMessage as gl, computeNoEvmLeaderFinalityMessage as gm, computeNoEvmReceiptsRoot as gn, computeNoEvmRoundFinalityMessage as go, computeNoEvmTargetReceiptHash as gp, computeQuoteLiquidity as gq, consumeNativeEvents as gr, decodeClusterDiversity as gs, decodeClusterFormedEvent as gt, decodeNativeAgentStateResponse as gu, decodeNativeMarketOrderBookDeltasResponse as gv, decodeNativeReceiptResponse as gw, decodeNoEvmReceiptTranscript as gx, decodeOperatorFeeChargedEvent as gy, decodeOperatorNetworkMetadata as gz, type NativeAgentStateFilter as h, oraclePriceToNumber as h$, encodeNativeNftCreateListingCall as h0, encodeNativeNftPlaceAuctionBidCall as h1, encodeNativeNftSettleAuctionCall as h2, encodeNativeNftSweepExpiredListingsCall as h3, encodeNativeSpotCancelOrderCall as h4, encodeNativeSpotCreateMarketCall as h5, encodeNativeSpotLimitOrderCall as h6, encodeNativeSpotSettleLimitOrderCall as h7, encodeNativeSpotSettleRoutedLimitOrderCall as h8, encodePlaceLimitOrderCalldata as h9, isBridgeResumeCooldownActiveRevert as hA, isConcreteServiceProbeStatus as hB, isNativeDecodedEvent as hC, isNativeMarketOrderBookStreamPayload as hD, isSinglePublicServiceProbeMask as hE, isValidNodeRegistryCapabilities as hF, isValidPublicServiceProbeMask as hG, nameLengthModifierX10 as hH, nameRegistrationCost as hI, nameRegistryAddressHex as hJ, nativeAgentStateFilterParams as hK, nativeEventMatches as hL, nativeEventsFilterParams as hM, nativeEventsFromHistory as hN, nativeEventsFromReceipt as hO, nativeMarketEventFilter as hP, nativeMarketEventsFromHistory as hQ, nativeMarketEventsFromReceipt as hR, nativeMarketStateFilterParams as hS, noEvmReceiptTrustPolicyFromChainInfo as hT, nodeHostingClassFromByte as hU, nodeHostingClassToByte as hV, nodeRegistryAddressHex as hW, normalizeAddressHex as hX, normalizeBridgeRouteCatalogue as hY, normalizePendingChangeKind as hZ, oracleAddressHex as h_, encodePlaceLimitOrderViaCalldata as ha, encodePlaceMarketOrderCalldata as hb, encodePlaceMarketOrderExCalldata as hc, encodeRecoverOperatorNodeCalldata as hd, encodeReportServiceProbeCalldata as he, encodeSetBridgeResumeCooldownCalldata as hf, encodeSetBridgeRouteFinalityCalldata as hg, encodeSetLotSizeCalldata as hh, encodeSetMinNotionalCalldata as hi, encodeSetPolicyCalldata as hj, encodeSetPolicyClaimCalldata as hk, encodeSetTickSizeCalldata as hl, encodeSubmitBridgeProofCalldata as hm, encodeSubmitPendingChangeCalldata as hn, exportBridgeRouteCatalogueJson as ho, fetchChainInfoLatest as hp, fetchChainRegistryLatest as hq, formatOraclePrice as hr, getChainInfo as hs, getNoEvmReceiptTrustPolicy as ht, getP2pSeeds as hu, getRpcEndpoints as hv, hexToAddressBytes as hw, isBridgeAdminLockedRevert as hx, isBridgeCooldownZeroRevert as hy, isBridgeFinalityZeroRevert as hz, type NativeAgentStateResponse as i, fetchEncryptionKey as i$, packTimeWindow as i0, parseAddress as i1, parseBridgeRouteCatalogueJson as i2, parseChainRegistryToml as i3, parseDkgResharePublicKeys as i4, parseNameCategory as i5, parseNativeDecodedEvent as i6, parseQuantity as i7, parseQuantityBig as i8, proverMarketStateFromByte as i9, ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE as iA, ENUM_VARIANT_INDEX_ML_DSA_65 as iB, type EncryptedEnvelope as iC, type EncryptedSubmission as iD, ML_DSA_65_PUBLIC_KEY_LEN as iE, ML_DSA_65_SEED_LEN as iF, ML_DSA_65_SIGNATURE_LEN as iG, ML_DSA_65_SIGNING_KEY_LEN as iH, ML_KEM_768_CIPHERTEXT_LEN as iI, ML_KEM_768_ENCAPSULATION_KEY_LEN as iJ, ML_KEM_768_SHARED_SECRET_LEN as iK, type NativeTxExtension as iL, type NativeTxExtensionDescriptor as iM, type NativeTxExtensionLike as iN, type NonceAad as iO, type PlaintextSubmission as iP, STANDARD_ALGO_NUMBER_ML_DSA_65 as iQ, bincodeDecryptHint as iR, bincodeEncryptedEnvelope as iS, bincodeNonceAad as iT, bincodeSignedTransaction as iU, buildEncryptedEnvelope as iV, buildEncryptedSubmission as iW, buildPlaintextSubmission as iX, encodeMlDsa65Opaque as iY, encodeTransactionForHash as iZ, encryptInnerTx as i_, quoteOperatorFee as ia, rankBridgeRoutes as ib, rankMarketsByVolume as ic, requestSighash as id, requireTypedAddress as ie, selectBridgeTransferRoute as ig, serviceProbeStatusLabel as ih, setDestinationRoot as ii, spendingPolicyAddressHex as ij, submitSighash as ik, typedBech32ToAddress as il, validateAddress as im, validateBridgeRouteCatalogue as io, verifyNoEvmArchiveProofSignatures as ip, verifyNoEvmBlockFinalityEvidenceMultisig as iq, verifyNoEvmBlockFinalityEvidenceThreshold as ir, verifyNoEvmFinalityEvidenceMultisig as is, verifyNoEvmFinalityEvidenceThreshold as it, verifyNoEvmReceiptProof as iu, verifyNoEvmReceiptProofTrust as iv, ADDRESS_DERIVATION_DOMAIN as iw, DKG_AEAD_TAG_LEN as ix, DKG_NONCE_LEN as iy, type DecryptHint as iz, type NativeMarketStateFilter as j, mlDsa65AddressBytes as j0, mlDsa65AddressFromPublicKey as j1, outerSigDigest as j2, submitEncryptedEnvelope as j3, submitPlaintextTransaction as j4, submitTransactionWithPrivacy as j5, type NativeMarketStateResponse as k, type NativeMarketOrderBookDeltasRequest as l, type NativeMarketOrderBookDeltasResponse as m, type AddressProfileResponse as n, type AddressFlowResponse as o, type RedemptionQueueResponse as p, type MrcAccountResponse as q, type MrcHoldersResponse as r, type BridgeRoutesRequest as s, type BridgeRoutesResponse as t, type ServiceProbeResponse as u, type ClobMarketsResponse as v, type ClobMarketResponse as w, type ClobTradesResponse as x, type ClobOhlcResponse as y, type ClobOrderBookResponse as z };
|
|
@@ -473,7 +473,11 @@ type MrcAccountRecord = {
|
|
|
473
473
|
*/
|
|
474
474
|
controller: string;
|
|
475
475
|
/**
|
|
476
|
-
* Recovery address registered for this account, when smart-account state
|
|
476
|
+
* Recovery address registered for this account, when smart-account state
|
|
477
|
+
* carries one. ADVISORY / DISPLAY-ONLY: this is an inert stored field —
|
|
478
|
+
* the chain has no on-chain account `Recover` / `RotateController` path
|
|
479
|
+
* yet, so a registered recovery address cannot currently be exercised.
|
|
480
|
+
* Surfaces MUST NOT present this as a working "recover account" action.
|
|
477
481
|
*/
|
|
478
482
|
recovery: string | null;
|
|
479
483
|
/**
|
|
@@ -4177,8 +4181,8 @@ declare const NAME_REGISTRY_SELECTORS: {
|
|
|
4177
4181
|
};
|
|
4178
4182
|
/** Per-category base multiplier (`validate.rs` `base_multiplier`). `system` is not user-registerable. */
|
|
4179
4183
|
declare const NAME_BASE_MULTIPLIER: Record<Exclude<NameCategory, "system">, number>;
|
|
4180
|
-
/** Fallback fee unit when the block base fee reads zero (`ops.rs` `FALLBACK_FEE_UNIT_LYTHOSHI`). */
|
|
4181
|
-
declare const NAME_FALLBACK_FEE_UNIT_LYTHOSHI =
|
|
4184
|
+
/** Fallback fee unit when the block base fee reads zero (`ops.rs` `FALLBACK_FEE_UNIT_LYTHOSHI`); 18-decimal value per ADR-0037. */
|
|
4185
|
+
declare const NAME_FALLBACK_FEE_UNIT_LYTHOSHI = 1000000000000n;
|
|
4182
4186
|
declare const NAME_MAX_LEN = 80;
|
|
4183
4187
|
declare const NAME_LABEL_MIN_LEN = 1;
|
|
4184
4188
|
declare const NAME_LABEL_MAX_LEN = 63;
|
|
@@ -5334,7 +5338,18 @@ declare class RpcClient {
|
|
|
5334
5338
|
* tooling. Native callers should prefer `lythExecutionUnitPrice`.
|
|
5335
5339
|
*/
|
|
5336
5340
|
ethGasPrice(): Promise<bigint>;
|
|
5337
|
-
/**
|
|
5341
|
+
/**
|
|
5342
|
+
* `eth_feeHistory` — base-fee + gas-used history.
|
|
5343
|
+
*
|
|
5344
|
+
* The chain's eth-compat surface serializes the base-fee window under the
|
|
5345
|
+
* camelCase key `baseFeePerGas`. Internally the chain header field is
|
|
5346
|
+
* `base_fee_per_gas`; this method asserts the on-the-wire response actually
|
|
5347
|
+
* carries the expected `baseFeePerGas` array and fails LOUD if the field is
|
|
5348
|
+
* missing or has drifted to snake_case `base_fee_per_gas`. Without this
|
|
5349
|
+
* guard a future rename would silently collapse the base fee to an empty
|
|
5350
|
+
* array and over-/under-quote fees (e.g. name registration would fall back
|
|
5351
|
+
* to the placeholder fee unit and revert `IncorrectFee` on submit).
|
|
5352
|
+
*/
|
|
5338
5353
|
ethFeeHistory(blockCount: number, newestBlock?: BlockSelector, rewardPercentiles?: number[]): Promise<FeeHistoryResponse>;
|
|
5339
5354
|
/** `eth_syncing` — `null` when caught up. */
|
|
5340
5355
|
ethSyncing(): Promise<SyncStatus | null>;
|
|
@@ -5886,7 +5901,40 @@ interface PlaintextSubmission {
|
|
|
5886
5901
|
innerWireBytes: number;
|
|
5887
5902
|
}
|
|
5888
5903
|
declare function fetchEncryptionKey(client: RpcClient): Promise<EncryptionKey>;
|
|
5889
|
-
|
|
5904
|
+
/**
|
|
5905
|
+
* Error message returned when an encrypted-mempool submission is attempted.
|
|
5906
|
+
*
|
|
5907
|
+
* The encrypted-submit path is gated OFF until the chain's MB-3 Ferveo
|
|
5908
|
+
* threshold decryption is live (see {@link buildEncryptedSubmission}).
|
|
5909
|
+
*/
|
|
5910
|
+
declare const ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE = "encrypted mempool submission unavailable until MB-3 threshold decryption is active";
|
|
5911
|
+
/**
|
|
5912
|
+
* Encrypted-mempool submission is GATED OFF.
|
|
5913
|
+
*
|
|
5914
|
+
* The single-key ML-KEM-768 `scheme: 0` envelope this used to build is the
|
|
5915
|
+
* RETIRED scheme: a single operator holding the cluster decryption key could
|
|
5916
|
+
* decrypt the inner transaction, violating the threshold-privacy guarantee
|
|
5917
|
+
* the encrypted mempool promises. The live chain runs with plaintext
|
|
5918
|
+
* submission as the default and does NOT run threshold decryption yet, so
|
|
5919
|
+
* there is no safe encrypted path to emit.
|
|
5920
|
+
*
|
|
5921
|
+
* This helper therefore refuses to build any envelope and throws. It never
|
|
5922
|
+
* produces a `scheme: 0` (or any) envelope, so a wallet can never be tricked
|
|
5923
|
+
* into believing its transaction is privately decryptable by a threshold of
|
|
5924
|
+
* operators when it is in fact decryptable by one.
|
|
5925
|
+
*
|
|
5926
|
+
* Use {@link buildPlaintextSubmission} / {@link submitPlaintextTransaction}
|
|
5927
|
+
* (the unaffected default path) for transaction submission.
|
|
5928
|
+
*
|
|
5929
|
+
* TODO(MB-3): when the chain activates MB-3 threshold decryption, port the
|
|
5930
|
+
* chain's Ferveo `scheme = 2` path here — the `ThresholdPubkey` is a 96-byte
|
|
5931
|
+
* BLS12-381 G1 element fetched from `lyth_getEncryptionKey`, and the inner tx
|
|
5932
|
+
* is encrypted to that threshold public key (not a single ML-KEM-768
|
|
5933
|
+
* encapsulation key). Only then may an envelope be emitted again.
|
|
5934
|
+
*
|
|
5935
|
+
* @throws always — the encrypted path is unavailable.
|
|
5936
|
+
*/
|
|
5937
|
+
declare function buildEncryptedSubmission(_args: {
|
|
5890
5938
|
backend: MlDsa65Backend;
|
|
5891
5939
|
tx: NativeEvmTxFields;
|
|
5892
5940
|
encryptionKey: EncryptionKey;
|
|
@@ -5929,20 +5977,21 @@ declare function submitPlaintextTransaction(client: RpcClient, signedTxWireHex:
|
|
|
5929
5977
|
* Build, sign, and submit a native transaction with an explicit
|
|
5930
5978
|
* encryption toggle. `private == false` (the default for the RC testnet
|
|
5931
5979
|
* / operator posture) routes through the plaintext `mesh_submitTx`
|
|
5932
|
-
* path; `private == true` routes through the
|
|
5933
|
-
*
|
|
5980
|
+
* path; `private == true` routes through the encrypted pipeline.
|
|
5981
|
+
* Wallets wire a UI privacy toggle straight onto `private`.
|
|
5934
5982
|
*
|
|
5935
5983
|
* Mirrors `TxClient::build_sign_submit_with_privacy` in the Rust SDK.
|
|
5936
|
-
* The default is PLAINTEXT
|
|
5937
|
-
*
|
|
5938
|
-
*
|
|
5984
|
+
* The default is PLAINTEXT and is fully supported.
|
|
5985
|
+
*
|
|
5986
|
+
* MB-3 gate: `private === true` is currently UNAVAILABLE — the encrypted
|
|
5987
|
+
* path throws {@link ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE} via
|
|
5988
|
+
* {@link buildEncryptedSubmission} because the chain does not yet run
|
|
5989
|
+
* Ferveo threshold decryption and the retired single-key scheme is unsafe.
|
|
5990
|
+
* Keep wallet privacy toggles disabled until MB-3 activates.
|
|
5939
5991
|
*
|
|
5940
|
-
* @returns the
|
|
5941
|
-
*
|
|
5942
|
-
*
|
|
5943
|
-
* `lyth_submitEncrypted` RPC returns the encrypted-envelope admission
|
|
5944
|
-
* hash, so wallets track the canonical inner hash for receipts /
|
|
5945
|
-
* `lyth_txStatus` / indexer history).
|
|
5992
|
+
* @returns for the plaintext path, the node-echoed-and-validated canonical
|
|
5993
|
+
* native tx hash (`0x`-prefixed).
|
|
5994
|
+
* @throws when `private === true` (encrypted submission unavailable).
|
|
5946
5995
|
*/
|
|
5947
5996
|
declare function submitTransactionWithPrivacy(args: {
|
|
5948
5997
|
client: RpcClient;
|
|
@@ -5953,4 +6002,4 @@ declare function submitTransactionWithPrivacy(args: {
|
|
|
5953
6002
|
class?: MempoolClass;
|
|
5954
6003
|
}): Promise<string>;
|
|
5955
6004
|
|
|
5956
|
-
export { type AddressActivityKindResponse as $, type ApiStreamsIndexResponse as A, type BlockSelector as B, type ChainStatsResponse as C, type NativeEvmTxFields as D, type EncryptionKey as E, MempoolClass as F, type TypedAddress as G, RpcClient as H, MlDsa65Backend as I, type AddressKind as J, ADDRESS_HRP as K, ADDRESS_KIND_HRPS as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, API_STREAM_TOPICS as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, type AccountPolicy as U, type AccountProofResponse as V, type Address as W, type AddressActivityArchiveRedirect as X, type AddressActivityEntry as Y, type AddressActivityEntryEnriched as Z, type AddressActivityKind as _, type RuntimeUpgradeStatus as a, type ClobTrade as a$, type AddressActivityKindRetention as a0, AddressError as a1, type AddressLabelRecord as a2, type AddressValidation as a3, type AgentReputationCategoryScope as a4, type AgentReputationRecord as a5, type AgentReputationResponse as a6, type ApiStreamTopic as a7, type ApiStreamTopicMetadata as a8, type ApiStreamTopicRetention as a9, BridgeRouteCatalogueError as aA, type BridgeRouteCatalogueJsonOptions as aB, type BridgeRouteCataloguePayload as aC, type BridgeRouteCatalogueRoute as aD, type BridgeRouteCatalogueValidation as aE, type BridgeRouteDisclosure as aF, type BridgeRouteSelection as aG, type BridgeRoutesSource as aH, type BridgeTransferIntent as aI, type BridgeTransferRequest as aJ, type BridgeVerifierDisclosure as aK, CHAIN_REGISTRY as aL, CHAIN_REGISTRY_RAW_BASE as aM, CLOB_MARKET_ID_DOMAIN_TAG as aN, CLOB_SELECTORS as aO, CLUSTER_FORMED_EVENT_SIG as aP, type CancelPendingChangeCalldataArgs as aQ, type CancelSpotOrderArgs as aR, type CapabilitiesResponse as aS, type CapabilityDescriptor as aT, type ChainInfo as aU, type ChainRegistry as aV, type CheckpointRecord as aW, type CirculatingSupplyResponse as aX, type ClobMarketAssets as aY, type ClobMarketRecord as aZ, type ClobMarketSummary as a_, type AssetPolicy as aa, type AttestDkgReshareCalldataArgs as ab, type AttestationWindow as ac, BRIDGE_QUOTE_API_BLOCKED_REASON as ad, BRIDGE_REVERT_TAGS as ae, BRIDGE_SELECTORS as af, BRIDGE_SUBMIT_API_BLOCKED_REASON as ag, type BlockHeader as ah, type BlockTag as ai, type BlsCertificateResponse as aj, type BridgeAdminControl as ak, type BridgeAnchorState as al, type BridgeBreakerState as am, type BridgeBytesInput as an, type BridgeCircuitBreakerFields as ao, type BridgeCircuitBreakerState as ap, type BridgeDrainCap as aq, type BridgeDrainStatus as ar, type BridgeHealthRecord as as, type BridgeHealthResponse as at, BridgePrecompileError as au, type BridgeQuoteSubmitReadiness as av, type BridgeRiskTier as aw, type BridgeRouteAssessment as ax, type BridgeRouteCandidate as ay, type BridgeRouteCatalogue as az, type NativeReceiptResponse as b, type MarketTransactionPlan as b$, type ClusterAprResponse as b0, type ClusterDelegatorsResponse as b1, type ClusterDirectoryEntryResponse as b2, type ClusterDirectoryPageResponse as b3, type ClusterDiversity as b4, type ClusterDiversityView as b5, type ClusterEntityResponse as b6, type ClusterFormedEvent as b7, type ClusterMemberResponse as b8, type ClusterNameResponse as b9, type EncodeNativeSpotLimitOrderArgs as bA, type EncodeNativeSpotSettleLimitOrderArgs as bB, type EncodeNativeSpotSettleRoutedLimitOrderArgs as bC, type EncryptionKeyResponse as bD, type EntityRatchetResponse as bE, type EthSendTransactionRequest as bF, type ExecutionUnitPriceResponse as bG, type ExplorerEndpoint as bH, FEED_ID_DOMAIN_TAG as bI, type FeeHistoryResponse as bJ, type GapRange as bK, type GapRecord as bL, type GapRecordsResponse as bM, type Hash as bN, type Hex as bO, type IndexerStatus as bP, type JailStatusWindow as bQ, type KeyRotationWindow as bR, type ListProofRequestsResponse as bS, type LythUpgradePlanStatus as bT, type LythUpgradeStatusResponse as bU, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES as bV, MAX_NATIVE_RECEIPT_EVENTS as bW, ML_DSA_65_PUBLIC_KEY_LEN$1 as bX, ML_DSA_65_SIGNATURE_LEN$1 as bY, MULTISIG_ADDRESS_DERIVATION_DOMAIN as bZ, MarketActionError as b_, type ClusterResignationRow as ba, type ClusterResignationsResponse as bb, type ClusterStatusResponse as bc, type CreateRequestCanonicalArgs as bd, DIVERSITY_SCORE_MAX as be, type DagParent as bf, type DagParentsResponse as bg, type DagSyncStatus as bh, type DecodeTxExtension as bi, type DecodeTxLog as bj, type DecodeTxPqAttestation as bk, type DecodeTxResponse as bl, type DelegationCapResponse as bm, type DelegationHistoryRecord as bn, type DelegationRow as bo, type DelegationsResponse as bp, type DutyAbsence as bq, EMPTY_ROOT as br, type EncodeNativeNftBuyListingArgs as bs, type EncodeNativeNftCancelListingArgs as bt, type EncodeNativeNftCreateListingArgs as bu, type EncodeNativeNftPlaceAuctionBidArgs as bv, type EncodeNativeNftSettleAuctionArgs as bw, type EncodeNativeNftSweepExpiredListingsArgs as bx, type EncodeNativeSpotCancelOrderArgs as by, type EncodeNativeSpotCreateMarketArgs as bz, type NativeDecodedEvent as c, type NativeEventConsumer as c$, type MempoolSnapshot as c0, type MeshDecodedTx as c1, type MeshSignedTxResponse as c2, type MeshTxIntent as c3, type MeshUnsignedTxResponse as c4, type MetricsRangeResponse as c5, type MetricsRangeSample as c6, type MetricsRangeSeries as c7, type MetricsRangeStatus as c8, type MrcAccountRecord as c9, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as cA, NO_EVM_FINALITY_EVIDENCE_SCHEMA as cB, NO_EVM_FINALITY_EVIDENCE_SOURCE as cC, NO_EVM_RECEIPTS_ROOT_DOMAIN as cD, NO_EVM_RECEIPT_CODEC as cE, NO_EVM_RECEIPT_PROOF_SCHEMA as cF, NO_EVM_RECEIPT_PROOF_TYPE as cG, NO_EVM_RECEIPT_ROOT_ALGORITHM as cH, type NameCategory as cI, type NameOfResponse as cJ, type NameRegistrationQuote as cK, NameRegistryError as cL, type NativeAgentArbiterStateRecord as cM, type NativeAgentAttestationStateRecord as cN, type NativeAgentAvailabilityStateRecord as cO, type NativeAgentConsentStateRecord as cP, type NativeAgentEscrowStateRecord as cQ, type NativeAgentIssuerStateRecord as cR, type NativeAgentPolicySpendStateRecord as cS, type NativeAgentPolicyStateRecord as cT, type NativeAgentReputationReviewStateRecord as cU, type NativeAgentServiceStateRecord as cV, type NativeAgentStateFilterParamValue as cW, type NativeAgentStateResponseFilters as cX, type NativeAgentStateSource as cY, type NativeCallForwarderArtifact as cZ, type NativeCollectionRoyaltyStateRecord as c_, type MrcMetadataRecord as ca, type MrcPolicyRecord as cb, type MrcPolicySpendRecord as cc, NAME_BASE_MULTIPLIER as cd, NAME_FALLBACK_FEE_UNIT_LYTHOSHI as ce, NAME_LABEL_MAX_LEN as cf, NAME_LABEL_MIN_LEN as cg, NAME_MAX_LEN as ch, NAME_REGISTRY_SELECTORS as ci, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE as cj, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY as ck, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET as cl, NATIVE_MARKET_EVENT_FAMILY as cm, NATIVE_MARKET_MODULE_ADDRESS as cn, NATIVE_MARKET_MODULE_ADDRESS_BYTES as co, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as cp, NODE_REGISTRY_BLS_PUBKEY_BYTES as cq, NODE_REGISTRY_CAPABILITIES as cr, NODE_REGISTRY_CAPABILITY_MASK as cs, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS as ct, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS as cu, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES as cv, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID as cw, NODE_REGISTRY_PUBLIC_SERVICE_MASK as cx, NODE_REGISTRY_SELECTORS as cy, NO_EVM_ARCHIVE_PROOF_SCHEMA as cz, type NativeEventFilter as d, type OperatorRiskResponse as d$, type NativeEventProjection as d0, type NativeEventsResponseFilters as d1, type NativeEventsSource as d2, type NativeMarketAddressInput as d3, type NativeMarketAddressKind as d4, type NativeMarketForwarderInput as d5, type NativeMarketModuleCallEnvelope as d6, type NativeMarketModuleContractCall as d7, type NativeMarketOrderBookDelta as d8, type NativeMarketOrderBookDeltasResponseFilters as d9, type NoEvmBlsFinalityVerification as dA, type NoEvmFinalityBlockReference as dB, type NoEvmFinalityCertificate as dC, type NoEvmFinalityEvidence as dD, type NoEvmReceiptFinalityTrustPolicy as dE, type NoEvmReceiptProof as dF, NoEvmReceiptProofError as dG, type NoEvmReceiptProofErrorCode as dH, type NoEvmReceiptProofVerification as dI, type NoEvmReceiptTrustIssue as dJ, type NoEvmReceiptTrustIssueCode as dK, type NoEvmReceiptTrustPolicy as dL, type NoEvmReceiptTrustVerification as dM, type NoEvmReceiptTrustedBlsSigner as dN, type NodeHostingClass as dO, NodeRegistryError as dP, OPERATOR_ROUTER_EVENT_SIGS as dQ, OPERATOR_ROUTER_SELECTORS as dR, OPERATOR_ROUTER_SIGS as dS, ORACLE_EVENT_SIGS as dT, type OperatorAuthorityResponse as dU, type OperatorFeeChargedEvent as dV, type OperatorFeeConfig as dW, type OperatorFeeQuote as dX, type OperatorInfoResponse as dY, type OperatorNetworkMetadata as dZ, type OperatorNetworkMetadataView as d_, type NativeMarketOrderBookDeltasSource as da, type NativeMarketOrderBookStreamAction as db, type NativeMarketOrderBookStreamPayload as dc, type NativeMarketStateFilterParamValue as dd, type NativeMarketStateResponseFilters as de, type NativeMarketStateSource as df, type NativeModuleForwarderDescriptor as dg, type NativeMrcPolicyProjection as dh, type NativeNftAssetStandard as di, type NativeNftListingKind as dj, type NativeNftListingStateRecord as dk, type NativeReceiptCounters as dl, type NativeReceiptEvent as dm, type NativeReceiptSource as dn, type NativeSpotMarketStateRecord as dp, type NativeSpotOrderStateRecord as dq, type NetworkClientOptions as dr, type NetworkSlug as ds, type NoEvmArchiveCoveringSnapshot as dt, type NoEvmArchiveProof as du, type NoEvmArchiveSignatureVerification as dv, type NoEvmArchiveSignatureVerificationIssue as dw, type NoEvmArchiveSignatureVerificationIssueCode as dx, type NoEvmArchiveTrustedSigner as dy, type NoEvmBlockBlsFinalityVerification as dz, type TypedNativeReceiptEvent as e, SERVES_GPU_PROVE as e$, type OperatorRouterConfig as e0, type OperatorSigningActivityResponse as e1, type OperatorSigningEntry as e2, type OperatorSurfaceCapability as e3, type OperatorSurfaceStatus as e4, type OracleEvent as e5, OracleEventError as e6, type OracleFeedConfig as e7, type OracleLatestPrice as e8, type OracleSignerRow as e9, type ProofRequestView as eA, type ProverBidView as eB, type ProverBidsResponse as eC, ProverMarketError as eD, type ProverMarketState as eE, type ProverMarketStatusResponse as eF, type Quantity as eG, type QuoteLiquidity as eH, RESERVED_ADDRESS_HRPS as eI, type RankedBridgeRoute as eJ, type ReceiptProofTrustArchivePolicy as eK, type ReceiptProofTrustArchiveSigner as eL, type ReceiptProofTrustFinalityPolicy as eM, type ReceiptProofTrustFinalitySigner as eN, type ReceiptProofTrustPolicy as eO, type RedemptionQueueTicket as eP, type RegistryRecord as eQ, type ReportServiceProbeCalldataArgs as eR, type ReportServiceProbeRequest as eS, type ReportServiceProbeResponse as eT, type ResolveNameResponse as eU, type RichListHolder as eV, type RichListResponse as eW, type RoundInfo as eX, type RpcClientOptions as eY, type RpcEndpoint as eZ, type RuntimeProvenanceResponse as e_, type OracleSignersResponse as ea, type OracleWriters as eb, type P2pSeed as ec, PENDING_CHANGE_KIND_CODES as ed, PROVER_MARKET_ADDRESS as ee, PROVER_MARKET_BID_DOMAIN as ef, PROVER_MARKET_EVENT_SIGS as eg, PROVER_MARKET_REQUEST_DOMAIN as eh, PROVER_MARKET_SELECTORS as ei, PROVER_MARKET_SUBMIT_DOMAIN as ej, PROVER_SLASH_REASON_BAD_PROOF as ek, PROVER_SLASH_REASON_NON_DELIVERY as el, type ParsedName as em, type PeerSummary as en, type PeerSummaryAggregate as eo, type PendingChangeKind as ep, type PendingRewardsRow as eq, type PendingTxSummary as er, type PlaceLimitOrderViaArgs as es, type PlaceLimitOrderViaPlan as et, type PlaceSpotLimitOrderArgs as eu, type PlaceSpotMarketOrderArgs as ev, type PlaceSpotMarketOrderExArgs as ew, type PrecompileCatalogueResponse as ex, type PrecompileDescriptor as ey, type ProofRequestRow as ez, type NativeEventsFilter as f, buildNativeNftSettleAuctionForwarderInput as f$, SERVICE_PROBE_STATUS as f0, SET_POLICY_CLAIM_DOMAIN_TAG as f1, SPENDING_POLICY_SELECTORS as f2, type SearchHit as f3, type ServiceProbeStatusLabel as f4, type SigningEntryStatus as f5, type SpendingPolicyArgs as f6, SpendingPolicyError as f7, type SpendingPolicyTimeWindow as f8, type SpendingPolicyView as f9, type VerticesAtRoundResponse as fA, addressBytesToHex as fB, addressToBech32 as fC, addressToTypedBech32 as fD, allowRootFor as fE, assertNativeMarketOrderBookStreamPayload as fF, assessBridgeRoute as fG, bech32ToAddress as fH, bech32ToAddressBytes as fI, bidSighash as fJ, bridgeAddressHex as fK, bridgeDrainRemaining as fL, bridgeQuoteSubmitReadiness as fM, bridgeRoutesReadiness as fN, bridgeTransferCandidates as fO, buildBridgeRouteCatalogue as fP, buildCancelSpotOrderPlan as fQ, buildNativeCallForwarderArtifact as fR, buildNativeMarketModuleCallEnvelope as fS, buildNativeNftBuyListingForwarderInput as fT, buildNativeNftBuyListingModuleCall as fU, buildNativeNftCancelListingForwarderInput as fV, buildNativeNftCancelListingModuleCall as fW, buildNativeNftCreateListingForwarderInput as fX, buildNativeNftCreateListingModuleCall as fY, buildNativeNftPlaceAuctionBidForwarderInput as fZ, buildNativeNftPlaceAuctionBidModuleCall as f_, type SpotLimitOrderSide as fa, type SpotMarketOrderMode as fb, type StorageProofBatch as fc, type SubmitPendingChangeCalldataArgs as fd, type SwapIntentStatus as fe, type SyncStatus as ff, TESTNET_69420 as fg, type TokenBalanceMrcIdentity as fh, type TokenBalanceRecord as fi, type TokenBalanceWithMetadata as fj, type TotalBurnedResponse as fk, type TpmAttestationResponse as fl, type TransactionReceipt as fm, type TransactionView as fn, type TxConfirmations as fo, type TxFeedReceipt as fp, type TxFeedTransaction as fq, type TxStatusFoundResponse as fr, type TxStatusNotFoundResponse as fs, type TxStatusResponse as ft, type UpcomingDutiesResponse as fu, type UpcomingDutyMap as fv, type UserAddressInput as fw, V1_BRIDGE_ALLOWED_FEE_TOKEN as fx, V1_BRIDGE_ALLOWED_PROTOCOL as fy, type VertexAtRound as fz, type NativeEventsResponse as g, encodeNativeNftCancelListingCall as g$, buildNativeNftSettleAuctionModuleCall as g0, buildNativeNftSweepExpiredListingsForwarderInput as g1, buildNativeNftSweepExpiredListingsModuleCall as g2, buildNativeSpotCancelOrderForwarderInput as g3, buildNativeSpotCancelOrderModuleCall as g4, buildNativeSpotCreateMarketForwarderInput as g5, buildNativeSpotCreateMarketModuleCall as g6, buildNativeSpotLimitOrderForwarderInput as g7, buildNativeSpotLimitOrderModuleCall as g8, buildNativeSpotSettleLimitOrderForwarderInput as g9, decodeOracleEvent as gA, decodeTimeWindow as gB, decodeTxFeedResponse as gC, denyRootFor as gD, deriveClobMarketId as gE, deriveClusterAnchorAddress as gF, deriveFeedId as gG, deriveNativeSpotMarketId as gH, deriveNativeSpotOrderId as gI, destinationRoot as gJ, encodeAttestDkgReshareCalldata as gK, encodeBlockSelector as gL, encodeBridgeChallengeCalldata as gM, encodeBridgeClaimCalldata as gN, encodeCancelOrderCalldata as gO, encodeCancelPendingChangeCalldata as gP, encodeClaimPolicyByAddressCalldata as gQ, encodeCreateRequestCalldata as gR, encodeCreateRequestCanonical as gS, encodeDisableCalldata as gT, encodeEnableCalldata as gU, encodeLockBridgeConfigCalldata as gV, encodeNameAcceptTransferCall as gW, encodeNameProposeTransferCall as gX, encodeNameRegisterCall as gY, encodeNativeMarketModuleForwarderInput as gZ, encodeNativeNftBuyListingCall as g_, buildNativeSpotSettleLimitOrderModuleCall as ga, buildNativeSpotSettleRoutedLimitOrderForwarderInput as gb, buildNativeSpotSettleRoutedLimitOrderModuleCall as gc, buildPlaceLimitOrderViaPlan as gd, buildPlaceSpotLimitOrderPlan as ge, buildPlaceSpotMarketOrderExPlan as gf, buildPlaceSpotMarketOrderPlan as gg, categoryRoot as gh, clobAddressHex as gi, clusterApyPercent as gj, composeClaimBoundMessage as gk, computeNoEvmDacFinalityMessage as gl, computeNoEvmLeaderFinalityMessage as gm, computeNoEvmReceiptsRoot as gn, computeNoEvmRoundFinalityMessage as go, computeNoEvmTargetReceiptHash as gp, computeQuoteLiquidity as gq, consumeNativeEvents as gr, decodeClusterDiversity as gs, decodeClusterFormedEvent as gt, decodeNativeAgentStateResponse as gu, decodeNativeMarketOrderBookDeltasResponse as gv, decodeNativeReceiptResponse as gw, decodeNoEvmReceiptTranscript as gx, decodeOperatorFeeChargedEvent as gy, decodeOperatorNetworkMetadata as gz, type NativeAgentStateFilter as h, oraclePriceToNumber as h$, encodeNativeNftCreateListingCall as h0, encodeNativeNftPlaceAuctionBidCall as h1, encodeNativeNftSettleAuctionCall as h2, encodeNativeNftSweepExpiredListingsCall as h3, encodeNativeSpotCancelOrderCall as h4, encodeNativeSpotCreateMarketCall as h5, encodeNativeSpotLimitOrderCall as h6, encodeNativeSpotSettleLimitOrderCall as h7, encodeNativeSpotSettleRoutedLimitOrderCall as h8, encodePlaceLimitOrderCalldata as h9, isBridgeResumeCooldownActiveRevert as hA, isConcreteServiceProbeStatus as hB, isNativeDecodedEvent as hC, isNativeMarketOrderBookStreamPayload as hD, isSinglePublicServiceProbeMask as hE, isValidNodeRegistryCapabilities as hF, isValidPublicServiceProbeMask as hG, nameLengthModifierX10 as hH, nameRegistrationCost as hI, nameRegistryAddressHex as hJ, nativeAgentStateFilterParams as hK, nativeEventMatches as hL, nativeEventsFilterParams as hM, nativeEventsFromHistory as hN, nativeEventsFromReceipt as hO, nativeMarketEventFilter as hP, nativeMarketEventsFromHistory as hQ, nativeMarketEventsFromReceipt as hR, nativeMarketStateFilterParams as hS, noEvmReceiptTrustPolicyFromChainInfo as hT, nodeHostingClassFromByte as hU, nodeHostingClassToByte as hV, nodeRegistryAddressHex as hW, normalizeAddressHex as hX, normalizeBridgeRouteCatalogue as hY, normalizePendingChangeKind as hZ, oracleAddressHex as h_, encodePlaceLimitOrderViaCalldata as ha, encodePlaceMarketOrderCalldata as hb, encodePlaceMarketOrderExCalldata as hc, encodeRecoverOperatorNodeCalldata as hd, encodeReportServiceProbeCalldata as he, encodeSetBridgeResumeCooldownCalldata as hf, encodeSetBridgeRouteFinalityCalldata as hg, encodeSetLotSizeCalldata as hh, encodeSetMinNotionalCalldata as hi, encodeSetPolicyCalldata as hj, encodeSetPolicyClaimCalldata as hk, encodeSetTickSizeCalldata as hl, encodeSubmitBridgeProofCalldata as hm, encodeSubmitPendingChangeCalldata as hn, exportBridgeRouteCatalogueJson as ho, fetchChainInfoLatest as hp, fetchChainRegistryLatest as hq, formatOraclePrice as hr, getChainInfo as hs, getNoEvmReceiptTrustPolicy as ht, getP2pSeeds as hu, getRpcEndpoints as hv, hexToAddressBytes as hw, isBridgeAdminLockedRevert as hx, isBridgeCooldownZeroRevert as hy, isBridgeFinalityZeroRevert as hz, type NativeAgentStateResponse as i, mlDsa65AddressBytes as i$, packTimeWindow as i0, parseAddress as i1, parseBridgeRouteCatalogueJson as i2, parseChainRegistryToml as i3, parseDkgResharePublicKeys as i4, parseNameCategory as i5, parseNativeDecodedEvent as i6, parseQuantity as i7, parseQuantityBig as i8, proverMarketStateFromByte as i9, ENUM_VARIANT_INDEX_ML_DSA_65 as iA, type EncryptedEnvelope as iB, type EncryptedSubmission as iC, ML_DSA_65_PUBLIC_KEY_LEN as iD, ML_DSA_65_SEED_LEN as iE, ML_DSA_65_SIGNATURE_LEN as iF, ML_DSA_65_SIGNING_KEY_LEN as iG, ML_KEM_768_CIPHERTEXT_LEN as iH, ML_KEM_768_ENCAPSULATION_KEY_LEN as iI, ML_KEM_768_SHARED_SECRET_LEN as iJ, type NativeTxExtension as iK, type NativeTxExtensionDescriptor as iL, type NativeTxExtensionLike as iM, type NonceAad as iN, type PlaintextSubmission as iO, STANDARD_ALGO_NUMBER_ML_DSA_65 as iP, bincodeDecryptHint as iQ, bincodeEncryptedEnvelope as iR, bincodeNonceAad as iS, bincodeSignedTransaction as iT, buildEncryptedEnvelope as iU, buildEncryptedSubmission as iV, buildPlaintextSubmission as iW, encodeMlDsa65Opaque as iX, encodeTransactionForHash as iY, encryptInnerTx as iZ, fetchEncryptionKey as i_, quoteOperatorFee as ia, rankBridgeRoutes as ib, rankMarketsByVolume as ic, requestSighash as id, requireTypedAddress as ie, selectBridgeTransferRoute as ig, serviceProbeStatusLabel as ih, setDestinationRoot as ii, spendingPolicyAddressHex as ij, submitSighash as ik, typedBech32ToAddress as il, validateAddress as im, validateBridgeRouteCatalogue as io, verifyNoEvmArchiveProofSignatures as ip, verifyNoEvmBlockFinalityEvidenceMultisig as iq, verifyNoEvmBlockFinalityEvidenceThreshold as ir, verifyNoEvmFinalityEvidenceMultisig as is, verifyNoEvmFinalityEvidenceThreshold as it, verifyNoEvmReceiptProof as iu, verifyNoEvmReceiptProofTrust as iv, ADDRESS_DERIVATION_DOMAIN as iw, DKG_AEAD_TAG_LEN as ix, DKG_NONCE_LEN as iy, type DecryptHint as iz, type NativeMarketStateFilter as j, mlDsa65AddressFromPublicKey as j0, outerSigDigest as j1, submitEncryptedEnvelope as j2, submitPlaintextTransaction as j3, submitTransactionWithPrivacy as j4, type NativeMarketStateResponse as k, type NativeMarketOrderBookDeltasRequest as l, type NativeMarketOrderBookDeltasResponse as m, type AddressProfileResponse as n, type AddressFlowResponse as o, type RedemptionQueueResponse as p, type MrcAccountResponse as q, type MrcHoldersResponse as r, type BridgeRoutesRequest as s, type BridgeRoutesResponse as t, type ServiceProbeResponse as u, type ClobMarketsResponse as v, type ClobMarketResponse as w, type ClobTradesResponse as x, type ClobOhlcResponse as y, type ClobOrderBookResponse as z };
|
|
6005
|
+
export { type AddressActivityKindResponse as $, type ApiStreamsIndexResponse as A, type BlockSelector as B, type ChainStatsResponse as C, type NativeEvmTxFields as D, type EncryptionKey as E, MempoolClass as F, type TypedAddress as G, RpcClient as H, MlDsa65Backend as I, type AddressKind as J, ADDRESS_HRP as K, ADDRESS_KIND_HRPS as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, API_STREAM_TOPICS as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, type AccountPolicy as U, type AccountProofResponse as V, type Address as W, type AddressActivityArchiveRedirect as X, type AddressActivityEntry as Y, type AddressActivityEntryEnriched as Z, type AddressActivityKind as _, type RuntimeUpgradeStatus as a, type ClobTrade as a$, type AddressActivityKindRetention as a0, AddressError as a1, type AddressLabelRecord as a2, type AddressValidation as a3, type AgentReputationCategoryScope as a4, type AgentReputationRecord as a5, type AgentReputationResponse as a6, type ApiStreamTopic as a7, type ApiStreamTopicMetadata as a8, type ApiStreamTopicRetention as a9, BridgeRouteCatalogueError as aA, type BridgeRouteCatalogueJsonOptions as aB, type BridgeRouteCataloguePayload as aC, type BridgeRouteCatalogueRoute as aD, type BridgeRouteCatalogueValidation as aE, type BridgeRouteDisclosure as aF, type BridgeRouteSelection as aG, type BridgeRoutesSource as aH, type BridgeTransferIntent as aI, type BridgeTransferRequest as aJ, type BridgeVerifierDisclosure as aK, CHAIN_REGISTRY as aL, CHAIN_REGISTRY_RAW_BASE as aM, CLOB_MARKET_ID_DOMAIN_TAG as aN, CLOB_SELECTORS as aO, CLUSTER_FORMED_EVENT_SIG as aP, type CancelPendingChangeCalldataArgs as aQ, type CancelSpotOrderArgs as aR, type CapabilitiesResponse as aS, type CapabilityDescriptor as aT, type ChainInfo as aU, type ChainRegistry as aV, type CheckpointRecord as aW, type CirculatingSupplyResponse as aX, type ClobMarketAssets as aY, type ClobMarketRecord as aZ, type ClobMarketSummary as a_, type AssetPolicy as aa, type AttestDkgReshareCalldataArgs as ab, type AttestationWindow as ac, BRIDGE_QUOTE_API_BLOCKED_REASON as ad, BRIDGE_REVERT_TAGS as ae, BRIDGE_SELECTORS as af, BRIDGE_SUBMIT_API_BLOCKED_REASON as ag, type BlockHeader as ah, type BlockTag as ai, type BlsCertificateResponse as aj, type BridgeAdminControl as ak, type BridgeAnchorState as al, type BridgeBreakerState as am, type BridgeBytesInput as an, type BridgeCircuitBreakerFields as ao, type BridgeCircuitBreakerState as ap, type BridgeDrainCap as aq, type BridgeDrainStatus as ar, type BridgeHealthRecord as as, type BridgeHealthResponse as at, BridgePrecompileError as au, type BridgeQuoteSubmitReadiness as av, type BridgeRiskTier as aw, type BridgeRouteAssessment as ax, type BridgeRouteCandidate as ay, type BridgeRouteCatalogue as az, type NativeReceiptResponse as b, type MarketTransactionPlan as b$, type ClusterAprResponse as b0, type ClusterDelegatorsResponse as b1, type ClusterDirectoryEntryResponse as b2, type ClusterDirectoryPageResponse as b3, type ClusterDiversity as b4, type ClusterDiversityView as b5, type ClusterEntityResponse as b6, type ClusterFormedEvent as b7, type ClusterMemberResponse as b8, type ClusterNameResponse as b9, type EncodeNativeSpotLimitOrderArgs as bA, type EncodeNativeSpotSettleLimitOrderArgs as bB, type EncodeNativeSpotSettleRoutedLimitOrderArgs as bC, type EncryptionKeyResponse as bD, type EntityRatchetResponse as bE, type EthSendTransactionRequest as bF, type ExecutionUnitPriceResponse as bG, type ExplorerEndpoint as bH, FEED_ID_DOMAIN_TAG as bI, type FeeHistoryResponse as bJ, type GapRange as bK, type GapRecord as bL, type GapRecordsResponse as bM, type Hash as bN, type Hex as bO, type IndexerStatus as bP, type JailStatusWindow as bQ, type KeyRotationWindow as bR, type ListProofRequestsResponse as bS, type LythUpgradePlanStatus as bT, type LythUpgradeStatusResponse as bU, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES as bV, MAX_NATIVE_RECEIPT_EVENTS as bW, ML_DSA_65_PUBLIC_KEY_LEN$1 as bX, ML_DSA_65_SIGNATURE_LEN$1 as bY, MULTISIG_ADDRESS_DERIVATION_DOMAIN as bZ, MarketActionError as b_, type ClusterResignationRow as ba, type ClusterResignationsResponse as bb, type ClusterStatusResponse as bc, type CreateRequestCanonicalArgs as bd, DIVERSITY_SCORE_MAX as be, type DagParent as bf, type DagParentsResponse as bg, type DagSyncStatus as bh, type DecodeTxExtension as bi, type DecodeTxLog as bj, type DecodeTxPqAttestation as bk, type DecodeTxResponse as bl, type DelegationCapResponse as bm, type DelegationHistoryRecord as bn, type DelegationRow as bo, type DelegationsResponse as bp, type DutyAbsence as bq, EMPTY_ROOT as br, type EncodeNativeNftBuyListingArgs as bs, type EncodeNativeNftCancelListingArgs as bt, type EncodeNativeNftCreateListingArgs as bu, type EncodeNativeNftPlaceAuctionBidArgs as bv, type EncodeNativeNftSettleAuctionArgs as bw, type EncodeNativeNftSweepExpiredListingsArgs as bx, type EncodeNativeSpotCancelOrderArgs as by, type EncodeNativeSpotCreateMarketArgs as bz, type NativeDecodedEvent as c, type NativeEventConsumer as c$, type MempoolSnapshot as c0, type MeshDecodedTx as c1, type MeshSignedTxResponse as c2, type MeshTxIntent as c3, type MeshUnsignedTxResponse as c4, type MetricsRangeResponse as c5, type MetricsRangeSample as c6, type MetricsRangeSeries as c7, type MetricsRangeStatus as c8, type MrcAccountRecord as c9, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as cA, NO_EVM_FINALITY_EVIDENCE_SCHEMA as cB, NO_EVM_FINALITY_EVIDENCE_SOURCE as cC, NO_EVM_RECEIPTS_ROOT_DOMAIN as cD, NO_EVM_RECEIPT_CODEC as cE, NO_EVM_RECEIPT_PROOF_SCHEMA as cF, NO_EVM_RECEIPT_PROOF_TYPE as cG, NO_EVM_RECEIPT_ROOT_ALGORITHM as cH, type NameCategory as cI, type NameOfResponse as cJ, type NameRegistrationQuote as cK, NameRegistryError as cL, type NativeAgentArbiterStateRecord as cM, type NativeAgentAttestationStateRecord as cN, type NativeAgentAvailabilityStateRecord as cO, type NativeAgentConsentStateRecord as cP, type NativeAgentEscrowStateRecord as cQ, type NativeAgentIssuerStateRecord as cR, type NativeAgentPolicySpendStateRecord as cS, type NativeAgentPolicyStateRecord as cT, type NativeAgentReputationReviewStateRecord as cU, type NativeAgentServiceStateRecord as cV, type NativeAgentStateFilterParamValue as cW, type NativeAgentStateResponseFilters as cX, type NativeAgentStateSource as cY, type NativeCallForwarderArtifact as cZ, type NativeCollectionRoyaltyStateRecord as c_, type MrcMetadataRecord as ca, type MrcPolicyRecord as cb, type MrcPolicySpendRecord as cc, NAME_BASE_MULTIPLIER as cd, NAME_FALLBACK_FEE_UNIT_LYTHOSHI as ce, NAME_LABEL_MAX_LEN as cf, NAME_LABEL_MIN_LEN as cg, NAME_MAX_LEN as ch, NAME_REGISTRY_SELECTORS as ci, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE as cj, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY as ck, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET as cl, NATIVE_MARKET_EVENT_FAMILY as cm, NATIVE_MARKET_MODULE_ADDRESS as cn, NATIVE_MARKET_MODULE_ADDRESS_BYTES as co, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as cp, NODE_REGISTRY_BLS_PUBKEY_BYTES as cq, NODE_REGISTRY_CAPABILITIES as cr, NODE_REGISTRY_CAPABILITY_MASK as cs, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS as ct, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS as cu, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES as cv, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID as cw, NODE_REGISTRY_PUBLIC_SERVICE_MASK as cx, NODE_REGISTRY_SELECTORS as cy, NO_EVM_ARCHIVE_PROOF_SCHEMA as cz, type NativeEventFilter as d, type OperatorRiskResponse as d$, type NativeEventProjection as d0, type NativeEventsResponseFilters as d1, type NativeEventsSource as d2, type NativeMarketAddressInput as d3, type NativeMarketAddressKind as d4, type NativeMarketForwarderInput as d5, type NativeMarketModuleCallEnvelope as d6, type NativeMarketModuleContractCall as d7, type NativeMarketOrderBookDelta as d8, type NativeMarketOrderBookDeltasResponseFilters as d9, type NoEvmBlsFinalityVerification as dA, type NoEvmFinalityBlockReference as dB, type NoEvmFinalityCertificate as dC, type NoEvmFinalityEvidence as dD, type NoEvmReceiptFinalityTrustPolicy as dE, type NoEvmReceiptProof as dF, NoEvmReceiptProofError as dG, type NoEvmReceiptProofErrorCode as dH, type NoEvmReceiptProofVerification as dI, type NoEvmReceiptTrustIssue as dJ, type NoEvmReceiptTrustIssueCode as dK, type NoEvmReceiptTrustPolicy as dL, type NoEvmReceiptTrustVerification as dM, type NoEvmReceiptTrustedBlsSigner as dN, type NodeHostingClass as dO, NodeRegistryError as dP, OPERATOR_ROUTER_EVENT_SIGS as dQ, OPERATOR_ROUTER_SELECTORS as dR, OPERATOR_ROUTER_SIGS as dS, ORACLE_EVENT_SIGS as dT, type OperatorAuthorityResponse as dU, type OperatorFeeChargedEvent as dV, type OperatorFeeConfig as dW, type OperatorFeeQuote as dX, type OperatorInfoResponse as dY, type OperatorNetworkMetadata as dZ, type OperatorNetworkMetadataView as d_, type NativeMarketOrderBookDeltasSource as da, type NativeMarketOrderBookStreamAction as db, type NativeMarketOrderBookStreamPayload as dc, type NativeMarketStateFilterParamValue as dd, type NativeMarketStateResponseFilters as de, type NativeMarketStateSource as df, type NativeModuleForwarderDescriptor as dg, type NativeMrcPolicyProjection as dh, type NativeNftAssetStandard as di, type NativeNftListingKind as dj, type NativeNftListingStateRecord as dk, type NativeReceiptCounters as dl, type NativeReceiptEvent as dm, type NativeReceiptSource as dn, type NativeSpotMarketStateRecord as dp, type NativeSpotOrderStateRecord as dq, type NetworkClientOptions as dr, type NetworkSlug as ds, type NoEvmArchiveCoveringSnapshot as dt, type NoEvmArchiveProof as du, type NoEvmArchiveSignatureVerification as dv, type NoEvmArchiveSignatureVerificationIssue as dw, type NoEvmArchiveSignatureVerificationIssueCode as dx, type NoEvmArchiveTrustedSigner as dy, type NoEvmBlockBlsFinalityVerification as dz, type TypedNativeReceiptEvent as e, SERVES_GPU_PROVE as e$, type OperatorRouterConfig as e0, type OperatorSigningActivityResponse as e1, type OperatorSigningEntry as e2, type OperatorSurfaceCapability as e3, type OperatorSurfaceStatus as e4, type OracleEvent as e5, OracleEventError as e6, type OracleFeedConfig as e7, type OracleLatestPrice as e8, type OracleSignerRow as e9, type ProofRequestView as eA, type ProverBidView as eB, type ProverBidsResponse as eC, ProverMarketError as eD, type ProverMarketState as eE, type ProverMarketStatusResponse as eF, type Quantity as eG, type QuoteLiquidity as eH, RESERVED_ADDRESS_HRPS as eI, type RankedBridgeRoute as eJ, type ReceiptProofTrustArchivePolicy as eK, type ReceiptProofTrustArchiveSigner as eL, type ReceiptProofTrustFinalityPolicy as eM, type ReceiptProofTrustFinalitySigner as eN, type ReceiptProofTrustPolicy as eO, type RedemptionQueueTicket as eP, type RegistryRecord as eQ, type ReportServiceProbeCalldataArgs as eR, type ReportServiceProbeRequest as eS, type ReportServiceProbeResponse as eT, type ResolveNameResponse as eU, type RichListHolder as eV, type RichListResponse as eW, type RoundInfo as eX, type RpcClientOptions as eY, type RpcEndpoint as eZ, type RuntimeProvenanceResponse as e_, type OracleSignersResponse as ea, type OracleWriters as eb, type P2pSeed as ec, PENDING_CHANGE_KIND_CODES as ed, PROVER_MARKET_ADDRESS as ee, PROVER_MARKET_BID_DOMAIN as ef, PROVER_MARKET_EVENT_SIGS as eg, PROVER_MARKET_REQUEST_DOMAIN as eh, PROVER_MARKET_SELECTORS as ei, PROVER_MARKET_SUBMIT_DOMAIN as ej, PROVER_SLASH_REASON_BAD_PROOF as ek, PROVER_SLASH_REASON_NON_DELIVERY as el, type ParsedName as em, type PeerSummary as en, type PeerSummaryAggregate as eo, type PendingChangeKind as ep, type PendingRewardsRow as eq, type PendingTxSummary as er, type PlaceLimitOrderViaArgs as es, type PlaceLimitOrderViaPlan as et, type PlaceSpotLimitOrderArgs as eu, type PlaceSpotMarketOrderArgs as ev, type PlaceSpotMarketOrderExArgs as ew, type PrecompileCatalogueResponse as ex, type PrecompileDescriptor as ey, type ProofRequestRow as ez, type NativeEventsFilter as f, buildNativeNftSettleAuctionForwarderInput as f$, SERVICE_PROBE_STATUS as f0, SET_POLICY_CLAIM_DOMAIN_TAG as f1, SPENDING_POLICY_SELECTORS as f2, type SearchHit as f3, type ServiceProbeStatusLabel as f4, type SigningEntryStatus as f5, type SpendingPolicyArgs as f6, SpendingPolicyError as f7, type SpendingPolicyTimeWindow as f8, type SpendingPolicyView as f9, type VerticesAtRoundResponse as fA, addressBytesToHex as fB, addressToBech32 as fC, addressToTypedBech32 as fD, allowRootFor as fE, assertNativeMarketOrderBookStreamPayload as fF, assessBridgeRoute as fG, bech32ToAddress as fH, bech32ToAddressBytes as fI, bidSighash as fJ, bridgeAddressHex as fK, bridgeDrainRemaining as fL, bridgeQuoteSubmitReadiness as fM, bridgeRoutesReadiness as fN, bridgeTransferCandidates as fO, buildBridgeRouteCatalogue as fP, buildCancelSpotOrderPlan as fQ, buildNativeCallForwarderArtifact as fR, buildNativeMarketModuleCallEnvelope as fS, buildNativeNftBuyListingForwarderInput as fT, buildNativeNftBuyListingModuleCall as fU, buildNativeNftCancelListingForwarderInput as fV, buildNativeNftCancelListingModuleCall as fW, buildNativeNftCreateListingForwarderInput as fX, buildNativeNftCreateListingModuleCall as fY, buildNativeNftPlaceAuctionBidForwarderInput as fZ, buildNativeNftPlaceAuctionBidModuleCall as f_, type SpotLimitOrderSide as fa, type SpotMarketOrderMode as fb, type StorageProofBatch as fc, type SubmitPendingChangeCalldataArgs as fd, type SwapIntentStatus as fe, type SyncStatus as ff, TESTNET_69420 as fg, type TokenBalanceMrcIdentity as fh, type TokenBalanceRecord as fi, type TokenBalanceWithMetadata as fj, type TotalBurnedResponse as fk, type TpmAttestationResponse as fl, type TransactionReceipt as fm, type TransactionView as fn, type TxConfirmations as fo, type TxFeedReceipt as fp, type TxFeedTransaction as fq, type TxStatusFoundResponse as fr, type TxStatusNotFoundResponse as fs, type TxStatusResponse as ft, type UpcomingDutiesResponse as fu, type UpcomingDutyMap as fv, type UserAddressInput as fw, V1_BRIDGE_ALLOWED_FEE_TOKEN as fx, V1_BRIDGE_ALLOWED_PROTOCOL as fy, type VertexAtRound as fz, type NativeEventsResponse as g, encodeNativeNftCancelListingCall as g$, buildNativeNftSettleAuctionModuleCall as g0, buildNativeNftSweepExpiredListingsForwarderInput as g1, buildNativeNftSweepExpiredListingsModuleCall as g2, buildNativeSpotCancelOrderForwarderInput as g3, buildNativeSpotCancelOrderModuleCall as g4, buildNativeSpotCreateMarketForwarderInput as g5, buildNativeSpotCreateMarketModuleCall as g6, buildNativeSpotLimitOrderForwarderInput as g7, buildNativeSpotLimitOrderModuleCall as g8, buildNativeSpotSettleLimitOrderForwarderInput as g9, decodeOracleEvent as gA, decodeTimeWindow as gB, decodeTxFeedResponse as gC, denyRootFor as gD, deriveClobMarketId as gE, deriveClusterAnchorAddress as gF, deriveFeedId as gG, deriveNativeSpotMarketId as gH, deriveNativeSpotOrderId as gI, destinationRoot as gJ, encodeAttestDkgReshareCalldata as gK, encodeBlockSelector as gL, encodeBridgeChallengeCalldata as gM, encodeBridgeClaimCalldata as gN, encodeCancelOrderCalldata as gO, encodeCancelPendingChangeCalldata as gP, encodeClaimPolicyByAddressCalldata as gQ, encodeCreateRequestCalldata as gR, encodeCreateRequestCanonical as gS, encodeDisableCalldata as gT, encodeEnableCalldata as gU, encodeLockBridgeConfigCalldata as gV, encodeNameAcceptTransferCall as gW, encodeNameProposeTransferCall as gX, encodeNameRegisterCall as gY, encodeNativeMarketModuleForwarderInput as gZ, encodeNativeNftBuyListingCall as g_, buildNativeSpotSettleLimitOrderModuleCall as ga, buildNativeSpotSettleRoutedLimitOrderForwarderInput as gb, buildNativeSpotSettleRoutedLimitOrderModuleCall as gc, buildPlaceLimitOrderViaPlan as gd, buildPlaceSpotLimitOrderPlan as ge, buildPlaceSpotMarketOrderExPlan as gf, buildPlaceSpotMarketOrderPlan as gg, categoryRoot as gh, clobAddressHex as gi, clusterApyPercent as gj, composeClaimBoundMessage as gk, computeNoEvmDacFinalityMessage as gl, computeNoEvmLeaderFinalityMessage as gm, computeNoEvmReceiptsRoot as gn, computeNoEvmRoundFinalityMessage as go, computeNoEvmTargetReceiptHash as gp, computeQuoteLiquidity as gq, consumeNativeEvents as gr, decodeClusterDiversity as gs, decodeClusterFormedEvent as gt, decodeNativeAgentStateResponse as gu, decodeNativeMarketOrderBookDeltasResponse as gv, decodeNativeReceiptResponse as gw, decodeNoEvmReceiptTranscript as gx, decodeOperatorFeeChargedEvent as gy, decodeOperatorNetworkMetadata as gz, type NativeAgentStateFilter as h, oraclePriceToNumber as h$, encodeNativeNftCreateListingCall as h0, encodeNativeNftPlaceAuctionBidCall as h1, encodeNativeNftSettleAuctionCall as h2, encodeNativeNftSweepExpiredListingsCall as h3, encodeNativeSpotCancelOrderCall as h4, encodeNativeSpotCreateMarketCall as h5, encodeNativeSpotLimitOrderCall as h6, encodeNativeSpotSettleLimitOrderCall as h7, encodeNativeSpotSettleRoutedLimitOrderCall as h8, encodePlaceLimitOrderCalldata as h9, isBridgeResumeCooldownActiveRevert as hA, isConcreteServiceProbeStatus as hB, isNativeDecodedEvent as hC, isNativeMarketOrderBookStreamPayload as hD, isSinglePublicServiceProbeMask as hE, isValidNodeRegistryCapabilities as hF, isValidPublicServiceProbeMask as hG, nameLengthModifierX10 as hH, nameRegistrationCost as hI, nameRegistryAddressHex as hJ, nativeAgentStateFilterParams as hK, nativeEventMatches as hL, nativeEventsFilterParams as hM, nativeEventsFromHistory as hN, nativeEventsFromReceipt as hO, nativeMarketEventFilter as hP, nativeMarketEventsFromHistory as hQ, nativeMarketEventsFromReceipt as hR, nativeMarketStateFilterParams as hS, noEvmReceiptTrustPolicyFromChainInfo as hT, nodeHostingClassFromByte as hU, nodeHostingClassToByte as hV, nodeRegistryAddressHex as hW, normalizeAddressHex as hX, normalizeBridgeRouteCatalogue as hY, normalizePendingChangeKind as hZ, oracleAddressHex as h_, encodePlaceLimitOrderViaCalldata as ha, encodePlaceMarketOrderCalldata as hb, encodePlaceMarketOrderExCalldata as hc, encodeRecoverOperatorNodeCalldata as hd, encodeReportServiceProbeCalldata as he, encodeSetBridgeResumeCooldownCalldata as hf, encodeSetBridgeRouteFinalityCalldata as hg, encodeSetLotSizeCalldata as hh, encodeSetMinNotionalCalldata as hi, encodeSetPolicyCalldata as hj, encodeSetPolicyClaimCalldata as hk, encodeSetTickSizeCalldata as hl, encodeSubmitBridgeProofCalldata as hm, encodeSubmitPendingChangeCalldata as hn, exportBridgeRouteCatalogueJson as ho, fetchChainInfoLatest as hp, fetchChainRegistryLatest as hq, formatOraclePrice as hr, getChainInfo as hs, getNoEvmReceiptTrustPolicy as ht, getP2pSeeds as hu, getRpcEndpoints as hv, hexToAddressBytes as hw, isBridgeAdminLockedRevert as hx, isBridgeCooldownZeroRevert as hy, isBridgeFinalityZeroRevert as hz, type NativeAgentStateResponse as i, fetchEncryptionKey as i$, packTimeWindow as i0, parseAddress as i1, parseBridgeRouteCatalogueJson as i2, parseChainRegistryToml as i3, parseDkgResharePublicKeys as i4, parseNameCategory as i5, parseNativeDecodedEvent as i6, parseQuantity as i7, parseQuantityBig as i8, proverMarketStateFromByte as i9, ENCRYPTED_SUBMISSION_UNAVAILABLE_MESSAGE as iA, ENUM_VARIANT_INDEX_ML_DSA_65 as iB, type EncryptedEnvelope as iC, type EncryptedSubmission as iD, ML_DSA_65_PUBLIC_KEY_LEN as iE, ML_DSA_65_SEED_LEN as iF, ML_DSA_65_SIGNATURE_LEN as iG, ML_DSA_65_SIGNING_KEY_LEN as iH, ML_KEM_768_CIPHERTEXT_LEN as iI, ML_KEM_768_ENCAPSULATION_KEY_LEN as iJ, ML_KEM_768_SHARED_SECRET_LEN as iK, type NativeTxExtension as iL, type NativeTxExtensionDescriptor as iM, type NativeTxExtensionLike as iN, type NonceAad as iO, type PlaintextSubmission as iP, STANDARD_ALGO_NUMBER_ML_DSA_65 as iQ, bincodeDecryptHint as iR, bincodeEncryptedEnvelope as iS, bincodeNonceAad as iT, bincodeSignedTransaction as iU, buildEncryptedEnvelope as iV, buildEncryptedSubmission as iW, buildPlaintextSubmission as iX, encodeMlDsa65Opaque as iY, encodeTransactionForHash as iZ, encryptInnerTx as i_, quoteOperatorFee as ia, rankBridgeRoutes as ib, rankMarketsByVolume as ic, requestSighash as id, requireTypedAddress as ie, selectBridgeTransferRoute as ig, serviceProbeStatusLabel as ih, setDestinationRoot as ii, spendingPolicyAddressHex as ij, submitSighash as ik, typedBech32ToAddress as il, validateAddress as im, validateBridgeRouteCatalogue as io, verifyNoEvmArchiveProofSignatures as ip, verifyNoEvmBlockFinalityEvidenceMultisig as iq, verifyNoEvmBlockFinalityEvidenceThreshold as ir, verifyNoEvmFinalityEvidenceMultisig as is, verifyNoEvmFinalityEvidenceThreshold as it, verifyNoEvmReceiptProof as iu, verifyNoEvmReceiptProofTrust as iv, ADDRESS_DERIVATION_DOMAIN as iw, DKG_AEAD_TAG_LEN as ix, DKG_NONCE_LEN as iy, type DecryptHint as iz, type NativeMarketStateFilter as j, mlDsa65AddressBytes as j0, mlDsa65AddressFromPublicKey as j1, outerSigDigest as j2, submitEncryptedEnvelope as j3, submitPlaintextTransaction as j4, submitTransactionWithPrivacy as j5, type NativeMarketStateResponse as k, type NativeMarketOrderBookDeltasRequest as l, type NativeMarketOrderBookDeltasResponse as m, type AddressProfileResponse as n, type AddressFlowResponse as o, type RedemptionQueueResponse as p, type MrcAccountResponse as q, type MrcHoldersResponse as r, type BridgeRoutesRequest as s, type BridgeRoutesResponse as t, type ServiceProbeResponse as u, type ClobMarketsResponse as v, type ClobMarketResponse as w, type ClobTradesResponse as x, type ClobOhlcResponse as y, type ClobOrderBookResponse as z };
|