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