@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.
Files changed (269) hide show
  1. package/dist/neutral/engine/requestSchemas.d.ts +2 -2
  2. package/dist/neutral/engine/requestSchemas.d.ts.map +1 -1
  3. package/dist/neutral/index.mjs +438 -314
  4. package/dist/neutral/index.mjs.map +1 -1
  5. package/dist/neutral/provider/connection/XyoConnection.d.ts +2 -2
  6. package/dist/neutral/provider/connection/XyoConnection.d.ts.map +1 -1
  7. package/dist/neutral/provider/gateway/Abstract.d.ts +4 -4
  8. package/dist/neutral/provider/gateway/Abstract.d.ts.map +1 -1
  9. package/dist/neutral/provider/runner/JsonRpcXyoRunner.d.ts +2 -2
  10. package/dist/neutral/provider/runner/JsonRpcXyoRunner.d.ts.map +1 -1
  11. package/dist/neutral/provider/runner/MemoryXyoRunner.d.ts +2 -2
  12. package/dist/neutral/provider/runner/MemoryXyoRunner.d.ts.map +1 -1
  13. package/dist/neutral/provider/runner/NodeXyoRunner.d.ts +2 -2
  14. package/dist/neutral/provider/runner/NodeXyoRunner.d.ts.map +1 -1
  15. package/dist/neutral/provider/signer/JsonRpcXyoSigner.d.ts +5 -6
  16. package/dist/neutral/provider/signer/JsonRpcXyoSigner.d.ts.map +1 -1
  17. package/dist/neutral/provider/signer/MemoryXyoSigner.d.ts +3 -4
  18. package/dist/neutral/provider/signer/MemoryXyoSigner.d.ts.map +1 -1
  19. package/dist/neutral/provider/viewer/JsonRpcXyoViewer.d.ts +5 -5
  20. package/dist/neutral/provider/viewer/JsonRpcXyoViewer.d.ts.map +1 -1
  21. package/dist/neutral/transport/HttpRpcTransport.d.ts +1 -1
  22. package/dist/neutral/transport/HttpRpcTransport.d.ts.map +1 -1
  23. package/dist/neutral/transport/MemoryRpcTransport.d.ts +4 -4
  24. package/dist/neutral/transport/MemoryRpcTransport.d.ts.map +1 -1
  25. package/dist/neutral/transport/RpcTransport.d.ts +1 -1
  26. package/dist/neutral/transport/RpcTransport.d.ts.map +1 -1
  27. package/dist/neutral/transport/post-message/LegacyPostMessageRpcTransport.d.ts +5 -5
  28. package/dist/neutral/transport/post-message/LegacyPostMessageRpcTransport.d.ts.map +1 -1
  29. package/dist/neutral/types/schema/XyoGatewayRpcSchemas.d.ts +422 -76
  30. package/dist/neutral/types/schema/XyoGatewayRpcSchemas.d.ts.map +1 -1
  31. package/dist/neutral/types/schema/XyoProviderRpcSchemas.d.ts +297 -3
  32. package/dist/neutral/types/schema/XyoProviderRpcSchemas.d.ts.map +1 -1
  33. package/dist/neutral/types/schema/XyoRunnerRpcSchemas.d.ts +231 -3
  34. package/dist/neutral/types/schema/XyoRunnerRpcSchemas.d.ts.map +1 -1
  35. package/dist/neutral/types/schema/XyoSignerRpcSchemas.d.ts +838 -3
  36. package/dist/neutral/types/schema/XyoSignerRpcSchemas.d.ts.map +1 -1
  37. package/dist/neutral/types/schema/XyoViewerRpcSchemas.d.ts +1611 -3
  38. package/dist/neutral/types/schema/XyoViewerRpcSchemas.d.ts.map +1 -1
  39. package/dist/neutral/types/schema/common/Address.d.ts +7 -0
  40. package/dist/neutral/types/schema/common/Address.d.ts.map +1 -0
  41. package/dist/neutral/types/schema/common/AllowedBlockPayload.d.ts +11 -0
  42. package/dist/neutral/types/schema/common/AllowedBlockPayload.d.ts.map +1 -0
  43. package/dist/neutral/types/schema/common/BlockBoundWitness.d.ts +324 -0
  44. package/dist/neutral/types/schema/common/BlockBoundWitness.d.ts.map +1 -0
  45. package/dist/neutral/types/schema/common/BoundWitness.d.ts +420 -0
  46. package/dist/neutral/types/schema/common/BoundWitness.d.ts.map +1 -0
  47. package/dist/neutral/types/schema/common/Chain.d.ts +4 -0
  48. package/dist/neutral/types/schema/common/Chain.d.ts.map +1 -0
  49. package/dist/neutral/types/schema/common/HydratedBlock.d.ts +474 -0
  50. package/dist/neutral/types/schema/common/HydratedBlock.d.ts.map +1 -0
  51. package/dist/neutral/types/schema/common/HydratedTransaction.d.ts +624 -0
  52. package/dist/neutral/types/schema/common/HydratedTransaction.d.ts.map +1 -0
  53. package/dist/neutral/types/schema/common/Json.d.ts +7 -0
  54. package/dist/neutral/types/schema/common/Json.d.ts.map +1 -0
  55. package/dist/neutral/types/schema/common/Payload.d.ts +134 -0
  56. package/dist/neutral/types/schema/common/Payload.d.ts.map +1 -0
  57. package/dist/neutral/types/schema/common/Sequence.d.ts +9 -0
  58. package/dist/neutral/types/schema/common/Sequence.d.ts.map +1 -0
  59. package/dist/neutral/types/schema/common/TransactionBoundWitness.d.ts +239 -0
  60. package/dist/neutral/types/schema/common/TransactionBoundWitness.d.ts.map +1 -0
  61. package/dist/neutral/types/schema/common/TransactionFees.d.ts +93 -24
  62. package/dist/neutral/types/schema/common/TransactionFees.d.ts.map +1 -1
  63. package/dist/neutral/types/schema/common/index.d.ts +11 -13
  64. package/dist/neutral/types/schema/common/index.d.ts.map +1 -1
  65. package/dist/neutral/types/schema/common/spec/BigIntZod.spec.d.ts +2 -0
  66. package/dist/neutral/types/schema/common/spec/BigIntZod.spec.d.ts.map +1 -0
  67. package/dist/neutral/types/schema/common/spec/HydratedTransaction.spec.d.ts +2 -0
  68. package/dist/neutral/types/schema/common/spec/HydratedTransaction.spec.d.ts.map +1 -0
  69. package/dist/neutral/types/schema/common/spec/Payload.spec.d.ts +2 -0
  70. package/dist/neutral/types/schema/common/spec/Payload.spec.d.ts.map +1 -0
  71. package/dist/neutral/types/schema/common/spec/TransactionBoundWitnessZod.spec.d.ts +2 -0
  72. package/dist/neutral/types/schema/common/spec/TransactionBoundWitnessZod.spec.d.ts.map +1 -0
  73. package/dist/neutral/types/schema/common/spec/UnsignedHydratedTransactionSchema.spec copy.d.ts +2 -0
  74. package/dist/neutral/types/schema/common/spec/UnsignedHydratedTransactionSchema.spec copy.d.ts.map +1 -0
  75. package/dist/neutral/types/schema/createRequestSchema.d.ts +2 -22
  76. package/dist/neutral/types/schema/createRequestSchema.d.ts.map +1 -1
  77. package/dist/neutral/types/schema/createResponseSchema.d.ts +2 -18
  78. package/dist/neutral/types/schema/createResponseSchema.d.ts.map +1 -1
  79. package/dist/neutral/types/schema/index.d.ts +1 -0
  80. package/dist/neutral/types/schema/index.d.ts.map +1 -1
  81. package/dist/node/engine/requestSchemas.d.ts +2 -2
  82. package/dist/node/engine/requestSchemas.d.ts.map +1 -1
  83. package/dist/node/index-node.mjs +438 -314
  84. package/dist/node/index-node.mjs.map +1 -1
  85. package/dist/node/provider/connection/XyoConnection.d.ts +2 -2
  86. package/dist/node/provider/connection/XyoConnection.d.ts.map +1 -1
  87. package/dist/node/provider/gateway/Abstract.d.ts +4 -4
  88. package/dist/node/provider/gateway/Abstract.d.ts.map +1 -1
  89. package/dist/node/provider/runner/JsonRpcXyoRunner.d.ts +2 -2
  90. package/dist/node/provider/runner/JsonRpcXyoRunner.d.ts.map +1 -1
  91. package/dist/node/provider/runner/MemoryXyoRunner.d.ts +2 -2
  92. package/dist/node/provider/runner/MemoryXyoRunner.d.ts.map +1 -1
  93. package/dist/node/provider/runner/NodeXyoRunner.d.ts +2 -2
  94. package/dist/node/provider/runner/NodeXyoRunner.d.ts.map +1 -1
  95. package/dist/node/provider/signer/JsonRpcXyoSigner.d.ts +5 -6
  96. package/dist/node/provider/signer/JsonRpcXyoSigner.d.ts.map +1 -1
  97. package/dist/node/provider/signer/MemoryXyoSigner.d.ts +3 -4
  98. package/dist/node/provider/signer/MemoryXyoSigner.d.ts.map +1 -1
  99. package/dist/node/provider/viewer/JsonRpcXyoViewer.d.ts +5 -5
  100. package/dist/node/provider/viewer/JsonRpcXyoViewer.d.ts.map +1 -1
  101. package/dist/node/transport/HttpRpcTransport.d.ts +1 -1
  102. package/dist/node/transport/HttpRpcTransport.d.ts.map +1 -1
  103. package/dist/node/transport/MemoryRpcTransport.d.ts +4 -4
  104. package/dist/node/transport/MemoryRpcTransport.d.ts.map +1 -1
  105. package/dist/node/transport/RpcTransport.d.ts +1 -1
  106. package/dist/node/transport/RpcTransport.d.ts.map +1 -1
  107. package/dist/node/transport/post-message/LegacyPostMessageRpcTransport.d.ts +5 -5
  108. package/dist/node/transport/post-message/LegacyPostMessageRpcTransport.d.ts.map +1 -1
  109. package/dist/node/types/schema/XyoGatewayRpcSchemas.d.ts +422 -76
  110. package/dist/node/types/schema/XyoGatewayRpcSchemas.d.ts.map +1 -1
  111. package/dist/node/types/schema/XyoProviderRpcSchemas.d.ts +297 -3
  112. package/dist/node/types/schema/XyoProviderRpcSchemas.d.ts.map +1 -1
  113. package/dist/node/types/schema/XyoRunnerRpcSchemas.d.ts +231 -3
  114. package/dist/node/types/schema/XyoRunnerRpcSchemas.d.ts.map +1 -1
  115. package/dist/node/types/schema/XyoSignerRpcSchemas.d.ts +838 -3
  116. package/dist/node/types/schema/XyoSignerRpcSchemas.d.ts.map +1 -1
  117. package/dist/node/types/schema/XyoViewerRpcSchemas.d.ts +1611 -3
  118. package/dist/node/types/schema/XyoViewerRpcSchemas.d.ts.map +1 -1
  119. package/dist/node/types/schema/common/Address.d.ts +7 -0
  120. package/dist/node/types/schema/common/Address.d.ts.map +1 -0
  121. package/dist/node/types/schema/common/AllowedBlockPayload.d.ts +11 -0
  122. package/dist/node/types/schema/common/AllowedBlockPayload.d.ts.map +1 -0
  123. package/dist/node/types/schema/common/BlockBoundWitness.d.ts +324 -0
  124. package/dist/node/types/schema/common/BlockBoundWitness.d.ts.map +1 -0
  125. package/dist/node/types/schema/common/BoundWitness.d.ts +420 -0
  126. package/dist/node/types/schema/common/BoundWitness.d.ts.map +1 -0
  127. package/dist/node/types/schema/common/Chain.d.ts +4 -0
  128. package/dist/node/types/schema/common/Chain.d.ts.map +1 -0
  129. package/dist/node/types/schema/common/HydratedBlock.d.ts +474 -0
  130. package/dist/node/types/schema/common/HydratedBlock.d.ts.map +1 -0
  131. package/dist/node/types/schema/common/HydratedTransaction.d.ts +624 -0
  132. package/dist/node/types/schema/common/HydratedTransaction.d.ts.map +1 -0
  133. package/dist/node/types/schema/common/Json.d.ts +7 -0
  134. package/dist/node/types/schema/common/Json.d.ts.map +1 -0
  135. package/dist/node/types/schema/common/Payload.d.ts +134 -0
  136. package/dist/node/types/schema/common/Payload.d.ts.map +1 -0
  137. package/dist/node/types/schema/common/Sequence.d.ts +9 -0
  138. package/dist/node/types/schema/common/Sequence.d.ts.map +1 -0
  139. package/dist/node/types/schema/common/TransactionBoundWitness.d.ts +239 -0
  140. package/dist/node/types/schema/common/TransactionBoundWitness.d.ts.map +1 -0
  141. package/dist/node/types/schema/common/TransactionFees.d.ts +93 -24
  142. package/dist/node/types/schema/common/TransactionFees.d.ts.map +1 -1
  143. package/dist/node/types/schema/common/index.d.ts +11 -13
  144. package/dist/node/types/schema/common/index.d.ts.map +1 -1
  145. package/dist/node/types/schema/common/spec/BigIntZod.spec.d.ts +2 -0
  146. package/dist/node/types/schema/common/spec/BigIntZod.spec.d.ts.map +1 -0
  147. package/dist/node/types/schema/common/spec/HydratedTransaction.spec.d.ts +2 -0
  148. package/dist/node/types/schema/common/spec/HydratedTransaction.spec.d.ts.map +1 -0
  149. package/dist/node/types/schema/common/spec/Payload.spec.d.ts +2 -0
  150. package/dist/node/types/schema/common/spec/Payload.spec.d.ts.map +1 -0
  151. package/dist/node/types/schema/common/spec/TransactionBoundWitnessZod.spec.d.ts +2 -0
  152. package/dist/node/types/schema/common/spec/TransactionBoundWitnessZod.spec.d.ts.map +1 -0
  153. package/dist/node/types/schema/common/spec/UnsignedHydratedTransactionSchema.spec copy.d.ts +2 -0
  154. package/dist/node/types/schema/common/spec/UnsignedHydratedTransactionSchema.spec copy.d.ts.map +1 -0
  155. package/dist/node/types/schema/createRequestSchema.d.ts +2 -22
  156. package/dist/node/types/schema/createRequestSchema.d.ts.map +1 -1
  157. package/dist/node/types/schema/createResponseSchema.d.ts +2 -18
  158. package/dist/node/types/schema/createResponseSchema.d.ts.map +1 -1
  159. package/dist/node/types/schema/index.d.ts +1 -0
  160. package/dist/node/types/schema/index.d.ts.map +1 -1
  161. package/package.json +29 -27
  162. package/src/engine/requestSchemas.ts +2 -2
  163. package/src/provider/connection/XyoConnection.ts +3 -3
  164. package/src/provider/connection/spec/XyoConnection.ts +2 -2
  165. package/src/provider/gateway/Abstract.ts +7 -6
  166. package/src/provider/runner/JsonRpcXyoRunner.ts +2 -2
  167. package/src/provider/runner/MemoryXyoRunner.ts +2 -2
  168. package/src/provider/runner/NodeXyoRunner.ts +2 -2
  169. package/src/provider/signer/JsonRpcXyoSigner.ts +11 -7
  170. package/src/provider/signer/MemoryXyoSigner.ts +6 -6
  171. package/src/provider/signer/spec/RpcEngineXyoSigner.spec.ts +5 -4
  172. package/src/provider/viewer/JsonRpcXyoViewer.ts +15 -16
  173. package/src/transport/HttpRpcTransport.ts +7 -7
  174. package/src/transport/MemoryRpcTransport.ts +15 -13
  175. package/src/transport/RpcTransport.ts +3 -3
  176. package/src/transport/post-message/LegacyPostMessageRpcTransport.ts +12 -12
  177. package/src/types/schema/XyoGatewayRpcSchemas.ts +17 -17
  178. package/src/types/schema/XyoProviderRpcSchemas.ts +16 -16
  179. package/src/types/schema/XyoRunnerRpcSchemas.ts +8 -11
  180. package/src/types/schema/XyoSignerRpcSchemas.ts +30 -25
  181. package/src/types/schema/XyoViewerRpcSchemas.ts +55 -52
  182. package/src/types/schema/common/{AddressSchema.ts → Address.ts} +1 -2
  183. package/src/types/schema/common/AllowedBlockPayload.ts +16 -0
  184. package/src/types/schema/common/BlockBoundWitness.ts +49 -0
  185. package/src/types/schema/common/BoundWitness.ts +53 -0
  186. package/src/types/schema/common/Chain.ts +8 -0
  187. package/src/types/schema/common/HydratedBlock.ts +32 -0
  188. package/src/types/schema/common/HydratedTransaction.ts +38 -0
  189. package/src/types/schema/common/Json.ts +19 -0
  190. package/src/types/schema/common/Payload.ts +31 -0
  191. package/src/types/schema/common/Sequence.ts +19 -0
  192. package/src/types/schema/common/TransactionBoundWitness.ts +42 -0
  193. package/src/types/schema/common/TransactionFees.ts +37 -11
  194. package/src/types/schema/common/index.ts +11 -13
  195. package/src/types/schema/common/spec/{BigIntSchema.spec.ts → BigIntZod.spec.ts} +6 -7
  196. package/src/types/schema/common/spec/HydratedBlockSchema.spec.ts +9 -83
  197. package/src/types/schema/common/spec/HydratedTransaction.spec.ts +18 -0
  198. package/src/types/schema/common/spec/Payload.spec.ts +29 -0
  199. package/src/types/schema/common/spec/TransactionBoundWitnessZod.spec.ts +18 -0
  200. package/src/types/schema/common/spec/UnsignedHydratedTransactionSchema.spec copy.ts +53 -0
  201. package/src/types/schema/index.ts +1 -0
  202. package/dist/neutral/types/schema/common/AddressSchema.d.ts +0 -5
  203. package/dist/neutral/types/schema/common/AddressSchema.d.ts.map +0 -1
  204. package/dist/neutral/types/schema/common/BigIntSchema.d.ts +0 -4
  205. package/dist/neutral/types/schema/common/BigIntSchema.d.ts.map +0 -1
  206. package/dist/neutral/types/schema/common/BlockBoundWitnessSchema.d.ts +0 -235
  207. package/dist/neutral/types/schema/common/BlockBoundWitnessSchema.d.ts.map +0 -1
  208. package/dist/neutral/types/schema/common/BoundWitnessSchema.d.ts +0 -163
  209. package/dist/neutral/types/schema/common/BoundWitnessSchema.d.ts.map +0 -1
  210. package/dist/neutral/types/schema/common/HashSchema.d.ts +0 -5
  211. package/dist/neutral/types/schema/common/HashSchema.d.ts.map +0 -1
  212. package/dist/neutral/types/schema/common/HexSchema.d.ts +0 -5
  213. package/dist/neutral/types/schema/common/HexSchema.d.ts.map +0 -1
  214. package/dist/neutral/types/schema/common/HydratedBlockSchema.d.ts +0 -282
  215. package/dist/neutral/types/schema/common/HydratedBlockSchema.d.ts.map +0 -1
  216. package/dist/neutral/types/schema/common/HydratedTransactionSchema.d.ts +0 -214
  217. package/dist/neutral/types/schema/common/HydratedTransactionSchema.d.ts.map +0 -1
  218. package/dist/neutral/types/schema/common/JsonSchema.d.ts +0 -7
  219. package/dist/neutral/types/schema/common/JsonSchema.d.ts.map +0 -1
  220. package/dist/neutral/types/schema/common/PayloadSchema.d.ts +0 -28
  221. package/dist/neutral/types/schema/common/PayloadSchema.d.ts.map +0 -1
  222. package/dist/neutral/types/schema/common/SequenceSchema.d.ts +0 -9
  223. package/dist/neutral/types/schema/common/SequenceSchema.d.ts.map +0 -1
  224. package/dist/neutral/types/schema/common/StorageMetaSchema.d.ts +0 -46
  225. package/dist/neutral/types/schema/common/StorageMetaSchema.d.ts.map +0 -1
  226. package/dist/neutral/types/schema/common/TransactionBoundWitnessSchema.d.ts +0 -258
  227. package/dist/neutral/types/schema/common/TransactionBoundWitnessSchema.d.ts.map +0 -1
  228. package/dist/neutral/types/schema/common/spec/BigIntSchema.spec.d.ts +0 -2
  229. package/dist/neutral/types/schema/common/spec/BigIntSchema.spec.d.ts.map +0 -1
  230. package/dist/node/types/schema/common/AddressSchema.d.ts +0 -5
  231. package/dist/node/types/schema/common/AddressSchema.d.ts.map +0 -1
  232. package/dist/node/types/schema/common/BigIntSchema.d.ts +0 -4
  233. package/dist/node/types/schema/common/BigIntSchema.d.ts.map +0 -1
  234. package/dist/node/types/schema/common/BlockBoundWitnessSchema.d.ts +0 -235
  235. package/dist/node/types/schema/common/BlockBoundWitnessSchema.d.ts.map +0 -1
  236. package/dist/node/types/schema/common/BoundWitnessSchema.d.ts +0 -163
  237. package/dist/node/types/schema/common/BoundWitnessSchema.d.ts.map +0 -1
  238. package/dist/node/types/schema/common/HashSchema.d.ts +0 -5
  239. package/dist/node/types/schema/common/HashSchema.d.ts.map +0 -1
  240. package/dist/node/types/schema/common/HexSchema.d.ts +0 -5
  241. package/dist/node/types/schema/common/HexSchema.d.ts.map +0 -1
  242. package/dist/node/types/schema/common/HydratedBlockSchema.d.ts +0 -282
  243. package/dist/node/types/schema/common/HydratedBlockSchema.d.ts.map +0 -1
  244. package/dist/node/types/schema/common/HydratedTransactionSchema.d.ts +0 -214
  245. package/dist/node/types/schema/common/HydratedTransactionSchema.d.ts.map +0 -1
  246. package/dist/node/types/schema/common/JsonSchema.d.ts +0 -7
  247. package/dist/node/types/schema/common/JsonSchema.d.ts.map +0 -1
  248. package/dist/node/types/schema/common/PayloadSchema.d.ts +0 -28
  249. package/dist/node/types/schema/common/PayloadSchema.d.ts.map +0 -1
  250. package/dist/node/types/schema/common/SequenceSchema.d.ts +0 -9
  251. package/dist/node/types/schema/common/SequenceSchema.d.ts.map +0 -1
  252. package/dist/node/types/schema/common/StorageMetaSchema.d.ts +0 -46
  253. package/dist/node/types/schema/common/StorageMetaSchema.d.ts.map +0 -1
  254. package/dist/node/types/schema/common/TransactionBoundWitnessSchema.d.ts +0 -258
  255. package/dist/node/types/schema/common/TransactionBoundWitnessSchema.d.ts.map +0 -1
  256. package/dist/node/types/schema/common/spec/BigIntSchema.spec.d.ts +0 -2
  257. package/dist/node/types/schema/common/spec/BigIntSchema.spec.d.ts.map +0 -1
  258. package/src/types/schema/common/BigIntSchema.ts +0 -10
  259. package/src/types/schema/common/BlockBoundWitnessSchema.ts +0 -30
  260. package/src/types/schema/common/BoundWitnessSchema.ts +0 -45
  261. package/src/types/schema/common/HashSchema.ts +0 -7
  262. package/src/types/schema/common/HexSchema.ts +0 -7
  263. package/src/types/schema/common/HydratedBlockSchema.ts +0 -26
  264. package/src/types/schema/common/HydratedTransactionSchema.ts +0 -14
  265. package/src/types/schema/common/JsonSchema.ts +0 -19
  266. package/src/types/schema/common/PayloadSchema.ts +0 -6
  267. package/src/types/schema/common/SequenceSchema.ts +0 -19
  268. package/src/types/schema/common/StorageMetaSchema.ts +0 -14
  269. package/src/types/schema/common/TransactionBoundWitnessSchema.ts +0 -33
