@monolythium/core-sdk 0.4.24 → 0.5.1
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/README.md +17 -9
- package/dist/crypto/index.cjs +45 -88
- package/dist/crypto/index.cjs.map +1 -1
- package/dist/crypto/index.d.cts +43 -30
- package/dist/crypto/index.d.ts +43 -30
- package/dist/crypto/index.js +39 -71
- package/dist/crypto/index.js.map +1 -1
- package/dist/index.cjs +402 -50
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +399 -1
- package/dist/index.d.ts +399 -1
- package/dist/index.js +373 -52
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3098,6 +3098,34 @@ declare const NODE_REGISTRY_SELECTORS: {
|
|
|
3098
3098
|
readonly getProbeAuthority: string;
|
|
3099
3099
|
/** `attestServiceProbe(bytes32,uint32,uint8,uint64)` — Component C attested score-eligibility path. */
|
|
3100
3100
|
readonly attestServiceProbe: string;
|
|
3101
|
+
/**
|
|
3102
|
+
* `advertiseSeat(uint32,uint8,uint32,uint128,uint32,bytes32)` returns
|
|
3103
|
+
* `uint32 seatId` (L6 open-seat marketplace). Publishes a vacancy
|
|
3104
|
+
* listing; caller must own an active member op-hash of the cluster.
|
|
3105
|
+
*/
|
|
3106
|
+
readonly advertiseSeat: string;
|
|
3107
|
+
/**
|
|
3108
|
+
* `applyForSeat(uint32,uint32,bytes)` returns `bytes32 appKey` (L6).
|
|
3109
|
+
* Payable — the native `value` escrows the full operator self-bond at
|
|
3110
|
+
* apply ({@link NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI}).
|
|
3111
|
+
*/
|
|
3112
|
+
readonly applyForSeat: string;
|
|
3113
|
+
/**
|
|
3114
|
+
* `voteSeatAdmit(uint32,bytes32,bytes)` returns `uint16 voteCount`
|
|
3115
|
+
* (L6). Active-member admission vote; the 7-of-10 threshold-reaching
|
|
3116
|
+
* vote fills the seat and admits the operator.
|
|
3117
|
+
*/
|
|
3118
|
+
readonly voteSeatAdmit: string;
|
|
3119
|
+
/**
|
|
3120
|
+
* `withdrawSeatApplication(uint32,bytes32)` returns `bool` (L6) —
|
|
3121
|
+
* applicant withdrawal that refunds the escrow.
|
|
3122
|
+
*/
|
|
3123
|
+
readonly withdrawSeatApplication: string;
|
|
3124
|
+
/**
|
|
3125
|
+
* `closeSeat(uint32,uint32)` returns `bool` (L6) — advertiser rescind
|
|
3126
|
+
* of an `Open` listing.
|
|
3127
|
+
*/
|
|
3128
|
+
readonly closeSeat: string;
|
|
3101
3129
|
};
|
|
3102
3130
|
/** Cluster-member reference width used by genesis and formation rosters. */
|
|
3103
3131
|
declare const NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES = 48;
|
|
@@ -3890,6 +3918,279 @@ declare function decodeClusterFormedEvent(topics: readonly (string | Uint8Array
|
|
|
3890
3918
|
* 20-byte address payload.
|
|
3891
3919
|
*/
|
|
3892
3920
|
declare function deriveClusterAnchorAddress(roster: readonly (string | Uint8Array | readonly number[])[], threshold: number): string;
|
|
3921
|
+
/**
|
|
3922
|
+
* Storage-slot tag byte for the open-seat family (under `0x1005`).
|
|
3923
|
+
* Mirrors mono-core `cluster_seat::TAG_CLUSTER_SEAT` — the next tag after
|
|
3924
|
+
* `TAG_CLUSTER_CHARTER` (`0x31`). Seat slots derive as
|
|
3925
|
+
* `keccak256(0x32 || clusterId_be32 || seatId_be32 || field_u8)`, a
|
|
3926
|
+
* distinct preimage shape from the archive-challenge family that reuses
|
|
3927
|
+
* the same tag byte under a different namespace.
|
|
3928
|
+
*/
|
|
3929
|
+
declare const NODE_REGISTRY_TAG_CLUSTER_SEAT = 50;
|
|
3930
|
+
/**
|
|
3931
|
+
* Operator self-bond floor in lythoshi (`5,000 LYTH`). Mirrors mono-core
|
|
3932
|
+
* `bond::MIN_SELF_BOND_LYTHOSHI` — the constitutional floor (raise-only;
|
|
3933
|
+
* lowering it is a hard fork). `applyForSeat` escrows the full self-bond
|
|
3934
|
+
* up front — `max(this floor, seat.minBond)` — and retains it into the
|
|
3935
|
+
* operator's bond on admit. NOTE: the 50,000 / 75,000 figures in the
|
|
3936
|
+
* legacy design surfaces are stale fiction — the SDK carries the on-chain
|
|
3937
|
+
* floor only.
|
|
3938
|
+
*/
|
|
3939
|
+
declare const NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI: bigint;
|
|
3940
|
+
/** Active-vacancy seat kind (`kind=0`). Mirrors `cluster_seat::SEAT_KIND_ACTIVE`. */
|
|
3941
|
+
declare const NODE_REGISTRY_SEAT_KIND_ACTIVE = 0;
|
|
3942
|
+
/** Standby-vacancy seat kind (`kind=1`). Mirrors `cluster_seat::SEAT_KIND_STANDBY`. */
|
|
3943
|
+
declare const NODE_REGISTRY_SEAT_KIND_STANDBY = 1;
|
|
3944
|
+
/** Decoded open-seat kind. Mirrors `cluster_seat::SeatKind`. */
|
|
3945
|
+
type SeatKind = "active" | "standby";
|
|
3946
|
+
/** Decode a raw seat-kind byte. `0` → `active`, `1` → `standby`. */
|
|
3947
|
+
declare function seatKindFromByte(b: number): SeatKind;
|
|
3948
|
+
/** Encode a {@link SeatKind} to its raw `u8` byte. */
|
|
3949
|
+
declare function seatKindToByte(kind: SeatKind): number;
|
|
3950
|
+
/**
|
|
3951
|
+
* Lifecycle status of an `OpenSeat` record. Mirrors
|
|
3952
|
+
* `cluster_seat::SeatStatus` (`None=0`, `Open=1`, `Filled=2`, `Closed=3`).
|
|
3953
|
+
*/
|
|
3954
|
+
type SeatStatus = "none" | "open" | "filled" | "closed";
|
|
3955
|
+
/** Numeric seat-status codes, mirroring `cluster_seat::SeatStatus::as_u8`. */
|
|
3956
|
+
declare const SEAT_STATUS_CODES: Record<Exclude<SeatStatus, never>, number>;
|
|
3957
|
+
/** Decode a raw seat-status byte. Any value outside `0..=3` → `none`. */
|
|
3958
|
+
declare function seatStatusFromByte(b: number): SeatStatus;
|
|
3959
|
+
/** Canonical `SeatAdvertised` event signature (L6). */
|
|
3960
|
+
declare const SEAT_ADVERTISED_EVENT_SIG: "SeatAdvertised(uint32,uint32,bytes32,uint8,uint32,uint128,uint32,bytes32)";
|
|
3961
|
+
/** Canonical `SeatApplied` event signature (L6). */
|
|
3962
|
+
declare const SEAT_APPLIED_EVENT_SIG: "SeatApplied(uint32,uint32,bytes32,address,uint128)";
|
|
3963
|
+
/** Canonical `SeatFilled` event signature (L6). */
|
|
3964
|
+
declare const SEAT_FILLED_EVENT_SIG: "SeatFilled(uint32,uint32,bytes32,uint16,uint16)";
|
|
3965
|
+
/** Canonical `SeatClosed` event signature (L6). */
|
|
3966
|
+
declare const SEAT_CLOSED_EVENT_SIG: "SeatClosed(uint32,uint32,uint8)";
|
|
3967
|
+
/** Args for `advertiseSeat(uint32,uint8,uint32,uint128,uint32,bytes32)` (L6). */
|
|
3968
|
+
interface AdvertiseSeatCalldataArgs {
|
|
3969
|
+
clusterId: bigint | number | string;
|
|
3970
|
+
/** `0` = active vacancy, `1` = standby vacancy (see {@link SeatKind}). */
|
|
3971
|
+
kind: SeatKind | number;
|
|
3972
|
+
/** How many identical seats this listing offers. */
|
|
3973
|
+
seatCount: bigint | number | string;
|
|
3974
|
+
/** Minimum bond in lythoshi (`>= 5,000 LYTH` for active seats). */
|
|
3975
|
+
minBondLythoshi: bigint | number | string;
|
|
3976
|
+
/** Service-tier capability bitmask the cluster needs (low-16 bitfield). */
|
|
3977
|
+
capabilityMask: number;
|
|
3978
|
+
/** `keccak`/`blake3` digest over the offered charter-share + off-chain terms (32 bytes). */
|
|
3979
|
+
termsHash: string | Uint8Array | readonly number[];
|
|
3980
|
+
}
|
|
3981
|
+
/** Args for `applyForSeat(uint32,uint32,bytes)` (L6, payable). */
|
|
3982
|
+
interface ApplyForSeatCalldataArgs {
|
|
3983
|
+
clusterId: bigint | number | string;
|
|
3984
|
+
/** Target seat id from the advertised listing. */
|
|
3985
|
+
seatId: bigint | number | string;
|
|
3986
|
+
/** The applicant's 1952-byte ML-DSA-65 consensus pubkey. */
|
|
3987
|
+
operatorPubkey: string | Uint8Array | readonly number[];
|
|
3988
|
+
}
|
|
3989
|
+
/** Args for `voteSeatAdmit(uint32,bytes32,bytes)` (L6). */
|
|
3990
|
+
interface VoteSeatAdmitCalldataArgs {
|
|
3991
|
+
clusterId: bigint | number | string;
|
|
3992
|
+
/** The application key (`bytes32` op-hash) returned by `applyForSeat`. */
|
|
3993
|
+
appKey: string | Uint8Array | readonly number[];
|
|
3994
|
+
/** The voting member's 1952-byte ML-DSA-65 consensus pubkey. */
|
|
3995
|
+
voterPubkey: string | Uint8Array | readonly number[];
|
|
3996
|
+
}
|
|
3997
|
+
/** Args for `withdrawSeatApplication(uint32,bytes32)` (L6). */
|
|
3998
|
+
interface WithdrawSeatApplicationCalldataArgs {
|
|
3999
|
+
clusterId: bigint | number | string;
|
|
4000
|
+
/** The application key (`bytes32` op-hash) to withdraw + refund. */
|
|
4001
|
+
appKey: string | Uint8Array | readonly number[];
|
|
4002
|
+
}
|
|
4003
|
+
/** Args for `closeSeat(uint32,uint32)` (L6). */
|
|
4004
|
+
interface CloseSeatCalldataArgs {
|
|
4005
|
+
clusterId: bigint | number | string;
|
|
4006
|
+
/** The seat id to rescind. */
|
|
4007
|
+
seatId: bigint | number | string;
|
|
4008
|
+
}
|
|
4009
|
+
/**
|
|
4010
|
+
* Encode `advertiseSeat(uint32,uint8,uint32,uint128,uint32,bytes32)`
|
|
4011
|
+
* calldata (L6). Flat 6-word head — `clusterId`, `kind` (`u8`),
|
|
4012
|
+
* `seatCount`, `minBond` (`u128`), `capabilityMask`, `termsHash`.
|
|
4013
|
+
* Byte-identical to mono-core's `advertise_seat` decode order.
|
|
4014
|
+
*/
|
|
4015
|
+
declare function encodeAdvertiseSeatCalldata(args: AdvertiseSeatCalldataArgs): string;
|
|
4016
|
+
/**
|
|
4017
|
+
* Encode `applyForSeat(uint32,uint32,bytes)` calldata (L6). Head:
|
|
4018
|
+
* `clusterId`, `seatId`, then the `bytes opPubkey` offset (`3*32`).
|
|
4019
|
+
* Tail: the 1952-byte consensus pubkey (length word + padded). This is
|
|
4020
|
+
* the `requestClusterJoin` shape with an extra `seatId` word — the call
|
|
4021
|
+
* is payable; the native escrow value rides the transaction, not the
|
|
4022
|
+
* calldata.
|
|
4023
|
+
*/
|
|
4024
|
+
declare function encodeApplyForSeatCalldata(args: ApplyForSeatCalldataArgs): string;
|
|
4025
|
+
/**
|
|
4026
|
+
* Encode `voteSeatAdmit(uint32,bytes32,bytes)` calldata (L6). Identical
|
|
4027
|
+
* wire layout to `voteClusterAdmit`: head `clusterId`, `appKey`
|
|
4028
|
+
* (`bytes32`), `voterPubkey` offset (`3*32`); tail the 1952-byte voter
|
|
4029
|
+
* pubkey (length word + padded).
|
|
4030
|
+
*/
|
|
4031
|
+
declare function encodeVoteSeatAdmitCalldata(args: VoteSeatAdmitCalldataArgs): string;
|
|
4032
|
+
/**
|
|
4033
|
+
* Encode `withdrawSeatApplication(uint32,bytes32)` calldata (L6). Flat
|
|
4034
|
+
* 2-word head — `clusterId`, `appKey`.
|
|
4035
|
+
*/
|
|
4036
|
+
declare function encodeWithdrawSeatApplicationCalldata(args: WithdrawSeatApplicationCalldataArgs): string;
|
|
4037
|
+
/**
|
|
4038
|
+
* Encode `closeSeat(uint32,uint32)` calldata (L6). Flat 2-word head —
|
|
4039
|
+
* `clusterId`, `seatId`.
|
|
4040
|
+
*/
|
|
4041
|
+
declare function encodeCloseSeatCalldata(args: CloseSeatCalldataArgs): string;
|
|
4042
|
+
/**
|
|
4043
|
+
* Derive the `bytes32` application key for an `applyForSeat` call — the
|
|
4044
|
+
* operator op-hash `BLAKE3(consensusPubkey)`, identical to the CJ-1
|
|
4045
|
+
* operator id. `voteSeatAdmit` / `withdrawSeatApplication` reference an
|
|
4046
|
+
* application by this key.
|
|
4047
|
+
*/
|
|
4048
|
+
declare function deriveSeatApplicationKey(operatorPubkey: string | Uint8Array | readonly number[]): string;
|
|
4049
|
+
/**
|
|
4050
|
+
* De-fictionalized open-seat listing row. The chain stores the `OpenSeat`
|
|
4051
|
+
* record (tag `0x32`) and emits {@link SeatAdvertised}/{@link SeatFilled}/
|
|
4052
|
+
* {@link SeatClosed}; the §18.4 indexer projects those into this shape.
|
|
4053
|
+
*
|
|
4054
|
+
* NOTE: this revision of the primitive (#147) ships NO on-chain
|
|
4055
|
+
* `getOpenSeat` view selector — open-seat discovery is event/indexer
|
|
4056
|
+
* backed. {@link openSeatFromAdvertised} projects a fresh listing from a
|
|
4057
|
+
* `SeatAdvertised` log; fill/close state folds in from later events.
|
|
4058
|
+
*
|
|
4059
|
+
* Economic numerics are in lythoshi (`1e18`). The advisory fields the
|
|
4060
|
+
* legacy design surfaces show (reputation, expected reward, diversity
|
|
4061
|
+
* bonus) are off-chain projections and are intentionally NOT carried on
|
|
4062
|
+
* this on-chain-faithful shape.
|
|
4063
|
+
*/
|
|
4064
|
+
interface OpenSeatView {
|
|
4065
|
+
/** Cluster the seat belongs to. */
|
|
4066
|
+
clusterId: number;
|
|
4067
|
+
/** Per-cluster monotonic seat id. */
|
|
4068
|
+
seatId: number;
|
|
4069
|
+
/** Advertiser op-hash (`0x` 32 bytes). */
|
|
4070
|
+
advertiser: string;
|
|
4071
|
+
/** Active or standby vacancy. */
|
|
4072
|
+
kind: SeatKind;
|
|
4073
|
+
/** Identical seats this listing offers. */
|
|
4074
|
+
seatCount: number;
|
|
4075
|
+
/** Seats already filled. */
|
|
4076
|
+
filledCount: number;
|
|
4077
|
+
/** Minimum bond in lythoshi (`>= 5,000 LYTH` for active seats). */
|
|
4078
|
+
minBondLythoshi: bigint;
|
|
4079
|
+
/** Service-tier capability bitmask the cluster needs. */
|
|
4080
|
+
capabilityMask: number;
|
|
4081
|
+
/** Terms digest (`0x` 32 bytes). */
|
|
4082
|
+
termsHash: string;
|
|
4083
|
+
/** Listing lifecycle status. */
|
|
4084
|
+
status: SeatStatus;
|
|
4085
|
+
}
|
|
4086
|
+
/**
|
|
4087
|
+
* A pending seat application, projected from {@link SeatApplied} + the
|
|
4088
|
+
* reused CJ-1 vote tally. The application reuses the CJ-1
|
|
4089
|
+
* `(cluster, operatorId)` keying, so its lifecycle status is a
|
|
4090
|
+
* {@link ClusterJoinRequestStatus}. `threshold` is the snapshot 7-of-10
|
|
4091
|
+
* admission threshold frozen at apply.
|
|
4092
|
+
*/
|
|
4093
|
+
interface SeatApplicationView {
|
|
4094
|
+
/** Cluster the application targets. */
|
|
4095
|
+
clusterId: number;
|
|
4096
|
+
/** Targeted seat id. */
|
|
4097
|
+
seatId: number;
|
|
4098
|
+
/** Application key = operator op-hash (`0x` 32 bytes). */
|
|
4099
|
+
appKey: string;
|
|
4100
|
+
/** Application owner address (`0x` 20 bytes). */
|
|
4101
|
+
owner: string;
|
|
4102
|
+
/** Full self-bond escrowed at apply, in lythoshi. */
|
|
4103
|
+
bondEscrowedLythoshi: bigint;
|
|
4104
|
+
/** Admit votes recorded so far. */
|
|
4105
|
+
voteCount: number;
|
|
4106
|
+
/** Frozen admission threshold (7 for a 10-member cluster). */
|
|
4107
|
+
threshold: number;
|
|
4108
|
+
/** CJ-1 request lifecycle status. */
|
|
4109
|
+
status: ClusterJoinRequestStatus;
|
|
4110
|
+
}
|
|
4111
|
+
/** Decoded `SeatAdvertised` event (L6). Mirrors `events::SEAT_ADVERTISED`. */
|
|
4112
|
+
interface SeatAdvertisedEvent {
|
|
4113
|
+
/** Cluster identifier (indexed topic 1). */
|
|
4114
|
+
clusterId: number;
|
|
4115
|
+
/** Seat identifier (indexed topic 2). */
|
|
4116
|
+
seatId: number;
|
|
4117
|
+
/** Advertiser op-hash (`0x` 32 bytes). */
|
|
4118
|
+
advertiser: string;
|
|
4119
|
+
/** Raw seat-kind byte (`0` active, `1` standby). */
|
|
4120
|
+
kind: number;
|
|
4121
|
+
/** Identical seats offered. */
|
|
4122
|
+
seatCount: number;
|
|
4123
|
+
/** Minimum bond in lythoshi. */
|
|
4124
|
+
minBondLythoshi: bigint;
|
|
4125
|
+
/** Service-tier capability bitmask. */
|
|
4126
|
+
capabilityMask: number;
|
|
4127
|
+
/** Terms digest (`0x` 32 bytes). */
|
|
4128
|
+
termsHash: string;
|
|
4129
|
+
}
|
|
4130
|
+
/** Decoded `SeatApplied` event (L6). Mirrors `events::SEAT_APPLIED`. */
|
|
4131
|
+
interface SeatAppliedEvent {
|
|
4132
|
+
/** Cluster identifier (indexed topic 1). */
|
|
4133
|
+
clusterId: number;
|
|
4134
|
+
/** Seat identifier (indexed topic 2). */
|
|
4135
|
+
seatId: number;
|
|
4136
|
+
/** Application key = operator op-hash (indexed topic 3, `0x` 32 bytes). */
|
|
4137
|
+
operatorId: string;
|
|
4138
|
+
/** Application owner address (`0x` 20 bytes). */
|
|
4139
|
+
owner: string;
|
|
4140
|
+
/** Full self-bond escrowed at apply, in lythoshi. */
|
|
4141
|
+
bondLythoshi: bigint;
|
|
4142
|
+
}
|
|
4143
|
+
/** Decoded `SeatFilled` event (L6). Mirrors `events::SEAT_FILLED`. */
|
|
4144
|
+
interface SeatFilledEvent {
|
|
4145
|
+
/** Cluster identifier (indexed topic 1). */
|
|
4146
|
+
clusterId: number;
|
|
4147
|
+
/** Seat identifier (indexed topic 2). */
|
|
4148
|
+
seatId: number;
|
|
4149
|
+
/** Admitted operator op-hash (indexed topic 3, `0x` 32 bytes). */
|
|
4150
|
+
operatorId: string;
|
|
4151
|
+
/** Seats filled after this admission. */
|
|
4152
|
+
filledCount: number;
|
|
4153
|
+
/** Total seats in the listing. */
|
|
4154
|
+
seatCount: number;
|
|
4155
|
+
}
|
|
4156
|
+
/** Decoded `SeatClosed` event (L6). Mirrors `events::SEAT_CLOSED`. */
|
|
4157
|
+
interface SeatClosedEvent {
|
|
4158
|
+
/** Cluster identifier (indexed topic 1). */
|
|
4159
|
+
clusterId: number;
|
|
4160
|
+
/** Seat identifier (indexed topic 2). */
|
|
4161
|
+
seatId: number;
|
|
4162
|
+
/** Raw seat-status byte after close (`3` = closed). */
|
|
4163
|
+
status: number;
|
|
4164
|
+
}
|
|
4165
|
+
/**
|
|
4166
|
+
* Decode a `SeatAdvertised` log (L6). Indexed topics: `clusterId`,
|
|
4167
|
+
* `seatId`. Data: `(bytes32 advertiser, uint8 kind, uint32 seatCount,
|
|
4168
|
+
* uint128 minBond, uint32 capabilityMask, bytes32 termsHash)` — 6 words.
|
|
4169
|
+
*/
|
|
4170
|
+
declare function decodeSeatAdvertisedEvent(topics: readonly (string | Uint8Array | readonly number[])[], data: string | Uint8Array | readonly number[]): SeatAdvertisedEvent;
|
|
4171
|
+
/**
|
|
4172
|
+
* Decode a `SeatApplied` log (L6). Indexed topics: `clusterId`, `seatId`,
|
|
4173
|
+
* `operatorId`. Data: `(address owner, uint128 bond)` — 2 words.
|
|
4174
|
+
*/
|
|
4175
|
+
declare function decodeSeatAppliedEvent(topics: readonly (string | Uint8Array | readonly number[])[], data: string | Uint8Array | readonly number[]): SeatAppliedEvent;
|
|
4176
|
+
/**
|
|
4177
|
+
* Decode a `SeatFilled` log (L6). Indexed topics: `clusterId`, `seatId`,
|
|
4178
|
+
* `operatorId`. Data: `(uint16 filledCount, uint16 seatCount)` — 2 words.
|
|
4179
|
+
*/
|
|
4180
|
+
declare function decodeSeatFilledEvent(topics: readonly (string | Uint8Array | readonly number[])[], data: string | Uint8Array | readonly number[]): SeatFilledEvent;
|
|
4181
|
+
/**
|
|
4182
|
+
* Decode a `SeatClosed` log (L6). Indexed topics: `clusterId`, `seatId`.
|
|
4183
|
+
* Data: `(uint8 status)` — 1 word.
|
|
4184
|
+
*/
|
|
4185
|
+
declare function decodeSeatClosedEvent(topics: readonly (string | Uint8Array | readonly number[])[], data: string | Uint8Array | readonly number[]): SeatClosedEvent;
|
|
4186
|
+
/**
|
|
4187
|
+
* Project a fresh {@link OpenSeatView} from a `SeatAdvertised` event — a
|
|
4188
|
+
* just-listed seat is `Open` with `filledCount = 0`. Subsequent
|
|
4189
|
+
* {@link SeatFilled}/{@link SeatClosed} events fold in over the indexer's
|
|
4190
|
+
* projection; this gives the live listing shape a wallet renders before
|
|
4191
|
+
* any application lands.
|
|
4192
|
+
*/
|
|
4193
|
+
declare function openSeatFromAdvertised(event: SeatAdvertisedEvent): OpenSeatView;
|
|
3893
4194
|
|
|
3894
4195
|
/**
|
|
3895
4196
|
* Address display helpers.
|
|
@@ -8475,6 +8776,103 @@ declare function buildVoteClusterAdmitTxFields(args: BuildVoteClusterAdmitTxFiel
|
|
|
8475
8776
|
declare function submitRequestClusterJoin(args: SubmitRequestClusterJoinArgs): Promise<ClusterJoinSubmitResult>;
|
|
8476
8777
|
declare function submitVoteClusterAdmit(args: SubmitVoteClusterAdmitArgs): Promise<ClusterJoinSubmitResult>;
|
|
8477
8778
|
|
|
8779
|
+
/**
|
|
8780
|
+
* L6 open-seat marketplace transaction builders.
|
|
8781
|
+
*
|
|
8782
|
+
* The low-level ABI encoders live in `node-registry.ts`. This module
|
|
8783
|
+
* wraps them into wallet-facing `NativeEvmTxFields` builders, mirroring
|
|
8784
|
+
* the CJ-1 `cluster-join.ts` shape: a cluster advertises a vacancy
|
|
8785
|
+
* (`advertiseSeat`), operators submit escrowed applications
|
|
8786
|
+
* (`applyForSeat`, payable), active members vote (`voteSeatAdmit`), and
|
|
8787
|
+
* an applicant or advertiser can back out (`withdrawSeatApplication` /
|
|
8788
|
+
* `closeSeat`). Admission still terminates in the pre-existing 7-of-10
|
|
8789
|
+
* signed-consent path — these builders add discovery + intent, no new
|
|
8790
|
+
* consensus surface.
|
|
8791
|
+
*
|
|
8792
|
+
* The `applyForSeat` builder defaults the native value to the full
|
|
8793
|
+
* operator self-bond floor ({@link NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI},
|
|
8794
|
+
* 5,000 LYTH): the on-chain primitive escrows the full self-bond at apply
|
|
8795
|
+
* — `max(min_self_bond_floor, seat.minBond)` — and rejects an under-funded
|
|
8796
|
+
* applicant up front. When a targeted seat advertises a `minBond` above
|
|
8797
|
+
* the floor, the caller must override the value with that larger figure.
|
|
8798
|
+
*/
|
|
8799
|
+
|
|
8800
|
+
/** Default execution-unit limit for an open-seat marketplace transaction. */
|
|
8801
|
+
declare const DEFAULT_SEAT_EXECUTION_UNIT_LIMIT = 1000000n;
|
|
8802
|
+
interface SeatTxFee {
|
|
8803
|
+
maxFeePerGas: bigint | number | string;
|
|
8804
|
+
maxPriorityFeePerGas: bigint | number | string;
|
|
8805
|
+
gasLimit?: bigint | number | string;
|
|
8806
|
+
}
|
|
8807
|
+
interface SeatFeeOptions {
|
|
8808
|
+
executionUnitLimit?: bigint | number | string;
|
|
8809
|
+
priorityTipLythoshi?: bigint | number | string;
|
|
8810
|
+
minPriceLythoshi?: bigint | number | string;
|
|
8811
|
+
safetyMultiplier?: bigint | number | string;
|
|
8812
|
+
}
|
|
8813
|
+
interface BuildAdvertiseSeatTxFieldsArgs extends AdvertiseSeatCalldataArgs {
|
|
8814
|
+
chainId: bigint | number | string;
|
|
8815
|
+
nonce: bigint | number | string;
|
|
8816
|
+
fee: SeatTxFee;
|
|
8817
|
+
}
|
|
8818
|
+
interface BuildApplyForSeatTxFieldsArgs extends ApplyForSeatCalldataArgs {
|
|
8819
|
+
chainId: bigint | number | string;
|
|
8820
|
+
nonce: bigint | number | string;
|
|
8821
|
+
fee: SeatTxFee;
|
|
8822
|
+
/**
|
|
8823
|
+
* Self-bond to escrow at apply, in lythoshi. Defaults to the operator
|
|
8824
|
+
* self-bond floor {@link NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI}
|
|
8825
|
+
* (5,000 LYTH). The on-chain primitive requires
|
|
8826
|
+
* `max(min_self_bond_floor, seat.minBond)`, so when the targeted seat
|
|
8827
|
+
* advertises a `minBondLythoshi` above the floor the caller MUST pass
|
|
8828
|
+
* that larger amount here or the application reverts (`SeatBondTooLow`).
|
|
8829
|
+
*/
|
|
8830
|
+
selfBondLythoshi?: bigint | number | string;
|
|
8831
|
+
}
|
|
8832
|
+
interface BuildVoteSeatAdmitTxFieldsArgs extends VoteSeatAdmitCalldataArgs {
|
|
8833
|
+
chainId: bigint | number | string;
|
|
8834
|
+
nonce: bigint | number | string;
|
|
8835
|
+
fee: SeatTxFee;
|
|
8836
|
+
}
|
|
8837
|
+
interface BuildWithdrawSeatApplicationTxFieldsArgs extends WithdrawSeatApplicationCalldataArgs {
|
|
8838
|
+
chainId: bigint | number | string;
|
|
8839
|
+
nonce: bigint | number | string;
|
|
8840
|
+
fee: SeatTxFee;
|
|
8841
|
+
}
|
|
8842
|
+
interface BuildCloseSeatTxFieldsArgs extends CloseSeatCalldataArgs {
|
|
8843
|
+
chainId: bigint | number | string;
|
|
8844
|
+
nonce: bigint | number | string;
|
|
8845
|
+
fee: SeatTxFee;
|
|
8846
|
+
}
|
|
8847
|
+
/**
|
|
8848
|
+
* Resolve the execution-unit fee for an open-seat transaction from a live
|
|
8849
|
+
* `lyth_executionUnitPrice` quote. Mirrors
|
|
8850
|
+
* `resolveClusterJoinExecutionFee`: clamp the quote to the protocol
|
|
8851
|
+
* floor, apply the safety multiplier, and clamp the priority tip to the
|
|
8852
|
+
* resulting max fee.
|
|
8853
|
+
*/
|
|
8854
|
+
declare function resolveSeatExecutionFee(quote: ExecutionUnitPriceResponse, options?: SeatFeeOptions): SeatTxFee;
|
|
8855
|
+
/** Build `advertiseSeat` transaction fields (active member; non-payable). */
|
|
8856
|
+
declare function buildAdvertiseSeatTxFields(args: BuildAdvertiseSeatTxFieldsArgs): NativeEvmTxFields;
|
|
8857
|
+
/**
|
|
8858
|
+
* Build `applyForSeat` transaction fields (operator; payable). The native
|
|
8859
|
+
* `value` escrows the operator self-bond at apply, defaulting to the
|
|
8860
|
+
* self-bond floor {@link NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI}
|
|
8861
|
+
* (5,000 LYTH). The on-chain primitive requires
|
|
8862
|
+
* `max(min_self_bond_floor, seat.minBond)`; when the targeted seat's
|
|
8863
|
+
* `minBondLythoshi` exceeds the floor, pass that larger figure via
|
|
8864
|
+
* `selfBondLythoshi` or the application reverts (`SeatBondTooLow`).
|
|
8865
|
+
*/
|
|
8866
|
+
declare function buildApplyForSeatTxFields(args: BuildApplyForSeatTxFieldsArgs): NativeEvmTxFields;
|
|
8867
|
+
/** Build `voteSeatAdmit` transaction fields (active member; non-payable). */
|
|
8868
|
+
declare function buildVoteSeatAdmitTxFields(args: BuildVoteSeatAdmitTxFieldsArgs): NativeEvmTxFields;
|
|
8869
|
+
/** Build `withdrawSeatApplication` transaction fields (applicant; non-payable). */
|
|
8870
|
+
declare function buildWithdrawSeatApplicationTxFields(args: BuildWithdrawSeatApplicationTxFieldsArgs): NativeEvmTxFields;
|
|
8871
|
+
/** Build `closeSeat` transaction fields (advertiser; non-payable). */
|
|
8872
|
+
declare function buildCloseSeatTxFields(args: BuildCloseSeatTxFieldsArgs): NativeEvmTxFields;
|
|
8873
|
+
/** Seat kinds the marketplace currently advertises (active is admittable; standby is advertise-only). */
|
|
8874
|
+
declare const SEAT_KINDS: readonly SeatKind[];
|
|
8875
|
+
|
|
8478
8876
|
/**
|
|
8479
8877
|
* Token factory precompile (`0x1000`) calldata helpers.
|
|
8480
8878
|
*
|
|
@@ -9081,4 +9479,4 @@ interface MonolythiumNetworkConfig {
|
|
|
9081
9479
|
*/
|
|
9082
9480
|
declare const version = "0.4.18";
|
|
9083
9481
|
|
|
9084
|
-
export { ADDRESS_HRP, ADDRESS_KIND_HRPS, API_STREAM_TOPICS, type AccountPolicy, type AccountProofResponse, type ActiveCharterView, type Address, type AddressActivityArchiveRedirect, type AddressActivityEntry, type AddressActivityEntryEnriched, type AddressActivityKind, type AddressActivityKindResponse, type AddressActivityKindRetention, AddressError, type AddressFlowResponse, type AddressKind, type AddressLabelRecord, type AddressProfileResponse, type AddressValidation, AgentActionError, type AgentReputationCategoryScope, type AgentReputationRecord, type AgentReputationResponse, type AnswerArchiveChallengeCalldataArgs, type ApiAddressActivityData, type ApiAddressActivityEntry, type ApiAddressActivityKind, type ApiAddressActivityKindData, type ApiAddressActivityKindSummary, type ApiBlockData, type ApiBlockHeader, type ApiBlockTransactionsData, type ApiCapabilitiesResponse, ApiClient, type ApiClientOptions, type ApiClusterData, type ApiClusterDirectoryEntry, type ApiClusterDirectoryPage, type ApiClusterMember, type ApiClusterStatus, type ApiClustersData, type ApiEnvelope, type ApiErrorEnvelope, type ApiHealthResponse, type ApiIndexerStatus, type ApiLatestAnchor, type ApiLogEntry, type ApiOperatorData, type ApiOperatorInfo, type ApiQueryValue, type ApiRuntimeProvenanceData, type ApiServiceProbeData, type ApiStreamTopic, type ApiStreamTopicMetadata, type ApiStreamTopicRetention, type ApiStreamsIndexResponse, type ApiTransactionData, type ApiTransactionNativeReceiptData, type ApiTransactionReceipt, type ApiTransactionReceiptData, type ApiTransactionView, type ApiUpgradePlanStatus, type ApiUpgradeStatus, type ApiUpgradeStatusData, type ArchiveChallenge, type AssetPolicy, type AttestDkgReshareCalldataArgs, type AttestServiceProbeCalldataArgs, type AttestationWindow, BRIDGE_QUOTE_API_BLOCKED_REASON, BRIDGE_REVERT_TAGS, BRIDGE_SELECTORS, BRIDGE_SUBMIT_API_BLOCKED_REASON, BURN_ADDR, type BinaryProofEndpoint, type BlockHeader, type BlockSelector, type BlockTag, type BlsCertificateResponse, type BridgeAdminControl, type BridgeAnchorState, type BridgeBreakerState, type BridgeBytesInput, type BridgeCircuitBreakerFields, type BridgeCircuitBreakerState, type BridgeDrainCap, type BridgeDrainStatus, type BridgeHealthRecord, type BridgeHealthResponse, BridgePrecompileError, type BridgeQuoteSubmitReadiness, type BridgeRiskTier, type BridgeRouteAssessment, type BridgeRouteCandidate, type BridgeRouteCatalogue, BridgeRouteCatalogueError, type BridgeRouteCatalogueJsonOptions, type BridgeRouteCataloguePayload, type BridgeRouteCatalogueRoute, type BridgeRouteCatalogueValidation, type BridgeRouteDisclosure, type BridgeRouteSelection, type BridgeRoutesRequest, type BridgeRoutesResponse, type BridgeRoutesSource, type BridgeTransferIntent, type BridgeTransferRequest, type BridgeVerifierDisclosure, type BuildRequestClusterJoinTxFieldsArgs, type BuildVoteClusterAdmitTxFieldsArgs, CHAIN_REGISTRY, CHAIN_REGISTRY_RAW_BASE, CLOB_MARKET_ID_DOMAIN_TAG, CLOB_SELECTORS, CLUSTER_FORMED_EVENT_SIG, type CallRequest, type CancelClusterJoinCalldataArgs, type CancelPendingChangeCalldataArgs, type CancelSpotOrderArgs, type CapabilitiesResponse, type CapabilityDescriptor, type ChainInfo, type ChainRegistry, type ChainStatsResponse, type CheckpointRecord, type CirculatingSupplyResponse, type ClobMarketAssets, type ClobMarketRecord, type ClobMarketResponse, type ClobMarketSummary, type ClobMarketsResponse, type ClobOhlcResponse, type ClobOrderBookResponse, type ClobTrade, type ClobTradesResponse, type ClusterAprResponse, type ClusterCharterArgs, type ClusterDelegatorsResponse, type ClusterDirectoryEntryResponse, type ClusterDirectoryPageResponse, type ClusterDiversity, type ClusterDiversityView, type ClusterEntityResponse, type ClusterFormedEvent, type ClusterJoinFeeOptions, type ClusterJoinReadClient, type ClusterJoinRequestStatus, type ClusterJoinRequestView, type ClusterJoinSubmitClient, type ClusterJoinSubmitResult, type ClusterJoinTxFee, type ClusterMemberResponse, type ClusterNameResponse, type ClusterResignationRow, type ClusterResignationsResponse, type ClusterStatusResponse, type CommitArchiveRootCalldataArgs, type CreateFixedSupplyMrc20CalldataArgs, type CreateRequestCanonicalArgs, type CreateTokenCalldataArgs, DEFAULT_CLUSTER_JOIN_EXECUTION_UNIT_LIMIT, DELEGATION_REVERT_TAGS, DELEGATION_SELECTORS, DIVERSITY_SCORE_MAX, type DagParent, type DagParentsResponse, type DagSyncStatus, type DecodeTxExtension, type DecodeTxLog, type DecodeTxPqAttestation, type DecodeTxResponse, type DelegationCapResponse, type DelegationHistoryRecord, DelegationPrecompileError, type DelegationRow, type DelegationsResponse, type DutyAbsence, EMPTY_ROOT, EXECUTION_UNIT_PRICE_SAFETY_MULTIPLIER, type EncodeNativeAgentAvailabilitySlotArgs, type EncodeNativeAgentCounterEscrowArgs, type EncodeNativeAgentCreateEscrowArgs, type EncodeNativeAgentDeactivateServiceArgs, type EncodeNativeAgentEscrowActorArgs, type EncodeNativeAgentGrantConsentArgs, type EncodeNativeAgentIssueAttestationArgs, type EncodeNativeAgentListServiceArgs, type EncodeNativeAgentRecordPolicySpendArgs, type EncodeNativeAgentRecordReputationArgs, type EncodeNativeAgentRegisterArbiterArgs, type EncodeNativeAgentRegisterIssuerArgs, type EncodeNativeAgentResolveEscrowArgs, type EncodeNativeAgentRevokeAttestationArgs, type EncodeNativeAgentRevokeConsentArgs, type EncodeNativeAgentSetAvailabilityArgs, type EncodeNativeAgentSetSpendingPolicyArgs, type EncodeNativeAgentStartEscrowArgs, type EncodeNativeAgentSubmitEscrowArgs, type EncodeNativeNftBuyListingArgs, type EncodeNativeNftCancelListingArgs, type EncodeNativeNftCreateListingArgs, type EncodeNativeNftPlaceAuctionBidArgs, type EncodeNativeNftSettleAuctionArgs, type EncodeNativeNftSweepExpiredListingsArgs, type EncodeNativeSpotCancelOrderArgs, type EncodeNativeSpotCreateMarketArgs, type EncodeNativeSpotLimitOrderArgs, type EncodeNativeSpotSettleLimitOrderArgs, type EncodeNativeSpotSettleRoutedLimitOrderArgs, type EntityRatchetResponse, type EthCallRequest, type EthSendTransactionRequest, type ExecutionUnitPriceResponse, type ExpireClusterJoinCalldataArgs, type ExplorerEndpoint, FEED_ID_DOMAIN_TAG, type FeeHistoryResponse, type FormClusterCalldataArgs, type FormClusterV2CalldataArgs, type GapRange, type GapRecord, type GapRecordsResponse, type GenesisVerdict, type GetClusterJoinRequestCalldataArgs, type Hash, type HealthSummary, type Hex, type IndexerStatus, type JailStatusWindow, type KeyRotationWindow, LYTHOSHI_PER_LYTH, LYTH_DECIMALS, type LatencyBands, type ListProofRequestsResponse, type LythFormatOptions, type LythUpgradePlanStatus, type LythUpgradeStatusResponse, MAX_MULTISIG_MEMBERS, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES, MAX_NATIVE_RECEIPT_EVENTS, MIN_EXECUTION_UNIT_PRICE_LYTHOSHI, MIN_MULTISIG_MEMBERS, ML_DSA_65_PUBLIC_KEY_LEN, ML_DSA_65_SIGNATURE_LEN, MONOLYTHIUM_NETWORKS, MONOLYTHIUM_TESTNET_CHAIN_ID, MONOLYTHIUM_TESTNET_NETWORK_NAME, MRV_DEPLOY_PAYLOAD_VERSION, MRV_FORMAT_VERSION, MRV_MAX_ABI_SYMBOLS, MRV_MAX_CODE_BYTES, MRV_MAX_DEBUG_BYTES, MRV_MAX_MEMORY_PAGES, MRV_MAX_STORAGE_NAMESPACE_BYTES, MRV_MEMORY_PAGE_BYTES, MRV_PROFILE_MONO_RV32IM_V1, MRV_STRUCTURED_FEE_FIELDS, MRV_TX_EXTENSION_KIND, MRV_TX_EXTENSION_V1, MULTISIG_ADDRESS_DERIVATION_DOMAIN$1 as MULTISIG_ADDRESS_DERIVATION_DOMAIN, MULTISIG_ADDRESS_DERIVATION_DOMAIN as MULTISIG_WITNESS_ADDRESS_DERIVATION_DOMAIN, MULTISIG_WITNESS_DOMAIN, MarketActionError, type MarketTransactionPlan, type MemberPubkeyInput, type MempoolSnapshot, type MeshDecodedTx, type MeshSignedTxResponse, type MeshTxIntent, type MeshUnsignedTxResponse, type MetricsRangeResponse, type MetricsRangeSample, type MetricsRangeSeries, type MetricsRangeStatus, type MonolythiumNetworkConfig, type MrcAccountRecord, type MrcAccountRequest, type MrcAccountResponse, type MrcHoldersRequest, type MrcHoldersResponse, type MrcMetadataRecord, type MrcMetadataResponse, type MrcPolicyRecord, type MrcPolicySpendRecord, type MrvAbiManifest, type MrvAbiParam, type MrvAbiSymbol, type MrvAbiSymbolKind, type MrvAbiType, type MrvAddressKind, type MrvArtifactMetadata, type MrvBuildMetadata, type MrvBytesLike, type MrvCallNativeTxOptions, type MrvCallNativeTxPlan, type MrvCallPlan, type MrvCallRequest, type MrvCallResponse, type MrvCallStatus, type MrvCallSubmission, type MrvCallSubmitOptions, type MrvDecimalLike, type MrvDeployNativeTxOptions, type MrvDeployNativeTxPlan, type MrvDeployPayload, type MrvDeployPayloadNativeTxOptions, type MrvDeployPayloadPlanOptions, type MrvDeployPayloadRequestOptions, type MrvDeployPayloadSubmission, type MrvDeployPayloadSubmitOptions, type MrvDeployPlan, type MrvDeployPlanOptions, type MrvDeployRequest, type MrvDeployResponse, type MrvDeploySubmission, type MrvDeploySubmitOptions, type MrvEventRecord, type MrvExecutionReceipt, type MrvFeeDisplayConformanceInput, type MrvFeeDisplayConformanceReport, type MrvMemoryLimits, type MrvMeterCounters, type MrvNativeFeePreview, type MrvNativeStateDelta, type MrvNativeTxFacade, type MrvRequestBuildOptions, type MrvResolvedSyscall, type MrvRevertPayload, type MrvRiscvProfile, type MrvStorageNamespace, type MrvStructuredFeeConformanceOptions, type MrvStructuredFeeConformanceReport, type MrvSubmissionResult, type MrvSyscallImport, type MrvTransactionExtension, type MrvTypedAddress, type MrvValidatedArtifactMetadata, MrvValidationError, MultisigError, type MultisigMember, type MultisigMemberSignature, type MultisigWitness, NAME_BASE_MULTIPLIER, NAME_FALLBACK_FEE_UNIT_LYTHOSHI, NAME_LABEL_MAX_LEN, NAME_LABEL_MIN_LEN, NAME_MAX_LEN, NAME_REGISTRY_SELECTORS, NATIVE_AGENT_MODULE_ADDRESS, NATIVE_AGENT_MODULE_ADDRESS_BYTES, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET, NATIVE_DEV_HOST_API_VERSION, NATIVE_DEV_IPC_PROTOCOL_VERSION, NATIVE_DEV_MANIFEST_SCHEMA_VERSION, NATIVE_LYTH_DECIMALS, NATIVE_MARKET_EVENT_FAMILY, NATIVE_MARKET_MODULE_ADDRESS, NATIVE_MARKET_MODULE_ADDRESS_BYTES, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC, NODE_REGISTRY_ARCHIVE_CHALLENGE_DOMAIN, NODE_REGISTRY_ARCHIVE_KIND_EPOCH_SEED, NODE_REGISTRY_ARCHIVE_NONCE_DOMAIN, NODE_REGISTRY_BLS_PUBKEY_BYTES, NODE_REGISTRY_CAPABILITIES, NODE_REGISTRY_CAPABILITY_MASK, NODE_REGISTRY_CHALLENGE_EPOCH_WINDOW, NODE_REGISTRY_CHARTER_COOLDOWN_EPOCHS, NODE_REGISTRY_CLUSTER_CHARTER_BYTES, NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS, NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES, NODE_REGISTRY_CONSENSUS_POP_BYTES, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN_V2, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES, NODE_REGISTRY_MAX_MERKLE_PROOF_DEPTH, NODE_REGISTRY_MERKLE_INNER_DOMAIN, NODE_REGISTRY_MERKLE_LEAF_DOMAIN, NODE_REGISTRY_MIN_ARCHIVE_LEAF_COUNT, NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES, NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID, NODE_REGISTRY_PUBLIC_SERVICE_MASK, NODE_REGISTRY_SELECTORS, NODE_REGISTRY_SUBKIND_CHARTER_DELEGATOR_BPS, NODE_REGISTRY_SUBKIND_CHARTER_MEMBER_SHARES, NODE_REGISTRY_TAG_ARCHIVE_CHALLENGE, NODE_REGISTRY_TAG_CLUSTER_CHARTER, NODE_REGISTRY_TAG_SERVICE_SCORE, NODE_REGISTRY_TAG_TREASURY, NODE_REGISTRY_UPDATE_CHARTER_MESSAGE_DOMAIN, NODE_REGISTRY_UPDATE_CHARTER_THRESHOLD, NO_EVM_ARCHIVE_PROOF_SCHEMA, NO_EVM_ARCHIVE_SIGNATURE_SCHEME, NO_EVM_FINALITY_EVIDENCE_SCHEMA, NO_EVM_FINALITY_EVIDENCE_SOURCE, NO_EVM_RECEIPTS_ROOT_DOMAIN, NO_EVM_RECEIPT_CODEC, NO_EVM_RECEIPT_PROOF_SCHEMA, NO_EVM_RECEIPT_PROOF_TYPE, NO_EVM_RECEIPT_ROOT_ALGORITHM, type NameCategory, type NameOfResponse, type NameRegistrationQuote, NameRegistryError, type NativeAgentAddressInput, type NativeAgentAddressKind, type NativeAgentArbiterStateRecord, type NativeAgentAttestationStateRecord, type NativeAgentAvailabilityStateRecord, type NativeAgentConsentStateRecord, type NativeAgentEscrowResolution, type NativeAgentEscrowStateRecord, type NativeAgentForwarderInput, type NativeAgentIssuerStateRecord, type NativeAgentModuleCallEnvelope, type NativeAgentModuleContractCall, type NativeAgentPolicySpendStateRecord, type NativeAgentPolicyStateRecord, type NativeAgentReputationReviewStateRecord, type NativeAgentReputationScores, type NativeAgentServiceStateRecord, type NativeAgentStateFilter, type NativeAgentStateFilterParamValue, type NativeAgentStateResponse, type NativeAgentStateResponseFilters, type NativeAgentStateSource, type NativeCallForwarderArtifact, type NativeCollectionRoyaltyStateRecord, type NativeDecodedEvent, type NativeDevApprovalKind, type NativeDevCommandName, type NativeDevContractPassport, type NativeDevHostApprovalResultMessage, type NativeDevHostCommandMessage, type NativeDevHostContextMessage, type NativeDevIpcMessage, type NativeDevMrcAllocation, type NativeDevMrcAssetKind, type NativeDevMrcTokenPlan, type NativeDevMrvDeployPlan, type NativeDevRiskLabel, type NativeDevRiskSeverity, type NativeDevSidecarApprovalRequestMessage, type NativeDevSidecarCommandResultMessage, type NativeDevSidecarProjectEventMessage, type NativeDevSidecarReadyMessage, type NativeDevVerificationBundle, type NativeDevWalletApprovalRequest, type NativeDevkitArchive, type NativeDevkitChannel, type NativeDevkitCompatibility, type NativeDevkitManifest, type NativeDevkitSidecarManifest, type NativeDevkitSidecarStatus, type NativeDevkitStatus, type NativeEventConsumer, type NativeEventFilter, type NativeEventProjection, type NativeEventsFilter, type NativeEventsResponse, type NativeEventsResponseFilters, type NativeEventsSource, type NativeMarketAddressInput, type NativeMarketAddressKind, type NativeMarketForwarderInput, type NativeMarketModuleCallEnvelope, type NativeMarketModuleContractCall, type NativeMarketOrderBookDelta, type NativeMarketOrderBookDeltasRequest, type NativeMarketOrderBookDeltasResponse, type NativeMarketOrderBookDeltasResponseFilters, type NativeMarketOrderBookDeltasSource, type NativeMarketOrderBookStreamAction, type NativeMarketOrderBookStreamPayload, type NativeMarketStateFilter, type NativeMarketStateFilterParamValue, type NativeMarketStateResponse, type NativeMarketStateResponseFilters, type NativeMarketStateSource, type NativeModuleForwarderDescriptor, type NativeMrcPolicyProjection, type NativeNftAssetStandard, type NativeNftListingKind, type NativeNftListingStateRecord, type NativeReceiptCounters, type NativeReceiptEvent, type NativeReceiptFee, type NativeReceiptFeeDisplay, type NativeReceiptResponse, type NativeReceiptSource, type NativeSpotMarketStateRecord, type NativeSpotOrderStateRecord, type NetworkClientOptions, type NetworkSlug, type NoEvmArchiveCoveringSnapshot, type NoEvmArchiveProof, type NoEvmArchiveSignatureVerification, type NoEvmArchiveSignatureVerificationIssue, type NoEvmArchiveSignatureVerificationIssueCode, type NoEvmArchiveTrustedSigner, type NoEvmBlockBlsFinalityVerification, type NoEvmBlockRoundFinalityVerification, type NoEvmBlsFinalityVerification, type NoEvmFinalityBlockReference, type NoEvmFinalityCertificate, type NoEvmFinalityEvidence, type NoEvmReceiptFinalityTrustPolicy, type NoEvmReceiptProof, NoEvmReceiptProofError, type NoEvmReceiptProofErrorCode, type NoEvmReceiptProofVerification, type NoEvmReceiptTrustIssue, type NoEvmReceiptTrustIssueCode, type NoEvmReceiptTrustPolicy, type NoEvmReceiptTrustVerification, type NoEvmReceiptTrustedBlsSigner, type NoEvmReceiptTrustedSigner, type NoEvmRoundFinalityVerification, type NodeHostingClass, NodeRegistryError, type NonInclusionProofEnvelope, OPERATOR_ROUTER_ADDRESS, OPERATOR_ROUTER_EVENT_SIGS, OPERATOR_ROUTER_SELECTORS, OPERATOR_ROUTER_SIGS, ORACLE_EVENT_SIGS, type OperatorAuthorityResponse, type OperatorCapabilitiesResponse, type OperatorFeeChargedEvent, type OperatorFeeConfig, type OperatorFeeQuote, type OperatorInfoResponse, type OperatorNetworkMetadata, type OperatorNetworkMetadataView, type OperatorOnboardingPreview, type OperatorRiskResponse, type OperatorRouterConfig, type OperatorSigningActivityResponse, type OperatorSigningEntry, type OperatorSurfaceCapability, type OperatorSurfaceStatus, OperatorTrustError, type OperatorTrustReason, type OracleEvent, OracleEventError, type OracleFeedConfig, type OracleLatestPrice, type OracleSignerRow, type OracleSignersResponse, type OracleWriters, type P2pSeed, PENDING_CHANGE_KIND_CODES, PRECOMPILE_ADDRESSES, PROOF_KIND_BINARY, PROTOCOL_MAX_OPERATOR_FEE_BPS, PROVER_MARKET_ADDRESS, PROVER_MARKET_BID_DOMAIN, PROVER_MARKET_EVENT_SIGS, PROVER_MARKET_REQUEST_DOMAIN, PROVER_MARKET_SELECTORS, PROVER_MARKET_SUBMIT_DOMAIN, PROVER_SLASH_REASON_BAD_PROOF, PROVER_SLASH_REASON_NON_DELIVERY, PUBKEY_REGISTRY_ML_DSA_65_PUBLIC_KEY_LEN, PUBKEY_REGISTRY_SELECTORS, type ParsedName, type PeerSummary, type PeerSummaryAggregate, type PendingChangeKind, type PendingCharterView, type PendingRewardsResponse, type PendingRewardsRow, type PendingTxSummary, type PlaceLimitOrderViaArgs, type PlaceLimitOrderViaPlan, type PlaceSpotLimitOrderArgs, type PlaceSpotMarketOrderArgs, type PlaceSpotMarketOrderExArgs, type PrecompileAddress, type PrecompileCatalogueResponse, type PrecompileDescriptor, type PrecompileName, type ProofEnvelope, type ProofRequestRow, type ProofRequestView, ProofVerifier, ProofVerifyError, type ProofVerifyErrorCode, type ProverBidView, type ProverBidsResponse, ProverMarketError, type ProverMarketState, type ProverMarketStatusResponse, type PubkeyLookup, PubkeyRegistryError, QUARANTINED_RPC_CODE, type Quantity, type QuoteLiquidity, REGISTRY_DEFAULT_EXECUTION_UNIT_LIMIT, RESERVED_ADDRESS_HRPS, type RankedBridgeRoute, type ReceiptProofTrustArchivePolicy, type ReceiptProofTrustArchiveSigner, type ReceiptProofTrustFinalityPolicy, type ReceiptProofTrustFinalitySigner, type ReceiptProofTrustPolicy, type RedemptionQueueResponse, type RedemptionQueueTicket, type RegistryRecord, type ReportServiceProbeCalldataArgs, type ReportServiceProbeRequest, type ReportServiceProbeResponse, type RequestClusterJoinCalldataArgs, type ResolveNameResponse, type ResolvedExecutionFee, type RichListHolder, type RichListResponse, type RoundCertificateResponse, type RoundInfo, RpcClient, type RpcClientOptions, type RpcEndpoint, type RuntimeBuildProvenance, type RuntimeProvenanceResponse, type RuntimeUpgradeStatus, SERVES_GPU_PROVE, SERVICE_PROBE_STATUS, SET_POLICY_CLAIM_DOMAIN_TAG, SPENDING_POLICY_SELECTORS, SdkError, type SearchHit, type SearchResponse, type ServiceProbeResponse, type ServiceProbeStatusLabel, type SetOperatorDisplayCalldataArgs, type SigningEntryStatus, type SpendingPolicyArgs, SpendingPolicyError, type SpendingPolicyTimeWindow, type SpendingPolicyView, type SpotLimitOrderSide, type SpotMarketOrderMode, type StorageProofBatch, type StudioHostState, type StudioHostStatus, type SubmitPendingChangeCalldataArgs, type SubmitRequestClusterJoinArgs, type SubmitVoteClusterAdmitArgs, type SwapIntentStatus, type SyncStatus, TESTNET_69420, TOKEN_FACTORY_CREATE_DEPOSIT_LYTHOSHI, TOKEN_FACTORY_FLAGS, TOKEN_FACTORY_KNOWN_FLAG_MASK, TOKEN_FACTORY_MAX_CREATOR_FEE_BPS, TOKEN_FACTORY_MAX_DECIMALS, TOKEN_FACTORY_NAME_MAX_BYTES, TOKEN_FACTORY_SELECTORS, TOKEN_FACTORY_SIGS, TOKEN_FACTORY_SYMBOL_MAX_BYTES, TOKEN_FACTORY_TOKEN_ID_DOMAIN_TAG, TRANSFER_DEFAULT_EXECUTION_UNIT_LIMIT, TX_EXTENSION_KIND_MULTISIG, TX_EXTENSION_MULTISIG_V1, type TokenBalanceMrcIdentity, type TokenBalanceRecord, type TokenBalanceWithMetadata, type TokenFactoryAddressInput, type TokenFactoryBytes32Input, TokenFactoryError, type TokenFactoryUintInput, type TotalBurnedResponse, type TpmAttestationResponse, type TransactionFeeExposure, type TransactionReceipt, type TransactionView, type TxConfirmations, type TxFeedReceipt, type TxFeedResponse, type TxFeedTransaction, type TxStatusFoundResponse, type TxStatusNotFoundResponse, type TxStatusResponse, type TypedAddress, type TypedNativeReceiptEvent, type UpcomingDutiesResponse, type UpcomingDutyMap, type UpdateCharterCalldataArgs, type UserAddressInput, V1_BRIDGE_ALLOWED_FEE_TOKEN, V1_BRIDGE_ALLOWED_PROTOCOL, VRF_DOMAIN_TAG_MAX_BYTES, VRF_HEIGHT_NOT_FINALIZED_REVERT, VRF_OUTPUT_BYTES, type VertexAtRound, type VerticesAtRoundResponse, type VoteClusterAdmitCalldataArgs, VrfCallError, type VrfDomainTagInput, addressBytesToHex, addressToBech32, addressToTypedBech32, allowRootFor, apiEndpointFromRpcEndpoint, archiveMerkleInnerHash, archiveMerkleLeafHash, asBinaryProofEnvelope, assembleMultisigSigned, assembleMultisigWitness, assertMrvCallNativeSubmissionPlan, assertMrvDeployNativeSubmissionPlan, assertMrvFeeDisplayConformance, assertMrvStructuredFeeConformance, assertNativeDevMrcTokenPlan, assertNativeDevMrvDeployPlan, assertNativeDevWalletApprovalRequest, assertNativeMarketOrderBookStreamPayload, assessBridgeRoute, bech32ToAddress, bech32ToAddressBytes, bidSighash, bridgeAddressHex, bridgeDrainRemaining, bridgeQuoteSubmitReadiness, bridgeRoutesReadiness, bridgeTransferCandidates, buildBridgeRouteCatalogue, buildCancelSpotOrderPlan, buildMrvCallNativeTxPlan, buildMrvCallPlan, buildMrvCallRequest, buildMrvDeployNativeTxPlan, buildMrvDeployPayloadNativeTxPlan, buildMrvDeployPayloadPlan, buildMrvDeployPayloadRequest, buildMrvDeployPlan, buildMrvDeployRequest, buildNativeAgentCreateEscrowForwarderInput, buildNativeAgentCreateEscrowModuleCall, buildNativeAgentModuleCallEnvelope, buildNativeAgentRecordReputationForwarderInput, buildNativeAgentRecordReputationModuleCall, buildNativeAgentSetSpendingPolicyForwarderInput, buildNativeAgentSetSpendingPolicyModuleCall, buildNativeCallForwarderArtifact, buildNativeMarketModuleCallEnvelope, buildNativeNftBuyListingForwarderInput, buildNativeNftBuyListingModuleCall, buildNativeNftCancelListingForwarderInput, buildNativeNftCancelListingModuleCall, buildNativeNftCreateListingForwarderInput, buildNativeNftCreateListingModuleCall, buildNativeNftPlaceAuctionBidForwarderInput, buildNativeNftPlaceAuctionBidModuleCall, buildNativeNftSettleAuctionForwarderInput, buildNativeNftSettleAuctionModuleCall, buildNativeNftSweepExpiredListingsForwarderInput, buildNativeNftSweepExpiredListingsModuleCall, buildNativeSpotCancelOrderForwarderInput, buildNativeSpotCancelOrderModuleCall, buildNativeSpotCreateMarketForwarderInput, buildNativeSpotCreateMarketModuleCall, buildNativeSpotLimitOrderForwarderInput, buildNativeSpotLimitOrderModuleCall, buildNativeSpotSettleLimitOrderForwarderInput, buildNativeSpotSettleLimitOrderModuleCall, buildNativeSpotSettleRoutedLimitOrderForwarderInput, buildNativeSpotSettleRoutedLimitOrderModuleCall, buildPlaceLimitOrderViaPlan, buildPlaceSpotLimitOrderPlan, buildPlaceSpotMarketOrderExPlan, buildPlaceSpotMarketOrderPlan, buildRequestClusterJoinTxFields, buildVoteClusterAdmitTxFields, categoryRoot, checkMrvFeeDisplayConformance, checkMrvStructuredFeeConformance, checkNativeDevkitCompatibility, clampPriorityTip, clobAddressHex, clusterApyPercent, clusterJoinRequestExists, compareNativeDevVersions, composeClaimBoundMessage, computeNoEvmDacFinalityMessage, computeNoEvmLeaderFinalityMessage, computeNoEvmReceiptsRoot, computeNoEvmRoundFinalityMessage, computeNoEvmTargetReceiptHash, computeQuoteLiquidity, consumeNativeEvents, decodeActiveCharter, decodeClusterCharter, decodeClusterDiversity, decodeClusterFormedEvent, decodeClusterJoinRequest, decodeHasPubkeyReturn, decodeLookupPubkeyReturn, decodeNativeAgentStateResponse, decodeNativeMarketOrderBookDeltasResponse, decodeNativeReceiptResponse, decodeNoEvmReceiptTranscript, decodeOperatorFeeChargedEvent, decodeOperatorNetworkMetadata, decodeOracleEvent, decodePendingCharter, decodeProbeAuthority, decodeScoreServiceProbe, decodeTimeWindow, decodeTokenFactoryTokenId, decodeTxFeedResponse, decodeVrfOutput, delegationAddressHex, denyRootFor, deriveArchiveChallenge, deriveClobMarketId, deriveClusterAnchorAddress, deriveClusterJoinOperatorId, deriveFeedId, deriveMrvContractAddress, deriveMultisigAddress, deriveMultisigAddressBytes, deriveNativeSpotMarketId, deriveNativeSpotOrderId, deriveTokenFactoryTokenId, destinationRoot, encodeAnswerArchiveChallengeCalldata, encodeAttestDkgReshareCalldata, encodeAttestServiceProbeCalldata, encodeBlockSelector, encodeBridgeChallengeCalldata, encodeBridgeClaimCalldata, encodeCancelClusterJoinCalldata, encodeCancelOrderCalldata, encodeCancelPendingChangeCalldata, encodeClaimCalldata, encodeClaimPolicyByAddressCalldata, encodeClusterCharter, encodeCommitArchiveRootCalldata, encodeCreateFixedSupplyMrc20Calldata, encodeCreateRequestCalldata, encodeCreateRequestCanonical, encodeCreateTokenCalldata, encodeDelegateCalldata, encodeDisableCalldata, encodeEnableCalldata, encodeExpireClusterJoinCalldata, encodeFormClusterCalldata, encodeFormClusterV2Calldata, encodeGetClusterJoinRequestCalldata, encodeGetPendingCharterCalldata, encodeGetProbeAuthorityCalldata, encodeHasPubkeyCalldata, encodeLockBridgeConfigCalldata, encodeLookupPubkeyCalldata, encodeMrvDeployPayload, encodeMultisigWitnessBody, encodeNameAcceptTransferCall, encodeNameProposeTransferCall, encodeNameRegisterCall, encodeNativeAgentAcceptEscrowCall, encodeNativeAgentApproveEscrowCall, encodeNativeAgentArbiterGetCall, encodeNativeAgentAttestationGetCall, encodeNativeAgentAvailabilityGetCall, encodeNativeAgentCancelEscrowCall, encodeNativeAgentCloseAvailabilityCall, encodeNativeAgentConsentGetCall, encodeNativeAgentCounterEscrowCall, encodeNativeAgentCreateEscrowCall, encodeNativeAgentDeactivateServiceCall, encodeNativeAgentDisputeEscrowCall, encodeNativeAgentEscrowGetCall, encodeNativeAgentGrantConsentCall, encodeNativeAgentIssueAttestationCall, encodeNativeAgentIssuerGetCall, encodeNativeAgentListServiceCall, encodeNativeAgentModuleForwarderInput, encodeNativeAgentOpenAvailabilityCall, encodeNativeAgentRecordPolicySpendCall, encodeNativeAgentRecordReputationCall, encodeNativeAgentRegisterArbiterCall, encodeNativeAgentRegisterIssuerCall, encodeNativeAgentReputationGetCall, encodeNativeAgentResolveEscrowCall, encodeNativeAgentRevokeAttestationCall, encodeNativeAgentRevokeConsentCall, encodeNativeAgentServiceGetCall, encodeNativeAgentSetAvailabilityCall, encodeNativeAgentSetSpendingPolicyCall, encodeNativeAgentSpendingPolicyGetCall, encodeNativeAgentStartEscrowCall, encodeNativeAgentSubmitEscrowCall, encodeNativeMarketModuleForwarderInput, encodeNativeNftBuyListingCall, encodeNativeNftCancelListingCall, encodeNativeNftCreateListingCall, encodeNativeNftPlaceAuctionBidCall, encodeNativeNftSettleAuctionCall, encodeNativeNftSweepExpiredListingsCall, encodeNativeSpotCancelOrderCall, encodeNativeSpotCreateMarketCall, encodeNativeSpotLimitOrderCall, encodeNativeSpotSettleLimitOrderCall, encodeNativeSpotSettleRoutedLimitOrderCall, encodePlaceLimitOrderCalldata, encodePlaceLimitOrderViaCalldata, encodePlaceMarketOrderCalldata, encodePlaceMarketOrderExCalldata, encodeRecoverOperatorNodeCalldata, encodeRedelegateCalldata, encodeRegisterPubkeyCalldata, encodeReportServiceProbeCalldata, encodeRequestClusterJoinCalldata, encodeSetAutoCompoundCalldata, encodeSetBridgeResumeCooldownCalldata, encodeSetBridgeRouteFinalityCalldata, encodeSetLotSizeCalldata, encodeSetMinNotionalCalldata, encodeSetOperatorDisplayCalldata, encodeSetPolicyCalldata, encodeSetPolicyClaimCalldata, encodeSetProbeAuthorityCalldata, encodeSetTickSizeCalldata, encodeSubmitBridgeProofCalldata, encodeSubmitPendingChangeCalldata, encodeTokenFactoryAllowanceCalldata, encodeTokenFactoryApproveCalldata, encodeTokenFactoryBalanceOfCalldata, encodeTokenFactoryBurnCalldata, encodeTokenFactoryDecreaseAllowanceCalldata, encodeTokenFactoryDestroyCalldata, encodeTokenFactoryIncreaseAllowanceCalldata, encodeTokenFactoryMetadataCalldata, encodeTokenFactoryMintCalldata, encodeTokenFactorySetPausedCalldata, encodeTokenFactoryTotalSupplyCalldata, encodeTokenFactoryTransferCalldata, encodeTokenFactoryTransferFromCalldata, encodeTokenFactoryTransferOwnershipCalldata, encodeUndelegateCalldata, encodeUpdateCharterCalldata, encodeVoteClusterAdmitCalldata, encodeVrfEvaluateCalldata, exportBridgeRouteCatalogueJson, fetchChainInfoLatest, fetchChainRegistryLatest, formClusterMessage, formClusterMessageHex, formClusterMessageV2, formClusterMessageV2Hex, formatLyth, formatLythoshi, formatNativeReceiptFeeDisplay, formatOraclePrice, getChainInfo, getNoEvmReceiptTrustPolicy, getP2pSeeds, getRpcEndpoints, hashToHex, hexToAddressBytes, isBridgeAdminLockedRevert, isBridgeCooldownZeroRevert, isBridgeFinalityZeroRevert, isBridgeResumeCooldownActiveRevert, isConcreteServiceProbeStatus, isNativeDecodedEvent, isNativeMarketOrderBookStreamPayload, isQuarantineError, isSinglePublicServiceProbeMask, isUnexpectedValueRevert, isValidNodeRegistryCapabilities, isValidPublicServiceProbeMask, mrvAddressToBech32, mrvBech32ToAddress, mrvCodeHashHex, mrvV1TransactionExtension, multisigBaseSighash, multisigMemberIndex, nameLengthModifierX10, nameRegistrationCost, nameRegistryAddressHex, nativeAgentStateFilterParams, nativeDevSchemaFieldNames, nativeDevUiStrings, nativeEventMatches, nativeEventsFilterParams, nativeEventsFromHistory, nativeEventsFromReceipt, nativeMarketEventFilter, nativeMarketEventsFromHistory, nativeMarketEventsFromReceipt, nativeMarketStateFilterParams, noEvmReceiptTrustPolicyFromChainInfo, nodeHostingClassFromByte, nodeHostingClassToByte, nodeRegistryAddressHex, normalizeAddressHex, normalizeBridgeRouteCatalogue, normalizePendingChangeKind, oracleAddressHex, oraclePriceToNumber, packTimeWindow, parseAddress, parseBridgeRouteCatalogueJson, parseChainRegistryToml, parseDkgResharePublicKeys, parseLythToLythoshi, parseNameCategory, parseNativeDecodedEvent, parseQuantity, parseQuantityBig, preflightClusterJoinRequest, previewRequestClusterJoin, previewVoteClusterAdmit, proofVerifier, protocolNonceForEpoch, proverMarketStateFromByte, pubkeyRegistryAddressHex, quoteOperatorFee, rankBridgeRoutes, rankMarketsByVolume, readClusterJoinRequest, requestSighash, requireTypedAddress, resolveClusterJoinExecutionFee, resolveExecutionFee, resolveMaxExecutionUnitPrice, resolveRegistryExecutionFee, resolveStudioHostStatus, selectBridgeTransferRoute, selectTrustedOperator, selectTrustedOperatorForNetwork, serviceMaskToBitIndex, serviceProbeStatusLabel, setDestinationRoot, slotArchiveChallengePass, slotClusterCharter, slotClusterCharterDelegator, slotClusterCharterMembers, slotClusterServiceScore, slotEpochChallengeSeed, slotProbeAuthority, slotScoreServiceProbe, sortMultisigMembers, spendingPolicyAddressHex, submitMrvCallNativeTx, submitMrvDeployNativeTx, submitMrvDeployPayloadNativeTx, submitRequestClusterJoin, submitSighash, submitVoteClusterAdmit, tokenFactoryAddressHex, transactionFeeExposure, typedBech32ToAddress, updateCharterMessage, updateCharterMessageHex, validateAddress, validateBridgeRouteCatalogue, validateMrvArtifactMetadata, validateMrvCallRequest, validateMrvDeployRequest, validateMultisigRoster, validateTokenFactoryFlags, verifyNoEvmArchiveProofSignatures, verifyNoEvmBlockFinalityEvidenceMultisig, verifyNoEvmBlockFinalityEvidenceThreshold, verifyNoEvmFinalityEvidenceMultisig, verifyNoEvmFinalityEvidenceThreshold, verifyNoEvmReceiptProof, verifyNoEvmReceiptProofTrust, verifyOperatorGenesis, version, vrfAddressHex };
|
|
9482
|
+
export { ADDRESS_HRP, ADDRESS_KIND_HRPS, API_STREAM_TOPICS, type AccountPolicy, type AccountProofResponse, type ActiveCharterView, type Address, type AddressActivityArchiveRedirect, type AddressActivityEntry, type AddressActivityEntryEnriched, type AddressActivityKind, type AddressActivityKindResponse, type AddressActivityKindRetention, AddressError, type AddressFlowResponse, type AddressKind, type AddressLabelRecord, type AddressProfileResponse, type AddressValidation, type AdvertiseSeatCalldataArgs, AgentActionError, type AgentReputationCategoryScope, type AgentReputationRecord, type AgentReputationResponse, type AnswerArchiveChallengeCalldataArgs, type ApiAddressActivityData, type ApiAddressActivityEntry, type ApiAddressActivityKind, type ApiAddressActivityKindData, type ApiAddressActivityKindSummary, type ApiBlockData, type ApiBlockHeader, type ApiBlockTransactionsData, type ApiCapabilitiesResponse, ApiClient, type ApiClientOptions, type ApiClusterData, type ApiClusterDirectoryEntry, type ApiClusterDirectoryPage, type ApiClusterMember, type ApiClusterStatus, type ApiClustersData, type ApiEnvelope, type ApiErrorEnvelope, type ApiHealthResponse, type ApiIndexerStatus, type ApiLatestAnchor, type ApiLogEntry, type ApiOperatorData, type ApiOperatorInfo, type ApiQueryValue, type ApiRuntimeProvenanceData, type ApiServiceProbeData, type ApiStreamTopic, type ApiStreamTopicMetadata, type ApiStreamTopicRetention, type ApiStreamsIndexResponse, type ApiTransactionData, type ApiTransactionNativeReceiptData, type ApiTransactionReceipt, type ApiTransactionReceiptData, type ApiTransactionView, type ApiUpgradePlanStatus, type ApiUpgradeStatus, type ApiUpgradeStatusData, type ApplyForSeatCalldataArgs, type ArchiveChallenge, type AssetPolicy, type AttestDkgReshareCalldataArgs, type AttestServiceProbeCalldataArgs, type AttestationWindow, BRIDGE_QUOTE_API_BLOCKED_REASON, BRIDGE_REVERT_TAGS, BRIDGE_SELECTORS, BRIDGE_SUBMIT_API_BLOCKED_REASON, BURN_ADDR, type BinaryProofEndpoint, type BlockHeader, type BlockSelector, type BlockTag, type BlsCertificateResponse, type BridgeAdminControl, type BridgeAnchorState, type BridgeBreakerState, type BridgeBytesInput, type BridgeCircuitBreakerFields, type BridgeCircuitBreakerState, type BridgeDrainCap, type BridgeDrainStatus, type BridgeHealthRecord, type BridgeHealthResponse, BridgePrecompileError, type BridgeQuoteSubmitReadiness, type BridgeRiskTier, type BridgeRouteAssessment, type BridgeRouteCandidate, type BridgeRouteCatalogue, BridgeRouteCatalogueError, type BridgeRouteCatalogueJsonOptions, type BridgeRouteCataloguePayload, type BridgeRouteCatalogueRoute, type BridgeRouteCatalogueValidation, type BridgeRouteDisclosure, type BridgeRouteSelection, type BridgeRoutesRequest, type BridgeRoutesResponse, type BridgeRoutesSource, type BridgeTransferIntent, type BridgeTransferRequest, type BridgeVerifierDisclosure, type BuildAdvertiseSeatTxFieldsArgs, type BuildApplyForSeatTxFieldsArgs, type BuildCloseSeatTxFieldsArgs, type BuildRequestClusterJoinTxFieldsArgs, type BuildVoteClusterAdmitTxFieldsArgs, type BuildVoteSeatAdmitTxFieldsArgs, type BuildWithdrawSeatApplicationTxFieldsArgs, CHAIN_REGISTRY, CHAIN_REGISTRY_RAW_BASE, CLOB_MARKET_ID_DOMAIN_TAG, CLOB_SELECTORS, CLUSTER_FORMED_EVENT_SIG, type CallRequest, type CancelClusterJoinCalldataArgs, type CancelPendingChangeCalldataArgs, type CancelSpotOrderArgs, type CapabilitiesResponse, type CapabilityDescriptor, type ChainInfo, type ChainRegistry, type ChainStatsResponse, type CheckpointRecord, type CirculatingSupplyResponse, type ClobMarketAssets, type ClobMarketRecord, type ClobMarketResponse, type ClobMarketSummary, type ClobMarketsResponse, type ClobOhlcResponse, type ClobOrderBookResponse, type ClobTrade, type ClobTradesResponse, type CloseSeatCalldataArgs, type ClusterAprResponse, type ClusterCharterArgs, type ClusterDelegatorsResponse, type ClusterDirectoryEntryResponse, type ClusterDirectoryPageResponse, type ClusterDiversity, type ClusterDiversityView, type ClusterEntityResponse, type ClusterFormedEvent, type ClusterJoinFeeOptions, type ClusterJoinReadClient, type ClusterJoinRequestStatus, type ClusterJoinRequestView, type ClusterJoinSubmitClient, type ClusterJoinSubmitResult, type ClusterJoinTxFee, type ClusterMemberResponse, type ClusterNameResponse, type ClusterResignationRow, type ClusterResignationsResponse, type ClusterStatusResponse, type CommitArchiveRootCalldataArgs, type CreateFixedSupplyMrc20CalldataArgs, type CreateRequestCanonicalArgs, type CreateTokenCalldataArgs, DEFAULT_CLUSTER_JOIN_EXECUTION_UNIT_LIMIT, DEFAULT_SEAT_EXECUTION_UNIT_LIMIT, DELEGATION_REVERT_TAGS, DELEGATION_SELECTORS, DIVERSITY_SCORE_MAX, type DagParent, type DagParentsResponse, type DagSyncStatus, type DecodeTxExtension, type DecodeTxLog, type DecodeTxPqAttestation, type DecodeTxResponse, type DelegationCapResponse, type DelegationHistoryRecord, DelegationPrecompileError, type DelegationRow, type DelegationsResponse, type DutyAbsence, EMPTY_ROOT, EXECUTION_UNIT_PRICE_SAFETY_MULTIPLIER, type EncodeNativeAgentAvailabilitySlotArgs, type EncodeNativeAgentCounterEscrowArgs, type EncodeNativeAgentCreateEscrowArgs, type EncodeNativeAgentDeactivateServiceArgs, type EncodeNativeAgentEscrowActorArgs, type EncodeNativeAgentGrantConsentArgs, type EncodeNativeAgentIssueAttestationArgs, type EncodeNativeAgentListServiceArgs, type EncodeNativeAgentRecordPolicySpendArgs, type EncodeNativeAgentRecordReputationArgs, type EncodeNativeAgentRegisterArbiterArgs, type EncodeNativeAgentRegisterIssuerArgs, type EncodeNativeAgentResolveEscrowArgs, type EncodeNativeAgentRevokeAttestationArgs, type EncodeNativeAgentRevokeConsentArgs, type EncodeNativeAgentSetAvailabilityArgs, type EncodeNativeAgentSetSpendingPolicyArgs, type EncodeNativeAgentStartEscrowArgs, type EncodeNativeAgentSubmitEscrowArgs, type EncodeNativeNftBuyListingArgs, type EncodeNativeNftCancelListingArgs, type EncodeNativeNftCreateListingArgs, type EncodeNativeNftPlaceAuctionBidArgs, type EncodeNativeNftSettleAuctionArgs, type EncodeNativeNftSweepExpiredListingsArgs, type EncodeNativeSpotCancelOrderArgs, type EncodeNativeSpotCreateMarketArgs, type EncodeNativeSpotLimitOrderArgs, type EncodeNativeSpotSettleLimitOrderArgs, type EncodeNativeSpotSettleRoutedLimitOrderArgs, type EntityRatchetResponse, type EthCallRequest, type EthSendTransactionRequest, type ExecutionUnitPriceResponse, type ExpireClusterJoinCalldataArgs, type ExplorerEndpoint, FEED_ID_DOMAIN_TAG, type FeeHistoryResponse, type FormClusterCalldataArgs, type FormClusterV2CalldataArgs, type GapRange, type GapRecord, type GapRecordsResponse, type GenesisVerdict, type GetClusterJoinRequestCalldataArgs, type Hash, type HealthSummary, type Hex, type IndexerStatus, type JailStatusWindow, type KeyRotationWindow, LYTHOSHI_PER_LYTH, LYTH_DECIMALS, type LatencyBands, type ListProofRequestsResponse, type LythFormatOptions, type LythUpgradePlanStatus, type LythUpgradeStatusResponse, MAX_MULTISIG_MEMBERS, MAX_NATIVE_CALL_FORWARDER_REQUEST_BYTES, MAX_NATIVE_RECEIPT_EVENTS, MIN_EXECUTION_UNIT_PRICE_LYTHOSHI, MIN_MULTISIG_MEMBERS, ML_DSA_65_PUBLIC_KEY_LEN, ML_DSA_65_SIGNATURE_LEN, MONOLYTHIUM_NETWORKS, MONOLYTHIUM_TESTNET_CHAIN_ID, MONOLYTHIUM_TESTNET_NETWORK_NAME, MRV_DEPLOY_PAYLOAD_VERSION, MRV_FORMAT_VERSION, MRV_MAX_ABI_SYMBOLS, MRV_MAX_CODE_BYTES, MRV_MAX_DEBUG_BYTES, MRV_MAX_MEMORY_PAGES, MRV_MAX_STORAGE_NAMESPACE_BYTES, MRV_MEMORY_PAGE_BYTES, MRV_PROFILE_MONO_RV32IM_V1, MRV_STRUCTURED_FEE_FIELDS, MRV_TX_EXTENSION_KIND, MRV_TX_EXTENSION_V1, MULTISIG_ADDRESS_DERIVATION_DOMAIN$1 as MULTISIG_ADDRESS_DERIVATION_DOMAIN, MULTISIG_ADDRESS_DERIVATION_DOMAIN as MULTISIG_WITNESS_ADDRESS_DERIVATION_DOMAIN, MULTISIG_WITNESS_DOMAIN, MarketActionError, type MarketTransactionPlan, type MemberPubkeyInput, type MempoolSnapshot, type MeshDecodedTx, type MeshSignedTxResponse, type MeshTxIntent, type MeshUnsignedTxResponse, type MetricsRangeResponse, type MetricsRangeSample, type MetricsRangeSeries, type MetricsRangeStatus, type MonolythiumNetworkConfig, type MrcAccountRecord, type MrcAccountRequest, type MrcAccountResponse, type MrcHoldersRequest, type MrcHoldersResponse, type MrcMetadataRecord, type MrcMetadataResponse, type MrcPolicyRecord, type MrcPolicySpendRecord, type MrvAbiManifest, type MrvAbiParam, type MrvAbiSymbol, type MrvAbiSymbolKind, type MrvAbiType, type MrvAddressKind, type MrvArtifactMetadata, type MrvBuildMetadata, type MrvBytesLike, type MrvCallNativeTxOptions, type MrvCallNativeTxPlan, type MrvCallPlan, type MrvCallRequest, type MrvCallResponse, type MrvCallStatus, type MrvCallSubmission, type MrvCallSubmitOptions, type MrvDecimalLike, type MrvDeployNativeTxOptions, type MrvDeployNativeTxPlan, type MrvDeployPayload, type MrvDeployPayloadNativeTxOptions, type MrvDeployPayloadPlanOptions, type MrvDeployPayloadRequestOptions, type MrvDeployPayloadSubmission, type MrvDeployPayloadSubmitOptions, type MrvDeployPlan, type MrvDeployPlanOptions, type MrvDeployRequest, type MrvDeployResponse, type MrvDeploySubmission, type MrvDeploySubmitOptions, type MrvEventRecord, type MrvExecutionReceipt, type MrvFeeDisplayConformanceInput, type MrvFeeDisplayConformanceReport, type MrvMemoryLimits, type MrvMeterCounters, type MrvNativeFeePreview, type MrvNativeStateDelta, type MrvNativeTxFacade, type MrvRequestBuildOptions, type MrvResolvedSyscall, type MrvRevertPayload, type MrvRiscvProfile, type MrvStorageNamespace, type MrvStructuredFeeConformanceOptions, type MrvStructuredFeeConformanceReport, type MrvSubmissionResult, type MrvSyscallImport, type MrvTransactionExtension, type MrvTypedAddress, type MrvValidatedArtifactMetadata, MrvValidationError, MultisigError, type MultisigMember, type MultisigMemberSignature, type MultisigWitness, NAME_BASE_MULTIPLIER, NAME_FALLBACK_FEE_UNIT_LYTHOSHI, NAME_LABEL_MAX_LEN, NAME_LABEL_MIN_LEN, NAME_MAX_LEN, NAME_REGISTRY_SELECTORS, NATIVE_AGENT_MODULE_ADDRESS, NATIVE_AGENT_MODULE_ADDRESS_BYTES, NATIVE_CALL_FORWARDER_ARTIFACT_PROFILE, NATIVE_CALL_FORWARDER_RESPONSE_CAPACITY, NATIVE_CALL_FORWARDER_RESPONSE_OFFSET, NATIVE_DEV_HOST_API_VERSION, NATIVE_DEV_IPC_PROTOCOL_VERSION, NATIVE_DEV_MANIFEST_SCHEMA_VERSION, NATIVE_LYTH_DECIMALS, NATIVE_MARKET_EVENT_FAMILY, NATIVE_MARKET_MODULE_ADDRESS, NATIVE_MARKET_MODULE_ADDRESS_BYTES, NATIVE_MARKET_ORDER_BOOK_STREAM_TOPIC, NODE_REGISTRY_ARCHIVE_CHALLENGE_DOMAIN, NODE_REGISTRY_ARCHIVE_KIND_EPOCH_SEED, NODE_REGISTRY_ARCHIVE_NONCE_DOMAIN, NODE_REGISTRY_BLS_PUBKEY_BYTES, NODE_REGISTRY_CAPABILITIES, NODE_REGISTRY_CAPABILITY_MASK, NODE_REGISTRY_CHALLENGE_EPOCH_WINDOW, NODE_REGISTRY_CHARTER_COOLDOWN_EPOCHS, NODE_REGISTRY_CLUSTER_CHARTER_BYTES, NODE_REGISTRY_CLUSTER_CHARTER_DELEGATOR_FLOOR_BPS, NODE_REGISTRY_CLUSTER_CHARTER_SHARE_DENOM_BPS, NODE_REGISTRY_CLUSTER_MEMBER_REF_BYTES, NODE_REGISTRY_CONSENSUS_POP_BYTES, NODE_REGISTRY_CONSENSUS_PUBKEY_BYTES, NODE_REGISTRY_CONSENSUS_SIGNATURE_BYTES, NODE_REGISTRY_DKG_ATTESTATION_SIG_BYTES, NODE_REGISTRY_DKG_RESHARE_MAX_SIGNERS, NODE_REGISTRY_DKG_RESHARE_MIN_SIGNERS, NODE_REGISTRY_DKG_THRESHOLD_SIG_BYTES, NODE_REGISTRY_FORM_CLUSTER_ACTIVE_COUNT, NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN, NODE_REGISTRY_FORM_CLUSTER_MESSAGE_DOMAIN_V2, NODE_REGISTRY_FORM_CLUSTER_STANDBY_COUNT, NODE_REGISTRY_FORM_CLUSTER_THRESHOLD, NODE_REGISTRY_LEGACY_CLUSTER_MEMBER_PUBKEY_BYTES, NODE_REGISTRY_MAX_MERKLE_PROOF_DEPTH, NODE_REGISTRY_MERKLE_INNER_DOMAIN, NODE_REGISTRY_MERKLE_LEAF_DOMAIN, NODE_REGISTRY_MIN_ARCHIVE_LEAF_COUNT, NODE_REGISTRY_MIN_SELF_BOND_LYTHOSHI, NODE_REGISTRY_OPERATOR_ALIAS_MAX_BYTES, NODE_REGISTRY_OPERATOR_MONIKER_MAX_BYTES, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID, NODE_REGISTRY_PUBLIC_SERVICE_MASK, NODE_REGISTRY_SEAT_KIND_ACTIVE, NODE_REGISTRY_SEAT_KIND_STANDBY, NODE_REGISTRY_SELECTORS, NODE_REGISTRY_SUBKIND_CHARTER_DELEGATOR_BPS, NODE_REGISTRY_SUBKIND_CHARTER_MEMBER_SHARES, NODE_REGISTRY_TAG_ARCHIVE_CHALLENGE, NODE_REGISTRY_TAG_CLUSTER_CHARTER, NODE_REGISTRY_TAG_CLUSTER_SEAT, NODE_REGISTRY_TAG_SERVICE_SCORE, NODE_REGISTRY_TAG_TREASURY, NODE_REGISTRY_UPDATE_CHARTER_MESSAGE_DOMAIN, NODE_REGISTRY_UPDATE_CHARTER_THRESHOLD, NO_EVM_ARCHIVE_PROOF_SCHEMA, NO_EVM_ARCHIVE_SIGNATURE_SCHEME, NO_EVM_FINALITY_EVIDENCE_SCHEMA, NO_EVM_FINALITY_EVIDENCE_SOURCE, NO_EVM_RECEIPTS_ROOT_DOMAIN, NO_EVM_RECEIPT_CODEC, NO_EVM_RECEIPT_PROOF_SCHEMA, NO_EVM_RECEIPT_PROOF_TYPE, NO_EVM_RECEIPT_ROOT_ALGORITHM, type NameCategory, type NameOfResponse, type NameRegistrationQuote, NameRegistryError, type NativeAgentAddressInput, type NativeAgentAddressKind, type NativeAgentArbiterStateRecord, type NativeAgentAttestationStateRecord, type NativeAgentAvailabilityStateRecord, type NativeAgentConsentStateRecord, type NativeAgentEscrowResolution, type NativeAgentEscrowStateRecord, type NativeAgentForwarderInput, type NativeAgentIssuerStateRecord, type NativeAgentModuleCallEnvelope, type NativeAgentModuleContractCall, type NativeAgentPolicySpendStateRecord, type NativeAgentPolicyStateRecord, type NativeAgentReputationReviewStateRecord, type NativeAgentReputationScores, type NativeAgentServiceStateRecord, type NativeAgentStateFilter, type NativeAgentStateFilterParamValue, type NativeAgentStateResponse, type NativeAgentStateResponseFilters, type NativeAgentStateSource, type NativeCallForwarderArtifact, type NativeCollectionRoyaltyStateRecord, type NativeDecodedEvent, type NativeDevApprovalKind, type NativeDevCommandName, type NativeDevContractPassport, type NativeDevHostApprovalResultMessage, type NativeDevHostCommandMessage, type NativeDevHostContextMessage, type NativeDevIpcMessage, type NativeDevMrcAllocation, type NativeDevMrcAssetKind, type NativeDevMrcTokenPlan, type NativeDevMrvDeployPlan, type NativeDevRiskLabel, type NativeDevRiskSeverity, type NativeDevSidecarApprovalRequestMessage, type NativeDevSidecarCommandResultMessage, type NativeDevSidecarProjectEventMessage, type NativeDevSidecarReadyMessage, type NativeDevVerificationBundle, type NativeDevWalletApprovalRequest, type NativeDevkitArchive, type NativeDevkitChannel, type NativeDevkitCompatibility, type NativeDevkitManifest, type NativeDevkitSidecarManifest, type NativeDevkitSidecarStatus, type NativeDevkitStatus, type NativeEventConsumer, type NativeEventFilter, type NativeEventProjection, type NativeEventsFilter, type NativeEventsResponse, type NativeEventsResponseFilters, type NativeEventsSource, type NativeMarketAddressInput, type NativeMarketAddressKind, type NativeMarketForwarderInput, type NativeMarketModuleCallEnvelope, type NativeMarketModuleContractCall, type NativeMarketOrderBookDelta, type NativeMarketOrderBookDeltasRequest, type NativeMarketOrderBookDeltasResponse, type NativeMarketOrderBookDeltasResponseFilters, type NativeMarketOrderBookDeltasSource, type NativeMarketOrderBookStreamAction, type NativeMarketOrderBookStreamPayload, type NativeMarketStateFilter, type NativeMarketStateFilterParamValue, type NativeMarketStateResponse, type NativeMarketStateResponseFilters, type NativeMarketStateSource, type NativeModuleForwarderDescriptor, type NativeMrcPolicyProjection, type NativeNftAssetStandard, type NativeNftListingKind, type NativeNftListingStateRecord, type NativeReceiptCounters, type NativeReceiptEvent, type NativeReceiptFee, type NativeReceiptFeeDisplay, type NativeReceiptResponse, type NativeReceiptSource, type NativeSpotMarketStateRecord, type NativeSpotOrderStateRecord, type NetworkClientOptions, type NetworkSlug, type NoEvmArchiveCoveringSnapshot, type NoEvmArchiveProof, type NoEvmArchiveSignatureVerification, type NoEvmArchiveSignatureVerificationIssue, type NoEvmArchiveSignatureVerificationIssueCode, type NoEvmArchiveTrustedSigner, type NoEvmBlockBlsFinalityVerification, type NoEvmBlockRoundFinalityVerification, type NoEvmBlsFinalityVerification, type NoEvmFinalityBlockReference, type NoEvmFinalityCertificate, type NoEvmFinalityEvidence, type NoEvmReceiptFinalityTrustPolicy, type NoEvmReceiptProof, NoEvmReceiptProofError, type NoEvmReceiptProofErrorCode, type NoEvmReceiptProofVerification, type NoEvmReceiptTrustIssue, type NoEvmReceiptTrustIssueCode, type NoEvmReceiptTrustPolicy, type NoEvmReceiptTrustVerification, type NoEvmReceiptTrustedBlsSigner, type NoEvmReceiptTrustedSigner, type NoEvmRoundFinalityVerification, type NodeHostingClass, NodeRegistryError, type NonInclusionProofEnvelope, OPERATOR_ROUTER_ADDRESS, OPERATOR_ROUTER_EVENT_SIGS, OPERATOR_ROUTER_SELECTORS, OPERATOR_ROUTER_SIGS, ORACLE_EVENT_SIGS, type OpenSeatView, type OperatorAuthorityResponse, type OperatorCapabilitiesResponse, type OperatorFeeChargedEvent, type OperatorFeeConfig, type OperatorFeeQuote, type OperatorInfoResponse, type OperatorNetworkMetadata, type OperatorNetworkMetadataView, type OperatorOnboardingPreview, type OperatorRiskResponse, type OperatorRouterConfig, type OperatorSigningActivityResponse, type OperatorSigningEntry, type OperatorSurfaceCapability, type OperatorSurfaceStatus, OperatorTrustError, type OperatorTrustReason, type OracleEvent, OracleEventError, type OracleFeedConfig, type OracleLatestPrice, type OracleSignerRow, type OracleSignersResponse, type OracleWriters, type P2pSeed, PENDING_CHANGE_KIND_CODES, PRECOMPILE_ADDRESSES, PROOF_KIND_BINARY, PROTOCOL_MAX_OPERATOR_FEE_BPS, PROVER_MARKET_ADDRESS, PROVER_MARKET_BID_DOMAIN, PROVER_MARKET_EVENT_SIGS, PROVER_MARKET_REQUEST_DOMAIN, PROVER_MARKET_SELECTORS, PROVER_MARKET_SUBMIT_DOMAIN, PROVER_SLASH_REASON_BAD_PROOF, PROVER_SLASH_REASON_NON_DELIVERY, PUBKEY_REGISTRY_ML_DSA_65_PUBLIC_KEY_LEN, PUBKEY_REGISTRY_SELECTORS, type ParsedName, type PeerSummary, type PeerSummaryAggregate, type PendingChangeKind, type PendingCharterView, type PendingRewardsResponse, type PendingRewardsRow, type PendingTxSummary, type PlaceLimitOrderViaArgs, type PlaceLimitOrderViaPlan, type PlaceSpotLimitOrderArgs, type PlaceSpotMarketOrderArgs, type PlaceSpotMarketOrderExArgs, type PrecompileAddress, type PrecompileCatalogueResponse, type PrecompileDescriptor, type PrecompileName, type ProofEnvelope, type ProofRequestRow, type ProofRequestView, ProofVerifier, ProofVerifyError, type ProofVerifyErrorCode, type ProverBidView, type ProverBidsResponse, ProverMarketError, type ProverMarketState, type ProverMarketStatusResponse, type PubkeyLookup, PubkeyRegistryError, QUARANTINED_RPC_CODE, type Quantity, type QuoteLiquidity, REGISTRY_DEFAULT_EXECUTION_UNIT_LIMIT, RESERVED_ADDRESS_HRPS, type RankedBridgeRoute, type ReceiptProofTrustArchivePolicy, type ReceiptProofTrustArchiveSigner, type ReceiptProofTrustFinalityPolicy, type ReceiptProofTrustFinalitySigner, type ReceiptProofTrustPolicy, type RedemptionQueueResponse, type RedemptionQueueTicket, type RegistryRecord, type ReportServiceProbeCalldataArgs, type ReportServiceProbeRequest, type ReportServiceProbeResponse, type RequestClusterJoinCalldataArgs, type ResolveNameResponse, type ResolvedExecutionFee, type RichListHolder, type RichListResponse, type RoundCertificateResponse, type RoundInfo, RpcClient, type RpcClientOptions, type RpcEndpoint, type RuntimeBuildProvenance, type RuntimeProvenanceResponse, type RuntimeUpgradeStatus, SEAT_ADVERTISED_EVENT_SIG, SEAT_APPLIED_EVENT_SIG, SEAT_CLOSED_EVENT_SIG, SEAT_FILLED_EVENT_SIG, SEAT_KINDS, SEAT_STATUS_CODES, SERVES_GPU_PROVE, SERVICE_PROBE_STATUS, SET_POLICY_CLAIM_DOMAIN_TAG, SPENDING_POLICY_SELECTORS, SdkError, type SearchHit, type SearchResponse, type SeatAdvertisedEvent, type SeatApplicationView, type SeatAppliedEvent, type SeatClosedEvent, type SeatFeeOptions, type SeatFilledEvent, type SeatKind, type SeatStatus, type SeatTxFee, type ServiceProbeResponse, type ServiceProbeStatusLabel, type SetOperatorDisplayCalldataArgs, type SigningEntryStatus, type SpendingPolicyArgs, SpendingPolicyError, type SpendingPolicyTimeWindow, type SpendingPolicyView, type SpotLimitOrderSide, type SpotMarketOrderMode, type StorageProofBatch, type StudioHostState, type StudioHostStatus, type SubmitPendingChangeCalldataArgs, type SubmitRequestClusterJoinArgs, type SubmitVoteClusterAdmitArgs, type SwapIntentStatus, type SyncStatus, TESTNET_69420, TOKEN_FACTORY_CREATE_DEPOSIT_LYTHOSHI, TOKEN_FACTORY_FLAGS, TOKEN_FACTORY_KNOWN_FLAG_MASK, TOKEN_FACTORY_MAX_CREATOR_FEE_BPS, TOKEN_FACTORY_MAX_DECIMALS, TOKEN_FACTORY_NAME_MAX_BYTES, TOKEN_FACTORY_SELECTORS, TOKEN_FACTORY_SIGS, TOKEN_FACTORY_SYMBOL_MAX_BYTES, TOKEN_FACTORY_TOKEN_ID_DOMAIN_TAG, TRANSFER_DEFAULT_EXECUTION_UNIT_LIMIT, TX_EXTENSION_KIND_MULTISIG, TX_EXTENSION_MULTISIG_V1, type TokenBalanceMrcIdentity, type TokenBalanceRecord, type TokenBalanceWithMetadata, type TokenFactoryAddressInput, type TokenFactoryBytes32Input, TokenFactoryError, type TokenFactoryUintInput, type TotalBurnedResponse, type TpmAttestationResponse, type TransactionFeeExposure, type TransactionReceipt, type TransactionView, type TxConfirmations, type TxFeedReceipt, type TxFeedResponse, type TxFeedTransaction, type TxStatusFoundResponse, type TxStatusNotFoundResponse, type TxStatusResponse, type TypedAddress, type TypedNativeReceiptEvent, type UpcomingDutiesResponse, type UpcomingDutyMap, type UpdateCharterCalldataArgs, type UserAddressInput, V1_BRIDGE_ALLOWED_FEE_TOKEN, V1_BRIDGE_ALLOWED_PROTOCOL, VRF_DOMAIN_TAG_MAX_BYTES, VRF_HEIGHT_NOT_FINALIZED_REVERT, VRF_OUTPUT_BYTES, type VertexAtRound, type VerticesAtRoundResponse, type VoteClusterAdmitCalldataArgs, type VoteSeatAdmitCalldataArgs, VrfCallError, type VrfDomainTagInput, type WithdrawSeatApplicationCalldataArgs, addressBytesToHex, addressToBech32, addressToTypedBech32, allowRootFor, apiEndpointFromRpcEndpoint, archiveMerkleInnerHash, archiveMerkleLeafHash, asBinaryProofEnvelope, assembleMultisigSigned, assembleMultisigWitness, assertMrvCallNativeSubmissionPlan, assertMrvDeployNativeSubmissionPlan, assertMrvFeeDisplayConformance, assertMrvStructuredFeeConformance, assertNativeDevMrcTokenPlan, assertNativeDevMrvDeployPlan, assertNativeDevWalletApprovalRequest, assertNativeMarketOrderBookStreamPayload, assessBridgeRoute, bech32ToAddress, bech32ToAddressBytes, bidSighash, bridgeAddressHex, bridgeDrainRemaining, bridgeQuoteSubmitReadiness, bridgeRoutesReadiness, bridgeTransferCandidates, buildAdvertiseSeatTxFields, buildApplyForSeatTxFields, buildBridgeRouteCatalogue, buildCancelSpotOrderPlan, buildCloseSeatTxFields, buildMrvCallNativeTxPlan, buildMrvCallPlan, buildMrvCallRequest, buildMrvDeployNativeTxPlan, buildMrvDeployPayloadNativeTxPlan, buildMrvDeployPayloadPlan, buildMrvDeployPayloadRequest, buildMrvDeployPlan, buildMrvDeployRequest, buildNativeAgentCreateEscrowForwarderInput, buildNativeAgentCreateEscrowModuleCall, buildNativeAgentModuleCallEnvelope, buildNativeAgentRecordReputationForwarderInput, buildNativeAgentRecordReputationModuleCall, buildNativeAgentSetSpendingPolicyForwarderInput, buildNativeAgentSetSpendingPolicyModuleCall, buildNativeCallForwarderArtifact, buildNativeMarketModuleCallEnvelope, buildNativeNftBuyListingForwarderInput, buildNativeNftBuyListingModuleCall, buildNativeNftCancelListingForwarderInput, buildNativeNftCancelListingModuleCall, buildNativeNftCreateListingForwarderInput, buildNativeNftCreateListingModuleCall, buildNativeNftPlaceAuctionBidForwarderInput, buildNativeNftPlaceAuctionBidModuleCall, buildNativeNftSettleAuctionForwarderInput, buildNativeNftSettleAuctionModuleCall, buildNativeNftSweepExpiredListingsForwarderInput, buildNativeNftSweepExpiredListingsModuleCall, buildNativeSpotCancelOrderForwarderInput, buildNativeSpotCancelOrderModuleCall, buildNativeSpotCreateMarketForwarderInput, buildNativeSpotCreateMarketModuleCall, buildNativeSpotLimitOrderForwarderInput, buildNativeSpotLimitOrderModuleCall, buildNativeSpotSettleLimitOrderForwarderInput, buildNativeSpotSettleLimitOrderModuleCall, buildNativeSpotSettleRoutedLimitOrderForwarderInput, buildNativeSpotSettleRoutedLimitOrderModuleCall, buildPlaceLimitOrderViaPlan, buildPlaceSpotLimitOrderPlan, buildPlaceSpotMarketOrderExPlan, buildPlaceSpotMarketOrderPlan, buildRequestClusterJoinTxFields, buildVoteClusterAdmitTxFields, buildVoteSeatAdmitTxFields, buildWithdrawSeatApplicationTxFields, categoryRoot, checkMrvFeeDisplayConformance, checkMrvStructuredFeeConformance, checkNativeDevkitCompatibility, clampPriorityTip, clobAddressHex, clusterApyPercent, clusterJoinRequestExists, compareNativeDevVersions, composeClaimBoundMessage, computeNoEvmDacFinalityMessage, computeNoEvmLeaderFinalityMessage, computeNoEvmReceiptsRoot, computeNoEvmRoundFinalityMessage, computeNoEvmTargetReceiptHash, computeQuoteLiquidity, consumeNativeEvents, decodeActiveCharter, decodeClusterCharter, decodeClusterDiversity, decodeClusterFormedEvent, decodeClusterJoinRequest, decodeHasPubkeyReturn, decodeLookupPubkeyReturn, decodeNativeAgentStateResponse, decodeNativeMarketOrderBookDeltasResponse, decodeNativeReceiptResponse, decodeNoEvmReceiptTranscript, decodeOperatorFeeChargedEvent, decodeOperatorNetworkMetadata, decodeOracleEvent, decodePendingCharter, decodeProbeAuthority, decodeScoreServiceProbe, decodeSeatAdvertisedEvent, decodeSeatAppliedEvent, decodeSeatClosedEvent, decodeSeatFilledEvent, decodeTimeWindow, decodeTokenFactoryTokenId, decodeTxFeedResponse, decodeVrfOutput, delegationAddressHex, denyRootFor, deriveArchiveChallenge, deriveClobMarketId, deriveClusterAnchorAddress, deriveClusterJoinOperatorId, deriveFeedId, deriveMrvContractAddress, deriveMultisigAddress, deriveMultisigAddressBytes, deriveNativeSpotMarketId, deriveNativeSpotOrderId, deriveSeatApplicationKey, deriveTokenFactoryTokenId, destinationRoot, encodeAdvertiseSeatCalldata, encodeAnswerArchiveChallengeCalldata, encodeApplyForSeatCalldata, encodeAttestDkgReshareCalldata, encodeAttestServiceProbeCalldata, encodeBlockSelector, encodeBridgeChallengeCalldata, encodeBridgeClaimCalldata, encodeCancelClusterJoinCalldata, encodeCancelOrderCalldata, encodeCancelPendingChangeCalldata, encodeClaimCalldata, encodeClaimPolicyByAddressCalldata, encodeCloseSeatCalldata, encodeClusterCharter, encodeCommitArchiveRootCalldata, encodeCreateFixedSupplyMrc20Calldata, encodeCreateRequestCalldata, encodeCreateRequestCanonical, encodeCreateTokenCalldata, encodeDelegateCalldata, encodeDisableCalldata, encodeEnableCalldata, encodeExpireClusterJoinCalldata, encodeFormClusterCalldata, encodeFormClusterV2Calldata, encodeGetClusterJoinRequestCalldata, encodeGetPendingCharterCalldata, encodeGetProbeAuthorityCalldata, encodeHasPubkeyCalldata, encodeLockBridgeConfigCalldata, encodeLookupPubkeyCalldata, encodeMrvDeployPayload, encodeMultisigWitnessBody, encodeNameAcceptTransferCall, encodeNameProposeTransferCall, encodeNameRegisterCall, encodeNativeAgentAcceptEscrowCall, encodeNativeAgentApproveEscrowCall, encodeNativeAgentArbiterGetCall, encodeNativeAgentAttestationGetCall, encodeNativeAgentAvailabilityGetCall, encodeNativeAgentCancelEscrowCall, encodeNativeAgentCloseAvailabilityCall, encodeNativeAgentConsentGetCall, encodeNativeAgentCounterEscrowCall, encodeNativeAgentCreateEscrowCall, encodeNativeAgentDeactivateServiceCall, encodeNativeAgentDisputeEscrowCall, encodeNativeAgentEscrowGetCall, encodeNativeAgentGrantConsentCall, encodeNativeAgentIssueAttestationCall, encodeNativeAgentIssuerGetCall, encodeNativeAgentListServiceCall, encodeNativeAgentModuleForwarderInput, encodeNativeAgentOpenAvailabilityCall, encodeNativeAgentRecordPolicySpendCall, encodeNativeAgentRecordReputationCall, encodeNativeAgentRegisterArbiterCall, encodeNativeAgentRegisterIssuerCall, encodeNativeAgentReputationGetCall, encodeNativeAgentResolveEscrowCall, encodeNativeAgentRevokeAttestationCall, encodeNativeAgentRevokeConsentCall, encodeNativeAgentServiceGetCall, encodeNativeAgentSetAvailabilityCall, encodeNativeAgentSetSpendingPolicyCall, encodeNativeAgentSpendingPolicyGetCall, encodeNativeAgentStartEscrowCall, encodeNativeAgentSubmitEscrowCall, encodeNativeMarketModuleForwarderInput, encodeNativeNftBuyListingCall, encodeNativeNftCancelListingCall, encodeNativeNftCreateListingCall, encodeNativeNftPlaceAuctionBidCall, encodeNativeNftSettleAuctionCall, encodeNativeNftSweepExpiredListingsCall, encodeNativeSpotCancelOrderCall, encodeNativeSpotCreateMarketCall, encodeNativeSpotLimitOrderCall, encodeNativeSpotSettleLimitOrderCall, encodeNativeSpotSettleRoutedLimitOrderCall, encodePlaceLimitOrderCalldata, encodePlaceLimitOrderViaCalldata, encodePlaceMarketOrderCalldata, encodePlaceMarketOrderExCalldata, encodeRecoverOperatorNodeCalldata, encodeRedelegateCalldata, encodeRegisterPubkeyCalldata, encodeReportServiceProbeCalldata, encodeRequestClusterJoinCalldata, encodeSetAutoCompoundCalldata, encodeSetBridgeResumeCooldownCalldata, encodeSetBridgeRouteFinalityCalldata, encodeSetLotSizeCalldata, encodeSetMinNotionalCalldata, encodeSetOperatorDisplayCalldata, encodeSetPolicyCalldata, encodeSetPolicyClaimCalldata, encodeSetProbeAuthorityCalldata, encodeSetTickSizeCalldata, encodeSubmitBridgeProofCalldata, encodeSubmitPendingChangeCalldata, encodeTokenFactoryAllowanceCalldata, encodeTokenFactoryApproveCalldata, encodeTokenFactoryBalanceOfCalldata, encodeTokenFactoryBurnCalldata, encodeTokenFactoryDecreaseAllowanceCalldata, encodeTokenFactoryDestroyCalldata, encodeTokenFactoryIncreaseAllowanceCalldata, encodeTokenFactoryMetadataCalldata, encodeTokenFactoryMintCalldata, encodeTokenFactorySetPausedCalldata, encodeTokenFactoryTotalSupplyCalldata, encodeTokenFactoryTransferCalldata, encodeTokenFactoryTransferFromCalldata, encodeTokenFactoryTransferOwnershipCalldata, encodeUndelegateCalldata, encodeUpdateCharterCalldata, encodeVoteClusterAdmitCalldata, encodeVoteSeatAdmitCalldata, encodeVrfEvaluateCalldata, encodeWithdrawSeatApplicationCalldata, exportBridgeRouteCatalogueJson, fetchChainInfoLatest, fetchChainRegistryLatest, formClusterMessage, formClusterMessageHex, formClusterMessageV2, formClusterMessageV2Hex, formatLyth, formatLythoshi, formatNativeReceiptFeeDisplay, formatOraclePrice, getChainInfo, getNoEvmReceiptTrustPolicy, getP2pSeeds, getRpcEndpoints, hashToHex, hexToAddressBytes, isBridgeAdminLockedRevert, isBridgeCooldownZeroRevert, isBridgeFinalityZeroRevert, isBridgeResumeCooldownActiveRevert, isConcreteServiceProbeStatus, isNativeDecodedEvent, isNativeMarketOrderBookStreamPayload, isQuarantineError, isSinglePublicServiceProbeMask, isUnexpectedValueRevert, isValidNodeRegistryCapabilities, isValidPublicServiceProbeMask, mrvAddressToBech32, mrvBech32ToAddress, mrvCodeHashHex, mrvV1TransactionExtension, multisigBaseSighash, multisigMemberIndex, nameLengthModifierX10, nameRegistrationCost, nameRegistryAddressHex, nativeAgentStateFilterParams, nativeDevSchemaFieldNames, nativeDevUiStrings, nativeEventMatches, nativeEventsFilterParams, nativeEventsFromHistory, nativeEventsFromReceipt, nativeMarketEventFilter, nativeMarketEventsFromHistory, nativeMarketEventsFromReceipt, nativeMarketStateFilterParams, noEvmReceiptTrustPolicyFromChainInfo, nodeHostingClassFromByte, nodeHostingClassToByte, nodeRegistryAddressHex, normalizeAddressHex, normalizeBridgeRouteCatalogue, normalizePendingChangeKind, openSeatFromAdvertised, oracleAddressHex, oraclePriceToNumber, packTimeWindow, parseAddress, parseBridgeRouteCatalogueJson, parseChainRegistryToml, parseDkgResharePublicKeys, parseLythToLythoshi, parseNameCategory, parseNativeDecodedEvent, parseQuantity, parseQuantityBig, preflightClusterJoinRequest, previewRequestClusterJoin, previewVoteClusterAdmit, proofVerifier, protocolNonceForEpoch, proverMarketStateFromByte, pubkeyRegistryAddressHex, quoteOperatorFee, rankBridgeRoutes, rankMarketsByVolume, readClusterJoinRequest, requestSighash, requireTypedAddress, resolveClusterJoinExecutionFee, resolveExecutionFee, resolveMaxExecutionUnitPrice, resolveRegistryExecutionFee, resolveSeatExecutionFee, resolveStudioHostStatus, seatKindFromByte, seatKindToByte, seatStatusFromByte, selectBridgeTransferRoute, selectTrustedOperator, selectTrustedOperatorForNetwork, serviceMaskToBitIndex, serviceProbeStatusLabel, setDestinationRoot, slotArchiveChallengePass, slotClusterCharter, slotClusterCharterDelegator, slotClusterCharterMembers, slotClusterServiceScore, slotEpochChallengeSeed, slotProbeAuthority, slotScoreServiceProbe, sortMultisigMembers, spendingPolicyAddressHex, submitMrvCallNativeTx, submitMrvDeployNativeTx, submitMrvDeployPayloadNativeTx, submitRequestClusterJoin, submitSighash, submitVoteClusterAdmit, tokenFactoryAddressHex, transactionFeeExposure, typedBech32ToAddress, updateCharterMessage, updateCharterMessageHex, validateAddress, validateBridgeRouteCatalogue, validateMrvArtifactMetadata, validateMrvCallRequest, validateMrvDeployRequest, validateMultisigRoster, validateTokenFactoryFlags, verifyNoEvmArchiveProofSignatures, verifyNoEvmBlockFinalityEvidenceMultisig, verifyNoEvmBlockFinalityEvidenceThreshold, verifyNoEvmFinalityEvidenceMultisig, verifyNoEvmFinalityEvidenceThreshold, verifyNoEvmReceiptProof, verifyNoEvmReceiptProofTrust, verifyOperatorGenesis, version, vrfAddressHex };
|