@xyo-network/xl1-rpc 2.0.5 → 2.0.7
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/neutral/index.mjs +3 -2
- package/dist/neutral/index.mjs.map +2 -2
- package/dist/neutral/provider/runner/JsonRpcMempoolRunner/JsonRpcMempoolRunnerMethods.d.ts +24 -24
- package/dist/neutral/provider/runner/JsonRpcXyoRunner.d.ts +12 -12
- package/dist/neutral/provider/signer/JsonRpcXyoSignerMethods.d.ts +24 -24
- package/dist/neutral/provider/viewer/JsonRpcAccountBalanceViewer/JsonRpcAccountBalanceViewerMethods.d.ts +32 -32
- package/dist/neutral/provider/viewer/JsonRpcBlockViewer/JsonRpcBlockViewerMethods.d.ts +24 -24
- package/dist/neutral/provider/viewer/JsonRpcFinalizationViewer/JsonRpcFinalizationViewerMethods.d.ts +12 -12
- package/dist/neutral/provider/viewer/JsonRpcMempoolViewer/JsonRpcMempoolViewerMethods.d.ts +24 -24
- package/dist/neutral/provider/viewer/JsonRpcTransactionViewer/JsonRpcTransactionViewer.d.ts +50 -50
- package/dist/neutral/provider/viewer/JsonRpcXyoViewer.d.ts +64 -64
- package/dist/neutral/types/schema/AccountBalanceViewerRpcSchemas.d.ts +32 -32
- package/dist/neutral/types/schema/AllRpcSchemas.d.ts +312 -312
- package/dist/neutral/types/schema/BlockViewerRpcSchemas.d.ts +24 -24
- package/dist/neutral/types/schema/DataLakePageRpcSchemas.d.ts +6 -6
- package/dist/neutral/types/schema/FinalizationViewerRpcSchemas.d.ts +12 -12
- package/dist/neutral/types/schema/MempoolRunnerRpcSchemas.d.ts +24 -24
- package/dist/neutral/types/schema/MempoolViewerRpcSchemas.d.ts +24 -24
- package/dist/neutral/types/schema/TransactionViewerRpcSchema.d.ts +48 -48
- package/dist/neutral/types/schema/XyoRunnerRpcSchemas.d.ts +12 -12
- package/dist/neutral/types/schema/XyoSignerRpcSchemas.d.ts +24 -24
- package/dist/neutral/types/schema/XyoViewerRpcSchemas.d.ts +64 -64
- package/dist/node/index-node.mjs +3 -2
- package/dist/node/index-node.mjs.map +2 -2
- package/dist/node/provider/runner/JsonRpcMempoolRunner/JsonRpcMempoolRunnerMethods.d.ts +24 -24
- package/dist/node/provider/runner/JsonRpcXyoRunner.d.ts +12 -12
- package/dist/node/provider/signer/JsonRpcXyoSignerMethods.d.ts +24 -24
- package/dist/node/provider/viewer/JsonRpcAccountBalanceViewer/JsonRpcAccountBalanceViewerMethods.d.ts +32 -32
- package/dist/node/provider/viewer/JsonRpcBlockViewer/JsonRpcBlockViewerMethods.d.ts +24 -24
- package/dist/node/provider/viewer/JsonRpcFinalizationViewer/JsonRpcFinalizationViewerMethods.d.ts +12 -12
- package/dist/node/provider/viewer/JsonRpcMempoolViewer/JsonRpcMempoolViewerMethods.d.ts +24 -24
- package/dist/node/provider/viewer/JsonRpcTransactionViewer/JsonRpcTransactionViewer.d.ts +50 -50
- package/dist/node/provider/viewer/JsonRpcXyoViewer.d.ts +64 -64
- package/dist/node/types/schema/AccountBalanceViewerRpcSchemas.d.ts +32 -32
- package/dist/node/types/schema/AllRpcSchemas.d.ts +312 -312
- package/dist/node/types/schema/BlockViewerRpcSchemas.d.ts +24 -24
- package/dist/node/types/schema/DataLakePageRpcSchemas.d.ts +6 -6
- package/dist/node/types/schema/FinalizationViewerRpcSchemas.d.ts +12 -12
- package/dist/node/types/schema/MempoolRunnerRpcSchemas.d.ts +24 -24
- package/dist/node/types/schema/MempoolViewerRpcSchemas.d.ts +24 -24
- package/dist/node/types/schema/TransactionViewerRpcSchema.d.ts +48 -48
- package/dist/node/types/schema/XyoRunnerRpcSchemas.d.ts +12 -12
- package/dist/node/types/schema/XyoSignerRpcSchemas.d.ts +24 -24
- package/dist/node/types/schema/XyoViewerRpcSchemas.d.ts +64 -64
- package/package.json +18 -60
package/dist/neutral/index.mjs
CHANGED
|
@@ -1516,7 +1516,7 @@ var createResponseSchema = (resultSchema = z23.undefined()) => z23.object({
|
|
|
1516
1516
|
|
|
1517
1517
|
// src/types/schema/DataLakePageRpcSchemas.ts
|
|
1518
1518
|
import { HashZod as HashZod6 } from "@xylabs/sdk-js";
|
|
1519
|
-
import { PayloadZodLoose as PayloadZodLoose2 } from "@xyo-network/
|
|
1519
|
+
import { PayloadZodLoose as PayloadZodLoose2 } from "@xyo-network/sdk-js";
|
|
1520
1520
|
import { ArrayBufferToJsonZod as ArrayBufferToJsonZod2, JsonToArrayBufferZod as JsonToArrayBufferWideZod } from "@xyo-network/xl1-protocol-model";
|
|
1521
1521
|
import { z as z24 } from "zod";
|
|
1522
1522
|
var JsonToArrayBufferZod2 = JsonToArrayBufferWideZod.pipe(z24.instanceof(ArrayBuffer));
|
|
@@ -1561,8 +1561,9 @@ import {
|
|
|
1561
1561
|
} from "@xyo-network/xl1-protocol-sdk";
|
|
1562
1562
|
|
|
1563
1563
|
// src/transport/HttpRpcTransport.ts
|
|
1564
|
-
import { FetchClientError, FetchJsonClient } from "@xylabs/fetch";
|
|
1565
1564
|
import {
|
|
1565
|
+
FetchClientError,
|
|
1566
|
+
FetchJsonClient,
|
|
1566
1567
|
isDefined,
|
|
1567
1568
|
isError,
|
|
1568
1569
|
isUndefinedOrNull
|