@haneullabs/haneul 0.1.0 → 2.5.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 (1676) hide show
  1. package/CHANGELOG.md +339 -113
  2. package/README.md +107 -77
  3. package/dist/_virtual/rolldown_runtime.mjs +18 -0
  4. package/dist/bcs/bcs.d.mts +27 -0
  5. package/dist/bcs/bcs.d.mts.map +1 -0
  6. package/dist/bcs/bcs.mjs +293 -0
  7. package/dist/bcs/bcs.mjs.map +1 -0
  8. package/dist/bcs/effects.mjs +224 -0
  9. package/dist/bcs/effects.mjs.map +1 -0
  10. package/dist/bcs/index.d.mts +3051 -0
  11. package/dist/bcs/index.d.mts.map +1 -0
  12. package/dist/bcs/index.mjs +62 -0
  13. package/dist/bcs/index.mjs.map +1 -0
  14. package/dist/bcs/pure.d.mts +26 -0
  15. package/dist/bcs/pure.d.mts.map +1 -0
  16. package/dist/bcs/pure.mjs +29 -0
  17. package/dist/bcs/pure.mjs.map +1 -0
  18. package/dist/bcs/type-tag-serializer.d.mts +12 -0
  19. package/dist/bcs/type-tag-serializer.d.mts.map +1 -0
  20. package/dist/bcs/type-tag-serializer.mjs +57 -0
  21. package/dist/bcs/type-tag-serializer.mjs.map +1 -0
  22. package/dist/bcs/types.d.mts +40 -0
  23. package/dist/bcs/types.d.mts.map +1 -0
  24. package/dist/client/cache.d.mts +19 -0
  25. package/dist/client/cache.d.mts.map +1 -0
  26. package/dist/client/cache.mjs +48 -0
  27. package/dist/client/cache.mjs.map +1 -0
  28. package/dist/client/client.d.mts +21 -0
  29. package/dist/client/client.d.mts.map +1 -0
  30. package/dist/client/client.mjs +30 -0
  31. package/dist/client/client.mjs.map +1 -0
  32. package/dist/client/core-resolver.d.mts +9 -0
  33. package/dist/client/core-resolver.d.mts.map +1 -0
  34. package/dist/client/core-resolver.mjs +249 -0
  35. package/dist/client/core-resolver.mjs.map +1 -0
  36. package/dist/client/core.d.mts +48 -0
  37. package/dist/client/core.d.mts.map +1 -0
  38. package/dist/client/core.mjs +120 -0
  39. package/dist/client/core.mjs.map +1 -0
  40. package/dist/client/errors.d.mts +15 -0
  41. package/dist/client/errors.d.mts.map +1 -0
  42. package/dist/client/errors.mjs +28 -0
  43. package/dist/client/errors.mjs.map +1 -0
  44. package/dist/client/index.d.mts +8 -0
  45. package/dist/client/index.mjs +7 -0
  46. package/dist/client/mvr.d.mts +12 -0
  47. package/dist/client/mvr.d.mts.map +1 -0
  48. package/dist/client/mvr.mjs +250 -0
  49. package/dist/client/mvr.mjs.map +1 -0
  50. package/dist/client/transaction-resolver.mjs +405 -0
  51. package/dist/client/transaction-resolver.mjs.map +1 -0
  52. package/dist/client/types.d.mts +720 -0
  53. package/dist/client/types.d.mts.map +1 -0
  54. package/dist/client/utils.d.mts +35 -0
  55. package/dist/client/utils.d.mts.map +1 -0
  56. package/dist/client/utils.mjs +387 -0
  57. package/dist/client/utils.mjs.map +1 -0
  58. package/dist/cryptography/index.d.mts +7 -0
  59. package/dist/cryptography/index.mjs +8 -0
  60. package/dist/cryptography/intent.d.mts +11 -0
  61. package/dist/cryptography/intent.d.mts.map +1 -0
  62. package/dist/cryptography/intent.mjs +20 -0
  63. package/dist/cryptography/intent.mjs.map +1 -0
  64. package/dist/cryptography/keypair.d.mts +83 -0
  65. package/dist/cryptography/keypair.d.mts.map +1 -0
  66. package/dist/cryptography/keypair.mjs +96 -0
  67. package/dist/cryptography/keypair.mjs.map +1 -0
  68. package/dist/cryptography/mnemonics.d.mts +31 -0
  69. package/dist/cryptography/mnemonics.d.mts.map +1 -0
  70. package/dist/cryptography/mnemonics.mjs +45 -0
  71. package/dist/cryptography/mnemonics.mjs.map +1 -0
  72. package/dist/cryptography/publickey.d.mts +65 -0
  73. package/dist/cryptography/publickey.d.mts.map +1 -0
  74. package/dist/cryptography/publickey.mjs +105 -0
  75. package/dist/cryptography/publickey.mjs.map +1 -0
  76. package/dist/cryptography/signature-scheme.d.mts +28 -0
  77. package/dist/cryptography/signature-scheme.d.mts.map +1 -0
  78. package/dist/cryptography/signature-scheme.mjs +27 -0
  79. package/dist/cryptography/signature-scheme.mjs.map +1 -0
  80. package/dist/cryptography/signature.d.mts +75 -0
  81. package/dist/cryptography/signature.d.mts.map +1 -0
  82. package/dist/cryptography/signature.mjs +46 -0
  83. package/dist/cryptography/signature.mjs.map +1 -0
  84. package/dist/faucet/faucet.d.mts +25 -0
  85. package/dist/faucet/faucet.d.mts.map +1 -0
  86. package/dist/faucet/faucet.mjs +42 -0
  87. package/dist/faucet/faucet.mjs.map +1 -0
  88. package/dist/faucet/index.d.mts +2 -0
  89. package/dist/faucet/index.mjs +3 -0
  90. package/dist/graphql/client.d.mts +87 -0
  91. package/dist/graphql/client.d.mts.map +1 -0
  92. package/dist/graphql/client.mjs +118 -0
  93. package/dist/graphql/client.mjs.map +1 -0
  94. package/dist/graphql/core.d.mts +38 -0
  95. package/dist/graphql/core.d.mts.map +1 -0
  96. package/dist/graphql/core.mjs +640 -0
  97. package/dist/graphql/core.mjs.map +1 -0
  98. package/dist/graphql/generated/queries.d.mts +14 -0
  99. package/dist/graphql/generated/queries.d.mts.map +1 -0
  100. package/dist/graphql/generated/queries.mjs +812 -0
  101. package/dist/graphql/generated/queries.mjs.map +1 -0
  102. package/dist/graphql/generated/tada-env.d.mts +11244 -0
  103. package/dist/graphql/generated/tada-env.d.mts.map +1 -0
  104. package/dist/graphql/index.d.mts +2 -0
  105. package/dist/graphql/index.mjs +3 -0
  106. package/dist/graphql/schema/index.d.mts +13 -0
  107. package/dist/graphql/schema/index.d.mts.map +1 -0
  108. package/dist/graphql/schema/index.mjs +8 -0
  109. package/dist/graphql/schema/index.mjs.map +1 -0
  110. package/dist/graphql/types.d.mts +75 -0
  111. package/dist/graphql/types.d.mts.map +1 -0
  112. package/dist/grpc/client.d.mts +63 -0
  113. package/dist/grpc/client.d.mts.map +1 -0
  114. package/dist/grpc/client.mjs +105 -0
  115. package/dist/grpc/client.mjs.map +1 -0
  116. package/dist/grpc/core.d.mts +40 -0
  117. package/dist/grpc/core.d.mts.map +1 -0
  118. package/dist/grpc/core.mjs +810 -0
  119. package/dist/grpc/core.mjs.map +1 -0
  120. package/dist/grpc/index.d.mts +4 -0
  121. package/dist/grpc/index.mjs +5 -0
  122. package/dist/grpc/proto/google/protobuf/any.d.mts +173 -0
  123. package/dist/grpc/proto/google/protobuf/any.d.mts.map +1 -0
  124. package/dist/grpc/proto/google/protobuf/any.mjs +101 -0
  125. package/dist/grpc/proto/google/protobuf/any.mjs.map +1 -0
  126. package/dist/grpc/proto/google/protobuf/duration.d.mts +106 -0
  127. package/dist/grpc/proto/google/protobuf/duration.d.mts.map +1 -0
  128. package/dist/grpc/proto/google/protobuf/duration.mjs +62 -0
  129. package/dist/grpc/proto/google/protobuf/duration.mjs.map +1 -0
  130. package/dist/grpc/proto/google/protobuf/field_mask.d.mts +233 -0
  131. package/dist/grpc/proto/google/protobuf/field_mask.d.mts.map +1 -0
  132. package/dist/grpc/proto/google/protobuf/field_mask.mjs +46 -0
  133. package/dist/grpc/proto/google/protobuf/field_mask.mjs.map +1 -0
  134. package/dist/grpc/proto/google/protobuf/struct.d.mts +171 -0
  135. package/dist/grpc/proto/google/protobuf/struct.d.mts.map +1 -0
  136. package/dist/grpc/proto/google/protobuf/struct.mjs +208 -0
  137. package/dist/grpc/proto/google/protobuf/struct.mjs.map +1 -0
  138. package/dist/grpc/proto/google/protobuf/timestamp.d.mts +147 -0
  139. package/dist/grpc/proto/google/protobuf/timestamp.d.mts.map +1 -0
  140. package/dist/grpc/proto/google/protobuf/timestamp.mjs +87 -0
  141. package/dist/grpc/proto/google/protobuf/timestamp.mjs.map +1 -0
  142. package/dist/grpc/proto/google/rpc/status.d.mts +51 -0
  143. package/dist/grpc/proto/google/rpc/status.d.mts.map +1 -0
  144. package/dist/grpc/proto/google/rpc/status.mjs +37 -0
  145. package/dist/grpc/proto/google/rpc/status.mjs.map +1 -0
  146. package/dist/grpc/proto/haneul/rpc/v2/argument.d.mts +71 -0
  147. package/dist/grpc/proto/haneul/rpc/v2/argument.d.mts.map +1 -0
  148. package/dist/grpc/proto/haneul/rpc/v2/argument.mjs +74 -0
  149. package/dist/grpc/proto/haneul/rpc/v2/argument.mjs.map +1 -0
  150. package/dist/grpc/proto/haneul/rpc/v2/balance_change.d.mts +39 -0
  151. package/dist/grpc/proto/haneul/rpc/v2/balance_change.d.mts.map +1 -0
  152. package/dist/grpc/proto/haneul/rpc/v2/balance_change.mjs +38 -0
  153. package/dist/grpc/proto/haneul/rpc/v2/balance_change.mjs.map +1 -0
  154. package/dist/grpc/proto/haneul/rpc/v2/bcs.d.mts +35 -0
  155. package/dist/grpc/proto/haneul/rpc/v2/bcs.d.mts.map +1 -0
  156. package/dist/grpc/proto/haneul/rpc/v2/bcs.mjs +28 -0
  157. package/dist/grpc/proto/haneul/rpc/v2/bcs.mjs.map +1 -0
  158. package/dist/grpc/proto/haneul/rpc/v2/checkpoint.d.mts +73 -0
  159. package/dist/grpc/proto/haneul/rpc/v2/checkpoint.d.mts.map +1 -0
  160. package/dist/grpc/proto/haneul/rpc/v2/checkpoint.mjs +68 -0
  161. package/dist/grpc/proto/haneul/rpc/v2/checkpoint.mjs.map +1 -0
  162. package/dist/grpc/proto/haneul/rpc/v2/checkpoint_contents.d.mts +104 -0
  163. package/dist/grpc/proto/haneul/rpc/v2/checkpoint_contents.d.mts.map +1 -0
  164. package/dist/grpc/proto/haneul/rpc/v2/checkpoint_contents.mjs +100 -0
  165. package/dist/grpc/proto/haneul/rpc/v2/checkpoint_contents.mjs.map +1 -0
  166. package/dist/grpc/proto/haneul/rpc/v2/checkpoint_summary.d.mts +200 -0
  167. package/dist/grpc/proto/haneul/rpc/v2/checkpoint_summary.d.mts.map +1 -0
  168. package/dist/grpc/proto/haneul/rpc/v2/checkpoint_summary.mjs +180 -0
  169. package/dist/grpc/proto/haneul/rpc/v2/checkpoint_summary.mjs.map +1 -0
  170. package/dist/grpc/proto/haneul/rpc/v2/effects.d.mts +398 -0
  171. package/dist/grpc/proto/haneul/rpc/v2/effects.d.mts.map +1 -0
  172. package/dist/grpc/proto/haneul/rpc/v2/effects.mjs +438 -0
  173. package/dist/grpc/proto/haneul/rpc/v2/effects.mjs.map +1 -0
  174. package/dist/grpc/proto/haneul/rpc/v2/epoch.d.mts +67 -0
  175. package/dist/grpc/proto/haneul/rpc/v2/epoch.d.mts.map +1 -0
  176. package/dist/grpc/proto/haneul/rpc/v2/epoch.mjs +83 -0
  177. package/dist/grpc/proto/haneul/rpc/v2/epoch.mjs.map +1 -0
  178. package/dist/grpc/proto/haneul/rpc/v2/error_reason.d.mts +21 -0
  179. package/dist/grpc/proto/haneul/rpc/v2/error_reason.d.mts.map +1 -0
  180. package/dist/grpc/proto/haneul/rpc/v2/error_reason.mjs +23 -0
  181. package/dist/grpc/proto/haneul/rpc/v2/error_reason.mjs.map +1 -0
  182. package/dist/grpc/proto/haneul/rpc/v2/event.d.mts +93 -0
  183. package/dist/grpc/proto/haneul/rpc/v2/event.d.mts.map +1 -0
  184. package/dist/grpc/proto/haneul/rpc/v2/event.mjs +89 -0
  185. package/dist/grpc/proto/haneul/rpc/v2/event.mjs.map +1 -0
  186. package/dist/grpc/proto/haneul/rpc/v2/executed_transaction.d.mts +85 -0
  187. package/dist/grpc/proto/haneul/rpc/v2/executed_transaction.d.mts.map +1 -0
  188. package/dist/grpc/proto/haneul/rpc/v2/executed_transaction.mjs +83 -0
  189. package/dist/grpc/proto/haneul/rpc/v2/executed_transaction.mjs.map +1 -0
  190. package/dist/grpc/proto/haneul/rpc/v2/execution_status.d.mts +914 -0
  191. package/dist/grpc/proto/haneul/rpc/v2/execution_status.d.mts.map +1 -0
  192. package/dist/grpc/proto/haneul/rpc/v2/execution_status.mjs +916 -0
  193. package/dist/grpc/proto/haneul/rpc/v2/execution_status.mjs.map +1 -0
  194. package/dist/grpc/proto/haneul/rpc/v2/gas_cost_summary.d.mts +46 -0
  195. package/dist/grpc/proto/haneul/rpc/v2/gas_cost_summary.d.mts.map +1 -0
  196. package/dist/grpc/proto/haneul/rpc/v2/gas_cost_summary.mjs +49 -0
  197. package/dist/grpc/proto/haneul/rpc/v2/gas_cost_summary.mjs.map +1 -0
  198. package/dist/grpc/proto/haneul/rpc/v2/input.d.mts +190 -0
  199. package/dist/grpc/proto/haneul/rpc/v2/input.d.mts.map +1 -0
  200. package/dist/grpc/proto/haneul/rpc/v2/input.mjs +196 -0
  201. package/dist/grpc/proto/haneul/rpc/v2/input.mjs.map +1 -0
  202. package/dist/grpc/proto/haneul/rpc/v2/jwk.d.mts +75 -0
  203. package/dist/grpc/proto/haneul/rpc/v2/jwk.d.mts.map +1 -0
  204. package/dist/grpc/proto/haneul/rpc/v2/jwk.mjs +66 -0
  205. package/dist/grpc/proto/haneul/rpc/v2/jwk.mjs.map +1 -0
  206. package/dist/grpc/proto/haneul/rpc/v2/ledger_service.client.d.mts +87 -0
  207. package/dist/grpc/proto/haneul/rpc/v2/ledger_service.client.d.mts.map +1 -0
  208. package/dist/grpc/proto/haneul/rpc/v2/ledger_service.client.mjs +70 -0
  209. package/dist/grpc/proto/haneul/rpc/v2/ledger_service.client.mjs.map +1 -0
  210. package/dist/grpc/proto/haneul/rpc/v2/ledger_service.d.mts +424 -0
  211. package/dist/grpc/proto/haneul/rpc/v2/ledger_service.d.mts.map +1 -0
  212. package/dist/grpc/proto/haneul/rpc/v2/ledger_service.mjs +411 -0
  213. package/dist/grpc/proto/haneul/rpc/v2/ledger_service.mjs.map +1 -0
  214. package/dist/grpc/proto/haneul/rpc/v2/move_package.d.mts +584 -0
  215. package/dist/grpc/proto/haneul/rpc/v2/move_package.d.mts.map +1 -0
  216. package/dist/grpc/proto/haneul/rpc/v2/move_package.mjs +574 -0
  217. package/dist/grpc/proto/haneul/rpc/v2/move_package.mjs.map +1 -0
  218. package/dist/grpc/proto/haneul/rpc/v2/move_package_service.client.d.mts +59 -0
  219. package/dist/grpc/proto/haneul/rpc/v2/move_package_service.client.d.mts.map +1 -0
  220. package/dist/grpc/proto/haneul/rpc/v2/move_package_service.client.mjs +47 -0
  221. package/dist/grpc/proto/haneul/rpc/v2/move_package_service.client.mjs.map +1 -0
  222. package/dist/grpc/proto/haneul/rpc/v2/move_package_service.d.mts +232 -0
  223. package/dist/grpc/proto/haneul/rpc/v2/move_package_service.d.mts.map +1 -0
  224. package/dist/grpc/proto/haneul/rpc/v2/move_package_service.mjs +231 -0
  225. package/dist/grpc/proto/haneul/rpc/v2/move_package_service.mjs.map +1 -0
  226. package/dist/grpc/proto/haneul/rpc/v2/name_service.client.d.mts +43 -0
  227. package/dist/grpc/proto/haneul/rpc/v2/name_service.client.d.mts.map +1 -0
  228. package/dist/grpc/proto/haneul/rpc/v2/name_service.client.mjs +33 -0
  229. package/dist/grpc/proto/haneul/rpc/v2/name_service.client.mjs.map +1 -0
  230. package/dist/grpc/proto/haneul/rpc/v2/name_service.d.mts +149 -0
  231. package/dist/grpc/proto/haneul/rpc/v2/name_service.d.mts.map +1 -0
  232. package/dist/grpc/proto/haneul/rpc/v2/name_service.mjs +135 -0
  233. package/dist/grpc/proto/haneul/rpc/v2/name_service.mjs.map +1 -0
  234. package/dist/grpc/proto/haneul/rpc/v2/object.d.mts +132 -0
  235. package/dist/grpc/proto/haneul/rpc/v2/object.d.mts.map +1 -0
  236. package/dist/grpc/proto/haneul/rpc/v2/object.mjs +125 -0
  237. package/dist/grpc/proto/haneul/rpc/v2/object.mjs.map +1 -0
  238. package/dist/grpc/proto/haneul/rpc/v2/object_reference.d.mts +39 -0
  239. package/dist/grpc/proto/haneul/rpc/v2/object_reference.d.mts.map +1 -0
  240. package/dist/grpc/proto/haneul/rpc/v2/object_reference.mjs +39 -0
  241. package/dist/grpc/proto/haneul/rpc/v2/object_reference.mjs.map +1 -0
  242. package/dist/grpc/proto/haneul/rpc/v2/owner.d.mts +66 -0
  243. package/dist/grpc/proto/haneul/rpc/v2/owner.d.mts.map +1 -0
  244. package/dist/grpc/proto/haneul/rpc/v2/owner.mjs +69 -0
  245. package/dist/grpc/proto/haneul/rpc/v2/owner.mjs.map +1 -0
  246. package/dist/grpc/proto/haneul/rpc/v2/protocol_config.d.mts +35 -0
  247. package/dist/grpc/proto/haneul/rpc/v2/protocol_config.d.mts.map +1 -0
  248. package/dist/grpc/proto/haneul/rpc/v2/protocol_config.mjs +45 -0
  249. package/dist/grpc/proto/haneul/rpc/v2/protocol_config.mjs.map +1 -0
  250. package/dist/grpc/proto/haneul/rpc/v2/signature.d.mts +635 -0
  251. package/dist/grpc/proto/haneul/rpc/v2/signature.d.mts.map +1 -0
  252. package/dist/grpc/proto/haneul/rpc/v2/signature.mjs +573 -0
  253. package/dist/grpc/proto/haneul/rpc/v2/signature.mjs.map +1 -0
  254. package/dist/grpc/proto/haneul/rpc/v2/signature_scheme.d.mts +44 -0
  255. package/dist/grpc/proto/haneul/rpc/v2/signature_scheme.d.mts.map +1 -0
  256. package/dist/grpc/proto/haneul/rpc/v2/signature_scheme.mjs +46 -0
  257. package/dist/grpc/proto/haneul/rpc/v2/signature_scheme.mjs.map +1 -0
  258. package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.client.d.mts +39 -0
  259. package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.client.d.mts.map +1 -0
  260. package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.client.mjs +28 -0
  261. package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.client.mjs.map +1 -0
  262. package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.d.mts +84 -0
  263. package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.d.mts.map +1 -0
  264. package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.mjs +77 -0
  265. package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.mjs.map +1 -0
  266. package/dist/grpc/proto/haneul/rpc/v2/state_service.client.d.mts +67 -0
  267. package/dist/grpc/proto/haneul/rpc/v2/state_service.client.d.mts.map +1 -0
  268. package/dist/grpc/proto/haneul/rpc/v2/state_service.client.mjs +54 -0
  269. package/dist/grpc/proto/haneul/rpc/v2/state_service.client.mjs.map +1 -0
  270. package/dist/grpc/proto/haneul/rpc/v2/state_service.d.mts +709 -0
  271. package/dist/grpc/proto/haneul/rpc/v2/state_service.d.mts.map +1 -0
  272. package/dist/grpc/proto/haneul/rpc/v2/state_service.mjs +672 -0
  273. package/dist/grpc/proto/haneul/rpc/v2/state_service.mjs.map +1 -0
  274. package/dist/grpc/proto/haneul/rpc/v2/subscription_service.client.d.mts +59 -0
  275. package/dist/grpc/proto/haneul/rpc/v2/subscription_service.client.d.mts.map +1 -0
  276. package/dist/grpc/proto/haneul/rpc/v2/subscription_service.client.mjs +38 -0
  277. package/dist/grpc/proto/haneul/rpc/v2/subscription_service.client.mjs.map +1 -0
  278. package/dist/grpc/proto/haneul/rpc/v2/subscription_service.d.mts +62 -0
  279. package/dist/grpc/proto/haneul/rpc/v2/subscription_service.d.mts.map +1 -0
  280. package/dist/grpc/proto/haneul/rpc/v2/subscription_service.mjs +55 -0
  281. package/dist/grpc/proto/haneul/rpc/v2/subscription_service.mjs.map +1 -0
  282. package/dist/grpc/proto/haneul/rpc/v2/system_state.d.mts +689 -0
  283. package/dist/grpc/proto/haneul/rpc/v2/system_state.d.mts.map +1 -0
  284. package/dist/grpc/proto/haneul/rpc/v2/system_state.mjs +733 -0
  285. package/dist/grpc/proto/haneul/rpc/v2/system_state.mjs.map +1 -0
  286. package/dist/grpc/proto/haneul/rpc/v2/transaction.d.mts +1403 -0
  287. package/dist/grpc/proto/haneul/rpc/v2/transaction.d.mts.map +1 -0
  288. package/dist/grpc/proto/haneul/rpc/v2/transaction.mjs +1280 -0
  289. package/dist/grpc/proto/haneul/rpc/v2/transaction.mjs.map +1 -0
  290. package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.d.mts +43 -0
  291. package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.d.mts.map +1 -0
  292. package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.mjs +33 -0
  293. package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.mjs.map +1 -0
  294. package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.d.mts +189 -0
  295. package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.d.mts.map +1 -0
  296. package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.mjs +193 -0
  297. package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.mjs.map +1 -0
  298. package/dist/grpc/proto/types.d.mts +39 -0
  299. package/dist/grpc/proto/types.d.mts.map +1 -0
  300. package/dist/grpc/proto/types.mjs +240 -0
  301. package/dist/grpc/proto/types.mjs.map +1 -0
  302. package/dist/jsonRpc/client.d.mts +350 -0
  303. package/dist/jsonRpc/client.d.mts.map +1 -0
  304. package/dist/jsonRpc/client.mjs +710 -0
  305. package/dist/jsonRpc/client.mjs.map +1 -0
  306. package/dist/jsonRpc/core.d.mts +79 -0
  307. package/dist/jsonRpc/core.d.mts.map +1 -0
  308. package/dist/jsonRpc/core.mjs +768 -0
  309. package/dist/jsonRpc/core.mjs.map +1 -0
  310. package/dist/jsonRpc/errors.d.mts +15 -0
  311. package/dist/jsonRpc/errors.d.mts.map +1 -0
  312. package/dist/jsonRpc/errors.mjs +38 -0
  313. package/dist/jsonRpc/errors.mjs.map +1 -0
  314. package/dist/jsonRpc/http-transport.d.mts +48 -0
  315. package/dist/jsonRpc/http-transport.d.mts.map +1 -0
  316. package/dist/jsonRpc/http-transport.mjs +68 -0
  317. package/dist/jsonRpc/http-transport.mjs.map +1 -0
  318. package/dist/jsonRpc/index.d.mts +12 -0
  319. package/dist/jsonRpc/index.mjs +6 -0
  320. package/dist/jsonRpc/network.d.mts +5 -0
  321. package/dist/jsonRpc/network.d.mts.map +1 -0
  322. package/dist/jsonRpc/network.mjs +14 -0
  323. package/dist/jsonRpc/network.mjs.map +1 -0
  324. package/dist/jsonRpc/rpc-websocket-client.d.mts +26 -0
  325. package/dist/jsonRpc/rpc-websocket-client.d.mts.map +1 -0
  326. package/dist/jsonRpc/rpc-websocket-client.mjs +135 -0
  327. package/dist/jsonRpc/rpc-websocket-client.mjs.map +1 -0
  328. package/dist/jsonRpc/types/chain.d.mts +101 -0
  329. package/dist/jsonRpc/types/chain.d.mts.map +1 -0
  330. package/dist/jsonRpc/types/changes.d.mts +24 -0
  331. package/dist/jsonRpc/types/changes.d.mts.map +1 -0
  332. package/dist/jsonRpc/types/coins.d.mts +11 -0
  333. package/dist/jsonRpc/types/coins.d.mts.map +1 -0
  334. package/dist/jsonRpc/types/common.d.mts +6 -0
  335. package/dist/jsonRpc/types/common.d.mts.map +1 -0
  336. package/dist/jsonRpc/types/generated.d.mts +1523 -0
  337. package/dist/jsonRpc/types/generated.d.mts.map +1 -0
  338. package/dist/jsonRpc/types/index.d.mts +6 -0
  339. package/dist/jsonRpc/types/params.d.mts +655 -0
  340. package/dist/jsonRpc/types/params.d.mts.map +1 -0
  341. package/dist/keypairs/ed25519/ed25519-hd-key.mjs +45 -0
  342. package/dist/keypairs/ed25519/ed25519-hd-key.mjs.map +1 -0
  343. package/dist/keypairs/ed25519/index.d.mts +3 -0
  344. package/dist/keypairs/ed25519/index.mjs +4 -0
  345. package/dist/keypairs/ed25519/keypair.d.mts +79 -0
  346. package/dist/keypairs/ed25519/keypair.d.mts.map +1 -0
  347. package/dist/keypairs/ed25519/keypair.mjs +125 -0
  348. package/dist/keypairs/ed25519/keypair.mjs.map +1 -0
  349. package/dist/keypairs/ed25519/publickey.d.mts +35 -0
  350. package/dist/keypairs/ed25519/publickey.d.mts.map +1 -0
  351. package/dist/keypairs/ed25519/publickey.mjs +61 -0
  352. package/dist/keypairs/ed25519/publickey.mjs.map +1 -0
  353. package/dist/keypairs/passkey/index.d.mts +3 -0
  354. package/dist/keypairs/passkey/index.mjs +4 -0
  355. package/dist/keypairs/passkey/keypair.d.mts +116 -0
  356. package/dist/keypairs/passkey/keypair.d.mts.map +1 -0
  357. package/dist/keypairs/passkey/keypair.mjs +221 -0
  358. package/dist/keypairs/passkey/keypair.mjs.map +1 -0
  359. package/dist/keypairs/passkey/publickey.d.mts +35 -0
  360. package/dist/keypairs/passkey/publickey.d.mts.map +1 -0
  361. package/dist/keypairs/passkey/publickey.mjs +142 -0
  362. package/dist/keypairs/passkey/publickey.mjs.map +1 -0
  363. package/dist/keypairs/passkey/types.d.mts +16 -0
  364. package/dist/keypairs/passkey/types.d.mts.map +1 -0
  365. package/dist/keypairs/secp256k1/index.d.mts +3 -0
  366. package/dist/keypairs/secp256k1/index.mjs +4 -0
  367. package/dist/keypairs/secp256k1/keypair.d.mts +78 -0
  368. package/dist/keypairs/secp256k1/keypair.d.mts.map +1 -0
  369. package/dist/keypairs/secp256k1/keypair.mjs +125 -0
  370. package/dist/keypairs/secp256k1/keypair.mjs.map +1 -0
  371. package/dist/keypairs/secp256k1/publickey.d.mts +35 -0
  372. package/dist/keypairs/secp256k1/publickey.d.mts.map +1 -0
  373. package/dist/keypairs/secp256k1/publickey.mjs +61 -0
  374. package/dist/keypairs/secp256k1/publickey.mjs.map +1 -0
  375. package/dist/keypairs/secp256r1/index.d.mts +3 -0
  376. package/dist/keypairs/secp256r1/index.mjs +4 -0
  377. package/dist/keypairs/secp256r1/keypair.d.mts +78 -0
  378. package/dist/keypairs/secp256r1/keypair.d.mts.map +1 -0
  379. package/dist/keypairs/secp256r1/keypair.mjs +124 -0
  380. package/dist/keypairs/secp256r1/keypair.mjs.map +1 -0
  381. package/dist/keypairs/secp256r1/publickey.d.mts +35 -0
  382. package/dist/keypairs/secp256r1/publickey.d.mts.map +1 -0
  383. package/dist/keypairs/secp256r1/publickey.mjs +62 -0
  384. package/dist/keypairs/secp256r1/publickey.mjs.map +1 -0
  385. package/dist/multisig/index.d.mts +3 -0
  386. package/dist/multisig/index.mjs +4 -0
  387. package/dist/multisig/publickey.d.mts +119 -0
  388. package/dist/multisig/publickey.d.mts.map +1 -0
  389. package/dist/multisig/publickey.mjs +192 -0
  390. package/dist/multisig/publickey.mjs.map +1 -0
  391. package/dist/multisig/signer.d.mts +24 -0
  392. package/dist/multisig/signer.d.mts.map +1 -0
  393. package/dist/multisig/signer.mjs +53 -0
  394. package/dist/multisig/signer.mjs.map +1 -0
  395. package/dist/transactions/Arguments.d.mts +56 -0
  396. package/dist/transactions/Arguments.d.mts.map +1 -0
  397. package/dist/transactions/Arguments.mjs +15 -0
  398. package/dist/transactions/Arguments.mjs.map +1 -0
  399. package/dist/transactions/Commands.d.mts +71 -0
  400. package/dist/transactions/Commands.d.mts.map +1 -0
  401. package/dist/transactions/Commands.mjs +104 -0
  402. package/dist/transactions/Commands.mjs.map +1 -0
  403. package/dist/transactions/Inputs.d.mts +49 -0
  404. package/dist/transactions/Inputs.d.mts.map +1 -0
  405. package/dist/transactions/Inputs.mjs +66 -0
  406. package/dist/transactions/Inputs.mjs.map +1 -0
  407. package/dist/transactions/ObjectCache.d.mts +84 -0
  408. package/dist/transactions/ObjectCache.d.mts.map +1 -0
  409. package/dist/transactions/ObjectCache.mjs +173 -0
  410. package/dist/transactions/ObjectCache.mjs.map +1 -0
  411. package/dist/transactions/Transaction.d.mts +492 -0
  412. package/dist/transactions/Transaction.d.mts.map +1 -0
  413. package/dist/transactions/Transaction.mjs +520 -0
  414. package/dist/transactions/Transaction.mjs.map +1 -0
  415. package/dist/transactions/TransactionData.d.mts +61 -0
  416. package/dist/transactions/TransactionData.d.mts.map +1 -0
  417. package/dist/transactions/TransactionData.mjs +282 -0
  418. package/dist/transactions/TransactionData.mjs.map +1 -0
  419. package/dist/transactions/data/internal.d.mts +571 -0
  420. package/dist/transactions/data/internal.d.mts.map +1 -0
  421. package/dist/transactions/data/internal.mjs +197 -0
  422. package/dist/transactions/data/internal.mjs.map +1 -0
  423. package/dist/transactions/data/v1.d.mts +249 -0
  424. package/dist/transactions/data/v1.d.mts.map +1 -0
  425. package/dist/transactions/data/v1.mjs +352 -0
  426. package/dist/transactions/data/v1.mjs.map +1 -0
  427. package/dist/transactions/data/v2.d.mts +180 -0
  428. package/dist/transactions/data/v2.d.mts.map +1 -0
  429. package/dist/transactions/data/v2.mjs +100 -0
  430. package/dist/transactions/data/v2.mjs.map +1 -0
  431. package/dist/transactions/executor/caching.mjs +74 -0
  432. package/dist/transactions/executor/caching.mjs.map +1 -0
  433. package/dist/transactions/executor/parallel.d.mts +46 -0
  434. package/dist/transactions/executor/parallel.d.mts.map +1 -0
  435. package/dist/transactions/executor/parallel.mjs +304 -0
  436. package/dist/transactions/executor/parallel.mjs.map +1 -0
  437. package/dist/transactions/executor/queue.mjs +42 -0
  438. package/dist/transactions/executor/queue.mjs.map +1 -0
  439. package/dist/transactions/executor/serial.d.mts +34 -0
  440. package/dist/transactions/executor/serial.d.mts.map +1 -0
  441. package/dist/transactions/executor/serial.mjs +130 -0
  442. package/dist/transactions/executor/serial.mjs.map +1 -0
  443. package/dist/transactions/hash.mjs +20 -0
  444. package/dist/transactions/hash.mjs.map +1 -0
  445. package/dist/transactions/index.d.mts +16 -0
  446. package/dist/transactions/index.mjs +13 -0
  447. package/dist/transactions/intents/CoinWithBalance.d.mts +17 -0
  448. package/dist/transactions/intents/CoinWithBalance.d.mts.map +1 -0
  449. package/dist/transactions/intents/CoinWithBalance.mjs +193 -0
  450. package/dist/transactions/intents/CoinWithBalance.mjs.map +1 -0
  451. package/dist/transactions/object.d.mts +24 -0
  452. package/dist/transactions/object.d.mts.map +1 -0
  453. package/dist/transactions/object.mjs +55 -0
  454. package/dist/transactions/object.mjs.map +1 -0
  455. package/dist/transactions/plugins/NamedPackagesPlugin.mjs +24 -0
  456. package/dist/transactions/plugins/NamedPackagesPlugin.mjs.map +1 -0
  457. package/dist/transactions/pure.d.mts +25 -0
  458. package/dist/transactions/pure.d.mts.map +1 -0
  459. package/dist/transactions/pure.mjs +33 -0
  460. package/dist/transactions/pure.mjs.map +1 -0
  461. package/dist/transactions/resolve.d.mts +16 -0
  462. package/dist/transactions/resolve.d.mts.map +1 -0
  463. package/dist/transactions/resolve.mjs +57 -0
  464. package/dist/transactions/resolve.mjs.map +1 -0
  465. package/dist/transactions/serializer.d.mts +11 -0
  466. package/dist/transactions/serializer.d.mts.map +1 -0
  467. package/dist/transactions/serializer.mjs +107 -0
  468. package/dist/transactions/serializer.mjs.map +1 -0
  469. package/dist/transactions/utils.d.mts +9 -0
  470. package/dist/transactions/utils.d.mts.map +1 -0
  471. package/dist/transactions/utils.mjs +82 -0
  472. package/dist/transactions/utils.mjs.map +1 -0
  473. package/dist/utils/constants.d.mts +15 -0
  474. package/dist/utils/constants.d.mts.map +1 -0
  475. package/dist/utils/constants.mjs +16 -0
  476. package/dist/utils/constants.mjs.map +1 -0
  477. package/dist/utils/derived-objects.d.mts +11 -0
  478. package/dist/utils/derived-objects.d.mts.map +1 -0
  479. package/dist/utils/derived-objects.mjs +14 -0
  480. package/dist/utils/derived-objects.mjs.map +1 -0
  481. package/dist/utils/dynamic-fields.d.mts +7 -0
  482. package/dist/utils/dynamic-fields.d.mts.map +1 -0
  483. package/dist/utils/dynamic-fields.mjs +21 -0
  484. package/dist/utils/dynamic-fields.mjs.map +1 -0
  485. package/dist/utils/format.d.mts +6 -0
  486. package/dist/utils/format.d.mts.map +1 -0
  487. package/dist/utils/format.mjs +14 -0
  488. package/dist/utils/format.mjs.map +1 -0
  489. package/dist/utils/haneul-types.d.mts +31 -0
  490. package/dist/utils/haneul-types.d.mts.map +1 -0
  491. package/dist/utils/haneul-types.mjs +110 -0
  492. package/dist/utils/haneul-types.mjs.map +1 -0
  493. package/dist/utils/haneulns.d.mts +6 -0
  494. package/dist/utils/haneulns.d.mts.map +1 -0
  495. package/dist/utils/haneulns.mjs +27 -0
  496. package/dist/utils/haneulns.mjs.map +1 -0
  497. package/dist/utils/index.d.mts +10 -0
  498. package/dist/utils/index.mjs +11 -0
  499. package/dist/utils/move-registry.d.mts +9 -0
  500. package/dist/utils/move-registry.d.mts.map +1 -0
  501. package/dist/utils/move-registry.mjs +32 -0
  502. package/dist/utils/move-registry.mjs.map +1 -0
  503. package/dist/verify/index.d.mts +2 -0
  504. package/dist/verify/index.mjs +3 -0
  505. package/dist/verify/verify.d.mts +28 -0
  506. package/dist/verify/verify.d.mts.map +1 -0
  507. package/dist/verify/verify.mjs +76 -0
  508. package/dist/verify/verify.mjs.map +1 -0
  509. package/dist/version.mjs +7 -0
  510. package/dist/version.mjs.map +1 -0
  511. package/dist/zklogin/address.d.mts +22 -0
  512. package/dist/zklogin/address.d.mts.map +1 -0
  513. package/dist/zklogin/address.mjs +49 -0
  514. package/dist/zklogin/address.mjs.map +1 -0
  515. package/dist/zklogin/bcs.d.mts +34 -0
  516. package/dist/zklogin/bcs.d.mts.map +1 -0
  517. package/dist/zklogin/bcs.mjs +24 -0
  518. package/dist/zklogin/bcs.mjs.map +1 -0
  519. package/dist/zklogin/index.d.mts +9 -0
  520. package/dist/zklogin/index.mjs +9 -0
  521. package/dist/zklogin/jwt-decode.d.mts +14 -0
  522. package/dist/zklogin/jwt-decode.d.mts.map +1 -0
  523. package/dist/zklogin/jwt-decode.mjs +50 -0
  524. package/dist/zklogin/jwt-decode.mjs.map +1 -0
  525. package/dist/zklogin/jwt-utils.d.mts +13 -0
  526. package/dist/zklogin/jwt-utils.d.mts.map +1 -0
  527. package/dist/zklogin/jwt-utils.mjs +68 -0
  528. package/dist/zklogin/jwt-utils.mjs.map +1 -0
  529. package/dist/zklogin/nonce.d.mts +8 -0
  530. package/dist/zklogin/nonce.d.mts.map +1 -0
  531. package/dist/zklogin/nonce.mjs +32 -0
  532. package/dist/zklogin/nonce.mjs.map +1 -0
  533. package/dist/zklogin/poseidon.d.mts +5 -0
  534. package/dist/zklogin/poseidon.d.mts.map +1 -0
  535. package/dist/zklogin/poseidon.mjs +36 -0
  536. package/dist/zklogin/poseidon.mjs.map +1 -0
  537. package/dist/zklogin/publickey.d.mts +67 -0
  538. package/dist/zklogin/publickey.d.mts.map +1 -0
  539. package/dist/zklogin/publickey.mjs +173 -0
  540. package/dist/zklogin/publickey.mjs.map +1 -0
  541. package/dist/zklogin/signature.d.mts +31 -0
  542. package/dist/zklogin/signature.d.mts.map +1 -0
  543. package/dist/zklogin/signature.mjs +30 -0
  544. package/dist/zklogin/signature.mjs.map +1 -0
  545. package/dist/zklogin/utils.d.mts +11 -0
  546. package/dist/zklogin/utils.d.mts.map +1 -0
  547. package/dist/zklogin/utils.mjs +63 -0
  548. package/dist/zklogin/utils.mjs.map +1 -0
  549. package/package.json +199 -195
  550. package/src/bcs/bcs.ts +91 -2
  551. package/src/bcs/effects.ts +76 -11
  552. package/src/bcs/index.ts +24 -3
  553. package/src/bcs/pure.ts +0 -1
  554. package/src/bcs/types.ts +27 -3
  555. package/src/client/client.ts +73 -0
  556. package/src/client/core-resolver.ts +504 -0
  557. package/src/client/core.ts +268 -0
  558. package/src/client/errors.ts +50 -0
  559. package/src/client/index.ts +23 -16
  560. package/src/client/mvr.ts +488 -0
  561. package/src/client/transaction-resolver.ts +559 -0
  562. package/src/client/types.ts +899 -0
  563. package/src/client/utils.ts +547 -0
  564. package/src/cryptography/index.ts +3 -3
  565. package/src/cryptography/intent.ts +1 -1
  566. package/src/cryptography/keypair.ts +14 -16
  567. package/src/cryptography/publickey.ts +7 -7
  568. package/src/faucet/faucet.ts +3 -99
  569. package/src/faucet/index.ts +1 -8
  570. package/src/graphql/client.ts +131 -9
  571. package/src/graphql/core.ts +645 -154
  572. package/src/graphql/generated/queries.ts +739 -522
  573. package/src/graphql/generated/schema.graphql +4362 -0
  574. package/src/graphql/generated/tada-env.ts +13090 -0
  575. package/src/graphql/generated/tsconfig.tada.json +11 -0
  576. package/src/graphql/index.ts +1 -0
  577. package/src/graphql/queries/getAllBalances.graphql +2 -1
  578. package/src/graphql/queries/getBalance.graphql +2 -1
  579. package/src/graphql/queries/getChainIdentifier.graphql +8 -0
  580. package/src/graphql/queries/getCoinMetadata.graphql +13 -0
  581. package/src/graphql/queries/getCoins.graphql +2 -6
  582. package/src/graphql/queries/getCurrentSystemState.graphql +16 -0
  583. package/src/graphql/queries/getDynamicFields.graphql +1 -1
  584. package/src/graphql/queries/getMoveFunction.graphql +1 -1
  585. package/src/graphql/queries/nameService.graphql +4 -2
  586. package/src/graphql/queries/objects.graphql +28 -6
  587. package/src/graphql/queries/transactions.graphql +116 -41
  588. package/src/graphql/queries/verifyZkLoginSignature.graphql +1 -1
  589. package/src/graphql/schema/index.ts +17 -0
  590. package/src/grpc/client.ts +131 -9
  591. package/src/grpc/core.ts +822 -259
  592. package/src/grpc/index.ts +6 -2
  593. package/src/grpc/proto/haneul/rpc/v2/bcs.ts +1 -1
  594. package/src/grpc/proto/haneul/rpc/v2/checkpoint_contents.ts +44 -0
  595. package/src/grpc/proto/haneul/rpc/v2/effects.ts +80 -0
  596. package/src/grpc/proto/haneul/rpc/v2/epoch.ts +1 -1
  597. package/src/grpc/proto/haneul/rpc/v2/executed_transaction.ts +1 -1
  598. package/src/grpc/proto/haneul/rpc/v2/execution_status.ts +68 -2
  599. package/src/grpc/proto/haneul/rpc/v2/input.ts +115 -0
  600. package/src/grpc/proto/haneul/rpc/v2/name_service.ts +1 -1
  601. package/src/grpc/proto/haneul/rpc/v2/object.ts +1 -1
  602. package/src/grpc/proto/haneul/rpc/v2/signature.ts +1 -1
  603. package/src/grpc/proto/haneul/rpc/v2/signature_scheme.ts +2 -2
  604. package/src/grpc/proto/haneul/rpc/v2/state_service.ts +33 -3
  605. package/src/grpc/proto/haneul/rpc/v2/system_state.ts +10 -10
  606. package/src/grpc/proto/haneul/rpc/v2/transaction.ts +100 -1
  607. package/src/grpc/proto/types.ts +44 -0
  608. package/src/jsonRpc/client.ts +95 -120
  609. package/src/jsonRpc/core.ts +618 -178
  610. package/src/jsonRpc/http-transport.ts +0 -2
  611. package/src/jsonRpc/index.ts +1 -0
  612. package/src/jsonRpc/network.ts +17 -0
  613. package/src/jsonRpc/types/chain.ts +7 -7
  614. package/src/jsonRpc/types/coins.ts +1 -0
  615. package/src/jsonRpc/types/generated.ts +119 -74
  616. package/src/jsonRpc/types/params.ts +20 -20
  617. package/src/keypairs/ed25519/ed25519-hd-key.ts +3 -3
  618. package/src/keypairs/ed25519/keypair.ts +10 -10
  619. package/src/keypairs/ed25519/publickey.ts +1 -1
  620. package/src/keypairs/passkey/keypair.ts +22 -18
  621. package/src/keypairs/passkey/publickey.ts +7 -4
  622. package/src/keypairs/secp256k1/keypair.ts +15 -18
  623. package/src/keypairs/secp256k1/publickey.ts +2 -7
  624. package/src/keypairs/secp256r1/keypair.ts +15 -18
  625. package/src/keypairs/secp256r1/publickey.ts +2 -7
  626. package/src/multisig/publickey.ts +9 -11
  627. package/src/multisig/signer.ts +0 -7
  628. package/src/transactions/Commands.ts +2 -2
  629. package/src/transactions/Inputs.ts +25 -1
  630. package/src/transactions/ObjectCache.ts +2 -2
  631. package/src/transactions/Transaction.ts +86 -94
  632. package/src/transactions/TransactionData.ts +5 -16
  633. package/src/transactions/__tests__/Transaction.test.ts +19 -19
  634. package/src/transactions/__tests__/bcs.test.ts +8 -8
  635. package/src/transactions/data/internal.ts +108 -79
  636. package/src/transactions/data/v2.ts +11 -1
  637. package/src/transactions/executor/caching.ts +39 -31
  638. package/src/transactions/executor/parallel.ts +207 -147
  639. package/src/transactions/executor/serial.ts +110 -38
  640. package/src/transactions/hash.ts +1 -1
  641. package/src/transactions/index.ts +1 -14
  642. package/src/transactions/intents/CoinWithBalance.ts +195 -75
  643. package/src/transactions/object.ts +13 -6
  644. package/src/transactions/plugins/NamedPackagesPlugin.ts +12 -83
  645. package/src/transactions/resolve.ts +11 -10
  646. package/src/transactions/serializer.ts +114 -133
  647. package/src/transactions/utils.ts +1 -1
  648. package/src/utils/constants.ts +14 -8
  649. package/src/utils/dynamic-fields.ts +1 -1
  650. package/src/utils/haneul-types.ts +63 -1
  651. package/src/utils/index.ts +3 -12
  652. package/src/utils/move-registry.ts +3 -4
  653. package/src/verify/index.ts +0 -1
  654. package/src/verify/verify.ts +6 -7
  655. package/src/version.ts +1 -1
  656. package/src/zklogin/address.ts +18 -7
  657. package/src/zklogin/index.ts +1 -5
  658. package/src/zklogin/nonce.ts +2 -2
  659. package/src/zklogin/publickey.ts +25 -24
  660. package/src/zklogin/utils.ts +2 -2
  661. package/bcs/package.json +0 -6
  662. package/client/package.json +0 -6
  663. package/cryptography/package.json +0 -6
  664. package/dist/cjs/bcs/bcs.d.ts +0 -1973
  665. package/dist/cjs/bcs/bcs.js +0 -328
  666. package/dist/cjs/bcs/bcs.js.map +0 -7
  667. package/dist/cjs/bcs/effects.d.ts +0 -579
  668. package/dist/cjs/bcs/effects.js +0 -210
  669. package/dist/cjs/bcs/effects.js.map +0 -7
  670. package/dist/cjs/bcs/index.d.ts +0 -2589
  671. package/dist/cjs/bcs/index.js +0 -80
  672. package/dist/cjs/bcs/index.js.map +0 -7
  673. package/dist/cjs/bcs/pure.d.ts +0 -22
  674. package/dist/cjs/bcs/pure.js +0 -59
  675. package/dist/cjs/bcs/pure.js.map +0 -7
  676. package/dist/cjs/bcs/type-tag-serializer.d.ts +0 -7
  677. package/dist/cjs/bcs/type-tag-serializer.js +0 -117
  678. package/dist/cjs/bcs/type-tag-serializer.js.map +0 -7
  679. package/dist/cjs/bcs/types.d.ts +0 -114
  680. package/dist/cjs/bcs/types.js +0 -27
  681. package/dist/cjs/bcs/types.js.map +0 -7
  682. package/dist/cjs/client/index.d.ts +0 -5
  683. package/dist/cjs/client/index.js +0 -34
  684. package/dist/cjs/client/index.js.map +0 -7
  685. package/dist/cjs/client/network.d.ts +0 -1
  686. package/dist/cjs/client/network.js +0 -38
  687. package/dist/cjs/client/network.js.map +0 -7
  688. package/dist/cjs/cryptography/index.d.ts +0 -7
  689. package/dist/cjs/cryptography/index.js +0 -47
  690. package/dist/cjs/cryptography/index.js.map +0 -7
  691. package/dist/cjs/cryptography/intent.d.ts +0 -6
  692. package/dist/cjs/cryptography/intent.js +0 -35
  693. package/dist/cjs/cryptography/intent.js.map +0 -7
  694. package/dist/cjs/cryptography/keypair.d.ts +0 -72
  695. package/dist/cjs/cryptography/keypair.js +0 -118
  696. package/dist/cjs/cryptography/keypair.js.map +0 -7
  697. package/dist/cjs/cryptography/mnemonics.d.ts +0 -27
  698. package/dist/cjs/cryptography/mnemonics.js +0 -47
  699. package/dist/cjs/cryptography/mnemonics.js.map +0 -7
  700. package/dist/cjs/cryptography/publickey.d.ts +0 -67
  701. package/dist/cjs/cryptography/publickey.js +0 -140
  702. package/dist/cjs/cryptography/publickey.js.map +0 -7
  703. package/dist/cjs/cryptography/signature-scheme.d.ts +0 -24
  704. package/dist/cjs/cryptography/signature-scheme.js +0 -48
  705. package/dist/cjs/cryptography/signature-scheme.js.map +0 -7
  706. package/dist/cjs/cryptography/signature.d.ts +0 -65
  707. package/dist/cjs/cryptography/signature.js +0 -71
  708. package/dist/cjs/cryptography/signature.js.map +0 -7
  709. package/dist/cjs/experimental/cache.d.ts +0 -12
  710. package/dist/cjs/experimental/cache.js +0 -88
  711. package/dist/cjs/experimental/cache.js.map +0 -7
  712. package/dist/cjs/experimental/client.d.ts +0 -12
  713. package/dist/cjs/experimental/client.js +0 -46
  714. package/dist/cjs/experimental/client.js.map +0 -7
  715. package/dist/cjs/experimental/core.d.ts +0 -37
  716. package/dist/cjs/experimental/core.js +0 -114
  717. package/dist/cjs/experimental/core.js.map +0 -7
  718. package/dist/cjs/experimental/errors.d.ts +0 -8
  719. package/dist/cjs/experimental/errors.js +0 -54
  720. package/dist/cjs/experimental/errors.js.map +0 -7
  721. package/dist/cjs/experimental/index.d.ts +0 -7
  722. package/dist/cjs/experimental/index.js +0 -32
  723. package/dist/cjs/experimental/index.js.map +0 -7
  724. package/dist/cjs/experimental/mvr.d.ts +0 -42
  725. package/dist/cjs/experimental/mvr.js +0 -365
  726. package/dist/cjs/experimental/mvr.js.map +0 -7
  727. package/dist/cjs/experimental/transports/utils.d.ts +0 -3
  728. package/dist/cjs/experimental/transports/utils.js +0 -101
  729. package/dist/cjs/experimental/transports/utils.js.map +0 -7
  730. package/dist/cjs/experimental/types.d.ts +0 -434
  731. package/dist/cjs/experimental/types.js +0 -17
  732. package/dist/cjs/experimental/types.js.map +0 -7
  733. package/dist/cjs/faucet/faucet.d.ts +0 -65
  734. package/dist/cjs/faucet/faucet.js +0 -130
  735. package/dist/cjs/faucet/faucet.js.map +0 -7
  736. package/dist/cjs/faucet/index.d.ts +0 -1
  737. package/dist/cjs/faucet/index.js +0 -30
  738. package/dist/cjs/faucet/index.js.map +0 -7
  739. package/dist/cjs/graphql/client.d.ts +0 -50
  740. package/dist/cjs/graphql/client.js +0 -94
  741. package/dist/cjs/graphql/client.js.map +0 -7
  742. package/dist/cjs/graphql/core.d.ts +0 -32
  743. package/dist/cjs/graphql/core.js +0 -471
  744. package/dist/cjs/graphql/core.js.map +0 -7
  745. package/dist/cjs/graphql/generated/2024.1/tada-env.d.ts +0 -11380
  746. package/dist/cjs/graphql/generated/2024.1/tada-env.js +0 -13142
  747. package/dist/cjs/graphql/generated/2024.1/tada-env.js.map +0 -7
  748. package/dist/cjs/graphql/generated/2024.1/tsconfig.tada.js +0 -12
  749. package/dist/cjs/graphql/generated/2024.1/tsconfig.tada.js.map +0 -7
  750. package/dist/cjs/graphql/generated/2024.4/tada-env.d.ts +0 -11496
  751. package/dist/cjs/graphql/generated/2024.4/tada-env.js +0 -13288
  752. package/dist/cjs/graphql/generated/2024.4/tada-env.js.map +0 -7
  753. package/dist/cjs/graphql/generated/2024.4/tsconfig.tada.js +0 -12
  754. package/dist/cjs/graphql/generated/2024.4/tsconfig.tada.js.map +0 -7
  755. package/dist/cjs/graphql/generated/latest/tada-env.d.ts +0 -11128
  756. package/dist/cjs/graphql/generated/latest/tada-env.js +0 -12926
  757. package/dist/cjs/graphql/generated/latest/tada-env.js.map +0 -7
  758. package/dist/cjs/graphql/generated/latest/tsconfig.tada.js +0 -12
  759. package/dist/cjs/graphql/generated/latest/tsconfig.tada.js.map +0 -7
  760. package/dist/cjs/graphql/generated/queries.d.ts +0 -4980
  761. package/dist/cjs/graphql/generated/queries.js +0 -803
  762. package/dist/cjs/graphql/generated/queries.js.map +0 -7
  763. package/dist/cjs/graphql/index.d.ts +0 -1
  764. package/dist/cjs/graphql/index.js +0 -26
  765. package/dist/cjs/graphql/index.js.map +0 -7
  766. package/dist/cjs/graphql/schemas/2024.1/index.d.ts +0 -10
  767. package/dist/cjs/graphql/schemas/2024.1/index.js +0 -29
  768. package/dist/cjs/graphql/schemas/2024.1/index.js.map +0 -7
  769. package/dist/cjs/graphql/schemas/2024.4/index.d.ts +0 -10
  770. package/dist/cjs/graphql/schemas/2024.4/index.js +0 -29
  771. package/dist/cjs/graphql/schemas/2024.4/index.js.map +0 -7
  772. package/dist/cjs/graphql/schemas/latest/index.d.ts +0 -10
  773. package/dist/cjs/graphql/schemas/latest/index.js +0 -29
  774. package/dist/cjs/graphql/schemas/latest/index.js.map +0 -7
  775. package/dist/cjs/graphql/types.d.ts +0 -71
  776. package/dist/cjs/graphql/types.js +0 -17
  777. package/dist/cjs/graphql/types.js.map +0 -7
  778. package/dist/cjs/grpc/client.d.ts +0 -33
  779. package/dist/cjs/grpc/client.js +0 -53
  780. package/dist/cjs/grpc/client.js.map +0 -7
  781. package/dist/cjs/grpc/core.d.ts +0 -30
  782. package/dist/cjs/grpc/core.js +0 -651
  783. package/dist/cjs/grpc/core.js.map +0 -7
  784. package/dist/cjs/grpc/index.d.ts +0 -4
  785. package/dist/cjs/grpc/index.js +0 -27
  786. package/dist/cjs/grpc/index.js.map +0 -7
  787. package/dist/cjs/grpc/proto/google/protobuf/any.d.ts +0 -173
  788. package/dist/cjs/grpc/proto/google/protobuf/any.js +0 -139
  789. package/dist/cjs/grpc/proto/google/protobuf/any.js.map +0 -7
  790. package/dist/cjs/grpc/proto/google/protobuf/duration.d.ts +0 -104
  791. package/dist/cjs/grpc/proto/google/protobuf/duration.js +0 -88
  792. package/dist/cjs/grpc/proto/google/protobuf/duration.js.map +0 -7
  793. package/dist/cjs/grpc/proto/google/protobuf/empty.d.ts +0 -25
  794. package/dist/cjs/grpc/proto/google/protobuf/empty.js +0 -31
  795. package/dist/cjs/grpc/proto/google/protobuf/empty.js.map +0 -7
  796. package/dist/cjs/grpc/proto/google/protobuf/field_mask.d.ts +0 -231
  797. package/dist/cjs/grpc/proto/google/protobuf/field_mask.js +0 -73
  798. package/dist/cjs/grpc/proto/google/protobuf/field_mask.js.map +0 -7
  799. package/dist/cjs/grpc/proto/google/protobuf/struct.d.ts +0 -169
  800. package/dist/cjs/grpc/proto/google/protobuf/struct.js +0 -199
  801. package/dist/cjs/grpc/proto/google/protobuf/struct.js.map +0 -7
  802. package/dist/cjs/grpc/proto/google/protobuf/timestamp.d.ts +0 -145
  803. package/dist/cjs/grpc/proto/google/protobuf/timestamp.js +0 -123
  804. package/dist/cjs/grpc/proto/google/protobuf/timestamp.js.map +0 -7
  805. package/dist/cjs/grpc/proto/google/rpc/error_details.d.ts +0 -525
  806. package/dist/cjs/grpc/proto/google/rpc/error_details.js +0 -332
  807. package/dist/cjs/grpc/proto/google/rpc/error_details.js.map +0 -7
  808. package/dist/cjs/grpc/proto/google/rpc/status.d.ts +0 -46
  809. package/dist/cjs/grpc/proto/google/rpc/status.js +0 -48
  810. package/dist/cjs/grpc/proto/google/rpc/status.js.map +0 -7
  811. package/dist/cjs/grpc/proto/haneul/rpc/v2/argument.d.ts +0 -66
  812. package/dist/cjs/grpc/proto/haneul/rpc/v2/argument.js +0 -71
  813. package/dist/cjs/grpc/proto/haneul/rpc/v2/argument.js.map +0 -7
  814. package/dist/cjs/grpc/proto/haneul/rpc/v2/balance_change.d.ts +0 -34
  815. package/dist/cjs/grpc/proto/haneul/rpc/v2/balance_change.js +0 -56
  816. package/dist/cjs/grpc/proto/haneul/rpc/v2/balance_change.js.map +0 -7
  817. package/dist/cjs/grpc/proto/haneul/rpc/v2/bcs.d.ts +0 -30
  818. package/dist/cjs/grpc/proto/haneul/rpc/v2/bcs.js +0 -48
  819. package/dist/cjs/grpc/proto/haneul/rpc/v2/bcs.js.map +0 -7
  820. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint.d.ts +0 -68
  821. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint.js +0 -64
  822. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint.js.map +0 -7
  823. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_contents.d.ts +0 -74
  824. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_contents.js +0 -89
  825. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_contents.js.map +0 -7
  826. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_summary.d.ts +0 -195
  827. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_summary.js +0 -165
  828. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_summary.js.map +0 -7
  829. package/dist/cjs/grpc/proto/haneul/rpc/v2/effects.d.ts +0 -338
  830. package/dist/cjs/grpc/proto/haneul/rpc/v2/effects.js +0 -294
  831. package/dist/cjs/grpc/proto/haneul/rpc/v2/effects.js.map +0 -7
  832. package/dist/cjs/grpc/proto/haneul/rpc/v2/epoch.d.ts +0 -62
  833. package/dist/cjs/grpc/proto/haneul/rpc/v2/epoch.js +0 -73
  834. package/dist/cjs/grpc/proto/haneul/rpc/v2/epoch.js.map +0 -7
  835. package/dist/cjs/grpc/proto/haneul/rpc/v2/error_reason.d.ts +0 -17
  836. package/dist/cjs/grpc/proto/haneul/rpc/v2/error_reason.js +0 -30
  837. package/dist/cjs/grpc/proto/haneul/rpc/v2/error_reason.js.map +0 -7
  838. package/dist/cjs/grpc/proto/haneul/rpc/v2/event.d.ts +0 -88
  839. package/dist/cjs/grpc/proto/haneul/rpc/v2/event.js +0 -86
  840. package/dist/cjs/grpc/proto/haneul/rpc/v2/event.js.map +0 -7
  841. package/dist/cjs/grpc/proto/haneul/rpc/v2/executed_transaction.d.ts +0 -80
  842. package/dist/cjs/grpc/proto/haneul/rpc/v2/executed_transaction.js +0 -74
  843. package/dist/cjs/grpc/proto/haneul/rpc/v2/executed_transaction.js.map +0 -7
  844. package/dist/cjs/grpc/proto/haneul/rpc/v2/execution_status.d.ts +0 -843
  845. package/dist/cjs/grpc/proto/haneul/rpc/v2/execution_status.js +0 -513
  846. package/dist/cjs/grpc/proto/haneul/rpc/v2/execution_status.js.map +0 -7
  847. package/dist/cjs/grpc/proto/haneul/rpc/v2/gas_cost_summary.d.ts +0 -41
  848. package/dist/cjs/grpc/proto/haneul/rpc/v2/gas_cost_summary.js +0 -64
  849. package/dist/cjs/grpc/proto/haneul/rpc/v2/gas_cost_summary.js.map +0 -7
  850. package/dist/cjs/grpc/proto/haneul/rpc/v2/input.d.ts +0 -98
  851. package/dist/cjs/grpc/proto/haneul/rpc/v2/input.js +0 -90
  852. package/dist/cjs/grpc/proto/haneul/rpc/v2/input.js.map +0 -7
  853. package/dist/cjs/grpc/proto/haneul/rpc/v2/jwk.d.ts +0 -70
  854. package/dist/cjs/grpc/proto/haneul/rpc/v2/jwk.js +0 -88
  855. package/dist/cjs/grpc/proto/haneul/rpc/v2/jwk.js.map +0 -7
  856. package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.client.d.ts +0 -95
  857. package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.client.js +0 -127
  858. package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.client.js.map +0 -7
  859. package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.d.ts +0 -420
  860. package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.js +0 -327
  861. package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.js.map +0 -7
  862. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package.d.ts +0 -579
  863. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package.js +0 -480
  864. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package.js.map +0 -7
  865. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.client.d.ts +0 -61
  866. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.client.js +0 -86
  867. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.client.js.map +0 -7
  868. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.d.ts +0 -229
  869. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.js +0 -226
  870. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.js.map +0 -7
  871. package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.client.d.ts +0 -41
  872. package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.client.js +0 -60
  873. package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.client.js.map +0 -7
  874. package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.d.ts +0 -144
  875. package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.js +0 -138
  876. package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.js.map +0 -7
  877. package/dist/cjs/grpc/proto/haneul/rpc/v2/object.d.ts +0 -127
  878. package/dist/cjs/grpc/proto/haneul/rpc/v2/object.js +0 -113
  879. package/dist/cjs/grpc/proto/haneul/rpc/v2/object.js.map +0 -7
  880. package/dist/cjs/grpc/proto/haneul/rpc/v2/object_reference.d.ts +0 -34
  881. package/dist/cjs/grpc/proto/haneul/rpc/v2/object_reference.js +0 -56
  882. package/dist/cjs/grpc/proto/haneul/rpc/v2/object_reference.js.map +0 -7
  883. package/dist/cjs/grpc/proto/haneul/rpc/v2/owner.d.ts +0 -61
  884. package/dist/cjs/grpc/proto/haneul/rpc/v2/owner.js +0 -65
  885. package/dist/cjs/grpc/proto/haneul/rpc/v2/owner.js.map +0 -7
  886. package/dist/cjs/grpc/proto/haneul/rpc/v2/protocol_config.d.ts +0 -30
  887. package/dist/cjs/grpc/proto/haneul/rpc/v2/protocol_config.js +0 -62
  888. package/dist/cjs/grpc/proto/haneul/rpc/v2/protocol_config.js.map +0 -7
  889. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature.d.ts +0 -630
  890. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature.js +0 -514
  891. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature.js.map +0 -7
  892. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_scheme.d.ts +0 -40
  893. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_scheme.js +0 -34
  894. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_scheme.js.map +0 -7
  895. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.client.d.ts +0 -35
  896. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.client.js +0 -49
  897. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.client.js.map +0 -7
  898. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.d.ts +0 -79
  899. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.js +0 -76
  900. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.js.map +0 -7
  901. package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.client.d.ts +0 -71
  902. package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.client.js +0 -99
  903. package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.client.js.map +0 -7
  904. package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.d.ts +0 -690
  905. package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.js +0 -546
  906. package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.js.map +0 -7
  907. package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.client.d.ts +0 -55
  908. package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.client.js +0 -59
  909. package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.client.js.map +0 -7
  910. package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.d.ts +0 -57
  911. package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.js +0 -63
  912. package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.js.map +0 -7
  913. package/dist/cjs/grpc/proto/haneul/rpc/v2/system_state.d.ts +0 -684
  914. package/dist/cjs/grpc/proto/haneul/rpc/v2/system_state.js +0 -674
  915. package/dist/cjs/grpc/proto/haneul/rpc/v2/system_state.js.map +0 -7
  916. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction.d.ts +0 -1321
  917. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction.js +0 -931
  918. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction.js.map +0 -7
  919. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.d.ts +0 -41
  920. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.js +0 -60
  921. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.js.map +0 -7
  922. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.d.ts +0 -184
  923. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.js +0 -159
  924. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.js.map +0 -7
  925. package/dist/cjs/jsonRpc/client.d.ts +0 -264
  926. package/dist/cjs/jsonRpc/client.js +0 -832
  927. package/dist/cjs/jsonRpc/client.js.map +0 -7
  928. package/dist/cjs/jsonRpc/core.d.ts +0 -93
  929. package/dist/cjs/jsonRpc/core.js +0 -644
  930. package/dist/cjs/jsonRpc/core.js.map +0 -7
  931. package/dist/cjs/jsonRpc/errors.d.ts +0 -12
  932. package/dist/cjs/jsonRpc/errors.js +0 -60
  933. package/dist/cjs/jsonRpc/errors.js.map +0 -7
  934. package/dist/cjs/jsonRpc/http-transport.d.ts +0 -42
  935. package/dist/cjs/jsonRpc/http-transport.js +0 -119
  936. package/dist/cjs/jsonRpc/http-transport.js.map +0 -7
  937. package/dist/cjs/jsonRpc/index.d.ts +0 -4
  938. package/dist/cjs/jsonRpc/index.js +0 -32
  939. package/dist/cjs/jsonRpc/index.js.map +0 -7
  940. package/dist/cjs/jsonRpc/json-rpc-resolver.d.ts +0 -4
  941. package/dist/cjs/jsonRpc/json-rpc-resolver.js +0 -311
  942. package/dist/cjs/jsonRpc/json-rpc-resolver.js.map +0 -7
  943. package/dist/cjs/jsonRpc/rpc-websocket-client.d.ts +0 -43
  944. package/dist/cjs/jsonRpc/rpc-websocket-client.js +0 -194
  945. package/dist/cjs/jsonRpc/rpc-websocket-client.js.map +0 -7
  946. package/dist/cjs/jsonRpc/types/chain.d.ts +0 -99
  947. package/dist/cjs/jsonRpc/types/chain.js +0 -17
  948. package/dist/cjs/jsonRpc/types/chain.js.map +0 -7
  949. package/dist/cjs/jsonRpc/types/changes.d.ts +0 -19
  950. package/dist/cjs/jsonRpc/types/changes.js +0 -17
  951. package/dist/cjs/jsonRpc/types/changes.js.map +0 -7
  952. package/dist/cjs/jsonRpc/types/coins.d.ts +0 -6
  953. package/dist/cjs/jsonRpc/types/coins.js +0 -17
  954. package/dist/cjs/jsonRpc/types/coins.js.map +0 -7
  955. package/dist/cjs/jsonRpc/types/common.d.ts +0 -2
  956. package/dist/cjs/jsonRpc/types/common.js +0 -17
  957. package/dist/cjs/jsonRpc/types/common.js.map +0 -7
  958. package/dist/cjs/jsonRpc/types/generated.d.ts +0 -1492
  959. package/dist/cjs/jsonRpc/types/generated.js +0 -17
  960. package/dist/cjs/jsonRpc/types/generated.js.map +0 -7
  961. package/dist/cjs/jsonRpc/types/index.d.ts +0 -6
  962. package/dist/cjs/jsonRpc/types/index.js +0 -17
  963. package/dist/cjs/jsonRpc/types/index.js.map +0 -7
  964. package/dist/cjs/jsonRpc/types/params.d.ts +0 -656
  965. package/dist/cjs/jsonRpc/types/params.js +0 -17
  966. package/dist/cjs/jsonRpc/types/params.js.map +0 -7
  967. package/dist/cjs/keypairs/ed25519/ed25519-hd-key.d.ts +0 -8
  968. package/dist/cjs/keypairs/ed25519/ed25519-hd-key.js +0 -77
  969. package/dist/cjs/keypairs/ed25519/ed25519-hd-key.js.map +0 -7
  970. package/dist/cjs/keypairs/ed25519/index.d.ts +0 -2
  971. package/dist/cjs/keypairs/ed25519/index.js +0 -28
  972. package/dist/cjs/keypairs/ed25519/index.js.map +0 -7
  973. package/dist/cjs/keypairs/ed25519/keypair.d.ts +0 -74
  974. package/dist/cjs/keypairs/ed25519/keypair.js +0 -162
  975. package/dist/cjs/keypairs/ed25519/keypair.js.map +0 -7
  976. package/dist/cjs/keypairs/ed25519/publickey.d.ts +0 -30
  977. package/dist/cjs/keypairs/ed25519/publickey.js +0 -88
  978. package/dist/cjs/keypairs/ed25519/publickey.js.map +0 -7
  979. package/dist/cjs/keypairs/passkey/index.d.ts +0 -3
  980. package/dist/cjs/keypairs/passkey/index.js +0 -29
  981. package/dist/cjs/keypairs/passkey/index.js.map +0 -7
  982. package/dist/cjs/keypairs/passkey/keypair.d.ts +0 -113
  983. package/dist/cjs/keypairs/passkey/keypair.js +0 -251
  984. package/dist/cjs/keypairs/passkey/keypair.js.map +0 -7
  985. package/dist/cjs/keypairs/passkey/publickey.d.ts +0 -72
  986. package/dist/cjs/keypairs/passkey/publickey.js +0 -168
  987. package/dist/cjs/keypairs/passkey/publickey.js.map +0 -7
  988. package/dist/cjs/keypairs/passkey/types.d.ts +0 -12
  989. package/dist/cjs/keypairs/passkey/types.js +0 -17
  990. package/dist/cjs/keypairs/passkey/types.js.map +0 -7
  991. package/dist/cjs/keypairs/secp256k1/index.d.ts +0 -2
  992. package/dist/cjs/keypairs/secp256k1/index.js +0 -28
  993. package/dist/cjs/keypairs/secp256k1/index.js.map +0 -7
  994. package/dist/cjs/keypairs/secp256k1/keypair.d.ts +0 -73
  995. package/dist/cjs/keypairs/secp256k1/keypair.js +0 -150
  996. package/dist/cjs/keypairs/secp256k1/keypair.js.map +0 -7
  997. package/dist/cjs/keypairs/secp256k1/publickey.d.ts +0 -30
  998. package/dist/cjs/keypairs/secp256k1/publickey.js +0 -93
  999. package/dist/cjs/keypairs/secp256k1/publickey.js.map +0 -7
  1000. package/dist/cjs/keypairs/secp256r1/index.d.ts +0 -2
  1001. package/dist/cjs/keypairs/secp256r1/index.js +0 -28
  1002. package/dist/cjs/keypairs/secp256r1/index.js.map +0 -7
  1003. package/dist/cjs/keypairs/secp256r1/keypair.d.ts +0 -73
  1004. package/dist/cjs/keypairs/secp256r1/keypair.js +0 -144
  1005. package/dist/cjs/keypairs/secp256r1/keypair.js.map +0 -7
  1006. package/dist/cjs/keypairs/secp256r1/publickey.d.ts +0 -30
  1007. package/dist/cjs/keypairs/secp256r1/publickey.js +0 -94
  1008. package/dist/cjs/keypairs/secp256r1/publickey.js.map +0 -7
  1009. package/dist/cjs/multisig/index.d.ts +0 -2
  1010. package/dist/cjs/multisig/index.js +0 -28
  1011. package/dist/cjs/multisig/index.js.map +0 -7
  1012. package/dist/cjs/multisig/publickey.d.ts +0 -114
  1013. package/dist/cjs/multisig/publickey.js +0 -260
  1014. package/dist/cjs/multisig/publickey.js.map +0 -7
  1015. package/dist/cjs/multisig/signer.d.ts +0 -20
  1016. package/dist/cjs/multisig/signer.js +0 -105
  1017. package/dist/cjs/multisig/signer.js.map +0 -7
  1018. package/dist/cjs/package.json +0 -5
  1019. package/dist/cjs/transactions/Arguments.d.ts +0 -49
  1020. package/dist/cjs/transactions/Arguments.js +0 -33
  1021. package/dist/cjs/transactions/Arguments.js.map +0 -7
  1022. package/dist/cjs/transactions/Commands.d.ts +0 -57
  1023. package/dist/cjs/transactions/Commands.js +0 -140
  1024. package/dist/cjs/transactions/Commands.js.map +0 -7
  1025. package/dist/cjs/transactions/Inputs.d.ts +0 -22
  1026. package/dist/cjs/transactions/Inputs.js +0 -80
  1027. package/dist/cjs/transactions/Inputs.js.map +0 -7
  1028. package/dist/cjs/transactions/ObjectCache.d.ts +0 -83
  1029. package/dist/cjs/transactions/ObjectCache.js +0 -241
  1030. package/dist/cjs/transactions/ObjectCache.js.map +0 -7
  1031. package/dist/cjs/transactions/Transaction.d.ts +0 -710
  1032. package/dist/cjs/transactions/Transaction.js +0 -683
  1033. package/dist/cjs/transactions/Transaction.js.map +0 -7
  1034. package/dist/cjs/transactions/TransactionData.d.ts +0 -73
  1035. package/dist/cjs/transactions/TransactionData.js +0 -433
  1036. package/dist/cjs/transactions/TransactionData.js.map +0 -7
  1037. package/dist/cjs/transactions/__tests__/Transaction.test.d.ts +0 -1
  1038. package/dist/cjs/transactions/__tests__/bcs.test.d.ts +0 -1
  1039. package/dist/cjs/transactions/data/internal.d.ts +0 -1010
  1040. package/dist/cjs/transactions/data/internal.js +0 -216
  1041. package/dist/cjs/transactions/data/internal.js.map +0 -7
  1042. package/dist/cjs/transactions/data/v1.d.ts +0 -312
  1043. package/dist/cjs/transactions/data/v1.js +0 -482
  1044. package/dist/cjs/transactions/data/v1.js.map +0 -7
  1045. package/dist/cjs/transactions/data/v2.d.ts +0 -153
  1046. package/dist/cjs/transactions/data/v2.js +0 -125
  1047. package/dist/cjs/transactions/data/v2.js.map +0 -7
  1048. package/dist/cjs/transactions/executor/caching.d.ts +0 -31
  1049. package/dist/cjs/transactions/executor/caching.js +0 -114
  1050. package/dist/cjs/transactions/executor/caching.js.map +0 -7
  1051. package/dist/cjs/transactions/executor/parallel.d.ts +0 -37
  1052. package/dist/cjs/transactions/executor/parallel.js +0 -380
  1053. package/dist/cjs/transactions/executor/parallel.js.map +0 -7
  1054. package/dist/cjs/transactions/executor/queue.d.ts +0 -11
  1055. package/dist/cjs/transactions/executor/queue.js +0 -85
  1056. package/dist/cjs/transactions/executor/queue.js.map +0 -7
  1057. package/dist/cjs/transactions/executor/serial.d.ts +0 -31
  1058. package/dist/cjs/transactions/executor/serial.js +0 -137
  1059. package/dist/cjs/transactions/executor/serial.js.map +0 -7
  1060. package/dist/cjs/transactions/hash.d.ts +0 -7
  1061. package/dist/cjs/transactions/hash.js +0 -32
  1062. package/dist/cjs/transactions/hash.js.map +0 -7
  1063. package/dist/cjs/transactions/index.d.ts +0 -21
  1064. package/dist/cjs/transactions/index.js +0 -51
  1065. package/dist/cjs/transactions/index.js.map +0 -7
  1066. package/dist/cjs/transactions/intents/CoinWithBalance.d.ts +0 -9
  1067. package/dist/cjs/transactions/intents/CoinWithBalance.js +0 -188
  1068. package/dist/cjs/transactions/intents/CoinWithBalance.js.map +0 -7
  1069. package/dist/cjs/transactions/object.d.ts +0 -16
  1070. package/dist/cjs/transactions/object.js +0 -78
  1071. package/dist/cjs/transactions/object.js.map +0 -7
  1072. package/dist/cjs/transactions/plugins/NamedPackagesPlugin.d.ts +0 -48
  1073. package/dist/cjs/transactions/plugins/NamedPackagesPlugin.js +0 -67
  1074. package/dist/cjs/transactions/plugins/NamedPackagesPlugin.js.map +0 -7
  1075. package/dist/cjs/transactions/pure.d.ts +0 -20
  1076. package/dist/cjs/transactions/pure.js +0 -57
  1077. package/dist/cjs/transactions/pure.js.map +0 -7
  1078. package/dist/cjs/transactions/resolve.d.ts +0 -13
  1079. package/dist/cjs/transactions/resolve.js +0 -98
  1080. package/dist/cjs/transactions/resolve.js.map +0 -7
  1081. package/dist/cjs/transactions/serializer.d.ts +0 -7
  1082. package/dist/cjs/transactions/serializer.js +0 -182
  1083. package/dist/cjs/transactions/serializer.js.map +0 -7
  1084. package/dist/cjs/transactions/utils.d.ts +0 -10
  1085. package/dist/cjs/transactions/utils.js +0 -135
  1086. package/dist/cjs/transactions/utils.js.map +0 -7
  1087. package/dist/cjs/utils/constants.d.ts +0 -10
  1088. package/dist/cjs/utils/constants.js +0 -44
  1089. package/dist/cjs/utils/constants.js.map +0 -7
  1090. package/dist/cjs/utils/derived-objects.d.ts +0 -5
  1091. package/dist/cjs/utils/derived-objects.js +0 -34
  1092. package/dist/cjs/utils/derived-objects.js.map +0 -7
  1093. package/dist/cjs/utils/dynamic-fields.d.ts +0 -2
  1094. package/dist/cjs/utils/dynamic-fields.js +0 -41
  1095. package/dist/cjs/utils/dynamic-fields.js.map +0 -7
  1096. package/dist/cjs/utils/format.d.ts +0 -2
  1097. package/dist/cjs/utils/format.js +0 -36
  1098. package/dist/cjs/utils/format.js.map +0 -7
  1099. package/dist/cjs/utils/haneul-types.d.ts +0 -26
  1100. package/dist/cjs/utils/haneul-types.js +0 -91
  1101. package/dist/cjs/utils/haneul-types.js.map +0 -7
  1102. package/dist/cjs/utils/haneulns.d.ts +0 -2
  1103. package/dist/cjs/utils/haneulns.js +0 -57
  1104. package/dist/cjs/utils/haneulns.js.map +0 -7
  1105. package/dist/cjs/utils/index.d.ts +0 -9
  1106. package/dist/cjs/utils/index.js +0 -69
  1107. package/dist/cjs/utils/index.js.map +0 -7
  1108. package/dist/cjs/utils/move-registry.d.ts +0 -6
  1109. package/dist/cjs/utils/move-registry.js +0 -45
  1110. package/dist/cjs/utils/move-registry.js.map +0 -7
  1111. package/dist/cjs/verify/index.d.ts +0 -1
  1112. package/dist/cjs/verify/index.js +0 -29
  1113. package/dist/cjs/verify/index.js.map +0 -7
  1114. package/dist/cjs/verify/verify.d.ts +0 -21
  1115. package/dist/cjs/verify/verify.js +0 -124
  1116. package/dist/cjs/verify/verify.js.map +0 -7
  1117. package/dist/cjs/version.d.ts +0 -2
  1118. package/dist/cjs/version.js +0 -27
  1119. package/dist/cjs/version.js.map +0 -7
  1120. package/dist/cjs/zklogin/address.d.ts +0 -16
  1121. package/dist/cjs/zklogin/address.js +0 -87
  1122. package/dist/cjs/zklogin/address.js.map +0 -7
  1123. package/dist/cjs/zklogin/bcs.d.ts +0 -28
  1124. package/dist/cjs/zklogin/bcs.js +0 -42
  1125. package/dist/cjs/zklogin/bcs.js.map +0 -7
  1126. package/dist/cjs/zklogin/index.d.ts +0 -9
  1127. package/dist/cjs/zklogin/index.js +0 -46
  1128. package/dist/cjs/zklogin/index.js.map +0 -7
  1129. package/dist/cjs/zklogin/jwt-decode.d.ts +0 -47
  1130. package/dist/cjs/zklogin/jwt-decode.js +0 -85
  1131. package/dist/cjs/zklogin/jwt-decode.js.map +0 -7
  1132. package/dist/cjs/zklogin/jwt-utils.d.ts +0 -12
  1133. package/dist/cjs/zklogin/jwt-utils.js +0 -121
  1134. package/dist/cjs/zklogin/jwt-utils.js.map +0 -7
  1135. package/dist/cjs/zklogin/nonce.d.ts +0 -4
  1136. package/dist/cjs/zklogin/nonce.js +0 -54
  1137. package/dist/cjs/zklogin/nonce.js.map +0 -7
  1138. package/dist/cjs/zklogin/poseidon.d.ts +0 -2
  1139. package/dist/cjs/zklogin/poseidon.js +0 -63
  1140. package/dist/cjs/zklogin/poseidon.js.map +0 -7
  1141. package/dist/cjs/zklogin/publickey.d.ts +0 -87
  1142. package/dist/cjs/zklogin/publickey.js +0 -257
  1143. package/dist/cjs/zklogin/publickey.js.map +0 -7
  1144. package/dist/cjs/zklogin/signature.d.ts +0 -23
  1145. package/dist/cjs/zklogin/signature.js +0 -48
  1146. package/dist/cjs/zklogin/signature.js.map +0 -7
  1147. package/dist/cjs/zklogin/utils.d.ts +0 -16
  1148. package/dist/cjs/zklogin/utils.js +0 -97
  1149. package/dist/cjs/zklogin/utils.js.map +0 -7
  1150. package/dist/esm/bcs/bcs.d.ts +0 -1973
  1151. package/dist/esm/bcs/bcs.js +0 -308
  1152. package/dist/esm/bcs/bcs.js.map +0 -7
  1153. package/dist/esm/bcs/effects.d.ts +0 -579
  1154. package/dist/esm/bcs/effects.js +0 -190
  1155. package/dist/esm/bcs/effects.js.map +0 -7
  1156. package/dist/esm/bcs/index.d.ts +0 -2589
  1157. package/dist/esm/bcs/index.js +0 -94
  1158. package/dist/esm/bcs/index.js.map +0 -7
  1159. package/dist/esm/bcs/pure.d.ts +0 -22
  1160. package/dist/esm/bcs/pure.js +0 -39
  1161. package/dist/esm/bcs/pure.js.map +0 -7
  1162. package/dist/esm/bcs/type-tag-serializer.d.ts +0 -7
  1163. package/dist/esm/bcs/type-tag-serializer.js +0 -97
  1164. package/dist/esm/bcs/type-tag-serializer.js.map +0 -7
  1165. package/dist/esm/bcs/types.d.ts +0 -114
  1166. package/dist/esm/bcs/types.js +0 -7
  1167. package/dist/esm/bcs/types.js.map +0 -7
  1168. package/dist/esm/client/index.d.ts +0 -5
  1169. package/dist/esm/client/index.js +0 -19
  1170. package/dist/esm/client/index.js.map +0 -7
  1171. package/dist/esm/client/network.d.ts +0 -1
  1172. package/dist/esm/client/network.js +0 -18
  1173. package/dist/esm/client/network.js.map +0 -7
  1174. package/dist/esm/cryptography/index.d.ts +0 -7
  1175. package/dist/esm/cryptography/index.js +0 -47
  1176. package/dist/esm/cryptography/index.js.map +0 -7
  1177. package/dist/esm/cryptography/intent.d.ts +0 -6
  1178. package/dist/esm/cryptography/intent.js +0 -15
  1179. package/dist/esm/cryptography/intent.js.map +0 -7
  1180. package/dist/esm/cryptography/keypair.d.ts +0 -72
  1181. package/dist/esm/cryptography/keypair.js +0 -98
  1182. package/dist/esm/cryptography/keypair.js.map +0 -7
  1183. package/dist/esm/cryptography/mnemonics.d.ts +0 -27
  1184. package/dist/esm/cryptography/mnemonics.js +0 -27
  1185. package/dist/esm/cryptography/mnemonics.js.map +0 -7
  1186. package/dist/esm/cryptography/publickey.d.ts +0 -67
  1187. package/dist/esm/cryptography/publickey.js +0 -120
  1188. package/dist/esm/cryptography/publickey.js.map +0 -7
  1189. package/dist/esm/cryptography/signature-scheme.d.ts +0 -24
  1190. package/dist/esm/cryptography/signature-scheme.js +0 -28
  1191. package/dist/esm/cryptography/signature-scheme.js.map +0 -7
  1192. package/dist/esm/cryptography/signature.d.ts +0 -65
  1193. package/dist/esm/cryptography/signature.js +0 -51
  1194. package/dist/esm/cryptography/signature.js.map +0 -7
  1195. package/dist/esm/experimental/cache.d.ts +0 -12
  1196. package/dist/esm/experimental/cache.js +0 -68
  1197. package/dist/esm/experimental/cache.js.map +0 -7
  1198. package/dist/esm/experimental/client.d.ts +0 -12
  1199. package/dist/esm/experimental/client.js +0 -26
  1200. package/dist/esm/experimental/client.js.map +0 -7
  1201. package/dist/esm/experimental/core.d.ts +0 -37
  1202. package/dist/esm/experimental/core.js +0 -94
  1203. package/dist/esm/experimental/core.js.map +0 -7
  1204. package/dist/esm/experimental/errors.d.ts +0 -8
  1205. package/dist/esm/experimental/errors.js +0 -34
  1206. package/dist/esm/experimental/errors.js.map +0 -7
  1207. package/dist/esm/experimental/index.d.ts +0 -7
  1208. package/dist/esm/experimental/index.js +0 -12
  1209. package/dist/esm/experimental/index.js.map +0 -7
  1210. package/dist/esm/experimental/mvr.d.ts +0 -42
  1211. package/dist/esm/experimental/mvr.js +0 -350
  1212. package/dist/esm/experimental/mvr.js.map +0 -7
  1213. package/dist/esm/experimental/transports/utils.d.ts +0 -3
  1214. package/dist/esm/experimental/transports/utils.js +0 -81
  1215. package/dist/esm/experimental/transports/utils.js.map +0 -7
  1216. package/dist/esm/experimental/types.d.ts +0 -434
  1217. package/dist/esm/experimental/types.js +0 -1
  1218. package/dist/esm/experimental/types.js.map +0 -7
  1219. package/dist/esm/faucet/faucet.d.ts +0 -65
  1220. package/dist/esm/faucet/faucet.js +0 -110
  1221. package/dist/esm/faucet/faucet.js.map +0 -7
  1222. package/dist/esm/faucet/index.d.ts +0 -1
  1223. package/dist/esm/faucet/index.js +0 -17
  1224. package/dist/esm/faucet/index.js.map +0 -7
  1225. package/dist/esm/graphql/client.d.ts +0 -50
  1226. package/dist/esm/graphql/client.js +0 -74
  1227. package/dist/esm/graphql/client.js.map +0 -7
  1228. package/dist/esm/graphql/core.d.ts +0 -32
  1229. package/dist/esm/graphql/core.js +0 -469
  1230. package/dist/esm/graphql/core.js.map +0 -7
  1231. package/dist/esm/graphql/generated/2024.1/tada-env.d.ts +0 -11380
  1232. package/dist/esm/graphql/generated/2024.1/tada-env.js +0 -13122
  1233. package/dist/esm/graphql/generated/2024.1/tada-env.js.map +0 -7
  1234. package/dist/esm/graphql/generated/2024.1/tsconfig.tada.js +0 -17
  1235. package/dist/esm/graphql/generated/2024.1/tsconfig.tada.js.map +0 -7
  1236. package/dist/esm/graphql/generated/2024.4/tada-env.d.ts +0 -11496
  1237. package/dist/esm/graphql/generated/2024.4/tada-env.js +0 -13268
  1238. package/dist/esm/graphql/generated/2024.4/tada-env.js.map +0 -7
  1239. package/dist/esm/graphql/generated/2024.4/tsconfig.tada.js +0 -17
  1240. package/dist/esm/graphql/generated/2024.4/tsconfig.tada.js.map +0 -7
  1241. package/dist/esm/graphql/generated/latest/tada-env.d.ts +0 -11128
  1242. package/dist/esm/graphql/generated/latest/tada-env.js +0 -12906
  1243. package/dist/esm/graphql/generated/latest/tada-env.js.map +0 -7
  1244. package/dist/esm/graphql/generated/latest/tsconfig.tada.js +0 -17
  1245. package/dist/esm/graphql/generated/latest/tsconfig.tada.js.map +0 -7
  1246. package/dist/esm/graphql/generated/queries.d.ts +0 -4980
  1247. package/dist/esm/graphql/generated/queries.js +0 -783
  1248. package/dist/esm/graphql/generated/queries.js.map +0 -7
  1249. package/dist/esm/graphql/index.d.ts +0 -1
  1250. package/dist/esm/graphql/index.js +0 -9
  1251. package/dist/esm/graphql/index.js.map +0 -7
  1252. package/dist/esm/graphql/schemas/2024.1/index.d.ts +0 -10
  1253. package/dist/esm/graphql/schemas/2024.1/index.js +0 -9
  1254. package/dist/esm/graphql/schemas/2024.1/index.js.map +0 -7
  1255. package/dist/esm/graphql/schemas/2024.4/index.d.ts +0 -10
  1256. package/dist/esm/graphql/schemas/2024.4/index.js +0 -9
  1257. package/dist/esm/graphql/schemas/2024.4/index.js.map +0 -7
  1258. package/dist/esm/graphql/schemas/latest/index.d.ts +0 -10
  1259. package/dist/esm/graphql/schemas/latest/index.js +0 -9
  1260. package/dist/esm/graphql/schemas/latest/index.js.map +0 -7
  1261. package/dist/esm/graphql/types.d.ts +0 -71
  1262. package/dist/esm/graphql/types.js +0 -1
  1263. package/dist/esm/graphql/types.js.map +0 -7
  1264. package/dist/esm/grpc/client.d.ts +0 -33
  1265. package/dist/esm/grpc/client.js +0 -33
  1266. package/dist/esm/grpc/client.js.map +0 -7
  1267. package/dist/esm/grpc/core.d.ts +0 -30
  1268. package/dist/esm/grpc/core.js +0 -640
  1269. package/dist/esm/grpc/core.js.map +0 -7
  1270. package/dist/esm/grpc/index.d.ts +0 -4
  1271. package/dist/esm/grpc/index.js +0 -7
  1272. package/dist/esm/grpc/index.js.map +0 -7
  1273. package/dist/esm/grpc/proto/google/protobuf/any.d.ts +0 -173
  1274. package/dist/esm/grpc/proto/google/protobuf/any.js +0 -119
  1275. package/dist/esm/grpc/proto/google/protobuf/any.js.map +0 -7
  1276. package/dist/esm/grpc/proto/google/protobuf/duration.d.ts +0 -104
  1277. package/dist/esm/grpc/proto/google/protobuf/duration.js +0 -68
  1278. package/dist/esm/grpc/proto/google/protobuf/duration.js.map +0 -7
  1279. package/dist/esm/grpc/proto/google/protobuf/empty.d.ts +0 -25
  1280. package/dist/esm/grpc/proto/google/protobuf/empty.js +0 -11
  1281. package/dist/esm/grpc/proto/google/protobuf/empty.js.map +0 -7
  1282. package/dist/esm/grpc/proto/google/protobuf/field_mask.d.ts +0 -231
  1283. package/dist/esm/grpc/proto/google/protobuf/field_mask.js +0 -53
  1284. package/dist/esm/grpc/proto/google/protobuf/field_mask.js.map +0 -7
  1285. package/dist/esm/grpc/proto/google/protobuf/struct.d.ts +0 -169
  1286. package/dist/esm/grpc/proto/google/protobuf/struct.js +0 -179
  1287. package/dist/esm/grpc/proto/google/protobuf/struct.js.map +0 -7
  1288. package/dist/esm/grpc/proto/google/protobuf/timestamp.d.ts +0 -145
  1289. package/dist/esm/grpc/proto/google/protobuf/timestamp.js +0 -103
  1290. package/dist/esm/grpc/proto/google/protobuf/timestamp.js.map +0 -7
  1291. package/dist/esm/grpc/proto/google/rpc/error_details.d.ts +0 -525
  1292. package/dist/esm/grpc/proto/google/rpc/error_details.js +0 -312
  1293. package/dist/esm/grpc/proto/google/rpc/error_details.js.map +0 -7
  1294. package/dist/esm/grpc/proto/google/rpc/status.d.ts +0 -46
  1295. package/dist/esm/grpc/proto/google/rpc/status.js +0 -28
  1296. package/dist/esm/grpc/proto/google/rpc/status.js.map +0 -7
  1297. package/dist/esm/grpc/proto/haneul/rpc/v2/argument.d.ts +0 -66
  1298. package/dist/esm/grpc/proto/haneul/rpc/v2/argument.js +0 -51
  1299. package/dist/esm/grpc/proto/haneul/rpc/v2/argument.js.map +0 -7
  1300. package/dist/esm/grpc/proto/haneul/rpc/v2/balance_change.d.ts +0 -34
  1301. package/dist/esm/grpc/proto/haneul/rpc/v2/balance_change.js +0 -36
  1302. package/dist/esm/grpc/proto/haneul/rpc/v2/balance_change.js.map +0 -7
  1303. package/dist/esm/grpc/proto/haneul/rpc/v2/bcs.d.ts +0 -30
  1304. package/dist/esm/grpc/proto/haneul/rpc/v2/bcs.js +0 -28
  1305. package/dist/esm/grpc/proto/haneul/rpc/v2/bcs.js.map +0 -7
  1306. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint.d.ts +0 -68
  1307. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint.js +0 -44
  1308. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint.js.map +0 -7
  1309. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_contents.d.ts +0 -74
  1310. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_contents.js +0 -69
  1311. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_contents.js.map +0 -7
  1312. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_summary.d.ts +0 -195
  1313. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_summary.js +0 -145
  1314. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_summary.js.map +0 -7
  1315. package/dist/esm/grpc/proto/haneul/rpc/v2/effects.d.ts +0 -338
  1316. package/dist/esm/grpc/proto/haneul/rpc/v2/effects.js +0 -274
  1317. package/dist/esm/grpc/proto/haneul/rpc/v2/effects.js.map +0 -7
  1318. package/dist/esm/grpc/proto/haneul/rpc/v2/epoch.d.ts +0 -62
  1319. package/dist/esm/grpc/proto/haneul/rpc/v2/epoch.js +0 -53
  1320. package/dist/esm/grpc/proto/haneul/rpc/v2/epoch.js.map +0 -7
  1321. package/dist/esm/grpc/proto/haneul/rpc/v2/error_reason.d.ts +0 -17
  1322. package/dist/esm/grpc/proto/haneul/rpc/v2/error_reason.js +0 -10
  1323. package/dist/esm/grpc/proto/haneul/rpc/v2/error_reason.js.map +0 -7
  1324. package/dist/esm/grpc/proto/haneul/rpc/v2/event.d.ts +0 -88
  1325. package/dist/esm/grpc/proto/haneul/rpc/v2/event.js +0 -66
  1326. package/dist/esm/grpc/proto/haneul/rpc/v2/event.js.map +0 -7
  1327. package/dist/esm/grpc/proto/haneul/rpc/v2/executed_transaction.d.ts +0 -80
  1328. package/dist/esm/grpc/proto/haneul/rpc/v2/executed_transaction.js +0 -54
  1329. package/dist/esm/grpc/proto/haneul/rpc/v2/executed_transaction.js.map +0 -7
  1330. package/dist/esm/grpc/proto/haneul/rpc/v2/execution_status.d.ts +0 -843
  1331. package/dist/esm/grpc/proto/haneul/rpc/v2/execution_status.js +0 -493
  1332. package/dist/esm/grpc/proto/haneul/rpc/v2/execution_status.js.map +0 -7
  1333. package/dist/esm/grpc/proto/haneul/rpc/v2/gas_cost_summary.d.ts +0 -41
  1334. package/dist/esm/grpc/proto/haneul/rpc/v2/gas_cost_summary.js +0 -44
  1335. package/dist/esm/grpc/proto/haneul/rpc/v2/gas_cost_summary.js.map +0 -7
  1336. package/dist/esm/grpc/proto/haneul/rpc/v2/input.d.ts +0 -98
  1337. package/dist/esm/grpc/proto/haneul/rpc/v2/input.js +0 -70
  1338. package/dist/esm/grpc/proto/haneul/rpc/v2/input.js.map +0 -7
  1339. package/dist/esm/grpc/proto/haneul/rpc/v2/jwk.d.ts +0 -70
  1340. package/dist/esm/grpc/proto/haneul/rpc/v2/jwk.js +0 -68
  1341. package/dist/esm/grpc/proto/haneul/rpc/v2/jwk.js.map +0 -7
  1342. package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.client.d.ts +0 -95
  1343. package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.client.js +0 -107
  1344. package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.client.js.map +0 -7
  1345. package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.d.ts +0 -420
  1346. package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.js +0 -307
  1347. package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.js.map +0 -7
  1348. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package.d.ts +0 -579
  1349. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package.js +0 -460
  1350. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package.js.map +0 -7
  1351. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.client.d.ts +0 -61
  1352. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.client.js +0 -66
  1353. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.client.js.map +0 -7
  1354. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.d.ts +0 -229
  1355. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.js +0 -206
  1356. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.js.map +0 -7
  1357. package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.client.d.ts +0 -41
  1358. package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.client.js +0 -40
  1359. package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.client.js.map +0 -7
  1360. package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.d.ts +0 -144
  1361. package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.js +0 -118
  1362. package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.js.map +0 -7
  1363. package/dist/esm/grpc/proto/haneul/rpc/v2/object.d.ts +0 -127
  1364. package/dist/esm/grpc/proto/haneul/rpc/v2/object.js +0 -93
  1365. package/dist/esm/grpc/proto/haneul/rpc/v2/object.js.map +0 -7
  1366. package/dist/esm/grpc/proto/haneul/rpc/v2/object_reference.d.ts +0 -34
  1367. package/dist/esm/grpc/proto/haneul/rpc/v2/object_reference.js +0 -36
  1368. package/dist/esm/grpc/proto/haneul/rpc/v2/object_reference.js.map +0 -7
  1369. package/dist/esm/grpc/proto/haneul/rpc/v2/owner.d.ts +0 -61
  1370. package/dist/esm/grpc/proto/haneul/rpc/v2/owner.js +0 -45
  1371. package/dist/esm/grpc/proto/haneul/rpc/v2/owner.js.map +0 -7
  1372. package/dist/esm/grpc/proto/haneul/rpc/v2/protocol_config.d.ts +0 -30
  1373. package/dist/esm/grpc/proto/haneul/rpc/v2/protocol_config.js +0 -42
  1374. package/dist/esm/grpc/proto/haneul/rpc/v2/protocol_config.js.map +0 -7
  1375. package/dist/esm/grpc/proto/haneul/rpc/v2/signature.d.ts +0 -630
  1376. package/dist/esm/grpc/proto/haneul/rpc/v2/signature.js +0 -494
  1377. package/dist/esm/grpc/proto/haneul/rpc/v2/signature.js.map +0 -7
  1378. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_scheme.d.ts +0 -40
  1379. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_scheme.js +0 -14
  1380. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_scheme.js.map +0 -7
  1381. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.client.d.ts +0 -35
  1382. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.client.js +0 -29
  1383. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.client.js.map +0 -7
  1384. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.d.ts +0 -79
  1385. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.js +0 -56
  1386. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.js.map +0 -7
  1387. package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.client.d.ts +0 -71
  1388. package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.client.js +0 -79
  1389. package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.client.js.map +0 -7
  1390. package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.d.ts +0 -690
  1391. package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.js +0 -526
  1392. package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.js.map +0 -7
  1393. package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.client.d.ts +0 -55
  1394. package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.client.js +0 -39
  1395. package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.client.js.map +0 -7
  1396. package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.d.ts +0 -57
  1397. package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.js +0 -43
  1398. package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.js.map +0 -7
  1399. package/dist/esm/grpc/proto/haneul/rpc/v2/system_state.d.ts +0 -684
  1400. package/dist/esm/grpc/proto/haneul/rpc/v2/system_state.js +0 -654
  1401. package/dist/esm/grpc/proto/haneul/rpc/v2/system_state.js.map +0 -7
  1402. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction.d.ts +0 -1321
  1403. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction.js +0 -911
  1404. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction.js.map +0 -7
  1405. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.d.ts +0 -41
  1406. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.js +0 -40
  1407. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.js.map +0 -7
  1408. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.d.ts +0 -184
  1409. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.js +0 -139
  1410. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.js.map +0 -7
  1411. package/dist/esm/jsonRpc/client.d.ts +0 -264
  1412. package/dist/esm/jsonRpc/client.js +0 -818
  1413. package/dist/esm/jsonRpc/client.js.map +0 -7
  1414. package/dist/esm/jsonRpc/core.d.ts +0 -93
  1415. package/dist/esm/jsonRpc/core.js +0 -624
  1416. package/dist/esm/jsonRpc/core.js.map +0 -7
  1417. package/dist/esm/jsonRpc/errors.d.ts +0 -12
  1418. package/dist/esm/jsonRpc/errors.js +0 -40
  1419. package/dist/esm/jsonRpc/errors.js.map +0 -7
  1420. package/dist/esm/jsonRpc/http-transport.d.ts +0 -42
  1421. package/dist/esm/jsonRpc/http-transport.js +0 -99
  1422. package/dist/esm/jsonRpc/http-transport.js.map +0 -7
  1423. package/dist/esm/jsonRpc/index.d.ts +0 -4
  1424. package/dist/esm/jsonRpc/index.js +0 -17
  1425. package/dist/esm/jsonRpc/index.js.map +0 -7
  1426. package/dist/esm/jsonRpc/json-rpc-resolver.d.ts +0 -4
  1427. package/dist/esm/jsonRpc/json-rpc-resolver.js +0 -295
  1428. package/dist/esm/jsonRpc/json-rpc-resolver.js.map +0 -7
  1429. package/dist/esm/jsonRpc/rpc-websocket-client.d.ts +0 -43
  1430. package/dist/esm/jsonRpc/rpc-websocket-client.js +0 -174
  1431. package/dist/esm/jsonRpc/rpc-websocket-client.js.map +0 -7
  1432. package/dist/esm/jsonRpc/types/chain.d.ts +0 -99
  1433. package/dist/esm/jsonRpc/types/chain.js +0 -1
  1434. package/dist/esm/jsonRpc/types/chain.js.map +0 -7
  1435. package/dist/esm/jsonRpc/types/changes.d.ts +0 -19
  1436. package/dist/esm/jsonRpc/types/changes.js +0 -1
  1437. package/dist/esm/jsonRpc/types/changes.js.map +0 -7
  1438. package/dist/esm/jsonRpc/types/coins.d.ts +0 -6
  1439. package/dist/esm/jsonRpc/types/coins.js +0 -1
  1440. package/dist/esm/jsonRpc/types/coins.js.map +0 -7
  1441. package/dist/esm/jsonRpc/types/common.d.ts +0 -2
  1442. package/dist/esm/jsonRpc/types/common.js +0 -1
  1443. package/dist/esm/jsonRpc/types/common.js.map +0 -7
  1444. package/dist/esm/jsonRpc/types/generated.d.ts +0 -1492
  1445. package/dist/esm/jsonRpc/types/generated.js +0 -1
  1446. package/dist/esm/jsonRpc/types/generated.js.map +0 -7
  1447. package/dist/esm/jsonRpc/types/index.d.ts +0 -6
  1448. package/dist/esm/jsonRpc/types/index.js +0 -1
  1449. package/dist/esm/jsonRpc/types/index.js.map +0 -7
  1450. package/dist/esm/jsonRpc/types/params.d.ts +0 -656
  1451. package/dist/esm/jsonRpc/types/params.js +0 -1
  1452. package/dist/esm/jsonRpc/types/params.js.map +0 -7
  1453. package/dist/esm/keypairs/ed25519/ed25519-hd-key.d.ts +0 -8
  1454. package/dist/esm/keypairs/ed25519/ed25519-hd-key.js +0 -57
  1455. package/dist/esm/keypairs/ed25519/ed25519-hd-key.js.map +0 -7
  1456. package/dist/esm/keypairs/ed25519/index.d.ts +0 -2
  1457. package/dist/esm/keypairs/ed25519/index.js +0 -11
  1458. package/dist/esm/keypairs/ed25519/index.js.map +0 -7
  1459. package/dist/esm/keypairs/ed25519/keypair.d.ts +0 -74
  1460. package/dist/esm/keypairs/ed25519/keypair.js +0 -147
  1461. package/dist/esm/keypairs/ed25519/keypair.js.map +0 -7
  1462. package/dist/esm/keypairs/ed25519/publickey.d.ts +0 -30
  1463. package/dist/esm/keypairs/ed25519/publickey.js +0 -72
  1464. package/dist/esm/keypairs/ed25519/publickey.js.map +0 -7
  1465. package/dist/esm/keypairs/passkey/index.d.ts +0 -3
  1466. package/dist/esm/keypairs/passkey/index.js +0 -9
  1467. package/dist/esm/keypairs/passkey/index.js.map +0 -7
  1468. package/dist/esm/keypairs/passkey/keypair.d.ts +0 -113
  1469. package/dist/esm/keypairs/passkey/keypair.js +0 -236
  1470. package/dist/esm/keypairs/passkey/keypair.js.map +0 -7
  1471. package/dist/esm/keypairs/passkey/publickey.d.ts +0 -72
  1472. package/dist/esm/keypairs/passkey/publickey.js +0 -148
  1473. package/dist/esm/keypairs/passkey/publickey.js.map +0 -7
  1474. package/dist/esm/keypairs/passkey/types.d.ts +0 -12
  1475. package/dist/esm/keypairs/passkey/types.js +0 -1
  1476. package/dist/esm/keypairs/passkey/types.js.map +0 -7
  1477. package/dist/esm/keypairs/secp256k1/index.d.ts +0 -2
  1478. package/dist/esm/keypairs/secp256k1/index.js +0 -11
  1479. package/dist/esm/keypairs/secp256k1/index.js.map +0 -7
  1480. package/dist/esm/keypairs/secp256k1/keypair.d.ts +0 -73
  1481. package/dist/esm/keypairs/secp256k1/keypair.js +0 -130
  1482. package/dist/esm/keypairs/secp256k1/keypair.js.map +0 -7
  1483. package/dist/esm/keypairs/secp256k1/publickey.d.ts +0 -30
  1484. package/dist/esm/keypairs/secp256k1/publickey.js +0 -77
  1485. package/dist/esm/keypairs/secp256k1/publickey.js.map +0 -7
  1486. package/dist/esm/keypairs/secp256r1/index.d.ts +0 -2
  1487. package/dist/esm/keypairs/secp256r1/index.js +0 -11
  1488. package/dist/esm/keypairs/secp256r1/index.js.map +0 -7
  1489. package/dist/esm/keypairs/secp256r1/keypair.d.ts +0 -73
  1490. package/dist/esm/keypairs/secp256r1/keypair.js +0 -124
  1491. package/dist/esm/keypairs/secp256r1/keypair.js.map +0 -7
  1492. package/dist/esm/keypairs/secp256r1/publickey.d.ts +0 -30
  1493. package/dist/esm/keypairs/secp256r1/publickey.js +0 -74
  1494. package/dist/esm/keypairs/secp256r1/publickey.js.map +0 -7
  1495. package/dist/esm/multisig/index.d.ts +0 -2
  1496. package/dist/esm/multisig/index.js +0 -8
  1497. package/dist/esm/multisig/index.js.map +0 -7
  1498. package/dist/esm/multisig/publickey.d.ts +0 -114
  1499. package/dist/esm/multisig/publickey.js +0 -243
  1500. package/dist/esm/multisig/publickey.js.map +0 -7
  1501. package/dist/esm/multisig/signer.d.ts +0 -20
  1502. package/dist/esm/multisig/signer.js +0 -85
  1503. package/dist/esm/multisig/signer.js.map +0 -7
  1504. package/dist/esm/package.json +0 -5
  1505. package/dist/esm/transactions/Arguments.d.ts +0 -49
  1506. package/dist/esm/transactions/Arguments.js +0 -13
  1507. package/dist/esm/transactions/Arguments.js.map +0 -7
  1508. package/dist/esm/transactions/Commands.d.ts +0 -57
  1509. package/dist/esm/transactions/Commands.js +0 -120
  1510. package/dist/esm/transactions/Commands.js.map +0 -7
  1511. package/dist/esm/transactions/Inputs.d.ts +0 -22
  1512. package/dist/esm/transactions/Inputs.js +0 -60
  1513. package/dist/esm/transactions/Inputs.js.map +0 -7
  1514. package/dist/esm/transactions/ObjectCache.d.ts +0 -83
  1515. package/dist/esm/transactions/ObjectCache.js +0 -221
  1516. package/dist/esm/transactions/ObjectCache.js.map +0 -7
  1517. package/dist/esm/transactions/Transaction.d.ts +0 -710
  1518. package/dist/esm/transactions/Transaction.js +0 -668
  1519. package/dist/esm/transactions/Transaction.js.map +0 -7
  1520. package/dist/esm/transactions/TransactionData.d.ts +0 -73
  1521. package/dist/esm/transactions/TransactionData.js +0 -413
  1522. package/dist/esm/transactions/TransactionData.js.map +0 -7
  1523. package/dist/esm/transactions/__tests__/Transaction.test.d.ts +0 -1
  1524. package/dist/esm/transactions/__tests__/bcs.test.d.ts +0 -1
  1525. package/dist/esm/transactions/data/internal.d.ts +0 -1010
  1526. package/dist/esm/transactions/data/internal.js +0 -215
  1527. package/dist/esm/transactions/data/internal.js.map +0 -7
  1528. package/dist/esm/transactions/data/v1.d.ts +0 -312
  1529. package/dist/esm/transactions/data/v1.js +0 -481
  1530. package/dist/esm/transactions/data/v1.js.map +0 -7
  1531. package/dist/esm/transactions/data/v2.d.ts +0 -153
  1532. package/dist/esm/transactions/data/v2.js +0 -121
  1533. package/dist/esm/transactions/data/v2.js.map +0 -7
  1534. package/dist/esm/transactions/executor/caching.d.ts +0 -31
  1535. package/dist/esm/transactions/executor/caching.js +0 -94
  1536. package/dist/esm/transactions/executor/caching.js.map +0 -7
  1537. package/dist/esm/transactions/executor/parallel.d.ts +0 -37
  1538. package/dist/esm/transactions/executor/parallel.js +0 -360
  1539. package/dist/esm/transactions/executor/parallel.js.map +0 -7
  1540. package/dist/esm/transactions/executor/queue.d.ts +0 -11
  1541. package/dist/esm/transactions/executor/queue.js +0 -65
  1542. package/dist/esm/transactions/executor/queue.js.map +0 -7
  1543. package/dist/esm/transactions/executor/serial.d.ts +0 -31
  1544. package/dist/esm/transactions/executor/serial.js +0 -117
  1545. package/dist/esm/transactions/executor/serial.js.map +0 -7
  1546. package/dist/esm/transactions/hash.d.ts +0 -7
  1547. package/dist/esm/transactions/hash.js +0 -12
  1548. package/dist/esm/transactions/hash.js.map +0 -7
  1549. package/dist/esm/transactions/index.d.ts +0 -21
  1550. package/dist/esm/transactions/index.js +0 -39
  1551. package/dist/esm/transactions/index.js.map +0 -7
  1552. package/dist/esm/transactions/intents/CoinWithBalance.d.ts +0 -9
  1553. package/dist/esm/transactions/intents/CoinWithBalance.js +0 -168
  1554. package/dist/esm/transactions/intents/CoinWithBalance.js.map +0 -7
  1555. package/dist/esm/transactions/object.d.ts +0 -16
  1556. package/dist/esm/transactions/object.js +0 -58
  1557. package/dist/esm/transactions/object.js.map +0 -7
  1558. package/dist/esm/transactions/plugins/NamedPackagesPlugin.d.ts +0 -48
  1559. package/dist/esm/transactions/plugins/NamedPackagesPlugin.js +0 -47
  1560. package/dist/esm/transactions/plugins/NamedPackagesPlugin.js.map +0 -7
  1561. package/dist/esm/transactions/pure.d.ts +0 -20
  1562. package/dist/esm/transactions/pure.js +0 -37
  1563. package/dist/esm/transactions/pure.js.map +0 -7
  1564. package/dist/esm/transactions/resolve.d.ts +0 -13
  1565. package/dist/esm/transactions/resolve.js +0 -78
  1566. package/dist/esm/transactions/resolve.js.map +0 -7
  1567. package/dist/esm/transactions/serializer.d.ts +0 -7
  1568. package/dist/esm/transactions/serializer.js +0 -162
  1569. package/dist/esm/transactions/serializer.js.map +0 -7
  1570. package/dist/esm/transactions/utils.d.ts +0 -10
  1571. package/dist/esm/transactions/utils.js +0 -115
  1572. package/dist/esm/transactions/utils.js.map +0 -7
  1573. package/dist/esm/utils/constants.d.ts +0 -10
  1574. package/dist/esm/utils/constants.js +0 -24
  1575. package/dist/esm/utils/constants.js.map +0 -7
  1576. package/dist/esm/utils/derived-objects.d.ts +0 -5
  1577. package/dist/esm/utils/derived-objects.js +0 -14
  1578. package/dist/esm/utils/derived-objects.js.map +0 -7
  1579. package/dist/esm/utils/dynamic-fields.d.ts +0 -2
  1580. package/dist/esm/utils/dynamic-fields.js +0 -21
  1581. package/dist/esm/utils/dynamic-fields.js.map +0 -7
  1582. package/dist/esm/utils/format.d.ts +0 -2
  1583. package/dist/esm/utils/format.js +0 -16
  1584. package/dist/esm/utils/format.js.map +0 -7
  1585. package/dist/esm/utils/haneul-types.d.ts +0 -26
  1586. package/dist/esm/utils/haneul-types.js +0 -71
  1587. package/dist/esm/utils/haneul-types.js.map +0 -7
  1588. package/dist/esm/utils/haneulns.d.ts +0 -2
  1589. package/dist/esm/utils/haneulns.js +0 -37
  1590. package/dist/esm/utils/haneulns.js.map +0 -7
  1591. package/dist/esm/utils/index.d.ts +0 -9
  1592. package/dist/esm/utils/index.js +0 -80
  1593. package/dist/esm/utils/index.js.map +0 -7
  1594. package/dist/esm/utils/move-registry.d.ts +0 -6
  1595. package/dist/esm/utils/move-registry.js +0 -25
  1596. package/dist/esm/utils/move-registry.js.map +0 -7
  1597. package/dist/esm/verify/index.d.ts +0 -1
  1598. package/dist/esm/verify/index.js +0 -15
  1599. package/dist/esm/verify/index.js.map +0 -7
  1600. package/dist/esm/verify/verify.d.ts +0 -21
  1601. package/dist/esm/verify/verify.js +0 -104
  1602. package/dist/esm/verify/verify.js.map +0 -7
  1603. package/dist/esm/version.d.ts +0 -2
  1604. package/dist/esm/version.js +0 -7
  1605. package/dist/esm/version.js.map +0 -7
  1606. package/dist/esm/zklogin/address.d.ts +0 -16
  1607. package/dist/esm/zklogin/address.js +0 -72
  1608. package/dist/esm/zklogin/address.js.map +0 -7
  1609. package/dist/esm/zklogin/bcs.d.ts +0 -28
  1610. package/dist/esm/zklogin/bcs.js +0 -22
  1611. package/dist/esm/zklogin/bcs.js.map +0 -7
  1612. package/dist/esm/zklogin/index.d.ts +0 -9
  1613. package/dist/esm/zklogin/index.js +0 -35
  1614. package/dist/esm/zklogin/index.js.map +0 -7
  1615. package/dist/esm/zklogin/jwt-decode.d.ts +0 -47
  1616. package/dist/esm/zklogin/jwt-decode.js +0 -65
  1617. package/dist/esm/zklogin/jwt-decode.js.map +0 -7
  1618. package/dist/esm/zklogin/jwt-utils.d.ts +0 -12
  1619. package/dist/esm/zklogin/jwt-utils.js +0 -101
  1620. package/dist/esm/zklogin/jwt-utils.js.map +0 -7
  1621. package/dist/esm/zklogin/nonce.d.ts +0 -4
  1622. package/dist/esm/zklogin/nonce.js +0 -34
  1623. package/dist/esm/zklogin/nonce.js.map +0 -7
  1624. package/dist/esm/zklogin/poseidon.d.ts +0 -2
  1625. package/dist/esm/zklogin/poseidon.js +0 -60
  1626. package/dist/esm/zklogin/poseidon.js.map +0 -7
  1627. package/dist/esm/zklogin/publickey.d.ts +0 -87
  1628. package/dist/esm/zklogin/publickey.js +0 -237
  1629. package/dist/esm/zklogin/publickey.js.map +0 -7
  1630. package/dist/esm/zklogin/signature.d.ts +0 -23
  1631. package/dist/esm/zklogin/signature.js +0 -28
  1632. package/dist/esm/zklogin/signature.js.map +0 -7
  1633. package/dist/esm/zklogin/utils.d.ts +0 -16
  1634. package/dist/esm/zklogin/utils.js +0 -77
  1635. package/dist/esm/zklogin/utils.js.map +0 -7
  1636. package/dist/tsconfig.esm.tsbuildinfo +0 -1
  1637. package/dist/tsconfig.tsbuildinfo +0 -1
  1638. package/experimental/package.json +0 -6
  1639. package/faucet/package.json +0 -6
  1640. package/graphql/package.json +0 -6
  1641. package/graphql/schemas/2024.1/package.json +0 -6
  1642. package/graphql/schemas/2024.4/package.json +0 -6
  1643. package/graphql/schemas/latest/package.json +0 -6
  1644. package/grpc/package.json +0 -6
  1645. package/jsonRpc/package.json +0 -6
  1646. package/keypairs/ed25519/package.json +0 -6
  1647. package/keypairs/passkey/package.json +0 -6
  1648. package/keypairs/secp256k1/package.json +0 -6
  1649. package/keypairs/secp256r1/package.json +0 -6
  1650. package/multisig/package.json +0 -6
  1651. package/src/client/network.ts +0 -17
  1652. package/src/experimental/client.ts +0 -60
  1653. package/src/experimental/core.ts +0 -197
  1654. package/src/experimental/errors.ts +0 -37
  1655. package/src/experimental/index.ts +0 -24
  1656. package/src/experimental/mvr.ts +0 -488
  1657. package/src/experimental/transports/utils.ts +0 -117
  1658. package/src/experimental/types.ts +0 -569
  1659. package/src/graphql/generated/2024.1/schema.graphql +0 -4182
  1660. package/src/graphql/generated/2024.1/tada-env.ts +0 -13144
  1661. package/src/graphql/generated/2024.1/tsconfig.tada.json +0 -11
  1662. package/src/graphql/generated/2024.4/schema.graphql +0 -4211
  1663. package/src/graphql/generated/2024.4/tada-env.ts +0 -13290
  1664. package/src/graphql/generated/2024.4/tsconfig.tada.json +0 -11
  1665. package/src/graphql/generated/latest/schema.graphql +0 -4312
  1666. package/src/graphql/generated/latest/tada-env.ts +0 -12928
  1667. package/src/graphql/generated/latest/tsconfig.tada.json +0 -11
  1668. package/src/graphql/schemas/2024.1/index.ts +0 -17
  1669. package/src/graphql/schemas/2024.4/index.ts +0 -17
  1670. package/src/graphql/schemas/latest/index.ts +0 -17
  1671. package/src/jsonRpc/json-rpc-resolver.ts +0 -420
  1672. package/transactions/package.json +0 -6
  1673. package/utils/package.json +0 -6
  1674. package/verify/package.json +0 -6
  1675. package/zklogin/package.json +0 -6
  1676. /package/src/{experimental → client}/cache.ts +0 -0
