@xyo-network/xl1-rpc 1.10.2 → 1.12.0
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/engine/requestSchemas.d.ts +2 -2
- package/dist/neutral/engine/requestSchemas.d.ts.map +1 -1
- package/dist/neutral/index.mjs +438 -314
- package/dist/neutral/index.mjs.map +1 -1
- package/dist/neutral/provider/connection/XyoConnection.d.ts +2 -2
- package/dist/neutral/provider/connection/XyoConnection.d.ts.map +1 -1
- package/dist/neutral/provider/gateway/Abstract.d.ts +4 -4
- package/dist/neutral/provider/gateway/Abstract.d.ts.map +1 -1
- package/dist/neutral/provider/runner/JsonRpcXyoRunner.d.ts +2 -2
- package/dist/neutral/provider/runner/JsonRpcXyoRunner.d.ts.map +1 -1
- package/dist/neutral/provider/runner/MemoryXyoRunner.d.ts +2 -2
- package/dist/neutral/provider/runner/MemoryXyoRunner.d.ts.map +1 -1
- package/dist/neutral/provider/runner/NodeXyoRunner.d.ts +2 -2
- package/dist/neutral/provider/runner/NodeXyoRunner.d.ts.map +1 -1
- package/dist/neutral/provider/signer/JsonRpcXyoSigner.d.ts +5 -6
- package/dist/neutral/provider/signer/JsonRpcXyoSigner.d.ts.map +1 -1
- package/dist/neutral/provider/signer/MemoryXyoSigner.d.ts +3 -4
- package/dist/neutral/provider/signer/MemoryXyoSigner.d.ts.map +1 -1
- package/dist/neutral/provider/viewer/JsonRpcXyoViewer.d.ts +5 -5
- package/dist/neutral/provider/viewer/JsonRpcXyoViewer.d.ts.map +1 -1
- package/dist/neutral/transport/HttpRpcTransport.d.ts +1 -1
- package/dist/neutral/transport/HttpRpcTransport.d.ts.map +1 -1
- package/dist/neutral/transport/MemoryRpcTransport.d.ts +4 -4
- package/dist/neutral/transport/MemoryRpcTransport.d.ts.map +1 -1
- package/dist/neutral/transport/RpcTransport.d.ts +1 -1
- package/dist/neutral/transport/RpcTransport.d.ts.map +1 -1
- package/dist/neutral/transport/post-message/LegacyPostMessageRpcTransport.d.ts +5 -5
- package/dist/neutral/transport/post-message/LegacyPostMessageRpcTransport.d.ts.map +1 -1
- package/dist/neutral/types/schema/XyoGatewayRpcSchemas.d.ts +422 -76
- package/dist/neutral/types/schema/XyoGatewayRpcSchemas.d.ts.map +1 -1
- package/dist/neutral/types/schema/XyoProviderRpcSchemas.d.ts +297 -3
- package/dist/neutral/types/schema/XyoProviderRpcSchemas.d.ts.map +1 -1
- package/dist/neutral/types/schema/XyoRunnerRpcSchemas.d.ts +231 -3
- package/dist/neutral/types/schema/XyoRunnerRpcSchemas.d.ts.map +1 -1
- package/dist/neutral/types/schema/XyoSignerRpcSchemas.d.ts +838 -3
- package/dist/neutral/types/schema/XyoSignerRpcSchemas.d.ts.map +1 -1
- package/dist/neutral/types/schema/XyoViewerRpcSchemas.d.ts +1611 -3
- package/dist/neutral/types/schema/XyoViewerRpcSchemas.d.ts.map +1 -1
- package/dist/neutral/types/schema/common/Address.d.ts +7 -0
- package/dist/neutral/types/schema/common/Address.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/AllowedBlockPayload.d.ts +11 -0
- package/dist/neutral/types/schema/common/AllowedBlockPayload.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/BlockBoundWitness.d.ts +324 -0
- package/dist/neutral/types/schema/common/BlockBoundWitness.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/BoundWitness.d.ts +420 -0
- package/dist/neutral/types/schema/common/BoundWitness.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/Chain.d.ts +4 -0
- package/dist/neutral/types/schema/common/Chain.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/HydratedBlock.d.ts +474 -0
- package/dist/neutral/types/schema/common/HydratedBlock.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/HydratedTransaction.d.ts +624 -0
- package/dist/neutral/types/schema/common/HydratedTransaction.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/Json.d.ts +7 -0
- package/dist/neutral/types/schema/common/Json.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/Payload.d.ts +134 -0
- package/dist/neutral/types/schema/common/Payload.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/Sequence.d.ts +9 -0
- package/dist/neutral/types/schema/common/Sequence.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/TransactionBoundWitness.d.ts +239 -0
- package/dist/neutral/types/schema/common/TransactionBoundWitness.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/TransactionFees.d.ts +93 -24
- package/dist/neutral/types/schema/common/TransactionFees.d.ts.map +1 -1
- package/dist/neutral/types/schema/common/index.d.ts +11 -13
- package/dist/neutral/types/schema/common/index.d.ts.map +1 -1
- package/dist/neutral/types/schema/common/spec/BigIntZod.spec.d.ts +2 -0
- package/dist/neutral/types/schema/common/spec/BigIntZod.spec.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/spec/HydratedTransaction.spec.d.ts +2 -0
- package/dist/neutral/types/schema/common/spec/HydratedTransaction.spec.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/spec/Payload.spec.d.ts +2 -0
- package/dist/neutral/types/schema/common/spec/Payload.spec.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/spec/TransactionBoundWitnessZod.spec.d.ts +2 -0
- package/dist/neutral/types/schema/common/spec/TransactionBoundWitnessZod.spec.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/spec/UnsignedHydratedTransactionSchema.spec copy.d.ts +2 -0
- package/dist/neutral/types/schema/common/spec/UnsignedHydratedTransactionSchema.spec copy.d.ts.map +1 -0
- package/dist/neutral/types/schema/createRequestSchema.d.ts +2 -22
- package/dist/neutral/types/schema/createRequestSchema.d.ts.map +1 -1
- package/dist/neutral/types/schema/createResponseSchema.d.ts +2 -18
- package/dist/neutral/types/schema/createResponseSchema.d.ts.map +1 -1
- package/dist/neutral/types/schema/index.d.ts +1 -0
- package/dist/neutral/types/schema/index.d.ts.map +1 -1
- package/dist/node/engine/requestSchemas.d.ts +2 -2
- package/dist/node/engine/requestSchemas.d.ts.map +1 -1
- package/dist/node/index-node.mjs +438 -314
- package/dist/node/index-node.mjs.map +1 -1
- package/dist/node/provider/connection/XyoConnection.d.ts +2 -2
- package/dist/node/provider/connection/XyoConnection.d.ts.map +1 -1
- package/dist/node/provider/gateway/Abstract.d.ts +4 -4
- package/dist/node/provider/gateway/Abstract.d.ts.map +1 -1
- package/dist/node/provider/runner/JsonRpcXyoRunner.d.ts +2 -2
- package/dist/node/provider/runner/JsonRpcXyoRunner.d.ts.map +1 -1
- package/dist/node/provider/runner/MemoryXyoRunner.d.ts +2 -2
- package/dist/node/provider/runner/MemoryXyoRunner.d.ts.map +1 -1
- package/dist/node/provider/runner/NodeXyoRunner.d.ts +2 -2
- package/dist/node/provider/runner/NodeXyoRunner.d.ts.map +1 -1
- package/dist/node/provider/signer/JsonRpcXyoSigner.d.ts +5 -6
- package/dist/node/provider/signer/JsonRpcXyoSigner.d.ts.map +1 -1
- package/dist/node/provider/signer/MemoryXyoSigner.d.ts +3 -4
- package/dist/node/provider/signer/MemoryXyoSigner.d.ts.map +1 -1
- package/dist/node/provider/viewer/JsonRpcXyoViewer.d.ts +5 -5
- package/dist/node/provider/viewer/JsonRpcXyoViewer.d.ts.map +1 -1
- package/dist/node/transport/HttpRpcTransport.d.ts +1 -1
- package/dist/node/transport/HttpRpcTransport.d.ts.map +1 -1
- package/dist/node/transport/MemoryRpcTransport.d.ts +4 -4
- package/dist/node/transport/MemoryRpcTransport.d.ts.map +1 -1
- package/dist/node/transport/RpcTransport.d.ts +1 -1
- package/dist/node/transport/RpcTransport.d.ts.map +1 -1
- package/dist/node/transport/post-message/LegacyPostMessageRpcTransport.d.ts +5 -5
- package/dist/node/transport/post-message/LegacyPostMessageRpcTransport.d.ts.map +1 -1
- package/dist/node/types/schema/XyoGatewayRpcSchemas.d.ts +422 -76
- package/dist/node/types/schema/XyoGatewayRpcSchemas.d.ts.map +1 -1
- package/dist/node/types/schema/XyoProviderRpcSchemas.d.ts +297 -3
- package/dist/node/types/schema/XyoProviderRpcSchemas.d.ts.map +1 -1
- package/dist/node/types/schema/XyoRunnerRpcSchemas.d.ts +231 -3
- package/dist/node/types/schema/XyoRunnerRpcSchemas.d.ts.map +1 -1
- package/dist/node/types/schema/XyoSignerRpcSchemas.d.ts +838 -3
- package/dist/node/types/schema/XyoSignerRpcSchemas.d.ts.map +1 -1
- package/dist/node/types/schema/XyoViewerRpcSchemas.d.ts +1611 -3
- package/dist/node/types/schema/XyoViewerRpcSchemas.d.ts.map +1 -1
- package/dist/node/types/schema/common/Address.d.ts +7 -0
- package/dist/node/types/schema/common/Address.d.ts.map +1 -0
- package/dist/node/types/schema/common/AllowedBlockPayload.d.ts +11 -0
- package/dist/node/types/schema/common/AllowedBlockPayload.d.ts.map +1 -0
- package/dist/node/types/schema/common/BlockBoundWitness.d.ts +324 -0
- package/dist/node/types/schema/common/BlockBoundWitness.d.ts.map +1 -0
- package/dist/node/types/schema/common/BoundWitness.d.ts +420 -0
- package/dist/node/types/schema/common/BoundWitness.d.ts.map +1 -0
- package/dist/node/types/schema/common/Chain.d.ts +4 -0
- package/dist/node/types/schema/common/Chain.d.ts.map +1 -0
- package/dist/node/types/schema/common/HydratedBlock.d.ts +474 -0
- package/dist/node/types/schema/common/HydratedBlock.d.ts.map +1 -0
- package/dist/node/types/schema/common/HydratedTransaction.d.ts +624 -0
- package/dist/node/types/schema/common/HydratedTransaction.d.ts.map +1 -0
- package/dist/node/types/schema/common/Json.d.ts +7 -0
- package/dist/node/types/schema/common/Json.d.ts.map +1 -0
- package/dist/node/types/schema/common/Payload.d.ts +134 -0
- package/dist/node/types/schema/common/Payload.d.ts.map +1 -0
- package/dist/node/types/schema/common/Sequence.d.ts +9 -0
- package/dist/node/types/schema/common/Sequence.d.ts.map +1 -0
- package/dist/node/types/schema/common/TransactionBoundWitness.d.ts +239 -0
- package/dist/node/types/schema/common/TransactionBoundWitness.d.ts.map +1 -0
- package/dist/node/types/schema/common/TransactionFees.d.ts +93 -24
- package/dist/node/types/schema/common/TransactionFees.d.ts.map +1 -1
- package/dist/node/types/schema/common/index.d.ts +11 -13
- package/dist/node/types/schema/common/index.d.ts.map +1 -1
- package/dist/node/types/schema/common/spec/BigIntZod.spec.d.ts +2 -0
- package/dist/node/types/schema/common/spec/BigIntZod.spec.d.ts.map +1 -0
- package/dist/node/types/schema/common/spec/HydratedTransaction.spec.d.ts +2 -0
- package/dist/node/types/schema/common/spec/HydratedTransaction.spec.d.ts.map +1 -0
- package/dist/node/types/schema/common/spec/Payload.spec.d.ts +2 -0
- package/dist/node/types/schema/common/spec/Payload.spec.d.ts.map +1 -0
- package/dist/node/types/schema/common/spec/TransactionBoundWitnessZod.spec.d.ts +2 -0
- package/dist/node/types/schema/common/spec/TransactionBoundWitnessZod.spec.d.ts.map +1 -0
- package/dist/node/types/schema/common/spec/UnsignedHydratedTransactionSchema.spec copy.d.ts +2 -0
- package/dist/node/types/schema/common/spec/UnsignedHydratedTransactionSchema.spec copy.d.ts.map +1 -0
- package/dist/node/types/schema/createRequestSchema.d.ts +2 -22
- package/dist/node/types/schema/createRequestSchema.d.ts.map +1 -1
- package/dist/node/types/schema/createResponseSchema.d.ts +2 -18
- package/dist/node/types/schema/createResponseSchema.d.ts.map +1 -1
- package/dist/node/types/schema/index.d.ts +1 -0
- package/dist/node/types/schema/index.d.ts.map +1 -1
- package/package.json +29 -27
- package/src/engine/requestSchemas.ts +2 -2
- package/src/provider/connection/XyoConnection.ts +3 -3
- package/src/provider/connection/spec/XyoConnection.ts +2 -2
- package/src/provider/gateway/Abstract.ts +7 -6
- package/src/provider/runner/JsonRpcXyoRunner.ts +2 -2
- package/src/provider/runner/MemoryXyoRunner.ts +2 -2
- package/src/provider/runner/NodeXyoRunner.ts +2 -2
- package/src/provider/signer/JsonRpcXyoSigner.ts +11 -7
- package/src/provider/signer/MemoryXyoSigner.ts +6 -6
- package/src/provider/signer/spec/RpcEngineXyoSigner.spec.ts +5 -4
- package/src/provider/viewer/JsonRpcXyoViewer.ts +15 -16
- package/src/transport/HttpRpcTransport.ts +7 -7
- package/src/transport/MemoryRpcTransport.ts +15 -13
- package/src/transport/RpcTransport.ts +3 -3
- package/src/transport/post-message/LegacyPostMessageRpcTransport.ts +12 -12
- package/src/types/schema/XyoGatewayRpcSchemas.ts +17 -17
- package/src/types/schema/XyoProviderRpcSchemas.ts +16 -16
- package/src/types/schema/XyoRunnerRpcSchemas.ts +8 -11
- package/src/types/schema/XyoSignerRpcSchemas.ts +30 -25
- package/src/types/schema/XyoViewerRpcSchemas.ts +55 -52
- package/src/types/schema/common/{AddressSchema.ts → Address.ts} +1 -2
- package/src/types/schema/common/AllowedBlockPayload.ts +16 -0
- package/src/types/schema/common/BlockBoundWitness.ts +49 -0
- package/src/types/schema/common/BoundWitness.ts +53 -0
- package/src/types/schema/common/Chain.ts +8 -0
- package/src/types/schema/common/HydratedBlock.ts +32 -0
- package/src/types/schema/common/HydratedTransaction.ts +38 -0
- package/src/types/schema/common/Json.ts +19 -0
- package/src/types/schema/common/Payload.ts +31 -0
- package/src/types/schema/common/Sequence.ts +19 -0
- package/src/types/schema/common/TransactionBoundWitness.ts +42 -0
- package/src/types/schema/common/TransactionFees.ts +37 -11
- package/src/types/schema/common/index.ts +11 -13
- package/src/types/schema/common/spec/{BigIntSchema.spec.ts → BigIntZod.spec.ts} +6 -7
- package/src/types/schema/common/spec/HydratedBlockSchema.spec.ts +9 -83
- package/src/types/schema/common/spec/HydratedTransaction.spec.ts +18 -0
- package/src/types/schema/common/spec/Payload.spec.ts +29 -0
- package/src/types/schema/common/spec/TransactionBoundWitnessZod.spec.ts +18 -0
- package/src/types/schema/common/spec/UnsignedHydratedTransactionSchema.spec copy.ts +53 -0
- package/src/types/schema/index.ts +1 -0
- package/dist/neutral/types/schema/common/AddressSchema.d.ts +0 -5
- package/dist/neutral/types/schema/common/AddressSchema.d.ts.map +0 -1
- package/dist/neutral/types/schema/common/BigIntSchema.d.ts +0 -4
- package/dist/neutral/types/schema/common/BigIntSchema.d.ts.map +0 -1
- package/dist/neutral/types/schema/common/BlockBoundWitnessSchema.d.ts +0 -235
- package/dist/neutral/types/schema/common/BlockBoundWitnessSchema.d.ts.map +0 -1
- package/dist/neutral/types/schema/common/BoundWitnessSchema.d.ts +0 -163
- package/dist/neutral/types/schema/common/BoundWitnessSchema.d.ts.map +0 -1
- package/dist/neutral/types/schema/common/HashSchema.d.ts +0 -5
- package/dist/neutral/types/schema/common/HashSchema.d.ts.map +0 -1
- package/dist/neutral/types/schema/common/HexSchema.d.ts +0 -5
- package/dist/neutral/types/schema/common/HexSchema.d.ts.map +0 -1
- package/dist/neutral/types/schema/common/HydratedBlockSchema.d.ts +0 -282
- package/dist/neutral/types/schema/common/HydratedBlockSchema.d.ts.map +0 -1
- package/dist/neutral/types/schema/common/HydratedTransactionSchema.d.ts +0 -214
- package/dist/neutral/types/schema/common/HydratedTransactionSchema.d.ts.map +0 -1
- package/dist/neutral/types/schema/common/JsonSchema.d.ts +0 -7
- package/dist/neutral/types/schema/common/JsonSchema.d.ts.map +0 -1
- package/dist/neutral/types/schema/common/PayloadSchema.d.ts +0 -28
- package/dist/neutral/types/schema/common/PayloadSchema.d.ts.map +0 -1
- package/dist/neutral/types/schema/common/SequenceSchema.d.ts +0 -9
- package/dist/neutral/types/schema/common/SequenceSchema.d.ts.map +0 -1
- package/dist/neutral/types/schema/common/StorageMetaSchema.d.ts +0 -46
- package/dist/neutral/types/schema/common/StorageMetaSchema.d.ts.map +0 -1
- package/dist/neutral/types/schema/common/TransactionBoundWitnessSchema.d.ts +0 -258
- package/dist/neutral/types/schema/common/TransactionBoundWitnessSchema.d.ts.map +0 -1
- package/dist/neutral/types/schema/common/spec/BigIntSchema.spec.d.ts +0 -2
- package/dist/neutral/types/schema/common/spec/BigIntSchema.spec.d.ts.map +0 -1
- package/dist/node/types/schema/common/AddressSchema.d.ts +0 -5
- package/dist/node/types/schema/common/AddressSchema.d.ts.map +0 -1
- package/dist/node/types/schema/common/BigIntSchema.d.ts +0 -4
- package/dist/node/types/schema/common/BigIntSchema.d.ts.map +0 -1
- package/dist/node/types/schema/common/BlockBoundWitnessSchema.d.ts +0 -235
- package/dist/node/types/schema/common/BlockBoundWitnessSchema.d.ts.map +0 -1
- package/dist/node/types/schema/common/BoundWitnessSchema.d.ts +0 -163
- package/dist/node/types/schema/common/BoundWitnessSchema.d.ts.map +0 -1
- package/dist/node/types/schema/common/HashSchema.d.ts +0 -5
- package/dist/node/types/schema/common/HashSchema.d.ts.map +0 -1
- package/dist/node/types/schema/common/HexSchema.d.ts +0 -5
- package/dist/node/types/schema/common/HexSchema.d.ts.map +0 -1
- package/dist/node/types/schema/common/HydratedBlockSchema.d.ts +0 -282
- package/dist/node/types/schema/common/HydratedBlockSchema.d.ts.map +0 -1
- package/dist/node/types/schema/common/HydratedTransactionSchema.d.ts +0 -214
- package/dist/node/types/schema/common/HydratedTransactionSchema.d.ts.map +0 -1
- package/dist/node/types/schema/common/JsonSchema.d.ts +0 -7
- package/dist/node/types/schema/common/JsonSchema.d.ts.map +0 -1
- package/dist/node/types/schema/common/PayloadSchema.d.ts +0 -28
- package/dist/node/types/schema/common/PayloadSchema.d.ts.map +0 -1
- package/dist/node/types/schema/common/SequenceSchema.d.ts +0 -9
- package/dist/node/types/schema/common/SequenceSchema.d.ts.map +0 -1
- package/dist/node/types/schema/common/StorageMetaSchema.d.ts +0 -46
- package/dist/node/types/schema/common/StorageMetaSchema.d.ts.map +0 -1
- package/dist/node/types/schema/common/TransactionBoundWitnessSchema.d.ts +0 -258
- package/dist/node/types/schema/common/TransactionBoundWitnessSchema.d.ts.map +0 -1
- package/dist/node/types/schema/common/spec/BigIntSchema.spec.d.ts +0 -2
- package/dist/node/types/schema/common/spec/BigIntSchema.spec.d.ts.map +0 -1
- package/src/types/schema/common/BigIntSchema.ts +0 -10
- package/src/types/schema/common/BlockBoundWitnessSchema.ts +0 -30
- package/src/types/schema/common/BoundWitnessSchema.ts +0 -45
- package/src/types/schema/common/HashSchema.ts +0 -7
- package/src/types/schema/common/HexSchema.ts +0 -7
- package/src/types/schema/common/HydratedBlockSchema.ts +0 -26
- package/src/types/schema/common/HydratedTransactionSchema.ts +0 -14
- package/src/types/schema/common/JsonSchema.ts +0 -19
- package/src/types/schema/common/PayloadSchema.ts +0 -6
- package/src/types/schema/common/SequenceSchema.ts +0 -19
- package/src/types/schema/common/StorageMetaSchema.ts +0 -14
- package/src/types/schema/common/TransactionBoundWitnessSchema.ts +0 -33
|
@@ -1,4 +1,298 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const XyoProviderRpcSchemas: {
|
|
3
|
+
xyoProvider_send: {
|
|
4
|
+
params: {
|
|
5
|
+
to: z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
6
|
+
readonly __hex: true;
|
|
7
|
+
}>, {
|
|
8
|
+
readonly __address: true;
|
|
9
|
+
}>, string>>, z.ZodArray<z.ZodObject<{
|
|
10
|
+
schema: z.ZodString;
|
|
11
|
+
}, z.core.$catchall<z.ZodAny>>>, z.ZodArray<z.ZodObject<{
|
|
12
|
+
schema: z.ZodString;
|
|
13
|
+
}, z.core.$catchall<z.ZodAny>>>, z.ZodNumber, z.ZodNumber, z.ZodPipe<z.ZodObject<{
|
|
14
|
+
base: z.ZodBigInt;
|
|
15
|
+
gasLimit: z.ZodBigInt;
|
|
16
|
+
gasPrice: z.ZodBigInt;
|
|
17
|
+
priority: z.ZodBigInt;
|
|
18
|
+
}, z.core.$strip>, z.ZodTransform<{
|
|
19
|
+
base: import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
20
|
+
readonly __hex: true;
|
|
21
|
+
}>;
|
|
22
|
+
gasLimit: import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
23
|
+
readonly __hex: true;
|
|
24
|
+
}>;
|
|
25
|
+
gasPrice: import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
26
|
+
readonly __hex: true;
|
|
27
|
+
}>;
|
|
28
|
+
priority: import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
29
|
+
readonly __hex: true;
|
|
30
|
+
}>;
|
|
31
|
+
}, {
|
|
32
|
+
base: bigint;
|
|
33
|
+
gasLimit: bigint;
|
|
34
|
+
gasPrice: bigint;
|
|
35
|
+
priority: bigint;
|
|
36
|
+
}>>, z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
37
|
+
readonly __hex: true;
|
|
38
|
+
}>, {
|
|
39
|
+
readonly __address: true;
|
|
40
|
+
}>, string>>>], null>;
|
|
41
|
+
from: z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
42
|
+
readonly __hex: true;
|
|
43
|
+
}>, {
|
|
44
|
+
readonly __address: true;
|
|
45
|
+
}>, string>>, z.ZodArray<z.ZodObject<{
|
|
46
|
+
schema: z.ZodString;
|
|
47
|
+
}, z.core.$catchall<z.ZodAny>>>, z.ZodArray<z.ZodObject<{
|
|
48
|
+
schema: z.ZodString;
|
|
49
|
+
}, z.core.$catchall<z.ZodAny>>>, z.ZodNumber, z.ZodNumber, z.ZodPipe<z.ZodObject<{
|
|
50
|
+
base: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
51
|
+
readonly __hex: true;
|
|
52
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
53
|
+
readonly __hex: true;
|
|
54
|
+
}>, unknown>>;
|
|
55
|
+
gasLimit: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
56
|
+
readonly __hex: true;
|
|
57
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
58
|
+
readonly __hex: true;
|
|
59
|
+
}>, unknown>>;
|
|
60
|
+
gasPrice: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
61
|
+
readonly __hex: true;
|
|
62
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
63
|
+
readonly __hex: true;
|
|
64
|
+
}>, unknown>>;
|
|
65
|
+
priority: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
66
|
+
readonly __hex: true;
|
|
67
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
68
|
+
readonly __hex: true;
|
|
69
|
+
}>, unknown>>;
|
|
70
|
+
}, z.core.$strip>, z.ZodTransform<{
|
|
71
|
+
base: bigint;
|
|
72
|
+
gasLimit: bigint;
|
|
73
|
+
gasPrice: bigint;
|
|
74
|
+
priority: bigint;
|
|
75
|
+
}, {
|
|
76
|
+
base: import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
77
|
+
readonly __hex: true;
|
|
78
|
+
}>;
|
|
79
|
+
gasLimit: import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
80
|
+
readonly __hex: true;
|
|
81
|
+
}>;
|
|
82
|
+
gasPrice: import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
83
|
+
readonly __hex: true;
|
|
84
|
+
}>;
|
|
85
|
+
priority: import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
86
|
+
readonly __hex: true;
|
|
87
|
+
}>;
|
|
88
|
+
}>>, z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
89
|
+
readonly __hex: true;
|
|
90
|
+
}>, {
|
|
91
|
+
readonly __address: true;
|
|
92
|
+
}>, string>>>], null>;
|
|
93
|
+
};
|
|
94
|
+
result: {
|
|
95
|
+
to: z.ZodObject<{
|
|
96
|
+
schema: z.ZodLiteral<"network.xyo.boundwitness">;
|
|
97
|
+
addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
98
|
+
readonly __hex: true;
|
|
99
|
+
}>, {
|
|
100
|
+
readonly __address: true;
|
|
101
|
+
}>, string>>>;
|
|
102
|
+
payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
103
|
+
readonly __hex: true;
|
|
104
|
+
}>, {
|
|
105
|
+
readonly __hash: true;
|
|
106
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
107
|
+
readonly __hex: true;
|
|
108
|
+
}>, {
|
|
109
|
+
readonly __hash: true;
|
|
110
|
+
}>, unknown>>>;
|
|
111
|
+
payload_schemas: z.ZodArray<z.ZodString>;
|
|
112
|
+
previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
113
|
+
readonly __hex: true;
|
|
114
|
+
}>, {
|
|
115
|
+
readonly __hash: true;
|
|
116
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
117
|
+
readonly __hex: true;
|
|
118
|
+
}>, {
|
|
119
|
+
readonly __hash: true;
|
|
120
|
+
}>, unknown>>>>;
|
|
121
|
+
$destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
122
|
+
readonly __hex: true;
|
|
123
|
+
}>, {
|
|
124
|
+
readonly __address: true;
|
|
125
|
+
}>, string>>>;
|
|
126
|
+
$sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
127
|
+
readonly __hex: true;
|
|
128
|
+
}>, {
|
|
129
|
+
readonly __hash: true;
|
|
130
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
131
|
+
readonly __hex: true;
|
|
132
|
+
}>, {
|
|
133
|
+
readonly __hash: true;
|
|
134
|
+
}>, unknown>>>;
|
|
135
|
+
$signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
136
|
+
readonly __hex: true;
|
|
137
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
138
|
+
readonly __hex: true;
|
|
139
|
+
}>, unknown>>, z.ZodNull]>>;
|
|
140
|
+
_hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
141
|
+
readonly __hex: true;
|
|
142
|
+
}>, {
|
|
143
|
+
readonly __hash: true;
|
|
144
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
145
|
+
readonly __hex: true;
|
|
146
|
+
}>, {
|
|
147
|
+
readonly __hash: true;
|
|
148
|
+
}>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
149
|
+
readonly __hex: true;
|
|
150
|
+
}>, {
|
|
151
|
+
readonly __hash: true;
|
|
152
|
+
}>>>>;
|
|
153
|
+
_dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
154
|
+
readonly __hex: true;
|
|
155
|
+
}>, {
|
|
156
|
+
readonly __hash: true;
|
|
157
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
158
|
+
readonly __hex: true;
|
|
159
|
+
}>, {
|
|
160
|
+
readonly __hash: true;
|
|
161
|
+
}>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
162
|
+
readonly __hex: true;
|
|
163
|
+
}>, {
|
|
164
|
+
readonly __hash: true;
|
|
165
|
+
}>>>>;
|
|
166
|
+
_sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
167
|
+
nbf: z.ZodNumber;
|
|
168
|
+
exp: z.ZodNumber;
|
|
169
|
+
fees: z.ZodObject<{
|
|
170
|
+
base: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
171
|
+
readonly __hex: true;
|
|
172
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
173
|
+
readonly __hex: true;
|
|
174
|
+
}>, unknown>>;
|
|
175
|
+
gasLimit: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
176
|
+
readonly __hex: true;
|
|
177
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
178
|
+
readonly __hex: true;
|
|
179
|
+
}>, unknown>>;
|
|
180
|
+
gasPrice: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
181
|
+
readonly __hex: true;
|
|
182
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
183
|
+
readonly __hex: true;
|
|
184
|
+
}>, unknown>>;
|
|
185
|
+
priority: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
186
|
+
readonly __hex: true;
|
|
187
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
188
|
+
readonly __hex: true;
|
|
189
|
+
}>, unknown>>;
|
|
190
|
+
}, z.core.$strip>;
|
|
191
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
|
|
192
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
|
|
193
|
+
script: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
194
|
+
}, z.core.$strip>;
|
|
195
|
+
from: z.ZodObject<{
|
|
196
|
+
schema: z.ZodLiteral<"network.xyo.boundwitness">;
|
|
197
|
+
addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
198
|
+
readonly __hex: true;
|
|
199
|
+
}>, {
|
|
200
|
+
readonly __address: true;
|
|
201
|
+
}>, string>>>;
|
|
202
|
+
payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
203
|
+
readonly __hex: true;
|
|
204
|
+
}>, {
|
|
205
|
+
readonly __hash: true;
|
|
206
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
207
|
+
readonly __hex: true;
|
|
208
|
+
}>, {
|
|
209
|
+
readonly __hash: true;
|
|
210
|
+
}>, unknown>>>;
|
|
211
|
+
payload_schemas: z.ZodArray<z.ZodString>;
|
|
212
|
+
previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
213
|
+
readonly __hex: true;
|
|
214
|
+
}>, {
|
|
215
|
+
readonly __hash: true;
|
|
216
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
217
|
+
readonly __hex: true;
|
|
218
|
+
}>, {
|
|
219
|
+
readonly __hash: true;
|
|
220
|
+
}>, unknown>>>>;
|
|
221
|
+
$destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
222
|
+
readonly __hex: true;
|
|
223
|
+
}>, {
|
|
224
|
+
readonly __address: true;
|
|
225
|
+
}>, string>>>;
|
|
226
|
+
$sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
227
|
+
readonly __hex: true;
|
|
228
|
+
}>, {
|
|
229
|
+
readonly __hash: true;
|
|
230
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
231
|
+
readonly __hex: true;
|
|
232
|
+
}>, {
|
|
233
|
+
readonly __hash: true;
|
|
234
|
+
}>, unknown>>>;
|
|
235
|
+
$signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
236
|
+
readonly __hex: true;
|
|
237
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
238
|
+
readonly __hex: true;
|
|
239
|
+
}>, unknown>>, z.ZodNull]>>;
|
|
240
|
+
_hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
241
|
+
readonly __hex: true;
|
|
242
|
+
}>, {
|
|
243
|
+
readonly __hash: true;
|
|
244
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
245
|
+
readonly __hex: true;
|
|
246
|
+
}>, {
|
|
247
|
+
readonly __hash: true;
|
|
248
|
+
}>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
249
|
+
readonly __hex: true;
|
|
250
|
+
}>, {
|
|
251
|
+
readonly __hash: true;
|
|
252
|
+
}>>>>;
|
|
253
|
+
_dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
254
|
+
readonly __hex: true;
|
|
255
|
+
}>, {
|
|
256
|
+
readonly __hash: true;
|
|
257
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
258
|
+
readonly __hex: true;
|
|
259
|
+
}>, {
|
|
260
|
+
readonly __hash: true;
|
|
261
|
+
}>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
262
|
+
readonly __hex: true;
|
|
263
|
+
}>, {
|
|
264
|
+
readonly __hash: true;
|
|
265
|
+
}>>>>;
|
|
266
|
+
_sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
267
|
+
nbf: z.ZodNumber;
|
|
268
|
+
exp: z.ZodNumber;
|
|
269
|
+
fees: z.ZodObject<{
|
|
270
|
+
base: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
271
|
+
readonly __hex: true;
|
|
272
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
273
|
+
readonly __hex: true;
|
|
274
|
+
}>, unknown>>;
|
|
275
|
+
gasLimit: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
276
|
+
readonly __hex: true;
|
|
277
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
278
|
+
readonly __hex: true;
|
|
279
|
+
}>, unknown>>;
|
|
280
|
+
gasPrice: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
281
|
+
readonly __hex: true;
|
|
282
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
283
|
+
readonly __hex: true;
|
|
284
|
+
}>, unknown>>;
|
|
285
|
+
priority: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
286
|
+
readonly __hex: true;
|
|
287
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
288
|
+
readonly __hex: true;
|
|
289
|
+
}>, unknown>>;
|
|
290
|
+
}, z.core.$strip>;
|
|
291
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
|
|
292
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
|
|
293
|
+
script: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
294
|
+
}, z.core.$strip>;
|
|
295
|
+
};
|
|
296
|
+
};
|
|
297
|
+
};
|
|
4
298
|
//# sourceMappingURL=XyoProviderRpcSchemas.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"XyoProviderRpcSchemas.d.ts","sourceRoot":"","sources":["../../../../src/types/schema/XyoProviderRpcSchemas.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"XyoProviderRpcSchemas.d.ts","sourceRoot":"","sources":["../../../../src/types/schema/XyoProviderRpcSchemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AASvB,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2BgB,CAAA"}
|
|
@@ -1,4 +1,232 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const XyoRunnerRpcSchemas: {
|
|
3
|
+
xyoRunner_broadcastTransaction: {
|
|
4
|
+
params: {
|
|
5
|
+
to: z.ZodTuple<[z.ZodTuple<[z.ZodObject<{
|
|
6
|
+
schema: z.ZodLiteral<"network.xyo.boundwitness">;
|
|
7
|
+
addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
8
|
+
readonly __hex: true;
|
|
9
|
+
}>, {
|
|
10
|
+
readonly __address: true;
|
|
11
|
+
}>, string>>>;
|
|
12
|
+
payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
13
|
+
readonly __hex: true;
|
|
14
|
+
}>, {
|
|
15
|
+
readonly __hash: true;
|
|
16
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
17
|
+
readonly __hex: true;
|
|
18
|
+
}>, {
|
|
19
|
+
readonly __hash: true;
|
|
20
|
+
}>, unknown>>>;
|
|
21
|
+
payload_schemas: z.ZodArray<z.ZodString>;
|
|
22
|
+
previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
23
|
+
readonly __hex: true;
|
|
24
|
+
}>, {
|
|
25
|
+
readonly __hash: true;
|
|
26
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
27
|
+
readonly __hex: true;
|
|
28
|
+
}>, {
|
|
29
|
+
readonly __hash: true;
|
|
30
|
+
}>, unknown>>>>;
|
|
31
|
+
$destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
32
|
+
readonly __hex: true;
|
|
33
|
+
}>, {
|
|
34
|
+
readonly __address: true;
|
|
35
|
+
}>, string>>>;
|
|
36
|
+
$sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
37
|
+
readonly __hex: true;
|
|
38
|
+
}>, {
|
|
39
|
+
readonly __hash: true;
|
|
40
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
41
|
+
readonly __hex: true;
|
|
42
|
+
}>, {
|
|
43
|
+
readonly __hash: true;
|
|
44
|
+
}>, unknown>>>;
|
|
45
|
+
$signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
46
|
+
readonly __hex: true;
|
|
47
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
48
|
+
readonly __hex: true;
|
|
49
|
+
}>, unknown>>, z.ZodNull]>>;
|
|
50
|
+
_hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
51
|
+
readonly __hex: true;
|
|
52
|
+
}>, {
|
|
53
|
+
readonly __hash: true;
|
|
54
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
55
|
+
readonly __hex: true;
|
|
56
|
+
}>, {
|
|
57
|
+
readonly __hash: true;
|
|
58
|
+
}>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
59
|
+
readonly __hex: true;
|
|
60
|
+
}>, {
|
|
61
|
+
readonly __hash: true;
|
|
62
|
+
}>>>>;
|
|
63
|
+
_dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
64
|
+
readonly __hex: true;
|
|
65
|
+
}>, {
|
|
66
|
+
readonly __hash: true;
|
|
67
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
68
|
+
readonly __hex: true;
|
|
69
|
+
}>, {
|
|
70
|
+
readonly __hash: true;
|
|
71
|
+
}>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
72
|
+
readonly __hex: true;
|
|
73
|
+
}>, {
|
|
74
|
+
readonly __hash: true;
|
|
75
|
+
}>>>>;
|
|
76
|
+
_sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
77
|
+
nbf: z.ZodNumber;
|
|
78
|
+
exp: z.ZodNumber;
|
|
79
|
+
fees: z.ZodObject<{
|
|
80
|
+
base: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
81
|
+
readonly __hex: true;
|
|
82
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
83
|
+
readonly __hex: true;
|
|
84
|
+
}>, unknown>>;
|
|
85
|
+
gasLimit: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
86
|
+
readonly __hex: true;
|
|
87
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
88
|
+
readonly __hex: true;
|
|
89
|
+
}>, unknown>>;
|
|
90
|
+
gasPrice: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
91
|
+
readonly __hex: true;
|
|
92
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
93
|
+
readonly __hex: true;
|
|
94
|
+
}>, unknown>>;
|
|
95
|
+
priority: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
96
|
+
readonly __hex: true;
|
|
97
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
98
|
+
readonly __hex: true;
|
|
99
|
+
}>, unknown>>;
|
|
100
|
+
}, z.core.$strip>;
|
|
101
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
|
|
102
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
|
|
103
|
+
script: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
104
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
105
|
+
schema: z.ZodString;
|
|
106
|
+
}, z.core.$catchall<z.ZodAny>>>], null>], null>;
|
|
107
|
+
from: z.ZodTuple<[z.ZodTuple<[z.ZodObject<{
|
|
108
|
+
schema: z.ZodLiteral<"network.xyo.boundwitness">;
|
|
109
|
+
addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
110
|
+
readonly __hex: true;
|
|
111
|
+
}>, {
|
|
112
|
+
readonly __address: true;
|
|
113
|
+
}>, string>>>;
|
|
114
|
+
payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
115
|
+
readonly __hex: true;
|
|
116
|
+
}>, {
|
|
117
|
+
readonly __hash: true;
|
|
118
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
119
|
+
readonly __hex: true;
|
|
120
|
+
}>, {
|
|
121
|
+
readonly __hash: true;
|
|
122
|
+
}>, unknown>>>;
|
|
123
|
+
payload_schemas: z.ZodArray<z.ZodString>;
|
|
124
|
+
previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
125
|
+
readonly __hex: true;
|
|
126
|
+
}>, {
|
|
127
|
+
readonly __hash: true;
|
|
128
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
129
|
+
readonly __hex: true;
|
|
130
|
+
}>, {
|
|
131
|
+
readonly __hash: true;
|
|
132
|
+
}>, unknown>>>>;
|
|
133
|
+
$destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
134
|
+
readonly __hex: true;
|
|
135
|
+
}>, {
|
|
136
|
+
readonly __address: true;
|
|
137
|
+
}>, string>>>;
|
|
138
|
+
$sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
139
|
+
readonly __hex: true;
|
|
140
|
+
}>, {
|
|
141
|
+
readonly __hash: true;
|
|
142
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
143
|
+
readonly __hex: true;
|
|
144
|
+
}>, {
|
|
145
|
+
readonly __hash: true;
|
|
146
|
+
}>, unknown>>>;
|
|
147
|
+
$signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
148
|
+
readonly __hex: true;
|
|
149
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
150
|
+
readonly __hex: true;
|
|
151
|
+
}>, unknown>>, z.ZodNull]>>;
|
|
152
|
+
_hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
153
|
+
readonly __hex: true;
|
|
154
|
+
}>, {
|
|
155
|
+
readonly __hash: true;
|
|
156
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
157
|
+
readonly __hex: true;
|
|
158
|
+
}>, {
|
|
159
|
+
readonly __hash: true;
|
|
160
|
+
}>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
161
|
+
readonly __hex: true;
|
|
162
|
+
}>, {
|
|
163
|
+
readonly __hash: true;
|
|
164
|
+
}>>>>;
|
|
165
|
+
_dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
166
|
+
readonly __hex: true;
|
|
167
|
+
}>, {
|
|
168
|
+
readonly __hash: true;
|
|
169
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
170
|
+
readonly __hex: true;
|
|
171
|
+
}>, {
|
|
172
|
+
readonly __hash: true;
|
|
173
|
+
}>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
174
|
+
readonly __hex: true;
|
|
175
|
+
}>, {
|
|
176
|
+
readonly __hash: true;
|
|
177
|
+
}>>>>;
|
|
178
|
+
_sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
179
|
+
nbf: z.ZodNumber;
|
|
180
|
+
exp: z.ZodNumber;
|
|
181
|
+
fees: z.ZodObject<{
|
|
182
|
+
base: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
183
|
+
readonly __hex: true;
|
|
184
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
185
|
+
readonly __hex: true;
|
|
186
|
+
}>, unknown>>;
|
|
187
|
+
gasLimit: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
188
|
+
readonly __hex: true;
|
|
189
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
190
|
+
readonly __hex: true;
|
|
191
|
+
}>, unknown>>;
|
|
192
|
+
gasPrice: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
193
|
+
readonly __hex: true;
|
|
194
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
195
|
+
readonly __hex: true;
|
|
196
|
+
}>, unknown>>;
|
|
197
|
+
priority: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
198
|
+
readonly __hex: true;
|
|
199
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
200
|
+
readonly __hex: true;
|
|
201
|
+
}>, unknown>>;
|
|
202
|
+
}, z.core.$strip>;
|
|
203
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
|
|
204
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
|
|
205
|
+
script: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
206
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
207
|
+
schema: z.ZodString;
|
|
208
|
+
}, z.core.$catchall<z.ZodAny>>>], null>], null>;
|
|
209
|
+
};
|
|
210
|
+
result: {
|
|
211
|
+
to: z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
212
|
+
readonly __hex: true;
|
|
213
|
+
}>, {
|
|
214
|
+
readonly __hash: true;
|
|
215
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
216
|
+
readonly __hex: true;
|
|
217
|
+
}>, {
|
|
218
|
+
readonly __hash: true;
|
|
219
|
+
}>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
220
|
+
readonly __hex: true;
|
|
221
|
+
}>, {
|
|
222
|
+
readonly __hash: true;
|
|
223
|
+
}>>>;
|
|
224
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
225
|
+
readonly __hex: true;
|
|
226
|
+
}>, {
|
|
227
|
+
readonly __hash: true;
|
|
228
|
+
}>, string>>;
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
};
|
|
4
232
|
//# sourceMappingURL=XyoRunnerRpcSchemas.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"XyoRunnerRpcSchemas.d.ts","sourceRoot":"","sources":["../../../../src/types/schema/XyoRunnerRpcSchemas.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"XyoRunnerRpcSchemas.d.ts","sourceRoot":"","sources":["../../../../src/types/schema/XyoRunnerRpcSchemas.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAMvB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAWgB,CAAA"}
|