@@ -1,4 +1,1612 @@
1
- import type { XyoViewerRpcMethodName } from '../XyoViewerRpc.ts';
2
- import type { RpcSchemaMap } from './RpcSchemaMap.ts';
3
- export declare const XyoViewerRpcSchemas: RpcSchemaMap<XyoViewerRpcMethodName>;
1
+ import { z } from 'zod';
2
+ export declare const XyoViewerRpcSchemas: {
3
+ xyoViewer_accountBalance: {
4
+ params: {
5
+ to: z.ZodUnion<readonly [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>>], null>, z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
10
+ readonly __hex: true;
11
+ }>, {
12
+ readonly __address: true;
13
+ }>, string>>, z.ZodNumber], null>, z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
14
+ readonly __hex: true;
15
+ }>, {
16
+ readonly __address: true;
17
+ }>, string>>, z.ZodNumber, z.ZodBoolean], null>]>;
18
+ from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
19
+ readonly __hex: true;
20
+ }>, {
21
+ readonly __address: true;
22
+ }>, string>>], null>, z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
23
+ readonly __hex: true;
24
+ }>, {
25
+ readonly __address: true;
26
+ }>, string>>, z.ZodNumber], null>, z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
27
+ readonly __hex: true;
28
+ }>, {
29
+ readonly __address: true;
30
+ }>, string>>, z.ZodNumber, z.ZodBoolean], null>]>;
31
+ };
32
+ result: {
33
+ to: z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
34
+ readonly __hex: true;
35
+ }>, bigint>>;
36
+ from: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
37
+ readonly __hex: true;
38
+ }>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
39
+ readonly __hex: true;
40
+ }>>>;
41
+ };
42
+ };
43
+ xyoViewer_accountHistory: {
44
+ params: {
45
+ to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
46
+ readonly __hex: true;
47
+ }>, {
48
+ readonly __address: true;
49
+ }>, string>>], null>, z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
50
+ readonly __hex: true;
51
+ }>, {
52
+ readonly __address: true;
53
+ }>, string>>, z.ZodNumber], null>, z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
54
+ readonly __hex: true;
55
+ }>, {
56
+ readonly __address: true;
57
+ }>, string>>, z.ZodNumber, z.ZodBoolean], null>]>;
58
+ from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
59
+ readonly __hex: true;
60
+ }>, {
61
+ readonly __address: true;
62
+ }>, string>>], null>, z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
63
+ readonly __hex: true;
64
+ }>, {
65
+ readonly __address: true;
66
+ }>, string>>, z.ZodNumber], null>, z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
67
+ readonly __hex: true;
68
+ }>, {
69
+ readonly __address: true;
70
+ }>, string>>, z.ZodNumber, z.ZodBoolean], null>]>;
71
+ };
72
+ result: {
73
+ to: z.ZodArray<z.ZodTuple<[z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
74
+ readonly __hex: true;
75
+ }>, {
76
+ readonly __hash: true;
77
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
78
+ readonly __hex: true;
79
+ }>, {
80
+ readonly __hash: true;
81
+ }>, unknown>>, z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
82
+ readonly __hex: true;
83
+ }>, {
84
+ readonly __hash: true;
85
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
86
+ readonly __hex: true;
87
+ }>, {
88
+ readonly __hash: true;
89
+ }>, unknown>>, z.ZodObject<{
90
+ schema: z.ZodString;
91
+ }, z.core.$catchall<z.ZodAny>>], null>>;
92
+ from: z.ZodArray<z.ZodTuple<[z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
93
+ readonly __hex: true;
94
+ }>, {
95
+ readonly __hash: true;
96
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
97
+ readonly __hex: true;
98
+ }>, {
99
+ readonly __hash: true;
100
+ }>, unknown>>, z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
101
+ readonly __hex: true;
102
+ }>, {
103
+ readonly __hash: true;
104
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
105
+ readonly __hex: true;
106
+ }>, {
107
+ readonly __hash: true;
108
+ }>, unknown>>, z.ZodObject<{
109
+ schema: z.ZodString;
110
+ }, z.core.$catchall<z.ZodAny>>], null>>;
111
+ };
112
+ };
113
+ xyoViewer_blockByHash: {
114
+ params: {
115
+ to: z.ZodTuple<[z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
116
+ readonly __hex: true;
117
+ }>, {
118
+ readonly __hash: true;
119
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
120
+ readonly __hex: true;
121
+ }>, {
122
+ readonly __hash: true;
123
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
124
+ readonly __hex: true;
125
+ }>, {
126
+ readonly __hash: true;
127
+ }>>>], null>;
128
+ from: z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
129
+ readonly __hex: true;
130
+ }>, {
131
+ readonly __hash: true;
132
+ }>, string>>], null>;
133
+ };
134
+ result: {
135
+ to: z.ZodTuple<[z.ZodObject<{
136
+ schema: z.ZodLiteral<"network.xyo.boundwitness">;
137
+ addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
138
+ readonly __hex: true;
139
+ }>, {
140
+ readonly __address: true;
141
+ }>, string>>>;
142
+ payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
143
+ readonly __hex: true;
144
+ }>, {
145
+ readonly __hash: true;
146
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
147
+ readonly __hex: true;
148
+ }>, {
149
+ readonly __hash: true;
150
+ }>, unknown>>>;
151
+ payload_schemas: z.ZodArray<z.ZodString>;
152
+ previous_hashes: z.ZodArray<z.ZodNullable<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>>>>;
161
+ $destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
162
+ readonly __hex: true;
163
+ }>, {
164
+ readonly __address: true;
165
+ }>, string>>>;
166
+ $sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
167
+ readonly __hex: true;
168
+ }>, {
169
+ readonly __hash: true;
170
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
171
+ readonly __hex: true;
172
+ }>, {
173
+ readonly __hash: true;
174
+ }>, unknown>>>;
175
+ $signatures: z.ZodArray<z.ZodUnion<readonly [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>>, z.ZodNull]>>;
180
+ _hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
181
+ readonly __hex: true;
182
+ }>, {
183
+ readonly __hash: true;
184
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
185
+ readonly __hex: true;
186
+ }>, {
187
+ readonly __hash: true;
188
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
189
+ readonly __hex: true;
190
+ }>, {
191
+ readonly __hash: true;
192
+ }>>>>;
193
+ _dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
194
+ readonly __hex: true;
195
+ }>, {
196
+ readonly __hash: true;
197
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
198
+ readonly __hex: true;
199
+ }>, {
200
+ readonly __hash: true;
201
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
202
+ readonly __hex: true;
203
+ }>, {
204
+ readonly __hash: true;
205
+ }>>>>;
206
+ _sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
207
+ block: z.ZodNumber;
208
+ chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
209
+ previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
210
+ readonly __hex: true;
211
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
212
+ readonly __hex: true;
213
+ }>, unknown>>>;
214
+ protocol: z.ZodOptional<z.ZodNumber>;
215
+ step_hashes: z.ZodOptional<z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
216
+ readonly __hex: true;
217
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
218
+ readonly __hex: true;
219
+ }>, unknown>>>>;
220
+ $epoch: z.ZodNumber;
221
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
222
+ schema: z.ZodString;
223
+ }, z.core.$catchall<z.ZodAny>>>], null>;
224
+ from: z.ZodTuple<[z.ZodObject<{
225
+ schema: z.ZodLiteral<"network.xyo.boundwitness">;
226
+ addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
227
+ readonly __hex: true;
228
+ }>, {
229
+ readonly __address: true;
230
+ }>, string>>>;
231
+ payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
232
+ readonly __hex: true;
233
+ }>, {
234
+ readonly __hash: true;
235
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
236
+ readonly __hex: true;
237
+ }>, {
238
+ readonly __hash: true;
239
+ }>, unknown>>>;
240
+ payload_schemas: z.ZodArray<z.ZodString>;
241
+ previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
242
+ readonly __hex: true;
243
+ }>, {
244
+ readonly __hash: true;
245
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
246
+ readonly __hex: true;
247
+ }>, {
248
+ readonly __hash: true;
249
+ }>, unknown>>>>;
250
+ $destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
251
+ readonly __hex: true;
252
+ }>, {
253
+ readonly __address: true;
254
+ }>, string>>>;
255
+ $sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
256
+ readonly __hex: true;
257
+ }>, {
258
+ readonly __hash: true;
259
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
260
+ readonly __hex: true;
261
+ }>, {
262
+ readonly __hash: true;
263
+ }>, unknown>>>;
264
+ $signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
265
+ readonly __hex: true;
266
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
267
+ readonly __hex: true;
268
+ }>, unknown>>, z.ZodNull]>>;
269
+ _hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
270
+ readonly __hex: true;
271
+ }>, {
272
+ readonly __hash: true;
273
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
274
+ readonly __hex: true;
275
+ }>, {
276
+ readonly __hash: true;
277
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
278
+ readonly __hex: true;
279
+ }>, {
280
+ readonly __hash: true;
281
+ }>>>>;
282
+ _dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
283
+ readonly __hex: true;
284
+ }>, {
285
+ readonly __hash: true;
286
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
287
+ readonly __hex: true;
288
+ }>, {
289
+ readonly __hash: true;
290
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
291
+ readonly __hex: true;
292
+ }>, {
293
+ readonly __hash: true;
294
+ }>>>>;
295
+ _sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
296
+ block: z.ZodNumber;
297
+ chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
298
+ previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
299
+ readonly __hex: true;
300
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
301
+ readonly __hex: true;
302
+ }>, unknown>>>;
303
+ protocol: z.ZodOptional<z.ZodNumber>;
304
+ step_hashes: z.ZodOptional<z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
305
+ readonly __hex: true;
306
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
307
+ readonly __hex: true;
308
+ }>, unknown>>>>;
309
+ $epoch: z.ZodNumber;
310
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
311
+ schema: z.ZodString;
312
+ }, z.core.$catchall<z.ZodAny>>>], null>;
313
+ };
314
+ };
315
+ xyoViewer_blockByNumber: {
316
+ params: {
317
+ to: z.ZodTuple<[z.ZodNumber], null>;
318
+ from: z.ZodTuple<[z.ZodNumber], null>;
319
+ };
320
+ result: {
321
+ to: z.ZodTuple<[z.ZodObject<{
322
+ schema: z.ZodLiteral<"network.xyo.boundwitness">;
323
+ addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
324
+ readonly __hex: true;
325
+ }>, {
326
+ readonly __address: true;
327
+ }>, string>>>;
328
+ payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
329
+ readonly __hex: true;
330
+ }>, {
331
+ readonly __hash: true;
332
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
333
+ readonly __hex: true;
334
+ }>, {
335
+ readonly __hash: true;
336
+ }>, unknown>>>;
337
+ payload_schemas: z.ZodArray<z.ZodString>;
338
+ previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
339
+ readonly __hex: true;
340
+ }>, {
341
+ readonly __hash: true;
342
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
343
+ readonly __hex: true;
344
+ }>, {
345
+ readonly __hash: true;
346
+ }>, unknown>>>>;
347
+ $destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
348
+ readonly __hex: true;
349
+ }>, {
350
+ readonly __address: true;
351
+ }>, string>>>;
352
+ $sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
353
+ readonly __hex: true;
354
+ }>, {
355
+ readonly __hash: true;
356
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
357
+ readonly __hex: true;
358
+ }>, {
359
+ readonly __hash: true;
360
+ }>, unknown>>>;
361
+ $signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
362
+ readonly __hex: true;
363
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
364
+ readonly __hex: true;
365
+ }>, unknown>>, z.ZodNull]>>;
366
+ _hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
367
+ readonly __hex: true;
368
+ }>, {
369
+ readonly __hash: true;
370
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
371
+ readonly __hex: true;
372
+ }>, {
373
+ readonly __hash: true;
374
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
375
+ readonly __hex: true;
376
+ }>, {
377
+ readonly __hash: true;
378
+ }>>>>;
379
+ _dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
380
+ readonly __hex: true;
381
+ }>, {
382
+ readonly __hash: true;
383
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
384
+ readonly __hex: true;
385
+ }>, {
386
+ readonly __hash: true;
387
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
388
+ readonly __hex: true;
389
+ }>, {
390
+ readonly __hash: true;
391
+ }>>>>;
392
+ _sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
393
+ block: z.ZodNumber;
394
+ chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
395
+ previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
396
+ readonly __hex: true;
397
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
398
+ readonly __hex: true;
399
+ }>, unknown>>>;
400
+ protocol: z.ZodOptional<z.ZodNumber>;
401
+ step_hashes: z.ZodOptional<z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
402
+ readonly __hex: true;
403
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
404
+ readonly __hex: true;
405
+ }>, unknown>>>>;
406
+ $epoch: z.ZodNumber;
407
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
408
+ schema: z.ZodString;
409
+ }, z.core.$catchall<z.ZodAny>>>], null>;
410
+ from: z.ZodTuple<[z.ZodObject<{
411
+ schema: z.ZodLiteral<"network.xyo.boundwitness">;
412
+ addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
413
+ readonly __hex: true;
414
+ }>, {
415
+ readonly __address: true;
416
+ }>, string>>>;
417
+ payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
418
+ readonly __hex: true;
419
+ }>, {
420
+ readonly __hash: true;
421
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
422
+ readonly __hex: true;
423
+ }>, {
424
+ readonly __hash: true;
425
+ }>, unknown>>>;
426
+ payload_schemas: z.ZodArray<z.ZodString>;
427
+ previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
428
+ readonly __hex: true;
429
+ }>, {
430
+ readonly __hash: true;
431
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
432
+ readonly __hex: true;
433
+ }>, {
434
+ readonly __hash: true;
435
+ }>, unknown>>>>;
436
+ $destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
437
+ readonly __hex: true;
438
+ }>, {
439
+ readonly __address: true;
440
+ }>, string>>>;
441
+ $sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
442
+ readonly __hex: true;
443
+ }>, {
444
+ readonly __hash: true;
445
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
446
+ readonly __hex: true;
447
+ }>, {
448
+ readonly __hash: true;
449
+ }>, unknown>>>;
450
+ $signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
451
+ readonly __hex: true;
452
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
453
+ readonly __hex: true;
454
+ }>, unknown>>, z.ZodNull]>>;
455
+ _hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
456
+ readonly __hex: true;
457
+ }>, {
458
+ readonly __hash: true;
459
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
460
+ readonly __hex: true;
461
+ }>, {
462
+ readonly __hash: true;
463
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
464
+ readonly __hex: true;
465
+ }>, {
466
+ readonly __hash: true;
467
+ }>>>>;
468
+ _dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
469
+ readonly __hex: true;
470
+ }>, {
471
+ readonly __hash: true;
472
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
473
+ readonly __hex: true;
474
+ }>, {
475
+ readonly __hash: true;
476
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
477
+ readonly __hex: true;
478
+ }>, {
479
+ readonly __hash: true;
480
+ }>>>>;
481
+ _sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
482
+ block: z.ZodNumber;
483
+ chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
484
+ previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
485
+ readonly __hex: true;
486
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
487
+ readonly __hex: true;
488
+ }>, unknown>>>;
489
+ protocol: z.ZodOptional<z.ZodNumber>;
490
+ step_hashes: z.ZodOptional<z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
491
+ readonly __hex: true;
492
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
493
+ readonly __hex: true;
494
+ }>, unknown>>>>;
495
+ $epoch: z.ZodNumber;
496
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
497
+ schema: z.ZodString;
498
+ }, z.core.$catchall<z.ZodAny>>>], null>;
499
+ };
500
+ };
501
+ xyoViewer_blocksByHash: {
502
+ params: {
503
+ to: z.ZodTuple<[z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
504
+ readonly __hex: true;
505
+ }>, {
506
+ readonly __hash: true;
507
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
508
+ readonly __hex: true;
509
+ }>, {
510
+ readonly __hash: true;
511
+ }>, unknown>>, z.ZodOptional<z.ZodNumber>], null>;
512
+ from: z.ZodTuple<[z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
513
+ readonly __hex: true;
514
+ }>, {
515
+ readonly __hash: true;
516
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
517
+ readonly __hex: true;
518
+ }>, {
519
+ readonly __hash: true;
520
+ }>, unknown>>, z.ZodOptional<z.ZodNumber>], null>;
521
+ };
522
+ result: {
523
+ to: z.ZodArray<z.ZodTuple<[z.ZodObject<{
524
+ schema: z.ZodLiteral<"network.xyo.boundwitness">;
525
+ addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
526
+ readonly __hex: true;
527
+ }>, {
528
+ readonly __address: true;
529
+ }>, string>>>;
530
+ payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
531
+ readonly __hex: true;
532
+ }>, {
533
+ readonly __hash: true;
534
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
535
+ readonly __hex: true;
536
+ }>, {
537
+ readonly __hash: true;
538
+ }>, unknown>>>;
539
+ payload_schemas: z.ZodArray<z.ZodString>;
540
+ previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
541
+ readonly __hex: true;
542
+ }>, {
543
+ readonly __hash: true;
544
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
545
+ readonly __hex: true;
546
+ }>, {
547
+ readonly __hash: true;
548
+ }>, unknown>>>>;
549
+ $destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
550
+ readonly __hex: true;
551
+ }>, {
552
+ readonly __address: true;
553
+ }>, string>>>;
554
+ $sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
555
+ readonly __hex: true;
556
+ }>, {
557
+ readonly __hash: true;
558
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
559
+ readonly __hex: true;
560
+ }>, {
561
+ readonly __hash: true;
562
+ }>, unknown>>>;
563
+ $signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
564
+ readonly __hex: true;
565
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
566
+ readonly __hex: true;
567
+ }>, unknown>>, z.ZodNull]>>;
568
+ _hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
569
+ readonly __hex: true;
570
+ }>, {
571
+ readonly __hash: true;
572
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
573
+ readonly __hex: true;
574
+ }>, {
575
+ readonly __hash: true;
576
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
577
+ readonly __hex: true;
578
+ }>, {
579
+ readonly __hash: true;
580
+ }>>>>;
581
+ _dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
582
+ readonly __hex: true;
583
+ }>, {
584
+ readonly __hash: true;
585
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
586
+ readonly __hex: true;
587
+ }>, {
588
+ readonly __hash: true;
589
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
590
+ readonly __hex: true;
591
+ }>, {
592
+ readonly __hash: true;
593
+ }>>>>;
594
+ _sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
595
+ block: z.ZodNumber;
596
+ chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
597
+ previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
598
+ readonly __hex: true;
599
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
600
+ readonly __hex: true;
601
+ }>, unknown>>>;
602
+ protocol: z.ZodOptional<z.ZodNumber>;
603
+ step_hashes: z.ZodOptional<z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
604
+ readonly __hex: true;
605
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
606
+ readonly __hex: true;
607
+ }>, unknown>>>>;
608
+ $epoch: z.ZodNumber;
609
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
610
+ schema: z.ZodString;
611
+ }, z.core.$catchall<z.ZodAny>>>], null>>;
612
+ from: z.ZodArray<z.ZodTuple<[z.ZodObject<{
613
+ schema: z.ZodLiteral<"network.xyo.boundwitness">;
614
+ addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
615
+ readonly __hex: true;
616
+ }>, {
617
+ readonly __address: true;
618
+ }>, string>>>;
619
+ payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
620
+ readonly __hex: true;
621
+ }>, {
622
+ readonly __hash: true;
623
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
624
+ readonly __hex: true;
625
+ }>, {
626
+ readonly __hash: true;
627
+ }>, unknown>>>;
628
+ payload_schemas: z.ZodArray<z.ZodString>;
629
+ previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
630
+ readonly __hex: true;
631
+ }>, {
632
+ readonly __hash: true;
633
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
634
+ readonly __hex: true;
635
+ }>, {
636
+ readonly __hash: true;
637
+ }>, unknown>>>>;
638
+ $destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
639
+ readonly __hex: true;
640
+ }>, {
641
+ readonly __address: true;
642
+ }>, string>>>;
643
+ $sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
644
+ readonly __hex: true;
645
+ }>, {
646
+ readonly __hash: true;
647
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
648
+ readonly __hex: true;
649
+ }>, {
650
+ readonly __hash: true;
651
+ }>, unknown>>>;
652
+ $signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
653
+ readonly __hex: true;
654
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
655
+ readonly __hex: true;
656
+ }>, unknown>>, z.ZodNull]>>;
657
+ _hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
658
+ readonly __hex: true;
659
+ }>, {
660
+ readonly __hash: true;
661
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
662
+ readonly __hex: true;
663
+ }>, {
664
+ readonly __hash: true;
665
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
666
+ readonly __hex: true;
667
+ }>, {
668
+ readonly __hash: true;
669
+ }>>>>;
670
+ _dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
671
+ readonly __hex: true;
672
+ }>, {
673
+ readonly __hash: true;
674
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
675
+ readonly __hex: true;
676
+ }>, {
677
+ readonly __hash: true;
678
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
679
+ readonly __hex: true;
680
+ }>, {
681
+ readonly __hash: true;
682
+ }>>>>;
683
+ _sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
684
+ block: z.ZodNumber;
685
+ chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
686
+ previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
687
+ readonly __hex: true;
688
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
689
+ readonly __hex: true;
690
+ }>, unknown>>>;
691
+ protocol: z.ZodOptional<z.ZodNumber>;
692
+ step_hashes: z.ZodOptional<z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
693
+ readonly __hex: true;
694
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
695
+ readonly __hex: true;
696
+ }>, unknown>>>>;
697
+ $epoch: z.ZodNumber;
698
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
699
+ schema: z.ZodString;
700
+ }, z.core.$catchall<z.ZodAny>>>], null>>;
701
+ };
702
+ };
703
+ xyoViewer_chainId: {
704
+ params: {
705
+ to: z.ZodOptional<z.ZodArray<z.ZodAny>>;
706
+ from: z.ZodOptional<z.ZodArray<z.ZodAny>>;
707
+ };
708
+ result: {
709
+ to: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
710
+ readonly __hex: true;
711
+ }>, {
712
+ readonly __address: true;
713
+ }>, string>>;
714
+ from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
715
+ readonly __hex: true;
716
+ }>, {
717
+ readonly __address: true;
718
+ }>, string>>;
719
+ };
720
+ };
721
+ xyoViewer_currentBlock: {
722
+ params: {
723
+ to: z.ZodOptional<z.ZodArray<z.ZodAny>>;
724
+ from: z.ZodOptional<z.ZodArray<z.ZodAny>>;
725
+ };
726
+ result: {
727
+ to: z.ZodTuple<[z.ZodObject<{
728
+ schema: z.ZodLiteral<"network.xyo.boundwitness">;
729
+ addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
730
+ readonly __hex: true;
731
+ }>, {
732
+ readonly __address: true;
733
+ }>, string>>>;
734
+ payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
735
+ readonly __hex: true;
736
+ }>, {
737
+ readonly __hash: true;
738
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
739
+ readonly __hex: true;
740
+ }>, {
741
+ readonly __hash: true;
742
+ }>, unknown>>>;
743
+ payload_schemas: z.ZodArray<z.ZodString>;
744
+ previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
745
+ readonly __hex: true;
746
+ }>, {
747
+ readonly __hash: true;
748
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
749
+ readonly __hex: true;
750
+ }>, {
751
+ readonly __hash: true;
752
+ }>, unknown>>>>;
753
+ $destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
754
+ readonly __hex: true;
755
+ }>, {
756
+ readonly __address: true;
757
+ }>, string>>>;
758
+ $sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
759
+ readonly __hex: true;
760
+ }>, {
761
+ readonly __hash: true;
762
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
763
+ readonly __hex: true;
764
+ }>, {
765
+ readonly __hash: true;
766
+ }>, unknown>>>;
767
+ $signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
768
+ readonly __hex: true;
769
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
770
+ readonly __hex: true;
771
+ }>, unknown>>, z.ZodNull]>>;
772
+ _hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
773
+ readonly __hex: true;
774
+ }>, {
775
+ readonly __hash: true;
776
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
777
+ readonly __hex: true;
778
+ }>, {
779
+ readonly __hash: true;
780
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
781
+ readonly __hex: true;
782
+ }>, {
783
+ readonly __hash: true;
784
+ }>>>>;
785
+ _dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
786
+ readonly __hex: true;
787
+ }>, {
788
+ readonly __hash: true;
789
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
790
+ readonly __hex: true;
791
+ }>, {
792
+ readonly __hash: true;
793
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
794
+ readonly __hex: true;
795
+ }>, {
796
+ readonly __hash: true;
797
+ }>>>>;
798
+ _sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
799
+ block: z.ZodNumber;
800
+ chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
801
+ previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
802
+ readonly __hex: true;
803
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
804
+ readonly __hex: true;
805
+ }>, unknown>>>;
806
+ protocol: z.ZodOptional<z.ZodNumber>;
807
+ step_hashes: z.ZodOptional<z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
808
+ readonly __hex: true;
809
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
810
+ readonly __hex: true;
811
+ }>, unknown>>>>;
812
+ $epoch: z.ZodNumber;
813
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
814
+ schema: z.ZodString;
815
+ }, z.core.$catchall<z.ZodAny>>>], null>;
816
+ from: z.ZodTuple<[z.ZodObject<{
817
+ schema: z.ZodLiteral<"network.xyo.boundwitness">;
818
+ addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
819
+ readonly __hex: true;
820
+ }>, {
821
+ readonly __address: true;
822
+ }>, string>>>;
823
+ payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
824
+ readonly __hex: true;
825
+ }>, {
826
+ readonly __hash: true;
827
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
828
+ readonly __hex: true;
829
+ }>, {
830
+ readonly __hash: true;
831
+ }>, unknown>>>;
832
+ payload_schemas: z.ZodArray<z.ZodString>;
833
+ previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
834
+ readonly __hex: true;
835
+ }>, {
836
+ readonly __hash: true;
837
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
838
+ readonly __hex: true;
839
+ }>, {
840
+ readonly __hash: true;
841
+ }>, unknown>>>>;
842
+ $destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
843
+ readonly __hex: true;
844
+ }>, {
845
+ readonly __address: true;
846
+ }>, string>>>;
847
+ $sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
848
+ readonly __hex: true;
849
+ }>, {
850
+ readonly __hash: true;
851
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
852
+ readonly __hex: true;
853
+ }>, {
854
+ readonly __hash: true;
855
+ }>, unknown>>>;
856
+ $signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
857
+ readonly __hex: true;
858
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
859
+ readonly __hex: true;
860
+ }>, unknown>>, z.ZodNull]>>;
861
+ _hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
862
+ readonly __hex: true;
863
+ }>, {
864
+ readonly __hash: true;
865
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
866
+ readonly __hex: true;
867
+ }>, {
868
+ readonly __hash: true;
869
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
870
+ readonly __hex: true;
871
+ }>, {
872
+ readonly __hash: true;
873
+ }>>>>;
874
+ _dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
875
+ readonly __hex: true;
876
+ }>, {
877
+ readonly __hash: true;
878
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
879
+ readonly __hex: true;
880
+ }>, {
881
+ readonly __hash: true;
882
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
883
+ readonly __hex: true;
884
+ }>, {
885
+ readonly __hash: true;
886
+ }>>>>;
887
+ _sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
888
+ block: z.ZodNumber;
889
+ chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
890
+ previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
891
+ readonly __hex: true;
892
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
893
+ readonly __hex: true;
894
+ }>, unknown>>>;
895
+ protocol: z.ZodOptional<z.ZodNumber>;
896
+ step_hashes: z.ZodOptional<z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
897
+ readonly __hex: true;
898
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
899
+ readonly __hex: true;
900
+ }>, unknown>>>>;
901
+ $epoch: z.ZodNumber;
902
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
903
+ schema: z.ZodString;
904
+ }, z.core.$catchall<z.ZodAny>>>], null>;
905
+ };
906
+ };
907
+ xyoViewer_currentBlockHash: {
908
+ params: {
909
+ to: z.ZodOptional<z.ZodArray<z.ZodAny>>;
910
+ from: z.ZodOptional<z.ZodArray<z.ZodAny>>;
911
+ };
912
+ result: {
913
+ to: z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
914
+ readonly __hex: true;
915
+ }>, {
916
+ readonly __hash: true;
917
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
918
+ readonly __hex: true;
919
+ }>, {
920
+ readonly __hash: true;
921
+ }>, unknown>>;
922
+ from: z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
923
+ readonly __hex: true;
924
+ }>, {
925
+ readonly __hash: true;
926
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
927
+ readonly __hex: true;
928
+ }>, {
929
+ readonly __hash: true;
930
+ }>, unknown>>;
931
+ };
932
+ };
933
+ xyoViewer_currentBlockNumber: {
934
+ params: {
935
+ to: z.ZodOptional<z.ZodArray<z.ZodAny>>;
936
+ from: z.ZodOptional<z.ZodArray<z.ZodAny>>;
937
+ };
938
+ result: {
939
+ to: z.ZodNumber;
940
+ from: z.ZodNumber;
941
+ };
942
+ };
943
+ xyoViewer_transactionByBlockHashAndIndex: {
944
+ params: {
945
+ to: z.ZodTuple<[z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
946
+ readonly __hex: true;
947
+ }>, {
948
+ readonly __hash: true;
949
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
950
+ readonly __hex: true;
951
+ }>, {
952
+ readonly __hash: true;
953
+ }>, unknown>>, z.ZodNumber], null>;
954
+ from: z.ZodTuple<[z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
955
+ readonly __hex: true;
956
+ }>, {
957
+ readonly __hash: true;
958
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
959
+ readonly __hex: true;
960
+ }>, {
961
+ readonly __hash: true;
962
+ }>, unknown>>, z.ZodNumber], null>;
963
+ };
964
+ result: {
965
+ to: z.ZodNullable<z.ZodTuple<[z.ZodObject<{
966
+ schema: z.ZodLiteral<"network.xyo.boundwitness">;
967
+ addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
968
+ readonly __hex: true;
969
+ }>, {
970
+ readonly __address: true;
971
+ }>, string>>>;
972
+ payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
973
+ readonly __hex: true;
974
+ }>, {
975
+ readonly __hash: true;
976
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
977
+ readonly __hex: true;
978
+ }>, {
979
+ readonly __hash: true;
980
+ }>, unknown>>>;
981
+ payload_schemas: z.ZodArray<z.ZodString>;
982
+ previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
983
+ readonly __hex: true;
984
+ }>, {
985
+ readonly __hash: true;
986
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
987
+ readonly __hex: true;
988
+ }>, {
989
+ readonly __hash: true;
990
+ }>, unknown>>>>;
991
+ $destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
992
+ readonly __hex: true;
993
+ }>, {
994
+ readonly __address: true;
995
+ }>, string>>>;
996
+ $sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
997
+ readonly __hex: true;
998
+ }>, {
999
+ readonly __hash: true;
1000
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1001
+ readonly __hex: true;
1002
+ }>, {
1003
+ readonly __hash: true;
1004
+ }>, unknown>>>;
1005
+ $signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1006
+ readonly __hex: true;
1007
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1008
+ readonly __hex: true;
1009
+ }>, unknown>>, z.ZodNull]>>;
1010
+ _hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1011
+ readonly __hex: true;
1012
+ }>, {
1013
+ readonly __hash: true;
1014
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1015
+ readonly __hex: true;
1016
+ }>, {
1017
+ readonly __hash: true;
1018
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1019
+ readonly __hex: true;
1020
+ }>, {
1021
+ readonly __hash: true;
1022
+ }>>>>;
1023
+ _dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1024
+ readonly __hex: true;
1025
+ }>, {
1026
+ readonly __hash: true;
1027
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1028
+ readonly __hex: true;
1029
+ }>, {
1030
+ readonly __hash: true;
1031
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1032
+ readonly __hex: true;
1033
+ }>, {
1034
+ readonly __hash: true;
1035
+ }>>>>;
1036
+ _sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
1037
+ nbf: z.ZodNumber;
1038
+ exp: z.ZodNumber;
1039
+ fees: z.ZodObject<{
1040
+ base: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1041
+ readonly __hex: true;
1042
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1043
+ readonly __hex: true;
1044
+ }>, unknown>>;
1045
+ gasLimit: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1046
+ readonly __hex: true;
1047
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1048
+ readonly __hex: true;
1049
+ }>, unknown>>;
1050
+ gasPrice: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1051
+ readonly __hex: true;
1052
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1053
+ readonly __hex: true;
1054
+ }>, unknown>>;
1055
+ priority: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1056
+ readonly __hex: true;
1057
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1058
+ readonly __hex: true;
1059
+ }>, unknown>>;
1060
+ }, z.core.$strip>;
1061
+ chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
1062
+ from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
1063
+ script: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
1064
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
1065
+ schema: z.ZodString;
1066
+ }, z.core.$catchall<z.ZodAny>>>], null>>;
1067
+ from: z.ZodNullable<z.ZodTuple<[z.ZodObject<{
1068
+ schema: z.ZodLiteral<"network.xyo.boundwitness">;
1069
+ addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1070
+ readonly __hex: true;
1071
+ }>, {
1072
+ readonly __address: true;
1073
+ }>, string>>>;
1074
+ payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1075
+ readonly __hex: true;
1076
+ }>, {
1077
+ readonly __hash: true;
1078
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1079
+ readonly __hex: true;
1080
+ }>, {
1081
+ readonly __hash: true;
1082
+ }>, unknown>>>;
1083
+ payload_schemas: z.ZodArray<z.ZodString>;
1084
+ previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1085
+ readonly __hex: true;
1086
+ }>, {
1087
+ readonly __hash: true;
1088
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1089
+ readonly __hex: true;
1090
+ }>, {
1091
+ readonly __hash: true;
1092
+ }>, unknown>>>>;
1093
+ $destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1094
+ readonly __hex: true;
1095
+ }>, {
1096
+ readonly __address: true;
1097
+ }>, string>>>;
1098
+ $sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1099
+ readonly __hex: true;
1100
+ }>, {
1101
+ readonly __hash: true;
1102
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1103
+ readonly __hex: true;
1104
+ }>, {
1105
+ readonly __hash: true;
1106
+ }>, unknown>>>;
1107
+ $signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1108
+ readonly __hex: true;
1109
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1110
+ readonly __hex: true;
1111
+ }>, unknown>>, z.ZodNull]>>;
1112
+ _hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1113
+ readonly __hex: true;
1114
+ }>, {
1115
+ readonly __hash: true;
1116
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1117
+ readonly __hex: true;
1118
+ }>, {
1119
+ readonly __hash: true;
1120
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1121
+ readonly __hex: true;
1122
+ }>, {
1123
+ readonly __hash: true;
1124
+ }>>>>;
1125
+ _dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1126
+ readonly __hex: true;
1127
+ }>, {
1128
+ readonly __hash: true;
1129
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1130
+ readonly __hex: true;
1131
+ }>, {
1132
+ readonly __hash: true;
1133
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1134
+ readonly __hex: true;
1135
+ }>, {
1136
+ readonly __hash: true;
1137
+ }>>>>;
1138
+ _sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
1139
+ nbf: z.ZodNumber;
1140
+ exp: z.ZodNumber;
1141
+ fees: z.ZodObject<{
1142
+ base: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1143
+ readonly __hex: true;
1144
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1145
+ readonly __hex: true;
1146
+ }>, unknown>>;
1147
+ gasLimit: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1148
+ readonly __hex: true;
1149
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1150
+ readonly __hex: true;
1151
+ }>, unknown>>;
1152
+ gasPrice: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1153
+ readonly __hex: true;
1154
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1155
+ readonly __hex: true;
1156
+ }>, unknown>>;
1157
+ priority: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1158
+ readonly __hex: true;
1159
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1160
+ readonly __hex: true;
1161
+ }>, unknown>>;
1162
+ }, z.core.$strip>;
1163
+ chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
1164
+ from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
1165
+ script: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
1166
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
1167
+ schema: z.ZodString;
1168
+ }, z.core.$catchall<z.ZodAny>>>], null>>;
1169
+ };
1170
+ };
1171
+ xyoViewer_transactionByBlockNumberAndIndex: {
1172
+ params: {
1173
+ to: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
1174
+ from: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
1175
+ };
1176
+ result: {
1177
+ to: z.ZodNullable<z.ZodTuple<[z.ZodObject<{
1178
+ schema: z.ZodLiteral<"network.xyo.boundwitness">;
1179
+ addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1180
+ readonly __hex: true;
1181
+ }>, {
1182
+ readonly __address: true;
1183
+ }>, string>>>;
1184
+ payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1185
+ readonly __hex: true;
1186
+ }>, {
1187
+ readonly __hash: true;
1188
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1189
+ readonly __hex: true;
1190
+ }>, {
1191
+ readonly __hash: true;
1192
+ }>, unknown>>>;
1193
+ payload_schemas: z.ZodArray<z.ZodString>;
1194
+ previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1195
+ readonly __hex: true;
1196
+ }>, {
1197
+ readonly __hash: true;
1198
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1199
+ readonly __hex: true;
1200
+ }>, {
1201
+ readonly __hash: true;
1202
+ }>, unknown>>>>;
1203
+ $destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1204
+ readonly __hex: true;
1205
+ }>, {
1206
+ readonly __address: true;
1207
+ }>, string>>>;
1208
+ $sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1209
+ readonly __hex: true;
1210
+ }>, {
1211
+ readonly __hash: true;
1212
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1213
+ readonly __hex: true;
1214
+ }>, {
1215
+ readonly __hash: true;
1216
+ }>, unknown>>>;
1217
+ $signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1218
+ readonly __hex: true;
1219
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1220
+ readonly __hex: true;
1221
+ }>, unknown>>, z.ZodNull]>>;
1222
+ _hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1223
+ readonly __hex: true;
1224
+ }>, {
1225
+ readonly __hash: true;
1226
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1227
+ readonly __hex: true;
1228
+ }>, {
1229
+ readonly __hash: true;
1230
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1231
+ readonly __hex: true;
1232
+ }>, {
1233
+ readonly __hash: true;
1234
+ }>>>>;
1235
+ _dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1236
+ readonly __hex: true;
1237
+ }>, {
1238
+ readonly __hash: true;
1239
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1240
+ readonly __hex: true;
1241
+ }>, {
1242
+ readonly __hash: true;
1243
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1244
+ readonly __hex: true;
1245
+ }>, {
1246
+ readonly __hash: true;
1247
+ }>>>>;
1248
+ _sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
1249
+ nbf: z.ZodNumber;
1250
+ exp: z.ZodNumber;
1251
+ fees: z.ZodObject<{
1252
+ base: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1253
+ readonly __hex: true;
1254
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1255
+ readonly __hex: true;
1256
+ }>, unknown>>;
1257
+ gasLimit: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1258
+ readonly __hex: true;
1259
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1260
+ readonly __hex: true;
1261
+ }>, unknown>>;
1262
+ gasPrice: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1263
+ readonly __hex: true;
1264
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1265
+ readonly __hex: true;
1266
+ }>, unknown>>;
1267
+ priority: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1268
+ readonly __hex: true;
1269
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1270
+ readonly __hex: true;
1271
+ }>, unknown>>;
1272
+ }, z.core.$strip>;
1273
+ chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
1274
+ from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
1275
+ script: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
1276
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
1277
+ schema: z.ZodString;
1278
+ }, z.core.$catchall<z.ZodAny>>>], null>>;
1279
+ from: z.ZodNullable<z.ZodTuple<[z.ZodObject<{
1280
+ schema: z.ZodLiteral<"network.xyo.boundwitness">;
1281
+ addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1282
+ readonly __hex: true;
1283
+ }>, {
1284
+ readonly __address: true;
1285
+ }>, string>>>;
1286
+ payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1287
+ readonly __hex: true;
1288
+ }>, {
1289
+ readonly __hash: true;
1290
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1291
+ readonly __hex: true;
1292
+ }>, {
1293
+ readonly __hash: true;
1294
+ }>, unknown>>>;
1295
+ payload_schemas: z.ZodArray<z.ZodString>;
1296
+ previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1297
+ readonly __hex: true;
1298
+ }>, {
1299
+ readonly __hash: true;
1300
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1301
+ readonly __hex: true;
1302
+ }>, {
1303
+ readonly __hash: true;
1304
+ }>, unknown>>>>;
1305
+ $destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1306
+ readonly __hex: true;
1307
+ }>, {
1308
+ readonly __address: true;
1309
+ }>, string>>>;
1310
+ $sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1311
+ readonly __hex: true;
1312
+ }>, {
1313
+ readonly __hash: true;
1314
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1315
+ readonly __hex: true;
1316
+ }>, {
1317
+ readonly __hash: true;
1318
+ }>, unknown>>>;
1319
+ $signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1320
+ readonly __hex: true;
1321
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1322
+ readonly __hex: true;
1323
+ }>, unknown>>, z.ZodNull]>>;
1324
+ _hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1325
+ readonly __hex: true;
1326
+ }>, {
1327
+ readonly __hash: true;
1328
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1329
+ readonly __hex: true;
1330
+ }>, {
1331
+ readonly __hash: true;
1332
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1333
+ readonly __hex: true;
1334
+ }>, {
1335
+ readonly __hash: true;
1336
+ }>>>>;
1337
+ _dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1338
+ readonly __hex: true;
1339
+ }>, {
1340
+ readonly __hash: true;
1341
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1342
+ readonly __hex: true;
1343
+ }>, {
1344
+ readonly __hash: true;
1345
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1346
+ readonly __hex: true;
1347
+ }>, {
1348
+ readonly __hash: true;
1349
+ }>>>>;
1350
+ _sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
1351
+ nbf: z.ZodNumber;
1352
+ exp: z.ZodNumber;
1353
+ fees: z.ZodObject<{
1354
+ base: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1355
+ readonly __hex: true;
1356
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1357
+ readonly __hex: true;
1358
+ }>, unknown>>;
1359
+ gasLimit: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1360
+ readonly __hex: true;
1361
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1362
+ readonly __hex: true;
1363
+ }>, unknown>>;
1364
+ gasPrice: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1365
+ readonly __hex: true;
1366
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1367
+ readonly __hex: true;
1368
+ }>, unknown>>;
1369
+ priority: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1370
+ readonly __hex: true;
1371
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1372
+ readonly __hex: true;
1373
+ }>, unknown>>;
1374
+ }, z.core.$strip>;
1375
+ chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
1376
+ from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
1377
+ script: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
1378
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
1379
+ schema: z.ZodString;
1380
+ }, z.core.$catchall<z.ZodAny>>>], null>>;
1381
+ };
1382
+ };
1383
+ xyoViewer_transactionByHash: {
1384
+ params: {
1385
+ to: z.ZodTuple<[z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1386
+ readonly __hex: true;
1387
+ }>, {
1388
+ readonly __hash: true;
1389
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1390
+ readonly __hex: true;
1391
+ }>, {
1392
+ readonly __hash: true;
1393
+ }>, unknown>>], null>;
1394
+ from: z.ZodTuple<[z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1395
+ readonly __hex: true;
1396
+ }>, {
1397
+ readonly __hash: true;
1398
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1399
+ readonly __hex: true;
1400
+ }>, {
1401
+ readonly __hash: true;
1402
+ }>, unknown>>], null>;
1403
+ };
1404
+ result: {
1405
+ to: z.ZodNullable<z.ZodTuple<[z.ZodObject<{
1406
+ schema: z.ZodLiteral<"network.xyo.boundwitness">;
1407
+ addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1408
+ readonly __hex: true;
1409
+ }>, {
1410
+ readonly __address: true;
1411
+ }>, string>>>;
1412
+ payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1413
+ readonly __hex: true;
1414
+ }>, {
1415
+ readonly __hash: true;
1416
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1417
+ readonly __hex: true;
1418
+ }>, {
1419
+ readonly __hash: true;
1420
+ }>, unknown>>>;
1421
+ payload_schemas: z.ZodArray<z.ZodString>;
1422
+ previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1423
+ readonly __hex: true;
1424
+ }>, {
1425
+ readonly __hash: true;
1426
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1427
+ readonly __hex: true;
1428
+ }>, {
1429
+ readonly __hash: true;
1430
+ }>, unknown>>>>;
1431
+ $destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1432
+ readonly __hex: true;
1433
+ }>, {
1434
+ readonly __address: true;
1435
+ }>, string>>>;
1436
+ $sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1437
+ readonly __hex: true;
1438
+ }>, {
1439
+ readonly __hash: true;
1440
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1441
+ readonly __hex: true;
1442
+ }>, {
1443
+ readonly __hash: true;
1444
+ }>, unknown>>>;
1445
+ $signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1446
+ readonly __hex: true;
1447
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1448
+ readonly __hex: true;
1449
+ }>, unknown>>, z.ZodNull]>>;
1450
+ _hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1451
+ readonly __hex: true;
1452
+ }>, {
1453
+ readonly __hash: true;
1454
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1455
+ readonly __hex: true;
1456
+ }>, {
1457
+ readonly __hash: true;
1458
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1459
+ readonly __hex: true;
1460
+ }>, {
1461
+ readonly __hash: true;
1462
+ }>>>>;
1463
+ _dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1464
+ readonly __hex: true;
1465
+ }>, {
1466
+ readonly __hash: true;
1467
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1468
+ readonly __hex: true;
1469
+ }>, {
1470
+ readonly __hash: true;
1471
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1472
+ readonly __hex: true;
1473
+ }>, {
1474
+ readonly __hash: true;
1475
+ }>>>>;
1476
+ _sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
1477
+ nbf: z.ZodNumber;
1478
+ exp: z.ZodNumber;
1479
+ fees: z.ZodObject<{
1480
+ base: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1481
+ readonly __hex: true;
1482
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1483
+ readonly __hex: true;
1484
+ }>, unknown>>;
1485
+ gasLimit: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1486
+ readonly __hex: true;
1487
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1488
+ readonly __hex: true;
1489
+ }>, unknown>>;
1490
+ gasPrice: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1491
+ readonly __hex: true;
1492
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1493
+ readonly __hex: true;
1494
+ }>, unknown>>;
1495
+ priority: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1496
+ readonly __hex: true;
1497
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1498
+ readonly __hex: true;
1499
+ }>, unknown>>;
1500
+ }, z.core.$strip>;
1501
+ chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
1502
+ from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
1503
+ script: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
1504
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
1505
+ schema: z.ZodString;
1506
+ }, z.core.$catchall<z.ZodAny>>>], null>>;
1507
+ from: z.ZodNullable<z.ZodTuple<[z.ZodObject<{
1508
+ schema: z.ZodLiteral<"network.xyo.boundwitness">;
1509
+ addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1510
+ readonly __hex: true;
1511
+ }>, {
1512
+ readonly __address: true;
1513
+ }>, string>>>;
1514
+ payload_hashes: z.ZodArray<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1515
+ readonly __hex: true;
1516
+ }>, {
1517
+ readonly __hash: true;
1518
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1519
+ readonly __hex: true;
1520
+ }>, {
1521
+ readonly __hash: true;
1522
+ }>, unknown>>>;
1523
+ payload_schemas: z.ZodArray<z.ZodString>;
1524
+ previous_hashes: z.ZodArray<z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1525
+ readonly __hex: true;
1526
+ }>, {
1527
+ readonly __hash: true;
1528
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1529
+ readonly __hex: true;
1530
+ }>, {
1531
+ readonly __hash: true;
1532
+ }>, unknown>>>>;
1533
+ $destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1534
+ readonly __hex: true;
1535
+ }>, {
1536
+ readonly __address: true;
1537
+ }>, string>>>;
1538
+ $sourceQuery: z.ZodOptional<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1539
+ readonly __hex: true;
1540
+ }>, {
1541
+ readonly __hash: true;
1542
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1543
+ readonly __hex: true;
1544
+ }>, {
1545
+ readonly __hash: true;
1546
+ }>, unknown>>>;
1547
+ $signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1548
+ readonly __hex: true;
1549
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1550
+ readonly __hex: true;
1551
+ }>, unknown>>, z.ZodNull]>>;
1552
+ _hash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1553
+ readonly __hex: true;
1554
+ }>, {
1555
+ readonly __hash: true;
1556
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1557
+ readonly __hex: true;
1558
+ }>, {
1559
+ readonly __hash: true;
1560
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1561
+ readonly __hex: true;
1562
+ }>, {
1563
+ readonly __hash: true;
1564
+ }>>>>;
1565
+ _dataHash: z.ZodOptional<z.ZodPipe<z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1566
+ readonly __hex: true;
1567
+ }>, {
1568
+ readonly __hash: true;
1569
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1570
+ readonly __hex: true;
1571
+ }>, {
1572
+ readonly __hash: true;
1573
+ }>, unknown>>, z.ZodTransform<string, import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
1574
+ readonly __hex: true;
1575
+ }>, {
1576
+ readonly __hash: true;
1577
+ }>>>>;
1578
+ _sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
1579
+ nbf: z.ZodNumber;
1580
+ exp: z.ZodNumber;
1581
+ fees: z.ZodObject<{
1582
+ base: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1583
+ readonly __hex: true;
1584
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1585
+ readonly __hex: true;
1586
+ }>, unknown>>;
1587
+ gasLimit: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1588
+ readonly __hex: true;
1589
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1590
+ readonly __hex: true;
1591
+ }>, unknown>>;
1592
+ gasPrice: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1593
+ readonly __hex: true;
1594
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1595
+ readonly __hex: true;
1596
+ }>, unknown>>;
1597
+ priority: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
1598
+ readonly __hex: true;
1599
+ }>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
1600
+ readonly __hex: true;
1601
+ }>, unknown>>;
1602
+ }, z.core.$strip>;
1603
+ chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
1604
+ from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").Chain, string>>;
1605
+ script: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
1606
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
1607
+ schema: z.ZodString;
1608
+ }, z.core.$catchall<z.ZodAny>>>], null>>;
1609
+ };
1610
+ };
1611
+ };
4
1612
  //# sourceMappingURL=XyoViewerRpcSchemas.d.ts.map