@@ -0,0 +1,4362 @@
1
+ """
2
+ System transaction for creating the accumulator root.
3
+ """
4
+ type AccumulatorRootCreateTransaction {
5
+ """
6
+ A workaround to define an empty variant of a GraphQL union.
7
+ """
8
+ _: Boolean
9
+ }
10
+
11
+ type ActiveJwk {
12
+ """
13
+ The JWK algorithm parameter, (RFC 7517, Section 4.4).
14
+ """
15
+ alg: String
16
+ """
17
+ The JWK RSA public exponent, (RFC 7517, Section 9.3).
18
+ """
19
+ e: String
20
+ """
21
+ The most recent epoch in which the JWK was validated.
22
+ """
23
+ epoch: Epoch
24
+ """
25
+ The string (Issuing Authority) that identifies the OIDC provider.
26
+ """
27
+ iss: String
28
+ """
29
+ The string (Key ID) that identifies the JWK among a set of JWKs, (RFC 7517, Section 4.5).
30
+ """
31
+ kid: String
32
+ """
33
+ The JWK key type parameter, (RFC 7517, Section 4.1).
34
+ """
35
+ kty: String
36
+ """
37
+ The JWK RSA modulus, (RFC 7517, Section 9.3).
38
+ """
39
+ n: String
40
+ }
41
+
42
+ type ActiveJwkConnection {
43
+ """
44
+ A list of edges.
45
+ """
46
+ edges: [ActiveJwkEdge!]!
47
+ """
48
+ A list of nodes.
49
+ """
50
+ nodes: [ActiveJwk!]!
51
+ """
52
+ Information to aid in pagination.
53
+ """
54
+ pageInfo: PageInfo!
55
+ }
56
+
57
+ """
58
+ An edge in a connection.
59
+ """
60
+ type ActiveJwkEdge {
61
+ """
62
+ A cursor for use in pagination
63
+ """
64
+ cursor: String!
65
+ """
66
+ The item at the end of the edge
67
+ """
68
+ node: ActiveJwk!
69
+ }
70
+
71
+ type Address implements Node & IAddressable {
72
+ """
73
+ The Address' identifier, a 32-byte number represented as a 64-character hex string, with a lead "0x".
74
+ """
75
+ address: SuiAddress!
76
+ """
77
+ Fetch the address as it was at a different root version, or checkpoint.
78
+
79
+ If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
80
+ """
81
+ addressAt(rootVersion: UInt53, checkpoint: UInt53): Address
82
+ """
83
+ Attempts to fetch the object at this address.
84
+ """
85
+ asObject: Object
86
+ """
87
+ Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::sui::SUI`), owned by this address.
88
+
89
+ Returns `None` when no checkpoint is set in scope (e.g. execution scope).
90
+ If the address does not own any coins of that type, a balance of zero is returned.
91
+ """
92
+ balance(coinType: String!): Balance
93
+ """
94
+ Total balance across coins owned by this address, grouped by coin type.
95
+ """
96
+ balances(first: Int, after: String, last: Int, before: String): BalanceConnection
97
+ """
98
+ The domain explicitly configured as the default Name Service name for this address.
99
+ """
100
+ defaultNameRecord: NameRecord
101
+ """
102
+ Access a dynamic field on an object using its type and BCS-encoded name.
103
+
104
+ Returns `null` if a dynamic field with that name could not be found attached to the object with this address.
105
+ """
106
+ dynamicField(name: DynamicFieldName!): DynamicField
107
+ """
108
+ Dynamic fields owned by this address.
109
+
110
+ The address must correspond to an object (account addresses cannot own dynamic fields), but that object may be wrapped.
111
+ """
112
+ dynamicFields(first: Int, after: String, last: Int, before: String): DynamicFieldConnection
113
+ """
114
+ Access a dynamic object field on an object using its type and BCS-encoded name.
115
+
116
+ Returns `null` if a dynamic object field with that name could not be found attached to the object with this address.
117
+ """
118
+ dynamicObjectField(name: DynamicFieldName!): DynamicField
119
+ """
120
+ The address's globally unique identifier, which can be passed to `Query.node` to refetch it.
121
+ """
122
+ id: ID!
123
+ """
124
+ Fetch the total balances keyed by coin types (e.g. `0x2::sui::SUI`) owned by this address.
125
+
126
+ Returns `None` when no checkpoint is set in scope (e.g. execution scope).
127
+ If the address does not own any coins of a given type, a balance of zero is returned for that type.
128
+ """
129
+ multiGetBalances(keys: [String!]!): [Balance!]
130
+ """
131
+ Access dynamic fields on an object using their types and BCS-encoded names.
132
+
133
+ Returns a list of dynamic fields that is guaranteed to be the same length as `keys`. If a dynamic field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.
134
+ """
135
+ multiGetDynamicFields(keys: [DynamicFieldName!]!): [DynamicField]!
136
+ """
137
+ Access dynamic object fields on an object using their types and BCS-encoded names.
138
+
139
+ Returns a list of dynamic object fields that is guaranteed to be the same length as `keys`. If a dynamic object field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.
140
+ """
141
+ multiGetDynamicObjectFields(keys: [DynamicFieldName!]!): [DynamicField]!
142
+ """
143
+ Objects owned by this address, optionally filtered by type.
144
+ """
145
+ objects(first: Int, after: String, last: Int, before: String, filter: ObjectFilter): MoveObjectConnection
146
+ """
147
+ Transactions associated with this address.
148
+
149
+ Similar behavior to the `transactions` in Query but supporting the additional `AddressTransactionRelationship` filter, which defaults to `SENT`.
150
+ """
151
+ transactions(first: Int, after: String, last: Int, before: String, relation: AddressTransactionRelationship, filter: TransactionFilter): TransactionConnection
152
+ }
153
+
154
+ """
155
+ System transaction for creating the alias state.
156
+ """
157
+ type AddressAliasStateCreateTransaction {
158
+ """
159
+ A workaround to define an empty variant of a GraphQL union.
160
+ """
161
+ _: Boolean
162
+ }
163
+
164
+ """
165
+ Identifies a specific version of an address.
166
+
167
+ Exactly one of `address` or `name` must be specified. Additionally, at most one of `rootVersion` or `atCheckpoint` can be specified. If neither bound is provided, the address is fetched at the checkpoint being viewed.
168
+
169
+ See `Query.address` for more details.
170
+ """
171
+ input AddressKey {
172
+ """
173
+ The address.
174
+ """
175
+ address: SuiAddress
176
+ """
177
+ If specified, sets a checkpoint bound for this address.
178
+ """
179
+ atCheckpoint: UInt53
180
+ """
181
+ A SuiNS name to resolve to an address.
182
+ """
183
+ name: String
184
+ """
185
+ If specified, sets a root version bound for this address.
186
+ """
187
+ rootVersion: UInt53
188
+ }
189
+
190
+ """
191
+ Object is exclusively owned by a single address, and is mutable.
192
+ """
193
+ type AddressOwner {
194
+ """
195
+ The owner's address.
196
+ """
197
+ address: Address
198
+ }
199
+
200
+ """
201
+ The possible relationship types for a transaction: sent or affected.
202
+ """
203
+ enum AddressTransactionRelationship {
204
+ """
205
+ Transactions this address has sent.
206
+ """
207
+ SENT
208
+ """
209
+ Transactions that this address was involved in, either as the sender, sponsor, or as the owner of some object that was created, modified or transferred.
210
+ """
211
+ AFFECTED
212
+ }
213
+
214
+ """
215
+ System transaction for creating the on-chain state used by zkLogin.
216
+ """
217
+ type AuthenticatorStateCreateTransaction {
218
+ """
219
+ A workaround to define an empty variant of a GraphQL union.
220
+ """
221
+ _: Boolean
222
+ }
223
+
224
+ """
225
+ System transaction that is executed at the end of an epoch to expire JSON Web Keys (JWKs) that are no longer valid, based on their associated epoch. This is part of the on-chain state management for zkLogin and authentication.
226
+ """
227
+ type AuthenticatorStateExpireTransaction {
228
+ """
229
+ The initial version that the AuthenticatorStateUpdate was shared at.
230
+ """
231
+ authenticatorObjInitialSharedVersion: UInt53
232
+ """
233
+ Expire JWKs that have a lower epoch than this.
234
+ """
235
+ minEpoch: Epoch
236
+ }
237
+
238
+ type AuthenticatorStateUpdateTransaction {
239
+ """
240
+ The initial version of the authenticator object that it was shared at.
241
+ """
242
+ authenticatorObjInitialSharedVersion: UInt53
243
+ """
244
+ Epoch of the authenticator state update transaction.
245
+ """
246
+ epoch: Epoch
247
+ """
248
+ Newly active JWKs (JSON Web Keys).
249
+ """
250
+ newActiveJwks(first: Int, after: String, last: Int, before: String): ActiveJwkConnection
251
+ """
252
+ Consensus round of the authenticator state update.
253
+ """
254
+ round: UInt53
255
+ }
256
+
257
+ """
258
+ Checkpoint range for which data is available.
259
+ """
260
+ type AvailableRange {
261
+ """
262
+ Inclusive lower checkpoint for which data is available.
263
+ """
264
+ first: Checkpoint
265
+ """
266
+ Inclusive upper checkpoint for which data is available.
267
+ """
268
+ last: Checkpoint
269
+ }
270
+
271
+ """
272
+ The total balance for a particular coin type.
273
+ """
274
+ type Balance {
275
+ """
276
+ The balance as tracked by the accumulator object for the address.
277
+ """
278
+ addressBalance: BigInt
279
+ """
280
+ Total balance across all owned coin objects of the coin type.
281
+ """
282
+ coinBalance: BigInt
283
+ """
284
+ Coin type for the balance, such as `0x2::sui::SUI`.
285
+ """
286
+ coinType: MoveType
287
+ """
288
+ The sum total of the accumulator balance and individual coin balances owned by the address.
289
+ """
290
+ totalBalance: BigInt
291
+ }
292
+
293
+ """
294
+ Effects to the balance (sum of coin values per coin type) of addresses and objects.
295
+ """
296
+ type BalanceChange {
297
+ """
298
+ The signed balance change.
299
+ """
300
+ amount: BigInt
301
+ """
302
+ The inner type of the coin whose balance has changed (e.g. `0x2::sui::SUI`).
303
+ """
304
+ coinType: MoveType
305
+ """
306
+ The address or object whose balance has changed.
307
+ """
308
+ owner: Address
309
+ }
310
+
311
+ type BalanceChangeConnection {
312
+ """
313
+ A list of edges.
314
+ """
315
+ edges: [BalanceChangeEdge!]!
316
+ """
317
+ A list of nodes.
318
+ """
319
+ nodes: [BalanceChange!]!
320
+ """
321
+ Information to aid in pagination.
322
+ """
323
+ pageInfo: PageInfo!
324
+ }
325
+
326
+ """
327
+ An edge in a connection.
328
+ """
329
+ type BalanceChangeEdge {
330
+ """
331
+ A cursor for use in pagination
332
+ """
333
+ cursor: String!
334
+ """
335
+ The item at the end of the edge
336
+ """
337
+ node: BalanceChange!
338
+ }
339
+
340
+ type BalanceConnection {
341
+ """
342
+ A list of edges.
343
+ """
344
+ edges: [BalanceEdge!]!
345
+ """
346
+ A list of nodes.
347
+ """
348
+ nodes: [Balance!]!
349
+ """
350
+ Information to aid in pagination.
351
+ """
352
+ pageInfo: PageInfo!
353
+ }
354
+
355
+ """
356
+ An edge in a connection.
357
+ """
358
+ type BalanceEdge {
359
+ """
360
+ A cursor for use in pagination
361
+ """
362
+ cursor: String!
363
+ """
364
+ The item at the end of the edge
365
+ """
366
+ node: Balance!
367
+ }
368
+
369
+ """
370
+ Input for withdrawing funds from an accumulator.
371
+ """
372
+ type BalanceWithdraw {
373
+ """
374
+ How much to withdraw from the accumulator.
375
+ """
376
+ reservation: WithdrawalReservation
377
+ """
378
+ The type of the funds accumulator to withdraw from (e.g. `0x2::balance::Balance<0x2::sui::SUI>`).
379
+ """
380
+ type: MoveType
381
+ """
382
+ The account to withdraw funds from.
383
+ """
384
+ withdrawFrom: WithdrawFrom
385
+ }
386
+
387
+ """
388
+ String containing Base64-encoded binary data.
389
+ """
390
+ scalar Base64
391
+
392
+ """
393
+ String representation of an arbitrary width, possibly signed integer
394
+ """
395
+ scalar BigInt
396
+
397
+
398
+ """
399
+ System transaction for initializing bridge committee.
400
+ """
401
+ type BridgeCommitteeInitTransaction {
402
+ """
403
+ The initial shared version of the bridge object.
404
+ """
405
+ bridgeObjectVersion: UInt53
406
+ }
407
+
408
+ """
409
+ System transaction for creating bridge state for cross-chain operations.
410
+ """
411
+ type BridgeStateCreateTransaction {
412
+ """
413
+ The chain identifier for which this bridge state is being created.
414
+ """
415
+ chainIdentifier: String
416
+ }
417
+
418
+ """
419
+ A system transaction that updates epoch information on-chain (increments the current epoch). Executed by the system once per epoch, without using gas. Epoch change transactions cannot be submitted by users, because validators will refuse to sign them.
420
+
421
+ This transaction kind is deprecated in favour of `EndOfEpochTransaction`.
422
+ """
423
+ type ChangeEpochTransaction {
424
+ """
425
+ The total amount of gas charged for computation during the epoch.
426
+ """
427
+ computationCharge: UInt53
428
+ """
429
+ The next (to become) epoch.
430
+ """
431
+ epoch: Epoch
432
+ """
433
+ Unix timestamp when epoch started.
434
+ """
435
+ epochStartTimestamp: DateTime
436
+ """
437
+ The non-refundable storage fee.
438
+ """
439
+ nonRefundableStorageFee: UInt53
440
+ """
441
+ The epoch's corresponding protocol configuration.
442
+ """
443
+ protocolConfigs: ProtocolConfigs
444
+ """
445
+ The total amount of gas charged for storage during the epoch.
446
+ """
447
+ storageCharge: UInt53
448
+ """
449
+ The amount of storage rebate refunded to the transaction senders.
450
+ """
451
+ storageRebate: UInt53
452
+ """
453
+ System packages that will be written by validators before the new epoch starts, to upgrade them on-chain. These objects do not have a "previous transaction" because they are not written on-chain yet. Consult `effects.objectChanges` for this transaction to see the actual objects written.
454
+ """
455
+ systemPackages(first: Int, after: String, last: Int, before: String): MovePackageConnection
456
+ }
457
+
458
+ """
459
+ Checkpoints contain finalized transactions and are used for node synchronization and global transaction ordering.
460
+ """
461
+ type Checkpoint implements Node {
462
+ """
463
+ A commitment by the committee at each checkpoint on the artifacts of the checkpoint.
464
+ e.g., object checkpoint states
465
+ """
466
+ artifactsDigest: String
467
+ """
468
+ The Base64 serialized BCS bytes of this checkpoint's contents.
469
+ """
470
+ contentBcs: Base64
471
+ """
472
+ A 32-byte hash that uniquely identifies the checkpoint's content, encoded in Base58.
473
+ """
474
+ contentDigest: String
475
+ """
476
+ A 32-byte hash that uniquely identifies the checkpoint, encoded in Base58. This is a hash of the checkpoint's summary.
477
+ """
478
+ digest: String
479
+ """
480
+ The epoch that this checkpoint is part of.
481
+ """
482
+ epoch: Epoch
483
+ """
484
+ The checkpoint's globally unique identifier, which can be passed to `Query.node` to refetch it.
485
+ """
486
+ id: ID!
487
+ """
488
+ The total number of transactions in the network by the end of this checkpoint.
489
+ """
490
+ networkTotalTransactions: UInt53
491
+ """
492
+ The digest of the previous checkpoint's summary.
493
+ """
494
+ previousCheckpointDigest: String
495
+ """
496
+ Query the RPC as if this checkpoint were the latest checkpoint.
497
+ """
498
+ query: Query
499
+ """
500
+ The computation cost, storage cost, storage rebate, and non-refundable storage fee accumulated during this epoch, up to and including this checkpoint. These values increase monotonically across checkpoints in the same epoch, and reset on epoch boundaries.
501
+ """
502
+ rollingGasSummary: GasCostSummary
503
+ """
504
+ The checkpoint's position in the total order of finalized checkpoints, agreed upon by consensus.
505
+ """
506
+ sequenceNumber: UInt53!
507
+ """
508
+ The Base64 serialized BCS bytes of this checkpoint's summary.
509
+ """
510
+ summaryBcs: Base64
511
+ """
512
+ The timestamp at which the checkpoint is agreed to have happened according to consensus. Transactions that access time in this checkpoint will observe this timestamp.
513
+ """
514
+ timestamp: DateTime
515
+ transactions(first: Int, after: String, last: Int, before: String, filter: TransactionFilter): TransactionConnection
516
+ """
517
+ The aggregation of signatures from a quorum of validators for the checkpoint proposal.
518
+ """
519
+ validatorSignatures: ValidatorAggregatedSignature
520
+ }
521
+
522
+ type CheckpointConnection {
523
+ """
524
+ A list of edges.
525
+ """
526
+ edges: [CheckpointEdge!]!
527
+ """
528
+ A list of nodes.
529
+ """
530
+ nodes: [Checkpoint!]!
531
+ """
532
+ Information to aid in pagination.
533
+ """
534
+ pageInfo: PageInfo!
535
+ }
536
+
537
+ """
538
+ An edge in a connection.
539
+ """
540
+ type CheckpointEdge {
541
+ """
542
+ A cursor for use in pagination
543
+ """
544
+ cursor: String!
545
+ """
546
+ The item at the end of the edge
547
+ """
548
+ node: Checkpoint!
549
+ }
550
+
551
+ input CheckpointFilter {
552
+ """
553
+ Limit query results to checkpoints that occured strictly after the given checkpoint.
554
+ """
555
+ afterCheckpoint: UInt53
556
+ """
557
+ Limit query results to checkpoints that occured at the given checkpoint.
558
+ """
559
+ atCheckpoint: UInt53
560
+ """
561
+ Limit query results to checkpoints at this epoch.
562
+ """
563
+ atEpoch: UInt53
564
+ """
565
+ Limit query results to checkpoints that occured strictly before the given checkpoint.
566
+ """
567
+ beforeCheckpoint: UInt53
568
+ }
569
+
570
+ """
571
+ System transaction for creating the coin deny list state.
572
+ """
573
+ type CoinDenyListStateCreateTransaction {
574
+ """
575
+ A workaround to define an empty variant of a GraphQL union.
576
+ """
577
+ _: Boolean
578
+ }
579
+
580
+ """
581
+ An object representing metadata about a coin type.
582
+ """
583
+ type CoinMetadata implements IAddressable & IMoveObject & IObject {
584
+ """
585
+ The CoinMetadata's ID.
586
+ """
587
+ address: SuiAddress!
588
+ """
589
+ Fetch the address as it was at a different root version, or checkpoint.
590
+
591
+ If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
592
+ """
593
+ addressAt(rootVersion: UInt53, checkpoint: UInt53): Address
594
+ """
595
+ Whether the `DenyCap` can be used to enable a global pause that behaves as if all addresses were added to the deny list. `null` indicates that it is not known whether the currency can be paused or not. This field is only populated on currencies held in the Coin Registry. To determine whether a legacy currency can be paused, check the contents of its `DenyCap`, if it can be found.
596
+ """
597
+ allowGlobalPause: Boolean
598
+ """
599
+ Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::sui::SUI`), owned by this address.
600
+
601
+ If the address does not own any coins of that type, a balance of zero is returned.
602
+ """
603
+ balance(coinType: String!): Balance
604
+ """
605
+ Total balance across coins owned by this address, grouped by coin type.
606
+ """
607
+ balances(first: Int, after: String, last: Int, before: String): BalanceConnection
608
+ """
609
+ The structured representation of the object's contents.
610
+ """
611
+ contents: MoveValue
612
+ """
613
+ Number of decimal places the coin uses.
614
+ """
615
+ decimals: Int
616
+ """
617
+ The domain explicitly configured as the default Name Service name for this address.
618
+ """
619
+ defaultNameRecord: NameRecord
620
+ """
621
+ If the currency is regulated, this object represents the capability to modify the deny list. If a capability is known but wrapped, its address can be fetched but other fields will not be accessible.
622
+ """
623
+ denyCap: MoveObject
624
+ """
625
+ Description of the coin.
626
+ """
627
+ description: String
628
+ """
629
+ 32-byte hash that identifies the object's contents, encoded in Base58.
630
+ """
631
+ digest: String
632
+ """
633
+ Access a dynamic field on an object using its type and BCS-encoded name.
634
+
635
+ Returns `null` if a dynamic field with that name could not be found attached to this object.
636
+ """
637
+ dynamicField(name: DynamicFieldName!): DynamicField
638
+ """
639
+ Dynamic fields owned by this object.
640
+
641
+ Dynamic fields on wrapped objects can be accessed using `Address.dynamicFields`.
642
+ """
643
+ dynamicFields(first: Int, after: String, last: Int, before: String): DynamicFieldConnection
644
+ """
645
+ Access a dynamic object field on an object using its type and BCS-encoded name.
646
+
647
+ Returns `null` if a dynamic object field with that name could not be found attached to this object.
648
+ """
649
+ dynamicObjectField(name: DynamicFieldName!): DynamicField
650
+ """
651
+ Whether this object can be transfered using the `TransferObjects` Programmable Transaction Command or `sui::transfer::public_transfer`.
652
+
653
+ Both these operations require the object to have both the `key` and `store` abilities.
654
+ """
655
+ hasPublicTransfer: Boolean
656
+ """
657
+ URL for the coin logo.
658
+ """
659
+ iconUrl: String
660
+ """
661
+ The Base64-encoded BCS serialize of this object, as a `MoveObject`.
662
+ """
663
+ moveObjectBcs: Base64
664
+ """
665
+ Fetch the total balances keyed by coin types (e.g. `0x2::sui::SUI`) owned by this address.
666
+
667
+ If the address does not own any coins of a given type, a balance of zero is returned for that type.
668
+ """
669
+ multiGetBalances(keys: [String!]!): [Balance!]
670
+ """
671
+ Access dynamic fields on an object using their types and BCS-encoded names.
672
+
673
+ Returns a list of dynamic fields that is guaranteed to be the same length as `keys`. If a dynamic field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.
674
+ """
675
+ multiGetDynamicFields(keys: [DynamicFieldName!]!): [DynamicField]!
676
+ """
677
+ Access dynamic object fields on an object using their types and BCS-encoded names.
678
+
679
+ Returns a list of dynamic object fields that is guaranteed to be the same length as `keys`. If a dynamic object field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.
680
+ """
681
+ multiGetDynamicObjectFields(keys: [DynamicFieldName!]!): [DynamicField]!
682
+ """
683
+ Name for the coin.
684
+ """
685
+ name: String
686
+ """
687
+ Fetch the object with the same ID, at a different version, root version bound, or checkpoint.
688
+ """
689
+ objectAt(version: UInt53, rootVersion: UInt53, checkpoint: UInt53): Object
690
+ """
691
+ The Base64-encoded BCS serialization of this object, as an `Object`.
692
+ """
693
+ objectBcs: Base64
694
+ """
695
+ Paginate all versions of this object after this one.
696
+ """
697
+ objectVersionsAfter(first: Int, after: String, last: Int, before: String, filter: VersionFilter): ObjectConnection
698
+ """
699
+ Paginate all versions of this object before this one.
700
+ """
701
+ objectVersionsBefore(first: Int, after: String, last: Int, before: String, filter: VersionFilter): ObjectConnection
702
+ """
703
+ Objects owned by this object, optionally filtered by type.
704
+ """
705
+ objects(first: Int, after: String, last: Int, before: String, filter: ObjectFilter): MoveObjectConnection
706
+ """
707
+ The object's owner kind.
708
+ """
709
+ owner: Owner
710
+ """
711
+ The transaction that created this version of the object.
712
+ """
713
+ previousTransaction: Transaction
714
+ """
715
+ The transactions that sent objects to this object.
716
+ """
717
+ receivedTransactions(first: Int, after: String, last: Int, before: String, filter: TransactionFilter): TransactionConnection
718
+ """
719
+ Whether the currency is regulated or not. `null` indicates that the regulatory status is unknown.
720
+ """
721
+ regulatedState: RegulatedState
722
+ """
723
+ The SUI returned to the sponsor or sender of the transaction that modifies or deletes this object.
724
+ """
725
+ storageRebate: BigInt
726
+ """
727
+ The overall balance of coins issued.
728
+ """
729
+ supply: BigInt
730
+ """
731
+ Future behavior of the supply. `null` indicates that the future behavior of the supply is not known because the currency's treasury still exists.
732
+ """
733
+ supplyState: SupplyState
734
+ """
735
+ Symbol for the coin.
736
+ """
737
+ symbol: String
738
+ """
739
+ The version of this object that this content comes from.
740
+ """
741
+ version: UInt53
742
+ }
743
+
744
+ """
745
+ System transaction for creating the coin registry.
746
+ """
747
+ type CoinRegistryCreateTransaction {
748
+ """
749
+ A workaround to define an empty variant of a GraphQL union.
750
+ """
751
+ _: Boolean
752
+ }
753
+
754
+ """
755
+ A single command in the programmable transaction.
756
+ """
757
+ union Command = MakeMoveVecCommand | MergeCoinsCommand | MoveCallCommand | PublishCommand | SplitCoinsCommand | TransferObjectsCommand | UpgradeCommand | OtherCommand
758
+
759
+ type CommandConnection {
760
+ """
761
+ A list of edges.
762
+ """
763
+ edges: [CommandEdge!]!
764
+ """
765
+ A list of nodes.
766
+ """
767
+ nodes: [Command!]!
768
+ """
769
+ Information to aid in pagination.
770
+ """
771
+ pageInfo: PageInfo!
772
+ }
773
+
774
+ """
775
+ An edge in a connection.
776
+ """
777
+ type CommandEdge {
778
+ """
779
+ A cursor for use in pagination
780
+ """
781
+ cursor: String!
782
+ """
783
+ The item at the end of the edge
784
+ """
785
+ node: Command!
786
+ }
787
+
788
+ """
789
+ A value produced or modified during command execution.
790
+
791
+ This can represent either a return value from a command or an argument that was mutated by reference.
792
+ """
793
+ type CommandOutput {
794
+ """
795
+ The transaction argument that this value corresponds to (if any).
796
+ """
797
+ argument: TransactionArgument
798
+ """
799
+ The structured Move value, if available.
800
+ """
801
+ value: MoveValue
802
+ }
803
+
804
+ """
805
+ The intermediate results for each command of a transaction simulation.
806
+ """
807
+ type CommandResult {
808
+ """
809
+ Changes made to arguments that were mutably borrowed by each command in this transaction.
810
+ """
811
+ mutatedReferences: [CommandOutput!]
812
+ """
813
+ Return results of each command in this transaction.
814
+ """
815
+ returnValues: [CommandOutput!]
816
+ }
817
+
818
+ """
819
+ Object is exclusively owned by a single adderss and sequenced via consensus.
820
+ """
821
+ type ConsensusAddressOwner {
822
+ """
823
+ The owner's address.
824
+ """
825
+ address: Address
826
+ """
827
+ The version at which the object most recently bcame a consensus object. This serves the same function as `Shared.initialSharedVersion`, except it may change if the object's `owner` type changes.
828
+ """
829
+ startVersion: UInt53
830
+ }
831
+
832
+ """
833
+ System transaction that runs at the beginning of a checkpoint, and is responsible for setting the current value of the clock, based on the timestamp from consensus.
834
+ """
835
+ type ConsensusCommitPrologueTransaction {
836
+ """
837
+ Digest of any additional state computed by the consensus handler.
838
+ Used to detect forking bugs as early as possible.
839
+
840
+ Present in V4.
841
+ """
842
+ additionalStateDigest: String
843
+ """
844
+ Unix timestamp from consensus.
845
+
846
+ Present in V1, V2, V3, V4.
847
+ """
848
+ commitTimestamp: DateTime
849
+ """
850
+ Digest of consensus output, encoded as a Base58 string.
851
+
852
+ Present in V2, V3, V4.
853
+ """
854
+ consensusCommitDigest: String
855
+ """
856
+ Epoch of the commit prologue transaction.
857
+
858
+ Present in V1, V2, V3, V4.
859
+ """
860
+ epoch: Epoch
861
+ """
862
+ Consensus round of the commit.
863
+
864
+ Present in V1, V2, V3, V4.
865
+ """
866
+ round: UInt53
867
+ """
868
+ The sub DAG index of the consensus commit. This field is populated if there
869
+ are multiple consensus commits per round.
870
+
871
+ Present in V3, V4.
872
+ """
873
+ subDagIndex: UInt53
874
+ }
875
+
876
+ """
877
+ Reason why a transaction that attempted to access a consensus-managed object was cancelled.
878
+ """
879
+ enum ConsensusObjectCancellationReason {
880
+ """
881
+ Read operation was cancelled.
882
+ """
883
+ CANCELLED_READ
884
+ """
885
+ Object congestion prevented execution.
886
+ """
887
+ CONGESTED
888
+ """
889
+ Randomness service was unavailable.
890
+ """
891
+ RANDOMNESS_UNAVAILABLE
892
+ """
893
+ Internal use only.
894
+ """
895
+ UNKNOWN
896
+ }
897
+
898
+ """
899
+ A transaction that was cancelled before it could access the consensus-managed object, so the object was an input but remained unchanged.
900
+ """
901
+ type ConsensusObjectCancelled {
902
+ """
903
+ The ID of the consensus-managed object that the transaction intended to access.
904
+ """
905
+ address: SuiAddress
906
+ """
907
+ Reason why the transaction was cancelled.
908
+ """
909
+ cancellationReason: ConsensusObjectCancellationReason
910
+ }
911
+
912
+ type ConsensusObjectRead {
913
+ """
914
+ The version of the consensus-managed object that was read by this transaction.
915
+ """
916
+ object: Object
917
+ }
918
+
919
+ """
920
+ ISO-8601 Date and Time: RFC3339 in UTC with format: YYYY-MM-DDTHH:MM:SS.mmmZ. Note that the milliseconds part is optional, and it may be omitted if its value is 0.
921
+ """
922
+ scalar DateTime
923
+
924
+ """
925
+ A rendered JSON blob based on an on-chain template.
926
+ """
927
+ type Display {
928
+ """
929
+ If any fields failed to render, this will contain a mapping from failed field names to error messages. If all fields succeed, this will be `null`.
930
+ """
931
+ errors: JSON
932
+ """
933
+ Output for all successfully substituted display fields. Unsuccessful fields will be `null`, and will be accompanied by a field in `errors`, explaining the error.
934
+ """
935
+ output: JSON
936
+ }
937
+
938
+ """
939
+ System transaction for creating the display registry.
940
+ """
941
+ type DisplayRegistryCreateTransaction {
942
+ """
943
+ A workaround to define an empty variant of a GraphQL union.
944
+ """
945
+ _: Boolean
946
+ }
947
+
948
+ """
949
+ Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.
950
+
951
+ There are two sub-types of dynamic fields:
952
+
953
+ - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).
954
+ - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.
955
+ """
956
+ type DynamicField implements Node & IAddressable & IMoveObject & IObject {
957
+ """
958
+ The DynamicField's ID.
959
+ """
960
+ address: SuiAddress!
961
+ """
962
+ Fetch the address as it was at a different root version, or checkpoint.
963
+
964
+ If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
965
+ """
966
+ addressAt(rootVersion: UInt53, checkpoint: UInt53): Address
967
+ """
968
+ Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::sui::SUI`), owned by this address.
969
+
970
+ If the address does not own any coins of that type, a balance of zero is returned.
971
+ """
972
+ balance(coinType: String!): Balance
973
+ """
974
+ Total balance across coins owned by this address, grouped by coin type.
975
+ """
976
+ balances(first: Int, after: String, last: Int, before: String): BalanceConnection
977
+ """
978
+ The structured representation of the object's contents.
979
+ """
980
+ contents: MoveValue
981
+ """
982
+ The domain explicitly configured as the default Name Service name for this address.
983
+ """
984
+ defaultNameRecord: NameRecord
985
+ """
986
+ 32-byte hash that identifies the object's contents, encoded in Base58.
987
+ """
988
+ digest: String
989
+ """
990
+ Access a dynamic field on an object using its type and BCS-encoded name.
991
+
992
+ Returns `null` if a dynamic field with that name could not be found attached to this object.
993
+ """
994
+ dynamicField(name: DynamicFieldName!): DynamicField
995
+ """
996
+ Dynamic fields owned by this object.
997
+
998
+ Dynamic fields on wrapped objects can be accessed using `Address.dynamicFields`.
999
+ """
1000
+ dynamicFields(first: Int, after: String, last: Int, before: String): DynamicFieldConnection
1001
+ """
1002
+ Access a dynamic object field on an object using its type and BCS-encoded name.
1003
+
1004
+ Returns `null` if a dynamic object field with that name could not be found attached to this object.
1005
+ """
1006
+ dynamicObjectField(name: DynamicFieldName!): DynamicField
1007
+ """
1008
+ Whether this object can be transfered using the `TransferObjects` Programmable Transaction Command or `sui::transfer::public_transfer`.
1009
+
1010
+ Both these operations require the object to have both the `key` and `store` abilities.
1011
+ """
1012
+ hasPublicTransfer: Boolean
1013
+ """
1014
+ The dynamic field's globally unique identifier, which can be passed to `Query.node` to refetch it.
1015
+ """
1016
+ id: ID!
1017
+ """
1018
+ The Base64-encoded BCS serialize of this object, as a `MoveObject`.
1019
+ """
1020
+ moveObjectBcs: Base64
1021
+ """
1022
+ Fetch the total balances keyed by coin types (e.g. `0x2::sui::SUI`) owned by this address.
1023
+
1024
+ If the address does not own any coins of a given type, a balance of zero is returned for that type.
1025
+ """
1026
+ multiGetBalances(keys: [String!]!): [Balance!]
1027
+ """
1028
+ Access dynamic fields on an object using their types and BCS-encoded names.
1029
+
1030
+ Returns a list of dynamic fields that is guaranteed to be the same length as `keys`. If a dynamic field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.
1031
+ """
1032
+ multiGetDynamicFields(keys: [DynamicFieldName!]!): [DynamicField]!
1033
+ """
1034
+ Access dynamic object fields on an object using their types and BCS-encoded names.
1035
+
1036
+ Returns a list of dynamic object fields that is guaranteed to be the same length as `keys`. If a dynamic object field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.
1037
+ """
1038
+ multiGetDynamicObjectFields(keys: [DynamicFieldName!]!): [DynamicField]!
1039
+ """
1040
+ The dynamic field's name, as a Move value.
1041
+ """
1042
+ name: MoveValue
1043
+ """
1044
+ Fetch the object with the same ID, at a different version, root version bound, or checkpoint.
1045
+ """
1046
+ objectAt(version: UInt53, rootVersion: UInt53, checkpoint: UInt53): Object
1047
+ """
1048
+ The Base64-encoded BCS serialization of this object, as an `Object`.
1049
+ """
1050
+ objectBcs: Base64
1051
+ """
1052
+ Paginate all versions of this object after this one.
1053
+ """
1054
+ objectVersionsAfter(first: Int, after: String, last: Int, before: String, filter: VersionFilter): ObjectConnection
1055
+ """
1056
+ Paginate all versions of this object before this one.
1057
+ """
1058
+ objectVersionsBefore(first: Int, after: String, last: Int, before: String, filter: VersionFilter): ObjectConnection
1059
+ """
1060
+ Objects owned by this object, optionally filtered by type.
1061
+ """
1062
+ objects(first: Int, after: String, last: Int, before: String, filter: ObjectFilter): MoveObjectConnection
1063
+ """
1064
+ The object's owner kind.
1065
+ """
1066
+ owner: Owner
1067
+ """
1068
+ The transaction that created this version of the object.
1069
+ """
1070
+ previousTransaction: Transaction
1071
+ """
1072
+ The transactions that sent objects to this object.
1073
+ """
1074
+ receivedTransactions(first: Int, after: String, last: Int, before: String, filter: TransactionFilter): TransactionConnection
1075
+ """
1076
+ The SUI returned to the sponsor or sender of the transaction that modifies or deletes this object.
1077
+ """
1078
+ storageRebate: BigInt
1079
+ """
1080
+ The dynamic field's value, as a Move value for dynamic fields and as a MoveObject for dynamic object fields.
1081
+ """
1082
+ value: DynamicFieldValue
1083
+ """
1084
+ The version of this object that this content comes from.
1085
+ """
1086
+ version: UInt53
1087
+ }
1088
+
1089
+ type DynamicFieldConnection {
1090
+ """
1091
+ A list of edges.
1092
+ """
1093
+ edges: [DynamicFieldEdge!]!
1094
+ """
1095
+ A list of nodes.
1096
+ """
1097
+ nodes: [DynamicField!]!
1098
+ """
1099
+ Information to aid in pagination.
1100
+ """
1101
+ pageInfo: PageInfo!
1102
+ }
1103
+
1104
+ """
1105
+ An edge in a connection.
1106
+ """
1107
+ type DynamicFieldEdge {
1108
+ """
1109
+ A cursor for use in pagination
1110
+ """
1111
+ cursor: String!
1112
+ """
1113
+ The item at the end of the edge
1114
+ """
1115
+ node: DynamicField!
1116
+ }
1117
+
1118
+ """
1119
+ A description of a dynamic field's name.
1120
+
1121
+ Names can either be given as serialized `bcs` accompanied by its `type`, or as a Display v2 `literal` expression. Other combinations of inputs are not supported.
1122
+ """
1123
+ input DynamicFieldName {
1124
+ """
1125
+ The Base64-encoded BCS serialization of the dynamic field's 'name'.
1126
+ """
1127
+ bcs: Base64
1128
+ """
1129
+ The name represented as a Display v2 literal expression.
1130
+ """
1131
+ literal: String
1132
+ """
1133
+ The type of the dynamic field's name, like 'u64' or '0x2::kiosk::Listing'.
1134
+ """
1135
+ type: String
1136
+ }
1137
+
1138
+ """
1139
+ The value of a dynamic field (`MoveValue`) or dynamic object field (`MoveObject`).
1140
+ """
1141
+ union DynamicFieldValue = MoveObject | MoveValue
1142
+
1143
+ """
1144
+ System transaction that supersedes `ChangeEpochTransaction` as the new way to run transactions at the end of an epoch. Behaves similarly to `ChangeEpochTransaction` but can accommodate other optional transactions to run at the end of the epoch.
1145
+ """
1146
+ type EndOfEpochTransaction {
1147
+ """
1148
+ The list of system transactions that are allowed to run at the end of the epoch.
1149
+ """
1150
+ transactions(first: Int, after: String, last: Int, before: String): EndOfEpochTransactionKindConnection
1151
+ }
1152
+
1153
+ union EndOfEpochTransactionKind = ChangeEpochTransaction | AuthenticatorStateCreateTransaction | AuthenticatorStateExpireTransaction | RandomnessStateCreateTransaction | CoinDenyListStateCreateTransaction | StoreExecutionTimeObservationsTransaction | BridgeStateCreateTransaction | BridgeCommitteeInitTransaction | AccumulatorRootCreateTransaction | CoinRegistryCreateTransaction | DisplayRegistryCreateTransaction | AddressAliasStateCreateTransaction | WriteAccumulatorStorageCostTransaction
1154
+
1155
+ type EndOfEpochTransactionKindConnection {
1156
+ """
1157
+ A list of edges.
1158
+ """
1159
+ edges: [EndOfEpochTransactionKindEdge!]!
1160
+ """
1161
+ A list of nodes.
1162
+ """
1163
+ nodes: [EndOfEpochTransactionKind!]!
1164
+ """
1165
+ Information to aid in pagination.
1166
+ """
1167
+ pageInfo: PageInfo!
1168
+ }
1169
+
1170
+ """
1171
+ An edge in a connection.
1172
+ """
1173
+ type EndOfEpochTransactionKindEdge {
1174
+ """
1175
+ A cursor for use in pagination
1176
+ """
1177
+ cursor: String!
1178
+ """
1179
+ The item at the end of the edge
1180
+ """
1181
+ node: EndOfEpochTransactionKind!
1182
+ }
1183
+
1184
+ """
1185
+ Activity on Sui is partitioned in time, into epochs.
1186
+
1187
+ Epoch changes are opportunities for the network to reconfigure itself (perform protocol or system package upgrades, or change the committee) and distribute staking rewards. The network aims to keep epochs roughly the same duration as each other.
1188
+
1189
+ During a particular epoch the following data is fixed:
1190
+
1191
+ - protocol version,
1192
+ - reference gas price,
1193
+ - system package versions,
1194
+ - validators in the committee.
1195
+ """
1196
+ type Epoch implements Node {
1197
+ """
1198
+ The epoch's corresponding checkpoints.
1199
+ """
1200
+ checkpoints(first: Int, after: String, last: Int, before: String, filter: CheckpointFilter): CheckpointConnection
1201
+ """
1202
+ State of the Coin DenyList object (0x403) at the start of this epoch.
1203
+
1204
+ The DenyList controls access to Regulated Coins. Writes to the DenyList are accumulated and only take effect on the next epoch boundary. Consequently, it's possible to determine the state of the DenyList for a transaction by reading it at the start of the epoch the transaction is in.
1205
+ """
1206
+ coinDenyList: Object
1207
+ """
1208
+ The timestamp associated with the last checkpoint in the epoch (or `null` if the epoch has not finished yet).
1209
+ """
1210
+ endTimestamp: DateTime
1211
+ """
1212
+ The epoch's id as a sequence number that starts at 0 and is incremented by one at every epoch change.
1213
+ """
1214
+ epochId: UInt53!
1215
+ """
1216
+ The storage fees paid for transactions executed during the epoch (or `null` if the epoch has not finished yet).
1217
+ """
1218
+ fundInflow: BigInt
1219
+ """
1220
+ The storage fee rebates paid to users who deleted the data associated with past transactions (or `null` if the epoch has not finished yet).
1221
+ """
1222
+ fundOutflow: BigInt
1223
+ """
1224
+ The storage fund available in this epoch (or `null` if the epoch has not finished yet).
1225
+ This fund is used to redistribute storage fees from past transactions to future validators.
1226
+ """
1227
+ fundSize: BigInt
1228
+ """
1229
+ The epoch's globally unique identifier, which can be passed to `Query.node` to refetch it.
1230
+ """
1231
+ id: ID!
1232
+ """
1233
+ A commitment by the committee at the end of epoch on the contents of the live object set at that time.
1234
+ This can be used to verify state snapshots.
1235
+ """
1236
+ liveObjectSetDigest: String
1237
+ """
1238
+ The difference between the fund inflow and outflow, representing the net amount of storage fees accumulated in this epoch (or `null` if the epoch has not finished yet).
1239
+ """
1240
+ netInflow: BigInt
1241
+ """
1242
+ The epoch's corresponding protocol configuration, including the feature flags and the configuration options.
1243
+ """
1244
+ protocolConfigs: ProtocolConfigs
1245
+ """
1246
+ The minimum gas price that a quorum of validators are guaranteed to sign a transaction for in this epoch.
1247
+ """
1248
+ referenceGasPrice: BigInt
1249
+ """
1250
+ The timestamp associated with the first checkpoint in the epoch.
1251
+ """
1252
+ startTimestamp: DateTime
1253
+ """
1254
+ The system packages used by all transactions in this epoch.
1255
+ """
1256
+ systemPackages(first: Int, after: String, last: Int, before: String): MovePackageConnection
1257
+ """
1258
+ The contents of the system state inner object at the start of this epoch.
1259
+ """
1260
+ systemState: MoveValue
1261
+ """
1262
+ The total number of checkpoints in this epoch.
1263
+
1264
+ Returns `None` when no checkpoint is set in scope (e.g. execution scope).
1265
+ """
1266
+ totalCheckpoints: UInt53
1267
+ """
1268
+ The total amount of gas fees (in MIST) that were paid in this epoch (or `null` if the epoch has not finished yet).
1269
+ """
1270
+ totalGasFees: BigInt
1271
+ """
1272
+ The total MIST rewarded as stake (or `null` if the epoch has not finished yet).
1273
+ """
1274
+ totalStakeRewards: BigInt
1275
+ """
1276
+ The amount added to total gas fees to make up the total stake rewards (or `null` if the epoch has not finished yet).
1277
+ """
1278
+ totalStakeSubsidies: BigInt
1279
+ """
1280
+ The total number of transaction blocks in this epoch.
1281
+
1282
+ If the epoch has not finished yet, this number is computed based on the number of transactions at the latest known checkpoint.
1283
+ """
1284
+ totalTransactions: UInt53
1285
+ """
1286
+ The transactions in this epoch, optionally filtered by transaction filters.
1287
+
1288
+ Returns `None` when no checkpoint is set in scope (e.g. execution scope).
1289
+ """
1290
+ transactions(first: Int, after: String, last: Int, before: String, filter: TransactionFilter): TransactionConnection
1291
+ """
1292
+ Validator-related properties, including the active validators.
1293
+ """
1294
+ validatorSet: ValidatorSet
1295
+ }
1296
+
1297
+ type EpochConnection {
1298
+ """
1299
+ A list of edges.
1300
+ """
1301
+ edges: [EpochEdge!]!
1302
+ """
1303
+ A list of nodes.
1304
+ """
1305
+ nodes: [Epoch!]!
1306
+ """
1307
+ Information to aid in pagination.
1308
+ """
1309
+ pageInfo: PageInfo!
1310
+ }
1311
+
1312
+ """
1313
+ An edge in a connection.
1314
+ """
1315
+ type EpochEdge {
1316
+ """
1317
+ A cursor for use in pagination
1318
+ """
1319
+ cursor: String!
1320
+ """
1321
+ The item at the end of the edge
1322
+ """
1323
+ node: Epoch!
1324
+ }
1325
+
1326
+ type Event {
1327
+ """
1328
+ The Move value emitted for this event.
1329
+ """
1330
+ contents: MoveValue
1331
+ """
1332
+ The Base64 encoded BCS serialized bytes of the entire Event structure from sui-types.
1333
+ This includes: package_id, transaction_module, sender, type, and contents (which itself contains the BCS-serialized Move struct data).
1334
+ """
1335
+ eventBcs: Base64
1336
+ """
1337
+ Address of the sender of the transaction that emitted this event.
1338
+ """
1339
+ sender: Address
1340
+ """
1341
+ The position of the event among the events from the same transaction.
1342
+ """
1343
+ sequenceNumber: UInt53!
1344
+ """
1345
+ Timestamp corresponding to the checkpoint this event's transaction was finalized in.
1346
+ All events from the same transaction share the same timestamp.
1347
+
1348
+ `null` for simulated/executed transactions as they are not included in a checkpoint.
1349
+ """
1350
+ timestamp: DateTime
1351
+ """
1352
+ The transaction that emitted this event. This information is only available for events from indexed transactions, and not from transactions that have just been executed or dry-run.
1353
+ """
1354
+ transaction: Transaction
1355
+ """
1356
+ The module containing the function that was called in the programmable transaction, that resulted in this event being emitted.
1357
+ """
1358
+ transactionModule: MoveModule
1359
+ }
1360
+
1361
+ type EventConnection {
1362
+ """
1363
+ A list of edges.
1364
+ """
1365
+ edges: [EventEdge!]!
1366
+ """
1367
+ A list of nodes.
1368
+ """
1369
+ nodes: [Event!]!
1370
+ """
1371
+ Information to aid in pagination.
1372
+ """
1373
+ pageInfo: PageInfo!
1374
+ }
1375
+
1376
+ """
1377
+ An edge in a connection.
1378
+ """
1379
+ type EventEdge {
1380
+ """
1381
+ A cursor for use in pagination
1382
+ """
1383
+ cursor: String!
1384
+ """
1385
+ The item at the end of the edge
1386
+ """
1387
+ node: Event!
1388
+ }
1389
+
1390
+ input EventFilter {
1391
+ """
1392
+ Limit to events that occured strictly after the given checkpoint.
1393
+ """
1394
+ afterCheckpoint: UInt53
1395
+ """
1396
+ Limit to events in the given checkpoint.
1397
+ """
1398
+ atCheckpoint: UInt53
1399
+ """
1400
+ Limit to event that occured strictly before the given checkpoint.
1401
+ """
1402
+ beforeCheckpoint: UInt53
1403
+ """
1404
+ Events emitted by a particular module. An event is emitted by a particular module if some function in the module is called by a PTB and emits an event.
1405
+
1406
+ Modules can be filtered by their package, or package::module. We currently do not support filtering by emitting module and event type at the same time so if both are provided in one filter, the query will error.
1407
+ """
1408
+ module: String
1409
+ """
1410
+ Filter on events by transaction sender address.
1411
+ """
1412
+ sender: SuiAddress
1413
+ """
1414
+ This field is used to specify the type of event emitted.
1415
+
1416
+ Events can be filtered by their type's package, package::module, or their fully qualified type name.
1417
+
1418
+ Generic types can be queried by either the generic type name, e.g. `0x2::coin::Coin`, or by the full type name, such as `0x2::coin::Coin<0x2::sui::SUI>`.
1419
+ """
1420
+ type: String
1421
+ }
1422
+
1423
+ """
1424
+ Represents execution error information for failed transactions.
1425
+ """
1426
+ type ExecutionError {
1427
+ """
1428
+ The error code of the Move abort, populated if this transaction failed with a Move abort.
1429
+
1430
+ Returns the explicit code if the abort used `code` annotation (e.g., `abort(ERR, code = 5)` returns 5), otherwise returns the raw abort code containing encoded error information.
1431
+ """
1432
+ abortCode: BigInt
1433
+ """
1434
+ An associated constant for the error. Only populated for clever errors.
1435
+
1436
+ Constants are returned as human-readable strings when possible. Complex types are returned as Base64-encoded bytes.
1437
+ """
1438
+ constant: String
1439
+ """
1440
+ The function that the abort originated from. Only populated for Move aborts and primitive runtime errors that have function name information.
1441
+ """
1442
+ function: MoveFunction
1443
+ """
1444
+ The error's name. Only populated for clever errors.
1445
+ """
1446
+ identifier: String
1447
+ """
1448
+ The instruction offset in the Move bytecode where the error occurred. Populated for Move aborts and primitive runtime errors.
1449
+ """
1450
+ instructionOffset: Int
1451
+ """
1452
+ Human readable explanation of why the transaction failed.
1453
+
1454
+ For Move aborts, the error message will be resolved to a human-readable form if possible, otherwise it will fall back to displaying the abort code and location.
1455
+ """
1456
+ message: String!
1457
+ """
1458
+ The module that the abort originated from. Only populated for Move aborts and primitive runtime errors.
1459
+ """
1460
+ module: MoveModule
1461
+ """
1462
+ The source line number for the abort. Only populated for clever errors.
1463
+ """
1464
+ sourceLineNumber: Int
1465
+ }
1466
+
1467
+ """
1468
+ The execution result of a transaction, including the transaction effects and any potential errors due to signing or quorum-driving.
1469
+ """
1470
+ type ExecutionResult {
1471
+ """
1472
+ The effects of the transaction execution, if successful.
1473
+ """
1474
+ effects: TransactionEffects
1475
+ """
1476
+ Errors that occurred during execution (e.g., network errors, validation failures).
1477
+ These are distinct from execution failures within the transaction itself.
1478
+ """
1479
+ errors: [String!]
1480
+ }
1481
+
1482
+ """
1483
+ The execution status of this transaction: success or failure.
1484
+ """
1485
+ enum ExecutionStatus {
1486
+ """
1487
+ The transaction was successfully executed.
1488
+ """
1489
+ SUCCESS
1490
+ """
1491
+ The transaction could not be executed.
1492
+ """
1493
+ FAILURE
1494
+ }
1495
+
1496
+ """
1497
+ A boolean protocol configuration.
1498
+ """
1499
+ type FeatureFlag {
1500
+ """
1501
+ Feature flag name.
1502
+ """
1503
+ key: String!
1504
+ """
1505
+ Feature flag value.
1506
+ """
1507
+ value: Boolean!
1508
+ }
1509
+
1510
+
1511
+ """
1512
+ Access to the gas inputs, after they have been smashed into one coin. The gas coin can only be used by reference, except for with `TransferObjectsTransaction` that can accept it by value.
1513
+ """
1514
+ type GasCoin {
1515
+ """
1516
+ Placeholder field (gas coin has no additional data)
1517
+ """
1518
+ _: Boolean
1519
+ }
1520
+
1521
+ """
1522
+ Summary of charges from transactions.
1523
+
1524
+ Storage is charged in three parts -- `storage_cost`, `-storage_rebate`, and `non_refundable_storage_fee` -- independently of `computation_cost`.
1525
+
1526
+ The overall cost of a transaction, deducted from its gas coins, is its `computation_cost + storage_cost - storage_rebate`. `non_refundable_storage_fee` is collected from objects being mutated or deleted and accumulated by the system in storage funds, the remaining storage costs of previous object versions are what become the `storage_rebate`. The ratio between `non_refundable_storage_fee` and `storage_rebate` is set by the protocol.
1527
+ """
1528
+ type GasCostSummary {
1529
+ """
1530
+ The sum cost of computation/execution
1531
+ """
1532
+ computationCost: UInt53
1533
+ """
1534
+ Amount that is retained by the system in the storage fund from the cost of the previous versions of objects being mutated or deleted.
1535
+ """
1536
+ nonRefundableStorageFee: UInt53
1537
+ """
1538
+ Cost for storage at the time the transaction is executed, calculated as the size of the objects being mutated in bytes multiplied by a storage cost per byte (part of the protocol).
1539
+ """
1540
+ storageCost: UInt53
1541
+ """
1542
+ Amount the user gets back from the storage cost of the previous versions of objects being mutated or deleted.
1543
+ """
1544
+ storageRebate: UInt53
1545
+ }
1546
+
1547
+ """
1548
+ Effects related to gas (costs incurred and the identity of the smashed gas object returned).
1549
+ """
1550
+ type GasEffects {
1551
+ """
1552
+ The gas object used to pay for this transaction. If multiple gas coins were provided, this represents the combined coin after smashing.
1553
+ """
1554
+ gasObject: Object
1555
+ """
1556
+ Breakdown of the gas costs for this transaction.
1557
+ """
1558
+ gasSummary: GasCostSummary
1559
+ }
1560
+
1561
+ type GasInput {
1562
+ """
1563
+ The maximum SUI that can be expended by executing this transaction
1564
+ """
1565
+ gasBudget: BigInt
1566
+ """
1567
+ Objects used to pay for a transaction's execution and storage
1568
+ """
1569
+ gasPayment(first: Int, after: String, last: Int, before: String): ObjectConnection
1570
+ """
1571
+ An unsigned integer specifying the number of native tokens per gas unit this transaction will pay (in MIST).
1572
+ """
1573
+ gasPrice: BigInt
1574
+ """
1575
+ Address of the owner of the gas object(s) used.
1576
+ """
1577
+ gasSponsor: Address
1578
+ }
1579
+
1580
+ """
1581
+ System transaction that initializes the network and writes the initial set of objects on-chain.
1582
+ """
1583
+ type GenesisTransaction {
1584
+ """
1585
+ Objects to be created during genesis.
1586
+ """
1587
+ objects(first: Int, after: String, last: Int, before: String): ObjectConnection
1588
+ }
1589
+
1590
+ """
1591
+ Interface implemented by GraphQL types representing entities that are identified by an address.
1592
+
1593
+ An address uniquely represents either the public key of an account, or an object's ID, but never both. It is not possible to determine which type an address represents up-front. If an object is wrapped, its contents will not be accessible via its address, but it will still be possible to access other objects it owns.
1594
+ """
1595
+ interface IAddressable {
1596
+ address: SuiAddress!
1597
+ """
1598
+ Fetch the address as it was at a different root version, or checkpoint.
1599
+
1600
+ If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
1601
+ """
1602
+ addressAt(rootVersion: UInt53, checkpoint: UInt53): Address
1603
+ """
1604
+ Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::sui::SUI`), owned by this address.
1605
+
1606
+ If the address does not own any coins of that type, a balance of zero is returned.
1607
+ """
1608
+ balance(coinType: String!): Balance
1609
+ """
1610
+ Total balance across coins owned by this address, grouped by coin type.
1611
+ """
1612
+ balances(first: Int, after: String, last: Int, before: String): BalanceConnection
1613
+ """
1614
+ The domain explicitly configured as the default Name Service name for this address.
1615
+ """
1616
+ defaultNameRecord: NameRecord
1617
+ """
1618
+ Fetch the total balances keyed by coin types (e.g. `0x2::sui::SUI`) owned by this address.
1619
+
1620
+ Returns `null` when no checkpoint is set in scope (e.g. execution scope). If the address does not own any coins of a given type, a balance of zero is returned for that type.
1621
+ """
1622
+ multiGetBalances(keys: [String!]!): [Balance!]
1623
+ """
1624
+ Objects owned by this address, optionally filtered by type.
1625
+ """
1626
+ objects(first: Int, after: String, last: Int, before: String, filter: ObjectFilter): MoveObjectConnection
1627
+ }
1628
+
1629
+
1630
+ """
1631
+ Interface implemented by all GraphQL types that represent a Move datatype definition (either a struct or an enum definition).
1632
+
1633
+ This interface is used to provide a way to access fields that are shared by both structs and enums, e.g., the module that the datatype belongs to, the name of the datatype, type parameters etc.
1634
+ """
1635
+ interface IMoveDatatype {
1636
+ """
1637
+ Abilities on this datatype definition.
1638
+ """
1639
+ abilities: [MoveAbility!]
1640
+ """
1641
+ The datatype's fully-qualified name, including package address, module name, and datatype name.
1642
+ """
1643
+ fullyQualifiedName: String!
1644
+ """
1645
+ The module that this datatype is defined in
1646
+ """
1647
+ module: MoveModule!
1648
+ """
1649
+ The datatype's unqualified name
1650
+ """
1651
+ name: String!
1652
+ """
1653
+ Constraints on the datatype's formal type parameters
1654
+
1655
+ Move bytecode does not name type parameters, so when they are referenced (e.g. in field types), they are identified by their index in this list.
1656
+ """
1657
+ typeParameters: [MoveDatatypeTypeParameter!]
1658
+ }
1659
+
1660
+ """
1661
+ Interface implemented by types that represent a Move object on-chain (A Move value whose type has `key`).
1662
+ """
1663
+ interface IMoveObject {
1664
+ """
1665
+ The structured representation of the object's contents.
1666
+ """
1667
+ contents: MoveValue
1668
+ """
1669
+ Access a dynamic field on an object using its type and BCS-encoded name.
1670
+
1671
+ Returns `null` if a dynamic field with that name could not be found attached to this object.
1672
+ """
1673
+ dynamicField(name: DynamicFieldName!): DynamicField
1674
+ """
1675
+ Dynamic fields and dynamic object fields owned by this object.
1676
+
1677
+ Dynamic fields on wrapped objects can be accessed using `Address.dynamicFields`.
1678
+ """
1679
+ dynamicFields(first: Int, after: String, last: Int, before: String): DynamicFieldConnection
1680
+ """
1681
+ Access a dynamic object field on an object using its type and BCS-encoded name.
1682
+
1683
+ Returns `null` if a dynamic object field with that name could not be found attached to this object.
1684
+ """
1685
+ dynamicObjectField(name: DynamicFieldName!): DynamicField
1686
+ """
1687
+ Whether this object can be transfered using the `TransferObjects` Programmable Transaction Command or `sui::transfer::public_transfer`.
1688
+
1689
+ Both these operations require the object to have both the `key` and `store` abilities.
1690
+ """
1691
+ hasPublicTransfer: Boolean
1692
+ """
1693
+ The Base64-encoded BCS serialize of this object, as a `MoveObject`.
1694
+ """
1695
+ moveObjectBcs: Base64
1696
+ """
1697
+ Access dynamic fields on an object using their types and BCS-encoded names.
1698
+
1699
+ Returns a list of dynamic fields that is guaranteed to be the same length as `keys`. If a dynamic field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.
1700
+ """
1701
+ multiGetDynamicFields(keys: [DynamicFieldName!]!): [DynamicField]!
1702
+ """
1703
+ Access dynamic object fields on an object using their types and BCS-encoded names.
1704
+
1705
+ Returns a list of dynamic object fields that is guaranteed to be the same length as `keys`. If a dynamic object field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.
1706
+ """
1707
+ multiGetDynamicObjectFields(keys: [DynamicFieldName!]!): [DynamicField]!
1708
+ }
1709
+
1710
+ """
1711
+ Interface implemented by versioned on-chain values that are addressable by an ID (also referred to as its address). This includes Move objects and packages.
1712
+ """
1713
+ interface IObject {
1714
+ """
1715
+ 32-byte hash that identifies the object's contents, encoded in Base58.
1716
+ """
1717
+ digest: String
1718
+ """
1719
+ Fetch the object with the same ID, at a different version, root version bound, or checkpoint.
1720
+ """
1721
+ objectAt(version: UInt53, rootVersion: UInt53, checkpoint: UInt53): Object
1722
+ """
1723
+ The Base64-encoded BCS serialization of this object, as an `Object`.
1724
+ """
1725
+ objectBcs: Base64
1726
+ """
1727
+ Paginate all versions of this object after this one.
1728
+ """
1729
+ objectVersionsAfter(first: Int, after: String, last: Int, before: String, filter: VersionFilter): ObjectConnection
1730
+ """
1731
+ Paginate all versions of this object before this one.
1732
+ """
1733
+ objectVersionsBefore(first: Int, after: String, last: Int, before: String, filter: VersionFilter): ObjectConnection
1734
+ """
1735
+ The object's owner kind.
1736
+ """
1737
+ owner: Owner
1738
+ """
1739
+ The transaction that created this version of the object
1740
+ """
1741
+ previousTransaction: Transaction
1742
+ """
1743
+ The transactions that sent objects to this object.
1744
+ """
1745
+ receivedTransactions(first: Int, after: String, last: Int, before: String, filter: TransactionFilter): TransactionConnection
1746
+ """
1747
+ The SUI returned to the sponsor or sender of the transaction that modifies or deletes this object.
1748
+ """
1749
+ storageRebate: BigInt
1750
+ """
1751
+ The version of this object that this content comes from.
1752
+ """
1753
+ version: UInt53
1754
+ }
1755
+
1756
+ """
1757
+ Object is accessible to all addresses, and is immutable.
1758
+ """
1759
+ type Immutable {
1760
+ _: Boolean
1761
+ }
1762
+
1763
+ type Input {
1764
+ """
1765
+ The index of the input.
1766
+ """
1767
+ ix: Int
1768
+ }
1769
+
1770
+
1771
+ """
1772
+ Arbitrary JSON data.
1773
+ """
1774
+ scalar JSON
1775
+
1776
+ """
1777
+ Information used by a package to link to a specific version of its dependency.
1778
+ """
1779
+ type Linkage {
1780
+ """
1781
+ The ID on-chain of the first version of the dependency.
1782
+ """
1783
+ originalId: SuiAddress
1784
+ """
1785
+ The ID on-chain of the version of the dependency that this package depends on.
1786
+ """
1787
+ upgradedId: SuiAddress
1788
+ """
1789
+ The version of the dependency that this package depends on.
1790
+ """
1791
+ version: UInt53
1792
+ }
1793
+
1794
+ """
1795
+ Create a vector (can be empty).
1796
+ """
1797
+ type MakeMoveVecCommand {
1798
+ """
1799
+ The values to pack into the vector, all of the same type.
1800
+ """
1801
+ elements: [TransactionArgument!]
1802
+ """
1803
+ If the elements are not objects, or the vector is empty, a type must be supplied.
1804
+ """
1805
+ type: MoveType
1806
+ }
1807
+
1808
+ """
1809
+ Merges `coins` into the first `coin` (produces no results).
1810
+ """
1811
+ type MergeCoinsCommand {
1812
+ """
1813
+ The coin to merge into.
1814
+ """
1815
+ coin: TransactionArgument
1816
+ """
1817
+ The coins to be merged.
1818
+ """
1819
+ coins: [TransactionArgument!]!
1820
+ }
1821
+
1822
+ """
1823
+ Abilities are keywords in Sui Move that define how types behave at the compiler level.
1824
+ """
1825
+ enum MoveAbility {
1826
+ """
1827
+ Enables values to be copied.
1828
+ """
1829
+ COPY
1830
+ """
1831
+ Enables values to be popped/dropped.
1832
+ """
1833
+ DROP
1834
+ """
1835
+ Enables values to be held directly in global storage.
1836
+ """
1837
+ KEY
1838
+ """
1839
+ Enables values to be held inside a struct in global storage.
1840
+ """
1841
+ STORE
1842
+ }
1843
+
1844
+ type MoveCallCommand {
1845
+ """
1846
+ The actual function parameters passed in for this move call.
1847
+ """
1848
+ arguments: [TransactionArgument!]!
1849
+ """
1850
+ The function being called.
1851
+ """
1852
+ function: MoveFunction!
1853
+ }
1854
+
1855
+ """
1856
+ Description of a datatype, defined in a Move module.
1857
+ """
1858
+ type MoveDatatype implements IMoveDatatype {
1859
+ """
1860
+ Abilities on this datatype definition.
1861
+ """
1862
+ abilities: [MoveAbility!]
1863
+ """
1864
+ Attempts to convert the `MoveDatatype` to a `MoveEnum`.
1865
+ """
1866
+ asMoveEnum: MoveEnum
1867
+ """
1868
+ Attempts to convert the `MoveDatatype` to a `MoveStruct`.
1869
+ """
1870
+ asMoveStruct: MoveStruct
1871
+ """
1872
+ The datatype's fully-qualified name, including package address, module name, and datatype name.
1873
+ """
1874
+ fullyQualifiedName: String!
1875
+ """
1876
+ The module that this datatype is defined in.
1877
+ """
1878
+ module: MoveModule!
1879
+ """
1880
+ The datatype's unqualified name.
1881
+ """
1882
+ name: String!
1883
+ """
1884
+ Constraints on the datatype's formal type parameters.
1885
+
1886
+ Move bytecode does not name type parameters, so when they are referenced (e.g. in field types), they are identified by their index in this list.
1887
+ """
1888
+ typeParameters: [MoveDatatypeTypeParameter!]
1889
+ }
1890
+
1891
+ type MoveDatatypeConnection {
1892
+ """
1893
+ A list of edges.
1894
+ """
1895
+ edges: [MoveDatatypeEdge!]!
1896
+ """
1897
+ A list of nodes.
1898
+ """
1899
+ nodes: [MoveDatatype!]!
1900
+ """
1901
+ Information to aid in pagination.
1902
+ """
1903
+ pageInfo: PageInfo!
1904
+ }
1905
+
1906
+ """
1907
+ An edge in a connection.
1908
+ """
1909
+ type MoveDatatypeEdge {
1910
+ """
1911
+ A cursor for use in pagination
1912
+ """
1913
+ cursor: String!
1914
+ """
1915
+ The item at the end of the edge
1916
+ """
1917
+ node: MoveDatatype!
1918
+ }
1919
+
1920
+ """
1921
+ Declaration of a type parameter on a Move struct.
1922
+ """
1923
+ type MoveDatatypeTypeParameter {
1924
+ """
1925
+ Ability constraints on this type parameter.
1926
+ """
1927
+ constraints: [MoveAbility!]!
1928
+ """
1929
+ Whether this type parameter is marked `phantom` or not.
1930
+
1931
+ Phantom type parameters are not referenced in the struct's fields.
1932
+ """
1933
+ isPhantom: Boolean!
1934
+ }
1935
+
1936
+ """
1937
+ Description of an enum type, defined in a Move module.
1938
+ """
1939
+ type MoveEnum implements IMoveDatatype {
1940
+ """
1941
+ Abilities on this enum definition.
1942
+ """
1943
+ abilities: [MoveAbility!]
1944
+ """
1945
+ The enum's fully-qualified name, including package address, module name, and datatype name.
1946
+ """
1947
+ fullyQualifiedName: String!
1948
+ """
1949
+ The module that this enum is defined in.
1950
+ """
1951
+ module: MoveModule!
1952
+ """
1953
+ The enum's unqualified name.
1954
+ """
1955
+ name: String!
1956
+ """
1957
+ Constraints on the enum's formal type parameters.
1958
+
1959
+ Move bytecode does not name type parameters, so when they are referenced (e.g. in field types), they are identified by their index in this list.
1960
+ """
1961
+ typeParameters: [MoveDatatypeTypeParameter!]
1962
+ """
1963
+ The names and fields of the enum's variants
1964
+
1965
+ Field types reference type parameters by their index in the defining enum's `typeParameters` list.
1966
+ """
1967
+ variants: [MoveEnumVariant!]
1968
+ }
1969
+
1970
+ type MoveEnumConnection {
1971
+ """
1972
+ A list of edges.
1973
+ """
1974
+ edges: [MoveEnumEdge!]!
1975
+ """
1976
+ A list of nodes.
1977
+ """
1978
+ nodes: [MoveEnum!]!
1979
+ """
1980
+ Information to aid in pagination.
1981
+ """
1982
+ pageInfo: PageInfo!
1983
+ }
1984
+
1985
+ """
1986
+ An edge in a connection.
1987
+ """
1988
+ type MoveEnumEdge {
1989
+ """
1990
+ A cursor for use in pagination
1991
+ """
1992
+ cursor: String!
1993
+ """
1994
+ The item at the end of the edge
1995
+ """
1996
+ node: MoveEnum!
1997
+ }
1998
+
1999
+ type MoveEnumVariant {
2000
+ """
2001
+ The names and types of the variant's fields.
2002
+
2003
+ Field types reference type parameters by their index in the defining struct's `typeParameters` list.
2004
+ """
2005
+ fields: [MoveField!]
2006
+ """
2007
+ The variant's name.
2008
+ """
2009
+ name: String
2010
+ }
2011
+
2012
+ type MoveField {
2013
+ """
2014
+ The field's name.
2015
+ """
2016
+ name: String
2017
+ """
2018
+ The field's type.
2019
+
2020
+ This type can reference type parameters introduced by the defining struct (see `typeParameters`).
2021
+ """
2022
+ type: OpenMoveType
2023
+ }
2024
+
2025
+ """
2026
+ A function defined in a Move module.
2027
+ """
2028
+ type MoveFunction {
2029
+ """
2030
+ The function's fully-qualified name, including package address, module name, and function name.
2031
+ """
2032
+ fullyQualifiedName: String!
2033
+ """
2034
+ Whether the function is marked `entry` or not.
2035
+ """
2036
+ isEntry: Boolean
2037
+ """
2038
+ The module that this function is defined in.
2039
+ """
2040
+ module: MoveModule!
2041
+ """
2042
+ The function's unqualified name.
2043
+ """
2044
+ name: String!
2045
+ """
2046
+ The function's parameter types. These types can reference type parameters introduced by this function (see `typeParameters`).
2047
+ """
2048
+ parameters: [OpenMoveType!]
2049
+ """
2050
+ The function's return types. There can be multiple because functions in Move can return multiple values. These types can reference type parameters introduced by this function (see `typeParameters`).
2051
+ """
2052
+ return: [OpenMoveType!]
2053
+ """
2054
+ Constraints on the function's formal type parameters.
2055
+
2056
+ Move bytecode does not name type parameters, so when they are referenced (e.g. in parameter and return types), they are identified by their index in this list.
2057
+ """
2058
+ typeParameters: [MoveFunctionTypeParameter!]
2059
+ """
2060
+ The function's visibility: `public`, `public(friend)`, or `private`.
2061
+ """
2062
+ visibility: MoveVisibility
2063
+ }
2064
+
2065
+ type MoveFunctionConnection {
2066
+ """
2067
+ A list of edges.
2068
+ """
2069
+ edges: [MoveFunctionEdge!]!
2070
+ """
2071
+ A list of nodes.
2072
+ """
2073
+ nodes: [MoveFunction!]!
2074
+ """
2075
+ Information to aid in pagination.
2076
+ """
2077
+ pageInfo: PageInfo!
2078
+ }
2079
+
2080
+ """
2081
+ An edge in a connection.
2082
+ """
2083
+ type MoveFunctionEdge {
2084
+ """
2085
+ A cursor for use in pagination
2086
+ """
2087
+ cursor: String!
2088
+ """
2089
+ The item at the end of the edge
2090
+ """
2091
+ node: MoveFunction!
2092
+ }
2093
+
2094
+ """
2095
+ Declaration of a type parameter on a Move function.
2096
+ """
2097
+ type MoveFunctionTypeParameter {
2098
+ """
2099
+ Ability constraints on this type parameter.
2100
+ """
2101
+ constraints: [MoveAbility!]!
2102
+ }
2103
+
2104
+ """
2105
+ Modules are a unit of code organization in Move.
2106
+
2107
+ Modules belong to packages, and contain type and function definitions.
2108
+ """
2109
+ type MoveModule {
2110
+ """
2111
+ Base64 encoded bytes of the serialized CompiledModule.
2112
+ """
2113
+ bytes: Base64
2114
+ """
2115
+ The datatype (struct or enum) named `name` in this module.
2116
+ """
2117
+ datatype(name: String!): MoveDatatype
2118
+ """
2119
+ Paginate through this module's datatype definitions.
2120
+ """
2121
+ datatypes(first: Int, after: String, last: Int, before: String): MoveDatatypeConnection
2122
+ """
2123
+ Textual representation of the module's bytecode.
2124
+ """
2125
+ disassembly: String
2126
+ """
2127
+ The enum named `name` in this module.
2128
+ """
2129
+ enum(name: String!): MoveEnum
2130
+ """
2131
+ Paginate through this module's enum definitions.
2132
+ """
2133
+ enums(first: Int, after: String, last: Int, before: String): MoveEnumConnection
2134
+ """
2135
+ Bytecode format version.
2136
+ """
2137
+ fileFormatVersion: Int
2138
+ """
2139
+ Modules that this module considers friends. These modules can call `public(package)` functions in this module.
2140
+ """
2141
+ friends(first: Int, after: String, last: Int, before: String): MoveModuleConnection
2142
+ """
2143
+ The module's fully-qualified name, including its package address.
2144
+ """
2145
+ fullyQualifiedName: String!
2146
+ """
2147
+ The function named `name` in this module.
2148
+ """
2149
+ function(name: String!): MoveFunction
2150
+ """
2151
+ Paginate through this module's function definitions.
2152
+ """
2153
+ functions(first: Int, after: String, last: Int, before: String): MoveFunctionConnection
2154
+ """
2155
+ The module's unqualified name.
2156
+ """
2157
+ name: String!
2158
+ """
2159
+ The package that this module was defined in.
2160
+ """
2161
+ package: MovePackage
2162
+ """
2163
+ The struct named `name` in this module.
2164
+ """
2165
+ struct(name: String!): MoveStruct
2166
+ """
2167
+ Paginate through this module's struct definitions.
2168
+ """
2169
+ structs(first: Int, after: String, last: Int, before: String): MoveStructConnection
2170
+ }
2171
+
2172
+ type MoveModuleConnection {
2173
+ """
2174
+ A list of edges.
2175
+ """
2176
+ edges: [MoveModuleEdge!]!
2177
+ """
2178
+ A list of nodes.
2179
+ """
2180
+ nodes: [MoveModule!]!
2181
+ """
2182
+ Information to aid in pagination.
2183
+ """
2184
+ pageInfo: PageInfo!
2185
+ }
2186
+
2187
+ """
2188
+ An edge in a connection.
2189
+ """
2190
+ type MoveModuleEdge {
2191
+ """
2192
+ A cursor for use in pagination
2193
+ """
2194
+ cursor: String!
2195
+ """
2196
+ The item at the end of the edge
2197
+ """
2198
+ node: MoveModule!
2199
+ }
2200
+
2201
+ """
2202
+ A MoveObject is a kind of Object that reprsents data stored on-chain.
2203
+ """
2204
+ type MoveObject implements Node & IAddressable & IMoveObject & IObject {
2205
+ """
2206
+ The MoveObject's ID.
2207
+ """
2208
+ address: SuiAddress!
2209
+ """
2210
+ Fetch the address as it was at a different root version, or checkpoint.
2211
+
2212
+ If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
2213
+ """
2214
+ addressAt(rootVersion: UInt53, checkpoint: UInt53): Address
2215
+ """
2216
+ Attempts to convert the object into a CoinMetadata.
2217
+ """
2218
+ asCoinMetadata: CoinMetadata
2219
+ """
2220
+ Attempts to convert the object into a DynamicField.
2221
+ """
2222
+ asDynamicField: DynamicField
2223
+ """
2224
+ Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::sui::SUI`), owned by this address.
2225
+
2226
+ If the address does not own any coins of that type, a balance of zero is returned.
2227
+ """
2228
+ balance(coinType: String!): Balance
2229
+ """
2230
+ Total balance across coins owned by this address, grouped by coin type.
2231
+ """
2232
+ balances(first: Int, after: String, last: Int, before: String): BalanceConnection
2233
+ """
2234
+ The structured representation of the object's contents.
2235
+ """
2236
+ contents: MoveValue
2237
+ """
2238
+ The domain explicitly configured as the default Name Service name for this address.
2239
+ """
2240
+ defaultNameRecord: NameRecord
2241
+ """
2242
+ 32-byte hash that identifies the object's contents, encoded in Base58.
2243
+ """
2244
+ digest: String
2245
+ """
2246
+ Access a dynamic field on an object using its type and BCS-encoded name.
2247
+
2248
+ Returns `null` if a dynamic field with that name could not be found attached to this object.
2249
+ """
2250
+ dynamicField(name: DynamicFieldName!): DynamicField
2251
+ """
2252
+ Dynamic fields owned by this object.
2253
+
2254
+ Dynamic fields on wrapped objects can be accessed using `Address.dynamicFields`.
2255
+ """
2256
+ dynamicFields(first: Int, after: String, last: Int, before: String): DynamicFieldConnection
2257
+ """
2258
+ Access a dynamic object field on an object using its type and BCS-encoded name.
2259
+
2260
+ Returns `null` if a dynamic object field with that name could not be found attached to this object.
2261
+ """
2262
+ dynamicObjectField(name: DynamicFieldName!): DynamicField
2263
+ """
2264
+ Whether this object can be transfered using the `TransferObjects` Programmable Transaction Command or `sui::transfer::public_transfer`.
2265
+
2266
+ Both these operations require the object to have both the `key` and `store` abilities.
2267
+ """
2268
+ hasPublicTransfer: Boolean
2269
+ """
2270
+ The Move object's globally unique identifier, which can be passed to `Query.node` to refetch it.
2271
+ """
2272
+ id: ID!
2273
+ """
2274
+ The Base64-encoded BCS serialize of this object, as a `MoveObject`.
2275
+ """
2276
+ moveObjectBcs: Base64
2277
+ """
2278
+ Fetch the total balances keyed by coin types (e.g. `0x2::sui::SUI`) owned by this address.
2279
+
2280
+ If the address does not own any coins of a given type, a balance of zero is returned for that type.
2281
+ """
2282
+ multiGetBalances(keys: [String!]!): [Balance!]
2283
+ """
2284
+ Access dynamic fields on an object using their types and BCS-encoded names.
2285
+
2286
+ Returns a list of dynamic fields that is guaranteed to be the same length as `keys`. If a dynamic field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.
2287
+ """
2288
+ multiGetDynamicFields(keys: [DynamicFieldName!]!): [DynamicField]!
2289
+ """
2290
+ Access dynamic object fields on an object using their types and BCS-encoded names.
2291
+
2292
+ Returns a list of dynamic object fields that is guaranteed to be the same length as `keys`. If a dynamic object field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.
2293
+ """
2294
+ multiGetDynamicObjectFields(keys: [DynamicFieldName!]!): [DynamicField]!
2295
+ """
2296
+ Fetch the object with the same ID, at a different version, root version bound, or checkpoint.
2297
+
2298
+ If no additional bound is provided, the latest version of this object is fetched at the latest checkpoint.
2299
+ """
2300
+ objectAt(version: UInt53, rootVersion: UInt53, checkpoint: UInt53): Object
2301
+ """
2302
+ The Base64-encoded BCS serialization of this object, as an `Object`.
2303
+ """
2304
+ objectBcs: Base64
2305
+ """
2306
+ Paginate all versions of this object after this one.
2307
+ """
2308
+ objectVersionsAfter(first: Int, after: String, last: Int, before: String, filter: VersionFilter): ObjectConnection
2309
+ """
2310
+ Paginate all versions of this object before this one.
2311
+ """
2312
+ objectVersionsBefore(first: Int, after: String, last: Int, before: String, filter: VersionFilter): ObjectConnection
2313
+ """
2314
+ Objects owned by this object, optionally filtered by type.
2315
+ """
2316
+ objects(first: Int, after: String, last: Int, before: String, filter: ObjectFilter): MoveObjectConnection
2317
+ """
2318
+ The object's owner kind.
2319
+ """
2320
+ owner: Owner
2321
+ """
2322
+ The transaction that created this version of the object.
2323
+ """
2324
+ previousTransaction: Transaction
2325
+ """
2326
+ The transactions that sent objects to this object.
2327
+ """
2328
+ receivedTransactions(first: Int, after: String, last: Int, before: String, filter: TransactionFilter): TransactionConnection
2329
+ """
2330
+ The SUI returned to the sponsor or sender of the transaction that modifies or deletes this object.
2331
+ """
2332
+ storageRebate: BigInt
2333
+ """
2334
+ The version of this object that this content comes from.
2335
+ """
2336
+ version: UInt53
2337
+ }
2338
+
2339
+ type MoveObjectConnection {
2340
+ """
2341
+ A list of edges.
2342
+ """
2343
+ edges: [MoveObjectEdge!]!
2344
+ """
2345
+ A list of nodes.
2346
+ """
2347
+ nodes: [MoveObject!]!
2348
+ """
2349
+ Information to aid in pagination.
2350
+ """
2351
+ pageInfo: PageInfo!
2352
+ }
2353
+
2354
+ """
2355
+ An edge in a connection.
2356
+ """
2357
+ type MoveObjectEdge {
2358
+ """
2359
+ A cursor for use in pagination
2360
+ """
2361
+ cursor: String!
2362
+ """
2363
+ The item at the end of the edge
2364
+ """
2365
+ node: MoveObject!
2366
+ }
2367
+
2368
+ """
2369
+ A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies.
2370
+ """
2371
+ type MovePackage implements Node & IAddressable & IObject {
2372
+ """
2373
+ The MovePackage's ID.
2374
+ """
2375
+ address: SuiAddress!
2376
+ """
2377
+ Fetch the address as it was at a different root version, or checkpoint.
2378
+
2379
+ If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
2380
+ """
2381
+ addressAt(rootVersion: UInt53, checkpoint: UInt53): Address
2382
+ """
2383
+ Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::sui::SUI`), owned by this address.
2384
+
2385
+ If the address does not own any coins of that type, a balance of zero is returned.
2386
+ """
2387
+ balance(coinType: String!): Balance
2388
+ """
2389
+ Total balance across coins owned by this address, grouped by coin type.
2390
+ """
2391
+ balances(first: Int, after: String, last: Int, before: String): BalanceConnection
2392
+ """
2393
+ The domain explicitly configured as the default Name Service name for this address.
2394
+ """
2395
+ defaultNameRecord: NameRecord
2396
+ """
2397
+ 32-byte hash that identifies the package's contents, encoded in Base58.
2398
+ """
2399
+ digest: String
2400
+ """
2401
+ The package's globally unique identifier, which can be passed to `Query.node` to refetch it.
2402
+ """
2403
+ id: ID!
2404
+ """
2405
+ The transitive dependencies of this package.
2406
+ """
2407
+ linkage: [Linkage!]
2408
+ """
2409
+ The module named `name` in this package.
2410
+ """
2411
+ module(name: String!): MoveModule
2412
+ """
2413
+ BCS representation of the package's modules. Modules appear as a sequence of pairs (module name, followed by module bytes), in alphabetic order by module name.
2414
+ """
2415
+ moduleBcs: Base64
2416
+ """
2417
+ Paginate through this package's modules.
2418
+ """
2419
+ modules(first: Int, after: String, last: Int, before: String): MoveModuleConnection
2420
+ """
2421
+ Fetch the total balances keyed by coin types (e.g. `0x2::sui::SUI`) owned by this address.
2422
+
2423
+ If the address does not own any coins of a given type, a balance of zero is returned for that type.
2424
+ """
2425
+ multiGetBalances(keys: [String!]!): [Balance!]
2426
+ """
2427
+ Fetch the package as an object with the same ID, at a different version, root version bound, or checkpoint.
2428
+
2429
+ If no additional bound is provided, the latest version of this object is fetched at the latest checkpoint.
2430
+ """
2431
+ objectAt(version: UInt53, rootVersion: UInt53, checkpoint: UInt53): Object
2432
+ """
2433
+ The Base64-encoded BCS serialization of this package, as an `Object`.
2434
+ """
2435
+ objectBcs: Base64
2436
+ """
2437
+ Paginate all versions of this package treated as an object, after this one.
2438
+ """
2439
+ objectVersionsAfter(first: Int, after: String, last: Int, before: String, filter: VersionFilter): ObjectConnection
2440
+ """
2441
+ Paginate all versions of this package treated as an object, before this one.
2442
+ """
2443
+ objectVersionsBefore(first: Int, after: String, last: Int, before: String, filter: VersionFilter): ObjectConnection
2444
+ """
2445
+ Objects owned by this package, optionally filtered by type.
2446
+ """
2447
+ objects(first: Int, after: String, last: Int, before: String, filter: ObjectFilter): MoveObjectConnection
2448
+ """
2449
+ The object's owner kind.
2450
+ """
2451
+ owner: Owner
2452
+ """
2453
+ Fetch the package with the same original ID, at a different version, or checkpoint.
2454
+
2455
+ If no additional bound is provided, the package is fetched at the latest checkpoint known to the RPC.
2456
+ """
2457
+ packageAt(version: UInt53, checkpoint: UInt53): MovePackage
2458
+ """
2459
+ The Base64-encoded BCS serialization of this package, as a `MovePackage`.
2460
+ """
2461
+ packageBcs: Base64
2462
+ """
2463
+ Paginate all versions of this package after this one.
2464
+ """
2465
+ packageVersionsAfter(first: Int, after: String, last: Int, before: String, filter: VersionFilter): MovePackageConnection
2466
+ """
2467
+ Paginate all versions of this package before this one.
2468
+ """
2469
+ packageVersionsBefore(first: Int, after: String, last: Int, before: String, filter: VersionFilter): MovePackageConnection
2470
+ """
2471
+ The transaction that created this version of the object.
2472
+ """
2473
+ previousTransaction: Transaction
2474
+ """
2475
+ The transactions that sent objects to this object.
2476
+ """
2477
+ receivedTransactions(first: Int, after: String, last: Int, before: String, filter: TransactionFilter): TransactionConnection
2478
+ """
2479
+ The SUI returned to the sponsor or sender of the transaction that modifies or deletes this object.
2480
+ """
2481
+ storageRebate: BigInt
2482
+ """
2483
+ A table identifying which versions of a package introduced each of its types.
2484
+ """
2485
+ typeOrigins: [TypeOrigin!]
2486
+ """
2487
+ The version of this package that this content comes from.
2488
+ """
2489
+ version: UInt53
2490
+ }
2491
+
2492
+ type MovePackageConnection {
2493
+ """
2494
+ A list of edges.
2495
+ """
2496
+ edges: [MovePackageEdge!]!
2497
+ """
2498
+ A list of nodes.
2499
+ """
2500
+ nodes: [MovePackage!]!
2501
+ """
2502
+ Information to aid in pagination.
2503
+ """
2504
+ pageInfo: PageInfo!
2505
+ }
2506
+
2507
+ """
2508
+ An edge in a connection.
2509
+ """
2510
+ type MovePackageEdge {
2511
+ """
2512
+ A cursor for use in pagination
2513
+ """
2514
+ cursor: String!
2515
+ """
2516
+ The item at the end of the edge
2517
+ """
2518
+ node: MovePackage!
2519
+ }
2520
+
2521
+ """
2522
+ Description of a struct type, defined in a Move module.
2523
+ """
2524
+ type MoveStruct implements IMoveDatatype {
2525
+ """
2526
+ Abilities on this struct definition.
2527
+ """
2528
+ abilities: [MoveAbility!]
2529
+ """
2530
+ The names and types of the struct's fields.
2531
+
2532
+ Field types reference type parameters by their index in the defining struct's `typeParameters` list.
2533
+ """
2534
+ fields: [MoveField!]
2535
+ """
2536
+ The struct's fully-qualified name, including package address, module name, and datatype name.
2537
+ """
2538
+ fullyQualifiedName: String!
2539
+ """
2540
+ The module that this struct is defined in.
2541
+ """
2542
+ module: MoveModule!
2543
+ """
2544
+ The struct's unqualified name.
2545
+ """
2546
+ name: String!
2547
+ """
2548
+ Constraints on the struct's formal type parameters.
2549
+
2550
+ Move bytecode does not name type parameters, so when they are referenced (e.g. in field types), they are identified by their index in this list.
2551
+ """
2552
+ typeParameters: [MoveDatatypeTypeParameter!]
2553
+ }
2554
+
2555
+ type MoveStructConnection {
2556
+ """
2557
+ A list of edges.
2558
+ """
2559
+ edges: [MoveStructEdge!]!
2560
+ """
2561
+ A list of nodes.
2562
+ """
2563
+ nodes: [MoveStruct!]!
2564
+ """
2565
+ Information to aid in pagination.
2566
+ """
2567
+ pageInfo: PageInfo!
2568
+ }
2569
+
2570
+ """
2571
+ An edge in a connection.
2572
+ """
2573
+ type MoveStructEdge {
2574
+ """
2575
+ A cursor for use in pagination
2576
+ """
2577
+ cursor: String!
2578
+ """
2579
+ The item at the end of the edge
2580
+ """
2581
+ node: MoveStruct!
2582
+ }
2583
+
2584
+ """
2585
+ Represents instances of concrete types (no type parameters, no references).
2586
+ """
2587
+ type MoveType {
2588
+ """
2589
+ The abilities this concrete type has. Returns no abilities if the type is invalid.
2590
+ """
2591
+ abilities: [MoveAbility!]
2592
+ """
2593
+ Structured representation of the "shape" of values that match this type. May return no
2594
+ layout if the type is invalid.
2595
+ """
2596
+ layout: MoveTypeLayout
2597
+ """
2598
+ Flat representation of the type signature, as a displayable string.
2599
+ """
2600
+ repr: String!
2601
+ """
2602
+ Structured representation of the type signature.
2603
+ """
2604
+ signature: MoveTypeSignature!
2605
+ }
2606
+
2607
+ """
2608
+ The shape of a concrete Move Type (a type with all its type parameters instantiated with concrete types), corresponding to the following recursive type:
2609
+
2610
+ type MoveTypeLayout =
2611
+ "address"
2612
+ | "bool"
2613
+ | "u8" | "u16" | ... | "u256"
2614
+ | { vector: MoveTypeLayout }
2615
+ | {
2616
+ struct: {
2617
+ type: string,
2618
+ fields: [{ name: string, layout: MoveTypeLayout }],
2619
+ }
2620
+ }
2621
+ | { enum: [{
2622
+ type: string,
2623
+ variants: [{
2624
+ name: string,
2625
+ fields: [{ name: string, layout: MoveTypeLayout }],
2626
+ }]
2627
+ }]
2628
+ }
2629
+ """
2630
+ scalar MoveTypeLayout
2631
+
2632
+ """
2633
+ The signature of a concrete Move Type (a type with all its type parameters instantiated with concrete types, that contains no references), corresponding to the following recursive type:
2634
+
2635
+ type MoveTypeSignature =
2636
+ "address"
2637
+ | "bool"
2638
+ | "u8" | "u16" | ... | "u256"
2639
+ | { vector: MoveTypeSignature }
2640
+ | {
2641
+ datatype: {
2642
+ package: string,
2643
+ module: string,
2644
+ type: string,
2645
+ typeParameters: [MoveTypeSignature],
2646
+ }
2647
+ }
2648
+ """
2649
+ scalar MoveTypeSignature
2650
+
2651
+ type MoveValue {
2652
+ """
2653
+ Attempts to treat this value as an `Address`.
2654
+
2655
+ If the value is of type `address` or `0x2::object::ID`, it is interpreted as an address pointer, and it is scoped to the current checkpoint.
2656
+
2657
+ If the value is of type `0x2::object::UID`, it is interpreted as a wrapped object whose version is bounded by the root version of the current value. Such values do not support nested owned object queries, but `Address.addressAt` can be used to re-scope it to a checkpoint (defaults to the current checkpoint), instead of a root version, allowing owned object queries.
2658
+
2659
+ Values of other types cannot be interpreted as addresses, and `null` is returned.
2660
+ """
2661
+ asAddress: Address
2662
+ """
2663
+ The BCS representation of this value, Base64-encoded.
2664
+ """
2665
+ bcs: Base64
2666
+ """
2667
+ A rendered JSON blob based on an on-chain template, substituted with data from this value.
2668
+
2669
+ Returns `null` if the value's type does not have an associated `Display` template.
2670
+ """
2671
+ display: Display
2672
+ """
2673
+ Extract a nested value at the given path.
2674
+
2675
+ `path` is a Display v2 'chain' expression, allowing access to nested, named and positional fields, vector indices, VecMap keys, and dynamic (object) field accesses.
2676
+ """
2677
+ extract(path: String!): MoveValue
2678
+ """
2679
+ Render a single Display v2 format string against this value.
2680
+
2681
+ Returns `null` if the value does not have a valid type, or if any of the expressions in the format string fail to evaluate (e.g. field does not exist).
2682
+ """
2683
+ format(format: String!): JSON
2684
+ """
2685
+ Representation of a Move value in JSON, where:
2686
+
2687
+ - Addresses, IDs, and UIDs are represented in canonical form, as JSON strings.
2688
+ - Bools are represented by JSON boolean literals.
2689
+ - u8, u16, and u32 are represented as JSON numbers.
2690
+ - u64, u128, and u256 are represented as JSON strings.
2691
+ - Balances, Strings, and Urls are represented as JSON strings.
2692
+ - Vectors of bytes are represented as Base64 blobs, and other vectors are represented by JSON arrays.
2693
+ - Structs are represented by JSON objects.
2694
+ - Enums are represented by JSON objects, with a field named `@variant` containing the variant name.
2695
+ - Empty optional values are represented by `null`.
2696
+ """
2697
+ json: JSON
2698
+ """
2699
+ The value's type.
2700
+ """
2701
+ type: MoveType
2702
+ }
2703
+
2704
+ """
2705
+ The visibility modifier describes which modules can access this module member.
2706
+
2707
+ By default, a module member can be called only within the same module.
2708
+ """
2709
+ enum MoveVisibility {
2710
+ """
2711
+ A public member can be accessed by any module.
2712
+ """
2713
+ PUBLIC
2714
+ """
2715
+ A private member can be accessed in the module it is defined in.
2716
+ """
2717
+ PRIVATE
2718
+ """
2719
+ A friend member can be accessed in the module it is defined in and any other module in its package that is explicitly specified in its friend list.
2720
+ """
2721
+ FRIEND
2722
+ }
2723
+
2724
+ """
2725
+ A transaction that wanted to mutate a consensus-managed object but couldn't because it became not-consensus-managed before the transaction executed (for example, it was deleted, turned into an owned object, or wrapped).
2726
+ """
2727
+ type MutateConsensusStreamEnded {
2728
+ """
2729
+ The ID of the consensus-managed object.
2730
+ """
2731
+ address: SuiAddress
2732
+ """
2733
+ The sequence number associated with the consensus stream ending.
2734
+ """
2735
+ sequenceNumber: UInt53
2736
+ }
2737
+
2738
+ """
2739
+ Mutations are used to write to the Sui network.
2740
+ """
2741
+ type Mutation {
2742
+ """
2743
+ Execute a transaction, committing its effects on chain.
2744
+
2745
+ - `transactionDataBcs` contains the BCS-encoded transaction data (Base64-encoded).
2746
+ - `signatures` are a list of `flag || signature || pubkey` bytes, Base64-encoded.
2747
+
2748
+ Waits until the transaction has reached finality on chain to return its transaction digest, or returns the error that prevented finality if that was not possible. A transaction is final when its effects are guaranteed on chain (it cannot be revoked).
2749
+
2750
+ There may be a delay between transaction finality and when GraphQL requests (including the request that issued the transaction) reflect its effects. As a result, queries that depend on indexing the state of the chain (e.g. contents of output objects, address-level balance information at the time of the transaction), must wait for indexing to catch up by polling for the transaction digest using `Query.transaction`.
2751
+ """
2752
+ executeTransaction(transactionDataBcs: Base64!, signatures: [Base64!]!): ExecutionResult!
2753
+ }
2754
+
2755
+ """
2756
+ A Name Service NameRecord representing a domain name registration.
2757
+ """
2758
+ type NameRecord {
2759
+ """
2760
+ On-chain representation of the underlying Name Service `NameRecord` Move value.
2761
+ """
2762
+ contents: MoveValue!
2763
+ """
2764
+ The domain name this record is for.
2765
+ """
2766
+ domain: String!
2767
+ """
2768
+ The Name Service Name Record of the parent domain, if this is a subdomain.
2769
+
2770
+ Returns `null` if this is not a subdomain.
2771
+ """
2772
+ parent: NameRecord
2773
+ """
2774
+ The address this domain points to.
2775
+
2776
+ `rootVersion` and `atCheckpoint` control how the target `Address` is scoped. If neither is provided, the `Address` is scoped to the latest checkpoint known to the RPC.
2777
+ """
2778
+ target(rootVersion: UInt53, atCheckpoint: UInt53): Address
2779
+ }
2780
+
2781
+ """
2782
+ An interface implemented by types that can be uniquely identified by a globally unique `ID`, following the GraphQL Global Object Identification specification.
2783
+ """
2784
+ interface Node {
2785
+ """
2786
+ The node's globally unique identifier, which can be passed to `Query.node` to refetch it.
2787
+ """
2788
+ id: ID!
2789
+ }
2790
+
2791
+ """
2792
+ An Object on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).
2793
+
2794
+ Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.
2795
+ """
2796
+ type Object implements Node & IAddressable & IObject {
2797
+ """
2798
+ The Object's ID.
2799
+ """
2800
+ address: SuiAddress!
2801
+ """
2802
+ Fetch the address as it was at a different root version, or checkpoint.
2803
+
2804
+ If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
2805
+ """
2806
+ addressAt(rootVersion: UInt53, checkpoint: UInt53): Address
2807
+ """
2808
+ Attempts to convert the object into a MoveObject.
2809
+ """
2810
+ asMoveObject: MoveObject
2811
+ """
2812
+ Attempts to convert the object into a MovePackage.
2813
+ """
2814
+ asMovePackage: MovePackage
2815
+ """
2816
+ Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::sui::SUI`), owned by this address.
2817
+
2818
+ If the address does not own any coins of that type, a balance of zero is returned.
2819
+ """
2820
+ balance(coinType: String!): Balance
2821
+ """
2822
+ Total balance across coins owned by this address, grouped by coin type.
2823
+ """
2824
+ balances(first: Int, after: String, last: Int, before: String): BalanceConnection
2825
+ """
2826
+ The domain explicitly configured as the default Name Service name for this address.
2827
+ """
2828
+ defaultNameRecord: NameRecord
2829
+ """
2830
+ 32-byte hash that identifies the object's contents, encoded in Base58.
2831
+ """
2832
+ digest: String
2833
+ """
2834
+ Access a dynamic field on an object using its type and BCS-encoded name.
2835
+
2836
+ Returns `null` if a dynamic field with that name could not be found attached to this object.
2837
+ """
2838
+ dynamicField(name: DynamicFieldName!): DynamicField
2839
+ """
2840
+ Dynamic fields owned by this object.
2841
+ """
2842
+ dynamicFields(first: Int, after: String, last: Int, before: String): DynamicFieldConnection
2843
+ """
2844
+ Access a dynamic object field on an object using its type and BCS-encoded name.
2845
+
2846
+ Returns `null` if a dynamic object field with that name could not be found attached to this object.
2847
+ """
2848
+ dynamicObjectField(name: DynamicFieldName!): DynamicField
2849
+ """
2850
+ The object's globally unique identifier, which can be passed to `Query.node` to refetch it.
2851
+ """
2852
+ id: ID!
2853
+ """
2854
+ Fetch the total balances keyed by coin types (e.g. `0x2::sui::SUI`) owned by this address.
2855
+
2856
+ Returns `None` when no checkpoint is set in scope (e.g. execution scope).
2857
+ If the address does not own any coins of a given type, a balance of zero is returned for that type.
2858
+ """
2859
+ multiGetBalances(keys: [String!]!): [Balance!]
2860
+ """
2861
+ Access dynamic fields on an object using their types and BCS-encoded names.
2862
+
2863
+ Returns a list of dynamic fields that is guaranteed to be the same length as `keys`. If a dynamic field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.
2864
+ """
2865
+ multiGetDynamicFields(keys: [DynamicFieldName!]!): [DynamicField]!
2866
+ """
2867
+ Access dynamic object fields on an object using their types and BCS-encoded names.
2868
+
2869
+ Returns a list of dynamic object fields that is guaranteed to be the same length as `keys`. If a dynamic object field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.
2870
+ """
2871
+ multiGetDynamicObjectFields(keys: [DynamicFieldName!]!): [DynamicField]!
2872
+ """
2873
+ Fetch the object with the same ID, at a different version, root version bound, or checkpoint.
2874
+
2875
+ If no additional bound is provided, the object is fetched at the latest checkpoint known to the RPC.
2876
+ """
2877
+ objectAt(version: UInt53, rootVersion: UInt53, checkpoint: UInt53): Object
2878
+ """
2879
+ The Base64-encoded BCS serialization of this object, as an `Object`.
2880
+ """
2881
+ objectBcs: Base64
2882
+ """
2883
+ Paginate all versions of this object after this one.
2884
+ """
2885
+ objectVersionsAfter(first: Int, after: String, last: Int, before: String, filter: VersionFilter): ObjectConnection
2886
+ """
2887
+ Paginate all versions of this object before this one.
2888
+ """
2889
+ objectVersionsBefore(first: Int, after: String, last: Int, before: String, filter: VersionFilter): ObjectConnection
2890
+ """
2891
+ Objects owned by this object, optionally filtered by type.
2892
+ """
2893
+ objects(first: Int, after: String, last: Int, before: String, filter: ObjectFilter): MoveObjectConnection
2894
+ """
2895
+ The object's owner kind.
2896
+ """
2897
+ owner: Owner
2898
+ """
2899
+ The transaction that created this version of the object.
2900
+ """
2901
+ previousTransaction: Transaction
2902
+ """
2903
+ The transactions that sent objects to this object
2904
+ """
2905
+ receivedTransactions(first: Int, after: String, last: Int, before: String, filter: TransactionFilter): TransactionConnection
2906
+ """
2907
+ The SUI returned to the sponsor or sender of the transaction that modifies or deletes this object.
2908
+ """
2909
+ storageRebate: BigInt
2910
+ """
2911
+ The version of this object that this content comes from.
2912
+ """
2913
+ version: UInt53
2914
+ }
2915
+
2916
+ type ObjectChange {
2917
+ """
2918
+ The address of the object that has changed.
2919
+ """
2920
+ address: SuiAddress!
2921
+ """
2922
+ Whether the ID was created in this transaction.
2923
+ """
2924
+ idCreated: Boolean
2925
+ """
2926
+ Whether the ID was deleted in this transaction.
2927
+ """
2928
+ idDeleted: Boolean
2929
+ """
2930
+ The contents of the object immediately before the transaction.
2931
+ """
2932
+ inputState: Object
2933
+ """
2934
+ The contents of the object immediately after the transaction.
2935
+ """
2936
+ outputState: Object
2937
+ }
2938
+
2939
+ type ObjectChangeConnection {
2940
+ """
2941
+ A list of edges.
2942
+ """
2943
+ edges: [ObjectChangeEdge!]!
2944
+ """
2945
+ A list of nodes.
2946
+ """
2947
+ nodes: [ObjectChange!]!
2948
+ """
2949
+ Information to aid in pagination.
2950
+ """
2951
+ pageInfo: PageInfo!
2952
+ }
2953
+
2954
+ """
2955
+ An edge in a connection.
2956
+ """
2957
+ type ObjectChangeEdge {
2958
+ """
2959
+ A cursor for use in pagination
2960
+ """
2961
+ cursor: String!
2962
+ """
2963
+ The item at the end of the edge
2964
+ """
2965
+ node: ObjectChange!
2966
+ }
2967
+
2968
+ type ObjectConnection {
2969
+ """
2970
+ A list of edges.
2971
+ """
2972
+ edges: [ObjectEdge!]!
2973
+ """
2974
+ A list of nodes.
2975
+ """
2976
+ nodes: [Object!]!
2977
+ """
2978
+ Information to aid in pagination.
2979
+ """
2980
+ pageInfo: PageInfo!
2981
+ }
2982
+
2983
+ """
2984
+ An edge in a connection.
2985
+ """
2986
+ type ObjectEdge {
2987
+ """
2988
+ A cursor for use in pagination
2989
+ """
2990
+ cursor: String!
2991
+ """
2992
+ The item at the end of the edge
2993
+ """
2994
+ node: Object!
2995
+ }
2996
+
2997
+ """
2998
+ A filter over the live object set, the filter can be one of:
2999
+
3000
+ - A filter on type (all live objects whose type matches that filter).
3001
+ - Fetching all objects owned by an address or object, optionally filtered by type.
3002
+ - Fetching all shared or immutable objects, filtered by type.
3003
+ """
3004
+ input ObjectFilter {
3005
+ """
3006
+ Specifies the address of the owning address or object.
3007
+
3008
+ This field is required if `ownerKind` is "ADDRESS" or "OBJECT". If provided without `ownerKind`, `ownerKind` defaults to "ADDRESS".
3009
+ """
3010
+ owner: SuiAddress
3011
+ """
3012
+ Filter on whether the object is address-owned, object-owned, shared, or immutable.
3013
+
3014
+ - If this field is set to "ADDRESS" or "OBJECT", then an owner filter must also be provided.
3015
+ - If this field is set to "SHARED" or "IMMUTABLE", then a type filter must also be provided.
3016
+ """
3017
+ ownerKind: OwnerKind
3018
+ """
3019
+ Filter on the object's type.
3020
+
3021
+ The filter can be one of:
3022
+
3023
+ - A package address: `0x2`,
3024
+ - A module: `0x2::coin`,
3025
+ - A fully-qualified name: `0x2::coin::Coin`,
3026
+ - A type instantiation: `0x2::coin::Coin<0x2::sui::SUI>`.
3027
+ """
3028
+ type: String
3029
+ }
3030
+
3031
+ """
3032
+ Identifies a specific version of an object.
3033
+
3034
+ The `address` field must be specified, as well as at most one of `version`, `rootVersion`, or `atCheckpoint`. If none are provided, the object is fetched at the current checkpoint.
3035
+
3036
+ Specifying a `version` or a `rootVersion` disables nested queries for paginating owned objects or dynamic fields (these queries are only supported at checkpoint boundaries).
3037
+
3038
+ See `Query.object` for more details.
3039
+ """
3040
+ input ObjectKey {
3041
+ """
3042
+ The object's ID.
3043
+ """
3044
+ address: SuiAddress!
3045
+ """
3046
+ If specified, tries to fetch the latest version as of this checkpoint. Fails if the checkpoint is later than the RPC's latest checkpoint.
3047
+ """
3048
+ atCheckpoint: UInt53
3049
+ """
3050
+ If specified, tries to fetch the latest version of the object at or before this version. Nested dynamic field accesses will also be subject to this bound.
3051
+
3052
+ This can be used to fetch a child or ancestor object bounded by its root object's version. For any wrapped or child (object-owned) object, its root object can be defined recursively as:
3053
+
3054
+ - The root object of the object it is wrapped in, if it is wrapped.
3055
+ - The root object of its owner, if it is owned by another object.
3056
+ - The object itself, if it is not object-owned or wrapped.
3057
+ """
3058
+ rootVersion: UInt53
3059
+ """
3060
+ If specified, tries to fetch the object at this exact version.
3061
+ """
3062
+ version: UInt53
3063
+ }
3064
+
3065
+ """
3066
+ Object is exclusively owned by a single object, and is mutable. Note that the owning object may be inaccessible because it is wrapped.
3067
+ """
3068
+ type ObjectOwner {
3069
+ """
3070
+ The owner's address.
3071
+ """
3072
+ address: Address
3073
+ }
3074
+
3075
+ """
3076
+ Represents types that could contain references or free type parameters. Such types can appear
3077
+ as function parameters, in fields of structs, or as actual type parameter.
3078
+ """
3079
+ type OpenMoveType {
3080
+ """
3081
+ Flat representation of the type signature, as a displayable string.
3082
+ """
3083
+ repr: String!
3084
+ """
3085
+ Structured representation of the type signature.
3086
+ """
3087
+ signature: OpenMoveTypeSignature!
3088
+ }
3089
+
3090
+ """
3091
+ The shape of an abstract Move Type (a type that can contain free type parameters, and can optionally be taken by reference), corresponding to the following recursive type:
3092
+
3093
+ type OpenMoveTypeSignature = {
3094
+ ref: ("&" | "&mut")?,
3095
+ body: OpenMoveTypeSignatureBody,
3096
+ }
3097
+
3098
+ type OpenMoveTypeSignatureBody =
3099
+ "address"
3100
+ | "bool"
3101
+ | "u8" | "u16" | ... | "u256"
3102
+ | { vector: OpenMoveTypeSignatureBody }
3103
+ | {
3104
+ datatype {
3105
+ package: string,
3106
+ module: string,
3107
+ type: string,
3108
+ typeParameters: [OpenMoveTypeSignatureBody]
3109
+ }
3110
+ }
3111
+ | { typeParameter: number }
3112
+ """
3113
+ scalar OpenMoveTypeSignature
3114
+
3115
+ """
3116
+ Placeholder for unimplemented command types
3117
+ """
3118
+ type OtherCommand {
3119
+ """
3120
+ Placeholder field for unimplemented commands
3121
+ """
3122
+ _: Boolean
3123
+ }
3124
+
3125
+ """
3126
+ A Move object, either immutable, or owned mutable.
3127
+ """
3128
+ type OwnedOrImmutable {
3129
+ object: Object
3130
+ }
3131
+
3132
+ """
3133
+ The object's owner kind.
3134
+ """
3135
+ union Owner = AddressOwner | ObjectOwner | Shared | Immutable | ConsensusAddressOwner
3136
+
3137
+ """
3138
+ Filter on who owns an object.
3139
+ """
3140
+ enum OwnerKind {
3141
+ """
3142
+ Object is owned by an address.
3143
+ """
3144
+ ADDRESS
3145
+ """
3146
+ Object is a child of another object (e.g. a dynamic field or dynamic object field).
3147
+ """
3148
+ OBJECT
3149
+ """
3150
+ Object is shared among multiple owners.
3151
+ """
3152
+ SHARED
3153
+ """
3154
+ Object is frozen.
3155
+ """
3156
+ IMMUTABLE
3157
+ }
3158
+
3159
+ """
3160
+ Filter for paginating packages published within a range of checkpoints.
3161
+ """
3162
+ input PackageCheckpointFilter {
3163
+ """
3164
+ Filter to packages that were published strictly after this checkpoint, defaults to fetching from the earliest checkpoint known to this RPC (this could be the genesis checkpoint, or some later checkpoint if data has been pruned).
3165
+ """
3166
+ afterCheckpoint: UInt53
3167
+ """
3168
+ Filter to packages published strictly before this checkpoint, defaults to fetching up to the latest checkpoint (inclusive).
3169
+ """
3170
+ beforeCheckpoint: UInt53
3171
+ }
3172
+
3173
+ """
3174
+ Identifies a specific version of a package.
3175
+
3176
+ The `address` field must be specified, as well as at most one of `version`, or `atCheckpoint`. If neither is provided, the package is fetched at the checkpoint being viewed.
3177
+
3178
+ See `Query.package` for more details.
3179
+ """
3180
+ input PackageKey {
3181
+ """
3182
+ The object's ID.
3183
+ """
3184
+ address: SuiAddress!
3185
+ """
3186
+ If specified, tries to fetch the latest version as of this checkpoint.
3187
+ """
3188
+ atCheckpoint: UInt53
3189
+ """
3190
+ If specified, tries to fetch the package at this exact version.
3191
+ """
3192
+ version: UInt53
3193
+ }
3194
+
3195
+ """
3196
+ Information about pagination in a connection
3197
+ """
3198
+ type PageInfo {
3199
+ """
3200
+ When paginating forwards, the cursor to continue.
3201
+ """
3202
+ endCursor: String
3203
+ """
3204
+ When paginating forwards, are there more items?
3205
+ """
3206
+ hasNextPage: Boolean!
3207
+ """
3208
+ When paginating backwards, are there more items?
3209
+ """
3210
+ hasPreviousPage: Boolean!
3211
+ """
3212
+ When paginating backwards, the cursor to continue.
3213
+ """
3214
+ startCursor: String
3215
+ }
3216
+
3217
+ type PerEpochConfig {
3218
+ """
3219
+ The per-epoch configuration object as of when the transaction was executed.
3220
+ """
3221
+ object: Object
3222
+ }
3223
+
3224
+ """
3225
+ ProgrammableSystemTransaction is identical to ProgrammableTransaction, but GraphQL does not allow multiple variants with the same type.
3226
+ """
3227
+ type ProgrammableSystemTransaction {
3228
+ """
3229
+ The transaction commands, executed sequentially.
3230
+ """
3231
+ commands(first: Int, after: String, last: Int, before: String): CommandConnection
3232
+ """
3233
+ Input objects or primitive values.
3234
+ """
3235
+ inputs(first: Int, after: String, last: Int, before: String): TransactionInputConnection
3236
+ }
3237
+
3238
+ type ProgrammableTransaction {
3239
+ """
3240
+ The transaction commands, executed sequentially.
3241
+ """
3242
+ commands(first: Int, after: String, last: Int, before: String): CommandConnection
3243
+ """
3244
+ Input objects or primitive values.
3245
+ """
3246
+ inputs(first: Int, after: String, last: Int, before: String): TransactionInputConnection
3247
+ }
3248
+
3249
+ """
3250
+ A protocol configuration that can hold an arbitrary value (or no value at all).
3251
+ """
3252
+ type ProtocolConfig {
3253
+ """
3254
+ Configuration name.
3255
+ """
3256
+ key: String!
3257
+ """
3258
+ Configuration value.
3259
+ """
3260
+ value: String
3261
+ }
3262
+
3263
+ """
3264
+ Constants that control how the chain operates.
3265
+
3266
+ These can only change during protocol upgrades which happen on epoch boundaries. Configuration is split into feature flags (which are just booleans), and configs which can take any value (including no value at all), and will be represented by a string.
3267
+ """
3268
+ type ProtocolConfigs {
3269
+ """
3270
+ Query for the value of the configuration with name `key`.
3271
+ """
3272
+ config(key: String!): ProtocolConfig
3273
+ """
3274
+ List all available configurations and their values.
3275
+ """
3276
+ configs: [ProtocolConfig!]!
3277
+ """
3278
+ Query for the state of the feature flag with name `key`.
3279
+ """
3280
+ featureFlag(key: String!): FeatureFlag
3281
+ """
3282
+ List all available feature flags and their values.
3283
+ """
3284
+ featureFlags: [FeatureFlag!]!
3285
+ protocolVersion: UInt53!
3286
+ }
3287
+
3288
+ """
3289
+ Publishes a Move Package.
3290
+ """
3291
+ type PublishCommand {
3292
+ """
3293
+ IDs of the transitive dependencies of the package to be published.
3294
+ """
3295
+ dependencies: [SuiAddress!]
3296
+ """
3297
+ Bytecode for the modules to be published, BCS serialized and Base64 encoded.
3298
+ """
3299
+ modules: [Base64!]
3300
+ }
3301
+
3302
+ """
3303
+ BCS encoded primitive value (not an object or Move struct).
3304
+ """
3305
+ type Pure {
3306
+ """
3307
+ BCS serialized and Base64 encoded primitive value.
3308
+ """
3309
+ bytes: Base64
3310
+ }
3311
+
3312
+ type Query {
3313
+ """
3314
+ Look-up an account by its SuiAddress.
3315
+
3316
+ If `rootVersion` is specified, nested dynamic field accesses will be fetched at or before this version. This can be used to fetch a child or descendant object bounded by its root object's version, when its immediate parent is wrapped, or a value in a dynamic object field. For any wrapped or child (object-owned) object, its root object can be defined recursively as:
3317
+
3318
+ - The root object of the object it is wrapped in, if it is wrapped.
3319
+ - The root object of its owner, if it is owned by another object.
3320
+ - The object itself, if it is not object-owned or wrapped.
3321
+
3322
+ Specifying a `rootVersion` disables nested queries for paginating owned objects or dynamic fields (these queries are only supported at checkpoint boundaries).
3323
+
3324
+ If `atCheckpoint` is specified, the address will be fetched at the latest version as of this checkpoint. This will fail if the provided checkpoint is after the RPC's latest checkpoint.
3325
+
3326
+ If none of the above are specified, the address is fetched at the checkpoint being viewed.
3327
+
3328
+ If the address is fetched by name and the name does not resolve to an address (e.g. the name does not exist or has expired), `null` is returned.
3329
+ """
3330
+ address(address: SuiAddress, name: String, rootVersion: UInt53, atCheckpoint: UInt53): Address
3331
+ """
3332
+ First four bytes of the network's genesis checkpoint digest (uniquely identifies the network), hex-encoded.
3333
+ """
3334
+ chainIdentifier: String!
3335
+ """
3336
+ Fetch a checkpoint by its sequence number, or the latest checkpoint if no sequence number is provided.
3337
+
3338
+ Returns `null` if the checkpoint does not exist in the store, either because it never existed or because it was pruned.
3339
+ """
3340
+ checkpoint(sequenceNumber: UInt53): Checkpoint
3341
+ """
3342
+ Paginate checkpoints in the network, optionally bounded to checkpoints in the given epoch.
3343
+ """
3344
+ checkpoints(first: Int, after: String, last: Int, before: String, filter: CheckpointFilter): CheckpointConnection
3345
+ """
3346
+ Fetch the CoinMetadata for a given coin type.
3347
+
3348
+ Returns `null` if no CoinMetadata object exists for the given coin type.
3349
+ """
3350
+ coinMetadata(coinType: String!): CoinMetadata
3351
+ """
3352
+ Fetch an epoch by its ID, or fetch the latest epoch if no ID is provided.
3353
+
3354
+ Returns `null` if the epoch does not exist yet, or was pruned.
3355
+ """
3356
+ epoch(epochId: UInt53): Epoch
3357
+ """
3358
+ Paginate epochs that are in the network.
3359
+ """
3360
+ epochs(first: Int, after: String, last: Int, before: String): EpochConnection
3361
+ """
3362
+ Paginate events that are emitted in the network, optionally filtered by event filters.
3363
+ """
3364
+ events(first: Int, after: String, last: Int, before: String, filter: EventFilter): EventConnection
3365
+ """
3366
+ Fetch addresses by their keys.
3367
+
3368
+ Returns a list of addresses that is guaranteed to be the same length as `keys`. If an address in `keys` is fetched by name and the name does not resolve to an address, its corresponding entry in the result will be `null`.
3369
+ """
3370
+ multiGetAddresses(keys: [AddressKey!]!): [Address]!
3371
+ """
3372
+ Fetch checkpoints by their sequence numbers.
3373
+
3374
+ Returns a list of checkpoints that is guaranteed to be the same length as `keys`. If a checkpoint in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the checkpoint does not exist yet, or because it was pruned.
3375
+ """
3376
+ multiGetCheckpoints(keys: [UInt53!]!): [Checkpoint]!
3377
+ """
3378
+ Fetch epochs by their IDs.
3379
+
3380
+ Returns a list of epochs that is guaranteed to be the same length as `keys`. If an epoch in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the epoch does not exist yet, or because it was pruned.
3381
+ """
3382
+ multiGetEpochs(keys: [UInt53!]!): [Epoch]!
3383
+ """
3384
+ Fetch objects by their keys.
3385
+
3386
+ Returns a list of objects that is guaranteed to be the same length as `keys`. If an object in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the object never existed, or because it was pruned.
3387
+ """
3388
+ multiGetObjects(keys: [ObjectKey!]!): [Object]!
3389
+ """
3390
+ Fetch packages by their keys.
3391
+
3392
+ Returns a list of packages that is guaranteed to be the same length as `keys`. If a package in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because that address never pointed to a package, or because the package was pruned.
3393
+ """
3394
+ multiGetPackages(keys: [PackageKey!]!): [MovePackage]!
3395
+ """
3396
+ Fetch transaction effects by their transactions' digests.
3397
+
3398
+ Returns a list of transaction effects that is guaranteed to be the same length as `keys`. If a digest in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the transaction effects never existed, or because it was pruned.
3399
+ """
3400
+ multiGetTransactionEffects(keys: [String!]!): [TransactionEffects]!
3401
+ """
3402
+ Fetch transactions by their digests.
3403
+
3404
+ Returns a list of transactions that is guaranteed to be the same length as `keys`. If a digest in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the transaction never existed, or because it was pruned.
3405
+ """
3406
+ multiGetTransactions(keys: [String!]!): [Transaction]!
3407
+ """
3408
+ Fetch types by their string representations.
3409
+
3410
+ Types are canonicalized: In the input they can be at any package address at or after the package that first defines them, and in the output they will be relocated to the package that first defines them.
3411
+
3412
+ Returns a list of types that is guaranteed to be the same length as `keys`. If a type in `keys` could not be found, its corresponding entry in the result will be `null`.
3413
+ """
3414
+ multiGetTypes(keys: [String!]!): [MoveType]!
3415
+ """
3416
+ Look-up a Name Service NameRecord by its domain name.
3417
+
3418
+ Returns `null` if the record does not exist or has expired.
3419
+ """
3420
+ nameRecord(name: String!): NameRecord
3421
+ """
3422
+ Fetch a `Node` by its globally unique `ID`. Returns `null` if the node cannot be found (e.g., the underlying data was pruned or never existed).
3423
+ """
3424
+ node(id: ID!): Node
3425
+ """
3426
+ Fetch an object by its address.
3427
+
3428
+ If `version` is specified, the object will be fetched at that exact version.
3429
+
3430
+ If `rootVersion` is specified, the object will be fetched at the latest version at or before this version. Nested dynamic field accesses will also be subject to this bound. This can be used to fetch a child or ancestor object bounded by its root object's version. For any wrapped or child (object-owned) object, its root object can be defined recursively as:
3431
+
3432
+ - The root object of the object it is wrapped in, if it is wrapped.
3433
+ - The root object of its owner, if it is owned by another object.
3434
+ - The object itself, if it is not object-owned or wrapped.
3435
+
3436
+ Specifying a `version` or a `rootVersion` disables nested queries for paginating owned objects or dynamic fields (these queries are only supported at checkpoint boundaries).
3437
+
3438
+ If `atCheckpoint` is specified, the object will be fetched at the latest version as of this checkpoint. This will fail if the provided checkpoint is after the RPC's latest checkpoint.
3439
+
3440
+ If none of the above are specified, the object is fetched at the checkpoint being viewed.
3441
+
3442
+ It is an error to specify more than one of `version`, `rootVersion`, or `atCheckpoint`.
3443
+
3444
+ Returns `null` if an object cannot be found that meets this criteria.
3445
+ """
3446
+ object(address: SuiAddress!, version: UInt53, rootVersion: UInt53, atCheckpoint: UInt53): Object
3447
+ """
3448
+ Paginate all versions of an object at `address`, optionally bounding the versions exclusively from below with `filter.afterVersion` or from above with `filter.beforeVersion`.
3449
+ """
3450
+ objectVersions(first: Int, after: String, last: Int, before: String, address: SuiAddress!, filter: VersionFilter): ObjectConnection
3451
+ """
3452
+ Paginate objects in the live object set, optionally filtered by owner and/or type. `filter` can be one of:
3453
+
3454
+ - A filter on type (all live objects whose type matches that filter).
3455
+ - Fetching all objects owned by an address or object, optionally filtered by type.
3456
+ - Fetching all shared or immutable objects, filtered by type.
3457
+ """
3458
+ objects(first: Int, after: String, last: Int, before: String, filter: ObjectFilter!): ObjectConnection
3459
+ """
3460
+ Fetch a package by its address.
3461
+
3462
+ If `version` is specified, the package loaded is the one that shares its original ID with the package at `address`, but whose version is `version`.
3463
+
3464
+ If `atCheckpoint` is specified, the package loaded is the one with the largest version among all packages sharing an original ID with the package at `address` and was published at or before `atCheckpoint`.
3465
+
3466
+ If neither are specified, the package is fetched at the checkpoint being viewed.
3467
+
3468
+ It is an error to specify both `version` and `atCheckpoint`, and `null` will be returned if the package cannot be found as of the latest checkpoint, or the address points to an object that is not a package.
3469
+
3470
+ Note that this interpretation of `version` and "latest" differs from the one used by `Query.object`, because non-system package upgrades generate objects with different IDs. To fetch a package using the versioning semantics of objects, use `Object.asMovePackage` nested under `Query.object`.
3471
+ """
3472
+ package(address: SuiAddress!, version: UInt53, atCheckpoint: UInt53): MovePackage
3473
+ """
3474
+ Paginate all versions of a package at `address`, optionally bounding the versions exclusively from below with `filter.afterVersion` or from above with `filter.beforeVersion`.
3475
+
3476
+ Different versions of a package will have different object IDs, unless they are system packages, but will share the same original ID.
3477
+ """
3478
+ packageVersions(first: Int, after: String, last: Int, before: String, address: SuiAddress!, filter: VersionFilter): MovePackageConnection
3479
+ """
3480
+ Paginate all packages published on-chain, optionally bounded to packages published strictly after `filter.afterCheckpoint` and/or strictly before `filter.beforeCheckpoint`.
3481
+ """
3482
+ packages(first: Int, after: String, last: Int, before: String, filter: PackageCheckpointFilter): MovePackageConnection
3483
+ """
3484
+ Fetch the protocol config by protocol version, or the latest protocol config used on chain if no version is provided.
3485
+ """
3486
+ protocolConfigs(version: UInt53): ProtocolConfigs
3487
+ """
3488
+ Configuration for this RPC service.
3489
+ """
3490
+ serviceConfig: ServiceConfig!
3491
+ """
3492
+ Simulate a transaction to preview its effects without executing it on chain.
3493
+
3494
+ Accepts a JSON transaction matching the [Sui gRPC API schema](https://docs.sui.io/references/fullnode-protocol#sui-rpc-v2-Transaction).
3495
+ The JSON format allows for partial transaction specification where certain fields can be automatically resolved by the server.
3496
+
3497
+ Alternatively, for already serialized transactions, you can pass BCS-encoded data:
3498
+ `{"bcs": {"value": "<base64>"}}`
3499
+
3500
+ Unlike `executeTransaction`, this does not require signatures since the transaction is not committed to the blockchain. This allows for previewing transaction effects, estimating gas costs, and testing transaction logic without spending gas or requiring valid signatures.
3501
+
3502
+ - `checksEnabled`: If true, enables transaction validation checks during simulation. Defaults to true.
3503
+ - `doGasSelection`: If true, enables automatic gas coin selection and budget estimation. Defaults to false.
3504
+ """
3505
+ simulateTransaction(transaction: JSON!, checksEnabled: Boolean, doGasSelection: Boolean): SimulationResult!
3506
+ """
3507
+ Fetch a transaction by its digest.
3508
+
3509
+ Returns `null` if the transaction does not exist in the store, either because it never existed or because it was pruned.
3510
+ """
3511
+ transaction(digest: String!): Transaction
3512
+ """
3513
+ Fetch transaction effects by its transaction's digest.
3514
+
3515
+ Returns `null` if the transaction effects do not exist in the store, either because that transaction was not executed, or it was pruned.
3516
+ """
3517
+ transactionEffects(digest: String!): TransactionEffects
3518
+ """
3519
+ The transactions that exist in the network, optionally filtered by transaction filters.
3520
+ """
3521
+ transactions(first: Int, after: String, last: Int, before: String, filter: TransactionFilter): TransactionConnection
3522
+ """
3523
+ Fetch a structured representation of a concrete type, including its layout information.
3524
+
3525
+ Types are canonicalized: In the input they can be at any package address at or after the package that first defines them, and in the output they will be relocated to the package that first defines them.
3526
+
3527
+ Fails if the type is malformed, returns `null` if a type mentioned does not exist.
3528
+ """
3529
+ type(type: String!): MoveType
3530
+ """
3531
+ Verify a zkLogin signature os from the given `author`.
3532
+
3533
+ Returns a `ZkLoginVerifyResult` where `success` is `true` and `error` is empty if the signature is valid. If the signature is invalid, `success` is `false` and `error` contains the relevant error message.
3534
+
3535
+ - `bytes` are either the bytes of a serialized personal message, or `TransactionData`, Base64-encoded.
3536
+ - `signature` is a serialized zkLogin signature, also Base64-encoded.
3537
+ - `intentScope` indicates whether `bytes` are to be parsed as a personal message or `TransactionData`.
3538
+ - `author` is the signer's address.
3539
+ """
3540
+ verifyZkLoginSignature(bytes: Base64!, signature: Base64!, intentScope: ZkLoginIntentScope!, author: SuiAddress!): ZkLoginVerifyResult!
3541
+ }
3542
+
3543
+ """
3544
+ System transaction for creating the on-chain randomness state.
3545
+ """
3546
+ type RandomnessStateCreateTransaction {
3547
+ """
3548
+ A workaround to define an empty variant of a GraphQL union.
3549
+ """
3550
+ _: Boolean
3551
+ }
3552
+
3553
+ """
3554
+ System transaction to update the source of on-chain randomness.
3555
+ """
3556
+ type RandomnessStateUpdateTransaction {
3557
+ """
3558
+ Epoch of the randomness state update transaction.
3559
+ """
3560
+ epoch: Int
3561
+ """
3562
+ Updated random bytes, Base64 encoded.
3563
+ """
3564
+ randomBytes: Base64
3565
+ """
3566
+ The initial version of the randomness object that it was shared at.
3567
+ """
3568
+ randomnessObjInitialSharedVersion: Int
3569
+ """
3570
+ Randomness round of the update.
3571
+ """
3572
+ randomnessRound: Int
3573
+ }
3574
+
3575
+ """
3576
+ A transaction that wanted to read a consensus-managed object but couldn't because it became not-consensus-managed before the transaction executed (for example, it was deleted, turned into an owned object, or wrapped).
3577
+ """
3578
+ type ReadConsensusStreamEnded {
3579
+ """
3580
+ The ID of the consensus-managed object.
3581
+ """
3582
+ address: SuiAddress
3583
+ """
3584
+ The sequence number associated with the consensus stream ending.
3585
+ """
3586
+ sequenceNumber: UInt53
3587
+ }
3588
+
3589
+ """
3590
+ A Move object that can be received in this transaction.
3591
+ """
3592
+ type Receiving {
3593
+ object: Object
3594
+ }
3595
+
3596
+ """
3597
+ Whether the currency is regulated or not.
3598
+ """
3599
+ enum RegulatedState {
3600
+ """
3601
+ A `DenyCap` or a `RegulatedCoinMetadata` exists for this currency.
3602
+ """
3603
+ REGULATED
3604
+ """
3605
+ The currency was created without a deny list.
3606
+ """
3607
+ UNREGULATED
3608
+ }
3609
+
3610
+ type ServiceConfig {
3611
+ """
3612
+ Range of checkpoints for which data is available for a query type, field and optional filter. If filter is not provided, the strictest retention range for the query and type is returned.
3613
+ """
3614
+ availableRange(type: String!, field: String, filters: [String!]): AvailableRange!
3615
+ """
3616
+ Number of elements a paginated connection will return if a page size is not supplied.
3617
+
3618
+ Accepts `type` and `field` arguments which identify the connection that is being queried. If the field in question is paginated, its default page size is returned. If it does not exist or is not paginated, `null` is returned.
3619
+ """
3620
+ defaultPageSize(type: String!, field: String!): Int
3621
+ """
3622
+ Maximum output size of a disassembled MoveModule, in bytes.
3623
+ """
3624
+ maxDisassembledModuleSize: Int
3625
+ """
3626
+ Maximum depth of nested field access supported in display outputs.
3627
+ """
3628
+ maxDisplayFieldDepth: Int
3629
+ """
3630
+ Maximum number of components in a Display v2 format string.
3631
+ """
3632
+ maxDisplayFormatNodes: Int
3633
+ """
3634
+ Maximum number of objects that can be loaded while evaluating a display.
3635
+ """
3636
+ maxDisplayObjectLoads: Int
3637
+ """
3638
+ Maximum output size of a display output.
3639
+ """
3640
+ maxDisplayOutputSize: Int
3641
+ """
3642
+ Maximum budget in bytes to spend when outputting a structured `MoveValue`.
3643
+ """
3644
+ maxMoveValueBound: Int
3645
+ """
3646
+ Maximum nesting allowed in datatype fields when calculating the layout of a single type.
3647
+ """
3648
+ maxMoveValueDepth: Int
3649
+ """
3650
+ Maximum number of elements that can be requested from a multi-get query. A request to fetch more keys will result in an error.
3651
+ """
3652
+ maxMultiGetSize: Int
3653
+ """
3654
+ Maximum number of estimated output nodes in a GraphQL response.
3655
+
3656
+ The estimate is an upperbound of how many nodes there would be in the output assuming every requested field is present, paginated requests return full page sizes, and multi-get queries find all requested keys. Below is a worked example query:
3657
+
3658
+ ```graphql
3659
+ | 0: query { # 514 = total
3660
+ | 1: checkpoint { # 1
3661
+ | 2: sequenceNumber # 1
3662
+ | 3: }
3663
+ | 4:
3664
+ | 5: multiGetObjects([$a, $b, $c]) { # 1 (* 3)
3665
+ | 6: address # 3
3666
+ | 7: digest # 3
3667
+ | 8: }
3668
+ | 9:
3669
+ | 10: # default page size is 20
3670
+ | 11: transactions { # 1 (* 20)
3671
+ | 12: pageInfo { # 1
3672
+ | 13: hasNextPage # 1
3673
+ | 14: endCursor # 1
3674
+ | 15: }
3675
+ | 16:
3676
+ | 17: nodes # 1
3677
+ | 18: { # 20
3678
+ | 19: digest # 20
3679
+ | 20: effects { # 20
3680
+ | 21: objectChanges(first: 10) { # 20 (* 10)
3681
+ | 22: nodes # 20
3682
+ | 23: { # 200
3683
+ | 24: address # 200
3684
+ | 25: }
3685
+ | 26: }
3686
+ | 27: }
3687
+ | 28: }
3688
+ | 29: }
3689
+ | 30: }
3690
+ ```
3691
+ """
3692
+ maxOutputNodes: Int
3693
+ """
3694
+ Maximum number of elements that can be requested from a paginated connection. A request to fetch more elements will result in an error.
3695
+
3696
+ Accepts `type` and `field` arguments which identify the connection that is being queried. If the field in question is paginated, its max page size is returned. If it does not exist or is not paginated, `null` is returned.
3697
+ """
3698
+ maxPageSize(type: String!, field: String!): Int
3699
+ """
3700
+ Maximum depth of a GraphQL query that can be accepted by this service.
3701
+ """
3702
+ maxQueryDepth: Int
3703
+ """
3704
+ The maximum number of nodes (field names) the service will accept in a single query.
3705
+ """
3706
+ maxQueryNodes: Int
3707
+ """
3708
+ Maximum size in bytes of a single GraphQL request, excluding the elements covered by `maxTransactionPayloadSize`.
3709
+ """
3710
+ maxQueryPayloadSize: Int
3711
+ """
3712
+ Maximum number of paginated fields that can return results in a single request. Queries on paginated fields that exceed this limit will return an error.
3713
+ """
3714
+ maxRichQueries: Int
3715
+ """
3716
+ Maximum size in bytes allowed for the `txBytes` and `signatures` parameters of an `executeTransaction` or `simulateTransaction` field, or the `bytes` and `signature` parameters of a `verifyZkLoginSignature` field.
3717
+
3718
+ This is cumulative across all matching fields in a single GraphQL request.
3719
+ """
3720
+ maxTransactionPayloadSize: Int
3721
+ """
3722
+ Maximum amount of nesting among type arguments (type arguments nest when a type argument is itself generic and has arguments).
3723
+ """
3724
+ maxTypeArgumentDepth: Int
3725
+ """
3726
+ Maximum number of type parameters a type can have.
3727
+ """
3728
+ maxTypeArgumentWidth: Int
3729
+ """
3730
+ Maximum number of datatypes that need to be processed when calculating the layout of a single type.
3731
+ """
3732
+ maxTypeNodes: Int
3733
+ """
3734
+ Maximum time in milliseconds spent waiting for a response from fullnode after issuing a transaction to execute. Note that the transaction may still succeed even in the case of a timeout. Transactions are idempotent, so a transaction that times out should be re-submitted until the network returns a definite response (success or failure, not timeout).
3735
+ """
3736
+ mutationTimeoutMs: Int
3737
+ """
3738
+ Maximum time in milliseconds that will be spent to serve one query request.
3739
+ """
3740
+ queryTimeoutMs: Int
3741
+ }
3742
+
3743
+ """
3744
+ Object is shared, can be used by any address, and is mutable.
3745
+ """
3746
+ type Shared {
3747
+ """
3748
+ The version at which the object became shared.
3749
+ """
3750
+ initialSharedVersion: UInt53
3751
+ }
3752
+
3753
+ """
3754
+ A Move object that's shared.
3755
+ """
3756
+ type SharedInput {
3757
+ """
3758
+ The address of the shared object.
3759
+ """
3760
+ address: SuiAddress
3761
+ """
3762
+ The version that this object was shared at.
3763
+ """
3764
+ initialSharedVersion: UInt53
3765
+ """
3766
+ Controls whether the transaction block can reference the shared object as a mutable reference or by value.
3767
+
3768
+ This has implications for scheduling: Transactions that just read shared objects at a certain version (mutable = false) can be executed concurrently, while transactions that write shared objects (mutable = true) must be executed serially with respect to each other.
3769
+ """
3770
+ mutable: Boolean
3771
+ }
3772
+
3773
+ """
3774
+ The result of simulating a transaction, including the predicted effects and any errors.
3775
+ """
3776
+ type SimulationResult {
3777
+ """
3778
+ The predicted effects of the transaction if it were executed.
3779
+
3780
+ `None` if the simulation failed due to an error.
3781
+ """
3782
+ effects: TransactionEffects
3783
+ """
3784
+ Error message if the simulation failed.
3785
+
3786
+ `None` if the simulation was successful.
3787
+ """
3788
+ error: String
3789
+ """
3790
+ The intermediate outputs for each command of the transaction simulation, including contents of mutated references and return values.
3791
+ """
3792
+ outputs: [CommandResult!]
3793
+ }
3794
+
3795
+ """
3796
+ Splits off coins with denominations in `amounts` from `coin`, returning multiple results (as many as there are amounts.)
3797
+ """
3798
+ type SplitCoinsCommand {
3799
+ """
3800
+ The denominations to split off from the coin.
3801
+ """
3802
+ amounts: [TransactionArgument!]!
3803
+ """
3804
+ The coin to split.
3805
+ """
3806
+ coin: TransactionArgument
3807
+ }
3808
+
3809
+ """
3810
+ System transaction for storing execution time observations.
3811
+ """
3812
+ type StoreExecutionTimeObservationsTransaction {
3813
+ """
3814
+ A workaround to define an empty variant of a GraphQL union.
3815
+ """
3816
+ _: Boolean
3817
+ }
3818
+
3819
+
3820
+ """
3821
+ String containing 32 byte hex-encoded address, with a leading '0x'. Leading zeroes can be omitted on input but will always appear in outputs (SuiAddress in output is guaranteed to be 66 characters long).
3822
+ """
3823
+ scalar SuiAddress
3824
+
3825
+ """
3826
+ Future behavior of a currency's supply.
3827
+ """
3828
+ enum SupplyState {
3829
+ """
3830
+ The supply can only decrease.
3831
+ """
3832
+ BURN_ONLY
3833
+ """
3834
+ The supply can neither increase nor decrease.
3835
+ """
3836
+ FIXED
3837
+ }
3838
+
3839
+ """
3840
+ Description of a transaction, the unit of activity on Sui.
3841
+ """
3842
+ type Transaction implements Node {
3843
+ """
3844
+ A 32-byte hash that uniquely identifies the transaction contents, encoded in Base58.
3845
+ """
3846
+ digest: String!
3847
+ """
3848
+ The results to the chain of executing this transaction.
3849
+ """
3850
+ effects: TransactionEffects
3851
+ """
3852
+ This field is set by senders of a transaction block. It is an epoch reference that sets a deadline after which validators will no longer consider the transaction valid. By default, there is no deadline for when a transaction must execute.
3853
+ """
3854
+ expiration: Epoch
3855
+ """
3856
+ The gas input field provides information on what objects were used as gas as well as the owner of the gas object(s) and information on the gas price and budget.
3857
+ """
3858
+ gasInput: GasInput
3859
+ """
3860
+ The transaction's globally unique identifier, which can be passed to `Query.node` to refetch it.
3861
+ """
3862
+ id: ID!
3863
+ """
3864
+ The type of this transaction as well as the commands and/or parameters comprising the transaction of this kind.
3865
+ """
3866
+ kind: TransactionKind
3867
+ """
3868
+ The address corresponding to the public key that signed this transaction. System transactions do not have senders.
3869
+ """
3870
+ sender: Address
3871
+ """
3872
+ User signatures for this transaction.
3873
+ """
3874
+ signatures: [UserSignature!]!
3875
+ """
3876
+ The Base64-encoded BCS serialization of this transaction, as a `TransactionData`.
3877
+ """
3878
+ transactionBcs: Base64
3879
+ """
3880
+ The transaction as a JSON blob, matching the gRPC proto format (excluding BCS).
3881
+ """
3882
+ transactionJson: JSON
3883
+ }
3884
+
3885
+ """
3886
+ An argument to a programmable transaction command.
3887
+ """
3888
+ union TransactionArgument = GasCoin | Input | TxResult
3889
+
3890
+ type TransactionConnection {
3891
+ """
3892
+ A list of edges.
3893
+ """
3894
+ edges: [TransactionEdge!]!
3895
+ """
3896
+ A list of nodes.
3897
+ """
3898
+ nodes: [Transaction!]!
3899
+ """
3900
+ Information to aid in pagination.
3901
+ """
3902
+ pageInfo: PageInfo!
3903
+ }
3904
+
3905
+ """
3906
+ An edge in a connection.
3907
+ """
3908
+ type TransactionEdge {
3909
+ """
3910
+ A cursor for use in pagination
3911
+ """
3912
+ cursor: String!
3913
+ """
3914
+ The item at the end of the edge
3915
+ """
3916
+ node: Transaction!
3917
+ }
3918
+
3919
+ """
3920
+ The results of executing a transaction.
3921
+ """
3922
+ type TransactionEffects {
3923
+ """
3924
+ The effect this transaction had on the balances (sum of coin values per coin type) of addresses and objects.
3925
+ """
3926
+ balanceChanges(first: Int, after: String, last: Int, before: String): BalanceChangeConnection
3927
+ """
3928
+ The balance changes as a JSON array, matching the gRPC proto format.
3929
+ """
3930
+ balanceChangesJson: JSON
3931
+ """
3932
+ The checkpoint this transaction was finalized in.
3933
+ """
3934
+ checkpoint: Checkpoint
3935
+ """
3936
+ Transactions whose outputs this transaction depends upon.
3937
+ """
3938
+ dependencies(first: Int, after: String, last: Int, before: String): TransactionConnection
3939
+ """
3940
+ A 32-byte hash that uniquely identifies the transaction contents, encoded in Base58.
3941
+
3942
+ Note that this is different from the execution digest, which is the unique hash of the transaction effects.
3943
+ """
3944
+ digest: String!
3945
+ """
3946
+ The Base64-encoded BCS serialization of these effects, as `TransactionEffects`.
3947
+ """
3948
+ effectsBcs: Base64
3949
+ """
3950
+ A 32-byte hash that uniquely identifies the effects contents, encoded in Base58.
3951
+ """
3952
+ effectsDigest: String
3953
+ """
3954
+ The effects as a JSON blob, matching the gRPC proto format (excluding BCS).
3955
+ """
3956
+ effectsJson: JSON
3957
+ """
3958
+ The epoch this transaction was finalized in.
3959
+ """
3960
+ epoch: Epoch
3961
+ """
3962
+ Events emitted by this transaction.
3963
+ """
3964
+ events(first: Int, after: String, last: Int, before: String): EventConnection
3965
+ """
3966
+ Rich execution error information for failed transactions.
3967
+ """
3968
+ executionError: ExecutionError
3969
+ """
3970
+ Effects related to the gas object used for the transaction (costs incurred and the identity of the smashed gas object returned).
3971
+ """
3972
+ gasEffects: GasEffects
3973
+ """
3974
+ The latest version of all objects (apart from packages) that have been created or modified by this transaction, immediately following this transaction.
3975
+ """
3976
+ lamportVersion: UInt53
3977
+ """
3978
+ The before and after state of objects that were modified by this transaction.
3979
+ """
3980
+ objectChanges(first: Int, after: String, last: Int, before: String): ObjectChangeConnection
3981
+ """
3982
+ Whether the transaction executed successfully or not.
3983
+ """
3984
+ status: ExecutionStatus
3985
+ """
3986
+ Timestamp corresponding to the checkpoint this transaction was finalized in.
3987
+
3988
+ `null` for executed/simulated transactions that have not been included in a checkpoint.
3989
+ """
3990
+ timestamp: DateTime
3991
+ """
3992
+ The transaction that ran to produce these effects.
3993
+ """
3994
+ transaction: Transaction
3995
+ """
3996
+ The unchanged consensus-managed objects that were referenced by this transaction.
3997
+ """
3998
+ unchangedConsensusObjects(first: Int, after: String, last: Int, before: String): UnchangedConsensusObjectConnection
3999
+ }
4000
+
4001
+ input TransactionFilter {
4002
+ """
4003
+ Limit to transactions that interacted with the given address.
4004
+ The address could be a sender, sponsor, or recipient of the transaction.
4005
+ """
4006
+ affectedAddress: SuiAddress
4007
+ """
4008
+ Limit to transactions that interacted with the given object.
4009
+ The object could have been created, read, modified, deleted, wrapped, or unwrapped by the transaction.
4010
+ Objects that were passed as a `Receiving` input are not considered to have been affected by a transaction unless they were actually received.
4011
+ """
4012
+ affectedObject: SuiAddress
4013
+ """
4014
+ Filter to transactions that occurred strictly after the given checkpoint.
4015
+ """
4016
+ afterCheckpoint: UInt53
4017
+ """
4018
+ Filter to transactions in the given checkpoint.
4019
+ """
4020
+ atCheckpoint: UInt53
4021
+ """
4022
+ Filter to transaction that occurred strictly before the given checkpoint.
4023
+ """
4024
+ beforeCheckpoint: UInt53
4025
+ """
4026
+ Filter transactions by move function called. Calls can be filtered by the `package`, `package::module`, or the `package::module::name` of their function.
4027
+ """
4028
+ function: String
4029
+ """
4030
+ An input filter selecting for either system or programmable transactions.
4031
+ """
4032
+ kind: TransactionKindInput
4033
+ """
4034
+ Limit to transactions that were sent by the given address.
4035
+ """
4036
+ sentAddress: SuiAddress
4037
+ }
4038
+
4039
+ """
4040
+ Input argument to a Programmable Transaction Block (PTB) command.
4041
+ """
4042
+ union TransactionInput = Pure | MoveValue | OwnedOrImmutable | SharedInput | Receiving | BalanceWithdraw
4043
+
4044
+ type TransactionInputConnection {
4045
+ """
4046
+ A list of edges.
4047
+ """
4048
+ edges: [TransactionInputEdge!]!
4049
+ """
4050
+ A list of nodes.
4051
+ """
4052
+ nodes: [TransactionInput!]!
4053
+ """
4054
+ Information to aid in pagination.
4055
+ """
4056
+ pageInfo: PageInfo!
4057
+ }
4058
+
4059
+ """
4060
+ An edge in a connection.
4061
+ """
4062
+ type TransactionInputEdge {
4063
+ """
4064
+ A cursor for use in pagination
4065
+ """
4066
+ cursor: String!
4067
+ """
4068
+ The item at the end of the edge
4069
+ """
4070
+ node: TransactionInput!
4071
+ }
4072
+
4073
+ """
4074
+ Different types of transactions that can be executed on the Sui network.
4075
+ """
4076
+ union TransactionKind = GenesisTransaction | ConsensusCommitPrologueTransaction | ChangeEpochTransaction | RandomnessStateUpdateTransaction | AuthenticatorStateUpdateTransaction | EndOfEpochTransaction | ProgrammableTransaction | ProgrammableSystemTransaction
4077
+
4078
+ """
4079
+ An input filter selecting for either system or programmable transactions.
4080
+ """
4081
+ enum TransactionKindInput {
4082
+ """
4083
+ A system transaction can be one of several types of transactions.
4084
+ See [unions/transaction-block-kind] for more details.
4085
+ """
4086
+ SYSTEM_TX
4087
+ """
4088
+ A user submitted transaction block.
4089
+ """
4090
+ PROGRAMMABLE_TX
4091
+ }
4092
+
4093
+ """
4094
+ Transfers `inputs` to `address`. All inputs must have the `store` ability (allows public transfer) and must not be previously immutable or shared.
4095
+ """
4096
+ type TransferObjectsCommand {
4097
+ """
4098
+ The address to transfer to.
4099
+ """
4100
+ address: TransactionArgument
4101
+ """
4102
+ The objects to transfer.
4103
+ """
4104
+ inputs: [TransactionArgument!]!
4105
+ }
4106
+
4107
+ """
4108
+ The result of another command.
4109
+ """
4110
+ type TxResult {
4111
+ """
4112
+ The index of the command that produced this result.
4113
+ """
4114
+ cmd: Int
4115
+ """
4116
+ For nested results, the index within the result.
4117
+ """
4118
+ ix: Int
4119
+ }
4120
+
4121
+ """
4122
+ Information about which previous versions of a package introduced its types.
4123
+ """
4124
+ type TypeOrigin {
4125
+ """
4126
+ The storage ID of the package that first defined this type.
4127
+ """
4128
+ definingId: SuiAddress
4129
+ """
4130
+ Module defining the type.
4131
+ """
4132
+ module: String
4133
+ """
4134
+ Name of the struct.
4135
+ """
4136
+ struct: String
4137
+ }
4138
+
4139
+ """
4140
+ An unsigned integer that can hold values up to 2^53 - 1. This can be treated similarly to `Int`, but it is guaranteed to be non-negative, and it may be larger than 2^32 - 1.
4141
+ """
4142
+ scalar UInt53
4143
+
4144
+ """
4145
+ Details pertaining to consensus-managed objects that are referenced by but not changed by a transaction.
4146
+ """
4147
+ union UnchangedConsensusObject = ConsensusObjectRead | MutateConsensusStreamEnded | ReadConsensusStreamEnded | ConsensusObjectCancelled | PerEpochConfig
4148
+
4149
+ type UnchangedConsensusObjectConnection {
4150
+ """
4151
+ A list of edges.
4152
+ """
4153
+ edges: [UnchangedConsensusObjectEdge!]!
4154
+ """
4155
+ A list of nodes.
4156
+ """
4157
+ nodes: [UnchangedConsensusObject!]!
4158
+ """
4159
+ Information to aid in pagination.
4160
+ """
4161
+ pageInfo: PageInfo!
4162
+ }
4163
+
4164
+ """
4165
+ An edge in a connection.
4166
+ """
4167
+ type UnchangedConsensusObjectEdge {
4168
+ """
4169
+ A cursor for use in pagination
4170
+ """
4171
+ cursor: String!
4172
+ """
4173
+ The item at the end of the edge
4174
+ """
4175
+ node: UnchangedConsensusObject!
4176
+ }
4177
+
4178
+ """
4179
+ Upgrades a Move Package.
4180
+ """
4181
+ type UpgradeCommand {
4182
+ """
4183
+ ID of the package being upgraded.
4184
+ """
4185
+ currentPackage: SuiAddress
4186
+ """
4187
+ IDs of the transitive dependencies of the package to be published.
4188
+ """
4189
+ dependencies: [SuiAddress!]
4190
+ """
4191
+ Bytecode for the modules to be published, BCS serialized and Base64 encoded.
4192
+ """
4193
+ modules: [Base64!]
4194
+ """
4195
+ The `UpgradeTicket` authorizing the upgrade.
4196
+ """
4197
+ upgradeTicket: TransactionArgument
4198
+ }
4199
+
4200
+ type UserSignature {
4201
+ """
4202
+ The signature bytes, Base64-encoded.
4203
+ For simple signatures: flag || signature || pubkey
4204
+ For complex signatures: flag || bcs_serialized_struct
4205
+ """
4206
+ signatureBytes: Base64
4207
+ }
4208
+
4209
+ type Validator {
4210
+ """
4211
+ The number of epochs for which this validator has been below the low stake threshold.
4212
+ """
4213
+ atRisk: UInt53
4214
+ """
4215
+ On-chain representation of the underlying `0x3::validator::Validator` value.
4216
+ """
4217
+ contents: MoveValue
4218
+ """
4219
+ Other validators this validator has reported.
4220
+ """
4221
+ reportRecords(first: Int, before: String, last: Int, after: String): ValidatorConnection
4222
+ }
4223
+
4224
+ type ValidatorAggregatedSignature {
4225
+ """
4226
+ The epoch when this aggregate signature was produced.
4227
+ """
4228
+ epoch: Epoch
4229
+ """
4230
+ The Base64 encoded BLS12381 aggregated signature.
4231
+ """
4232
+ signature: Base64
4233
+ """
4234
+ The indexes of validators that contributed to this signature.
4235
+ """
4236
+ signersMap: [Int!]!
4237
+ }
4238
+
4239
+ type ValidatorConnection {
4240
+ """
4241
+ A list of edges.
4242
+ """
4243
+ edges: [ValidatorEdge!]!
4244
+ """
4245
+ A list of nodes.
4246
+ """
4247
+ nodes: [Validator!]!
4248
+ """
4249
+ Information to aid in pagination.
4250
+ """
4251
+ pageInfo: PageInfo!
4252
+ }
4253
+
4254
+ """
4255
+ An edge in a connection.
4256
+ """
4257
+ type ValidatorEdge {
4258
+ """
4259
+ A cursor for use in pagination
4260
+ """
4261
+ cursor: String!
4262
+ """
4263
+ The item at the end of the edge
4264
+ """
4265
+ node: Validator!
4266
+ }
4267
+
4268
+ """
4269
+ Representation of `0x3::validator_set::ValidatorSet`.
4270
+ """
4271
+ type ValidatorSet {
4272
+ """
4273
+ The validators currently in the committee for this validator set.
4274
+ """
4275
+ activeValidators(first: Int, after: String, last: Int, before: String): ValidatorConnection
4276
+ """
4277
+ On-chain representation of the underlying `0x3::validator_set::ValidatorSet` value.
4278
+ """
4279
+ contents: MoveValue
4280
+ }
4281
+
4282
+ """
4283
+ Filter for paginating the history of an Object or MovePackage.
4284
+ """
4285
+ input VersionFilter {
4286
+ """
4287
+ Filter to versions that are strictly newer than this one, defaults to fetching from the earliest version known to this RPC (this could be the initial version, or some later version if the initial version has been pruned).
4288
+ """
4289
+ afterVersion: UInt53
4290
+ """
4291
+ Filter to versions that are strictly older than this one, defaults to fetching up to the latest version (inclusive).
4292
+ """
4293
+ beforeVersion: UInt53
4294
+ }
4295
+
4296
+ """
4297
+ The account to withdraw funds from.
4298
+ """
4299
+ enum WithdrawFrom {
4300
+ """
4301
+ The funds are withdrawn from the transaction sender's account.
4302
+ """
4303
+ SENDER
4304
+ """
4305
+ The funds are withdrawn from the sponsor's account.
4306
+ """
4307
+ SPONSOR
4308
+ }
4309
+
4310
+ type WithdrawMaxAmountU64 {
4311
+ amount: BigInt
4312
+ }
4313
+
4314
+ """
4315
+ Reservation details for a withdrawal.
4316
+ """
4317
+ union WithdrawalReservation = WithdrawMaxAmountU64
4318
+
4319
+ """
4320
+ System transaction for writing the pre-computed storage cost for accumulator objects.
4321
+ """
4322
+ type WriteAccumulatorStorageCostTransaction {
4323
+ """
4324
+ A workaround to define an empty variant of a GraphQL union.
4325
+ """
4326
+ _: Boolean
4327
+ }
4328
+
4329
+ """
4330
+ An enum that specifies the intent scope to be used to parse the bytes for signature verification.
4331
+ """
4332
+ enum ZkLoginIntentScope {
4333
+ """
4334
+ Indicates that the bytes are to be parsed as transaction data bytes.
4335
+ """
4336
+ TRANSACTION_DATA
4337
+ """
4338
+ Indicates that the bytes are to be parsed as a personal message.
4339
+ """
4340
+ PERSONAL_MESSAGE
4341
+ }
4342
+
4343
+ """
4344
+ The result of the zkLogin signature verification.
4345
+ """
4346
+ type ZkLoginVerifyResult {
4347
+ """
4348
+ The error field capture reasons why the signature could not be verified, assuming the inputs are valid and there are no internal errors.
4349
+ """
4350
+ error: String
4351
+ """
4352
+ The boolean result of the verification. If true, errors should be empty.
4353
+ """
4354
+ success: Boolean
4355
+ }
4356
+
4357
+ directive @include(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
4358
+ directive @skip(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
4359
+ schema {
4360
+ query: Query
4361
+ mutation: Mutation
4362
+ }