@monolythium/core-sdk 0.2.0 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/crypto/index.cjs.map +1 -1
- package/dist/crypto/index.d.cts +3 -3
- package/dist/crypto/index.d.ts +3 -3
- package/dist/crypto/index.js.map +1 -1
- package/dist/ethers/index.cjs +58 -5
- package/dist/ethers/index.cjs.map +1 -1
- package/dist/ethers/index.d.cts +1 -1
- package/dist/ethers/index.d.ts +1 -1
- package/dist/ethers/index.js +58 -5
- package/dist/ethers/index.js.map +1 -1
- package/dist/index.cjs +183 -32
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +40 -22
- package/dist/index.d.ts +40 -22
- package/dist/index.js +181 -33
- package/dist/index.js.map +1 -1
- package/dist/{native-events-BEkkGoak.d.cts → native-events-CA0yrnj-.d.cts} +33 -16
- package/dist/{native-events-BEkkGoak.d.ts → native-events-CA0yrnj-.d.ts} +33 -16
- package/dist/{submission-BrsftNSl.d.cts → submission-AOqfeSIS.d.cts} +1 -1
- package/dist/{submission-CelGfDRQ.d.ts → submission-msoZzFIa.d.ts} +1 -1
- package/package.json +1 -1
|
@@ -17,6 +17,8 @@ declare const BRIDGE_REVERT_TAGS: {
|
|
|
17
17
|
};
|
|
18
18
|
declare const BRIDGE_QUOTE_API_BLOCKED_REASON = "bridge quote requires a mono-core live quote API/runtime primitive";
|
|
19
19
|
declare const BRIDGE_SUBMIT_API_BLOCKED_REASON = "bridge submit requires a mono-core live submit API/runtime primitive";
|
|
20
|
+
declare const V1_BRIDGE_ALLOWED_FEE_TOKEN = "LINK";
|
|
21
|
+
declare const V1_BRIDGE_ALLOWED_PROTOCOL = "chainlink-ccip";
|
|
20
22
|
type BridgeBytesInput = string | Uint8Array | readonly number[];
|
|
21
23
|
type BridgeAdminControl = "none" | "consensusOnly" | "operatorKey" | "unknown";
|
|
22
24
|
type BridgeCircuitBreakerState = "armed" | "paused" | "disabled" | "unknown";
|
|
@@ -44,7 +46,9 @@ interface BridgeVerifierDisclosure {
|
|
|
44
46
|
interface BridgeRouteDisclosure {
|
|
45
47
|
routeId: string;
|
|
46
48
|
bridge: string;
|
|
49
|
+
protocol?: string | null;
|
|
47
50
|
asset: string;
|
|
51
|
+
feeToken: string;
|
|
48
52
|
sourceChain: string;
|
|
49
53
|
destinationChain: string;
|
|
50
54
|
verifier: BridgeVerifierDisclosure;
|
|
@@ -62,7 +66,9 @@ interface BridgeRouteCatalogueRoute {
|
|
|
62
66
|
bridgeId: string;
|
|
63
67
|
wrappedAsset: string;
|
|
64
68
|
bridge: string;
|
|
69
|
+
protocol?: string | null;
|
|
65
70
|
asset: string;
|
|
71
|
+
feeToken: string;
|
|
66
72
|
sourceChain: string;
|
|
67
73
|
destinationChain: string;
|
|
68
74
|
verifier: BridgeVerifierDisclosure;
|
|
@@ -869,8 +875,8 @@ type BlockHeader = {
|
|
|
869
875
|
};
|
|
870
876
|
|
|
871
877
|
/**
|
|
872
|
-
*
|
|
873
|
-
*
|
|
878
|
+
* JSON-RPC block tag. Use [`BlockSelector`] when sending to the wire; passive
|
|
879
|
+
* compatibility reads still use the `eth_*` block-argument shape.
|
|
874
880
|
*/
|
|
875
881
|
type BlockTag = "latest" | "earliest" | "finalized" | "safe" | "pending";
|
|
876
882
|
|
|
@@ -901,7 +907,11 @@ type BlsCertificateResponse = {
|
|
|
901
907
|
};
|
|
902
908
|
|
|
903
909
|
/**
|
|
904
|
-
*
|
|
910
|
+
* Legacy compatibility call/estimate request shape.
|
|
911
|
+
*
|
|
912
|
+
* New v4.1 no-EVM app flows should prefer native MRV/RISC-V builders and
|
|
913
|
+
* `lyth_*` previews. This type remains for raw compatibility RPC methods and
|
|
914
|
+
* generated TypeScript bindings.
|
|
905
915
|
*
|
|
906
916
|
* Every field is optional — the chain rejects payloads that omit
|
|
907
917
|
* required fields with an `InvalidParams` error.
|
|
@@ -921,7 +931,7 @@ type CallRequest = {
|
|
|
921
931
|
*/
|
|
922
932
|
gas?: string;
|
|
923
933
|
/**
|
|
924
|
-
* Fee per execution unit on legacy
|
|
934
|
+
* Fee per execution unit on legacy compatibility paths.
|
|
925
935
|
*/
|
|
926
936
|
gasPrice?: string;
|
|
927
937
|
/**
|
|
@@ -1805,7 +1815,7 @@ type PendingTxSummary = {
|
|
|
1805
1815
|
};
|
|
1806
1816
|
|
|
1807
1817
|
/**
|
|
1808
|
-
* `lyth_listActivePrecompiles` entry
|
|
1818
|
+
* `lyth_listActivePrecompiles` entry.
|
|
1809
1819
|
*/
|
|
1810
1820
|
type PrecompileDescriptor = {
|
|
1811
1821
|
/**
|
|
@@ -2224,8 +2234,8 @@ declare function decodeNativeMarketOrderBookDeltasResponse(value: unknown): Nati
|
|
|
2224
2234
|
|
|
2225
2235
|
declare const NO_EVM_RECEIPT_PROOF_SCHEMA = "mono.no_evm_receipt_proof.v1";
|
|
2226
2236
|
declare const NO_EVM_RECEIPT_PROOF_TYPE = "canonicalReceiptsTranscript";
|
|
2227
|
-
declare const NO_EVM_RECEIPT_ROOT_ALGORITHM = "keccak256(monolythium/v4.1/
|
|
2228
|
-
declare const NO_EVM_RECEIPT_CODEC = "bincode(
|
|
2237
|
+
declare const NO_EVM_RECEIPT_ROOT_ALGORITHM = "keccak256-binary-merkle(monolythium/v4.1/receipt_leaf/1, monolythium/v4.1/receipt_node/1, duplicate-last padding)";
|
|
2238
|
+
declare const NO_EVM_RECEIPT_CODEC = "bincode(protocore_execution_types::Receipt)";
|
|
2229
2239
|
declare const NO_EVM_RECEIPTS_ROOT_DOMAIN = "monolythium/v4.1/receipts_root_empty/1";
|
|
2230
2240
|
declare const NO_EVM_ARCHIVE_PROOF_SCHEMA = "mono.no_evm_receipt_archive_binding.v1";
|
|
2231
2241
|
declare const NO_EVM_ARCHIVE_SIGNATURE_SCHEME = "mono.snapshot.sig.v1";
|
|
@@ -2458,8 +2468,7 @@ declare function parseChainRegistryToml(input: string): ChainInfo;
|
|
|
2458
2468
|
*
|
|
2459
2469
|
* Mirrors the Rust SDK's `RpcClient` — every public method maps 1:1 to
|
|
2460
2470
|
* a method on the Rust client, returns the same wire-shape value, and
|
|
2461
|
-
* sends the same `lyth_*` / `eth_*` / `debug_*` JSON-RPC method strings
|
|
2462
|
-
* (Law §13.2).
|
|
2471
|
+
* sends the same `lyth_*` / `eth_*` / `debug_*` JSON-RPC method strings.
|
|
2463
2472
|
*/
|
|
2464
2473
|
|
|
2465
2474
|
/** Optional per-client configuration. */
|
|
@@ -2475,7 +2484,7 @@ interface NetworkClientOptions extends RpcClientOptions {
|
|
|
2475
2484
|
/** Probe all known endpoints and choose the first one that answers. */
|
|
2476
2485
|
probe?: boolean;
|
|
2477
2486
|
}
|
|
2478
|
-
/** Typed
|
|
2487
|
+
/** Typed user address (`mono1...`) accepted at public SDK boundaries. */
|
|
2479
2488
|
type UserAddressInput = string;
|
|
2480
2489
|
interface TxFeedReceipt {
|
|
2481
2490
|
status: number;
|
|
@@ -2507,6 +2516,13 @@ interface TxFeedResponse {
|
|
|
2507
2516
|
nextCursor: string | null;
|
|
2508
2517
|
transactions: TxFeedTransaction[];
|
|
2509
2518
|
}
|
|
2519
|
+
interface ExecutionUnitPriceResponse {
|
|
2520
|
+
executionUnitPriceLythoshi: string;
|
|
2521
|
+
basePricePerExecutionUnitLythoshi: string;
|
|
2522
|
+
priorityTipLythoshi: string;
|
|
2523
|
+
blockNumber: number | null;
|
|
2524
|
+
source: string;
|
|
2525
|
+
}
|
|
2510
2526
|
declare const MAX_NATIVE_RECEIPT_EVENTS = 1000;
|
|
2511
2527
|
interface NativeReceiptCounters {
|
|
2512
2528
|
cycles: number;
|
|
@@ -2587,7 +2603,7 @@ interface NoEvmFinalityEvidence {
|
|
|
2587
2603
|
interface NoEvmReceiptProofBase {
|
|
2588
2604
|
schema: "mono.no_evm_receipt_proof.v1";
|
|
2589
2605
|
rootAlgorithm: string;
|
|
2590
|
-
receiptCodec: "bincode(
|
|
2606
|
+
receiptCodec: "bincode(protocore_execution_types::Receipt)";
|
|
2591
2607
|
blockHash: string;
|
|
2592
2608
|
txHash: string;
|
|
2593
2609
|
receiptsRoot: string;
|
|
@@ -3505,12 +3521,13 @@ declare class RpcClient {
|
|
|
3505
3521
|
lythMempoolPending(sender: string): Promise<PendingTxSummary[]>;
|
|
3506
3522
|
/** `lyth_currentRound` — latest committed height. */
|
|
3507
3523
|
lythCurrentRound(): Promise<RoundInfo>;
|
|
3524
|
+
/** `lyth_getTransactionCount` — native sender nonce. */
|
|
3525
|
+
lythGetTransactionCount(address: string): Promise<bigint>;
|
|
3526
|
+
/** `lyth_executionUnitPrice` — native execution-unit price in lythoshi. */
|
|
3527
|
+
lythExecutionUnitPrice(): Promise<ExecutionUnitPriceResponse>;
|
|
3508
3528
|
/** `lyth_peerSummary` — public-safe aggregate peer-network diagnostics. */
|
|
3509
3529
|
lythPeerSummary(): Promise<PeerSummaryAggregate>;
|
|
3510
|
-
/**
|
|
3511
|
-
* `lyth_listActivePrecompiles` — milestone-gated precompile catalogue
|
|
3512
|
-
* (OI-0170 / ADR-0015 §5).
|
|
3513
|
-
*/
|
|
3530
|
+
/** `lyth_listActivePrecompiles` — native precompile catalogue. */
|
|
3514
3531
|
lythListActivePrecompiles(block?: BlockSelector): Promise<PrecompileCatalogueResponse>;
|
|
3515
3532
|
/** `lyth_capabilities` — address-keyed precompile capability map. */
|
|
3516
3533
|
lythCapabilities(block?: BlockSelector): Promise<CapabilitiesResponse>;
|
|
@@ -3705,4 +3722,4 @@ declare function nativeEventsFromHistory<TDecoded extends NativeDecodedEvent = N
|
|
|
3705
3722
|
declare function nativeMarketEventsFromHistory<TDecoded extends NativeDecodedEvent = NativeDecodedEvent>(response: NativeEventsResponse<unknown>): NativeEventsResponse<TDecoded>;
|
|
3706
3723
|
declare function consumeNativeEvents<TDecoded extends NativeDecodedEvent = NativeDecodedEvent>(receipt: NativeReceiptResponse<unknown>, consumer: NativeEventConsumer<TDecoded>, filter?: NativeEventFilter): Promise<number>;
|
|
3707
3724
|
|
|
3708
|
-
export { type AssetPolicy as $, type ApiStreamsIndexResponse as A, type BlockSelector as B, type ChainStatsResponse as C, RpcClient as D, API_STREAM_TOPICS as E, type AccountPolicy as F, type AccountProofResponse as G, type Address as H, type AddressActivityArchiveRedirect as I, type AddressActivityEntry as J, type AddressActivityKind as K, type AddressActivityKindResponse as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, type AddressActivityKindRetention as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, type AddressLabelRecord as U, type AgentReputationCategoryScope as V, type AgentReputationRecord as W, type AgentReputationResponse as X, type ApiStreamTopic as Y, type ApiStreamTopicMetadata as Z, type ApiStreamTopicRetention as _, type RuntimeUpgradeStatus as a, type GapRange as a$, type AttestationWindow as a0, BRIDGE_QUOTE_API_BLOCKED_REASON as a1, BRIDGE_REVERT_TAGS as a2, BRIDGE_SELECTORS as a3, BRIDGE_SUBMIT_API_BLOCKED_REASON as a4, type BlockHeader as a5, type BlockTag as a6, type BlsCertificateResponse as a7, type BridgeAdminControl as a8, type BridgeBytesInput as a9, type ClobMarketRecord as aA, type ClobMarketSummary as aB, type ClobTrade as aC, type ClusterDelegatorsResponse as aD, type ClusterDirectoryEntryResponse as aE, type ClusterDirectoryPageResponse as aF, type ClusterEntityResponse as aG, type ClusterMemberResponse as aH, type ClusterResignationRow as aI, type ClusterResignationsResponse as aJ, type ClusterStatusResponse as aK, type DagParent as aL, type DagParentsResponse as aM, type DagSyncStatus as aN, type DecodeTxExtension as aO, type DecodeTxLog as aP, type DecodeTxPqAttestation as aQ, type DecodeTxResponse as aR, type DelegationCapResponse as aS, type DelegationHistoryRecord as aT, type DelegationRow as aU, type DelegationsResponse as aV, type DutyAbsence as aW, type EncryptionKeyResponse as aX, type EntityRatchetResponse as aY, type ExplorerEndpoint as aZ, type FeeHistoryResponse as a_, type BridgeCircuitBreakerState as aa, BridgePrecompileError as ab, type BridgeQuoteSubmitReadiness as ac, type BridgeRiskTier as ad, type BridgeRouteAssessment as ae, type BridgeRouteCandidate as af, type BridgeRouteCatalogue as ag, BridgeRouteCatalogueError as ah, type BridgeRouteCatalogueJsonOptions as ai, type BridgeRouteCataloguePayload as aj, type BridgeRouteCatalogueRoute as ak, type BridgeRouteCatalogueValidation as al, type BridgeRouteDisclosure as am, type BridgeRouteSelection as an, type BridgeRoutesSource as ao, type BridgeTransferIntent as ap, type BridgeTransferRequest as aq, type BridgeVerifierDisclosure as ar, CHAIN_REGISTRY as as, CHAIN_REGISTRY_RAW_BASE as at, type CallRequest as au, type CapabilitiesResponse as av, type CapabilityDescriptor as aw, type ChainInfo as ax, type ChainRegistry as ay, type CheckpointRecord as az, type NativeReceiptResponse as b, type NativeReceiptCounters as b$, type GapRecord as b0, type GapRecordsResponse as b1, type Hash as b2, type Hex as b3, type IndexerStatus as b4, type JailStatusWindow as b5, type KeyRotationWindow as b6, type LythUpgradePlanStatus as b7, type LythUpgradeStatusResponse as b8, MAX_NATIVE_RECEIPT_EVENTS as b9, type NativeAgentAvailabilityStateRecord as bA, type NativeAgentConsentStateRecord as bB, type NativeAgentEscrowStateRecord as bC, type NativeAgentIssuerStateRecord as bD, type NativeAgentPolicySpendStateRecord as bE, type NativeAgentPolicyStateRecord as bF, type NativeAgentReputationReviewStateRecord as bG, type NativeAgentServiceStateRecord as bH, type NativeAgentStateFilterParamValue as bI, type NativeAgentStateResponseFilters as bJ, type NativeAgentStateSource as bK, type NativeCollectionRoyaltyStateRecord as bL, type NativeEventConsumer as bM, type NativeEventProjection as bN, type NativeEventsResponseFilters as bO, type NativeEventsSource as bP, type NativeMarketOrderBookDelta as bQ, type NativeMarketOrderBookDeltasResponseFilters as bR, type NativeMarketOrderBookDeltasSource as bS, type NativeMarketOrderBookStreamAction as bT, type NativeMarketOrderBookStreamPayload as bU, type NativeMarketStateFilterParamValue as bV, type NativeMarketStateResponseFilters as bW, type NativeMarketStateSource as bX, type NativeModuleForwarderDescriptor as bY, type NativeMrcPolicyProjection as bZ, type NativeNftListingStateRecord as b_, type MempoolSnapshot as ba, type MeshDecodedTx as bb, type MeshSignedTxResponse as bc, type MeshTxIntent as bd, type MeshUnsignedTxResponse as be, type MetricsRangeResponse as bf, type MetricsRangeSample as bg, type MetricsRangeSeries as bh, type MetricsRangeStatus as bi, type MrcAccountRecord as bj, type MrcMetadataRecord as bk, type MrcPolicyRecord as bl, type MrcPolicySpendRecord as bm, NATIVE_MARKET_EVENT_FAMILY as bn, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as bo, NO_EVM_ARCHIVE_PROOF_SCHEMA as bp, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as bq, NO_EVM_FINALITY_EVIDENCE_SCHEMA as br, NO_EVM_FINALITY_EVIDENCE_SOURCE as bs, NO_EVM_RECEIPTS_ROOT_DOMAIN as bt, NO_EVM_RECEIPT_CODEC as bu, NO_EVM_RECEIPT_PROOF_SCHEMA as bv, NO_EVM_RECEIPT_PROOF_TYPE as bw, NO_EVM_RECEIPT_ROOT_ALGORITHM as bx, type NativeAgentArbiterStateRecord as by, type NativeAgentAttestationStateRecord as bz, type NativeDecodedEvent as c, TESTNET_69420 as c$, type NativeReceiptEvent as c0, type NativeReceiptSource as c1, type NativeSpotMarketStateRecord as c2, type NativeSpotOrderStateRecord as c3, type NetworkClientOptions as c4, type NetworkSlug as c5, type NoEvmArchiveCoveringSnapshot as c6, type NoEvmArchiveProof as c7, type NoEvmArchiveSignatureVerification as c8, type NoEvmArchiveSignatureVerificationIssue as c9, type PeerSummaryAggregate as cA, type PendingRewardsRow as cB, type PendingTxSummary as cC, type PrecompileCatalogueResponse as cD, type PrecompileDescriptor as cE, type Quantity as cF, type RankedBridgeRoute as cG, type ReceiptProofTrustArchivePolicy as cH, type ReceiptProofTrustArchiveSigner as cI, type ReceiptProofTrustFinalityPolicy as cJ, type ReceiptProofTrustFinalitySigner as cK, type ReceiptProofTrustPolicy as cL, type RedemptionQueueTicket as cM, type RegistryRecord as cN, type ReportServiceProbeRequest as cO, type ReportServiceProbeResponse as cP, type RichListHolder as cQ, type RichListResponse as cR, type RoundInfo as cS, type RpcClientOptions as cT, type RpcEndpoint as cU, type RuntimeProvenanceResponse as cV, type SearchHit as cW, type ServiceProbeStatusLabel as cX, type SigningEntryStatus as cY, type StorageProofBatch as cZ, type SyncStatus as c_, type NoEvmArchiveSignatureVerificationIssueCode as ca, type NoEvmArchiveTrustedSigner as cb, type NoEvmBlockBlsFinalityVerification as cc, type NoEvmBlsFinalityVerification as cd, type NoEvmFinalityBlockReference as ce, type NoEvmFinalityCertificate as cf, type NoEvmFinalityEvidence as cg, type NoEvmReceiptFinalityTrustPolicy as ch, type NoEvmReceiptProof as ci, NoEvmReceiptProofError as cj, type NoEvmReceiptProofErrorCode as ck, type NoEvmReceiptProofVerification as cl, type NoEvmReceiptTrustIssue as cm, type NoEvmReceiptTrustIssueCode as cn, type NoEvmReceiptTrustPolicy as co, type NoEvmReceiptTrustVerification as cp, type NoEvmReceiptTrustedBlsSigner as cq, type OperatorAuthorityResponse as cr, type OperatorInfoResponse as cs, type OperatorRiskResponse as ct, type OperatorSigningActivityResponse as cu, type OperatorSigningEntry as cv, type OperatorSurfaceCapability as cw, type OperatorSurfaceStatus as cx, type P2pSeed as cy, type PeerSummary as cz, type NativeEventFilter as d, parseChainRegistryToml as d$, type TokenBalanceMrcIdentity as d0, type TokenBalanceRecord as d1, type TpmAttestationResponse as d2, type TransactionReceipt as d3, type TransactionView as d4, type TxFeedReceipt as d5, type TxFeedTransaction as d6, type TxStatusFoundResponse as d7, type TxStatusNotFoundResponse as d8, type TxStatusResponse as d9, encodeSetBridgeResumeCooldownCalldata as dA, encodeSetBridgeRouteFinalityCalldata as dB, exportBridgeRouteCatalogueJson as dC, fetchChainInfoLatest as dD, fetchChainRegistryLatest as dE, getChainInfo as dF, getNoEvmReceiptTrustPolicy as dG, getP2pSeeds as dH, getRpcEndpoints as dI, isBridgeAdminLockedRevert as dJ, isBridgeCooldownZeroRevert as dK, isBridgeFinalityZeroRevert as dL, isBridgeResumeCooldownActiveRevert as dM, isNativeDecodedEvent as dN, isNativeMarketOrderBookStreamPayload as dO, nativeAgentStateFilterParams as dP, nativeEventMatches as dQ, nativeEventsFilterParams as dR, nativeEventsFromHistory as dS, nativeEventsFromReceipt as dT, nativeMarketEventFilter as dU, nativeMarketEventsFromHistory as dV, nativeMarketEventsFromReceipt as dW, nativeMarketStateFilterParams as dX, noEvmReceiptTrustPolicyFromChainInfo as dY, normalizeBridgeRouteCatalogue as dZ, parseBridgeRouteCatalogueJson as d_, type UpcomingDutiesResponse as da, type UpcomingDutyMap as db, type UserAddressInput as dc, type VertexAtRound as dd, type VerticesAtRoundResponse as de, assertNativeMarketOrderBookStreamPayload as df, assessBridgeRoute as dg, bridgeAddressHex as dh, bridgeQuoteSubmitReadiness as di, bridgeRoutesReadiness as dj, bridgeTransferCandidates as dk, buildBridgeRouteCatalogue as dl, computeNoEvmDacFinalityMessage as dm, computeNoEvmLeaderFinalityMessage as dn, computeNoEvmReceiptsRoot as dp, computeNoEvmRoundFinalityMessage as dq, computeNoEvmTargetReceiptHash as dr, consumeNativeEvents as ds, decodeNativeAgentStateResponse as dt, decodeNativeMarketOrderBookDeltasResponse as du, decodeNativeReceiptResponse as dv, decodeNoEvmReceiptTranscript as dw, decodeTxFeedResponse as dx, encodeBlockSelector as dy, encodeLockBridgeConfigCalldata as dz, type TypedNativeReceiptEvent as e, parseNativeDecodedEvent as e0, parseQuantity as e1, parseQuantityBig as e2, rankBridgeRoutes as e3, selectBridgeTransferRoute as e4, validateBridgeRouteCatalogue as e5, verifyNoEvmArchiveProofSignatures as e6, verifyNoEvmBlockFinalityEvidenceMultisig as e7, verifyNoEvmBlockFinalityEvidenceThreshold as e8, verifyNoEvmFinalityEvidenceMultisig as e9, verifyNoEvmFinalityEvidenceThreshold as ea, verifyNoEvmReceiptProof as eb, verifyNoEvmReceiptProofTrust as ec, type NativeEventsFilter as f, type NativeEventsResponse as g, type NativeAgentStateFilter as h, type NativeAgentStateResponse as i, type NativeMarketStateFilter as j, 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 };
|
|
3725
|
+
export { type AssetPolicy as $, type ApiStreamsIndexResponse as A, type BlockSelector as B, type ChainStatsResponse as C, RpcClient as D, API_STREAM_TOPICS as E, type AccountPolicy as F, type AccountProofResponse as G, type Address as H, type AddressActivityArchiveRedirect as I, type AddressActivityEntry as J, type AddressActivityKind as K, type AddressActivityKindResponse as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, type AddressActivityKindRetention as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, type AddressLabelRecord as U, type AgentReputationCategoryScope as V, type AgentReputationRecord as W, type AgentReputationResponse as X, type ApiStreamTopic as Y, type ApiStreamTopicMetadata as Z, type ApiStreamTopicRetention as _, type RuntimeUpgradeStatus as a, type FeeHistoryResponse as a$, type AttestationWindow as a0, BRIDGE_QUOTE_API_BLOCKED_REASON as a1, BRIDGE_REVERT_TAGS as a2, BRIDGE_SELECTORS as a3, BRIDGE_SUBMIT_API_BLOCKED_REASON as a4, type BlockHeader as a5, type BlockTag as a6, type BlsCertificateResponse as a7, type BridgeAdminControl as a8, type BridgeBytesInput as a9, type ClobMarketRecord as aA, type ClobMarketSummary as aB, type ClobTrade as aC, type ClusterDelegatorsResponse as aD, type ClusterDirectoryEntryResponse as aE, type ClusterDirectoryPageResponse as aF, type ClusterEntityResponse as aG, type ClusterMemberResponse as aH, type ClusterResignationRow as aI, type ClusterResignationsResponse as aJ, type ClusterStatusResponse as aK, type DagParent as aL, type DagParentsResponse as aM, type DagSyncStatus as aN, type DecodeTxExtension as aO, type DecodeTxLog as aP, type DecodeTxPqAttestation as aQ, type DecodeTxResponse as aR, type DelegationCapResponse as aS, type DelegationHistoryRecord as aT, type DelegationRow as aU, type DelegationsResponse as aV, type DutyAbsence as aW, type EncryptionKeyResponse as aX, type EntityRatchetResponse as aY, type ExecutionUnitPriceResponse as aZ, type ExplorerEndpoint as a_, type BridgeCircuitBreakerState as aa, BridgePrecompileError as ab, type BridgeQuoteSubmitReadiness as ac, type BridgeRiskTier as ad, type BridgeRouteAssessment as ae, type BridgeRouteCandidate as af, type BridgeRouteCatalogue as ag, BridgeRouteCatalogueError as ah, type BridgeRouteCatalogueJsonOptions as ai, type BridgeRouteCataloguePayload as aj, type BridgeRouteCatalogueRoute as ak, type BridgeRouteCatalogueValidation as al, type BridgeRouteDisclosure as am, type BridgeRouteSelection as an, type BridgeRoutesSource as ao, type BridgeTransferIntent as ap, type BridgeTransferRequest as aq, type BridgeVerifierDisclosure as ar, CHAIN_REGISTRY as as, CHAIN_REGISTRY_RAW_BASE as at, type CallRequest as au, type CapabilitiesResponse as av, type CapabilityDescriptor as aw, type ChainInfo as ax, type ChainRegistry as ay, type CheckpointRecord as az, type NativeReceiptResponse as b, type NativeNftListingStateRecord as b$, type GapRange as b0, type GapRecord as b1, type GapRecordsResponse as b2, type Hash as b3, type Hex as b4, type IndexerStatus as b5, type JailStatusWindow as b6, type KeyRotationWindow as b7, type LythUpgradePlanStatus as b8, type LythUpgradeStatusResponse as b9, type NativeAgentAttestationStateRecord as bA, type NativeAgentAvailabilityStateRecord as bB, type NativeAgentConsentStateRecord as bC, type NativeAgentEscrowStateRecord as bD, type NativeAgentIssuerStateRecord as bE, type NativeAgentPolicySpendStateRecord as bF, type NativeAgentPolicyStateRecord as bG, type NativeAgentReputationReviewStateRecord as bH, type NativeAgentServiceStateRecord as bI, type NativeAgentStateFilterParamValue as bJ, type NativeAgentStateResponseFilters as bK, type NativeAgentStateSource as bL, type NativeCollectionRoyaltyStateRecord as bM, type NativeEventConsumer as bN, type NativeEventProjection as bO, type NativeEventsResponseFilters as bP, type NativeEventsSource as bQ, type NativeMarketOrderBookDelta as bR, type NativeMarketOrderBookDeltasResponseFilters as bS, type NativeMarketOrderBookDeltasSource as bT, type NativeMarketOrderBookStreamAction as bU, type NativeMarketOrderBookStreamPayload as bV, type NativeMarketStateFilterParamValue as bW, type NativeMarketStateResponseFilters as bX, type NativeMarketStateSource as bY, type NativeModuleForwarderDescriptor as bZ, type NativeMrcPolicyProjection as b_, MAX_NATIVE_RECEIPT_EVENTS as ba, type MempoolSnapshot as bb, type MeshDecodedTx as bc, type MeshSignedTxResponse as bd, type MeshTxIntent as be, type MeshUnsignedTxResponse as bf, type MetricsRangeResponse as bg, type MetricsRangeSample as bh, type MetricsRangeSeries as bi, type MetricsRangeStatus as bj, type MrcAccountRecord as bk, type MrcMetadataRecord as bl, type MrcPolicyRecord as bm, type MrcPolicySpendRecord as bn, NATIVE_MARKET_EVENT_FAMILY as bo, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as bp, NO_EVM_ARCHIVE_PROOF_SCHEMA as bq, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as br, NO_EVM_FINALITY_EVIDENCE_SCHEMA as bs, NO_EVM_FINALITY_EVIDENCE_SOURCE as bt, NO_EVM_RECEIPTS_ROOT_DOMAIN as bu, NO_EVM_RECEIPT_CODEC as bv, NO_EVM_RECEIPT_PROOF_SCHEMA as bw, NO_EVM_RECEIPT_PROOF_TYPE as bx, NO_EVM_RECEIPT_ROOT_ALGORITHM as by, type NativeAgentArbiterStateRecord as bz, type NativeDecodedEvent as c, type SyncStatus as c$, type NativeReceiptCounters as c0, type NativeReceiptEvent as c1, type NativeReceiptSource as c2, type NativeSpotMarketStateRecord as c3, type NativeSpotOrderStateRecord as c4, type NetworkClientOptions as c5, type NetworkSlug as c6, type NoEvmArchiveCoveringSnapshot as c7, type NoEvmArchiveProof as c8, type NoEvmArchiveSignatureVerification as c9, type PeerSummary as cA, type PeerSummaryAggregate as cB, type PendingRewardsRow as cC, type PendingTxSummary as cD, type PrecompileCatalogueResponse as cE, type PrecompileDescriptor as cF, type Quantity as cG, type RankedBridgeRoute as cH, type ReceiptProofTrustArchivePolicy as cI, type ReceiptProofTrustArchiveSigner as cJ, type ReceiptProofTrustFinalityPolicy as cK, type ReceiptProofTrustFinalitySigner as cL, type ReceiptProofTrustPolicy as cM, type RedemptionQueueTicket as cN, type RegistryRecord as cO, type ReportServiceProbeRequest as cP, type ReportServiceProbeResponse as cQ, type RichListHolder as cR, type RichListResponse as cS, type RoundInfo as cT, type RpcClientOptions as cU, type RpcEndpoint as cV, type RuntimeProvenanceResponse as cW, type SearchHit as cX, type ServiceProbeStatusLabel as cY, type SigningEntryStatus as cZ, type StorageProofBatch as c_, type NoEvmArchiveSignatureVerificationIssue as ca, type NoEvmArchiveSignatureVerificationIssueCode as cb, type NoEvmArchiveTrustedSigner as cc, type NoEvmBlockBlsFinalityVerification as cd, type NoEvmBlsFinalityVerification as ce, type NoEvmFinalityBlockReference as cf, type NoEvmFinalityCertificate as cg, type NoEvmFinalityEvidence as ch, type NoEvmReceiptFinalityTrustPolicy as ci, type NoEvmReceiptProof as cj, NoEvmReceiptProofError as ck, type NoEvmReceiptProofErrorCode as cl, type NoEvmReceiptProofVerification as cm, type NoEvmReceiptTrustIssue as cn, type NoEvmReceiptTrustIssueCode as co, type NoEvmReceiptTrustPolicy as cp, type NoEvmReceiptTrustVerification as cq, type NoEvmReceiptTrustedBlsSigner as cr, type OperatorAuthorityResponse as cs, type OperatorInfoResponse as ct, type OperatorRiskResponse as cu, type OperatorSigningActivityResponse as cv, type OperatorSigningEntry as cw, type OperatorSurfaceCapability as cx, type OperatorSurfaceStatus as cy, type P2pSeed as cz, type NativeEventFilter as d, noEvmReceiptTrustPolicyFromChainInfo as d$, TESTNET_69420 as d0, type TokenBalanceMrcIdentity as d1, type TokenBalanceRecord as d2, type TpmAttestationResponse as d3, type TransactionReceipt as d4, type TransactionView as d5, type TxFeedReceipt as d6, type TxFeedTransaction as d7, type TxStatusFoundResponse as d8, type TxStatusNotFoundResponse as d9, decodeTxFeedResponse as dA, encodeBlockSelector as dB, encodeLockBridgeConfigCalldata as dC, encodeSetBridgeResumeCooldownCalldata as dD, encodeSetBridgeRouteFinalityCalldata as dE, exportBridgeRouteCatalogueJson as dF, fetchChainInfoLatest as dG, fetchChainRegistryLatest as dH, getChainInfo as dI, getNoEvmReceiptTrustPolicy as dJ, getP2pSeeds as dK, getRpcEndpoints as dL, isBridgeAdminLockedRevert as dM, isBridgeCooldownZeroRevert as dN, isBridgeFinalityZeroRevert as dO, isBridgeResumeCooldownActiveRevert as dP, isNativeDecodedEvent as dQ, isNativeMarketOrderBookStreamPayload as dR, nativeAgentStateFilterParams as dS, nativeEventMatches as dT, nativeEventsFilterParams as dU, nativeEventsFromHistory as dV, nativeEventsFromReceipt as dW, nativeMarketEventFilter as dX, nativeMarketEventsFromHistory as dY, nativeMarketEventsFromReceipt as dZ, nativeMarketStateFilterParams as d_, type TxStatusResponse as da, type UpcomingDutiesResponse as db, type UpcomingDutyMap as dc, type UserAddressInput as dd, V1_BRIDGE_ALLOWED_FEE_TOKEN as de, V1_BRIDGE_ALLOWED_PROTOCOL as df, type VertexAtRound as dg, type VerticesAtRoundResponse as dh, assertNativeMarketOrderBookStreamPayload as di, assessBridgeRoute as dj, bridgeAddressHex as dk, bridgeQuoteSubmitReadiness as dl, bridgeRoutesReadiness as dm, bridgeTransferCandidates as dn, buildBridgeRouteCatalogue as dp, computeNoEvmDacFinalityMessage as dq, computeNoEvmLeaderFinalityMessage as dr, computeNoEvmReceiptsRoot as ds, computeNoEvmRoundFinalityMessage as dt, computeNoEvmTargetReceiptHash as du, consumeNativeEvents as dv, decodeNativeAgentStateResponse as dw, decodeNativeMarketOrderBookDeltasResponse as dx, decodeNativeReceiptResponse as dy, decodeNoEvmReceiptTranscript as dz, type TypedNativeReceiptEvent as e, normalizeBridgeRouteCatalogue as e0, parseBridgeRouteCatalogueJson as e1, parseChainRegistryToml as e2, parseNativeDecodedEvent as e3, parseQuantity as e4, parseQuantityBig as e5, rankBridgeRoutes as e6, selectBridgeTransferRoute as e7, validateBridgeRouteCatalogue as e8, verifyNoEvmArchiveProofSignatures as e9, verifyNoEvmBlockFinalityEvidenceMultisig as ea, verifyNoEvmBlockFinalityEvidenceThreshold as eb, verifyNoEvmFinalityEvidenceMultisig as ec, verifyNoEvmFinalityEvidenceThreshold as ed, verifyNoEvmReceiptProof as ee, verifyNoEvmReceiptProofTrust as ef, type NativeEventsFilter as f, type NativeEventsResponse as g, type NativeAgentStateFilter as h, type NativeAgentStateResponse as i, type NativeMarketStateFilter as j, 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 };
|
|
@@ -17,6 +17,8 @@ declare const BRIDGE_REVERT_TAGS: {
|
|
|
17
17
|
};
|
|
18
18
|
declare const BRIDGE_QUOTE_API_BLOCKED_REASON = "bridge quote requires a mono-core live quote API/runtime primitive";
|
|
19
19
|
declare const BRIDGE_SUBMIT_API_BLOCKED_REASON = "bridge submit requires a mono-core live submit API/runtime primitive";
|
|
20
|
+
declare const V1_BRIDGE_ALLOWED_FEE_TOKEN = "LINK";
|
|
21
|
+
declare const V1_BRIDGE_ALLOWED_PROTOCOL = "chainlink-ccip";
|
|
20
22
|
type BridgeBytesInput = string | Uint8Array | readonly number[];
|
|
21
23
|
type BridgeAdminControl = "none" | "consensusOnly" | "operatorKey" | "unknown";
|
|
22
24
|
type BridgeCircuitBreakerState = "armed" | "paused" | "disabled" | "unknown";
|
|
@@ -44,7 +46,9 @@ interface BridgeVerifierDisclosure {
|
|
|
44
46
|
interface BridgeRouteDisclosure {
|
|
45
47
|
routeId: string;
|
|
46
48
|
bridge: string;
|
|
49
|
+
protocol?: string | null;
|
|
47
50
|
asset: string;
|
|
51
|
+
feeToken: string;
|
|
48
52
|
sourceChain: string;
|
|
49
53
|
destinationChain: string;
|
|
50
54
|
verifier: BridgeVerifierDisclosure;
|
|
@@ -62,7 +66,9 @@ interface BridgeRouteCatalogueRoute {
|
|
|
62
66
|
bridgeId: string;
|
|
63
67
|
wrappedAsset: string;
|
|
64
68
|
bridge: string;
|
|
69
|
+
protocol?: string | null;
|
|
65
70
|
asset: string;
|
|
71
|
+
feeToken: string;
|
|
66
72
|
sourceChain: string;
|
|
67
73
|
destinationChain: string;
|
|
68
74
|
verifier: BridgeVerifierDisclosure;
|
|
@@ -869,8 +875,8 @@ type BlockHeader = {
|
|
|
869
875
|
};
|
|
870
876
|
|
|
871
877
|
/**
|
|
872
|
-
*
|
|
873
|
-
*
|
|
878
|
+
* JSON-RPC block tag. Use [`BlockSelector`] when sending to the wire; passive
|
|
879
|
+
* compatibility reads still use the `eth_*` block-argument shape.
|
|
874
880
|
*/
|
|
875
881
|
type BlockTag = "latest" | "earliest" | "finalized" | "safe" | "pending";
|
|
876
882
|
|
|
@@ -901,7 +907,11 @@ type BlsCertificateResponse = {
|
|
|
901
907
|
};
|
|
902
908
|
|
|
903
909
|
/**
|
|
904
|
-
*
|
|
910
|
+
* Legacy compatibility call/estimate request shape.
|
|
911
|
+
*
|
|
912
|
+
* New v4.1 no-EVM app flows should prefer native MRV/RISC-V builders and
|
|
913
|
+
* `lyth_*` previews. This type remains for raw compatibility RPC methods and
|
|
914
|
+
* generated TypeScript bindings.
|
|
905
915
|
*
|
|
906
916
|
* Every field is optional — the chain rejects payloads that omit
|
|
907
917
|
* required fields with an `InvalidParams` error.
|
|
@@ -921,7 +931,7 @@ type CallRequest = {
|
|
|
921
931
|
*/
|
|
922
932
|
gas?: string;
|
|
923
933
|
/**
|
|
924
|
-
* Fee per execution unit on legacy
|
|
934
|
+
* Fee per execution unit on legacy compatibility paths.
|
|
925
935
|
*/
|
|
926
936
|
gasPrice?: string;
|
|
927
937
|
/**
|
|
@@ -1805,7 +1815,7 @@ type PendingTxSummary = {
|
|
|
1805
1815
|
};
|
|
1806
1816
|
|
|
1807
1817
|
/**
|
|
1808
|
-
* `lyth_listActivePrecompiles` entry
|
|
1818
|
+
* `lyth_listActivePrecompiles` entry.
|
|
1809
1819
|
*/
|
|
1810
1820
|
type PrecompileDescriptor = {
|
|
1811
1821
|
/**
|
|
@@ -2224,8 +2234,8 @@ declare function decodeNativeMarketOrderBookDeltasResponse(value: unknown): Nati
|
|
|
2224
2234
|
|
|
2225
2235
|
declare const NO_EVM_RECEIPT_PROOF_SCHEMA = "mono.no_evm_receipt_proof.v1";
|
|
2226
2236
|
declare const NO_EVM_RECEIPT_PROOF_TYPE = "canonicalReceiptsTranscript";
|
|
2227
|
-
declare const NO_EVM_RECEIPT_ROOT_ALGORITHM = "keccak256(monolythium/v4.1/
|
|
2228
|
-
declare const NO_EVM_RECEIPT_CODEC = "bincode(
|
|
2237
|
+
declare const NO_EVM_RECEIPT_ROOT_ALGORITHM = "keccak256-binary-merkle(monolythium/v4.1/receipt_leaf/1, monolythium/v4.1/receipt_node/1, duplicate-last padding)";
|
|
2238
|
+
declare const NO_EVM_RECEIPT_CODEC = "bincode(protocore_execution_types::Receipt)";
|
|
2229
2239
|
declare const NO_EVM_RECEIPTS_ROOT_DOMAIN = "monolythium/v4.1/receipts_root_empty/1";
|
|
2230
2240
|
declare const NO_EVM_ARCHIVE_PROOF_SCHEMA = "mono.no_evm_receipt_archive_binding.v1";
|
|
2231
2241
|
declare const NO_EVM_ARCHIVE_SIGNATURE_SCHEME = "mono.snapshot.sig.v1";
|
|
@@ -2458,8 +2468,7 @@ declare function parseChainRegistryToml(input: string): ChainInfo;
|
|
|
2458
2468
|
*
|
|
2459
2469
|
* Mirrors the Rust SDK's `RpcClient` — every public method maps 1:1 to
|
|
2460
2470
|
* a method on the Rust client, returns the same wire-shape value, and
|
|
2461
|
-
* sends the same `lyth_*` / `eth_*` / `debug_*` JSON-RPC method strings
|
|
2462
|
-
* (Law §13.2).
|
|
2471
|
+
* sends the same `lyth_*` / `eth_*` / `debug_*` JSON-RPC method strings.
|
|
2463
2472
|
*/
|
|
2464
2473
|
|
|
2465
2474
|
/** Optional per-client configuration. */
|
|
@@ -2475,7 +2484,7 @@ interface NetworkClientOptions extends RpcClientOptions {
|
|
|
2475
2484
|
/** Probe all known endpoints and choose the first one that answers. */
|
|
2476
2485
|
probe?: boolean;
|
|
2477
2486
|
}
|
|
2478
|
-
/** Typed
|
|
2487
|
+
/** Typed user address (`mono1...`) accepted at public SDK boundaries. */
|
|
2479
2488
|
type UserAddressInput = string;
|
|
2480
2489
|
interface TxFeedReceipt {
|
|
2481
2490
|
status: number;
|
|
@@ -2507,6 +2516,13 @@ interface TxFeedResponse {
|
|
|
2507
2516
|
nextCursor: string | null;
|
|
2508
2517
|
transactions: TxFeedTransaction[];
|
|
2509
2518
|
}
|
|
2519
|
+
interface ExecutionUnitPriceResponse {
|
|
2520
|
+
executionUnitPriceLythoshi: string;
|
|
2521
|
+
basePricePerExecutionUnitLythoshi: string;
|
|
2522
|
+
priorityTipLythoshi: string;
|
|
2523
|
+
blockNumber: number | null;
|
|
2524
|
+
source: string;
|
|
2525
|
+
}
|
|
2510
2526
|
declare const MAX_NATIVE_RECEIPT_EVENTS = 1000;
|
|
2511
2527
|
interface NativeReceiptCounters {
|
|
2512
2528
|
cycles: number;
|
|
@@ -2587,7 +2603,7 @@ interface NoEvmFinalityEvidence {
|
|
|
2587
2603
|
interface NoEvmReceiptProofBase {
|
|
2588
2604
|
schema: "mono.no_evm_receipt_proof.v1";
|
|
2589
2605
|
rootAlgorithm: string;
|
|
2590
|
-
receiptCodec: "bincode(
|
|
2606
|
+
receiptCodec: "bincode(protocore_execution_types::Receipt)";
|
|
2591
2607
|
blockHash: string;
|
|
2592
2608
|
txHash: string;
|
|
2593
2609
|
receiptsRoot: string;
|
|
@@ -3505,12 +3521,13 @@ declare class RpcClient {
|
|
|
3505
3521
|
lythMempoolPending(sender: string): Promise<PendingTxSummary[]>;
|
|
3506
3522
|
/** `lyth_currentRound` — latest committed height. */
|
|
3507
3523
|
lythCurrentRound(): Promise<RoundInfo>;
|
|
3524
|
+
/** `lyth_getTransactionCount` — native sender nonce. */
|
|
3525
|
+
lythGetTransactionCount(address: string): Promise<bigint>;
|
|
3526
|
+
/** `lyth_executionUnitPrice` — native execution-unit price in lythoshi. */
|
|
3527
|
+
lythExecutionUnitPrice(): Promise<ExecutionUnitPriceResponse>;
|
|
3508
3528
|
/** `lyth_peerSummary` — public-safe aggregate peer-network diagnostics. */
|
|
3509
3529
|
lythPeerSummary(): Promise<PeerSummaryAggregate>;
|
|
3510
|
-
/**
|
|
3511
|
-
* `lyth_listActivePrecompiles` — milestone-gated precompile catalogue
|
|
3512
|
-
* (OI-0170 / ADR-0015 §5).
|
|
3513
|
-
*/
|
|
3530
|
+
/** `lyth_listActivePrecompiles` — native precompile catalogue. */
|
|
3514
3531
|
lythListActivePrecompiles(block?: BlockSelector): Promise<PrecompileCatalogueResponse>;
|
|
3515
3532
|
/** `lyth_capabilities` — address-keyed precompile capability map. */
|
|
3516
3533
|
lythCapabilities(block?: BlockSelector): Promise<CapabilitiesResponse>;
|
|
@@ -3705,4 +3722,4 @@ declare function nativeEventsFromHistory<TDecoded extends NativeDecodedEvent = N
|
|
|
3705
3722
|
declare function nativeMarketEventsFromHistory<TDecoded extends NativeDecodedEvent = NativeDecodedEvent>(response: NativeEventsResponse<unknown>): NativeEventsResponse<TDecoded>;
|
|
3706
3723
|
declare function consumeNativeEvents<TDecoded extends NativeDecodedEvent = NativeDecodedEvent>(receipt: NativeReceiptResponse<unknown>, consumer: NativeEventConsumer<TDecoded>, filter?: NativeEventFilter): Promise<number>;
|
|
3707
3724
|
|
|
3708
|
-
export { type AssetPolicy as $, type ApiStreamsIndexResponse as A, type BlockSelector as B, type ChainStatsResponse as C, RpcClient as D, API_STREAM_TOPICS as E, type AccountPolicy as F, type AccountProofResponse as G, type Address as H, type AddressActivityArchiveRedirect as I, type AddressActivityEntry as J, type AddressActivityKind as K, type AddressActivityKindResponse as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, type AddressActivityKindRetention as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, type AddressLabelRecord as U, type AgentReputationCategoryScope as V, type AgentReputationRecord as W, type AgentReputationResponse as X, type ApiStreamTopic as Y, type ApiStreamTopicMetadata as Z, type ApiStreamTopicRetention as _, type RuntimeUpgradeStatus as a, type GapRange as a$, type AttestationWindow as a0, BRIDGE_QUOTE_API_BLOCKED_REASON as a1, BRIDGE_REVERT_TAGS as a2, BRIDGE_SELECTORS as a3, BRIDGE_SUBMIT_API_BLOCKED_REASON as a4, type BlockHeader as a5, type BlockTag as a6, type BlsCertificateResponse as a7, type BridgeAdminControl as a8, type BridgeBytesInput as a9, type ClobMarketRecord as aA, type ClobMarketSummary as aB, type ClobTrade as aC, type ClusterDelegatorsResponse as aD, type ClusterDirectoryEntryResponse as aE, type ClusterDirectoryPageResponse as aF, type ClusterEntityResponse as aG, type ClusterMemberResponse as aH, type ClusterResignationRow as aI, type ClusterResignationsResponse as aJ, type ClusterStatusResponse as aK, type DagParent as aL, type DagParentsResponse as aM, type DagSyncStatus as aN, type DecodeTxExtension as aO, type DecodeTxLog as aP, type DecodeTxPqAttestation as aQ, type DecodeTxResponse as aR, type DelegationCapResponse as aS, type DelegationHistoryRecord as aT, type DelegationRow as aU, type DelegationsResponse as aV, type DutyAbsence as aW, type EncryptionKeyResponse as aX, type EntityRatchetResponse as aY, type ExplorerEndpoint as aZ, type FeeHistoryResponse as a_, type BridgeCircuitBreakerState as aa, BridgePrecompileError as ab, type BridgeQuoteSubmitReadiness as ac, type BridgeRiskTier as ad, type BridgeRouteAssessment as ae, type BridgeRouteCandidate as af, type BridgeRouteCatalogue as ag, BridgeRouteCatalogueError as ah, type BridgeRouteCatalogueJsonOptions as ai, type BridgeRouteCataloguePayload as aj, type BridgeRouteCatalogueRoute as ak, type BridgeRouteCatalogueValidation as al, type BridgeRouteDisclosure as am, type BridgeRouteSelection as an, type BridgeRoutesSource as ao, type BridgeTransferIntent as ap, type BridgeTransferRequest as aq, type BridgeVerifierDisclosure as ar, CHAIN_REGISTRY as as, CHAIN_REGISTRY_RAW_BASE as at, type CallRequest as au, type CapabilitiesResponse as av, type CapabilityDescriptor as aw, type ChainInfo as ax, type ChainRegistry as ay, type CheckpointRecord as az, type NativeReceiptResponse as b, type NativeReceiptCounters as b$, type GapRecord as b0, type GapRecordsResponse as b1, type Hash as b2, type Hex as b3, type IndexerStatus as b4, type JailStatusWindow as b5, type KeyRotationWindow as b6, type LythUpgradePlanStatus as b7, type LythUpgradeStatusResponse as b8, MAX_NATIVE_RECEIPT_EVENTS as b9, type NativeAgentAvailabilityStateRecord as bA, type NativeAgentConsentStateRecord as bB, type NativeAgentEscrowStateRecord as bC, type NativeAgentIssuerStateRecord as bD, type NativeAgentPolicySpendStateRecord as bE, type NativeAgentPolicyStateRecord as bF, type NativeAgentReputationReviewStateRecord as bG, type NativeAgentServiceStateRecord as bH, type NativeAgentStateFilterParamValue as bI, type NativeAgentStateResponseFilters as bJ, type NativeAgentStateSource as bK, type NativeCollectionRoyaltyStateRecord as bL, type NativeEventConsumer as bM, type NativeEventProjection as bN, type NativeEventsResponseFilters as bO, type NativeEventsSource as bP, type NativeMarketOrderBookDelta as bQ, type NativeMarketOrderBookDeltasResponseFilters as bR, type NativeMarketOrderBookDeltasSource as bS, type NativeMarketOrderBookStreamAction as bT, type NativeMarketOrderBookStreamPayload as bU, type NativeMarketStateFilterParamValue as bV, type NativeMarketStateResponseFilters as bW, type NativeMarketStateSource as bX, type NativeModuleForwarderDescriptor as bY, type NativeMrcPolicyProjection as bZ, type NativeNftListingStateRecord as b_, type MempoolSnapshot as ba, type MeshDecodedTx as bb, type MeshSignedTxResponse as bc, type MeshTxIntent as bd, type MeshUnsignedTxResponse as be, type MetricsRangeResponse as bf, type MetricsRangeSample as bg, type MetricsRangeSeries as bh, type MetricsRangeStatus as bi, type MrcAccountRecord as bj, type MrcMetadataRecord as bk, type MrcPolicyRecord as bl, type MrcPolicySpendRecord as bm, NATIVE_MARKET_EVENT_FAMILY as bn, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as bo, NO_EVM_ARCHIVE_PROOF_SCHEMA as bp, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as bq, NO_EVM_FINALITY_EVIDENCE_SCHEMA as br, NO_EVM_FINALITY_EVIDENCE_SOURCE as bs, NO_EVM_RECEIPTS_ROOT_DOMAIN as bt, NO_EVM_RECEIPT_CODEC as bu, NO_EVM_RECEIPT_PROOF_SCHEMA as bv, NO_EVM_RECEIPT_PROOF_TYPE as bw, NO_EVM_RECEIPT_ROOT_ALGORITHM as bx, type NativeAgentArbiterStateRecord as by, type NativeAgentAttestationStateRecord as bz, type NativeDecodedEvent as c, TESTNET_69420 as c$, type NativeReceiptEvent as c0, type NativeReceiptSource as c1, type NativeSpotMarketStateRecord as c2, type NativeSpotOrderStateRecord as c3, type NetworkClientOptions as c4, type NetworkSlug as c5, type NoEvmArchiveCoveringSnapshot as c6, type NoEvmArchiveProof as c7, type NoEvmArchiveSignatureVerification as c8, type NoEvmArchiveSignatureVerificationIssue as c9, type PeerSummaryAggregate as cA, type PendingRewardsRow as cB, type PendingTxSummary as cC, type PrecompileCatalogueResponse as cD, type PrecompileDescriptor as cE, type Quantity as cF, type RankedBridgeRoute as cG, type ReceiptProofTrustArchivePolicy as cH, type ReceiptProofTrustArchiveSigner as cI, type ReceiptProofTrustFinalityPolicy as cJ, type ReceiptProofTrustFinalitySigner as cK, type ReceiptProofTrustPolicy as cL, type RedemptionQueueTicket as cM, type RegistryRecord as cN, type ReportServiceProbeRequest as cO, type ReportServiceProbeResponse as cP, type RichListHolder as cQ, type RichListResponse as cR, type RoundInfo as cS, type RpcClientOptions as cT, type RpcEndpoint as cU, type RuntimeProvenanceResponse as cV, type SearchHit as cW, type ServiceProbeStatusLabel as cX, type SigningEntryStatus as cY, type StorageProofBatch as cZ, type SyncStatus as c_, type NoEvmArchiveSignatureVerificationIssueCode as ca, type NoEvmArchiveTrustedSigner as cb, type NoEvmBlockBlsFinalityVerification as cc, type NoEvmBlsFinalityVerification as cd, type NoEvmFinalityBlockReference as ce, type NoEvmFinalityCertificate as cf, type NoEvmFinalityEvidence as cg, type NoEvmReceiptFinalityTrustPolicy as ch, type NoEvmReceiptProof as ci, NoEvmReceiptProofError as cj, type NoEvmReceiptProofErrorCode as ck, type NoEvmReceiptProofVerification as cl, type NoEvmReceiptTrustIssue as cm, type NoEvmReceiptTrustIssueCode as cn, type NoEvmReceiptTrustPolicy as co, type NoEvmReceiptTrustVerification as cp, type NoEvmReceiptTrustedBlsSigner as cq, type OperatorAuthorityResponse as cr, type OperatorInfoResponse as cs, type OperatorRiskResponse as ct, type OperatorSigningActivityResponse as cu, type OperatorSigningEntry as cv, type OperatorSurfaceCapability as cw, type OperatorSurfaceStatus as cx, type P2pSeed as cy, type PeerSummary as cz, type NativeEventFilter as d, parseChainRegistryToml as d$, type TokenBalanceMrcIdentity as d0, type TokenBalanceRecord as d1, type TpmAttestationResponse as d2, type TransactionReceipt as d3, type TransactionView as d4, type TxFeedReceipt as d5, type TxFeedTransaction as d6, type TxStatusFoundResponse as d7, type TxStatusNotFoundResponse as d8, type TxStatusResponse as d9, encodeSetBridgeResumeCooldownCalldata as dA, encodeSetBridgeRouteFinalityCalldata as dB, exportBridgeRouteCatalogueJson as dC, fetchChainInfoLatest as dD, fetchChainRegistryLatest as dE, getChainInfo as dF, getNoEvmReceiptTrustPolicy as dG, getP2pSeeds as dH, getRpcEndpoints as dI, isBridgeAdminLockedRevert as dJ, isBridgeCooldownZeroRevert as dK, isBridgeFinalityZeroRevert as dL, isBridgeResumeCooldownActiveRevert as dM, isNativeDecodedEvent as dN, isNativeMarketOrderBookStreamPayload as dO, nativeAgentStateFilterParams as dP, nativeEventMatches as dQ, nativeEventsFilterParams as dR, nativeEventsFromHistory as dS, nativeEventsFromReceipt as dT, nativeMarketEventFilter as dU, nativeMarketEventsFromHistory as dV, nativeMarketEventsFromReceipt as dW, nativeMarketStateFilterParams as dX, noEvmReceiptTrustPolicyFromChainInfo as dY, normalizeBridgeRouteCatalogue as dZ, parseBridgeRouteCatalogueJson as d_, type UpcomingDutiesResponse as da, type UpcomingDutyMap as db, type UserAddressInput as dc, type VertexAtRound as dd, type VerticesAtRoundResponse as de, assertNativeMarketOrderBookStreamPayload as df, assessBridgeRoute as dg, bridgeAddressHex as dh, bridgeQuoteSubmitReadiness as di, bridgeRoutesReadiness as dj, bridgeTransferCandidates as dk, buildBridgeRouteCatalogue as dl, computeNoEvmDacFinalityMessage as dm, computeNoEvmLeaderFinalityMessage as dn, computeNoEvmReceiptsRoot as dp, computeNoEvmRoundFinalityMessage as dq, computeNoEvmTargetReceiptHash as dr, consumeNativeEvents as ds, decodeNativeAgentStateResponse as dt, decodeNativeMarketOrderBookDeltasResponse as du, decodeNativeReceiptResponse as dv, decodeNoEvmReceiptTranscript as dw, decodeTxFeedResponse as dx, encodeBlockSelector as dy, encodeLockBridgeConfigCalldata as dz, type TypedNativeReceiptEvent as e, parseNativeDecodedEvent as e0, parseQuantity as e1, parseQuantityBig as e2, rankBridgeRoutes as e3, selectBridgeTransferRoute as e4, validateBridgeRouteCatalogue as e5, verifyNoEvmArchiveProofSignatures as e6, verifyNoEvmBlockFinalityEvidenceMultisig as e7, verifyNoEvmBlockFinalityEvidenceThreshold as e8, verifyNoEvmFinalityEvidenceMultisig as e9, verifyNoEvmFinalityEvidenceThreshold as ea, verifyNoEvmReceiptProof as eb, verifyNoEvmReceiptProofTrust as ec, type NativeEventsFilter as f, type NativeEventsResponse as g, type NativeAgentStateFilter as h, type NativeAgentStateResponse as i, type NativeMarketStateFilter as j, 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 };
|
|
3725
|
+
export { type AssetPolicy as $, type ApiStreamsIndexResponse as A, type BlockSelector as B, type ChainStatsResponse as C, RpcClient as D, API_STREAM_TOPICS as E, type AccountPolicy as F, type AccountProofResponse as G, type Address as H, type AddressActivityArchiveRedirect as I, type AddressActivityEntry as J, type AddressActivityKind as K, type AddressActivityKindResponse as L, type MrcMetadataResponse as M, type NativeReceiptFee as N, type OperatorCapabilitiesResponse as O, type PendingRewardsResponse as P, type AddressActivityKindRetention as Q, type RuntimeBuildProvenance as R, type SearchResponse as S, type TxFeedResponse as T, type AddressLabelRecord as U, type AgentReputationCategoryScope as V, type AgentReputationRecord as W, type AgentReputationResponse as X, type ApiStreamTopic as Y, type ApiStreamTopicMetadata as Z, type ApiStreamTopicRetention as _, type RuntimeUpgradeStatus as a, type FeeHistoryResponse as a$, type AttestationWindow as a0, BRIDGE_QUOTE_API_BLOCKED_REASON as a1, BRIDGE_REVERT_TAGS as a2, BRIDGE_SELECTORS as a3, BRIDGE_SUBMIT_API_BLOCKED_REASON as a4, type BlockHeader as a5, type BlockTag as a6, type BlsCertificateResponse as a7, type BridgeAdminControl as a8, type BridgeBytesInput as a9, type ClobMarketRecord as aA, type ClobMarketSummary as aB, type ClobTrade as aC, type ClusterDelegatorsResponse as aD, type ClusterDirectoryEntryResponse as aE, type ClusterDirectoryPageResponse as aF, type ClusterEntityResponse as aG, type ClusterMemberResponse as aH, type ClusterResignationRow as aI, type ClusterResignationsResponse as aJ, type ClusterStatusResponse as aK, type DagParent as aL, type DagParentsResponse as aM, type DagSyncStatus as aN, type DecodeTxExtension as aO, type DecodeTxLog as aP, type DecodeTxPqAttestation as aQ, type DecodeTxResponse as aR, type DelegationCapResponse as aS, type DelegationHistoryRecord as aT, type DelegationRow as aU, type DelegationsResponse as aV, type DutyAbsence as aW, type EncryptionKeyResponse as aX, type EntityRatchetResponse as aY, type ExecutionUnitPriceResponse as aZ, type ExplorerEndpoint as a_, type BridgeCircuitBreakerState as aa, BridgePrecompileError as ab, type BridgeQuoteSubmitReadiness as ac, type BridgeRiskTier as ad, type BridgeRouteAssessment as ae, type BridgeRouteCandidate as af, type BridgeRouteCatalogue as ag, BridgeRouteCatalogueError as ah, type BridgeRouteCatalogueJsonOptions as ai, type BridgeRouteCataloguePayload as aj, type BridgeRouteCatalogueRoute as ak, type BridgeRouteCatalogueValidation as al, type BridgeRouteDisclosure as am, type BridgeRouteSelection as an, type BridgeRoutesSource as ao, type BridgeTransferIntent as ap, type BridgeTransferRequest as aq, type BridgeVerifierDisclosure as ar, CHAIN_REGISTRY as as, CHAIN_REGISTRY_RAW_BASE as at, type CallRequest as au, type CapabilitiesResponse as av, type CapabilityDescriptor as aw, type ChainInfo as ax, type ChainRegistry as ay, type CheckpointRecord as az, type NativeReceiptResponse as b, type NativeNftListingStateRecord as b$, type GapRange as b0, type GapRecord as b1, type GapRecordsResponse as b2, type Hash as b3, type Hex as b4, type IndexerStatus as b5, type JailStatusWindow as b6, type KeyRotationWindow as b7, type LythUpgradePlanStatus as b8, type LythUpgradeStatusResponse as b9, type NativeAgentAttestationStateRecord as bA, type NativeAgentAvailabilityStateRecord as bB, type NativeAgentConsentStateRecord as bC, type NativeAgentEscrowStateRecord as bD, type NativeAgentIssuerStateRecord as bE, type NativeAgentPolicySpendStateRecord as bF, type NativeAgentPolicyStateRecord as bG, type NativeAgentReputationReviewStateRecord as bH, type NativeAgentServiceStateRecord as bI, type NativeAgentStateFilterParamValue as bJ, type NativeAgentStateResponseFilters as bK, type NativeAgentStateSource as bL, type NativeCollectionRoyaltyStateRecord as bM, type NativeEventConsumer as bN, type NativeEventProjection as bO, type NativeEventsResponseFilters as bP, type NativeEventsSource as bQ, type NativeMarketOrderBookDelta as bR, type NativeMarketOrderBookDeltasResponseFilters as bS, type NativeMarketOrderBookDeltasSource as bT, type NativeMarketOrderBookStreamAction as bU, type NativeMarketOrderBookStreamPayload as bV, type NativeMarketStateFilterParamValue as bW, type NativeMarketStateResponseFilters as bX, type NativeMarketStateSource as bY, type NativeModuleForwarderDescriptor as bZ, type NativeMrcPolicyProjection as b_, MAX_NATIVE_RECEIPT_EVENTS as ba, type MempoolSnapshot as bb, type MeshDecodedTx as bc, type MeshSignedTxResponse as bd, type MeshTxIntent as be, type MeshUnsignedTxResponse as bf, type MetricsRangeResponse as bg, type MetricsRangeSample as bh, type MetricsRangeSeries as bi, type MetricsRangeStatus as bj, type MrcAccountRecord as bk, type MrcMetadataRecord as bl, type MrcPolicyRecord as bm, type MrcPolicySpendRecord as bn, NATIVE_MARKET_EVENT_FAMILY as bo, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC as bp, NO_EVM_ARCHIVE_PROOF_SCHEMA as bq, NO_EVM_ARCHIVE_SIGNATURE_SCHEME as br, NO_EVM_FINALITY_EVIDENCE_SCHEMA as bs, NO_EVM_FINALITY_EVIDENCE_SOURCE as bt, NO_EVM_RECEIPTS_ROOT_DOMAIN as bu, NO_EVM_RECEIPT_CODEC as bv, NO_EVM_RECEIPT_PROOF_SCHEMA as bw, NO_EVM_RECEIPT_PROOF_TYPE as bx, NO_EVM_RECEIPT_ROOT_ALGORITHM as by, type NativeAgentArbiterStateRecord as bz, type NativeDecodedEvent as c, type SyncStatus as c$, type NativeReceiptCounters as c0, type NativeReceiptEvent as c1, type NativeReceiptSource as c2, type NativeSpotMarketStateRecord as c3, type NativeSpotOrderStateRecord as c4, type NetworkClientOptions as c5, type NetworkSlug as c6, type NoEvmArchiveCoveringSnapshot as c7, type NoEvmArchiveProof as c8, type NoEvmArchiveSignatureVerification as c9, type PeerSummary as cA, type PeerSummaryAggregate as cB, type PendingRewardsRow as cC, type PendingTxSummary as cD, type PrecompileCatalogueResponse as cE, type PrecompileDescriptor as cF, type Quantity as cG, type RankedBridgeRoute as cH, type ReceiptProofTrustArchivePolicy as cI, type ReceiptProofTrustArchiveSigner as cJ, type ReceiptProofTrustFinalityPolicy as cK, type ReceiptProofTrustFinalitySigner as cL, type ReceiptProofTrustPolicy as cM, type RedemptionQueueTicket as cN, type RegistryRecord as cO, type ReportServiceProbeRequest as cP, type ReportServiceProbeResponse as cQ, type RichListHolder as cR, type RichListResponse as cS, type RoundInfo as cT, type RpcClientOptions as cU, type RpcEndpoint as cV, type RuntimeProvenanceResponse as cW, type SearchHit as cX, type ServiceProbeStatusLabel as cY, type SigningEntryStatus as cZ, type StorageProofBatch as c_, type NoEvmArchiveSignatureVerificationIssue as ca, type NoEvmArchiveSignatureVerificationIssueCode as cb, type NoEvmArchiveTrustedSigner as cc, type NoEvmBlockBlsFinalityVerification as cd, type NoEvmBlsFinalityVerification as ce, type NoEvmFinalityBlockReference as cf, type NoEvmFinalityCertificate as cg, type NoEvmFinalityEvidence as ch, type NoEvmReceiptFinalityTrustPolicy as ci, type NoEvmReceiptProof as cj, NoEvmReceiptProofError as ck, type NoEvmReceiptProofErrorCode as cl, type NoEvmReceiptProofVerification as cm, type NoEvmReceiptTrustIssue as cn, type NoEvmReceiptTrustIssueCode as co, type NoEvmReceiptTrustPolicy as cp, type NoEvmReceiptTrustVerification as cq, type NoEvmReceiptTrustedBlsSigner as cr, type OperatorAuthorityResponse as cs, type OperatorInfoResponse as ct, type OperatorRiskResponse as cu, type OperatorSigningActivityResponse as cv, type OperatorSigningEntry as cw, type OperatorSurfaceCapability as cx, type OperatorSurfaceStatus as cy, type P2pSeed as cz, type NativeEventFilter as d, noEvmReceiptTrustPolicyFromChainInfo as d$, TESTNET_69420 as d0, type TokenBalanceMrcIdentity as d1, type TokenBalanceRecord as d2, type TpmAttestationResponse as d3, type TransactionReceipt as d4, type TransactionView as d5, type TxFeedReceipt as d6, type TxFeedTransaction as d7, type TxStatusFoundResponse as d8, type TxStatusNotFoundResponse as d9, decodeTxFeedResponse as dA, encodeBlockSelector as dB, encodeLockBridgeConfigCalldata as dC, encodeSetBridgeResumeCooldownCalldata as dD, encodeSetBridgeRouteFinalityCalldata as dE, exportBridgeRouteCatalogueJson as dF, fetchChainInfoLatest as dG, fetchChainRegistryLatest as dH, getChainInfo as dI, getNoEvmReceiptTrustPolicy as dJ, getP2pSeeds as dK, getRpcEndpoints as dL, isBridgeAdminLockedRevert as dM, isBridgeCooldownZeroRevert as dN, isBridgeFinalityZeroRevert as dO, isBridgeResumeCooldownActiveRevert as dP, isNativeDecodedEvent as dQ, isNativeMarketOrderBookStreamPayload as dR, nativeAgentStateFilterParams as dS, nativeEventMatches as dT, nativeEventsFilterParams as dU, nativeEventsFromHistory as dV, nativeEventsFromReceipt as dW, nativeMarketEventFilter as dX, nativeMarketEventsFromHistory as dY, nativeMarketEventsFromReceipt as dZ, nativeMarketStateFilterParams as d_, type TxStatusResponse as da, type UpcomingDutiesResponse as db, type UpcomingDutyMap as dc, type UserAddressInput as dd, V1_BRIDGE_ALLOWED_FEE_TOKEN as de, V1_BRIDGE_ALLOWED_PROTOCOL as df, type VertexAtRound as dg, type VerticesAtRoundResponse as dh, assertNativeMarketOrderBookStreamPayload as di, assessBridgeRoute as dj, bridgeAddressHex as dk, bridgeQuoteSubmitReadiness as dl, bridgeRoutesReadiness as dm, bridgeTransferCandidates as dn, buildBridgeRouteCatalogue as dp, computeNoEvmDacFinalityMessage as dq, computeNoEvmLeaderFinalityMessage as dr, computeNoEvmReceiptsRoot as ds, computeNoEvmRoundFinalityMessage as dt, computeNoEvmTargetReceiptHash as du, consumeNativeEvents as dv, decodeNativeAgentStateResponse as dw, decodeNativeMarketOrderBookDeltasResponse as dx, decodeNativeReceiptResponse as dy, decodeNoEvmReceiptTranscript as dz, type TypedNativeReceiptEvent as e, normalizeBridgeRouteCatalogue as e0, parseBridgeRouteCatalogueJson as e1, parseChainRegistryToml as e2, parseNativeDecodedEvent as e3, parseQuantity as e4, parseQuantityBig as e5, rankBridgeRoutes as e6, selectBridgeTransferRoute as e7, validateBridgeRouteCatalogue as e8, verifyNoEvmArchiveProofSignatures as e9, verifyNoEvmBlockFinalityEvidenceMultisig as ea, verifyNoEvmBlockFinalityEvidenceThreshold as eb, verifyNoEvmFinalityEvidenceMultisig as ec, verifyNoEvmFinalityEvidenceThreshold as ed, verifyNoEvmReceiptProof as ee, verifyNoEvmReceiptProofTrust as ef, type NativeEventsFilter as f, type NativeEventsResponse as g, type NativeAgentStateFilter as h, type NativeAgentStateResponse as i, type NativeMarketStateFilter as j, 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 };
|