@monolythium/core-sdk 0.4.16 → 0.4.18
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.d.cts +2 -2
- package/dist/crypto/index.d.ts +2 -2
- package/dist/index.cjs +257 -99
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +251 -100
- package/dist/index.js.map +1 -1
- package/dist/{submission-BdBhOdg7.d.cts → submission-Cr6u_2he.d.cts} +135 -4
- package/dist/{submission-BdBhOdg7.d.ts → submission-Cr6u_2he.d.ts} +135 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -264,84 +264,6 @@ function expectLength(value, len, name) {
|
|
|
264
264
|
return value instanceof Uint8Array ? value : Uint8Array.from(value);
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
// src/native-events.ts
|
|
268
|
-
var NATIVE_MARKET_EVENT_FAMILY = "market";
|
|
269
|
-
function nativeMarketEventFilter(filter = {}) {
|
|
270
|
-
return { ...filter, family: NATIVE_MARKET_EVENT_FAMILY };
|
|
271
|
-
}
|
|
272
|
-
function isNativeDecodedEvent(value) {
|
|
273
|
-
const row = asRecord(value);
|
|
274
|
-
return row !== null && typeof row["block_height"] === "number" && typeof row["tx_index"] === "number" && typeof row["sequence"] === "number" && typeof row["family"] === "string" && typeof row["event_name"] === "string" && typeof row["payload_hash"] === "string";
|
|
275
|
-
}
|
|
276
|
-
function parseNativeDecodedEvent(event) {
|
|
277
|
-
if (isNativeDecodedEvent(event.decoded)) {
|
|
278
|
-
return event.decoded;
|
|
279
|
-
}
|
|
280
|
-
try {
|
|
281
|
-
const parsed = JSON.parse(event.decodedJson);
|
|
282
|
-
if (isNativeDecodedEvent(parsed)) {
|
|
283
|
-
return parsed;
|
|
284
|
-
}
|
|
285
|
-
} catch {
|
|
286
|
-
}
|
|
287
|
-
throw SdkError.malformed(
|
|
288
|
-
`native event ${event.eventTopic} at logIndex ${event.logIndex} is missing a typed decoded payload`
|
|
289
|
-
);
|
|
290
|
-
}
|
|
291
|
-
function nativeEventMatches(event, filter = {}) {
|
|
292
|
-
if (filter.address !== void 0 && event.address !== filter.address) return false;
|
|
293
|
-
if (filter.eventTopic !== void 0 && event.eventTopic !== filter.eventTopic) return false;
|
|
294
|
-
if (filter.family === void 0 && filter.eventName === void 0) return true;
|
|
295
|
-
let decoded;
|
|
296
|
-
try {
|
|
297
|
-
decoded = parseNativeDecodedEvent(event);
|
|
298
|
-
} catch {
|
|
299
|
-
return false;
|
|
300
|
-
}
|
|
301
|
-
if (filter.family !== void 0 && decoded.family !== filter.family) return false;
|
|
302
|
-
if (filter.eventName !== void 0 && decoded.event_name !== filter.eventName) return false;
|
|
303
|
-
return true;
|
|
304
|
-
}
|
|
305
|
-
function nativeEventsFromReceipt(receipt, filter = {}) {
|
|
306
|
-
return receipt.events.filter((event) => nativeEventMatches(event, filter)).map((event) => ({
|
|
307
|
-
...event,
|
|
308
|
-
decoded: parseNativeDecodedEvent(event)
|
|
309
|
-
}));
|
|
310
|
-
}
|
|
311
|
-
function nativeMarketEventsFromReceipt(receipt, filter = {}) {
|
|
312
|
-
return nativeEventsFromReceipt(receipt, nativeMarketEventFilter(filter));
|
|
313
|
-
}
|
|
314
|
-
function nativeEventsFromHistory(response) {
|
|
315
|
-
return {
|
|
316
|
-
...response,
|
|
317
|
-
events: response.events.map((event) => ({
|
|
318
|
-
...event,
|
|
319
|
-
decoded: parseNativeDecodedEvent(event)
|
|
320
|
-
}))
|
|
321
|
-
};
|
|
322
|
-
}
|
|
323
|
-
function nativeMarketEventsFromHistory(response) {
|
|
324
|
-
return {
|
|
325
|
-
...response,
|
|
326
|
-
filters: { ...response.filters, family: NATIVE_MARKET_EVENT_FAMILY },
|
|
327
|
-
events: response.events.filter((event) => nativeEventMatches(event, { family: NATIVE_MARKET_EVENT_FAMILY })).map((event) => ({
|
|
328
|
-
...event,
|
|
329
|
-
decoded: parseNativeDecodedEvent(event)
|
|
330
|
-
}))
|
|
331
|
-
};
|
|
332
|
-
}
|
|
333
|
-
async function consumeNativeEvents(receipt, consumer, filter = {}) {
|
|
334
|
-
const events = nativeEventsFromReceipt(receipt, filter);
|
|
335
|
-
for (const event of events) {
|
|
336
|
-
await consumer(event);
|
|
337
|
-
}
|
|
338
|
-
return events.length;
|
|
339
|
-
}
|
|
340
|
-
function asRecord(value) {
|
|
341
|
-
if (value === null || typeof value !== "object" || Array.isArray(value)) return null;
|
|
342
|
-
return value;
|
|
343
|
-
}
|
|
344
|
-
|
|
345
267
|
// src/consts.ts
|
|
346
268
|
var BURN_ADDR = "0x0000000000000000000000000000000000000000";
|
|
347
269
|
var PRECOMPILE_ADDRESSES = {
|
|
@@ -526,6 +448,9 @@ var NODE_REGISTRY_ARCHIVE_KIND_EPOCH_SEED = 3;
|
|
|
526
448
|
var NODE_REGISTRY_TAG_ARCHIVE_CHALLENGE = 50;
|
|
527
449
|
var NODE_REGISTRY_TAG_SERVICE_SCORE = 36;
|
|
528
450
|
var NODE_REGISTRY_TAG_TREASURY = 31;
|
|
451
|
+
var NODE_REGISTRY_TAG_CLUSTER_CHARTER = 49;
|
|
452
|
+
var NODE_REGISTRY_SUBKIND_CHARTER_DELEGATOR_BPS = 0;
|
|
453
|
+
var NODE_REGISTRY_SUBKIND_CHARTER_MEMBER_SHARES = 1;
|
|
529
454
|
var PENDING_CHANGE_KIND_CODES = {
|
|
530
455
|
add: 1,
|
|
531
456
|
remove: 2,
|
|
@@ -1319,6 +1244,40 @@ function slotProbeAuthority() {
|
|
|
1319
1244
|
buf[33] = 10;
|
|
1320
1245
|
return bytesToHex(keccak_256(buf));
|
|
1321
1246
|
}
|
|
1247
|
+
function slotClusterCharter(clusterId, subkind) {
|
|
1248
|
+
if (!Number.isInteger(subkind) || subkind < 0 || subkind > 255) {
|
|
1249
|
+
throw new NodeRegistryError("charter subkind must be a u8");
|
|
1250
|
+
}
|
|
1251
|
+
const buf = new Uint8Array(1 + 4 + 1);
|
|
1252
|
+
buf[0] = NODE_REGISTRY_TAG_CLUSTER_CHARTER;
|
|
1253
|
+
buf.set(u32BeBytes(toUint32(clusterId, "clusterId")), 1);
|
|
1254
|
+
buf[5] = subkind;
|
|
1255
|
+
return bytesToHex(keccak_256(buf));
|
|
1256
|
+
}
|
|
1257
|
+
function slotClusterCharterDelegator(clusterId) {
|
|
1258
|
+
return slotClusterCharter(clusterId, NODE_REGISTRY_SUBKIND_CHARTER_DELEGATOR_BPS);
|
|
1259
|
+
}
|
|
1260
|
+
function slotClusterCharterMembers(clusterId) {
|
|
1261
|
+
return slotClusterCharter(clusterId, NODE_REGISTRY_SUBKIND_CHARTER_MEMBER_SHARES);
|
|
1262
|
+
}
|
|
1263
|
+
function decodeActiveCharter(delegatorWord, membersWord) {
|
|
1264
|
+
const presence = leftPadToWord(toBytes(delegatorWord), "charterDelegatorWord");
|
|
1265
|
+
let raw = 0n;
|
|
1266
|
+
for (const b of presence) {
|
|
1267
|
+
raw = raw << 8n | BigInt(b);
|
|
1268
|
+
}
|
|
1269
|
+
if (raw === 0n) {
|
|
1270
|
+
return { present: false, delegatorShareBps: 0, memberShareBps: [] };
|
|
1271
|
+
}
|
|
1272
|
+
const delegatorShareBps = Number(raw - 1n > 0xffffn ? 0xffffn : raw - 1n);
|
|
1273
|
+
const packed = leftPadToWord(toBytes(membersWord), "charterMembersWord");
|
|
1274
|
+
const memberShareBps = [];
|
|
1275
|
+
for (let i = 0; i < NODE_REGISTRY_FORM_CLUSTER_MEMBER_COUNT; i += 1) {
|
|
1276
|
+
const at = 12 + 2 * i;
|
|
1277
|
+
memberShareBps.push(packed[at] << 8 | packed[at + 1]);
|
|
1278
|
+
}
|
|
1279
|
+
return { present: true, delegatorShareBps, memberShareBps };
|
|
1280
|
+
}
|
|
1322
1281
|
function decodeClusterJoinRequest(returnData) {
|
|
1323
1282
|
const bytes = expectLength2(toBytes(returnData), 8 * 32, "clusterJoinRequest");
|
|
1324
1283
|
const word = (i) => bytes.slice(i * 32, (i + 1) * 32);
|
|
@@ -1632,6 +1591,15 @@ function padToWord(bytes) {
|
|
|
1632
1591
|
out.set(bytes);
|
|
1633
1592
|
return out;
|
|
1634
1593
|
}
|
|
1594
|
+
function leftPadToWord(bytes, name) {
|
|
1595
|
+
if (bytes.length === 32) return bytes;
|
|
1596
|
+
if (bytes.length > 32) {
|
|
1597
|
+
throw new NodeRegistryError(`${name} must be <= 32 bytes, got ${bytes.length}`);
|
|
1598
|
+
}
|
|
1599
|
+
const out = new Uint8Array(32);
|
|
1600
|
+
out.set(bytes, 32 - bytes.length);
|
|
1601
|
+
return out;
|
|
1602
|
+
}
|
|
1635
1603
|
function toBytes(value) {
|
|
1636
1604
|
if (typeof value === "string") {
|
|
1637
1605
|
return hexToBytes(value);
|
|
@@ -1652,10 +1620,11 @@ function displayTextBytes(value, maxBytes, name) {
|
|
|
1652
1620
|
return bytes;
|
|
1653
1621
|
}
|
|
1654
1622
|
function hexToBytes(hex) {
|
|
1655
|
-
const
|
|
1656
|
-
if (
|
|
1623
|
+
const raw = hex.startsWith("0x") || hex.startsWith("0X") ? hex.slice(2) : hex;
|
|
1624
|
+
if (!/^[0-9a-fA-F]*$/.test(raw)) {
|
|
1657
1625
|
throw new NodeRegistryError("invalid hex bytes");
|
|
1658
1626
|
}
|
|
1627
|
+
const body = raw.length % 2 !== 0 ? `0${raw}` : raw;
|
|
1659
1628
|
const out = new Uint8Array(body.length / 2);
|
|
1660
1629
|
for (let i = 0; i < out.length; i++) {
|
|
1661
1630
|
out[i] = Number.parseInt(body.slice(i * 2, i * 2 + 2), 16);
|
|
@@ -1705,6 +1674,84 @@ function decodeDynamicBytesResult(bytes, expectedLength, label) {
|
|
|
1705
1674
|
return bytes.slice(64, 64 + expectedLength);
|
|
1706
1675
|
}
|
|
1707
1676
|
|
|
1677
|
+
// src/native-events.ts
|
|
1678
|
+
var NATIVE_MARKET_EVENT_FAMILY = "market";
|
|
1679
|
+
function nativeMarketEventFilter(filter = {}) {
|
|
1680
|
+
return { ...filter, family: NATIVE_MARKET_EVENT_FAMILY };
|
|
1681
|
+
}
|
|
1682
|
+
function isNativeDecodedEvent(value) {
|
|
1683
|
+
const row = asRecord(value);
|
|
1684
|
+
return row !== null && typeof row["block_height"] === "number" && typeof row["tx_index"] === "number" && typeof row["sequence"] === "number" && typeof row["family"] === "string" && typeof row["event_name"] === "string" && typeof row["payload_hash"] === "string";
|
|
1685
|
+
}
|
|
1686
|
+
function parseNativeDecodedEvent(event) {
|
|
1687
|
+
if (isNativeDecodedEvent(event.decoded)) {
|
|
1688
|
+
return event.decoded;
|
|
1689
|
+
}
|
|
1690
|
+
try {
|
|
1691
|
+
const parsed = JSON.parse(event.decodedJson);
|
|
1692
|
+
if (isNativeDecodedEvent(parsed)) {
|
|
1693
|
+
return parsed;
|
|
1694
|
+
}
|
|
1695
|
+
} catch {
|
|
1696
|
+
}
|
|
1697
|
+
throw SdkError.malformed(
|
|
1698
|
+
`native event ${event.eventTopic} at logIndex ${event.logIndex} is missing a typed decoded payload`
|
|
1699
|
+
);
|
|
1700
|
+
}
|
|
1701
|
+
function nativeEventMatches(event, filter = {}) {
|
|
1702
|
+
if (filter.address !== void 0 && event.address !== filter.address) return false;
|
|
1703
|
+
if (filter.eventTopic !== void 0 && event.eventTopic !== filter.eventTopic) return false;
|
|
1704
|
+
if (filter.family === void 0 && filter.eventName === void 0) return true;
|
|
1705
|
+
let decoded;
|
|
1706
|
+
try {
|
|
1707
|
+
decoded = parseNativeDecodedEvent(event);
|
|
1708
|
+
} catch {
|
|
1709
|
+
return false;
|
|
1710
|
+
}
|
|
1711
|
+
if (filter.family !== void 0 && decoded.family !== filter.family) return false;
|
|
1712
|
+
if (filter.eventName !== void 0 && decoded.event_name !== filter.eventName) return false;
|
|
1713
|
+
return true;
|
|
1714
|
+
}
|
|
1715
|
+
function nativeEventsFromReceipt(receipt, filter = {}) {
|
|
1716
|
+
return receipt.events.filter((event) => nativeEventMatches(event, filter)).map((event) => ({
|
|
1717
|
+
...event,
|
|
1718
|
+
decoded: parseNativeDecodedEvent(event)
|
|
1719
|
+
}));
|
|
1720
|
+
}
|
|
1721
|
+
function nativeMarketEventsFromReceipt(receipt, filter = {}) {
|
|
1722
|
+
return nativeEventsFromReceipt(receipt, nativeMarketEventFilter(filter));
|
|
1723
|
+
}
|
|
1724
|
+
function nativeEventsFromHistory(response) {
|
|
1725
|
+
return {
|
|
1726
|
+
...response,
|
|
1727
|
+
events: response.events.map((event) => ({
|
|
1728
|
+
...event,
|
|
1729
|
+
decoded: parseNativeDecodedEvent(event)
|
|
1730
|
+
}))
|
|
1731
|
+
};
|
|
1732
|
+
}
|
|
1733
|
+
function nativeMarketEventsFromHistory(response) {
|
|
1734
|
+
return {
|
|
1735
|
+
...response,
|
|
1736
|
+
filters: { ...response.filters, family: NATIVE_MARKET_EVENT_FAMILY },
|
|
1737
|
+
events: response.events.filter((event) => nativeEventMatches(event, { family: NATIVE_MARKET_EVENT_FAMILY })).map((event) => ({
|
|
1738
|
+
...event,
|
|
1739
|
+
decoded: parseNativeDecodedEvent(event)
|
|
1740
|
+
}))
|
|
1741
|
+
};
|
|
1742
|
+
}
|
|
1743
|
+
async function consumeNativeEvents(receipt, consumer, filter = {}) {
|
|
1744
|
+
const events = nativeEventsFromReceipt(receipt, filter);
|
|
1745
|
+
for (const event of events) {
|
|
1746
|
+
await consumer(event);
|
|
1747
|
+
}
|
|
1748
|
+
return events.length;
|
|
1749
|
+
}
|
|
1750
|
+
function asRecord(value) {
|
|
1751
|
+
if (value === null || typeof value !== "object" || Array.isArray(value)) return null;
|
|
1752
|
+
return value;
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1708
1755
|
// src/crypto/bytes.ts
|
|
1709
1756
|
function concatBytes2(...chunks) {
|
|
1710
1757
|
const len = chunks.reduce((n, c) => n + c.length, 0);
|
|
@@ -3359,8 +3406,8 @@ var TESTNET_69420 = {
|
|
|
3359
3406
|
network: "testnet-69420",
|
|
3360
3407
|
display_name: "Monolythium Testnet",
|
|
3361
3408
|
description: "Public Monolythium testnet. Testnet state may reset without notice; do not store value on this network.",
|
|
3362
|
-
genesis_hash: "
|
|
3363
|
-
binary_sha: "
|
|
3409
|
+
genesis_hash: "0x11774775b5c3bfc36ecb9c37e7252b49898caaacdb55668de3913fe60c660258",
|
|
3410
|
+
binary_sha: "b4257f14",
|
|
3364
3411
|
rpc: [
|
|
3365
3412
|
{
|
|
3366
3413
|
url: "http://178.105.12.9:8545",
|
|
@@ -3419,18 +3466,18 @@ var TESTNET_69420 = {
|
|
|
3419
3466
|
notes: "operator-8"
|
|
3420
3467
|
},
|
|
3421
3468
|
{
|
|
3422
|
-
url: "http://
|
|
3469
|
+
url: "http://95.217.156.190:8545",
|
|
3423
3470
|
provider: "monolythium-foundation",
|
|
3424
|
-
region: "
|
|
3471
|
+
region: "hel1",
|
|
3425
3472
|
tier: "official",
|
|
3426
|
-
notes: "operator-
|
|
3473
|
+
notes: "operator-10"
|
|
3427
3474
|
},
|
|
3428
3475
|
{
|
|
3429
|
-
url: "http://
|
|
3476
|
+
url: "http://162.55.54.198:8545",
|
|
3430
3477
|
provider: "monolythium-foundation",
|
|
3431
|
-
region: "
|
|
3478
|
+
region: "fsn1",
|
|
3432
3479
|
tier: "official",
|
|
3433
|
-
notes: "operator-
|
|
3480
|
+
notes: "operator-9"
|
|
3434
3481
|
},
|
|
3435
3482
|
{
|
|
3436
3483
|
url: "http://178.105.45.210:8545",
|
|
@@ -4266,17 +4313,35 @@ var RpcClient = class _RpcClient {
|
|
|
4266
4313
|
async ethBlockNumber() {
|
|
4267
4314
|
return parseQuantityBig(await this.call(ethCompatMethod("blockNumber"), []));
|
|
4268
4315
|
}
|
|
4269
|
-
/**
|
|
4316
|
+
/**
|
|
4317
|
+
* `eth_getBalance` — balance + Merkle proof envelope.
|
|
4318
|
+
*
|
|
4319
|
+
* The node may answer with a bare `0x…` hex word or a proof-wrapped
|
|
4320
|
+
* object; both are normalized to a consistent {@link AccountProofResponse}
|
|
4321
|
+
* via {@link normalizeAccountProof} so `.value` is always the bare word.
|
|
4322
|
+
*/
|
|
4270
4323
|
async ethGetBalance(address, block = "latest") {
|
|
4271
|
-
return
|
|
4324
|
+
return normalizeAccountProof(
|
|
4325
|
+
await this.call("eth_getBalance", [address, encodeBlockSelector(block)])
|
|
4326
|
+
);
|
|
4272
4327
|
}
|
|
4273
|
-
/**
|
|
4328
|
+
/**
|
|
4329
|
+
* `eth_getStorageAt` — storage word + Merkle proof.
|
|
4330
|
+
*
|
|
4331
|
+
* The node returns a proof-wrapped object
|
|
4332
|
+
* `{ value, proof, stateRoot, blockNumber }` (some builds use a bare
|
|
4333
|
+
* `0x…` hex word). Both shapes are normalized to a consistent
|
|
4334
|
+
* {@link AccountProofResponse} via {@link normalizeAccountProof}; `.value`
|
|
4335
|
+
* is always the bare storage word (even-length hex, `0x0` when zero).
|
|
4336
|
+
*/
|
|
4274
4337
|
async ethGetStorageAt(address, slot, block = "latest") {
|
|
4275
|
-
return
|
|
4276
|
-
|
|
4277
|
-
|
|
4278
|
-
|
|
4279
|
-
|
|
4338
|
+
return normalizeAccountProof(
|
|
4339
|
+
await this.call("eth_getStorageAt", [
|
|
4340
|
+
address,
|
|
4341
|
+
slot,
|
|
4342
|
+
encodeBlockSelector(block)
|
|
4343
|
+
])
|
|
4344
|
+
);
|
|
4280
4345
|
}
|
|
4281
4346
|
/** `eth_getTransactionCount` — sender nonce. */
|
|
4282
4347
|
async ethGetTransactionCount(address, block = "latest") {
|
|
@@ -4385,9 +4450,14 @@ var RpcClient = class _RpcClient {
|
|
|
4385
4450
|
async lythGetRegistration(peerId) {
|
|
4386
4451
|
return this.call("lyth_getRegistration", [peerId]);
|
|
4387
4452
|
}
|
|
4388
|
-
/**
|
|
4453
|
+
/**
|
|
4454
|
+
* `lyth_registryStateProof` — Merkle proof for a registry entry.
|
|
4455
|
+
*
|
|
4456
|
+
* Normalized through {@link normalizeAccountProof} so a bare-hex or
|
|
4457
|
+
* proof-wrapped answer both yield a consistent {@link AccountProofResponse}.
|
|
4458
|
+
*/
|
|
4389
4459
|
async lythRegistryStateProof(peerId) {
|
|
4390
|
-
return this.call("lyth_registryStateProof", [peerId]);
|
|
4460
|
+
return normalizeAccountProof(await this.call("lyth_registryStateProof", [peerId]));
|
|
4391
4461
|
}
|
|
4392
4462
|
/** `lyth_getAccountPolicy` — privacy posture for an account. */
|
|
4393
4463
|
async lythGetAccountPolicy(address) {
|
|
@@ -4763,6 +4833,55 @@ var RpcClient = class _RpcClient {
|
|
|
4763
4833
|
async lythGetClusterDiversity(clusterId) {
|
|
4764
4834
|
return this.call("lyth_getClusterDiversity", [clusterId]);
|
|
4765
4835
|
}
|
|
4836
|
+
/**
|
|
4837
|
+
* Component H — read a cluster's ACTIVE economics charter (Law §6.8).
|
|
4838
|
+
*
|
|
4839
|
+
* There is no `lyth_*` / view-selector for the active charter, so this
|
|
4840
|
+
* SLOADs the two `TAG_CLUSTER_CHARTER` (`0x31`) storage words from the
|
|
4841
|
+
* node-registry account `0x1005` via `eth_getStorageAt` and decodes them
|
|
4842
|
+
* with {@link decodeActiveCharter}. Returns `{ present: false }` (zeroed
|
|
4843
|
+
* shares) for genesis / 3-arg-formCluster clusters that never adopted a
|
|
4844
|
+
* charter. The active record carries no `effectiveEpoch` — that lives on
|
|
4845
|
+
* the pending amendment ({@link lythGetPendingCharter}).
|
|
4846
|
+
*/
|
|
4847
|
+
async lythGetClusterCharter(clusterId, block = "latest") {
|
|
4848
|
+
const registry = nodeRegistryAddressHex();
|
|
4849
|
+
const [delegator, members] = await Promise.all([
|
|
4850
|
+
this.ethGetStorageAt(registry, slotClusterCharterDelegator(clusterId), block),
|
|
4851
|
+
this.ethGetStorageAt(registry, slotClusterCharterMembers(clusterId), block)
|
|
4852
|
+
]);
|
|
4853
|
+
return decodeActiveCharter(delegator.value, members.value);
|
|
4854
|
+
}
|
|
4855
|
+
/**
|
|
4856
|
+
* Component H — read a cluster's PENDING charter amendment (Law §6.8).
|
|
4857
|
+
*
|
|
4858
|
+
* Calls the `getPendingCharter(uint32)` view on the node-registry account
|
|
4859
|
+
* `0x1005` over `eth_call` and decodes the return with
|
|
4860
|
+
* {@link decodePendingCharter}. Returns `{ present: false }` when no
|
|
4861
|
+
* amendment is posted; otherwise carries the proposed shares plus the
|
|
4862
|
+
* `effectiveEpoch` at which the delegator-protective cooldown lands.
|
|
4863
|
+
*/
|
|
4864
|
+
async lythGetPendingCharter(clusterId, block = "latest") {
|
|
4865
|
+
const data = await this.ethCall(
|
|
4866
|
+
{ to: nodeRegistryAddressHex(), data: encodeGetPendingCharterCalldata(clusterId) },
|
|
4867
|
+
block
|
|
4868
|
+
);
|
|
4869
|
+
return decodePendingCharter(data);
|
|
4870
|
+
}
|
|
4871
|
+
/**
|
|
4872
|
+
* Component A — read a cluster's settled per-cluster ServiceScore (the
|
|
4873
|
+
* `u64` the reward path reads each block). SLOADs the `TAG_SERVICE_SCORE`
|
|
4874
|
+
* (`0x24`) score slot from `0x1005` via `eth_getStorageAt`; `0n` means the
|
|
4875
|
+
* cluster has never been scored.
|
|
4876
|
+
*/
|
|
4877
|
+
async lythGetClusterServiceScore(clusterId, block = "latest") {
|
|
4878
|
+
const word = await this.ethGetStorageAt(
|
|
4879
|
+
nodeRegistryAddressHex(),
|
|
4880
|
+
slotClusterServiceScore(clusterId),
|
|
4881
|
+
block
|
|
4882
|
+
);
|
|
4883
|
+
return parseQuantityBig(word.value);
|
|
4884
|
+
}
|
|
4766
4885
|
/**
|
|
4767
4886
|
* PF-6 — `lyth_getOperatorNetworkMetadata`: ASN/geo/hosting-class/IP/PCR
|
|
4768
4887
|
* for a peer. `operatorId` is the 32-byte operator/peer id as `0x…` hex
|
|
@@ -5260,6 +5379,38 @@ function parseQuantity(hex) {
|
|
|
5260
5379
|
}
|
|
5261
5380
|
return Number(big);
|
|
5262
5381
|
}
|
|
5382
|
+
function normalizeStorageWord(value) {
|
|
5383
|
+
if (value === null || value === void 0 || value === "") return "0x0";
|
|
5384
|
+
if (typeof value !== "string") {
|
|
5385
|
+
throw SdkError.malformed(`storage word is not a string: ${typeof value}`);
|
|
5386
|
+
}
|
|
5387
|
+
const body = value.startsWith("0x") || value.startsWith("0X") ? value.slice(2) : value;
|
|
5388
|
+
if (body.length === 0) return "0x0";
|
|
5389
|
+
if (!/^[0-9a-fA-F]+$/.test(body)) {
|
|
5390
|
+
throw SdkError.malformed(`invalid hex storage word: ${value}`);
|
|
5391
|
+
}
|
|
5392
|
+
return body.length % 2 === 0 ? `0x${body}` : `0x0${body}`;
|
|
5393
|
+
}
|
|
5394
|
+
function normalizeAccountProof(result) {
|
|
5395
|
+
if (typeof result === "string" || result === null || result === void 0) {
|
|
5396
|
+
return { value: normalizeStorageWord(result), state_root: "0x", block_number: 0n };
|
|
5397
|
+
}
|
|
5398
|
+
const obj = result;
|
|
5399
|
+
const stateRoot = obj.state_root ?? obj.stateRoot ?? "0x";
|
|
5400
|
+
const rawBlock = obj.block_number ?? obj.blockNumber ?? 0;
|
|
5401
|
+
let blockNumber;
|
|
5402
|
+
try {
|
|
5403
|
+
blockNumber = typeof rawBlock === "bigint" ? rawBlock : BigInt(rawBlock);
|
|
5404
|
+
} catch {
|
|
5405
|
+
blockNumber = 0n;
|
|
5406
|
+
}
|
|
5407
|
+
return {
|
|
5408
|
+
value: normalizeStorageWord(obj.value),
|
|
5409
|
+
state_root: stateRoot,
|
|
5410
|
+
block_number: blockNumber,
|
|
5411
|
+
proof: obj.proof ?? null
|
|
5412
|
+
};
|
|
5413
|
+
}
|
|
5263
5414
|
function encodeRpcInteger(v) {
|
|
5264
5415
|
if (typeof v === "bigint") return `0x${v.toString(16)}`;
|
|
5265
5416
|
return v;
|
|
@@ -12142,8 +12293,8 @@ var MONOLYTHIUM_NETWORKS = {
|
|
|
12142
12293
|
};
|
|
12143
12294
|
|
|
12144
12295
|
// src/index.ts
|
|
12145
|
-
var version = "0.4.
|
|
12296
|
+
var version = "0.4.18";
|
|
12146
12297
|
|
|
12147
|
-
export { ADDRESS_HRP, ADDRESS_KIND_HRPS, API_STREAM_TOPICS, AddressError, AgentActionError, ApiClient, BRIDGE_QUOTE_API_BLOCKED_REASON, BRIDGE_REVERT_TAGS, BRIDGE_SELECTORS, BRIDGE_SUBMIT_API_BLOCKED_REASON, BURN_ADDR, BridgePrecompileError, BridgeRouteCatalogueError, CHAIN_REGISTRY, CHAIN_REGISTRY_RAW_BASE, CLOB_MARKET_ID_DOMAIN_TAG, CLOB_SELECTORS, CLUSTER_FORMED_EVENT_SIG, DEFAULT_CLUSTER_JOIN_EXECUTION_UNIT_LIMIT, DEFAULT_OPERATOR_SEAL_KEY_EXECUTION_UNIT_LIMIT, DELEGATION_REVERT_TAGS, DELEGATION_SELECTORS, DIVERSITY_SCORE_MAX, DelegationPrecompileError, EMPTY_ROOT, EXECUTION_UNIT_PRICE_SAFETY_MULTIPLIER, FEED_ID_DOMAIN_TAG, LYTHOSHI_PER_LYTH, LYTH_DECIMALS, 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_LEN2 as ML_DSA_65_PUBLIC_KEY_LEN, ML_DSA_65_SIGNATURE_LEN2 as 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, MULTISIG_ADDRESS_DERIVATION_DOMAIN2 as MULTISIG_WITNESS_ADDRESS_DERIVATION_DOMAIN, MULTISIG_WITNESS_DOMAIN, MarketActionError, MrvValidationError, MultisigError, 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_OPERATOR_SEAL_EK_BYTES, NODE_REGISTRY_PENDING_CHANGE_MAX_INTENT_ID, NODE_REGISTRY_PUBLIC_SERVICE_MASK, NODE_REGISTRY_SELECTORS, NODE_REGISTRY_TAG_ARCHIVE_CHALLENGE, 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, NameRegistryError, NoEvmReceiptProofError, NodeRegistryError, OPERATOR_ROUTER_ADDRESS, OPERATOR_ROUTER_EVENT_SIGS, OPERATOR_ROUTER_SELECTORS, OPERATOR_ROUTER_SIGS, ORACLE_EVENT_SIGS, OracleEventError, PENDING_CHANGE_KIND_CODES, PRECOMPILE_ADDRESSES, 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, ProverMarketError, PubkeyRegistryError, REGISTRY_DEFAULT_EXECUTION_UNIT_LIMIT, RESERVED_ADDRESS_HRPS, RpcClient, SERVES_GPU_PROVE, SERVICE_PROBE_STATUS, SET_POLICY_CLAIM_DOMAIN_TAG, SPENDING_POLICY_SELECTORS, SdkError, SpendingPolicyError, 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, TokenFactoryError, V1_BRIDGE_ALLOWED_FEE_TOKEN, V1_BRIDGE_ALLOWED_PROTOCOL, VRF_DOMAIN_TAG_MAX_BYTES, VRF_HEIGHT_NOT_FINALIZED_REVERT, VRF_OUTPUT_BYTES, VrfCallError, addressBytesToHex, addressToBech32, addressToTypedBech32, allowRootFor, apiEndpointFromRpcEndpoint, archiveMerkleInnerHash, archiveMerkleLeafHash, 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, buildPublishOperatorSealKeyTxFields, buildRequestClusterJoinTxFields, buildVoteClusterAdmitTxFields, categoryRoot, checkMrvFeeDisplayConformance, checkMrvStructuredFeeConformance, checkNativeDevkitCompatibility, clampPriorityTip, clobAddressHex, clusterApyPercent, clusterJoinRequestExists, compareNativeDevVersions, composeClaimBoundMessage, computeNoEvmDacFinalityMessage, computeNoEvmLeaderFinalityMessage, computeNoEvmReceiptsRoot, computeNoEvmRoundFinalityMessage, computeNoEvmTargetReceiptHash, computeQuoteLiquidity, consumeNativeEvents, decodeClusterCharter, decodeClusterDiversity, decodeClusterFormedEvent, decodeClusterJoinRequest, decodeHasPubkeyReturn, decodeLookupPubkeyReturn, decodeNativeAgentStateResponse, decodeNativeMarketOrderBookDeltasResponse, decodeNativeReceiptResponse, decodeNoEvmReceiptTranscript, decodeOperatorFeeChargedEvent, decodeOperatorNetworkMetadata, decodeOperatorSealKey, 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, encodeGetOperatorSealKeyCalldata, 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, encodePublishOperatorSealKeyCalldata, 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, hexToAddressBytes, isBridgeAdminLockedRevert, isBridgeCooldownZeroRevert, isBridgeFinalityZeroRevert, isBridgeResumeCooldownActiveRevert, isConcreteServiceProbeStatus, isNativeDecodedEvent, isNativeMarketOrderBookStreamPayload, 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, protocolNonceForEpoch, proverMarketStateFromByte, pubkeyRegistryAddressHex, quoteOperatorFee, rankBridgeRoutes, rankMarketsByVolume, readClusterJoinRequest, requestSighash, requireTypedAddress, resolveClusterJoinExecutionFee, resolveExecutionFee, resolveMaxExecutionUnitPrice, resolveRegistryExecutionFee, resolveStudioHostStatus, selectBridgeTransferRoute, serviceMaskToBitIndex, serviceProbeStatusLabel, setDestinationRoot, slotArchiveChallengePass, slotClusterServiceScore, slotEpochChallengeSeed, slotProbeAuthority, slotScoreServiceProbe, sortMultisigMembers, spendingPolicyAddressHex, submitMrvCallNativeTx, submitMrvDeployNativeTx, submitMrvDeployPayloadNativeTx, submitPublishOperatorSealKey, submitRequestClusterJoin, submitSighash, submitVoteClusterAdmit, tokenFactoryAddressHex, transactionFeeExposure, typedBech32ToAddress, updateCharterMessage, updateCharterMessageHex, validateAddress, validateBridgeRouteCatalogue, validateMrvArtifactMetadata, validateMrvCallRequest, validateMrvDeployRequest, validateMultisigRoster, validateTokenFactoryFlags, verifyNoEvmArchiveProofSignatures, verifyNoEvmBlockFinalityEvidenceMultisig, verifyNoEvmBlockFinalityEvidenceThreshold, verifyNoEvmFinalityEvidenceMultisig, verifyNoEvmFinalityEvidenceThreshold, verifyNoEvmReceiptProof, verifyNoEvmReceiptProofTrust, version, vrfAddressHex };
|
|
12298
|
+
export { ADDRESS_HRP, ADDRESS_KIND_HRPS, API_STREAM_TOPICS, AddressError, AgentActionError, ApiClient, BRIDGE_QUOTE_API_BLOCKED_REASON, BRIDGE_REVERT_TAGS, BRIDGE_SELECTORS, BRIDGE_SUBMIT_API_BLOCKED_REASON, BURN_ADDR, BridgePrecompileError, BridgeRouteCatalogueError, CHAIN_REGISTRY, CHAIN_REGISTRY_RAW_BASE, CLOB_MARKET_ID_DOMAIN_TAG, CLOB_SELECTORS, CLUSTER_FORMED_EVENT_SIG, DEFAULT_CLUSTER_JOIN_EXECUTION_UNIT_LIMIT, DEFAULT_OPERATOR_SEAL_KEY_EXECUTION_UNIT_LIMIT, DELEGATION_REVERT_TAGS, DELEGATION_SELECTORS, DIVERSITY_SCORE_MAX, DelegationPrecompileError, EMPTY_ROOT, EXECUTION_UNIT_PRICE_SAFETY_MULTIPLIER, FEED_ID_DOMAIN_TAG, LYTHOSHI_PER_LYTH, LYTH_DECIMALS, 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_LEN2 as ML_DSA_65_PUBLIC_KEY_LEN, ML_DSA_65_SIGNATURE_LEN2 as 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, MULTISIG_ADDRESS_DERIVATION_DOMAIN2 as MULTISIG_WITNESS_ADDRESS_DERIVATION_DOMAIN, MULTISIG_WITNESS_DOMAIN, MarketActionError, MrvValidationError, MultisigError, 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_OPERATOR_SEAL_EK_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, NameRegistryError, NoEvmReceiptProofError, NodeRegistryError, OPERATOR_ROUTER_ADDRESS, OPERATOR_ROUTER_EVENT_SIGS, OPERATOR_ROUTER_SELECTORS, OPERATOR_ROUTER_SIGS, ORACLE_EVENT_SIGS, OracleEventError, PENDING_CHANGE_KIND_CODES, PRECOMPILE_ADDRESSES, 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, ProverMarketError, PubkeyRegistryError, REGISTRY_DEFAULT_EXECUTION_UNIT_LIMIT, RESERVED_ADDRESS_HRPS, RpcClient, SERVES_GPU_PROVE, SERVICE_PROBE_STATUS, SET_POLICY_CLAIM_DOMAIN_TAG, SPENDING_POLICY_SELECTORS, SdkError, SpendingPolicyError, 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, TokenFactoryError, V1_BRIDGE_ALLOWED_FEE_TOKEN, V1_BRIDGE_ALLOWED_PROTOCOL, VRF_DOMAIN_TAG_MAX_BYTES, VRF_HEIGHT_NOT_FINALIZED_REVERT, VRF_OUTPUT_BYTES, VrfCallError, addressBytesToHex, addressToBech32, addressToTypedBech32, allowRootFor, apiEndpointFromRpcEndpoint, archiveMerkleInnerHash, archiveMerkleLeafHash, 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, buildPublishOperatorSealKeyTxFields, 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, decodeOperatorSealKey, 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, encodeGetOperatorSealKeyCalldata, 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, encodePublishOperatorSealKeyCalldata, 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, hexToAddressBytes, isBridgeAdminLockedRevert, isBridgeCooldownZeroRevert, isBridgeFinalityZeroRevert, isBridgeResumeCooldownActiveRevert, isConcreteServiceProbeStatus, isNativeDecodedEvent, isNativeMarketOrderBookStreamPayload, 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, protocolNonceForEpoch, proverMarketStateFromByte, pubkeyRegistryAddressHex, quoteOperatorFee, rankBridgeRoutes, rankMarketsByVolume, readClusterJoinRequest, requestSighash, requireTypedAddress, resolveClusterJoinExecutionFee, resolveExecutionFee, resolveMaxExecutionUnitPrice, resolveRegistryExecutionFee, resolveStudioHostStatus, selectBridgeTransferRoute, serviceMaskToBitIndex, serviceProbeStatusLabel, setDestinationRoot, slotArchiveChallengePass, slotClusterCharter, slotClusterCharterDelegator, slotClusterCharterMembers, slotClusterServiceScore, slotEpochChallengeSeed, slotProbeAuthority, slotScoreServiceProbe, sortMultisigMembers, spendingPolicyAddressHex, submitMrvCallNativeTx, submitMrvDeployNativeTx, submitMrvDeployPayloadNativeTx, submitPublishOperatorSealKey, submitRequestClusterJoin, submitSighash, submitVoteClusterAdmit, tokenFactoryAddressHex, transactionFeeExposure, typedBech32ToAddress, updateCharterMessage, updateCharterMessageHex, validateAddress, validateBridgeRouteCatalogue, validateMrvArtifactMetadata, validateMrvCallRequest, validateMrvDeployRequest, validateMultisigRoster, validateTokenFactoryFlags, verifyNoEvmArchiveProofSignatures, verifyNoEvmBlockFinalityEvidenceMultisig, verifyNoEvmBlockFinalityEvidenceThreshold, verifyNoEvmFinalityEvidenceMultisig, verifyNoEvmFinalityEvidenceThreshold, verifyNoEvmReceiptProof, verifyNoEvmReceiptProofTrust, version, vrfAddressHex };
|
|
12148
12299
|
//# sourceMappingURL=index.js.map
|
|
12149
12300
|
//# sourceMappingURL=index.js.map
|