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