@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,91 +1,437 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { Chain } from '@xyo-network/xl1-protocol';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare const ChainConnectionSchema: z.ZodObject<{
|
|
6
|
-
chainId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodType<Hex, z.ZodTypeDef, Hex>]>>;
|
|
3
|
+
export declare const ChainConnectionZod: z.ZodObject<{
|
|
4
|
+
chainId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodCustom<Chain, Chain>]>>;
|
|
7
5
|
name: z.ZodString;
|
|
8
6
|
url: z.ZodString;
|
|
9
|
-
},
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
url: string;
|
|
16
|
-
chainId?: string | Hex | undefined;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
export declare const CaveatTypesZod: z.ZodEnum<{
|
|
9
|
+
chain: "chain";
|
|
10
|
+
expiration: "expiration";
|
|
11
|
+
filteredResponse: "filteredResponse";
|
|
12
|
+
rateLimit: "rateLimit";
|
|
17
13
|
}>;
|
|
18
|
-
export declare const
|
|
19
|
-
|
|
20
|
-
|
|
14
|
+
export declare const CaveatsZod: z.ZodObject<{
|
|
15
|
+
type: z.ZodEnum<{
|
|
16
|
+
chain: "chain";
|
|
17
|
+
expiration: "expiration";
|
|
18
|
+
filteredResponse: "filteredResponse";
|
|
19
|
+
rateLimit: "rateLimit";
|
|
20
|
+
}>;
|
|
21
21
|
value: z.ZodUnknown;
|
|
22
|
-
},
|
|
23
|
-
|
|
24
|
-
value?: unknown;
|
|
25
|
-
}, {
|
|
26
|
-
type: "chain" | "expiration" | "filteredResponse" | "rateLimit";
|
|
27
|
-
value?: unknown;
|
|
28
|
-
}>;
|
|
29
|
-
export declare const PermissionSchema: z.ZodObject<{
|
|
22
|
+
}, z.core.$strip>;
|
|
23
|
+
export declare const PermissionZod: z.ZodObject<{
|
|
30
24
|
capability: z.ZodString;
|
|
31
25
|
caveats: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
32
|
-
type: z.ZodEnum<
|
|
26
|
+
type: z.ZodEnum<{
|
|
27
|
+
chain: "chain";
|
|
28
|
+
expiration: "expiration";
|
|
29
|
+
filteredResponse: "filteredResponse";
|
|
30
|
+
rateLimit: "rateLimit";
|
|
31
|
+
}>;
|
|
33
32
|
value: z.ZodUnknown;
|
|
34
|
-
},
|
|
35
|
-
type: "chain" | "expiration" | "filteredResponse" | "rateLimit";
|
|
36
|
-
value?: unknown;
|
|
37
|
-
}, {
|
|
38
|
-
type: "chain" | "expiration" | "filteredResponse" | "rateLimit";
|
|
39
|
-
value?: unknown;
|
|
40
|
-
}>, "many">>;
|
|
33
|
+
}, z.core.$strip>>>;
|
|
41
34
|
invoker: z.ZodString;
|
|
42
|
-
},
|
|
43
|
-
|
|
44
|
-
invoker: string;
|
|
45
|
-
caveats?: {
|
|
46
|
-
type: "chain" | "expiration" | "filteredResponse" | "rateLimit";
|
|
47
|
-
value?: unknown;
|
|
48
|
-
}[] | undefined;
|
|
49
|
-
}, {
|
|
50
|
-
capability: string;
|
|
51
|
-
invoker: string;
|
|
52
|
-
caveats?: {
|
|
53
|
-
type: "chain" | "expiration" | "filteredResponse" | "rateLimit";
|
|
54
|
-
value?: unknown;
|
|
55
|
-
}[] | undefined;
|
|
56
|
-
}>;
|
|
57
|
-
export declare const InvokerPermissionSchema: z.ZodObject<{
|
|
35
|
+
}, z.core.$strip>;
|
|
36
|
+
export declare const InvokerPermissionZod: z.ZodObject<{
|
|
58
37
|
capability: z.ZodString;
|
|
59
38
|
caveats: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
60
|
-
type: z.ZodEnum<
|
|
39
|
+
type: z.ZodEnum<{
|
|
40
|
+
chain: "chain";
|
|
41
|
+
expiration: "expiration";
|
|
42
|
+
filteredResponse: "filteredResponse";
|
|
43
|
+
rateLimit: "rateLimit";
|
|
44
|
+
}>;
|
|
61
45
|
value: z.ZodUnknown;
|
|
62
|
-
},
|
|
63
|
-
type: "chain" | "expiration" | "filteredResponse" | "rateLimit";
|
|
64
|
-
value?: unknown;
|
|
65
|
-
}, {
|
|
66
|
-
type: "chain" | "expiration" | "filteredResponse" | "rateLimit";
|
|
67
|
-
value?: unknown;
|
|
68
|
-
}>, "many">>;
|
|
46
|
+
}, z.core.$strip>>>;
|
|
69
47
|
invoker: z.ZodString;
|
|
70
|
-
} & {
|
|
71
48
|
date: z.ZodOptional<z.ZodNumber>;
|
|
72
|
-
},
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
|
|
49
|
+
}, z.core.$strip>;
|
|
50
|
+
export type ChainConnection = z.infer<typeof ChainConnectionZod>;
|
|
51
|
+
export declare const XyoGatewayRpcSchemas: {
|
|
52
|
+
xyoGateway_submitTransaction: {
|
|
53
|
+
params: {
|
|
54
|
+
from: z.ZodArray<z.ZodTuple<[z.ZodObject<{
|
|
55
|
+
schema: z.ZodLiteral<"network.xyo.boundwitness">;
|
|
56
|
+
addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
57
|
+
readonly __hex: true;
|
|
58
|
+
}>, {
|
|
59
|
+
readonly __address: true;
|
|
60
|
+
}>, string>>>;
|
|
61
|
+
payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
62
|
+
readonly __hex: true;
|
|
63
|
+
}>, {
|
|
64
|
+
readonly __hash: true;
|
|
65
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
66
|
+
readonly __hex: true;
|
|
67
|
+
}>, {
|
|
68
|
+
readonly __hash: true;
|
|
69
|
+
}>, unknown>>>;
|
|
70
|
+
payload_schemas: z.ZodArray<z.ZodString>;
|
|
71
|
+
previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
72
|
+
readonly __hex: true;
|
|
73
|
+
}>, {
|
|
74
|
+
readonly __hash: true;
|
|
75
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
76
|
+
readonly __hex: true;
|
|
77
|
+
}>, {
|
|
78
|
+
readonly __hash: true;
|
|
79
|
+
}>, unknown>>>>;
|
|
80
|
+
$destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
81
|
+
readonly __hex: true;
|
|
82
|
+
}>, {
|
|
83
|
+
readonly __address: true;
|
|
84
|
+
}>, string>>>;
|
|
85
|
+
$sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
86
|
+
readonly __hex: true;
|
|
87
|
+
}>, {
|
|
88
|
+
readonly __hash: true;
|
|
89
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
90
|
+
readonly __hex: true;
|
|
91
|
+
}>, {
|
|
92
|
+
readonly __hash: true;
|
|
93
|
+
}>, unknown>>>;
|
|
94
|
+
$signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
95
|
+
readonly __hex: true;
|
|
96
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
97
|
+
readonly __hex: true;
|
|
98
|
+
}>, unknown>>, z.ZodNull]>>;
|
|
99
|
+
_hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
100
|
+
readonly __hex: true;
|
|
101
|
+
}>, {
|
|
102
|
+
readonly __hash: true;
|
|
103
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
104
|
+
readonly __hex: true;
|
|
105
|
+
}>, {
|
|
106
|
+
readonly __hash: true;
|
|
107
|
+
}>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
108
|
+
readonly __hex: true;
|
|
109
|
+
}>, {
|
|
110
|
+
readonly __hash: true;
|
|
111
|
+
}>>>>;
|
|
112
|
+
_dataHash: z.ZodOptional<z.ZodPipe<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>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
121
|
+
readonly __hex: true;
|
|
122
|
+
}>, {
|
|
123
|
+
readonly __hash: true;
|
|
124
|
+
}>>>>;
|
|
125
|
+
_sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
126
|
+
nbf: z.ZodNumber;
|
|
127
|
+
exp: z.ZodNumber;
|
|
128
|
+
fees: z.ZodObject<{
|
|
129
|
+
base: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
130
|
+
readonly __hex: true;
|
|
131
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
132
|
+
readonly __hex: true;
|
|
133
|
+
}>, unknown>>;
|
|
134
|
+
gasLimit: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
135
|
+
readonly __hex: true;
|
|
136
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
137
|
+
readonly __hex: true;
|
|
138
|
+
}>, unknown>>;
|
|
139
|
+
gasPrice: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
140
|
+
readonly __hex: true;
|
|
141
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
142
|
+
readonly __hex: true;
|
|
143
|
+
}>, unknown>>;
|
|
144
|
+
priority: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
145
|
+
readonly __hex: true;
|
|
146
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
147
|
+
readonly __hex: true;
|
|
148
|
+
}>, unknown>>;
|
|
149
|
+
}, z.core.$strip>;
|
|
150
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<Chain, string>>;
|
|
151
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<Chain, string>>;
|
|
152
|
+
script: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
153
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
154
|
+
schema: z.ZodString;
|
|
155
|
+
}, z.core.$catchall<z.ZodAny>>>], null>>;
|
|
156
|
+
to: z.ZodArray<z.ZodTuple<[z.ZodObject<{
|
|
157
|
+
schema: z.ZodLiteral<"network.xyo.boundwitness">;
|
|
158
|
+
addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
159
|
+
readonly __hex: true;
|
|
160
|
+
}>, {
|
|
161
|
+
readonly __address: true;
|
|
162
|
+
}>, string>>>;
|
|
163
|
+
payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
164
|
+
readonly __hex: true;
|
|
165
|
+
}>, {
|
|
166
|
+
readonly __hash: true;
|
|
167
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
168
|
+
readonly __hex: true;
|
|
169
|
+
}>, {
|
|
170
|
+
readonly __hash: true;
|
|
171
|
+
}>, unknown>>>;
|
|
172
|
+
payload_schemas: z.ZodArray<z.ZodString>;
|
|
173
|
+
previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
174
|
+
readonly __hex: true;
|
|
175
|
+
}>, {
|
|
176
|
+
readonly __hash: true;
|
|
177
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
178
|
+
readonly __hex: true;
|
|
179
|
+
}>, {
|
|
180
|
+
readonly __hash: true;
|
|
181
|
+
}>, unknown>>>>;
|
|
182
|
+
$destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
183
|
+
readonly __hex: true;
|
|
184
|
+
}>, {
|
|
185
|
+
readonly __address: true;
|
|
186
|
+
}>, string>>>;
|
|
187
|
+
$sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
188
|
+
readonly __hex: true;
|
|
189
|
+
}>, {
|
|
190
|
+
readonly __hash: true;
|
|
191
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
192
|
+
readonly __hex: true;
|
|
193
|
+
}>, {
|
|
194
|
+
readonly __hash: true;
|
|
195
|
+
}>, unknown>>>;
|
|
196
|
+
$signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
197
|
+
readonly __hex: true;
|
|
198
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
199
|
+
readonly __hex: true;
|
|
200
|
+
}>, unknown>>, z.ZodNull]>>;
|
|
201
|
+
_hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
202
|
+
readonly __hex: true;
|
|
203
|
+
}>, {
|
|
204
|
+
readonly __hash: true;
|
|
205
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
206
|
+
readonly __hex: true;
|
|
207
|
+
}>, {
|
|
208
|
+
readonly __hash: true;
|
|
209
|
+
}>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
210
|
+
readonly __hex: true;
|
|
211
|
+
}>, {
|
|
212
|
+
readonly __hash: true;
|
|
213
|
+
}>>>>;
|
|
214
|
+
_dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
215
|
+
readonly __hex: true;
|
|
216
|
+
}>, {
|
|
217
|
+
readonly __hash: true;
|
|
218
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
219
|
+
readonly __hex: true;
|
|
220
|
+
}>, {
|
|
221
|
+
readonly __hash: true;
|
|
222
|
+
}>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
223
|
+
readonly __hex: true;
|
|
224
|
+
}>, {
|
|
225
|
+
readonly __hash: true;
|
|
226
|
+
}>>>>;
|
|
227
|
+
_sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
228
|
+
nbf: z.ZodNumber;
|
|
229
|
+
exp: z.ZodNumber;
|
|
230
|
+
fees: z.ZodObject<{
|
|
231
|
+
base: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
232
|
+
readonly __hex: true;
|
|
233
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
234
|
+
readonly __hex: true;
|
|
235
|
+
}>, unknown>>;
|
|
236
|
+
gasLimit: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
237
|
+
readonly __hex: true;
|
|
238
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
239
|
+
readonly __hex: true;
|
|
240
|
+
}>, unknown>>;
|
|
241
|
+
gasPrice: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
242
|
+
readonly __hex: true;
|
|
243
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
244
|
+
readonly __hex: true;
|
|
245
|
+
}>, unknown>>;
|
|
246
|
+
priority: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
247
|
+
readonly __hex: true;
|
|
248
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
249
|
+
readonly __hex: true;
|
|
250
|
+
}>, unknown>>;
|
|
251
|
+
}, z.core.$strip>;
|
|
252
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<Chain, string>>;
|
|
253
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<Chain, string>>;
|
|
254
|
+
script: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
255
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
256
|
+
schema: z.ZodString;
|
|
257
|
+
}, z.core.$catchall<z.ZodAny>>>], null>>;
|
|
258
|
+
};
|
|
259
|
+
result: {
|
|
260
|
+
from: z.ZodObject<{
|
|
261
|
+
schema: z.ZodLiteral<"network.xyo.boundwitness">;
|
|
262
|
+
addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
263
|
+
readonly __hex: true;
|
|
264
|
+
}>, {
|
|
265
|
+
readonly __address: true;
|
|
266
|
+
}>, string>>>;
|
|
267
|
+
payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
268
|
+
readonly __hex: true;
|
|
269
|
+
}>, {
|
|
270
|
+
readonly __hash: true;
|
|
271
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
272
|
+
readonly __hex: true;
|
|
273
|
+
}>, {
|
|
274
|
+
readonly __hash: true;
|
|
275
|
+
}>, unknown>>>;
|
|
276
|
+
payload_schemas: z.ZodArray<z.ZodString>;
|
|
277
|
+
previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
278
|
+
readonly __hex: true;
|
|
279
|
+
}>, {
|
|
280
|
+
readonly __hash: true;
|
|
281
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
282
|
+
readonly __hex: true;
|
|
283
|
+
}>, {
|
|
284
|
+
readonly __hash: true;
|
|
285
|
+
}>, unknown>>>>;
|
|
286
|
+
$destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
287
|
+
readonly __hex: true;
|
|
288
|
+
}>, {
|
|
289
|
+
readonly __address: true;
|
|
290
|
+
}>, string>>>;
|
|
291
|
+
$sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
292
|
+
readonly __hex: true;
|
|
293
|
+
}>, {
|
|
294
|
+
readonly __hash: true;
|
|
295
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
296
|
+
readonly __hex: true;
|
|
297
|
+
}>, {
|
|
298
|
+
readonly __hash: true;
|
|
299
|
+
}>, unknown>>>;
|
|
300
|
+
$signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
301
|
+
readonly __hex: true;
|
|
302
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
303
|
+
readonly __hex: true;
|
|
304
|
+
}>, unknown>>, z.ZodNull]>>;
|
|
305
|
+
_hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
306
|
+
readonly __hex: true;
|
|
307
|
+
}>, {
|
|
308
|
+
readonly __hash: true;
|
|
309
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
310
|
+
readonly __hex: true;
|
|
311
|
+
}>, {
|
|
312
|
+
readonly __hash: true;
|
|
313
|
+
}>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
314
|
+
readonly __hex: true;
|
|
315
|
+
}>, {
|
|
316
|
+
readonly __hash: true;
|
|
317
|
+
}>>>>;
|
|
318
|
+
_dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
319
|
+
readonly __hex: true;
|
|
320
|
+
}>, {
|
|
321
|
+
readonly __hash: true;
|
|
322
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
323
|
+
readonly __hex: true;
|
|
324
|
+
}>, {
|
|
325
|
+
readonly __hash: true;
|
|
326
|
+
}>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
327
|
+
readonly __hex: true;
|
|
328
|
+
}>, {
|
|
329
|
+
readonly __hash: true;
|
|
330
|
+
}>>>>;
|
|
331
|
+
_sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
332
|
+
block: z.ZodNumber;
|
|
333
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<Chain, string>>;
|
|
334
|
+
previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
335
|
+
readonly __hex: true;
|
|
336
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
337
|
+
readonly __hex: true;
|
|
338
|
+
}>, unknown>>>;
|
|
339
|
+
protocol: z.ZodOptional<z.ZodNumber>;
|
|
340
|
+
step_hashes: z.ZodOptional<z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
341
|
+
readonly __hex: true;
|
|
342
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
343
|
+
readonly __hex: true;
|
|
344
|
+
}>, unknown>>>>;
|
|
345
|
+
$epoch: z.ZodNumber;
|
|
346
|
+
}, z.core.$strip>;
|
|
347
|
+
to: z.ZodObject<{
|
|
348
|
+
schema: z.ZodLiteral<"network.xyo.boundwitness">;
|
|
349
|
+
addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
350
|
+
readonly __hex: true;
|
|
351
|
+
}>, {
|
|
352
|
+
readonly __address: true;
|
|
353
|
+
}>, string>>>;
|
|
354
|
+
payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
355
|
+
readonly __hex: true;
|
|
356
|
+
}>, {
|
|
357
|
+
readonly __hash: true;
|
|
358
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
359
|
+
readonly __hex: true;
|
|
360
|
+
}>, {
|
|
361
|
+
readonly __hash: true;
|
|
362
|
+
}>, unknown>>>;
|
|
363
|
+
payload_schemas: z.ZodArray<z.ZodString>;
|
|
364
|
+
previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
365
|
+
readonly __hex: true;
|
|
366
|
+
}>, {
|
|
367
|
+
readonly __hash: true;
|
|
368
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
369
|
+
readonly __hex: true;
|
|
370
|
+
}>, {
|
|
371
|
+
readonly __hash: true;
|
|
372
|
+
}>, unknown>>>>;
|
|
373
|
+
$destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
374
|
+
readonly __hex: true;
|
|
375
|
+
}>, {
|
|
376
|
+
readonly __address: true;
|
|
377
|
+
}>, string>>>;
|
|
378
|
+
$sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
379
|
+
readonly __hex: true;
|
|
380
|
+
}>, {
|
|
381
|
+
readonly __hash: true;
|
|
382
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
383
|
+
readonly __hex: true;
|
|
384
|
+
}>, {
|
|
385
|
+
readonly __hash: true;
|
|
386
|
+
}>, unknown>>>;
|
|
387
|
+
$signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
388
|
+
readonly __hex: true;
|
|
389
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
390
|
+
readonly __hex: true;
|
|
391
|
+
}>, unknown>>, z.ZodNull]>>;
|
|
392
|
+
_hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
393
|
+
readonly __hex: true;
|
|
394
|
+
}>, {
|
|
395
|
+
readonly __hash: true;
|
|
396
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
397
|
+
readonly __hex: true;
|
|
398
|
+
}>, {
|
|
399
|
+
readonly __hash: true;
|
|
400
|
+
}>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
401
|
+
readonly __hex: true;
|
|
402
|
+
}>, {
|
|
403
|
+
readonly __hash: true;
|
|
404
|
+
}>>>>;
|
|
405
|
+
_dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
406
|
+
readonly __hex: true;
|
|
407
|
+
}>, {
|
|
408
|
+
readonly __hash: true;
|
|
409
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
410
|
+
readonly __hex: true;
|
|
411
|
+
}>, {
|
|
412
|
+
readonly __hash: true;
|
|
413
|
+
}>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
414
|
+
readonly __hex: true;
|
|
415
|
+
}>, {
|
|
416
|
+
readonly __hash: true;
|
|
417
|
+
}>>>>;
|
|
418
|
+
_sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
419
|
+
block: z.ZodNumber;
|
|
420
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<Chain, string>>;
|
|
421
|
+
previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
422
|
+
readonly __hex: true;
|
|
423
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
424
|
+
readonly __hex: true;
|
|
425
|
+
}>, unknown>>>;
|
|
426
|
+
protocol: z.ZodOptional<z.ZodNumber>;
|
|
427
|
+
step_hashes: z.ZodOptional<z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
428
|
+
readonly __hex: true;
|
|
429
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
430
|
+
readonly __hex: true;
|
|
431
|
+
}>, unknown>>>>;
|
|
432
|
+
$epoch: z.ZodNumber;
|
|
433
|
+
}, z.core.$strip>;
|
|
434
|
+
};
|
|
435
|
+
};
|
|
436
|
+
};
|
|
91
437
|
//# sourceMappingURL=XyoGatewayRpcSchemas.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"XyoGatewayRpcSchemas.d.ts","sourceRoot":"","sources":["../../../../src/types/schema/XyoGatewayRpcSchemas.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"XyoGatewayRpcSchemas.d.ts","sourceRoot":"","sources":["../../../../src/types/schema/XyoGatewayRpcSchemas.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAA;AACtD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAMvB,eAAO,MAAM,kBAAkB;;;;iBAI7B,CAAA;AAEF,eAAO,MAAM,cAAc;;;;;EAAmE,CAAA;AAE9F,eAAO,MAAM,UAAU;;;;;;;;iBAGrB,CAAA;AAEF,eAAO,MAAM,aAAa;;;;;;;;;;;;iBAIxB,CAAA;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;iBAAwD,CAAA;AAEzF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAEhE,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6EgB,CAAA"}
|