@mysten/sui 1.45.2 → 2.0.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 (1656) hide show
  1. package/CHANGELOG.md +172 -2
  2. package/README.md +94 -64
  3. package/dist/_virtual/rolldown_runtime.mjs +18 -0
  4. package/dist/bcs/bcs.d.mts +27 -0
  5. package/dist/bcs/bcs.d.mts.map +1 -0
  6. package/dist/bcs/bcs.mjs +293 -0
  7. package/dist/bcs/bcs.mjs.map +1 -0
  8. package/dist/bcs/effects.mjs +224 -0
  9. package/dist/bcs/effects.mjs.map +1 -0
  10. package/dist/bcs/index.d.mts +3051 -0
  11. package/dist/bcs/index.d.mts.map +1 -0
  12. package/dist/bcs/index.mjs +62 -0
  13. package/dist/bcs/index.mjs.map +1 -0
  14. package/dist/bcs/pure.d.mts +26 -0
  15. package/dist/bcs/pure.d.mts.map +1 -0
  16. package/dist/bcs/pure.mjs +29 -0
  17. package/dist/bcs/pure.mjs.map +1 -0
  18. package/dist/bcs/type-tag-serializer.d.mts +12 -0
  19. package/dist/bcs/type-tag-serializer.d.mts.map +1 -0
  20. package/dist/bcs/type-tag-serializer.mjs +57 -0
  21. package/dist/bcs/type-tag-serializer.mjs.map +1 -0
  22. package/dist/bcs/types.d.mts +40 -0
  23. package/dist/bcs/types.d.mts.map +1 -0
  24. package/dist/client/cache.d.mts +19 -0
  25. package/dist/client/cache.d.mts.map +1 -0
  26. package/dist/client/cache.mjs +48 -0
  27. package/dist/client/cache.mjs.map +1 -0
  28. package/dist/client/client.d.mts +21 -0
  29. package/dist/client/client.d.mts.map +1 -0
  30. package/dist/client/client.mjs +19 -0
  31. package/dist/client/client.mjs.map +1 -0
  32. package/dist/client/core-resolver.d.mts +9 -0
  33. package/dist/client/core-resolver.d.mts.map +1 -0
  34. package/dist/client/core-resolver.mjs +245 -0
  35. package/dist/client/core-resolver.mjs.map +1 -0
  36. package/dist/client/core.d.mts +47 -0
  37. package/dist/client/core.d.mts.map +1 -0
  38. package/dist/client/core.mjs +120 -0
  39. package/dist/client/core.mjs.map +1 -0
  40. package/dist/client/errors.mjs +22 -0
  41. package/dist/client/errors.mjs.map +1 -0
  42. package/dist/client/index.d.mts +7 -0
  43. package/dist/client/index.mjs +6 -0
  44. package/dist/client/mvr.d.mts +12 -0
  45. package/dist/client/mvr.d.mts.map +1 -0
  46. package/dist/client/mvr.mjs +250 -0
  47. package/dist/client/mvr.mjs.map +1 -0
  48. package/dist/client/transaction-resolver.mjs +405 -0
  49. package/dist/client/transaction-resolver.mjs.map +1 -0
  50. package/dist/client/types.d.mts +702 -0
  51. package/dist/client/types.d.mts.map +1 -0
  52. package/dist/client/utils.d.mts +35 -0
  53. package/dist/client/utils.d.mts.map +1 -0
  54. package/dist/client/utils.mjs +381 -0
  55. package/dist/client/utils.mjs.map +1 -0
  56. package/dist/cryptography/index.d.mts +7 -0
  57. package/dist/cryptography/index.mjs +8 -0
  58. package/dist/cryptography/intent.d.mts +11 -0
  59. package/dist/cryptography/intent.d.mts.map +1 -0
  60. package/dist/cryptography/intent.mjs +20 -0
  61. package/dist/cryptography/intent.mjs.map +1 -0
  62. package/dist/cryptography/keypair.d.mts +83 -0
  63. package/dist/cryptography/keypair.d.mts.map +1 -0
  64. package/dist/cryptography/keypair.mjs +96 -0
  65. package/dist/cryptography/keypair.mjs.map +1 -0
  66. package/dist/cryptography/mnemonics.d.mts +31 -0
  67. package/dist/cryptography/mnemonics.d.mts.map +1 -0
  68. package/dist/cryptography/mnemonics.mjs +45 -0
  69. package/dist/cryptography/mnemonics.mjs.map +1 -0
  70. package/dist/cryptography/publickey.d.mts +65 -0
  71. package/dist/cryptography/publickey.d.mts.map +1 -0
  72. package/dist/cryptography/publickey.mjs +105 -0
  73. package/dist/cryptography/publickey.mjs.map +1 -0
  74. package/dist/cryptography/signature-scheme.d.mts +28 -0
  75. package/dist/cryptography/signature-scheme.d.mts.map +1 -0
  76. package/dist/cryptography/signature-scheme.mjs +27 -0
  77. package/dist/cryptography/signature-scheme.mjs.map +1 -0
  78. package/dist/cryptography/signature.d.mts +75 -0
  79. package/dist/cryptography/signature.d.mts.map +1 -0
  80. package/dist/cryptography/signature.mjs +46 -0
  81. package/dist/cryptography/signature.mjs.map +1 -0
  82. package/dist/faucet/faucet.d.mts +25 -0
  83. package/dist/faucet/faucet.d.mts.map +1 -0
  84. package/dist/faucet/faucet.mjs +42 -0
  85. package/dist/faucet/faucet.mjs.map +1 -0
  86. package/dist/faucet/index.d.mts +2 -0
  87. package/dist/faucet/index.mjs +3 -0
  88. package/dist/graphql/client.d.mts +86 -0
  89. package/dist/graphql/client.d.mts.map +1 -0
  90. package/dist/graphql/client.mjs +115 -0
  91. package/dist/graphql/client.mjs.map +1 -0
  92. package/dist/graphql/core.d.mts +37 -0
  93. package/dist/graphql/core.d.mts.map +1 -0
  94. package/dist/graphql/core.mjs +598 -0
  95. package/dist/graphql/core.mjs.map +1 -0
  96. package/dist/graphql/generated/queries.d.mts +14 -0
  97. package/dist/graphql/generated/queries.d.mts.map +1 -0
  98. package/dist/graphql/generated/queries.mjs +780 -0
  99. package/dist/graphql/generated/queries.mjs.map +1 -0
  100. package/dist/graphql/generated/tada-env.d.mts +11244 -0
  101. package/dist/graphql/generated/tada-env.d.mts.map +1 -0
  102. package/dist/graphql/index.d.mts +2 -0
  103. package/dist/graphql/index.mjs +3 -0
  104. package/dist/graphql/schema/index.d.mts +13 -0
  105. package/dist/graphql/schema/index.d.mts.map +1 -0
  106. package/dist/graphql/schema/index.mjs +8 -0
  107. package/dist/graphql/schema/index.mjs.map +1 -0
  108. package/dist/graphql/types.d.mts +75 -0
  109. package/dist/graphql/types.d.mts.map +1 -0
  110. package/dist/grpc/client.d.mts +62 -0
  111. package/dist/grpc/client.d.mts.map +1 -0
  112. package/dist/grpc/client.mjs +102 -0
  113. package/dist/grpc/client.mjs.map +1 -0
  114. package/dist/grpc/core.d.mts +39 -0
  115. package/dist/grpc/core.d.mts.map +1 -0
  116. package/dist/grpc/core.mjs +789 -0
  117. package/dist/grpc/core.mjs.map +1 -0
  118. package/dist/grpc/index.d.mts +4 -0
  119. package/dist/grpc/index.mjs +5 -0
  120. package/dist/grpc/proto/google/protobuf/any.d.mts +173 -0
  121. package/dist/grpc/proto/google/protobuf/any.d.mts.map +1 -0
  122. package/dist/grpc/proto/google/protobuf/any.mjs +101 -0
  123. package/dist/grpc/proto/google/protobuf/any.mjs.map +1 -0
  124. package/dist/grpc/proto/google/protobuf/duration.d.mts +106 -0
  125. package/dist/grpc/proto/google/protobuf/duration.d.mts.map +1 -0
  126. package/dist/grpc/proto/google/protobuf/duration.mjs +62 -0
  127. package/dist/grpc/proto/google/protobuf/duration.mjs.map +1 -0
  128. package/dist/grpc/proto/google/protobuf/field_mask.d.mts +233 -0
  129. package/dist/grpc/proto/google/protobuf/field_mask.d.mts.map +1 -0
  130. package/dist/grpc/proto/google/protobuf/field_mask.mjs +46 -0
  131. package/dist/grpc/proto/google/protobuf/field_mask.mjs.map +1 -0
  132. package/dist/grpc/proto/google/protobuf/struct.d.mts +171 -0
  133. package/dist/grpc/proto/google/protobuf/struct.d.mts.map +1 -0
  134. package/dist/grpc/proto/google/protobuf/struct.mjs +208 -0
  135. package/dist/grpc/proto/google/protobuf/struct.mjs.map +1 -0
  136. package/dist/grpc/proto/google/protobuf/timestamp.d.mts +147 -0
  137. package/dist/grpc/proto/google/protobuf/timestamp.d.mts.map +1 -0
  138. package/dist/grpc/proto/google/protobuf/timestamp.mjs +87 -0
  139. package/dist/grpc/proto/google/protobuf/timestamp.mjs.map +1 -0
  140. package/dist/grpc/proto/google/rpc/status.d.mts +51 -0
  141. package/dist/grpc/proto/google/rpc/status.d.mts.map +1 -0
  142. package/dist/grpc/proto/google/rpc/status.mjs +37 -0
  143. package/dist/grpc/proto/google/rpc/status.mjs.map +1 -0
  144. package/dist/grpc/proto/sui/rpc/v2/argument.d.mts +71 -0
  145. package/dist/grpc/proto/sui/rpc/v2/argument.d.mts.map +1 -0
  146. package/dist/grpc/proto/sui/rpc/v2/argument.mjs +74 -0
  147. package/dist/grpc/proto/sui/rpc/v2/argument.mjs.map +1 -0
  148. package/dist/grpc/proto/sui/rpc/v2/balance_change.d.mts +39 -0
  149. package/dist/grpc/proto/sui/rpc/v2/balance_change.d.mts.map +1 -0
  150. package/dist/grpc/proto/sui/rpc/v2/balance_change.mjs +38 -0
  151. package/dist/grpc/proto/sui/rpc/v2/balance_change.mjs.map +1 -0
  152. package/dist/grpc/proto/sui/rpc/v2/bcs.d.mts +35 -0
  153. package/dist/grpc/proto/sui/rpc/v2/bcs.d.mts.map +1 -0
  154. package/dist/grpc/proto/sui/rpc/v2/bcs.mjs +28 -0
  155. package/dist/grpc/proto/sui/rpc/v2/bcs.mjs.map +1 -0
  156. package/dist/grpc/proto/sui/rpc/v2/checkpoint.d.mts +73 -0
  157. package/dist/grpc/proto/sui/rpc/v2/checkpoint.d.mts.map +1 -0
  158. package/dist/grpc/proto/sui/rpc/v2/checkpoint.mjs +68 -0
  159. package/dist/grpc/proto/sui/rpc/v2/checkpoint.mjs.map +1 -0
  160. package/dist/grpc/proto/sui/rpc/v2/checkpoint_contents.d.mts +104 -0
  161. package/dist/grpc/proto/sui/rpc/v2/checkpoint_contents.d.mts.map +1 -0
  162. package/dist/grpc/proto/sui/rpc/v2/checkpoint_contents.mjs +100 -0
  163. package/dist/grpc/proto/sui/rpc/v2/checkpoint_contents.mjs.map +1 -0
  164. package/dist/grpc/proto/sui/rpc/v2/checkpoint_summary.d.mts +200 -0
  165. package/dist/grpc/proto/sui/rpc/v2/checkpoint_summary.d.mts.map +1 -0
  166. package/dist/grpc/proto/sui/rpc/v2/checkpoint_summary.mjs +180 -0
  167. package/dist/grpc/proto/sui/rpc/v2/checkpoint_summary.mjs.map +1 -0
  168. package/dist/grpc/proto/sui/rpc/v2/effects.d.mts +398 -0
  169. package/dist/grpc/proto/sui/rpc/v2/effects.d.mts.map +1 -0
  170. package/dist/grpc/proto/sui/rpc/v2/effects.mjs +438 -0
  171. package/dist/grpc/proto/sui/rpc/v2/effects.mjs.map +1 -0
  172. package/dist/grpc/proto/sui/rpc/v2/epoch.d.mts +67 -0
  173. package/dist/grpc/proto/sui/rpc/v2/epoch.d.mts.map +1 -0
  174. package/dist/grpc/proto/sui/rpc/v2/epoch.mjs +83 -0
  175. package/dist/grpc/proto/sui/rpc/v2/epoch.mjs.map +1 -0
  176. package/dist/grpc/proto/sui/rpc/v2/error_reason.d.mts +21 -0
  177. package/dist/grpc/proto/sui/rpc/v2/error_reason.d.mts.map +1 -0
  178. package/dist/grpc/proto/sui/rpc/v2/error_reason.mjs +23 -0
  179. package/dist/grpc/proto/sui/rpc/v2/error_reason.mjs.map +1 -0
  180. package/dist/grpc/proto/sui/rpc/v2/event.d.mts +93 -0
  181. package/dist/grpc/proto/sui/rpc/v2/event.d.mts.map +1 -0
  182. package/dist/grpc/proto/sui/rpc/v2/event.mjs +89 -0
  183. package/dist/grpc/proto/sui/rpc/v2/event.mjs.map +1 -0
  184. package/dist/grpc/proto/sui/rpc/v2/executed_transaction.d.mts +85 -0
  185. package/dist/grpc/proto/sui/rpc/v2/executed_transaction.d.mts.map +1 -0
  186. package/dist/grpc/proto/sui/rpc/v2/executed_transaction.mjs +83 -0
  187. package/dist/grpc/proto/sui/rpc/v2/executed_transaction.mjs.map +1 -0
  188. package/dist/grpc/proto/sui/rpc/v2/execution_status.d.mts +914 -0
  189. package/dist/grpc/proto/sui/rpc/v2/execution_status.d.mts.map +1 -0
  190. package/dist/grpc/proto/sui/rpc/v2/execution_status.mjs +916 -0
  191. package/dist/grpc/proto/sui/rpc/v2/execution_status.mjs.map +1 -0
  192. package/dist/grpc/proto/sui/rpc/v2/gas_cost_summary.d.mts +46 -0
  193. package/dist/grpc/proto/sui/rpc/v2/gas_cost_summary.d.mts.map +1 -0
  194. package/dist/grpc/proto/sui/rpc/v2/gas_cost_summary.mjs +49 -0
  195. package/dist/grpc/proto/sui/rpc/v2/gas_cost_summary.mjs.map +1 -0
  196. package/dist/grpc/proto/sui/rpc/v2/input.d.mts +190 -0
  197. package/dist/grpc/proto/sui/rpc/v2/input.d.mts.map +1 -0
  198. package/dist/grpc/proto/sui/rpc/v2/input.mjs +196 -0
  199. package/dist/grpc/proto/sui/rpc/v2/input.mjs.map +1 -0
  200. package/dist/grpc/proto/sui/rpc/v2/jwk.d.mts +75 -0
  201. package/dist/grpc/proto/sui/rpc/v2/jwk.d.mts.map +1 -0
  202. package/dist/grpc/proto/sui/rpc/v2/jwk.mjs +66 -0
  203. package/dist/grpc/proto/sui/rpc/v2/jwk.mjs.map +1 -0
  204. package/dist/grpc/proto/sui/rpc/v2/ledger_service.client.d.mts +87 -0
  205. package/dist/grpc/proto/sui/rpc/v2/ledger_service.client.d.mts.map +1 -0
  206. package/dist/grpc/proto/sui/rpc/v2/ledger_service.client.mjs +70 -0
  207. package/dist/grpc/proto/sui/rpc/v2/ledger_service.client.mjs.map +1 -0
  208. package/dist/grpc/proto/sui/rpc/v2/ledger_service.d.mts +424 -0
  209. package/dist/grpc/proto/sui/rpc/v2/ledger_service.d.mts.map +1 -0
  210. package/dist/grpc/proto/sui/rpc/v2/ledger_service.mjs +411 -0
  211. package/dist/grpc/proto/sui/rpc/v2/ledger_service.mjs.map +1 -0
  212. package/dist/grpc/proto/sui/rpc/v2/move_package.d.mts +584 -0
  213. package/dist/grpc/proto/sui/rpc/v2/move_package.d.mts.map +1 -0
  214. package/dist/grpc/proto/sui/rpc/v2/move_package.mjs +574 -0
  215. package/dist/grpc/proto/sui/rpc/v2/move_package.mjs.map +1 -0
  216. package/dist/grpc/proto/sui/rpc/v2/move_package_service.client.d.mts +59 -0
  217. package/dist/grpc/proto/sui/rpc/v2/move_package_service.client.d.mts.map +1 -0
  218. package/dist/grpc/proto/sui/rpc/v2/move_package_service.client.mjs +47 -0
  219. package/dist/grpc/proto/sui/rpc/v2/move_package_service.client.mjs.map +1 -0
  220. package/dist/grpc/proto/sui/rpc/v2/move_package_service.d.mts +232 -0
  221. package/dist/grpc/proto/sui/rpc/v2/move_package_service.d.mts.map +1 -0
  222. package/dist/grpc/proto/sui/rpc/v2/move_package_service.mjs +231 -0
  223. package/dist/grpc/proto/sui/rpc/v2/move_package_service.mjs.map +1 -0
  224. package/dist/grpc/proto/sui/rpc/v2/name_service.client.d.mts +43 -0
  225. package/dist/grpc/proto/sui/rpc/v2/name_service.client.d.mts.map +1 -0
  226. package/dist/grpc/proto/sui/rpc/v2/name_service.client.mjs +33 -0
  227. package/dist/grpc/proto/sui/rpc/v2/name_service.client.mjs.map +1 -0
  228. package/dist/grpc/proto/sui/rpc/v2/name_service.d.mts +149 -0
  229. package/dist/grpc/proto/sui/rpc/v2/name_service.d.mts.map +1 -0
  230. package/dist/grpc/proto/sui/rpc/v2/name_service.mjs +135 -0
  231. package/dist/grpc/proto/sui/rpc/v2/name_service.mjs.map +1 -0
  232. package/dist/grpc/proto/sui/rpc/v2/object.d.mts +132 -0
  233. package/dist/grpc/proto/sui/rpc/v2/object.d.mts.map +1 -0
  234. package/dist/grpc/proto/sui/rpc/v2/object.mjs +125 -0
  235. package/dist/grpc/proto/sui/rpc/v2/object.mjs.map +1 -0
  236. package/dist/grpc/proto/sui/rpc/v2/object_reference.d.mts +39 -0
  237. package/dist/grpc/proto/sui/rpc/v2/object_reference.d.mts.map +1 -0
  238. package/dist/grpc/proto/sui/rpc/v2/object_reference.mjs +39 -0
  239. package/dist/grpc/proto/sui/rpc/v2/object_reference.mjs.map +1 -0
  240. package/dist/grpc/proto/sui/rpc/v2/owner.d.mts +66 -0
  241. package/dist/grpc/proto/sui/rpc/v2/owner.d.mts.map +1 -0
  242. package/dist/grpc/proto/sui/rpc/v2/owner.mjs +69 -0
  243. package/dist/grpc/proto/sui/rpc/v2/owner.mjs.map +1 -0
  244. package/dist/grpc/proto/sui/rpc/v2/protocol_config.d.mts +35 -0
  245. package/dist/grpc/proto/sui/rpc/v2/protocol_config.d.mts.map +1 -0
  246. package/dist/grpc/proto/sui/rpc/v2/protocol_config.mjs +45 -0
  247. package/dist/grpc/proto/sui/rpc/v2/protocol_config.mjs.map +1 -0
  248. package/dist/grpc/proto/sui/rpc/v2/signature.d.mts +635 -0
  249. package/dist/grpc/proto/sui/rpc/v2/signature.d.mts.map +1 -0
  250. package/dist/grpc/proto/sui/rpc/v2/signature.mjs +573 -0
  251. package/dist/grpc/proto/sui/rpc/v2/signature.mjs.map +1 -0
  252. package/dist/grpc/proto/sui/rpc/v2/signature_scheme.d.mts +44 -0
  253. package/dist/grpc/proto/sui/rpc/v2/signature_scheme.d.mts.map +1 -0
  254. package/dist/grpc/proto/sui/rpc/v2/signature_scheme.mjs +46 -0
  255. package/dist/grpc/proto/sui/rpc/v2/signature_scheme.mjs.map +1 -0
  256. package/dist/grpc/proto/sui/rpc/v2/signature_verification_service.client.d.mts +39 -0
  257. package/dist/grpc/proto/sui/rpc/v2/signature_verification_service.client.d.mts.map +1 -0
  258. package/dist/grpc/proto/sui/rpc/v2/signature_verification_service.client.mjs +28 -0
  259. package/dist/grpc/proto/sui/rpc/v2/signature_verification_service.client.mjs.map +1 -0
  260. package/dist/grpc/proto/sui/rpc/v2/signature_verification_service.d.mts +84 -0
  261. package/dist/grpc/proto/sui/rpc/v2/signature_verification_service.d.mts.map +1 -0
  262. package/dist/grpc/proto/sui/rpc/v2/signature_verification_service.mjs +77 -0
  263. package/dist/grpc/proto/sui/rpc/v2/signature_verification_service.mjs.map +1 -0
  264. package/dist/grpc/proto/sui/rpc/v2/state_service.client.d.mts +67 -0
  265. package/dist/grpc/proto/sui/rpc/v2/state_service.client.d.mts.map +1 -0
  266. package/dist/grpc/proto/sui/rpc/v2/state_service.client.mjs +54 -0
  267. package/dist/grpc/proto/sui/rpc/v2/state_service.client.mjs.map +1 -0
  268. package/dist/grpc/proto/sui/rpc/v2/state_service.d.mts +709 -0
  269. package/dist/grpc/proto/sui/rpc/v2/state_service.d.mts.map +1 -0
  270. package/dist/grpc/proto/sui/rpc/v2/state_service.mjs +672 -0
  271. package/dist/grpc/proto/sui/rpc/v2/state_service.mjs.map +1 -0
  272. package/dist/grpc/proto/sui/rpc/v2/subscription_service.client.d.mts +59 -0
  273. package/dist/grpc/proto/sui/rpc/v2/subscription_service.client.d.mts.map +1 -0
  274. package/dist/grpc/proto/sui/rpc/v2/subscription_service.client.mjs +38 -0
  275. package/dist/grpc/proto/sui/rpc/v2/subscription_service.client.mjs.map +1 -0
  276. package/dist/grpc/proto/sui/rpc/v2/subscription_service.d.mts +62 -0
  277. package/dist/grpc/proto/sui/rpc/v2/subscription_service.d.mts.map +1 -0
  278. package/dist/grpc/proto/sui/rpc/v2/subscription_service.mjs +55 -0
  279. package/dist/grpc/proto/sui/rpc/v2/subscription_service.mjs.map +1 -0
  280. package/dist/grpc/proto/sui/rpc/v2/system_state.d.mts +689 -0
  281. package/dist/grpc/proto/sui/rpc/v2/system_state.d.mts.map +1 -0
  282. package/dist/grpc/proto/sui/rpc/v2/system_state.mjs +733 -0
  283. package/dist/grpc/proto/sui/rpc/v2/system_state.mjs.map +1 -0
  284. package/dist/grpc/proto/sui/rpc/v2/transaction.d.mts +1403 -0
  285. package/dist/grpc/proto/sui/rpc/v2/transaction.d.mts.map +1 -0
  286. package/dist/grpc/proto/sui/rpc/v2/transaction.mjs +1280 -0
  287. package/dist/grpc/proto/sui/rpc/v2/transaction.mjs.map +1 -0
  288. package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.client.d.mts +43 -0
  289. package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.client.d.mts.map +1 -0
  290. package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.client.mjs +33 -0
  291. package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.client.mjs.map +1 -0
  292. package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.d.mts +189 -0
  293. package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.d.mts.map +1 -0
  294. package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.mjs +193 -0
  295. package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.mjs.map +1 -0
  296. package/dist/grpc/proto/types.d.mts +39 -0
  297. package/dist/grpc/proto/types.d.mts.map +1 -0
  298. package/dist/grpc/proto/types.mjs +240 -0
  299. package/dist/grpc/proto/types.mjs.map +1 -0
  300. package/dist/jsonRpc/client.d.mts +350 -0
  301. package/dist/jsonRpc/client.d.mts.map +1 -0
  302. package/dist/jsonRpc/client.mjs +710 -0
  303. package/dist/jsonRpc/client.mjs.map +1 -0
  304. package/dist/jsonRpc/core.d.mts +78 -0
  305. package/dist/jsonRpc/core.d.mts.map +1 -0
  306. package/dist/jsonRpc/core.mjs +752 -0
  307. package/dist/jsonRpc/core.mjs.map +1 -0
  308. package/dist/jsonRpc/errors.d.mts +15 -0
  309. package/dist/jsonRpc/errors.d.mts.map +1 -0
  310. package/dist/jsonRpc/errors.mjs +38 -0
  311. package/dist/jsonRpc/errors.mjs.map +1 -0
  312. package/dist/jsonRpc/http-transport.d.mts +48 -0
  313. package/dist/jsonRpc/http-transport.d.mts.map +1 -0
  314. package/dist/jsonRpc/http-transport.mjs +68 -0
  315. package/dist/jsonRpc/http-transport.mjs.map +1 -0
  316. package/dist/jsonRpc/index.d.mts +12 -0
  317. package/dist/jsonRpc/index.mjs +6 -0
  318. package/dist/jsonRpc/network.d.mts +5 -0
  319. package/dist/jsonRpc/network.d.mts.map +1 -0
  320. package/dist/jsonRpc/network.mjs +14 -0
  321. package/dist/jsonRpc/network.mjs.map +1 -0
  322. package/dist/jsonRpc/rpc-websocket-client.d.mts +26 -0
  323. package/dist/jsonRpc/rpc-websocket-client.d.mts.map +1 -0
  324. package/dist/jsonRpc/rpc-websocket-client.mjs +135 -0
  325. package/dist/jsonRpc/rpc-websocket-client.mjs.map +1 -0
  326. package/dist/jsonRpc/types/chain.d.mts +101 -0
  327. package/dist/jsonRpc/types/chain.d.mts.map +1 -0
  328. package/dist/jsonRpc/types/changes.d.mts +24 -0
  329. package/dist/jsonRpc/types/changes.d.mts.map +1 -0
  330. package/dist/jsonRpc/types/coins.d.mts +11 -0
  331. package/dist/jsonRpc/types/coins.d.mts.map +1 -0
  332. package/dist/jsonRpc/types/common.d.mts +6 -0
  333. package/dist/jsonRpc/types/common.d.mts.map +1 -0
  334. package/dist/jsonRpc/types/generated.d.mts +1523 -0
  335. package/dist/jsonRpc/types/generated.d.mts.map +1 -0
  336. package/dist/jsonRpc/types/index.d.mts +6 -0
  337. package/dist/jsonRpc/types/params.d.mts +655 -0
  338. package/dist/jsonRpc/types/params.d.mts.map +1 -0
  339. package/dist/keypairs/ed25519/ed25519-hd-key.mjs +45 -0
  340. package/dist/keypairs/ed25519/ed25519-hd-key.mjs.map +1 -0
  341. package/dist/keypairs/ed25519/index.d.mts +3 -0
  342. package/dist/keypairs/ed25519/index.mjs +4 -0
  343. package/dist/keypairs/ed25519/keypair.d.mts +79 -0
  344. package/dist/keypairs/ed25519/keypair.d.mts.map +1 -0
  345. package/dist/keypairs/ed25519/keypair.mjs +125 -0
  346. package/dist/keypairs/ed25519/keypair.mjs.map +1 -0
  347. package/dist/keypairs/ed25519/publickey.d.mts +35 -0
  348. package/dist/keypairs/ed25519/publickey.d.mts.map +1 -0
  349. package/dist/keypairs/ed25519/publickey.mjs +61 -0
  350. package/dist/keypairs/ed25519/publickey.mjs.map +1 -0
  351. package/dist/keypairs/passkey/index.d.mts +3 -0
  352. package/dist/keypairs/passkey/index.mjs +4 -0
  353. package/dist/keypairs/passkey/keypair.d.mts +116 -0
  354. package/dist/keypairs/passkey/keypair.d.mts.map +1 -0
  355. package/dist/keypairs/passkey/keypair.mjs +221 -0
  356. package/dist/keypairs/passkey/keypair.mjs.map +1 -0
  357. package/dist/keypairs/passkey/publickey.d.mts +35 -0
  358. package/dist/keypairs/passkey/publickey.d.mts.map +1 -0
  359. package/dist/keypairs/passkey/publickey.mjs +142 -0
  360. package/dist/keypairs/passkey/publickey.mjs.map +1 -0
  361. package/dist/keypairs/passkey/types.d.mts +16 -0
  362. package/dist/keypairs/passkey/types.d.mts.map +1 -0
  363. package/dist/keypairs/secp256k1/index.d.mts +3 -0
  364. package/dist/keypairs/secp256k1/index.mjs +4 -0
  365. package/dist/keypairs/secp256k1/keypair.d.mts +78 -0
  366. package/dist/keypairs/secp256k1/keypair.d.mts.map +1 -0
  367. package/dist/keypairs/secp256k1/keypair.mjs +125 -0
  368. package/dist/keypairs/secp256k1/keypair.mjs.map +1 -0
  369. package/dist/keypairs/secp256k1/publickey.d.mts +35 -0
  370. package/dist/keypairs/secp256k1/publickey.d.mts.map +1 -0
  371. package/dist/keypairs/secp256k1/publickey.mjs +61 -0
  372. package/dist/keypairs/secp256k1/publickey.mjs.map +1 -0
  373. package/dist/keypairs/secp256r1/index.d.mts +3 -0
  374. package/dist/keypairs/secp256r1/index.mjs +4 -0
  375. package/dist/keypairs/secp256r1/keypair.d.mts +78 -0
  376. package/dist/keypairs/secp256r1/keypair.d.mts.map +1 -0
  377. package/dist/keypairs/secp256r1/keypair.mjs +124 -0
  378. package/dist/keypairs/secp256r1/keypair.mjs.map +1 -0
  379. package/dist/keypairs/secp256r1/publickey.d.mts +35 -0
  380. package/dist/keypairs/secp256r1/publickey.d.mts.map +1 -0
  381. package/dist/keypairs/secp256r1/publickey.mjs +62 -0
  382. package/dist/keypairs/secp256r1/publickey.mjs.map +1 -0
  383. package/dist/multisig/index.d.mts +3 -0
  384. package/dist/multisig/index.mjs +4 -0
  385. package/dist/multisig/publickey.d.mts +119 -0
  386. package/dist/multisig/publickey.d.mts.map +1 -0
  387. package/dist/multisig/publickey.mjs +192 -0
  388. package/dist/multisig/publickey.mjs.map +1 -0
  389. package/dist/multisig/signer.d.mts +24 -0
  390. package/dist/multisig/signer.d.mts.map +1 -0
  391. package/dist/multisig/signer.mjs +53 -0
  392. package/dist/multisig/signer.mjs.map +1 -0
  393. package/dist/transactions/Arguments.d.mts +56 -0
  394. package/dist/transactions/Arguments.d.mts.map +1 -0
  395. package/dist/transactions/Arguments.mjs +15 -0
  396. package/dist/transactions/Arguments.mjs.map +1 -0
  397. package/dist/transactions/Commands.d.mts +71 -0
  398. package/dist/transactions/Commands.d.mts.map +1 -0
  399. package/dist/transactions/Commands.mjs +104 -0
  400. package/dist/transactions/Commands.mjs.map +1 -0
  401. package/dist/transactions/Inputs.d.mts +49 -0
  402. package/dist/transactions/Inputs.d.mts.map +1 -0
  403. package/dist/transactions/Inputs.mjs +66 -0
  404. package/dist/transactions/Inputs.mjs.map +1 -0
  405. package/dist/transactions/ObjectCache.d.mts +84 -0
  406. package/dist/transactions/ObjectCache.d.mts.map +1 -0
  407. package/dist/transactions/ObjectCache.mjs +173 -0
  408. package/dist/transactions/ObjectCache.mjs.map +1 -0
  409. package/dist/transactions/Transaction.d.mts +480 -0
  410. package/dist/transactions/Transaction.d.mts.map +1 -0
  411. package/dist/transactions/Transaction.mjs +504 -0
  412. package/dist/transactions/Transaction.mjs.map +1 -0
  413. package/dist/transactions/TransactionData.d.mts +61 -0
  414. package/dist/transactions/TransactionData.d.mts.map +1 -0
  415. package/dist/transactions/TransactionData.mjs +282 -0
  416. package/dist/transactions/TransactionData.mjs.map +1 -0
  417. package/dist/transactions/data/internal.d.mts +571 -0
  418. package/dist/transactions/data/internal.d.mts.map +1 -0
  419. package/dist/transactions/data/internal.mjs +197 -0
  420. package/dist/transactions/data/internal.mjs.map +1 -0
  421. package/dist/transactions/data/v1.d.mts +249 -0
  422. package/dist/transactions/data/v1.d.mts.map +1 -0
  423. package/dist/transactions/data/v1.mjs +352 -0
  424. package/dist/transactions/data/v1.mjs.map +1 -0
  425. package/dist/transactions/data/v2.d.mts +180 -0
  426. package/dist/transactions/data/v2.d.mts.map +1 -0
  427. package/dist/transactions/data/v2.mjs +100 -0
  428. package/dist/transactions/data/v2.mjs.map +1 -0
  429. package/dist/transactions/executor/caching.mjs +74 -0
  430. package/dist/transactions/executor/caching.mjs.map +1 -0
  431. package/dist/transactions/executor/parallel.d.mts +46 -0
  432. package/dist/transactions/executor/parallel.d.mts.map +1 -0
  433. package/dist/transactions/executor/parallel.mjs +304 -0
  434. package/dist/transactions/executor/parallel.mjs.map +1 -0
  435. package/dist/transactions/executor/queue.mjs +42 -0
  436. package/dist/transactions/executor/queue.mjs.map +1 -0
  437. package/dist/transactions/executor/serial.d.mts +34 -0
  438. package/dist/transactions/executor/serial.d.mts.map +1 -0
  439. package/dist/transactions/executor/serial.mjs +126 -0
  440. package/dist/transactions/executor/serial.mjs.map +1 -0
  441. package/dist/transactions/hash.mjs +20 -0
  442. package/dist/transactions/hash.mjs.map +1 -0
  443. package/dist/transactions/index.d.mts +16 -0
  444. package/dist/transactions/index.mjs +13 -0
  445. package/dist/transactions/intents/CoinWithBalance.d.mts +15 -0
  446. package/dist/transactions/intents/CoinWithBalance.d.mts.map +1 -0
  447. package/dist/transactions/intents/CoinWithBalance.mjs +193 -0
  448. package/dist/transactions/intents/CoinWithBalance.mjs.map +1 -0
  449. package/dist/transactions/object.d.mts +24 -0
  450. package/dist/transactions/object.d.mts.map +1 -0
  451. package/dist/transactions/object.mjs +55 -0
  452. package/dist/transactions/object.mjs.map +1 -0
  453. package/dist/transactions/plugins/NamedPackagesPlugin.mjs +24 -0
  454. package/dist/transactions/plugins/NamedPackagesPlugin.mjs.map +1 -0
  455. package/dist/transactions/pure.d.mts +25 -0
  456. package/dist/transactions/pure.d.mts.map +1 -0
  457. package/dist/transactions/pure.mjs +33 -0
  458. package/dist/transactions/pure.mjs.map +1 -0
  459. package/dist/transactions/resolve.d.mts +16 -0
  460. package/dist/transactions/resolve.d.mts.map +1 -0
  461. package/dist/transactions/resolve.mjs +57 -0
  462. package/dist/transactions/resolve.mjs.map +1 -0
  463. package/dist/transactions/serializer.d.mts +11 -0
  464. package/dist/transactions/serializer.d.mts.map +1 -0
  465. package/dist/transactions/serializer.mjs +107 -0
  466. package/dist/transactions/serializer.mjs.map +1 -0
  467. package/dist/transactions/utils.d.mts +9 -0
  468. package/dist/transactions/utils.d.mts.map +1 -0
  469. package/dist/transactions/utils.mjs +82 -0
  470. package/dist/transactions/utils.mjs.map +1 -0
  471. package/dist/utils/constants.d.mts +15 -0
  472. package/dist/utils/constants.d.mts.map +1 -0
  473. package/dist/utils/constants.mjs +16 -0
  474. package/dist/utils/constants.mjs.map +1 -0
  475. package/dist/utils/derived-objects.d.mts +11 -0
  476. package/dist/utils/derived-objects.d.mts.map +1 -0
  477. package/dist/utils/derived-objects.mjs +14 -0
  478. package/dist/utils/derived-objects.mjs.map +1 -0
  479. package/dist/utils/dynamic-fields.d.mts +7 -0
  480. package/dist/utils/dynamic-fields.d.mts.map +1 -0
  481. package/dist/utils/dynamic-fields.mjs +21 -0
  482. package/dist/utils/dynamic-fields.mjs.map +1 -0
  483. package/dist/utils/format.d.mts +6 -0
  484. package/dist/utils/format.d.mts.map +1 -0
  485. package/dist/utils/format.mjs +14 -0
  486. package/dist/utils/format.mjs.map +1 -0
  487. package/dist/utils/index.d.mts +10 -0
  488. package/dist/utils/index.mjs +11 -0
  489. package/dist/utils/move-registry.d.mts +10 -0
  490. package/dist/utils/move-registry.d.mts.map +1 -0
  491. package/dist/utils/move-registry.mjs +32 -0
  492. package/dist/utils/move-registry.mjs.map +1 -0
  493. package/dist/utils/sui-types.d.mts +30 -0
  494. package/dist/utils/sui-types.d.mts.map +1 -0
  495. package/dist/utils/sui-types.mjs +72 -0
  496. package/dist/utils/sui-types.mjs.map +1 -0
  497. package/dist/utils/suins.d.mts +6 -0
  498. package/dist/utils/suins.d.mts.map +1 -0
  499. package/dist/utils/suins.mjs +27 -0
  500. package/dist/utils/suins.mjs.map +1 -0
  501. package/dist/verify/index.d.mts +2 -0
  502. package/dist/verify/index.mjs +3 -0
  503. package/dist/verify/verify.d.mts +28 -0
  504. package/dist/verify/verify.d.mts.map +1 -0
  505. package/dist/verify/verify.mjs +76 -0
  506. package/dist/verify/verify.mjs.map +1 -0
  507. package/dist/version.mjs +7 -0
  508. package/dist/version.mjs.map +1 -0
  509. package/dist/zklogin/address.d.mts +22 -0
  510. package/dist/zklogin/address.d.mts.map +1 -0
  511. package/dist/zklogin/address.mjs +49 -0
  512. package/dist/zklogin/address.mjs.map +1 -0
  513. package/dist/zklogin/bcs.d.mts +34 -0
  514. package/dist/zklogin/bcs.d.mts.map +1 -0
  515. package/dist/zklogin/bcs.mjs +24 -0
  516. package/dist/zklogin/bcs.mjs.map +1 -0
  517. package/dist/zklogin/index.d.mts +9 -0
  518. package/dist/zklogin/index.mjs +9 -0
  519. package/dist/zklogin/jwt-decode.d.mts +14 -0
  520. package/dist/zklogin/jwt-decode.d.mts.map +1 -0
  521. package/dist/zklogin/jwt-decode.mjs +50 -0
  522. package/dist/zklogin/jwt-decode.mjs.map +1 -0
  523. package/dist/zklogin/jwt-utils.d.mts +13 -0
  524. package/dist/zklogin/jwt-utils.d.mts.map +1 -0
  525. package/dist/zklogin/jwt-utils.mjs +68 -0
  526. package/dist/zklogin/jwt-utils.mjs.map +1 -0
  527. package/dist/zklogin/nonce.d.mts +8 -0
  528. package/dist/zklogin/nonce.d.mts.map +1 -0
  529. package/dist/zklogin/nonce.mjs +32 -0
  530. package/dist/zklogin/nonce.mjs.map +1 -0
  531. package/dist/zklogin/poseidon.d.mts +5 -0
  532. package/dist/zklogin/poseidon.d.mts.map +1 -0
  533. package/dist/zklogin/poseidon.mjs +36 -0
  534. package/dist/zklogin/poseidon.mjs.map +1 -0
  535. package/dist/zklogin/publickey.d.mts +67 -0
  536. package/dist/zklogin/publickey.d.mts.map +1 -0
  537. package/dist/zklogin/publickey.mjs +173 -0
  538. package/dist/zklogin/publickey.mjs.map +1 -0
  539. package/dist/zklogin/signature.d.mts +31 -0
  540. package/dist/zklogin/signature.d.mts.map +1 -0
  541. package/dist/zklogin/signature.mjs +30 -0
  542. package/dist/zklogin/signature.mjs.map +1 -0
  543. package/dist/zklogin/utils.d.mts +11 -0
  544. package/dist/zklogin/utils.d.mts.map +1 -0
  545. package/dist/zklogin/utils.mjs +63 -0
  546. package/dist/zklogin/utils.mjs.map +1 -0
  547. package/package.json +77 -86
  548. package/src/bcs/bcs.ts +90 -1
  549. package/src/bcs/effects.ts +74 -9
  550. package/src/bcs/index.ts +22 -1
  551. package/src/bcs/pure.ts +0 -1
  552. package/src/bcs/types.ts +26 -2
  553. package/src/client/client.ts +55 -0
  554. package/src/client/core-resolver.ts +504 -0
  555. package/src/client/core.ts +264 -0
  556. package/src/client/errors.ts +37 -0
  557. package/src/client/index.ts +21 -16
  558. package/src/client/mvr.ts +488 -0
  559. package/src/client/transaction-resolver.ts +559 -0
  560. package/src/client/types.ts +877 -0
  561. package/src/client/utils.ts +540 -0
  562. package/src/cryptography/keypair.ts +7 -9
  563. package/src/cryptography/publickey.ts +2 -2
  564. package/src/faucet/faucet.ts +0 -96
  565. package/src/faucet/index.ts +1 -8
  566. package/src/graphql/client.ts +125 -9
  567. package/src/graphql/core.ts +568 -144
  568. package/src/graphql/generated/queries.ts +717 -457
  569. package/src/graphql/generated/schema.graphql +4362 -0
  570. package/src/graphql/generated/tada-env.ts +13090 -0
  571. package/src/graphql/generated/tsconfig.tada.json +11 -0
  572. package/src/graphql/index.ts +1 -0
  573. package/src/graphql/queries/getAllBalances.graphql +1 -0
  574. package/src/graphql/queries/getBalance.graphql +2 -1
  575. package/src/graphql/queries/getChainIdentifier.graphql +8 -0
  576. package/src/graphql/queries/getCoins.graphql +1 -5
  577. package/src/graphql/queries/getCurrentSystemState.graphql +16 -0
  578. package/src/graphql/queries/nameService.graphql +3 -1
  579. package/src/graphql/queries/objects.graphql +28 -6
  580. package/src/graphql/queries/transactions.graphql +96 -41
  581. package/src/graphql/schema/index.ts +17 -0
  582. package/src/grpc/client.ts +121 -5
  583. package/src/grpc/core.ts +768 -251
  584. package/src/grpc/index.ts +5 -1
  585. package/src/grpc/proto/sui/rpc/v2/checkpoint_contents.ts +44 -0
  586. package/src/grpc/proto/sui/rpc/v2/effects.ts +80 -0
  587. package/src/grpc/proto/sui/rpc/v2/execution_status.ts +66 -0
  588. package/src/grpc/proto/sui/rpc/v2/input.ts +115 -0
  589. package/src/grpc/proto/sui/rpc/v2/state_service.ts +31 -1
  590. package/src/grpc/proto/sui/rpc/v2/transaction.ts +100 -1
  591. package/src/grpc/proto/types.ts +44 -0
  592. package/src/jsonRpc/client.ts +40 -65
  593. package/src/jsonRpc/core.ts +582 -168
  594. package/src/jsonRpc/http-transport.ts +0 -2
  595. package/src/jsonRpc/index.ts +1 -0
  596. package/src/jsonRpc/network.ts +17 -0
  597. package/src/jsonRpc/types/coins.ts +1 -0
  598. package/src/jsonRpc/types/generated.ts +49 -4
  599. package/src/keypairs/ed25519/ed25519-hd-key.ts +3 -3
  600. package/src/keypairs/ed25519/keypair.ts +5 -5
  601. package/src/keypairs/ed25519/publickey.ts +1 -1
  602. package/src/keypairs/passkey/keypair.ts +16 -12
  603. package/src/keypairs/passkey/publickey.ts +7 -4
  604. package/src/keypairs/secp256k1/keypair.ts +11 -14
  605. package/src/keypairs/secp256k1/publickey.ts +2 -7
  606. package/src/keypairs/secp256r1/keypair.ts +11 -14
  607. package/src/keypairs/secp256r1/publickey.ts +2 -7
  608. package/src/multisig/publickey.ts +8 -10
  609. package/src/multisig/signer.ts +0 -7
  610. package/src/transactions/Commands.ts +1 -1
  611. package/src/transactions/Inputs.ts +25 -1
  612. package/src/transactions/ObjectCache.ts +2 -2
  613. package/src/transactions/Transaction.ts +49 -89
  614. package/src/transactions/TransactionData.ts +2 -13
  615. package/src/transactions/__tests__/Transaction.test.ts +19 -19
  616. package/src/transactions/data/internal.ts +108 -79
  617. package/src/transactions/data/v2.ts +11 -1
  618. package/src/transactions/executor/caching.ts +39 -31
  619. package/src/transactions/executor/parallel.ts +206 -146
  620. package/src/transactions/executor/serial.ts +106 -38
  621. package/src/transactions/hash.ts +1 -1
  622. package/src/transactions/index.ts +1 -14
  623. package/src/transactions/intents/CoinWithBalance.ts +193 -73
  624. package/src/transactions/object.ts +13 -6
  625. package/src/transactions/plugins/NamedPackagesPlugin.ts +12 -83
  626. package/src/transactions/resolve.ts +10 -9
  627. package/src/transactions/serializer.ts +114 -133
  628. package/src/transactions/utils.ts +1 -1
  629. package/src/utils/constants.ts +14 -8
  630. package/src/utils/dynamic-fields.ts +1 -1
  631. package/src/utils/index.ts +2 -12
  632. package/src/utils/sui-types.ts +6 -1
  633. package/src/verify/index.ts +0 -1
  634. package/src/verify/verify.ts +6 -7
  635. package/src/version.ts +2 -2
  636. package/src/zklogin/address.ts +18 -7
  637. package/src/zklogin/index.ts +1 -5
  638. package/src/zklogin/nonce.ts +1 -1
  639. package/src/zklogin/publickey.ts +25 -25
  640. package/src/zklogin/utils.ts +1 -1
  641. package/bcs/package.json +0 -6
  642. package/client/package.json +0 -6
  643. package/cryptography/package.json +0 -6
  644. package/dist/cjs/bcs/bcs.d.ts +0 -1973
  645. package/dist/cjs/bcs/bcs.js +0 -328
  646. package/dist/cjs/bcs/bcs.js.map +0 -7
  647. package/dist/cjs/bcs/effects.d.ts +0 -579
  648. package/dist/cjs/bcs/effects.js +0 -210
  649. package/dist/cjs/bcs/effects.js.map +0 -7
  650. package/dist/cjs/bcs/index.d.ts +0 -2589
  651. package/dist/cjs/bcs/index.js +0 -80
  652. package/dist/cjs/bcs/index.js.map +0 -7
  653. package/dist/cjs/bcs/pure.d.ts +0 -22
  654. package/dist/cjs/bcs/pure.js +0 -59
  655. package/dist/cjs/bcs/pure.js.map +0 -7
  656. package/dist/cjs/bcs/type-tag-serializer.d.ts +0 -7
  657. package/dist/cjs/bcs/type-tag-serializer.js +0 -117
  658. package/dist/cjs/bcs/type-tag-serializer.js.map +0 -7
  659. package/dist/cjs/bcs/types.d.ts +0 -114
  660. package/dist/cjs/bcs/types.js +0 -27
  661. package/dist/cjs/bcs/types.js.map +0 -7
  662. package/dist/cjs/client/index.d.ts +0 -5
  663. package/dist/cjs/client/index.js +0 -34
  664. package/dist/cjs/client/index.js.map +0 -7
  665. package/dist/cjs/client/network.d.ts +0 -1
  666. package/dist/cjs/client/network.js +0 -38
  667. package/dist/cjs/client/network.js.map +0 -7
  668. package/dist/cjs/cryptography/index.d.ts +0 -7
  669. package/dist/cjs/cryptography/index.js +0 -47
  670. package/dist/cjs/cryptography/index.js.map +0 -7
  671. package/dist/cjs/cryptography/intent.d.ts +0 -6
  672. package/dist/cjs/cryptography/intent.js +0 -35
  673. package/dist/cjs/cryptography/intent.js.map +0 -7
  674. package/dist/cjs/cryptography/keypair.d.ts +0 -72
  675. package/dist/cjs/cryptography/keypair.js +0 -118
  676. package/dist/cjs/cryptography/keypair.js.map +0 -7
  677. package/dist/cjs/cryptography/mnemonics.d.ts +0 -27
  678. package/dist/cjs/cryptography/mnemonics.js +0 -47
  679. package/dist/cjs/cryptography/mnemonics.js.map +0 -7
  680. package/dist/cjs/cryptography/publickey.d.ts +0 -67
  681. package/dist/cjs/cryptography/publickey.js +0 -140
  682. package/dist/cjs/cryptography/publickey.js.map +0 -7
  683. package/dist/cjs/cryptography/signature-scheme.d.ts +0 -24
  684. package/dist/cjs/cryptography/signature-scheme.js +0 -48
  685. package/dist/cjs/cryptography/signature-scheme.js.map +0 -7
  686. package/dist/cjs/cryptography/signature.d.ts +0 -65
  687. package/dist/cjs/cryptography/signature.js +0 -71
  688. package/dist/cjs/cryptography/signature.js.map +0 -7
  689. package/dist/cjs/experimental/cache.d.ts +0 -12
  690. package/dist/cjs/experimental/cache.js +0 -88
  691. package/dist/cjs/experimental/cache.js.map +0 -7
  692. package/dist/cjs/experimental/client.d.ts +0 -12
  693. package/dist/cjs/experimental/client.js +0 -46
  694. package/dist/cjs/experimental/client.js.map +0 -7
  695. package/dist/cjs/experimental/core.d.ts +0 -37
  696. package/dist/cjs/experimental/core.js +0 -114
  697. package/dist/cjs/experimental/core.js.map +0 -7
  698. package/dist/cjs/experimental/errors.d.ts +0 -8
  699. package/dist/cjs/experimental/errors.js +0 -54
  700. package/dist/cjs/experimental/errors.js.map +0 -7
  701. package/dist/cjs/experimental/index.d.ts +0 -7
  702. package/dist/cjs/experimental/index.js +0 -32
  703. package/dist/cjs/experimental/index.js.map +0 -7
  704. package/dist/cjs/experimental/mvr.d.ts +0 -42
  705. package/dist/cjs/experimental/mvr.js +0 -365
  706. package/dist/cjs/experimental/mvr.js.map +0 -7
  707. package/dist/cjs/experimental/transports/utils.d.ts +0 -3
  708. package/dist/cjs/experimental/transports/utils.js +0 -101
  709. package/dist/cjs/experimental/transports/utils.js.map +0 -7
  710. package/dist/cjs/experimental/types.d.ts +0 -434
  711. package/dist/cjs/experimental/types.js +0 -17
  712. package/dist/cjs/experimental/types.js.map +0 -7
  713. package/dist/cjs/faucet/faucet.d.ts +0 -65
  714. package/dist/cjs/faucet/faucet.js +0 -130
  715. package/dist/cjs/faucet/faucet.js.map +0 -7
  716. package/dist/cjs/faucet/index.d.ts +0 -1
  717. package/dist/cjs/faucet/index.js +0 -30
  718. package/dist/cjs/faucet/index.js.map +0 -7
  719. package/dist/cjs/graphql/client.d.ts +0 -50
  720. package/dist/cjs/graphql/client.js +0 -94
  721. package/dist/cjs/graphql/client.js.map +0 -7
  722. package/dist/cjs/graphql/core.d.ts +0 -32
  723. package/dist/cjs/graphql/core.js +0 -471
  724. package/dist/cjs/graphql/core.js.map +0 -7
  725. package/dist/cjs/graphql/generated/2024.1/tada-env.d.ts +0 -11380
  726. package/dist/cjs/graphql/generated/2024.1/tada-env.js +0 -13142
  727. package/dist/cjs/graphql/generated/2024.1/tada-env.js.map +0 -7
  728. package/dist/cjs/graphql/generated/2024.1/tsconfig.tada.js +0 -12
  729. package/dist/cjs/graphql/generated/2024.1/tsconfig.tada.js.map +0 -7
  730. package/dist/cjs/graphql/generated/2024.4/tada-env.d.ts +0 -11496
  731. package/dist/cjs/graphql/generated/2024.4/tada-env.js +0 -13288
  732. package/dist/cjs/graphql/generated/2024.4/tada-env.js.map +0 -7
  733. package/dist/cjs/graphql/generated/2024.4/tsconfig.tada.js +0 -12
  734. package/dist/cjs/graphql/generated/2024.4/tsconfig.tada.js.map +0 -7
  735. package/dist/cjs/graphql/generated/latest/tada-env.d.ts +0 -11128
  736. package/dist/cjs/graphql/generated/latest/tada-env.js +0 -12926
  737. package/dist/cjs/graphql/generated/latest/tada-env.js.map +0 -7
  738. package/dist/cjs/graphql/generated/latest/tsconfig.tada.js +0 -12
  739. package/dist/cjs/graphql/generated/latest/tsconfig.tada.js.map +0 -7
  740. package/dist/cjs/graphql/generated/queries.d.ts +0 -4963
  741. package/dist/cjs/graphql/generated/queries.js +0 -803
  742. package/dist/cjs/graphql/generated/queries.js.map +0 -7
  743. package/dist/cjs/graphql/index.d.ts +0 -1
  744. package/dist/cjs/graphql/index.js +0 -26
  745. package/dist/cjs/graphql/index.js.map +0 -7
  746. package/dist/cjs/graphql/schemas/2024.1/index.d.ts +0 -10
  747. package/dist/cjs/graphql/schemas/2024.1/index.js +0 -29
  748. package/dist/cjs/graphql/schemas/2024.1/index.js.map +0 -7
  749. package/dist/cjs/graphql/schemas/2024.4/index.d.ts +0 -10
  750. package/dist/cjs/graphql/schemas/2024.4/index.js +0 -29
  751. package/dist/cjs/graphql/schemas/2024.4/index.js.map +0 -7
  752. package/dist/cjs/graphql/schemas/latest/index.d.ts +0 -10
  753. package/dist/cjs/graphql/schemas/latest/index.js +0 -29
  754. package/dist/cjs/graphql/schemas/latest/index.js.map +0 -7
  755. package/dist/cjs/graphql/types.d.ts +0 -71
  756. package/dist/cjs/graphql/types.js +0 -17
  757. package/dist/cjs/graphql/types.js.map +0 -7
  758. package/dist/cjs/grpc/client.d.ts +0 -33
  759. package/dist/cjs/grpc/client.js +0 -53
  760. package/dist/cjs/grpc/client.js.map +0 -7
  761. package/dist/cjs/grpc/core.d.ts +0 -30
  762. package/dist/cjs/grpc/core.js +0 -651
  763. package/dist/cjs/grpc/core.js.map +0 -7
  764. package/dist/cjs/grpc/index.d.ts +0 -4
  765. package/dist/cjs/grpc/index.js +0 -27
  766. package/dist/cjs/grpc/index.js.map +0 -7
  767. package/dist/cjs/grpc/proto/google/protobuf/any.d.ts +0 -173
  768. package/dist/cjs/grpc/proto/google/protobuf/any.js +0 -139
  769. package/dist/cjs/grpc/proto/google/protobuf/any.js.map +0 -7
  770. package/dist/cjs/grpc/proto/google/protobuf/duration.d.ts +0 -104
  771. package/dist/cjs/grpc/proto/google/protobuf/duration.js +0 -88
  772. package/dist/cjs/grpc/proto/google/protobuf/duration.js.map +0 -7
  773. package/dist/cjs/grpc/proto/google/protobuf/empty.d.ts +0 -25
  774. package/dist/cjs/grpc/proto/google/protobuf/empty.js +0 -31
  775. package/dist/cjs/grpc/proto/google/protobuf/empty.js.map +0 -7
  776. package/dist/cjs/grpc/proto/google/protobuf/field_mask.d.ts +0 -231
  777. package/dist/cjs/grpc/proto/google/protobuf/field_mask.js +0 -73
  778. package/dist/cjs/grpc/proto/google/protobuf/field_mask.js.map +0 -7
  779. package/dist/cjs/grpc/proto/google/protobuf/struct.d.ts +0 -169
  780. package/dist/cjs/grpc/proto/google/protobuf/struct.js +0 -199
  781. package/dist/cjs/grpc/proto/google/protobuf/struct.js.map +0 -7
  782. package/dist/cjs/grpc/proto/google/protobuf/timestamp.d.ts +0 -145
  783. package/dist/cjs/grpc/proto/google/protobuf/timestamp.js +0 -123
  784. package/dist/cjs/grpc/proto/google/protobuf/timestamp.js.map +0 -7
  785. package/dist/cjs/grpc/proto/google/rpc/error_details.d.ts +0 -525
  786. package/dist/cjs/grpc/proto/google/rpc/error_details.js +0 -332
  787. package/dist/cjs/grpc/proto/google/rpc/error_details.js.map +0 -7
  788. package/dist/cjs/grpc/proto/google/rpc/status.d.ts +0 -46
  789. package/dist/cjs/grpc/proto/google/rpc/status.js +0 -48
  790. package/dist/cjs/grpc/proto/google/rpc/status.js.map +0 -7
  791. package/dist/cjs/grpc/proto/sui/rpc/v2/argument.d.ts +0 -66
  792. package/dist/cjs/grpc/proto/sui/rpc/v2/argument.js +0 -71
  793. package/dist/cjs/grpc/proto/sui/rpc/v2/argument.js.map +0 -7
  794. package/dist/cjs/grpc/proto/sui/rpc/v2/balance_change.d.ts +0 -34
  795. package/dist/cjs/grpc/proto/sui/rpc/v2/balance_change.js +0 -56
  796. package/dist/cjs/grpc/proto/sui/rpc/v2/balance_change.js.map +0 -7
  797. package/dist/cjs/grpc/proto/sui/rpc/v2/bcs.d.ts +0 -30
  798. package/dist/cjs/grpc/proto/sui/rpc/v2/bcs.js +0 -48
  799. package/dist/cjs/grpc/proto/sui/rpc/v2/bcs.js.map +0 -7
  800. package/dist/cjs/grpc/proto/sui/rpc/v2/checkpoint.d.ts +0 -68
  801. package/dist/cjs/grpc/proto/sui/rpc/v2/checkpoint.js +0 -64
  802. package/dist/cjs/grpc/proto/sui/rpc/v2/checkpoint.js.map +0 -7
  803. package/dist/cjs/grpc/proto/sui/rpc/v2/checkpoint_contents.d.ts +0 -74
  804. package/dist/cjs/grpc/proto/sui/rpc/v2/checkpoint_contents.js +0 -89
  805. package/dist/cjs/grpc/proto/sui/rpc/v2/checkpoint_contents.js.map +0 -7
  806. package/dist/cjs/grpc/proto/sui/rpc/v2/checkpoint_summary.d.ts +0 -195
  807. package/dist/cjs/grpc/proto/sui/rpc/v2/checkpoint_summary.js +0 -165
  808. package/dist/cjs/grpc/proto/sui/rpc/v2/checkpoint_summary.js.map +0 -7
  809. package/dist/cjs/grpc/proto/sui/rpc/v2/effects.d.ts +0 -338
  810. package/dist/cjs/grpc/proto/sui/rpc/v2/effects.js +0 -294
  811. package/dist/cjs/grpc/proto/sui/rpc/v2/effects.js.map +0 -7
  812. package/dist/cjs/grpc/proto/sui/rpc/v2/epoch.d.ts +0 -62
  813. package/dist/cjs/grpc/proto/sui/rpc/v2/epoch.js +0 -73
  814. package/dist/cjs/grpc/proto/sui/rpc/v2/epoch.js.map +0 -7
  815. package/dist/cjs/grpc/proto/sui/rpc/v2/error_reason.d.ts +0 -17
  816. package/dist/cjs/grpc/proto/sui/rpc/v2/error_reason.js +0 -30
  817. package/dist/cjs/grpc/proto/sui/rpc/v2/error_reason.js.map +0 -7
  818. package/dist/cjs/grpc/proto/sui/rpc/v2/event.d.ts +0 -88
  819. package/dist/cjs/grpc/proto/sui/rpc/v2/event.js +0 -86
  820. package/dist/cjs/grpc/proto/sui/rpc/v2/event.js.map +0 -7
  821. package/dist/cjs/grpc/proto/sui/rpc/v2/executed_transaction.d.ts +0 -80
  822. package/dist/cjs/grpc/proto/sui/rpc/v2/executed_transaction.js +0 -74
  823. package/dist/cjs/grpc/proto/sui/rpc/v2/executed_transaction.js.map +0 -7
  824. package/dist/cjs/grpc/proto/sui/rpc/v2/execution_status.d.ts +0 -843
  825. package/dist/cjs/grpc/proto/sui/rpc/v2/execution_status.js +0 -513
  826. package/dist/cjs/grpc/proto/sui/rpc/v2/execution_status.js.map +0 -7
  827. package/dist/cjs/grpc/proto/sui/rpc/v2/gas_cost_summary.d.ts +0 -41
  828. package/dist/cjs/grpc/proto/sui/rpc/v2/gas_cost_summary.js +0 -64
  829. package/dist/cjs/grpc/proto/sui/rpc/v2/gas_cost_summary.js.map +0 -7
  830. package/dist/cjs/grpc/proto/sui/rpc/v2/input.d.ts +0 -98
  831. package/dist/cjs/grpc/proto/sui/rpc/v2/input.js +0 -90
  832. package/dist/cjs/grpc/proto/sui/rpc/v2/input.js.map +0 -7
  833. package/dist/cjs/grpc/proto/sui/rpc/v2/jwk.d.ts +0 -70
  834. package/dist/cjs/grpc/proto/sui/rpc/v2/jwk.js +0 -88
  835. package/dist/cjs/grpc/proto/sui/rpc/v2/jwk.js.map +0 -7
  836. package/dist/cjs/grpc/proto/sui/rpc/v2/ledger_service.client.d.ts +0 -95
  837. package/dist/cjs/grpc/proto/sui/rpc/v2/ledger_service.client.js +0 -127
  838. package/dist/cjs/grpc/proto/sui/rpc/v2/ledger_service.client.js.map +0 -7
  839. package/dist/cjs/grpc/proto/sui/rpc/v2/ledger_service.d.ts +0 -420
  840. package/dist/cjs/grpc/proto/sui/rpc/v2/ledger_service.js +0 -327
  841. package/dist/cjs/grpc/proto/sui/rpc/v2/ledger_service.js.map +0 -7
  842. package/dist/cjs/grpc/proto/sui/rpc/v2/move_package.d.ts +0 -579
  843. package/dist/cjs/grpc/proto/sui/rpc/v2/move_package.js +0 -480
  844. package/dist/cjs/grpc/proto/sui/rpc/v2/move_package.js.map +0 -7
  845. package/dist/cjs/grpc/proto/sui/rpc/v2/move_package_service.client.d.ts +0 -61
  846. package/dist/cjs/grpc/proto/sui/rpc/v2/move_package_service.client.js +0 -86
  847. package/dist/cjs/grpc/proto/sui/rpc/v2/move_package_service.client.js.map +0 -7
  848. package/dist/cjs/grpc/proto/sui/rpc/v2/move_package_service.d.ts +0 -229
  849. package/dist/cjs/grpc/proto/sui/rpc/v2/move_package_service.js +0 -226
  850. package/dist/cjs/grpc/proto/sui/rpc/v2/move_package_service.js.map +0 -7
  851. package/dist/cjs/grpc/proto/sui/rpc/v2/name_service.client.d.ts +0 -41
  852. package/dist/cjs/grpc/proto/sui/rpc/v2/name_service.client.js +0 -60
  853. package/dist/cjs/grpc/proto/sui/rpc/v2/name_service.client.js.map +0 -7
  854. package/dist/cjs/grpc/proto/sui/rpc/v2/name_service.d.ts +0 -144
  855. package/dist/cjs/grpc/proto/sui/rpc/v2/name_service.js +0 -138
  856. package/dist/cjs/grpc/proto/sui/rpc/v2/name_service.js.map +0 -7
  857. package/dist/cjs/grpc/proto/sui/rpc/v2/object.d.ts +0 -127
  858. package/dist/cjs/grpc/proto/sui/rpc/v2/object.js +0 -113
  859. package/dist/cjs/grpc/proto/sui/rpc/v2/object.js.map +0 -7
  860. package/dist/cjs/grpc/proto/sui/rpc/v2/object_reference.d.ts +0 -34
  861. package/dist/cjs/grpc/proto/sui/rpc/v2/object_reference.js +0 -56
  862. package/dist/cjs/grpc/proto/sui/rpc/v2/object_reference.js.map +0 -7
  863. package/dist/cjs/grpc/proto/sui/rpc/v2/owner.d.ts +0 -61
  864. package/dist/cjs/grpc/proto/sui/rpc/v2/owner.js +0 -65
  865. package/dist/cjs/grpc/proto/sui/rpc/v2/owner.js.map +0 -7
  866. package/dist/cjs/grpc/proto/sui/rpc/v2/protocol_config.d.ts +0 -30
  867. package/dist/cjs/grpc/proto/sui/rpc/v2/protocol_config.js +0 -62
  868. package/dist/cjs/grpc/proto/sui/rpc/v2/protocol_config.js.map +0 -7
  869. package/dist/cjs/grpc/proto/sui/rpc/v2/signature.d.ts +0 -630
  870. package/dist/cjs/grpc/proto/sui/rpc/v2/signature.js +0 -514
  871. package/dist/cjs/grpc/proto/sui/rpc/v2/signature.js.map +0 -7
  872. package/dist/cjs/grpc/proto/sui/rpc/v2/signature_scheme.d.ts +0 -40
  873. package/dist/cjs/grpc/proto/sui/rpc/v2/signature_scheme.js +0 -34
  874. package/dist/cjs/grpc/proto/sui/rpc/v2/signature_scheme.js.map +0 -7
  875. package/dist/cjs/grpc/proto/sui/rpc/v2/signature_verification_service.client.d.ts +0 -35
  876. package/dist/cjs/grpc/proto/sui/rpc/v2/signature_verification_service.client.js +0 -49
  877. package/dist/cjs/grpc/proto/sui/rpc/v2/signature_verification_service.client.js.map +0 -7
  878. package/dist/cjs/grpc/proto/sui/rpc/v2/signature_verification_service.d.ts +0 -79
  879. package/dist/cjs/grpc/proto/sui/rpc/v2/signature_verification_service.js +0 -76
  880. package/dist/cjs/grpc/proto/sui/rpc/v2/signature_verification_service.js.map +0 -7
  881. package/dist/cjs/grpc/proto/sui/rpc/v2/state_service.client.d.ts +0 -71
  882. package/dist/cjs/grpc/proto/sui/rpc/v2/state_service.client.js +0 -99
  883. package/dist/cjs/grpc/proto/sui/rpc/v2/state_service.client.js.map +0 -7
  884. package/dist/cjs/grpc/proto/sui/rpc/v2/state_service.d.ts +0 -690
  885. package/dist/cjs/grpc/proto/sui/rpc/v2/state_service.js +0 -546
  886. package/dist/cjs/grpc/proto/sui/rpc/v2/state_service.js.map +0 -7
  887. package/dist/cjs/grpc/proto/sui/rpc/v2/subscription_service.client.d.ts +0 -55
  888. package/dist/cjs/grpc/proto/sui/rpc/v2/subscription_service.client.js +0 -59
  889. package/dist/cjs/grpc/proto/sui/rpc/v2/subscription_service.client.js.map +0 -7
  890. package/dist/cjs/grpc/proto/sui/rpc/v2/subscription_service.d.ts +0 -57
  891. package/dist/cjs/grpc/proto/sui/rpc/v2/subscription_service.js +0 -63
  892. package/dist/cjs/grpc/proto/sui/rpc/v2/subscription_service.js.map +0 -7
  893. package/dist/cjs/grpc/proto/sui/rpc/v2/system_state.d.ts +0 -684
  894. package/dist/cjs/grpc/proto/sui/rpc/v2/system_state.js +0 -674
  895. package/dist/cjs/grpc/proto/sui/rpc/v2/system_state.js.map +0 -7
  896. package/dist/cjs/grpc/proto/sui/rpc/v2/transaction.d.ts +0 -1321
  897. package/dist/cjs/grpc/proto/sui/rpc/v2/transaction.js +0 -931
  898. package/dist/cjs/grpc/proto/sui/rpc/v2/transaction.js.map +0 -7
  899. package/dist/cjs/grpc/proto/sui/rpc/v2/transaction_execution_service.client.d.ts +0 -41
  900. package/dist/cjs/grpc/proto/sui/rpc/v2/transaction_execution_service.client.js +0 -60
  901. package/dist/cjs/grpc/proto/sui/rpc/v2/transaction_execution_service.client.js.map +0 -7
  902. package/dist/cjs/grpc/proto/sui/rpc/v2/transaction_execution_service.d.ts +0 -184
  903. package/dist/cjs/grpc/proto/sui/rpc/v2/transaction_execution_service.js +0 -159
  904. package/dist/cjs/grpc/proto/sui/rpc/v2/transaction_execution_service.js.map +0 -7
  905. package/dist/cjs/jsonRpc/client.d.ts +0 -264
  906. package/dist/cjs/jsonRpc/client.js +0 -832
  907. package/dist/cjs/jsonRpc/client.js.map +0 -7
  908. package/dist/cjs/jsonRpc/core.d.ts +0 -93
  909. package/dist/cjs/jsonRpc/core.js +0 -644
  910. package/dist/cjs/jsonRpc/core.js.map +0 -7
  911. package/dist/cjs/jsonRpc/errors.d.ts +0 -12
  912. package/dist/cjs/jsonRpc/errors.js +0 -60
  913. package/dist/cjs/jsonRpc/errors.js.map +0 -7
  914. package/dist/cjs/jsonRpc/http-transport.d.ts +0 -42
  915. package/dist/cjs/jsonRpc/http-transport.js +0 -119
  916. package/dist/cjs/jsonRpc/http-transport.js.map +0 -7
  917. package/dist/cjs/jsonRpc/index.d.ts +0 -4
  918. package/dist/cjs/jsonRpc/index.js +0 -32
  919. package/dist/cjs/jsonRpc/index.js.map +0 -7
  920. package/dist/cjs/jsonRpc/json-rpc-resolver.d.ts +0 -4
  921. package/dist/cjs/jsonRpc/json-rpc-resolver.js +0 -311
  922. package/dist/cjs/jsonRpc/json-rpc-resolver.js.map +0 -7
  923. package/dist/cjs/jsonRpc/rpc-websocket-client.d.ts +0 -43
  924. package/dist/cjs/jsonRpc/rpc-websocket-client.js +0 -194
  925. package/dist/cjs/jsonRpc/rpc-websocket-client.js.map +0 -7
  926. package/dist/cjs/jsonRpc/types/chain.d.ts +0 -99
  927. package/dist/cjs/jsonRpc/types/chain.js +0 -17
  928. package/dist/cjs/jsonRpc/types/chain.js.map +0 -7
  929. package/dist/cjs/jsonRpc/types/changes.d.ts +0 -19
  930. package/dist/cjs/jsonRpc/types/changes.js +0 -17
  931. package/dist/cjs/jsonRpc/types/changes.js.map +0 -7
  932. package/dist/cjs/jsonRpc/types/coins.d.ts +0 -6
  933. package/dist/cjs/jsonRpc/types/coins.js +0 -17
  934. package/dist/cjs/jsonRpc/types/coins.js.map +0 -7
  935. package/dist/cjs/jsonRpc/types/common.d.ts +0 -2
  936. package/dist/cjs/jsonRpc/types/common.js +0 -17
  937. package/dist/cjs/jsonRpc/types/common.js.map +0 -7
  938. package/dist/cjs/jsonRpc/types/generated.d.ts +0 -1492
  939. package/dist/cjs/jsonRpc/types/generated.js +0 -17
  940. package/dist/cjs/jsonRpc/types/generated.js.map +0 -7
  941. package/dist/cjs/jsonRpc/types/index.d.ts +0 -6
  942. package/dist/cjs/jsonRpc/types/index.js +0 -17
  943. package/dist/cjs/jsonRpc/types/index.js.map +0 -7
  944. package/dist/cjs/jsonRpc/types/params.d.ts +0 -656
  945. package/dist/cjs/jsonRpc/types/params.js +0 -17
  946. package/dist/cjs/jsonRpc/types/params.js.map +0 -7
  947. package/dist/cjs/keypairs/ed25519/ed25519-hd-key.d.ts +0 -8
  948. package/dist/cjs/keypairs/ed25519/ed25519-hd-key.js +0 -77
  949. package/dist/cjs/keypairs/ed25519/ed25519-hd-key.js.map +0 -7
  950. package/dist/cjs/keypairs/ed25519/index.d.ts +0 -2
  951. package/dist/cjs/keypairs/ed25519/index.js +0 -28
  952. package/dist/cjs/keypairs/ed25519/index.js.map +0 -7
  953. package/dist/cjs/keypairs/ed25519/keypair.d.ts +0 -74
  954. package/dist/cjs/keypairs/ed25519/keypair.js +0 -162
  955. package/dist/cjs/keypairs/ed25519/keypair.js.map +0 -7
  956. package/dist/cjs/keypairs/ed25519/publickey.d.ts +0 -30
  957. package/dist/cjs/keypairs/ed25519/publickey.js +0 -88
  958. package/dist/cjs/keypairs/ed25519/publickey.js.map +0 -7
  959. package/dist/cjs/keypairs/passkey/index.d.ts +0 -3
  960. package/dist/cjs/keypairs/passkey/index.js +0 -29
  961. package/dist/cjs/keypairs/passkey/index.js.map +0 -7
  962. package/dist/cjs/keypairs/passkey/keypair.d.ts +0 -113
  963. package/dist/cjs/keypairs/passkey/keypair.js +0 -251
  964. package/dist/cjs/keypairs/passkey/keypair.js.map +0 -7
  965. package/dist/cjs/keypairs/passkey/publickey.d.ts +0 -72
  966. package/dist/cjs/keypairs/passkey/publickey.js +0 -168
  967. package/dist/cjs/keypairs/passkey/publickey.js.map +0 -7
  968. package/dist/cjs/keypairs/passkey/types.d.ts +0 -12
  969. package/dist/cjs/keypairs/passkey/types.js +0 -17
  970. package/dist/cjs/keypairs/passkey/types.js.map +0 -7
  971. package/dist/cjs/keypairs/secp256k1/index.d.ts +0 -2
  972. package/dist/cjs/keypairs/secp256k1/index.js +0 -28
  973. package/dist/cjs/keypairs/secp256k1/index.js.map +0 -7
  974. package/dist/cjs/keypairs/secp256k1/keypair.d.ts +0 -73
  975. package/dist/cjs/keypairs/secp256k1/keypair.js +0 -150
  976. package/dist/cjs/keypairs/secp256k1/keypair.js.map +0 -7
  977. package/dist/cjs/keypairs/secp256k1/publickey.d.ts +0 -30
  978. package/dist/cjs/keypairs/secp256k1/publickey.js +0 -93
  979. package/dist/cjs/keypairs/secp256k1/publickey.js.map +0 -7
  980. package/dist/cjs/keypairs/secp256r1/index.d.ts +0 -2
  981. package/dist/cjs/keypairs/secp256r1/index.js +0 -28
  982. package/dist/cjs/keypairs/secp256r1/index.js.map +0 -7
  983. package/dist/cjs/keypairs/secp256r1/keypair.d.ts +0 -73
  984. package/dist/cjs/keypairs/secp256r1/keypair.js +0 -144
  985. package/dist/cjs/keypairs/secp256r1/keypair.js.map +0 -7
  986. package/dist/cjs/keypairs/secp256r1/publickey.d.ts +0 -30
  987. package/dist/cjs/keypairs/secp256r1/publickey.js +0 -94
  988. package/dist/cjs/keypairs/secp256r1/publickey.js.map +0 -7
  989. package/dist/cjs/multisig/index.d.ts +0 -2
  990. package/dist/cjs/multisig/index.js +0 -28
  991. package/dist/cjs/multisig/index.js.map +0 -7
  992. package/dist/cjs/multisig/publickey.d.ts +0 -114
  993. package/dist/cjs/multisig/publickey.js +0 -260
  994. package/dist/cjs/multisig/publickey.js.map +0 -7
  995. package/dist/cjs/multisig/signer.d.ts +0 -20
  996. package/dist/cjs/multisig/signer.js +0 -105
  997. package/dist/cjs/multisig/signer.js.map +0 -7
  998. package/dist/cjs/package.json +0 -5
  999. package/dist/cjs/transactions/Arguments.d.ts +0 -49
  1000. package/dist/cjs/transactions/Arguments.js +0 -33
  1001. package/dist/cjs/transactions/Arguments.js.map +0 -7
  1002. package/dist/cjs/transactions/Commands.d.ts +0 -57
  1003. package/dist/cjs/transactions/Commands.js +0 -140
  1004. package/dist/cjs/transactions/Commands.js.map +0 -7
  1005. package/dist/cjs/transactions/Inputs.d.ts +0 -22
  1006. package/dist/cjs/transactions/Inputs.js +0 -80
  1007. package/dist/cjs/transactions/Inputs.js.map +0 -7
  1008. package/dist/cjs/transactions/ObjectCache.d.ts +0 -83
  1009. package/dist/cjs/transactions/ObjectCache.js +0 -241
  1010. package/dist/cjs/transactions/ObjectCache.js.map +0 -7
  1011. package/dist/cjs/transactions/Transaction.d.ts +0 -710
  1012. package/dist/cjs/transactions/Transaction.js +0 -683
  1013. package/dist/cjs/transactions/Transaction.js.map +0 -7
  1014. package/dist/cjs/transactions/TransactionData.d.ts +0 -73
  1015. package/dist/cjs/transactions/TransactionData.js +0 -433
  1016. package/dist/cjs/transactions/TransactionData.js.map +0 -7
  1017. package/dist/cjs/transactions/__tests__/Transaction.test.d.ts +0 -1
  1018. package/dist/cjs/transactions/__tests__/bcs.test.d.ts +0 -1
  1019. package/dist/cjs/transactions/data/internal.d.ts +0 -1010
  1020. package/dist/cjs/transactions/data/internal.js +0 -216
  1021. package/dist/cjs/transactions/data/internal.js.map +0 -7
  1022. package/dist/cjs/transactions/data/v1.d.ts +0 -312
  1023. package/dist/cjs/transactions/data/v1.js +0 -482
  1024. package/dist/cjs/transactions/data/v1.js.map +0 -7
  1025. package/dist/cjs/transactions/data/v2.d.ts +0 -153
  1026. package/dist/cjs/transactions/data/v2.js +0 -125
  1027. package/dist/cjs/transactions/data/v2.js.map +0 -7
  1028. package/dist/cjs/transactions/executor/caching.d.ts +0 -31
  1029. package/dist/cjs/transactions/executor/caching.js +0 -114
  1030. package/dist/cjs/transactions/executor/caching.js.map +0 -7
  1031. package/dist/cjs/transactions/executor/parallel.d.ts +0 -37
  1032. package/dist/cjs/transactions/executor/parallel.js +0 -380
  1033. package/dist/cjs/transactions/executor/parallel.js.map +0 -7
  1034. package/dist/cjs/transactions/executor/queue.d.ts +0 -11
  1035. package/dist/cjs/transactions/executor/queue.js +0 -85
  1036. package/dist/cjs/transactions/executor/queue.js.map +0 -7
  1037. package/dist/cjs/transactions/executor/serial.d.ts +0 -31
  1038. package/dist/cjs/transactions/executor/serial.js +0 -137
  1039. package/dist/cjs/transactions/executor/serial.js.map +0 -7
  1040. package/dist/cjs/transactions/hash.d.ts +0 -7
  1041. package/dist/cjs/transactions/hash.js +0 -32
  1042. package/dist/cjs/transactions/hash.js.map +0 -7
  1043. package/dist/cjs/transactions/index.d.ts +0 -21
  1044. package/dist/cjs/transactions/index.js +0 -51
  1045. package/dist/cjs/transactions/index.js.map +0 -7
  1046. package/dist/cjs/transactions/intents/CoinWithBalance.d.ts +0 -9
  1047. package/dist/cjs/transactions/intents/CoinWithBalance.js +0 -188
  1048. package/dist/cjs/transactions/intents/CoinWithBalance.js.map +0 -7
  1049. package/dist/cjs/transactions/object.d.ts +0 -16
  1050. package/dist/cjs/transactions/object.js +0 -78
  1051. package/dist/cjs/transactions/object.js.map +0 -7
  1052. package/dist/cjs/transactions/plugins/NamedPackagesPlugin.d.ts +0 -48
  1053. package/dist/cjs/transactions/plugins/NamedPackagesPlugin.js +0 -67
  1054. package/dist/cjs/transactions/plugins/NamedPackagesPlugin.js.map +0 -7
  1055. package/dist/cjs/transactions/pure.d.ts +0 -20
  1056. package/dist/cjs/transactions/pure.js +0 -57
  1057. package/dist/cjs/transactions/pure.js.map +0 -7
  1058. package/dist/cjs/transactions/resolve.d.ts +0 -13
  1059. package/dist/cjs/transactions/resolve.js +0 -98
  1060. package/dist/cjs/transactions/resolve.js.map +0 -7
  1061. package/dist/cjs/transactions/serializer.d.ts +0 -7
  1062. package/dist/cjs/transactions/serializer.js +0 -182
  1063. package/dist/cjs/transactions/serializer.js.map +0 -7
  1064. package/dist/cjs/transactions/utils.d.ts +0 -10
  1065. package/dist/cjs/transactions/utils.js +0 -135
  1066. package/dist/cjs/transactions/utils.js.map +0 -7
  1067. package/dist/cjs/utils/constants.d.ts +0 -10
  1068. package/dist/cjs/utils/constants.js +0 -44
  1069. package/dist/cjs/utils/constants.js.map +0 -7
  1070. package/dist/cjs/utils/derived-objects.d.ts +0 -5
  1071. package/dist/cjs/utils/derived-objects.js +0 -34
  1072. package/dist/cjs/utils/derived-objects.js.map +0 -7
  1073. package/dist/cjs/utils/dynamic-fields.d.ts +0 -2
  1074. package/dist/cjs/utils/dynamic-fields.js +0 -41
  1075. package/dist/cjs/utils/dynamic-fields.js.map +0 -7
  1076. package/dist/cjs/utils/format.d.ts +0 -2
  1077. package/dist/cjs/utils/format.js +0 -36
  1078. package/dist/cjs/utils/format.js.map +0 -7
  1079. package/dist/cjs/utils/index.d.ts +0 -9
  1080. package/dist/cjs/utils/index.js +0 -69
  1081. package/dist/cjs/utils/index.js.map +0 -7
  1082. package/dist/cjs/utils/move-registry.d.ts +0 -6
  1083. package/dist/cjs/utils/move-registry.js +0 -45
  1084. package/dist/cjs/utils/move-registry.js.map +0 -7
  1085. package/dist/cjs/utils/sui-types.d.ts +0 -26
  1086. package/dist/cjs/utils/sui-types.js +0 -91
  1087. package/dist/cjs/utils/sui-types.js.map +0 -7
  1088. package/dist/cjs/utils/suins.d.ts +0 -2
  1089. package/dist/cjs/utils/suins.js +0 -57
  1090. package/dist/cjs/utils/suins.js.map +0 -7
  1091. package/dist/cjs/verify/index.d.ts +0 -1
  1092. package/dist/cjs/verify/index.js +0 -29
  1093. package/dist/cjs/verify/index.js.map +0 -7
  1094. package/dist/cjs/verify/verify.d.ts +0 -21
  1095. package/dist/cjs/verify/verify.js +0 -124
  1096. package/dist/cjs/verify/verify.js.map +0 -7
  1097. package/dist/cjs/version.d.ts +0 -2
  1098. package/dist/cjs/version.js +0 -27
  1099. package/dist/cjs/version.js.map +0 -7
  1100. package/dist/cjs/zklogin/address.d.ts +0 -16
  1101. package/dist/cjs/zklogin/address.js +0 -87
  1102. package/dist/cjs/zklogin/address.js.map +0 -7
  1103. package/dist/cjs/zklogin/bcs.d.ts +0 -28
  1104. package/dist/cjs/zklogin/bcs.js +0 -42
  1105. package/dist/cjs/zklogin/bcs.js.map +0 -7
  1106. package/dist/cjs/zklogin/index.d.ts +0 -9
  1107. package/dist/cjs/zklogin/index.js +0 -46
  1108. package/dist/cjs/zklogin/index.js.map +0 -7
  1109. package/dist/cjs/zklogin/jwt-decode.d.ts +0 -47
  1110. package/dist/cjs/zklogin/jwt-decode.js +0 -85
  1111. package/dist/cjs/zklogin/jwt-decode.js.map +0 -7
  1112. package/dist/cjs/zklogin/jwt-utils.d.ts +0 -12
  1113. package/dist/cjs/zklogin/jwt-utils.js +0 -121
  1114. package/dist/cjs/zklogin/jwt-utils.js.map +0 -7
  1115. package/dist/cjs/zklogin/nonce.d.ts +0 -4
  1116. package/dist/cjs/zklogin/nonce.js +0 -54
  1117. package/dist/cjs/zklogin/nonce.js.map +0 -7
  1118. package/dist/cjs/zklogin/poseidon.d.ts +0 -2
  1119. package/dist/cjs/zklogin/poseidon.js +0 -63
  1120. package/dist/cjs/zklogin/poseidon.js.map +0 -7
  1121. package/dist/cjs/zklogin/publickey.d.ts +0 -87
  1122. package/dist/cjs/zklogin/publickey.js +0 -257
  1123. package/dist/cjs/zklogin/publickey.js.map +0 -7
  1124. package/dist/cjs/zklogin/signature.d.ts +0 -23
  1125. package/dist/cjs/zklogin/signature.js +0 -48
  1126. package/dist/cjs/zklogin/signature.js.map +0 -7
  1127. package/dist/cjs/zklogin/utils.d.ts +0 -16
  1128. package/dist/cjs/zklogin/utils.js +0 -97
  1129. package/dist/cjs/zklogin/utils.js.map +0 -7
  1130. package/dist/esm/bcs/bcs.d.ts +0 -1973
  1131. package/dist/esm/bcs/bcs.js +0 -308
  1132. package/dist/esm/bcs/bcs.js.map +0 -7
  1133. package/dist/esm/bcs/effects.d.ts +0 -579
  1134. package/dist/esm/bcs/effects.js +0 -190
  1135. package/dist/esm/bcs/effects.js.map +0 -7
  1136. package/dist/esm/bcs/index.d.ts +0 -2589
  1137. package/dist/esm/bcs/index.js +0 -94
  1138. package/dist/esm/bcs/index.js.map +0 -7
  1139. package/dist/esm/bcs/pure.d.ts +0 -22
  1140. package/dist/esm/bcs/pure.js +0 -39
  1141. package/dist/esm/bcs/pure.js.map +0 -7
  1142. package/dist/esm/bcs/type-tag-serializer.d.ts +0 -7
  1143. package/dist/esm/bcs/type-tag-serializer.js +0 -97
  1144. package/dist/esm/bcs/type-tag-serializer.js.map +0 -7
  1145. package/dist/esm/bcs/types.d.ts +0 -114
  1146. package/dist/esm/bcs/types.js +0 -7
  1147. package/dist/esm/bcs/types.js.map +0 -7
  1148. package/dist/esm/client/index.d.ts +0 -5
  1149. package/dist/esm/client/index.js +0 -19
  1150. package/dist/esm/client/index.js.map +0 -7
  1151. package/dist/esm/client/network.d.ts +0 -1
  1152. package/dist/esm/client/network.js +0 -18
  1153. package/dist/esm/client/network.js.map +0 -7
  1154. package/dist/esm/cryptography/index.d.ts +0 -7
  1155. package/dist/esm/cryptography/index.js +0 -47
  1156. package/dist/esm/cryptography/index.js.map +0 -7
  1157. package/dist/esm/cryptography/intent.d.ts +0 -6
  1158. package/dist/esm/cryptography/intent.js +0 -15
  1159. package/dist/esm/cryptography/intent.js.map +0 -7
  1160. package/dist/esm/cryptography/keypair.d.ts +0 -72
  1161. package/dist/esm/cryptography/keypair.js +0 -98
  1162. package/dist/esm/cryptography/keypair.js.map +0 -7
  1163. package/dist/esm/cryptography/mnemonics.d.ts +0 -27
  1164. package/dist/esm/cryptography/mnemonics.js +0 -27
  1165. package/dist/esm/cryptography/mnemonics.js.map +0 -7
  1166. package/dist/esm/cryptography/publickey.d.ts +0 -67
  1167. package/dist/esm/cryptography/publickey.js +0 -120
  1168. package/dist/esm/cryptography/publickey.js.map +0 -7
  1169. package/dist/esm/cryptography/signature-scheme.d.ts +0 -24
  1170. package/dist/esm/cryptography/signature-scheme.js +0 -28
  1171. package/dist/esm/cryptography/signature-scheme.js.map +0 -7
  1172. package/dist/esm/cryptography/signature.d.ts +0 -65
  1173. package/dist/esm/cryptography/signature.js +0 -51
  1174. package/dist/esm/cryptography/signature.js.map +0 -7
  1175. package/dist/esm/experimental/cache.d.ts +0 -12
  1176. package/dist/esm/experimental/cache.js +0 -68
  1177. package/dist/esm/experimental/cache.js.map +0 -7
  1178. package/dist/esm/experimental/client.d.ts +0 -12
  1179. package/dist/esm/experimental/client.js +0 -26
  1180. package/dist/esm/experimental/client.js.map +0 -7
  1181. package/dist/esm/experimental/core.d.ts +0 -37
  1182. package/dist/esm/experimental/core.js +0 -94
  1183. package/dist/esm/experimental/core.js.map +0 -7
  1184. package/dist/esm/experimental/errors.d.ts +0 -8
  1185. package/dist/esm/experimental/errors.js +0 -34
  1186. package/dist/esm/experimental/errors.js.map +0 -7
  1187. package/dist/esm/experimental/index.d.ts +0 -7
  1188. package/dist/esm/experimental/index.js +0 -12
  1189. package/dist/esm/experimental/index.js.map +0 -7
  1190. package/dist/esm/experimental/mvr.d.ts +0 -42
  1191. package/dist/esm/experimental/mvr.js +0 -350
  1192. package/dist/esm/experimental/mvr.js.map +0 -7
  1193. package/dist/esm/experimental/transports/utils.d.ts +0 -3
  1194. package/dist/esm/experimental/transports/utils.js +0 -81
  1195. package/dist/esm/experimental/transports/utils.js.map +0 -7
  1196. package/dist/esm/experimental/types.d.ts +0 -434
  1197. package/dist/esm/experimental/types.js +0 -1
  1198. package/dist/esm/experimental/types.js.map +0 -7
  1199. package/dist/esm/faucet/faucet.d.ts +0 -65
  1200. package/dist/esm/faucet/faucet.js +0 -110
  1201. package/dist/esm/faucet/faucet.js.map +0 -7
  1202. package/dist/esm/faucet/index.d.ts +0 -1
  1203. package/dist/esm/faucet/index.js +0 -17
  1204. package/dist/esm/faucet/index.js.map +0 -7
  1205. package/dist/esm/graphql/client.d.ts +0 -50
  1206. package/dist/esm/graphql/client.js +0 -74
  1207. package/dist/esm/graphql/client.js.map +0 -7
  1208. package/dist/esm/graphql/core.d.ts +0 -32
  1209. package/dist/esm/graphql/core.js +0 -469
  1210. package/dist/esm/graphql/core.js.map +0 -7
  1211. package/dist/esm/graphql/generated/2024.1/tada-env.d.ts +0 -11380
  1212. package/dist/esm/graphql/generated/2024.1/tada-env.js +0 -13122
  1213. package/dist/esm/graphql/generated/2024.1/tada-env.js.map +0 -7
  1214. package/dist/esm/graphql/generated/2024.1/tsconfig.tada.js +0 -17
  1215. package/dist/esm/graphql/generated/2024.1/tsconfig.tada.js.map +0 -7
  1216. package/dist/esm/graphql/generated/2024.4/tada-env.d.ts +0 -11496
  1217. package/dist/esm/graphql/generated/2024.4/tada-env.js +0 -13268
  1218. package/dist/esm/graphql/generated/2024.4/tada-env.js.map +0 -7
  1219. package/dist/esm/graphql/generated/2024.4/tsconfig.tada.js +0 -17
  1220. package/dist/esm/graphql/generated/2024.4/tsconfig.tada.js.map +0 -7
  1221. package/dist/esm/graphql/generated/latest/tada-env.d.ts +0 -11128
  1222. package/dist/esm/graphql/generated/latest/tada-env.js +0 -12906
  1223. package/dist/esm/graphql/generated/latest/tada-env.js.map +0 -7
  1224. package/dist/esm/graphql/generated/latest/tsconfig.tada.js +0 -17
  1225. package/dist/esm/graphql/generated/latest/tsconfig.tada.js.map +0 -7
  1226. package/dist/esm/graphql/generated/queries.d.ts +0 -4963
  1227. package/dist/esm/graphql/generated/queries.js +0 -783
  1228. package/dist/esm/graphql/generated/queries.js.map +0 -7
  1229. package/dist/esm/graphql/index.d.ts +0 -1
  1230. package/dist/esm/graphql/index.js +0 -9
  1231. package/dist/esm/graphql/index.js.map +0 -7
  1232. package/dist/esm/graphql/schemas/2024.1/index.d.ts +0 -10
  1233. package/dist/esm/graphql/schemas/2024.1/index.js +0 -9
  1234. package/dist/esm/graphql/schemas/2024.1/index.js.map +0 -7
  1235. package/dist/esm/graphql/schemas/2024.4/index.d.ts +0 -10
  1236. package/dist/esm/graphql/schemas/2024.4/index.js +0 -9
  1237. package/dist/esm/graphql/schemas/2024.4/index.js.map +0 -7
  1238. package/dist/esm/graphql/schemas/latest/index.d.ts +0 -10
  1239. package/dist/esm/graphql/schemas/latest/index.js +0 -9
  1240. package/dist/esm/graphql/schemas/latest/index.js.map +0 -7
  1241. package/dist/esm/graphql/types.d.ts +0 -71
  1242. package/dist/esm/graphql/types.js +0 -1
  1243. package/dist/esm/graphql/types.js.map +0 -7
  1244. package/dist/esm/grpc/client.d.ts +0 -33
  1245. package/dist/esm/grpc/client.js +0 -33
  1246. package/dist/esm/grpc/client.js.map +0 -7
  1247. package/dist/esm/grpc/core.d.ts +0 -30
  1248. package/dist/esm/grpc/core.js +0 -640
  1249. package/dist/esm/grpc/core.js.map +0 -7
  1250. package/dist/esm/grpc/index.d.ts +0 -4
  1251. package/dist/esm/grpc/index.js +0 -7
  1252. package/dist/esm/grpc/index.js.map +0 -7
  1253. package/dist/esm/grpc/proto/google/protobuf/any.d.ts +0 -173
  1254. package/dist/esm/grpc/proto/google/protobuf/any.js +0 -119
  1255. package/dist/esm/grpc/proto/google/protobuf/any.js.map +0 -7
  1256. package/dist/esm/grpc/proto/google/protobuf/duration.d.ts +0 -104
  1257. package/dist/esm/grpc/proto/google/protobuf/duration.js +0 -68
  1258. package/dist/esm/grpc/proto/google/protobuf/duration.js.map +0 -7
  1259. package/dist/esm/grpc/proto/google/protobuf/empty.d.ts +0 -25
  1260. package/dist/esm/grpc/proto/google/protobuf/empty.js +0 -11
  1261. package/dist/esm/grpc/proto/google/protobuf/empty.js.map +0 -7
  1262. package/dist/esm/grpc/proto/google/protobuf/field_mask.d.ts +0 -231
  1263. package/dist/esm/grpc/proto/google/protobuf/field_mask.js +0 -53
  1264. package/dist/esm/grpc/proto/google/protobuf/field_mask.js.map +0 -7
  1265. package/dist/esm/grpc/proto/google/protobuf/struct.d.ts +0 -169
  1266. package/dist/esm/grpc/proto/google/protobuf/struct.js +0 -179
  1267. package/dist/esm/grpc/proto/google/protobuf/struct.js.map +0 -7
  1268. package/dist/esm/grpc/proto/google/protobuf/timestamp.d.ts +0 -145
  1269. package/dist/esm/grpc/proto/google/protobuf/timestamp.js +0 -103
  1270. package/dist/esm/grpc/proto/google/protobuf/timestamp.js.map +0 -7
  1271. package/dist/esm/grpc/proto/google/rpc/error_details.d.ts +0 -525
  1272. package/dist/esm/grpc/proto/google/rpc/error_details.js +0 -312
  1273. package/dist/esm/grpc/proto/google/rpc/error_details.js.map +0 -7
  1274. package/dist/esm/grpc/proto/google/rpc/status.d.ts +0 -46
  1275. package/dist/esm/grpc/proto/google/rpc/status.js +0 -28
  1276. package/dist/esm/grpc/proto/google/rpc/status.js.map +0 -7
  1277. package/dist/esm/grpc/proto/sui/rpc/v2/argument.d.ts +0 -66
  1278. package/dist/esm/grpc/proto/sui/rpc/v2/argument.js +0 -51
  1279. package/dist/esm/grpc/proto/sui/rpc/v2/argument.js.map +0 -7
  1280. package/dist/esm/grpc/proto/sui/rpc/v2/balance_change.d.ts +0 -34
  1281. package/dist/esm/grpc/proto/sui/rpc/v2/balance_change.js +0 -36
  1282. package/dist/esm/grpc/proto/sui/rpc/v2/balance_change.js.map +0 -7
  1283. package/dist/esm/grpc/proto/sui/rpc/v2/bcs.d.ts +0 -30
  1284. package/dist/esm/grpc/proto/sui/rpc/v2/bcs.js +0 -28
  1285. package/dist/esm/grpc/proto/sui/rpc/v2/bcs.js.map +0 -7
  1286. package/dist/esm/grpc/proto/sui/rpc/v2/checkpoint.d.ts +0 -68
  1287. package/dist/esm/grpc/proto/sui/rpc/v2/checkpoint.js +0 -44
  1288. package/dist/esm/grpc/proto/sui/rpc/v2/checkpoint.js.map +0 -7
  1289. package/dist/esm/grpc/proto/sui/rpc/v2/checkpoint_contents.d.ts +0 -74
  1290. package/dist/esm/grpc/proto/sui/rpc/v2/checkpoint_contents.js +0 -69
  1291. package/dist/esm/grpc/proto/sui/rpc/v2/checkpoint_contents.js.map +0 -7
  1292. package/dist/esm/grpc/proto/sui/rpc/v2/checkpoint_summary.d.ts +0 -195
  1293. package/dist/esm/grpc/proto/sui/rpc/v2/checkpoint_summary.js +0 -145
  1294. package/dist/esm/grpc/proto/sui/rpc/v2/checkpoint_summary.js.map +0 -7
  1295. package/dist/esm/grpc/proto/sui/rpc/v2/effects.d.ts +0 -338
  1296. package/dist/esm/grpc/proto/sui/rpc/v2/effects.js +0 -274
  1297. package/dist/esm/grpc/proto/sui/rpc/v2/effects.js.map +0 -7
  1298. package/dist/esm/grpc/proto/sui/rpc/v2/epoch.d.ts +0 -62
  1299. package/dist/esm/grpc/proto/sui/rpc/v2/epoch.js +0 -53
  1300. package/dist/esm/grpc/proto/sui/rpc/v2/epoch.js.map +0 -7
  1301. package/dist/esm/grpc/proto/sui/rpc/v2/error_reason.d.ts +0 -17
  1302. package/dist/esm/grpc/proto/sui/rpc/v2/error_reason.js +0 -10
  1303. package/dist/esm/grpc/proto/sui/rpc/v2/error_reason.js.map +0 -7
  1304. package/dist/esm/grpc/proto/sui/rpc/v2/event.d.ts +0 -88
  1305. package/dist/esm/grpc/proto/sui/rpc/v2/event.js +0 -66
  1306. package/dist/esm/grpc/proto/sui/rpc/v2/event.js.map +0 -7
  1307. package/dist/esm/grpc/proto/sui/rpc/v2/executed_transaction.d.ts +0 -80
  1308. package/dist/esm/grpc/proto/sui/rpc/v2/executed_transaction.js +0 -54
  1309. package/dist/esm/grpc/proto/sui/rpc/v2/executed_transaction.js.map +0 -7
  1310. package/dist/esm/grpc/proto/sui/rpc/v2/execution_status.d.ts +0 -843
  1311. package/dist/esm/grpc/proto/sui/rpc/v2/execution_status.js +0 -493
  1312. package/dist/esm/grpc/proto/sui/rpc/v2/execution_status.js.map +0 -7
  1313. package/dist/esm/grpc/proto/sui/rpc/v2/gas_cost_summary.d.ts +0 -41
  1314. package/dist/esm/grpc/proto/sui/rpc/v2/gas_cost_summary.js +0 -44
  1315. package/dist/esm/grpc/proto/sui/rpc/v2/gas_cost_summary.js.map +0 -7
  1316. package/dist/esm/grpc/proto/sui/rpc/v2/input.d.ts +0 -98
  1317. package/dist/esm/grpc/proto/sui/rpc/v2/input.js +0 -70
  1318. package/dist/esm/grpc/proto/sui/rpc/v2/input.js.map +0 -7
  1319. package/dist/esm/grpc/proto/sui/rpc/v2/jwk.d.ts +0 -70
  1320. package/dist/esm/grpc/proto/sui/rpc/v2/jwk.js +0 -68
  1321. package/dist/esm/grpc/proto/sui/rpc/v2/jwk.js.map +0 -7
  1322. package/dist/esm/grpc/proto/sui/rpc/v2/ledger_service.client.d.ts +0 -95
  1323. package/dist/esm/grpc/proto/sui/rpc/v2/ledger_service.client.js +0 -107
  1324. package/dist/esm/grpc/proto/sui/rpc/v2/ledger_service.client.js.map +0 -7
  1325. package/dist/esm/grpc/proto/sui/rpc/v2/ledger_service.d.ts +0 -420
  1326. package/dist/esm/grpc/proto/sui/rpc/v2/ledger_service.js +0 -307
  1327. package/dist/esm/grpc/proto/sui/rpc/v2/ledger_service.js.map +0 -7
  1328. package/dist/esm/grpc/proto/sui/rpc/v2/move_package.d.ts +0 -579
  1329. package/dist/esm/grpc/proto/sui/rpc/v2/move_package.js +0 -460
  1330. package/dist/esm/grpc/proto/sui/rpc/v2/move_package.js.map +0 -7
  1331. package/dist/esm/grpc/proto/sui/rpc/v2/move_package_service.client.d.ts +0 -61
  1332. package/dist/esm/grpc/proto/sui/rpc/v2/move_package_service.client.js +0 -66
  1333. package/dist/esm/grpc/proto/sui/rpc/v2/move_package_service.client.js.map +0 -7
  1334. package/dist/esm/grpc/proto/sui/rpc/v2/move_package_service.d.ts +0 -229
  1335. package/dist/esm/grpc/proto/sui/rpc/v2/move_package_service.js +0 -206
  1336. package/dist/esm/grpc/proto/sui/rpc/v2/move_package_service.js.map +0 -7
  1337. package/dist/esm/grpc/proto/sui/rpc/v2/name_service.client.d.ts +0 -41
  1338. package/dist/esm/grpc/proto/sui/rpc/v2/name_service.client.js +0 -40
  1339. package/dist/esm/grpc/proto/sui/rpc/v2/name_service.client.js.map +0 -7
  1340. package/dist/esm/grpc/proto/sui/rpc/v2/name_service.d.ts +0 -144
  1341. package/dist/esm/grpc/proto/sui/rpc/v2/name_service.js +0 -118
  1342. package/dist/esm/grpc/proto/sui/rpc/v2/name_service.js.map +0 -7
  1343. package/dist/esm/grpc/proto/sui/rpc/v2/object.d.ts +0 -127
  1344. package/dist/esm/grpc/proto/sui/rpc/v2/object.js +0 -93
  1345. package/dist/esm/grpc/proto/sui/rpc/v2/object.js.map +0 -7
  1346. package/dist/esm/grpc/proto/sui/rpc/v2/object_reference.d.ts +0 -34
  1347. package/dist/esm/grpc/proto/sui/rpc/v2/object_reference.js +0 -36
  1348. package/dist/esm/grpc/proto/sui/rpc/v2/object_reference.js.map +0 -7
  1349. package/dist/esm/grpc/proto/sui/rpc/v2/owner.d.ts +0 -61
  1350. package/dist/esm/grpc/proto/sui/rpc/v2/owner.js +0 -45
  1351. package/dist/esm/grpc/proto/sui/rpc/v2/owner.js.map +0 -7
  1352. package/dist/esm/grpc/proto/sui/rpc/v2/protocol_config.d.ts +0 -30
  1353. package/dist/esm/grpc/proto/sui/rpc/v2/protocol_config.js +0 -42
  1354. package/dist/esm/grpc/proto/sui/rpc/v2/protocol_config.js.map +0 -7
  1355. package/dist/esm/grpc/proto/sui/rpc/v2/signature.d.ts +0 -630
  1356. package/dist/esm/grpc/proto/sui/rpc/v2/signature.js +0 -494
  1357. package/dist/esm/grpc/proto/sui/rpc/v2/signature.js.map +0 -7
  1358. package/dist/esm/grpc/proto/sui/rpc/v2/signature_scheme.d.ts +0 -40
  1359. package/dist/esm/grpc/proto/sui/rpc/v2/signature_scheme.js +0 -14
  1360. package/dist/esm/grpc/proto/sui/rpc/v2/signature_scheme.js.map +0 -7
  1361. package/dist/esm/grpc/proto/sui/rpc/v2/signature_verification_service.client.d.ts +0 -35
  1362. package/dist/esm/grpc/proto/sui/rpc/v2/signature_verification_service.client.js +0 -29
  1363. package/dist/esm/grpc/proto/sui/rpc/v2/signature_verification_service.client.js.map +0 -7
  1364. package/dist/esm/grpc/proto/sui/rpc/v2/signature_verification_service.d.ts +0 -79
  1365. package/dist/esm/grpc/proto/sui/rpc/v2/signature_verification_service.js +0 -56
  1366. package/dist/esm/grpc/proto/sui/rpc/v2/signature_verification_service.js.map +0 -7
  1367. package/dist/esm/grpc/proto/sui/rpc/v2/state_service.client.d.ts +0 -71
  1368. package/dist/esm/grpc/proto/sui/rpc/v2/state_service.client.js +0 -79
  1369. package/dist/esm/grpc/proto/sui/rpc/v2/state_service.client.js.map +0 -7
  1370. package/dist/esm/grpc/proto/sui/rpc/v2/state_service.d.ts +0 -690
  1371. package/dist/esm/grpc/proto/sui/rpc/v2/state_service.js +0 -526
  1372. package/dist/esm/grpc/proto/sui/rpc/v2/state_service.js.map +0 -7
  1373. package/dist/esm/grpc/proto/sui/rpc/v2/subscription_service.client.d.ts +0 -55
  1374. package/dist/esm/grpc/proto/sui/rpc/v2/subscription_service.client.js +0 -39
  1375. package/dist/esm/grpc/proto/sui/rpc/v2/subscription_service.client.js.map +0 -7
  1376. package/dist/esm/grpc/proto/sui/rpc/v2/subscription_service.d.ts +0 -57
  1377. package/dist/esm/grpc/proto/sui/rpc/v2/subscription_service.js +0 -43
  1378. package/dist/esm/grpc/proto/sui/rpc/v2/subscription_service.js.map +0 -7
  1379. package/dist/esm/grpc/proto/sui/rpc/v2/system_state.d.ts +0 -684
  1380. package/dist/esm/grpc/proto/sui/rpc/v2/system_state.js +0 -654
  1381. package/dist/esm/grpc/proto/sui/rpc/v2/system_state.js.map +0 -7
  1382. package/dist/esm/grpc/proto/sui/rpc/v2/transaction.d.ts +0 -1321
  1383. package/dist/esm/grpc/proto/sui/rpc/v2/transaction.js +0 -911
  1384. package/dist/esm/grpc/proto/sui/rpc/v2/transaction.js.map +0 -7
  1385. package/dist/esm/grpc/proto/sui/rpc/v2/transaction_execution_service.client.d.ts +0 -41
  1386. package/dist/esm/grpc/proto/sui/rpc/v2/transaction_execution_service.client.js +0 -40
  1387. package/dist/esm/grpc/proto/sui/rpc/v2/transaction_execution_service.client.js.map +0 -7
  1388. package/dist/esm/grpc/proto/sui/rpc/v2/transaction_execution_service.d.ts +0 -184
  1389. package/dist/esm/grpc/proto/sui/rpc/v2/transaction_execution_service.js +0 -139
  1390. package/dist/esm/grpc/proto/sui/rpc/v2/transaction_execution_service.js.map +0 -7
  1391. package/dist/esm/jsonRpc/client.d.ts +0 -264
  1392. package/dist/esm/jsonRpc/client.js +0 -818
  1393. package/dist/esm/jsonRpc/client.js.map +0 -7
  1394. package/dist/esm/jsonRpc/core.d.ts +0 -93
  1395. package/dist/esm/jsonRpc/core.js +0 -624
  1396. package/dist/esm/jsonRpc/core.js.map +0 -7
  1397. package/dist/esm/jsonRpc/errors.d.ts +0 -12
  1398. package/dist/esm/jsonRpc/errors.js +0 -40
  1399. package/dist/esm/jsonRpc/errors.js.map +0 -7
  1400. package/dist/esm/jsonRpc/http-transport.d.ts +0 -42
  1401. package/dist/esm/jsonRpc/http-transport.js +0 -99
  1402. package/dist/esm/jsonRpc/http-transport.js.map +0 -7
  1403. package/dist/esm/jsonRpc/index.d.ts +0 -4
  1404. package/dist/esm/jsonRpc/index.js +0 -17
  1405. package/dist/esm/jsonRpc/index.js.map +0 -7
  1406. package/dist/esm/jsonRpc/json-rpc-resolver.d.ts +0 -4
  1407. package/dist/esm/jsonRpc/json-rpc-resolver.js +0 -295
  1408. package/dist/esm/jsonRpc/json-rpc-resolver.js.map +0 -7
  1409. package/dist/esm/jsonRpc/rpc-websocket-client.d.ts +0 -43
  1410. package/dist/esm/jsonRpc/rpc-websocket-client.js +0 -174
  1411. package/dist/esm/jsonRpc/rpc-websocket-client.js.map +0 -7
  1412. package/dist/esm/jsonRpc/types/chain.d.ts +0 -99
  1413. package/dist/esm/jsonRpc/types/chain.js +0 -1
  1414. package/dist/esm/jsonRpc/types/chain.js.map +0 -7
  1415. package/dist/esm/jsonRpc/types/changes.d.ts +0 -19
  1416. package/dist/esm/jsonRpc/types/changes.js +0 -1
  1417. package/dist/esm/jsonRpc/types/changes.js.map +0 -7
  1418. package/dist/esm/jsonRpc/types/coins.d.ts +0 -6
  1419. package/dist/esm/jsonRpc/types/coins.js +0 -1
  1420. package/dist/esm/jsonRpc/types/coins.js.map +0 -7
  1421. package/dist/esm/jsonRpc/types/common.d.ts +0 -2
  1422. package/dist/esm/jsonRpc/types/common.js +0 -1
  1423. package/dist/esm/jsonRpc/types/common.js.map +0 -7
  1424. package/dist/esm/jsonRpc/types/generated.d.ts +0 -1492
  1425. package/dist/esm/jsonRpc/types/generated.js +0 -1
  1426. package/dist/esm/jsonRpc/types/generated.js.map +0 -7
  1427. package/dist/esm/jsonRpc/types/index.d.ts +0 -6
  1428. package/dist/esm/jsonRpc/types/index.js +0 -1
  1429. package/dist/esm/jsonRpc/types/index.js.map +0 -7
  1430. package/dist/esm/jsonRpc/types/params.d.ts +0 -656
  1431. package/dist/esm/jsonRpc/types/params.js +0 -1
  1432. package/dist/esm/jsonRpc/types/params.js.map +0 -7
  1433. package/dist/esm/keypairs/ed25519/ed25519-hd-key.d.ts +0 -8
  1434. package/dist/esm/keypairs/ed25519/ed25519-hd-key.js +0 -57
  1435. package/dist/esm/keypairs/ed25519/ed25519-hd-key.js.map +0 -7
  1436. package/dist/esm/keypairs/ed25519/index.d.ts +0 -2
  1437. package/dist/esm/keypairs/ed25519/index.js +0 -11
  1438. package/dist/esm/keypairs/ed25519/index.js.map +0 -7
  1439. package/dist/esm/keypairs/ed25519/keypair.d.ts +0 -74
  1440. package/dist/esm/keypairs/ed25519/keypair.js +0 -147
  1441. package/dist/esm/keypairs/ed25519/keypair.js.map +0 -7
  1442. package/dist/esm/keypairs/ed25519/publickey.d.ts +0 -30
  1443. package/dist/esm/keypairs/ed25519/publickey.js +0 -72
  1444. package/dist/esm/keypairs/ed25519/publickey.js.map +0 -7
  1445. package/dist/esm/keypairs/passkey/index.d.ts +0 -3
  1446. package/dist/esm/keypairs/passkey/index.js +0 -9
  1447. package/dist/esm/keypairs/passkey/index.js.map +0 -7
  1448. package/dist/esm/keypairs/passkey/keypair.d.ts +0 -113
  1449. package/dist/esm/keypairs/passkey/keypair.js +0 -236
  1450. package/dist/esm/keypairs/passkey/keypair.js.map +0 -7
  1451. package/dist/esm/keypairs/passkey/publickey.d.ts +0 -72
  1452. package/dist/esm/keypairs/passkey/publickey.js +0 -148
  1453. package/dist/esm/keypairs/passkey/publickey.js.map +0 -7
  1454. package/dist/esm/keypairs/passkey/types.d.ts +0 -12
  1455. package/dist/esm/keypairs/passkey/types.js +0 -1
  1456. package/dist/esm/keypairs/passkey/types.js.map +0 -7
  1457. package/dist/esm/keypairs/secp256k1/index.d.ts +0 -2
  1458. package/dist/esm/keypairs/secp256k1/index.js +0 -11
  1459. package/dist/esm/keypairs/secp256k1/index.js.map +0 -7
  1460. package/dist/esm/keypairs/secp256k1/keypair.d.ts +0 -73
  1461. package/dist/esm/keypairs/secp256k1/keypair.js +0 -130
  1462. package/dist/esm/keypairs/secp256k1/keypair.js.map +0 -7
  1463. package/dist/esm/keypairs/secp256k1/publickey.d.ts +0 -30
  1464. package/dist/esm/keypairs/secp256k1/publickey.js +0 -77
  1465. package/dist/esm/keypairs/secp256k1/publickey.js.map +0 -7
  1466. package/dist/esm/keypairs/secp256r1/index.d.ts +0 -2
  1467. package/dist/esm/keypairs/secp256r1/index.js +0 -11
  1468. package/dist/esm/keypairs/secp256r1/index.js.map +0 -7
  1469. package/dist/esm/keypairs/secp256r1/keypair.d.ts +0 -73
  1470. package/dist/esm/keypairs/secp256r1/keypair.js +0 -124
  1471. package/dist/esm/keypairs/secp256r1/keypair.js.map +0 -7
  1472. package/dist/esm/keypairs/secp256r1/publickey.d.ts +0 -30
  1473. package/dist/esm/keypairs/secp256r1/publickey.js +0 -74
  1474. package/dist/esm/keypairs/secp256r1/publickey.js.map +0 -7
  1475. package/dist/esm/multisig/index.d.ts +0 -2
  1476. package/dist/esm/multisig/index.js +0 -8
  1477. package/dist/esm/multisig/index.js.map +0 -7
  1478. package/dist/esm/multisig/publickey.d.ts +0 -114
  1479. package/dist/esm/multisig/publickey.js +0 -243
  1480. package/dist/esm/multisig/publickey.js.map +0 -7
  1481. package/dist/esm/multisig/signer.d.ts +0 -20
  1482. package/dist/esm/multisig/signer.js +0 -85
  1483. package/dist/esm/multisig/signer.js.map +0 -7
  1484. package/dist/esm/package.json +0 -5
  1485. package/dist/esm/transactions/Arguments.d.ts +0 -49
  1486. package/dist/esm/transactions/Arguments.js +0 -13
  1487. package/dist/esm/transactions/Arguments.js.map +0 -7
  1488. package/dist/esm/transactions/Commands.d.ts +0 -57
  1489. package/dist/esm/transactions/Commands.js +0 -120
  1490. package/dist/esm/transactions/Commands.js.map +0 -7
  1491. package/dist/esm/transactions/Inputs.d.ts +0 -22
  1492. package/dist/esm/transactions/Inputs.js +0 -60
  1493. package/dist/esm/transactions/Inputs.js.map +0 -7
  1494. package/dist/esm/transactions/ObjectCache.d.ts +0 -83
  1495. package/dist/esm/transactions/ObjectCache.js +0 -221
  1496. package/dist/esm/transactions/ObjectCache.js.map +0 -7
  1497. package/dist/esm/transactions/Transaction.d.ts +0 -710
  1498. package/dist/esm/transactions/Transaction.js +0 -668
  1499. package/dist/esm/transactions/Transaction.js.map +0 -7
  1500. package/dist/esm/transactions/TransactionData.d.ts +0 -73
  1501. package/dist/esm/transactions/TransactionData.js +0 -413
  1502. package/dist/esm/transactions/TransactionData.js.map +0 -7
  1503. package/dist/esm/transactions/__tests__/Transaction.test.d.ts +0 -1
  1504. package/dist/esm/transactions/__tests__/bcs.test.d.ts +0 -1
  1505. package/dist/esm/transactions/data/internal.d.ts +0 -1010
  1506. package/dist/esm/transactions/data/internal.js +0 -215
  1507. package/dist/esm/transactions/data/internal.js.map +0 -7
  1508. package/dist/esm/transactions/data/v1.d.ts +0 -312
  1509. package/dist/esm/transactions/data/v1.js +0 -481
  1510. package/dist/esm/transactions/data/v1.js.map +0 -7
  1511. package/dist/esm/transactions/data/v2.d.ts +0 -153
  1512. package/dist/esm/transactions/data/v2.js +0 -121
  1513. package/dist/esm/transactions/data/v2.js.map +0 -7
  1514. package/dist/esm/transactions/executor/caching.d.ts +0 -31
  1515. package/dist/esm/transactions/executor/caching.js +0 -94
  1516. package/dist/esm/transactions/executor/caching.js.map +0 -7
  1517. package/dist/esm/transactions/executor/parallel.d.ts +0 -37
  1518. package/dist/esm/transactions/executor/parallel.js +0 -360
  1519. package/dist/esm/transactions/executor/parallel.js.map +0 -7
  1520. package/dist/esm/transactions/executor/queue.d.ts +0 -11
  1521. package/dist/esm/transactions/executor/queue.js +0 -65
  1522. package/dist/esm/transactions/executor/queue.js.map +0 -7
  1523. package/dist/esm/transactions/executor/serial.d.ts +0 -31
  1524. package/dist/esm/transactions/executor/serial.js +0 -117
  1525. package/dist/esm/transactions/executor/serial.js.map +0 -7
  1526. package/dist/esm/transactions/hash.d.ts +0 -7
  1527. package/dist/esm/transactions/hash.js +0 -12
  1528. package/dist/esm/transactions/hash.js.map +0 -7
  1529. package/dist/esm/transactions/index.d.ts +0 -21
  1530. package/dist/esm/transactions/index.js +0 -39
  1531. package/dist/esm/transactions/index.js.map +0 -7
  1532. package/dist/esm/transactions/intents/CoinWithBalance.d.ts +0 -9
  1533. package/dist/esm/transactions/intents/CoinWithBalance.js +0 -168
  1534. package/dist/esm/transactions/intents/CoinWithBalance.js.map +0 -7
  1535. package/dist/esm/transactions/object.d.ts +0 -16
  1536. package/dist/esm/transactions/object.js +0 -58
  1537. package/dist/esm/transactions/object.js.map +0 -7
  1538. package/dist/esm/transactions/plugins/NamedPackagesPlugin.d.ts +0 -48
  1539. package/dist/esm/transactions/plugins/NamedPackagesPlugin.js +0 -47
  1540. package/dist/esm/transactions/plugins/NamedPackagesPlugin.js.map +0 -7
  1541. package/dist/esm/transactions/pure.d.ts +0 -20
  1542. package/dist/esm/transactions/pure.js +0 -37
  1543. package/dist/esm/transactions/pure.js.map +0 -7
  1544. package/dist/esm/transactions/resolve.d.ts +0 -13
  1545. package/dist/esm/transactions/resolve.js +0 -78
  1546. package/dist/esm/transactions/resolve.js.map +0 -7
  1547. package/dist/esm/transactions/serializer.d.ts +0 -7
  1548. package/dist/esm/transactions/serializer.js +0 -162
  1549. package/dist/esm/transactions/serializer.js.map +0 -7
  1550. package/dist/esm/transactions/utils.d.ts +0 -10
  1551. package/dist/esm/transactions/utils.js +0 -115
  1552. package/dist/esm/transactions/utils.js.map +0 -7
  1553. package/dist/esm/utils/constants.d.ts +0 -10
  1554. package/dist/esm/utils/constants.js +0 -24
  1555. package/dist/esm/utils/constants.js.map +0 -7
  1556. package/dist/esm/utils/derived-objects.d.ts +0 -5
  1557. package/dist/esm/utils/derived-objects.js +0 -14
  1558. package/dist/esm/utils/derived-objects.js.map +0 -7
  1559. package/dist/esm/utils/dynamic-fields.d.ts +0 -2
  1560. package/dist/esm/utils/dynamic-fields.js +0 -21
  1561. package/dist/esm/utils/dynamic-fields.js.map +0 -7
  1562. package/dist/esm/utils/format.d.ts +0 -2
  1563. package/dist/esm/utils/format.js +0 -16
  1564. package/dist/esm/utils/format.js.map +0 -7
  1565. package/dist/esm/utils/index.d.ts +0 -9
  1566. package/dist/esm/utils/index.js +0 -80
  1567. package/dist/esm/utils/index.js.map +0 -7
  1568. package/dist/esm/utils/move-registry.d.ts +0 -6
  1569. package/dist/esm/utils/move-registry.js +0 -25
  1570. package/dist/esm/utils/move-registry.js.map +0 -7
  1571. package/dist/esm/utils/sui-types.d.ts +0 -26
  1572. package/dist/esm/utils/sui-types.js +0 -71
  1573. package/dist/esm/utils/sui-types.js.map +0 -7
  1574. package/dist/esm/utils/suins.d.ts +0 -2
  1575. package/dist/esm/utils/suins.js +0 -37
  1576. package/dist/esm/utils/suins.js.map +0 -7
  1577. package/dist/esm/verify/index.d.ts +0 -1
  1578. package/dist/esm/verify/index.js +0 -15
  1579. package/dist/esm/verify/index.js.map +0 -7
  1580. package/dist/esm/verify/verify.d.ts +0 -21
  1581. package/dist/esm/verify/verify.js +0 -104
  1582. package/dist/esm/verify/verify.js.map +0 -7
  1583. package/dist/esm/version.d.ts +0 -2
  1584. package/dist/esm/version.js +0 -7
  1585. package/dist/esm/version.js.map +0 -7
  1586. package/dist/esm/zklogin/address.d.ts +0 -16
  1587. package/dist/esm/zklogin/address.js +0 -72
  1588. package/dist/esm/zklogin/address.js.map +0 -7
  1589. package/dist/esm/zklogin/bcs.d.ts +0 -28
  1590. package/dist/esm/zklogin/bcs.js +0 -22
  1591. package/dist/esm/zklogin/bcs.js.map +0 -7
  1592. package/dist/esm/zklogin/index.d.ts +0 -9
  1593. package/dist/esm/zklogin/index.js +0 -35
  1594. package/dist/esm/zklogin/index.js.map +0 -7
  1595. package/dist/esm/zklogin/jwt-decode.d.ts +0 -47
  1596. package/dist/esm/zklogin/jwt-decode.js +0 -65
  1597. package/dist/esm/zklogin/jwt-decode.js.map +0 -7
  1598. package/dist/esm/zklogin/jwt-utils.d.ts +0 -12
  1599. package/dist/esm/zklogin/jwt-utils.js +0 -101
  1600. package/dist/esm/zklogin/jwt-utils.js.map +0 -7
  1601. package/dist/esm/zklogin/nonce.d.ts +0 -4
  1602. package/dist/esm/zklogin/nonce.js +0 -34
  1603. package/dist/esm/zklogin/nonce.js.map +0 -7
  1604. package/dist/esm/zklogin/poseidon.d.ts +0 -2
  1605. package/dist/esm/zklogin/poseidon.js +0 -60
  1606. package/dist/esm/zklogin/poseidon.js.map +0 -7
  1607. package/dist/esm/zklogin/publickey.d.ts +0 -87
  1608. package/dist/esm/zklogin/publickey.js +0 -237
  1609. package/dist/esm/zklogin/publickey.js.map +0 -7
  1610. package/dist/esm/zklogin/signature.d.ts +0 -23
  1611. package/dist/esm/zklogin/signature.js +0 -28
  1612. package/dist/esm/zklogin/signature.js.map +0 -7
  1613. package/dist/esm/zklogin/utils.d.ts +0 -16
  1614. package/dist/esm/zklogin/utils.js +0 -77
  1615. package/dist/esm/zklogin/utils.js.map +0 -7
  1616. package/dist/tsconfig.esm.tsbuildinfo +0 -1
  1617. package/dist/tsconfig.tsbuildinfo +0 -1
  1618. package/experimental/package.json +0 -6
  1619. package/faucet/package.json +0 -6
  1620. package/graphql/package.json +0 -6
  1621. package/graphql/schemas/2024.1/package.json +0 -6
  1622. package/graphql/schemas/2024.4/package.json +0 -6
  1623. package/graphql/schemas/latest/package.json +0 -6
  1624. package/grpc/package.json +0 -6
  1625. package/jsonRpc/package.json +0 -6
  1626. package/keypairs/ed25519/package.json +0 -6
  1627. package/keypairs/passkey/package.json +0 -6
  1628. package/keypairs/secp256k1/package.json +0 -6
  1629. package/keypairs/secp256r1/package.json +0 -6
  1630. package/multisig/package.json +0 -6
  1631. package/src/client/network.ts +0 -17
  1632. package/src/experimental/client.ts +0 -60
  1633. package/src/experimental/core.ts +0 -197
  1634. package/src/experimental/errors.ts +0 -37
  1635. package/src/experimental/index.ts +0 -24
  1636. package/src/experimental/mvr.ts +0 -488
  1637. package/src/experimental/transports/utils.ts +0 -117
  1638. package/src/experimental/types.ts +0 -569
  1639. package/src/graphql/generated/2024.1/schema.graphql +0 -4182
  1640. package/src/graphql/generated/2024.1/tada-env.ts +0 -13144
  1641. package/src/graphql/generated/2024.1/tsconfig.tada.json +0 -11
  1642. package/src/graphql/generated/2024.4/schema.graphql +0 -4211
  1643. package/src/graphql/generated/2024.4/tada-env.ts +0 -13290
  1644. package/src/graphql/generated/2024.4/tsconfig.tada.json +0 -11
  1645. package/src/graphql/generated/latest/schema.graphql +0 -4312
  1646. package/src/graphql/generated/latest/tada-env.ts +0 -12928
  1647. package/src/graphql/generated/latest/tsconfig.tada.json +0 -11
  1648. package/src/graphql/schemas/2024.1/index.ts +0 -17
  1649. package/src/graphql/schemas/2024.4/index.ts +0 -17
  1650. package/src/graphql/schemas/latest/index.ts +0 -17
  1651. package/src/jsonRpc/json-rpc-resolver.ts +0 -420
  1652. package/transactions/package.json +0 -6
  1653. package/utils/package.json +0 -6
  1654. package/verify/package.json +0 -6
  1655. package/zklogin/package.json +0 -6
  1656. /package/src/{experimental → client}/cache.ts +0 -0
@@ -144,10 +144,16 @@ export type ActiveJwkEdge = {
144
144
  node: ActiveJwk;
145
145
  };
146
146
 
147
- export type Address = IAddressable & {
147
+ export type Address = IAddressable & Node & {
148
148
  __typename?: 'Address';
149
149
  /** The Address' identifier, a 32-byte number represented as a 64-character hex string, with a lead "0x". */
150
150
  address: Scalars['SuiAddress']['output'];
151
+ /**
152
+ * Fetch the address as it was at a different root version, or checkpoint.
153
+ *
154
+ * If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
155
+ */
156
+ addressAt?: Maybe<Address>;
151
157
  /** Attempts to fetch the object at this address. */
152
158
  asObject?: Maybe<Object>;
153
159
  /**
@@ -159,8 +165,8 @@ export type Address = IAddressable & {
159
165
  balance?: Maybe<Balance>;
160
166
  /** Total balance across coins owned by this address, grouped by coin type. */
161
167
  balances?: Maybe<BalanceConnection>;
162
- /** The domain explicitly configured as the default SuiNS name for this address. */
163
- defaultSuinsName?: Maybe<Scalars['String']['output']>;
168
+ /** The domain explicitly configured as the default Name Service name for this address. */
169
+ defaultNameRecord?: Maybe<NameRecord>;
164
170
  /**
165
171
  * Access a dynamic field on an object using its type and BCS-encoded name.
166
172
  *
@@ -179,6 +185,8 @@ export type Address = IAddressable & {
179
185
  * Returns `null` if a dynamic object field with that name could not be found attached to the object with this address.
180
186
  */
181
187
  dynamicObjectField?: Maybe<DynamicField>;
188
+ /** The address's globally unique identifier, which can be passed to `Query.node` to refetch it. */
189
+ id: Scalars['ID']['output'];
182
190
  /**
183
191
  * Fetch the total balances keyed by coin types (e.g. `0x2::sui::SUI`) owned by this address.
184
192
  *
@@ -209,6 +217,12 @@ export type Address = IAddressable & {
209
217
  };
210
218
 
211
219
 
220
+ export type AddressAddressAtArgs = {
221
+ checkpoint?: InputMaybe<Scalars['UInt53']['input']>;
222
+ rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
223
+ };
224
+
225
+
212
226
  export type AddressBalanceArgs = {
213
227
  coinType: Scalars['String']['input'];
214
228
  };
@@ -273,6 +287,31 @@ export type AddressTransactionsArgs = {
273
287
  relation?: InputMaybe<AddressTransactionRelationship>;
274
288
  };
275
289
 
290
+ /** System transaction for creating the alias state. */
291
+ export type AddressAliasStateCreateTransaction = {
292
+ __typename?: 'AddressAliasStateCreateTransaction';
293
+ /** A workaround to define an empty variant of a GraphQL union. */
294
+ _?: Maybe<Scalars['Boolean']['output']>;
295
+ };
296
+
297
+ /**
298
+ * Identifies a specific version of an address.
299
+ *
300
+ * Exactly one of `address` or `name` must be specified. Additionally, at most one of `rootVersion` or `atCheckpoint` can be specified. If neither bound is provided, the address is fetched at the checkpoint being viewed.
301
+ *
302
+ * See `Query.address` for more details.
303
+ */
304
+ export type AddressKey = {
305
+ /** The address. */
306
+ address?: InputMaybe<Scalars['SuiAddress']['input']>;
307
+ /** If specified, sets a checkpoint bound for this address. */
308
+ atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;
309
+ /** A SuiNS name to resolve to an address. */
310
+ name?: InputMaybe<Scalars['String']['input']>;
311
+ /** If specified, sets a root version bound for this address. */
312
+ rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
313
+ };
314
+
276
315
  /** Object is exclusively owned by a single address, and is mutable. */
277
316
  export type AddressOwner = {
278
317
  __typename?: 'AddressOwner';
@@ -336,9 +375,13 @@ export type AvailableRange = {
336
375
  /** The total balance for a particular coin type. */
337
376
  export type Balance = {
338
377
  __typename?: 'Balance';
378
+ /** The balance as tracked by the accumulator object for the address. */
379
+ addressBalance?: Maybe<Scalars['BigInt']['output']>;
380
+ /** Total balance across all owned coin objects of the coin type. */
381
+ coinBalance?: Maybe<Scalars['BigInt']['output']>;
339
382
  /** Coin type for the balance, such as `0x2::sui::SUI`. */
340
383
  coinType?: Maybe<MoveType>;
341
- /** The total balance across all coin objects of this coin type. */
384
+ /** The sum total of the accumulator balance and individual coin balances owned by the address. */
342
385
  totalBalance?: Maybe<Scalars['BigInt']['output']>;
343
386
  };
344
387
 
@@ -391,6 +434,17 @@ export type BalanceEdge = {
391
434
  node: Balance;
392
435
  };
393
436
 
437
+ /** Input for withdrawing funds from an accumulator. */
438
+ export type BalanceWithdraw = {
439
+ __typename?: 'BalanceWithdraw';
440
+ /** How much to withdraw from the accumulator. */
441
+ reservation?: Maybe<WithdrawalReservation>;
442
+ /** The type of the funds accumulator to withdraw from (e.g. `0x2::balance::Balance<0x2::sui::SUI>`). */
443
+ type?: Maybe<MoveType>;
444
+ /** The account to withdraw funds from. */
445
+ withdrawFrom?: Maybe<WithdrawFrom>;
446
+ };
447
+
394
448
  /** System transaction for initializing bridge committee. */
395
449
  export type BridgeCommitteeInitTransaction = {
396
450
  __typename?: 'BridgeCommitteeInitTransaction';
@@ -444,7 +498,7 @@ export type ChangeEpochTransactionSystemPackagesArgs = {
444
498
  };
445
499
 
446
500
  /** Checkpoints contain finalized transactions and are used for node synchronization and global transaction ordering. */
447
- export type Checkpoint = {
501
+ export type Checkpoint = Node & {
448
502
  __typename?: 'Checkpoint';
449
503
  /**
450
504
  * A commitment by the committee at each checkpoint on the artifacts of the checkpoint.
@@ -459,6 +513,8 @@ export type Checkpoint = {
459
513
  digest?: Maybe<Scalars['String']['output']>;
460
514
  /** The epoch that this checkpoint is part of. */
461
515
  epoch?: Maybe<Epoch>;
516
+ /** The checkpoint's globally unique identifier, which can be passed to `Query.node` to refetch it. */
517
+ id: Scalars['ID']['output'];
462
518
  /** The total number of transactions in the network by the end of this checkpoint. */
463
519
  networkTotalTransactions?: Maybe<Scalars['UInt53']['output']>;
464
520
  /** The digest of the previous checkpoint's summary. */
@@ -530,6 +586,12 @@ export type CoinMetadata = IAddressable & IMoveObject & IObject & {
530
586
  __typename?: 'CoinMetadata';
531
587
  /** The CoinMetadata's ID. */
532
588
  address: Scalars['SuiAddress']['output'];
589
+ /**
590
+ * Fetch the address as it was at a different root version, or checkpoint.
591
+ *
592
+ * If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
593
+ */
594
+ addressAt?: Maybe<Address>;
533
595
  /** Whether the `DenyCap` can be used to enable a global pause that behaves as if all addresses were added to the deny list. `null` indicates that it is not known whether the currency can be paused or not. This field is only populated on currencies held in the Coin Registry. To determine whether a legacy currency can be paused, check the contents of its `DenyCap`, if it can be found. */
534
596
  allowGlobalPause?: Maybe<Scalars['Boolean']['output']>;
535
597
  /**
@@ -544,8 +606,8 @@ export type CoinMetadata = IAddressable & IMoveObject & IObject & {
544
606
  contents?: Maybe<MoveValue>;
545
607
  /** Number of decimal places the coin uses. */
546
608
  decimals?: Maybe<Scalars['Int']['output']>;
547
- /** The domain explicitly configured as the default SuiNS name for this address. */
548
- defaultSuinsName?: Maybe<Scalars['String']['output']>;
609
+ /** The domain explicitly configured as the default Name Service name for this address. */
610
+ defaultNameRecord?: Maybe<NameRecord>;
549
611
  /** If the currency is regulated, this object represents the capability to modify the deny list. If a capability is known but wrapped, its address can be fetched but other fields will not be accessible. */
550
612
  denyCap?: Maybe<MoveObject>;
551
613
  /** Description of the coin. */
@@ -631,6 +693,13 @@ export type CoinMetadata = IAddressable & IMoveObject & IObject & {
631
693
  };
632
694
 
633
695
 
696
+ /** An object representing metadata about a coin type. */
697
+ export type CoinMetadataAddressAtArgs = {
698
+ checkpoint?: InputMaybe<Scalars['UInt53']['input']>;
699
+ rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
700
+ };
701
+
702
+
634
703
  /** An object representing metadata about a coin type. */
635
704
  export type CoinMetadataBalanceArgs = {
636
705
  coinType: Scalars['String']['input'];
@@ -886,10 +955,16 @@ export type DisplayRegistryCreateTransaction = {
886
955
  * - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).
887
956
  * - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.
888
957
  */
889
- export type DynamicField = IAddressable & IMoveObject & IObject & {
958
+ export type DynamicField = IAddressable & IMoveObject & IObject & Node & {
890
959
  __typename?: 'DynamicField';
891
960
  /** The DynamicField's ID. */
892
961
  address: Scalars['SuiAddress']['output'];
962
+ /**
963
+ * Fetch the address as it was at a different root version, or checkpoint.
964
+ *
965
+ * If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
966
+ */
967
+ addressAt?: Maybe<Address>;
893
968
  /**
894
969
  * Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::sui::SUI`), owned by this address.
895
970
  *
@@ -900,8 +975,8 @@ export type DynamicField = IAddressable & IMoveObject & IObject & {
900
975
  balances?: Maybe<BalanceConnection>;
901
976
  /** The structured representation of the object's contents. */
902
977
  contents?: Maybe<MoveValue>;
903
- /** The domain explicitly configured as the default SuiNS name for this address. */
904
- defaultSuinsName?: Maybe<Scalars['String']['output']>;
978
+ /** The domain explicitly configured as the default Name Service name for this address. */
979
+ defaultNameRecord?: Maybe<NameRecord>;
905
980
  /** 32-byte hash that identifies the object's contents, encoded in Base58. */
906
981
  digest?: Maybe<Scalars['String']['output']>;
907
982
  /**
@@ -928,6 +1003,8 @@ export type DynamicField = IAddressable & IMoveObject & IObject & {
928
1003
  * Both these operations require the object to have both the `key` and `store` abilities.
929
1004
  */
930
1005
  hasPublicTransfer?: Maybe<Scalars['Boolean']['output']>;
1006
+ /** The dynamic field's globally unique identifier, which can be passed to `Query.node` to refetch it. */
1007
+ id: Scalars['ID']['output'];
931
1008
  /** The Base64-encoded BCS serialize of this object, as a `MoveObject`. */
932
1009
  moveObjectBcs?: Maybe<Scalars['Base64']['output']>;
933
1010
  /**
@@ -975,6 +1052,20 @@ export type DynamicField = IAddressable & IMoveObject & IObject & {
975
1052
  };
976
1053
 
977
1054
 
1055
+ /**
1056
+ * Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.
1057
+ *
1058
+ * There are two sub-types of dynamic fields:
1059
+ *
1060
+ * - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).
1061
+ * - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.
1062
+ */
1063
+ export type DynamicFieldAddressAtArgs = {
1064
+ checkpoint?: InputMaybe<Scalars['UInt53']['input']>;
1065
+ rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
1066
+ };
1067
+
1068
+
978
1069
  /**
979
1070
  * Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.
980
1071
  *
@@ -1186,12 +1277,18 @@ export type DynamicFieldEdge = {
1186
1277
  node: DynamicField;
1187
1278
  };
1188
1279
 
1189
- /** A description of a dynamic field's name. */
1280
+ /**
1281
+ * A description of a dynamic field's name.
1282
+ *
1283
+ * Names can either be given as serialized `bcs` accompanied by its `type`, or as a Display v2 `literal` expression. Other combinations of inputs are not supported.
1284
+ */
1190
1285
  export type DynamicFieldName = {
1191
1286
  /** The Base64-encoded BCS serialization of the dynamic field's 'name'. */
1192
- bcs: Scalars['Base64']['input'];
1287
+ bcs?: InputMaybe<Scalars['Base64']['input']>;
1288
+ /** The name represented as a Display v2 literal expression. */
1289
+ literal?: InputMaybe<Scalars['String']['input']>;
1193
1290
  /** The type of the dynamic field's name, like 'u64' or '0x2::kiosk::Listing'. */
1194
- type: Scalars['String']['input'];
1291
+ type?: InputMaybe<Scalars['String']['input']>;
1195
1292
  };
1196
1293
 
1197
1294
  /** The value of a dynamic field (`MoveValue`) or dynamic object field (`MoveObject`). */
@@ -1213,7 +1310,7 @@ export type EndOfEpochTransactionTransactionsArgs = {
1213
1310
  last?: InputMaybe<Scalars['Int']['input']>;
1214
1311
  };
1215
1312
 
1216
- export type EndOfEpochTransactionKind = AccumulatorRootCreateTransaction | AuthenticatorStateCreateTransaction | AuthenticatorStateExpireTransaction | BridgeCommitteeInitTransaction | BridgeStateCreateTransaction | ChangeEpochTransaction | CoinDenyListStateCreateTransaction | CoinRegistryCreateTransaction | DisplayRegistryCreateTransaction | RandomnessStateCreateTransaction | StoreExecutionTimeObservationsTransaction;
1313
+ export type EndOfEpochTransactionKind = AccumulatorRootCreateTransaction | AddressAliasStateCreateTransaction | AuthenticatorStateCreateTransaction | AuthenticatorStateExpireTransaction | BridgeCommitteeInitTransaction | BridgeStateCreateTransaction | ChangeEpochTransaction | CoinDenyListStateCreateTransaction | CoinRegistryCreateTransaction | DisplayRegistryCreateTransaction | RandomnessStateCreateTransaction | StoreExecutionTimeObservationsTransaction | WriteAccumulatorStorageCostTransaction;
1217
1314
 
1218
1315
  export type EndOfEpochTransactionKindConnection = {
1219
1316
  __typename?: 'EndOfEpochTransactionKindConnection';
@@ -1246,7 +1343,7 @@ export type EndOfEpochTransactionKindEdge = {
1246
1343
  * - system package versions,
1247
1344
  * - validators in the committee.
1248
1345
  */
1249
- export type Epoch = {
1346
+ export type Epoch = Node & {
1250
1347
  __typename?: 'Epoch';
1251
1348
  /** The epoch's corresponding checkpoints. */
1252
1349
  checkpoints?: Maybe<CheckpointConnection>;
@@ -1269,6 +1366,8 @@ export type Epoch = {
1269
1366
  * This fund is used to redistribute storage fees from past transactions to future validators.
1270
1367
  */
1271
1368
  fundSize?: Maybe<Scalars['BigInt']['output']>;
1369
+ /** The epoch's globally unique identifier, which can be passed to `Query.node` to refetch it. */
1370
+ id: Scalars['ID']['output'];
1272
1371
  /**
1273
1372
  * A commitment by the committee at the end of epoch on the contents of the live object set at that time.
1274
1373
  * This can be used to verify state snapshots.
@@ -1280,26 +1379,12 @@ export type Epoch = {
1280
1379
  protocolConfigs?: Maybe<ProtocolConfigs>;
1281
1380
  /** The minimum gas price that a quorum of validators are guaranteed to sign a transaction for in this epoch. */
1282
1381
  referenceGasPrice?: Maybe<Scalars['BigInt']['output']>;
1283
- /** Information about whether this epoch was started in safe mode, which happens if the full epoch change logic fails. */
1284
- safeMode?: Maybe<SafeMode>;
1285
1382
  /** The timestamp associated with the first checkpoint in the epoch. */
1286
1383
  startTimestamp?: Maybe<Scalars['DateTime']['output']>;
1287
- /**
1288
- * SUI set aside to account for objects stored on-chain, at the start of the epoch.
1289
- * This is also used for storage rebates.
1290
- */
1291
- storageFund?: Maybe<StorageFund>;
1292
1384
  /** The system packages used by all transactions in this epoch. */
1293
1385
  systemPackages?: Maybe<MovePackageConnection>;
1294
- /** Details of the system that are decided during genesis. */
1295
- systemParameters?: Maybe<SystemParameters>;
1296
- /** Parameters related to the subsidy that supplements staking rewards */
1297
- systemStakeSubsidy?: Maybe<StakeSubsidy>;
1298
- /**
1299
- * The value of the `version` field of `0x5`, the `0x3::sui::SuiSystemState` object.
1300
- * This version changes whenever the fields contained in the system state object (held in a dynamic field attached to `0x5`) change.
1301
- */
1302
- systemStateVersion?: Maybe<Scalars['UInt53']['output']>;
1386
+ /** The contents of the system state inner object at the start of this epoch. */
1387
+ systemState?: Maybe<MoveValue>;
1303
1388
  /**
1304
1389
  * The total number of checkpoints in this epoch.
1305
1390
  *
@@ -1312,7 +1397,11 @@ export type Epoch = {
1312
1397
  totalStakeRewards?: Maybe<Scalars['BigInt']['output']>;
1313
1398
  /** The amount added to total gas fees to make up the total stake rewards (or `null` if the epoch has not finished yet). */
1314
1399
  totalStakeSubsidies?: Maybe<Scalars['BigInt']['output']>;
1315
- /** The total number of transaction blocks in this epoch (or `null` if the epoch has not finished yet). */
1400
+ /**
1401
+ * The total number of transaction blocks in this epoch.
1402
+ *
1403
+ * If the epoch has not finished yet, this number is computed based on the number of transactions at the latest known checkpoint.
1404
+ */
1316
1405
  totalTransactions?: Maybe<Scalars['UInt53']['output']>;
1317
1406
  /**
1318
1407
  * The transactions in this epoch, optionally filtered by transaction filters.
@@ -1421,6 +1510,8 @@ export type Event = {
1421
1510
  /**
1422
1511
  * Timestamp corresponding to the checkpoint this event's transaction was finalized in.
1423
1512
  * All events from the same transaction share the same timestamp.
1513
+ *
1514
+ * `null` for simulated/executed transactions as they are not included in a checkpoint.
1424
1515
  */
1425
1516
  timestamp?: Maybe<Scalars['DateTime']['output']>;
1426
1517
  /** The transaction that emitted this event. This information is only available for events from indexed transactions, and not from transactions that have just been executed or dry-run. */
@@ -1613,6 +1704,12 @@ export type GenesisTransactionObjectsArgs = {
1613
1704
  */
1614
1705
  export type IAddressable = {
1615
1706
  address: Scalars['SuiAddress']['output'];
1707
+ /**
1708
+ * Fetch the address as it was at a different root version, or checkpoint.
1709
+ *
1710
+ * If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
1711
+ */
1712
+ addressAt?: Maybe<Address>;
1616
1713
  /**
1617
1714
  * Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::sui::SUI`), owned by this address.
1618
1715
  *
@@ -1621,8 +1718,8 @@ export type IAddressable = {
1621
1718
  balance?: Maybe<Balance>;
1622
1719
  /** Total balance across coins owned by this address, grouped by coin type. */
1623
1720
  balances?: Maybe<BalanceConnection>;
1624
- /** The domain explicitly configured as the default SuiNS name for this address. */
1625
- defaultSuinsName?: Maybe<Scalars['String']['output']>;
1721
+ /** The domain explicitly configured as the default Name Service name for this address. */
1722
+ defaultNameRecord?: Maybe<NameRecord>;
1626
1723
  /**
1627
1724
  * Fetch the total balances keyed by coin types (e.g. `0x2::sui::SUI`) owned by this address.
1628
1725
  *
@@ -1634,6 +1731,17 @@ export type IAddressable = {
1634
1731
  };
1635
1732
 
1636
1733
 
1734
+ /**
1735
+ * Interface implemented by GraphQL types representing entities that are identified by an address.
1736
+ *
1737
+ * An address uniquely represents either the public key of an account, or an object's ID, but never both. It is not possible to determine which type an address represents up-front. If an object is wrapped, its contents will not be accessible via its address, but it will still be possible to access other objects it owns.
1738
+ */
1739
+ export type IAddressableAddressAtArgs = {
1740
+ checkpoint?: InputMaybe<Scalars['UInt53']['input']>;
1741
+ rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
1742
+ };
1743
+
1744
+
1637
1745
  /**
1638
1746
  * Interface implemented by GraphQL types representing entities that are identified by an address.
1639
1747
  *
@@ -1688,6 +1796,8 @@ export type IAddressableObjectsArgs = {
1688
1796
  export type IMoveDatatype = {
1689
1797
  /** Abilities on this datatype definition. */
1690
1798
  abilities?: Maybe<Array<MoveAbility>>;
1799
+ /** The datatype's fully-qualified name, including package address, module name, and datatype name. */
1800
+ fullyQualifiedName: Scalars['String']['output'];
1691
1801
  /** The module that this datatype is defined in */
1692
1802
  module: MoveModule;
1693
1803
  /** The datatype's unqualified name */
@@ -1909,6 +2019,8 @@ export type MoveDatatype = IMoveDatatype & {
1909
2019
  asMoveEnum?: Maybe<MoveEnum>;
1910
2020
  /** Attempts to convert the `MoveDatatype` to a `MoveStruct`. */
1911
2021
  asMoveStruct?: Maybe<MoveStruct>;
2022
+ /** The datatype's fully-qualified name, including package address, module name, and datatype name. */
2023
+ fullyQualifiedName: Scalars['String']['output'];
1912
2024
  /** The module that this datatype is defined in. */
1913
2025
  module: MoveModule;
1914
2026
  /** The datatype's unqualified name. */
@@ -1958,6 +2070,8 @@ export type MoveEnum = IMoveDatatype & {
1958
2070
  __typename?: 'MoveEnum';
1959
2071
  /** Abilities on this enum definition. */
1960
2072
  abilities?: Maybe<Array<MoveAbility>>;
2073
+ /** The enum's fully-qualified name, including package address, module name, and datatype name. */
2074
+ fullyQualifiedName: Scalars['String']['output'];
1961
2075
  /** The module that this enum is defined in. */
1962
2076
  module: MoveModule;
1963
2077
  /** The enum's unqualified name. */
@@ -2022,6 +2136,8 @@ export type MoveField = {
2022
2136
  /** A function defined in a Move module. */
2023
2137
  export type MoveFunction = {
2024
2138
  __typename?: 'MoveFunction';
2139
+ /** The function's fully-qualified name, including package address, module name, and function name. */
2140
+ fullyQualifiedName: Scalars['String']['output'];
2025
2141
  /** Whether the function is marked `entry` or not. */
2026
2142
  isEntry?: Maybe<Scalars['Boolean']['output']>;
2027
2143
  /** The module that this function is defined in. */
@@ -2091,6 +2207,8 @@ export type MoveModule = {
2091
2207
  fileFormatVersion?: Maybe<Scalars['Int']['output']>;
2092
2208
  /** Modules that this module considers friends. These modules can call `public(package)` functions in this module. */
2093
2209
  friends?: Maybe<MoveModuleConnection>;
2210
+ /** The module's fully-qualified name, including its package address. */
2211
+ fullyQualifiedName: Scalars['String']['output'];
2094
2212
  /** The function named `name` in this module. */
2095
2213
  function?: Maybe<MoveFunction>;
2096
2214
  /** Paginate through this module's function definitions. */
@@ -2230,10 +2348,16 @@ export type MoveModuleEdge = {
2230
2348
  };
2231
2349
 
2232
2350
  /** A MoveObject is a kind of Object that reprsents data stored on-chain. */
2233
- export type MoveObject = IAddressable & IMoveObject & IObject & {
2351
+ export type MoveObject = IAddressable & IMoveObject & IObject & Node & {
2234
2352
  __typename?: 'MoveObject';
2235
2353
  /** The MoveObject's ID. */
2236
2354
  address: Scalars['SuiAddress']['output'];
2355
+ /**
2356
+ * Fetch the address as it was at a different root version, or checkpoint.
2357
+ *
2358
+ * If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
2359
+ */
2360
+ addressAt?: Maybe<Address>;
2237
2361
  /** Attempts to convert the object into a CoinMetadata. */
2238
2362
  asCoinMetadata?: Maybe<CoinMetadata>;
2239
2363
  /** Attempts to convert the object into a DynamicField. */
@@ -2248,8 +2372,8 @@ export type MoveObject = IAddressable & IMoveObject & IObject & {
2248
2372
  balances?: Maybe<BalanceConnection>;
2249
2373
  /** The structured representation of the object's contents. */
2250
2374
  contents?: Maybe<MoveValue>;
2251
- /** The domain explicitly configured as the default SuiNS name for this address. */
2252
- defaultSuinsName?: Maybe<Scalars['String']['output']>;
2375
+ /** The domain explicitly configured as the default Name Service name for this address. */
2376
+ defaultNameRecord?: Maybe<NameRecord>;
2253
2377
  /** 32-byte hash that identifies the object's contents, encoded in Base58. */
2254
2378
  digest?: Maybe<Scalars['String']['output']>;
2255
2379
  /**
@@ -2276,6 +2400,8 @@ export type MoveObject = IAddressable & IMoveObject & IObject & {
2276
2400
  * Both these operations require the object to have both the `key` and `store` abilities.
2277
2401
  */
2278
2402
  hasPublicTransfer?: Maybe<Scalars['Boolean']['output']>;
2403
+ /** The Move object's globally unique identifier, which can be passed to `Query.node` to refetch it. */
2404
+ id: Scalars['ID']['output'];
2279
2405
  /** The Base64-encoded BCS serialize of this object, as a `MoveObject`. */
2280
2406
  moveObjectBcs?: Maybe<Scalars['Base64']['output']>;
2281
2407
  /**
@@ -2323,6 +2449,13 @@ export type MoveObject = IAddressable & IMoveObject & IObject & {
2323
2449
  };
2324
2450
 
2325
2451
 
2452
+ /** A MoveObject is a kind of Object that reprsents data stored on-chain. */
2453
+ export type MoveObjectAddressAtArgs = {
2454
+ checkpoint?: InputMaybe<Scalars['UInt53']['input']>;
2455
+ rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
2456
+ };
2457
+
2458
+
2326
2459
  /** A MoveObject is a kind of Object that reprsents data stored on-chain. */
2327
2460
  export type MoveObjectBalanceArgs = {
2328
2461
  coinType: Scalars['String']['input'];
@@ -2444,10 +2577,16 @@ export type MoveObjectEdge = {
2444
2577
  };
2445
2578
 
2446
2579
  /** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */
2447
- export type MovePackage = IAddressable & IObject & {
2580
+ export type MovePackage = IAddressable & IObject & Node & {
2448
2581
  __typename?: 'MovePackage';
2449
2582
  /** The MovePackage's ID. */
2450
2583
  address: Scalars['SuiAddress']['output'];
2584
+ /**
2585
+ * Fetch the address as it was at a different root version, or checkpoint.
2586
+ *
2587
+ * If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
2588
+ */
2589
+ addressAt?: Maybe<Address>;
2451
2590
  /**
2452
2591
  * Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::sui::SUI`), owned by this address.
2453
2592
  *
@@ -2456,10 +2595,12 @@ export type MovePackage = IAddressable & IObject & {
2456
2595
  balance?: Maybe<Balance>;
2457
2596
  /** Total balance across coins owned by this address, grouped by coin type. */
2458
2597
  balances?: Maybe<BalanceConnection>;
2459
- /** The domain explicitly configured as the default SuiNS name for this address. */
2460
- defaultSuinsName?: Maybe<Scalars['String']['output']>;
2598
+ /** The domain explicitly configured as the default Name Service name for this address. */
2599
+ defaultNameRecord?: Maybe<NameRecord>;
2461
2600
  /** 32-byte hash that identifies the package's contents, encoded in Base58. */
2462
2601
  digest?: Maybe<Scalars['String']['output']>;
2602
+ /** The package's globally unique identifier, which can be passed to `Query.node` to refetch it. */
2603
+ id: Scalars['ID']['output'];
2463
2604
  /** The transitive dependencies of this package. */
2464
2605
  linkage?: Maybe<Array<Linkage>>;
2465
2606
  /** The module named `name` in this package. */
@@ -2491,9 +2632,9 @@ export type MovePackage = IAddressable & IObject & {
2491
2632
  /** The object's owner kind. */
2492
2633
  owner?: Maybe<Owner>;
2493
2634
  /**
2494
- * Fetch the package with the same original ID, at a different version, root version bound, or checkpoint.
2635
+ * Fetch the package with the same original ID, at a different version, or checkpoint.
2495
2636
  *
2496
- * If no additional bound is provided, the latest version of this package is fetched at the latest checkpoint.
2637
+ * If no additional bound is provided, the package is fetched at the latest checkpoint known to the RPC.
2497
2638
  */
2498
2639
  packageAt?: Maybe<MovePackage>;
2499
2640
  /** The Base64-encoded BCS serialization of this package, as a `MovePackage`. */
@@ -2515,6 +2656,13 @@ export type MovePackage = IAddressable & IObject & {
2515
2656
  };
2516
2657
 
2517
2658
 
2659
+ /** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */
2660
+ export type MovePackageAddressAtArgs = {
2661
+ checkpoint?: InputMaybe<Scalars['UInt53']['input']>;
2662
+ rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
2663
+ };
2664
+
2665
+
2518
2666
  /** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */
2519
2667
  export type MovePackageBalanceArgs = {
2520
2668
  coinType: Scalars['String']['input'];
@@ -2655,6 +2803,8 @@ export type MoveStruct = IMoveDatatype & {
2655
2803
  * Field types reference type parameters by their index in the defining struct's `typeParameters` list.
2656
2804
  */
2657
2805
  fields?: Maybe<Array<MoveField>>;
2806
+ /** The struct's fully-qualified name, including package address, module name, and datatype name. */
2807
+ fullyQualifiedName: Scalars['String']['output'];
2658
2808
  /** The module that this struct is defined in. */
2659
2809
  module: MoveModule;
2660
2810
  /** The struct's unqualified name. */
@@ -2704,6 +2854,16 @@ export type MoveType = {
2704
2854
 
2705
2855
  export type MoveValue = {
2706
2856
  __typename?: 'MoveValue';
2857
+ /**
2858
+ * Attempts to treat this value as an `Address`.
2859
+ *
2860
+ * If the value is of type `address` or `0x2::object::ID`, it is interpreted as an address pointer, and it is scoped to the current checkpoint.
2861
+ *
2862
+ * If the value is of type `0x2::object::UID`, it is interpreted as a wrapped object whose version is bounded by the root version of the current value. Such values do not support nested owned object queries, but `Address.addressAt` can be used to re-scope it to a checkpoint (defaults to the current checkpoint), instead of a root version, allowing owned object queries.
2863
+ *
2864
+ * Values of other types cannot be interpreted as addresses, and `null` is returned.
2865
+ */
2866
+ asAddress?: Maybe<Address>;
2707
2867
  /** The BCS representation of this value, Base64-encoded. */
2708
2868
  bcs?: Maybe<Scalars['Base64']['output']>;
2709
2869
  /**
@@ -2712,6 +2872,18 @@ export type MoveValue = {
2712
2872
  * Returns `null` if the value's type does not have an associated `Display` template.
2713
2873
  */
2714
2874
  display?: Maybe<Display>;
2875
+ /**
2876
+ * Extract a nested value at the given path.
2877
+ *
2878
+ * `path` is a Display v2 'chain' expression, allowing access to nested, named and positional fields, vector indices, VecMap keys, and dynamic (object) field accesses.
2879
+ */
2880
+ extract?: Maybe<MoveValue>;
2881
+ /**
2882
+ * Render a single Display v2 format string against this value.
2883
+ *
2884
+ * Returns `null` if the value does not have a valid type, or if any of the expressions in the format string fail to evaluate (e.g. field does not exist).
2885
+ */
2886
+ format?: Maybe<Scalars['JSON']['output']>;
2715
2887
  /**
2716
2888
  * Representation of a Move value in JSON, where:
2717
2889
  *
@@ -2730,6 +2902,16 @@ export type MoveValue = {
2730
2902
  type?: Maybe<MoveType>;
2731
2903
  };
2732
2904
 
2905
+
2906
+ export type MoveValueExtractArgs = {
2907
+ path: Scalars['String']['input'];
2908
+ };
2909
+
2910
+
2911
+ export type MoveValueFormatArgs = {
2912
+ format: Scalars['String']['input'];
2913
+ };
2914
+
2733
2915
  /**
2734
2916
  * The visibility modifier describes which modules can access this module member.
2735
2917
  *
@@ -2776,15 +2958,55 @@ export type MutationExecuteTransactionArgs = {
2776
2958
  transactionDataBcs: Scalars['Base64']['input'];
2777
2959
  };
2778
2960
 
2961
+ /** A Name Service NameRecord representing a domain name registration. */
2962
+ export type NameRecord = {
2963
+ __typename?: 'NameRecord';
2964
+ /** On-chain representation of the underlying Name Service `NameRecord` Move value. */
2965
+ contents: MoveValue;
2966
+ /** The domain name this record is for. */
2967
+ domain: Scalars['String']['output'];
2968
+ /**
2969
+ * The Name Service Name Record of the parent domain, if this is a subdomain.
2970
+ *
2971
+ * Returns `null` if this is not a subdomain.
2972
+ */
2973
+ parent?: Maybe<NameRecord>;
2974
+ /**
2975
+ * The address this domain points to.
2976
+ *
2977
+ * `rootVersion` and `atCheckpoint` control how the target `Address` is scoped. If neither is provided, the `Address` is scoped to the latest checkpoint known to the RPC.
2978
+ */
2979
+ target?: Maybe<Address>;
2980
+ };
2981
+
2982
+
2983
+ /** A Name Service NameRecord representing a domain name registration. */
2984
+ export type NameRecordTargetArgs = {
2985
+ atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;
2986
+ rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
2987
+ };
2988
+
2989
+ /** An interface implemented by types that can be uniquely identified by a globally unique `ID`, following the GraphQL Global Object Identification specification. */
2990
+ export type Node = {
2991
+ /** The node's globally unique identifier, which can be passed to `Query.node` to refetch it. */
2992
+ id: Scalars['ID']['output'];
2993
+ };
2994
+
2779
2995
  /**
2780
2996
  * An Object on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).
2781
2997
  *
2782
2998
  * Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.
2783
2999
  */
2784
- export type Object = IAddressable & IObject & {
3000
+ export type Object = IAddressable & IObject & Node & {
2785
3001
  __typename?: 'Object';
2786
3002
  /** The Object's ID. */
2787
3003
  address: Scalars['SuiAddress']['output'];
3004
+ /**
3005
+ * Fetch the address as it was at a different root version, or checkpoint.
3006
+ *
3007
+ * If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
3008
+ */
3009
+ addressAt?: Maybe<Address>;
2788
3010
  /** Attempts to convert the object into a MoveObject. */
2789
3011
  asMoveObject?: Maybe<MoveObject>;
2790
3012
  /** Attempts to convert the object into a MovePackage. */
@@ -2797,8 +3019,8 @@ export type Object = IAddressable & IObject & {
2797
3019
  balance?: Maybe<Balance>;
2798
3020
  /** Total balance across coins owned by this address, grouped by coin type. */
2799
3021
  balances?: Maybe<BalanceConnection>;
2800
- /** The domain explicitly configured as the default SuiNS name for this address. */
2801
- defaultSuinsName?: Maybe<Scalars['String']['output']>;
3022
+ /** The domain explicitly configured as the default Name Service name for this address. */
3023
+ defaultNameRecord?: Maybe<NameRecord>;
2802
3024
  /** 32-byte hash that identifies the object's contents, encoded in Base58. */
2803
3025
  digest?: Maybe<Scalars['String']['output']>;
2804
3026
  /**
@@ -2815,6 +3037,8 @@ export type Object = IAddressable & IObject & {
2815
3037
  * Returns `null` if a dynamic object field with that name could not be found attached to this object.
2816
3038
  */
2817
3039
  dynamicObjectField?: Maybe<DynamicField>;
3040
+ /** The object's globally unique identifier, which can be passed to `Query.node` to refetch it. */
3041
+ id: Scalars['ID']['output'];
2818
3042
  /**
2819
3043
  * Fetch the total balances keyed by coin types (e.g. `0x2::sui::SUI`) owned by this address.
2820
3044
  *
@@ -2837,7 +3061,7 @@ export type Object = IAddressable & IObject & {
2837
3061
  /**
2838
3062
  * Fetch the object with the same ID, at a different version, root version bound, or checkpoint.
2839
3063
  *
2840
- * If no additional bound is provided, the latest version of this object is fetched at the latest checkpoint.
3064
+ * If no additional bound is provided, the object is fetched at the latest checkpoint known to the RPC.
2841
3065
  */
2842
3066
  objectAt?: Maybe<Object>;
2843
3067
  /** The Base64-encoded BCS serialization of this object, as an `Object`. */
@@ -2861,6 +3085,17 @@ export type Object = IAddressable & IObject & {
2861
3085
  };
2862
3086
 
2863
3087
 
3088
+ /**
3089
+ * An Object on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).
3090
+ *
3091
+ * Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.
3092
+ */
3093
+ export type ObjectAddressAtArgs = {
3094
+ checkpoint?: InputMaybe<Scalars['UInt53']['input']>;
3095
+ rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
3096
+ };
3097
+
3098
+
2864
3099
  /**
2865
3100
  * An Object on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).
2866
3101
  *
@@ -3186,7 +3421,7 @@ export type PackageCheckpointFilter = {
3186
3421
  /**
3187
3422
  * Identifies a specific version of a package.
3188
3423
  *
3189
- * The `address` field must be specified, as well as at most one of `version`, or `atCheckpoint`. If neither is provided, the package is fetched at the current checkpoint.
3424
+ * The `address` field must be specified, as well as at most one of `version`, or `atCheckpoint`. If neither is provided, the package is fetched at the checkpoint being viewed.
3190
3425
  *
3191
3426
  * See `Query.package` for more details.
3192
3427
  */
@@ -3337,15 +3572,21 @@ export type Query = {
3337
3572
  /**
3338
3573
  * Look-up an account by its SuiAddress.
3339
3574
  *
3340
- * If `rootVersion` is specified, nested dynamic field accesses will be fetched at or before this version. This can be used to fetch a child or ancestor object bounded by its root object's version, when its immediate parent is wrapped, or a value in a dynamic object field. For any wrapped or child (object-owned) object, its root object can be defined recursively as:
3575
+ * If `rootVersion` is specified, nested dynamic field accesses will be fetched at or before this version. This can be used to fetch a child or descendant object bounded by its root object's version, when its immediate parent is wrapped, or a value in a dynamic object field. For any wrapped or child (object-owned) object, its root object can be defined recursively as:
3341
3576
  *
3342
3577
  * - The root object of the object it is wrapped in, if it is wrapped.
3343
3578
  * - The root object of its owner, if it is owned by another object.
3344
3579
  * - The object itself, if it is not object-owned or wrapped.
3345
3580
  *
3346
3581
  * Specifying a `rootVersion` disables nested queries for paginating owned objects or dynamic fields (these queries are only supported at checkpoint boundaries).
3582
+ *
3583
+ * If `atCheckpoint` is specified, the address will be fetched at the latest version as of this checkpoint. This will fail if the provided checkpoint is after the RPC's latest checkpoint.
3584
+ *
3585
+ * If none of the above are specified, the address is fetched at the checkpoint being viewed.
3586
+ *
3587
+ * If the address is fetched by name and the name does not resolve to an address (e.g. the name does not exist or has expired), `null` is returned.
3347
3588
  */
3348
- address: Address;
3589
+ address?: Maybe<Address>;
3349
3590
  /** First four bytes of the network's genesis checkpoint digest (uniquely identifies the network), hex-encoded. */
3350
3591
  chainIdentifier: Scalars['String']['output'];
3351
3592
  /**
@@ -3372,6 +3613,12 @@ export type Query = {
3372
3613
  epochs?: Maybe<EpochConnection>;
3373
3614
  /** Paginate events that are emitted in the network, optionally filtered by event filters. */
3374
3615
  events?: Maybe<EventConnection>;
3616
+ /**
3617
+ * Fetch addresses by their keys.
3618
+ *
3619
+ * Returns a list of addresses that is guaranteed to be the same length as `keys`. If an address in `keys` is fetched by name and the name does not resolve to an address, its corresponding entry in the result will be `null`.
3620
+ */
3621
+ multiGetAddresses: Array<Maybe<Address>>;
3375
3622
  /**
3376
3623
  * Fetch checkpoints by their sequence numbers.
3377
3624
  *
@@ -3416,6 +3663,14 @@ export type Query = {
3416
3663
  * Returns a list of types that is guaranteed to be the same length as `keys`. If a type in `keys` could not be found, its corresponding entry in the result will be `null`.
3417
3664
  */
3418
3665
  multiGetTypes: Array<Maybe<MoveType>>;
3666
+ /**
3667
+ * Look-up a Name Service NameRecord by its domain name.
3668
+ *
3669
+ * Returns `null` if the record does not exist or has expired.
3670
+ */
3671
+ nameRecord?: Maybe<NameRecord>;
3672
+ /** Fetch a `Node` by its globally unique `ID`. Returns `null` if the node cannot be found (e.g., the underlying data was pruned or never existed). */
3673
+ node?: Maybe<Node>;
3419
3674
  /**
3420
3675
  * Fetch an object by its address.
3421
3676
  *
@@ -3431,7 +3686,7 @@ export type Query = {
3431
3686
  *
3432
3687
  * If `atCheckpoint` is specified, the object will be fetched at the latest version as of this checkpoint. This will fail if the provided checkpoint is after the RPC's latest checkpoint.
3433
3688
  *
3434
- * If none of the above are specified, the object is fetched at the latest checkpoint.
3689
+ * If none of the above are specified, the object is fetched at the checkpoint being viewed.
3435
3690
  *
3436
3691
  * It is an error to specify more than one of `version`, `rootVersion`, or `atCheckpoint`.
3437
3692
  *
@@ -3455,7 +3710,7 @@ export type Query = {
3455
3710
  *
3456
3711
  * If `atCheckpoint` is specified, the package loaded is the one with the largest version among all packages sharing an original ID with the package at `address` and was published at or before `atCheckpoint`.
3457
3712
  *
3458
- * If neither are specified, the package is fetched at the latest checkpoint.
3713
+ * If neither are specified, the package is fetched at the checkpoint being viewed.
3459
3714
  *
3460
3715
  * It is an error to specify both `version` and `atCheckpoint`, and `null` will be returned if the package cannot be found as of the latest checkpoint, or the address points to an object that is not a package.
3461
3716
  *
@@ -3484,10 +3739,11 @@ export type Query = {
3484
3739
  * `{"bcs": {"value": "<base64>"}}`
3485
3740
  *
3486
3741
  * Unlike `executeTransaction`, this does not require signatures since the transaction is not committed to the blockchain. This allows for previewing transaction effects, estimating gas costs, and testing transaction logic without spending gas or requiring valid signatures.
3742
+ *
3743
+ * - `checksEnabled`: If true, enables transaction validation checks during simulation. Defaults to true.
3744
+ * - `doGasSelection`: If true, enables automatic gas coin selection and budget estimation. Defaults to false.
3487
3745
  */
3488
3746
  simulateTransaction: SimulationResult;
3489
- /** Look-up an account by its SuiNS name, assuming it has a valid, unexpired name registration. */
3490
- suinsName?: Maybe<Address>;
3491
3747
  /**
3492
3748
  * Fetch a transaction by its digest.
3493
3749
  *
@@ -3525,7 +3781,9 @@ export type Query = {
3525
3781
 
3526
3782
 
3527
3783
  export type QueryAddressArgs = {
3528
- address: Scalars['SuiAddress']['input'];
3784
+ address?: InputMaybe<Scalars['SuiAddress']['input']>;
3785
+ atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;
3786
+ name?: InputMaybe<Scalars['String']['input']>;
3529
3787
  rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
3530
3788
  };
3531
3789
 
@@ -3571,6 +3829,11 @@ export type QueryEventsArgs = {
3571
3829
  };
3572
3830
 
3573
3831
 
3832
+ export type QueryMultiGetAddressesArgs = {
3833
+ keys: Array<AddressKey>;
3834
+ };
3835
+
3836
+
3574
3837
  export type QueryMultiGetCheckpointsArgs = {
3575
3838
  keys: Array<Scalars['UInt53']['input']>;
3576
3839
  };
@@ -3606,6 +3869,16 @@ export type QueryMultiGetTypesArgs = {
3606
3869
  };
3607
3870
 
3608
3871
 
3872
+ export type QueryNameRecordArgs = {
3873
+ name: Scalars['String']['input'];
3874
+ };
3875
+
3876
+
3877
+ export type QueryNodeArgs = {
3878
+ id: Scalars['ID']['input'];
3879
+ };
3880
+
3881
+
3609
3882
  export type QueryObjectArgs = {
3610
3883
  address: Scalars['SuiAddress']['input'];
3611
3884
  atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;
@@ -3665,16 +3938,12 @@ export type QueryProtocolConfigsArgs = {
3665
3938
 
3666
3939
 
3667
3940
  export type QuerySimulateTransactionArgs = {
3941
+ checksEnabled?: InputMaybe<Scalars['Boolean']['input']>;
3942
+ doGasSelection?: InputMaybe<Scalars['Boolean']['input']>;
3668
3943
  transaction: Scalars['JSON']['input'];
3669
3944
  };
3670
3945
 
3671
3946
 
3672
- export type QuerySuinsNameArgs = {
3673
- address: Scalars['String']['input'];
3674
- rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
3675
- };
3676
-
3677
-
3678
3947
  export type QueryTransactionArgs = {
3679
3948
  digest: Scalars['String']['input'];
3680
3949
  };
@@ -3749,17 +4018,6 @@ export enum RegulatedState {
3749
4018
  Unregulated = 'UNREGULATED'
3750
4019
  }
3751
4020
 
3752
- export type SafeMode = {
3753
- __typename?: 'SafeMode';
3754
- /**
3755
- * Whether safe mode was used for the last epoch change.
3756
- * The system will retry a full epoch change on every epoch boundary and automatically reset this flag if so.
3757
- */
3758
- enabled?: Maybe<Scalars['Boolean']['output']>;
3759
- /** Accumulated fees for computation and cost that have not been added to the various reward pools, because the full epoch change did not happen. */
3760
- gasSummary?: Maybe<GasCostSummary>;
3761
- };
3762
-
3763
4021
  export type ServiceConfig = {
3764
4022
  __typename?: 'ServiceConfig';
3765
4023
  /** Range of checkpoints for which data is available for a query type, field and optional filter. If filter is not provided, the strictest retention range for the query and type is returned. */
@@ -3774,6 +4032,10 @@ export type ServiceConfig = {
3774
4032
  maxDisassembledModuleSize?: Maybe<Scalars['Int']['output']>;
3775
4033
  /** Maximum depth of nested field access supported in display outputs. */
3776
4034
  maxDisplayFieldDepth?: Maybe<Scalars['Int']['output']>;
4035
+ /** Maximum number of components in a Display v2 format string. */
4036
+ maxDisplayFormatNodes?: Maybe<Scalars['Int']['output']>;
4037
+ /** Maximum number of objects that can be loaded while evaluating a display. */
4038
+ maxDisplayObjectLoads?: Maybe<Scalars['Int']['output']>;
3777
4039
  /** Maximum output size of a display output. */
3778
4040
  maxDisplayOutputSize?: Maybe<Scalars['Int']['output']>;
3779
4041
  /** Maximum budget in bytes to spend when outputting a structured `MoveValue`. */
@@ -3834,6 +4096,8 @@ export type ServiceConfig = {
3834
4096
  maxQueryNodes?: Maybe<Scalars['Int']['output']>;
3835
4097
  /** Maximum size in bytes of a single GraphQL request, excluding the elements covered by `maxTransactionPayloadSize`. */
3836
4098
  maxQueryPayloadSize?: Maybe<Scalars['Int']['output']>;
4099
+ /** Maximum number of paginated fields that can return results in a single request. Queries on paginated fields that exceed this limit will return an error. */
4100
+ maxRichQueries?: Maybe<Scalars['Int']['output']>;
3837
4101
  /**
3838
4102
  * Maximum size in bytes allowed for the `txBytes` and `signatures` parameters of an `executeTransaction` or `simulateTransaction` field, or the `bytes` and `signature` parameters of a `verifyZkLoginSignature` field.
3839
4103
  *
@@ -3893,7 +4157,7 @@ export type SharedInput = {
3893
4157
  mutable?: Maybe<Scalars['Boolean']['output']>;
3894
4158
  };
3895
4159
 
3896
- /** The result of simulating a transaction, including the predicted effects, events, and any errors. */
4160
+ /** The result of simulating a transaction, including the predicted effects and any errors. */
3897
4161
  export type SimulationResult = {
3898
4162
  __typename?: 'SimulationResult';
3899
4163
  /**
@@ -3908,12 +4172,6 @@ export type SimulationResult = {
3908
4172
  * `None` if the simulation was successful.
3909
4173
  */
3910
4174
  error?: Maybe<Scalars['String']['output']>;
3911
- /**
3912
- * The events that would be emitted if the transaction were executed.
3913
- *
3914
- * `None` if the simulation failed or no events would be emitted.
3915
- */
3916
- events?: Maybe<Array<Event>>;
3917
4175
  /** The intermediate outputs for each command of the transaction simulation, including contents of mutated references and return values. */
3918
4176
  outputs?: Maybe<Array<CommandResult>>;
3919
4177
  };
@@ -3927,36 +4185,6 @@ export type SplitCoinsCommand = {
3927
4185
  coin?: Maybe<TransactionArgument>;
3928
4186
  };
3929
4187
 
3930
- /** Parameters that control the distribution of the stake subsidy. */
3931
- export type StakeSubsidy = {
3932
- __typename?: 'StakeSubsidy';
3933
- /** SUI set aside for stake subsidies -- reduces over time as stake subsidies are paid out over time. */
3934
- balance?: Maybe<Scalars['BigInt']['output']>;
3935
- /** Amount of stake subsidy deducted from the balance per distribution -- decays over time. */
3936
- currentDistributionAmount?: Maybe<Scalars['BigInt']['output']>;
3937
- /** Percentage of the current distribution amount to deduct at the end of the current subsidy period, expressed in basis points. */
3938
- decreaseRate?: Maybe<Scalars['Int']['output']>;
3939
- /**
3940
- * Number of times stake subsidies have been distributed.
3941
- * Subsidies are distributed with other staking rewards, at the end of the epoch.
3942
- */
3943
- distributionCounter?: Maybe<Scalars['Int']['output']>;
3944
- /** Maximum number of stake subsidy distributions that occur with the same distribution amount (before the amount is reduced). */
3945
- periodLength?: Maybe<Scalars['Int']['output']>;
3946
- };
3947
-
3948
- /** SUI set aside to account for objects stored on-chain. */
3949
- export type StorageFund = {
3950
- __typename?: 'StorageFund';
3951
- /**
3952
- * The portion of the storage fund that will never be refunded through storage rebates.
3953
- * The system maintains an invariant that the sum of all storage fees into the storage fund is equal to the sum of all storage rebates out, the total storage rebates remaining, and the non-refundable balance.
3954
- */
3955
- nonRefundableBalance?: Maybe<Scalars['BigInt']['output']>;
3956
- /** Sum of storage rebates of live objects on chain. */
3957
- totalObjectStorageRebates?: Maybe<Scalars['BigInt']['output']>;
3958
- };
3959
-
3960
4188
  /** System transaction for storing execution time observations. */
3961
4189
  export type StoreExecutionTimeObservationsTransaction = {
3962
4190
  __typename?: 'StoreExecutionTimeObservationsTransaction';
@@ -3972,29 +4200,8 @@ export enum SupplyState {
3972
4200
  Fixed = 'FIXED'
3973
4201
  }
3974
4202
 
3975
- /** Details of the system that are decided during genesis. */
3976
- export type SystemParameters = {
3977
- __typename?: 'SystemParameters';
3978
- /** Target duration of an epoch, in milliseconds. */
3979
- durationMs?: Maybe<Scalars['BigInt']['output']>;
3980
- /** The maximum number of active validators that the system supports. */
3981
- maxValidatorCount?: Maybe<Scalars['Int']['output']>;
3982
- /** The minimum number of active validators that the system supports. */
3983
- minValidatorCount?: Maybe<Scalars['Int']['output']>;
3984
- /** Minimum stake needed to become a new validator. */
3985
- minValidatorJoiningStake?: Maybe<Scalars['BigInt']['output']>;
3986
- /** The epoch at which stake subsidies start being paid out. */
3987
- stakeSubsidyStartEpoch?: Maybe<Scalars['UInt53']['output']>;
3988
- /** The number of epochs that a validator has to recover from having less than `validatorLowStakeThreshold` stake. */
3989
- validatorLowStakeGracePeriod?: Maybe<Scalars['BigInt']['output']>;
3990
- /** Validators with stake below this threshold will enter the grace period (see `validatorLowStakeGracePeriod`), after which they are removed from the active validator set. */
3991
- validatorLowStakeThreshold?: Maybe<Scalars['BigInt']['output']>;
3992
- /** Validators with stake below this threshold will be removed from the active validator set at the next epoch boundary, without a grace period. */
3993
- validatorVeryLowStakeThreshold?: Maybe<Scalars['BigInt']['output']>;
3994
- };
3995
-
3996
4203
  /** Description of a transaction, the unit of activity on Sui. */
3997
- export type Transaction = {
4204
+ export type Transaction = Node & {
3998
4205
  __typename?: 'Transaction';
3999
4206
  /** A 32-byte hash that uniquely identifies the transaction contents, encoded in Base58. */
4000
4207
  digest: Scalars['String']['output'];
@@ -4004,6 +4211,8 @@ export type Transaction = {
4004
4211
  expiration?: Maybe<Epoch>;
4005
4212
  /** The gas input field provides information on what objects were used as gas as well as the owner of the gas object(s) and information on the gas price and budget. */
4006
4213
  gasInput?: Maybe<GasInput>;
4214
+ /** The transaction's globally unique identifier, which can be passed to `Query.node` to refetch it. */
4215
+ id: Scalars['ID']['output'];
4007
4216
  /** The type of this transaction as well as the commands and/or parameters comprising the transaction of this kind. */
4008
4217
  kind?: Maybe<TransactionKind>;
4009
4218
  /** The address corresponding to the public key that signed this transaction. System transactions do not have senders. */
@@ -4012,6 +4221,8 @@ export type Transaction = {
4012
4221
  signatures: Array<UserSignature>;
4013
4222
  /** The Base64-encoded BCS serialization of this transaction, as a `TransactionData`. */
4014
4223
  transactionBcs?: Maybe<Scalars['Base64']['output']>;
4224
+ /** The transaction as a JSON blob, matching the gRPC proto format (excluding BCS). */
4225
+ transactionJson?: Maybe<Scalars['JSON']['output']>;
4015
4226
  };
4016
4227
 
4017
4228
  /** An argument to a programmable transaction command. */
@@ -4041,6 +4252,8 @@ export type TransactionEffects = {
4041
4252
  __typename?: 'TransactionEffects';
4042
4253
  /** The effect this transaction had on the balances (sum of coin values per coin type) of addresses and objects. */
4043
4254
  balanceChanges?: Maybe<BalanceChangeConnection>;
4255
+ /** The balance changes as a JSON array, matching the gRPC proto format. */
4256
+ balanceChangesJson?: Maybe<Scalars['JSON']['output']>;
4044
4257
  /** The checkpoint this transaction was finalized in. */
4045
4258
  checkpoint?: Maybe<Checkpoint>;
4046
4259
  /** Transactions whose outputs this transaction depends upon. */
@@ -4055,6 +4268,8 @@ export type TransactionEffects = {
4055
4268
  effectsBcs?: Maybe<Scalars['Base64']['output']>;
4056
4269
  /** A 32-byte hash that uniquely identifies the effects contents, encoded in Base58. */
4057
4270
  effectsDigest?: Maybe<Scalars['String']['output']>;
4271
+ /** The effects as a JSON blob, matching the gRPC proto format (excluding BCS). */
4272
+ effectsJson?: Maybe<Scalars['JSON']['output']>;
4058
4273
  /** The epoch this transaction was finalized in. */
4059
4274
  epoch?: Maybe<Epoch>;
4060
4275
  /** Events emitted by this transaction. */
@@ -4069,7 +4284,11 @@ export type TransactionEffects = {
4069
4284
  objectChanges?: Maybe<ObjectChangeConnection>;
4070
4285
  /** Whether the transaction executed successfully or not. */
4071
4286
  status?: Maybe<ExecutionStatus>;
4072
- /** Timestamp corresponding to the checkpoint this transaction was finalized in. */
4287
+ /**
4288
+ * Timestamp corresponding to the checkpoint this transaction was finalized in.
4289
+ *
4290
+ * `null` for executed/simulated transactions that have not been included in a checkpoint.
4291
+ */
4073
4292
  timestamp?: Maybe<Scalars['DateTime']['output']>;
4074
4293
  /** The transaction that ran to produce these effects. */
4075
4294
  transaction?: Maybe<Transaction>;
@@ -4149,7 +4368,7 @@ export type TransactionFilter = {
4149
4368
  };
4150
4369
 
4151
4370
  /** Input argument to a Programmable Transaction Block (PTB) command. */
4152
- export type TransactionInput = OwnedOrImmutable | Pure | Receiving | SharedInput;
4371
+ export type TransactionInput = BalanceWithdraw | MoveValue | OwnedOrImmutable | Pure | Receiving | SharedInput;
4153
4372
 
4154
4373
  export type TransactionInputConnection = {
4155
4374
  __typename?: 'TransactionInputConnection';
@@ -4258,112 +4477,14 @@ export type UserSignature = {
4258
4477
  signatureBytes?: Maybe<Scalars['Base64']['output']>;
4259
4478
  };
4260
4479
 
4261
- export type Validator = IAddressable & {
4480
+ export type Validator = {
4262
4481
  __typename?: 'Validator';
4263
- /** The validator's address. */
4264
- address: Scalars['SuiAddress']['output'];
4265
4482
  /** The number of epochs for which this validator has been below the low stake threshold. */
4266
4483
  atRisk?: Maybe<Scalars['UInt53']['output']>;
4267
- /**
4268
- * Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::sui::SUI`), owned by this address.
4269
- *
4270
- * If the address does not own any coins of that type, a balance of zero is returned.
4271
- */
4272
- balance?: Maybe<Balance>;
4273
- /** Total balance across coins owned by this address, grouped by coin type. */
4274
- balances?: Maybe<BalanceConnection>;
4275
- /** The fee charged by the validator for staking services. */
4276
- commissionRate?: Maybe<Scalars['Int']['output']>;
4277
- /** Validator's set of credentials such as public keys, network addresses and others. */
4278
- credentials?: Maybe<ValidatorCredentials>;
4279
- /** The domain explicitly configured as the default SuiNS name for this address. */
4280
- defaultSuinsName?: Maybe<Scalars['String']['output']>;
4281
- /** Validator's description. */
4282
- description?: Maybe<Scalars['String']['output']>;
4283
- /** Number of exchange rates in the table. */
4284
- exchangeRatesSize?: Maybe<Scalars['UInt53']['output']>;
4285
- /**
4286
- * A wrapped object containing the validator's exchange rates. This is a table from epoch number to `PoolTokenExchangeRate` value.
4287
- * The exchange rate is used to determine the amount of SUI tokens that each past SUI staker can withdraw in the future.
4288
- */
4289
- exchangeRatesTable?: Maybe<Address>;
4290
- /** The reference gas price for this epoch. */
4291
- gasPrice?: Maybe<Scalars['BigInt']['output']>;
4292
- /** Validator's url containing their custom image. */
4293
- imageUrl?: Maybe<Scalars['String']['output']>;
4294
- /**
4295
- * Fetch the total balances keyed by coin types (e.g. `0x2::sui::SUI`) owned by this address.
4296
- *
4297
- * Returns `None` when no checkpoint is set in scope (e.g. execution scope).
4298
- * If the address does not own any coins of a given type, a balance of zero is returned for that type.
4299
- */
4300
- multiGetBalances?: Maybe<Array<Balance>>;
4301
- /** Validator's name. */
4302
- name?: Maybe<Scalars['String']['output']>;
4303
- /** The proposed next epoch fee for the validator's staking services. */
4304
- nextEpochCommissionRate?: Maybe<Scalars['Int']['output']>;
4305
- /** Validator's set of credentials for the next epoch. */
4306
- nextEpochCredentials?: Maybe<ValidatorCredentials>;
4307
- /** The validator's gas price quote for the next epoch. */
4308
- nextEpochGasPrice?: Maybe<Scalars['BigInt']['output']>;
4309
- /** The total number of SUI tokens in this pool plus the pending stake amount for this epoch. */
4310
- nextEpochStake?: Maybe<Scalars['BigInt']['output']>;
4311
- /** Objects owned by this object, optionally filtered by type. */
4312
- objects?: Maybe<MoveObjectConnection>;
4313
- /**
4314
- * The validator's current valid `Cap` object. Validators can delegate the operation ability to another address.
4315
- * The address holding this `Cap` object can then update the reference gas price and tallying rule on behalf of the validator.
4316
- */
4317
- operationCap?: Maybe<MoveObject>;
4318
- /** Pending pool token withdrawn during the current epoch, emptied at epoch boundaries. */
4319
- pendingPoolTokenWithdraw?: Maybe<Scalars['BigInt']['output']>;
4320
- /** Pending stake amount for this epoch. */
4321
- pendingStake?: Maybe<Scalars['BigInt']['output']>;
4322
- /** Pending stake withdrawn during the current epoch, emptied at epoch boundaries. */
4323
- pendingTotalSuiWithdraw?: Maybe<Scalars['BigInt']['output']>;
4324
- /** Total number of pool tokens issued by the pool. */
4325
- poolTokenBalance?: Maybe<Scalars['BigInt']['output']>;
4326
- /** Validator's homepage URL. */
4327
- projectUrl?: Maybe<Scalars['String']['output']>;
4484
+ /** On-chain representation of the underlying `0x3::validator::Validator` value. */
4485
+ contents?: Maybe<MoveValue>;
4328
4486
  /** Other validators this validator has reported. */
4329
4487
  reportRecords?: Maybe<ValidatorConnection>;
4330
- /** The epoch stake rewards will be added here at the end of each epoch. */
4331
- rewardsPool?: Maybe<Scalars['BigInt']['output']>;
4332
- /** The epoch at which this pool became active. */
4333
- stakingPoolActivationEpoch?: Maybe<Scalars['UInt53']['output']>;
4334
- /** The ID of this validator's `0x3::staking_pool::StakingPool`. */
4335
- stakingPoolId: Scalars['SuiAddress']['output'];
4336
- /** The total number of SUI tokens in this pool. */
4337
- stakingPoolSuiBalance?: Maybe<Scalars['BigInt']['output']>;
4338
- /** The voting power of this validator in basis points (e.g., 100 = 1% voting power). */
4339
- votingPower?: Maybe<Scalars['Int']['output']>;
4340
- };
4341
-
4342
-
4343
- export type ValidatorBalanceArgs = {
4344
- coinType: Scalars['String']['input'];
4345
- };
4346
-
4347
-
4348
- export type ValidatorBalancesArgs = {
4349
- after?: InputMaybe<Scalars['String']['input']>;
4350
- before?: InputMaybe<Scalars['String']['input']>;
4351
- first?: InputMaybe<Scalars['Int']['input']>;
4352
- last?: InputMaybe<Scalars['Int']['input']>;
4353
- };
4354
-
4355
-
4356
- export type ValidatorMultiGetBalancesArgs = {
4357
- keys: Array<Scalars['String']['input']>;
4358
- };
4359
-
4360
-
4361
- export type ValidatorObjectsArgs = {
4362
- after?: InputMaybe<Scalars['String']['input']>;
4363
- before?: InputMaybe<Scalars['String']['input']>;
4364
- filter?: InputMaybe<ObjectFilter>;
4365
- first?: InputMaybe<Scalars['Int']['input']>;
4366
- last?: InputMaybe<Scalars['Int']['input']>;
4367
4488
  };
4368
4489
 
4369
4490
 
@@ -4394,19 +4515,6 @@ export type ValidatorConnection = {
4394
4515
  pageInfo: PageInfo;
4395
4516
  };
4396
4517
 
4397
- /** The credentials related fields associated with a validator. */
4398
- export type ValidatorCredentials = {
4399
- __typename?: 'ValidatorCredentials';
4400
- netAddress?: Maybe<Scalars['String']['output']>;
4401
- networkPubKey?: Maybe<Scalars['Base64']['output']>;
4402
- p2PAddress?: Maybe<Scalars['String']['output']>;
4403
- primaryAddress?: Maybe<Scalars['String']['output']>;
4404
- proofOfPossession?: Maybe<Scalars['Base64']['output']>;
4405
- protocolPubKey?: Maybe<Scalars['Base64']['output']>;
4406
- workerAddress?: Maybe<Scalars['String']['output']>;
4407
- workerPubKey?: Maybe<Scalars['Base64']['output']>;
4408
- };
4409
-
4410
4518
  /** An edge in a connection. */
4411
4519
  export type ValidatorEdge = {
4412
4520
  __typename?: 'ValidatorEdge';
@@ -4419,31 +4527,10 @@ export type ValidatorEdge = {
4419
4527
  /** Representation of `0x3::validator_set::ValidatorSet`. */
4420
4528
  export type ValidatorSet = {
4421
4529
  __typename?: 'ValidatorSet';
4422
- /** The current list of active validators. */
4530
+ /** The validators currently in the committee for this validator set. */
4423
4531
  activeValidators?: Maybe<ValidatorConnection>;
4424
- /** Object ID of the `Table` storing the inactive staking pools. */
4425
- inactivePoolsId?: Maybe<Scalars['SuiAddress']['output']>;
4426
- /** Size of the inactive pools `Table`. */
4427
- inactivePoolsSize?: Maybe<Scalars['Int']['output']>;
4428
- /** Object ID of the wrapped object `TableVec` storing the pending active validators. */
4429
- pendingActiveValidatorsId?: Maybe<Scalars['SuiAddress']['output']>;
4430
- /** Size of the pending active validators table. */
4431
- pendingActiveValidatorsSize?: Maybe<Scalars['Int']['output']>;
4432
- /** Validators that are pending removal from the active validator set, expressed as indices in to `activeValidators`. */
4433
- pendingRemovals?: Maybe<Array<Scalars['Int']['output']>>;
4434
- /**
4435
- * Object ID of the `Table` storing the mapping from staking pool ids to the addresses of the corresponding validators.
4436
- * This is needed because a validator's address can potentially change but the object ID of its pool will not.
4437
- */
4438
- stakingPoolMappingsId?: Maybe<Scalars['SuiAddress']['output']>;
4439
- /** Size of the stake pool mappings `Table`. */
4440
- stakingPoolMappingsSize?: Maybe<Scalars['Int']['output']>;
4441
- /** Total amount of stake for all active validators at the beginning of the epoch. */
4442
- totalStake?: Maybe<Scalars['BigInt']['output']>;
4443
- /** Object ID of the `Table` storing the validator candidates. */
4444
- validatorCandidatesId?: Maybe<Scalars['SuiAddress']['output']>;
4445
- /** Size of the validator candidates `Table`. */
4446
- validatorCandidatesSize?: Maybe<Scalars['Int']['output']>;
4532
+ /** On-chain representation of the underlying `0x3::validator_set::ValidatorSet` value. */
4533
+ contents?: Maybe<MoveValue>;
4447
4534
  };
4448
4535
 
4449
4536
 
@@ -4463,6 +4550,29 @@ export type VersionFilter = {
4463
4550
  beforeVersion?: InputMaybe<Scalars['UInt53']['input']>;
4464
4551
  };
4465
4552
 
4553
+ /** The account to withdraw funds from. */
4554
+ export enum WithdrawFrom {
4555
+ /** The funds are withdrawn from the transaction sender's account. */
4556
+ Sender = 'SENDER',
4557
+ /** The funds are withdrawn from the sponsor's account. */
4558
+ Sponsor = 'SPONSOR'
4559
+ }
4560
+
4561
+ export type WithdrawMaxAmountU64 = {
4562
+ __typename?: 'WithdrawMaxAmountU64';
4563
+ amount?: Maybe<Scalars['BigInt']['output']>;
4564
+ };
4565
+
4566
+ /** Reservation details for a withdrawal. */
4567
+ export type WithdrawalReservation = WithdrawMaxAmountU64;
4568
+
4569
+ /** System transaction for writing the pre-computed storage cost for accumulator objects. */
4570
+ export type WriteAccumulatorStorageCostTransaction = {
4571
+ __typename?: 'WriteAccumulatorStorageCostTransaction';
4572
+ /** A workaround to define an empty variant of a GraphQL union. */
4573
+ _?: Maybe<Scalars['Boolean']['output']>;
4574
+ };
4575
+
4466
4576
  /** An enum that specifies the intent scope to be used to parse the bytes for signature verification. */
4467
4577
  export enum ZkLoginIntentScope {
4468
4578
  /** Indicates that the bytes are to be parsed as a personal message. */
@@ -4487,25 +4597,41 @@ export type GetAllBalancesQueryVariables = Exact<{
4487
4597
  }>;
4488
4598
 
4489
4599
 
4490
- export type GetAllBalancesQuery = { __typename?: 'Query', address: { __typename?: 'Address', balances?: { __typename?: 'BalanceConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Balance', totalBalance?: string | null, coinType?: { __typename?: 'MoveType', repr: string } | null }> } | null } };
4600
+ export type GetAllBalancesQuery = { __typename?: 'Query', address?: { __typename?: 'Address', balances?: { __typename?: 'BalanceConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Balance', totalBalance?: string | null, addressBalance?: string | null, coinType?: { __typename?: 'MoveType', repr: string } | null }> } | null } | null };
4491
4601
 
4492
4602
  export type GetBalanceQueryVariables = Exact<{
4493
4603
  owner: Scalars['SuiAddress']['input'];
4494
- coinType?: Scalars['String']['input'];
4604
+ coinType?: InputMaybe<Scalars['String']['input']>;
4495
4605
  }>;
4496
4606
 
4497
4607
 
4498
- export type GetBalanceQuery = { __typename?: 'Query', address: { __typename?: 'Address', balance?: { __typename?: 'Balance', totalBalance?: string | null, coinType?: { __typename?: 'MoveType', repr: string } | null } | null } };
4608
+ export type GetBalanceQuery = { __typename?: 'Query', address?: { __typename?: 'Address', balance?: { __typename?: 'Balance', totalBalance?: string | null, addressBalance?: string | null, coinType?: { __typename?: 'MoveType', repr: string } | null } | null } | null };
4609
+
4610
+ export type GetChainIdentifierQueryVariables = Exact<{ [key: string]: never; }>;
4611
+
4612
+
4613
+ export type GetChainIdentifierQuery = { __typename?: 'Query', checkpoint?: { __typename?: 'Checkpoint', digest?: string | null } | null };
4499
4614
 
4500
4615
  export type GetCoinsQueryVariables = Exact<{
4501
4616
  owner: Scalars['SuiAddress']['input'];
4502
4617
  first?: InputMaybe<Scalars['Int']['input']>;
4503
4618
  cursor?: InputMaybe<Scalars['String']['input']>;
4504
- type?: Scalars['String']['input'];
4619
+ type?: InputMaybe<Scalars['String']['input']>;
4505
4620
  }>;
4506
4621
 
4507
4622
 
4508
- export type GetCoinsQuery = { __typename?: 'Query', address: { __typename?: 'Address', address: string, objects?: { __typename?: 'MoveObjectConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveObject', address: string, version?: number | null, digest?: string | null, owner?: { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null } | { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null } | { __typename: 'Immutable' } | { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null } | { __typename: 'Shared', initialSharedVersion?: number | null } | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, json?: unknown | null, type?: { __typename?: 'MoveType', repr: string } | null } | null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null }> } | null } };
4623
+ export type GetCoinsQuery = { __typename?: 'Query', address?: { __typename?: 'Address', address: string, objects?: { __typename?: 'MoveObjectConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveObject', address: string, version?: number | null, digest?: string | null, owner?:
4624
+ | { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null }
4625
+ | { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null }
4626
+ | { __typename: 'Immutable' }
4627
+ | { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null }
4628
+ | { __typename: 'Shared', initialSharedVersion?: number | null }
4629
+ | null, contents?: { __typename?: 'MoveValue', json?: unknown | null, type?: { __typename?: 'MoveType', repr: string } | null } | null }> } | null } | null };
4630
+
4631
+ export type GetCurrentSystemStateQueryVariables = Exact<{ [key: string]: never; }>;
4632
+
4633
+
4634
+ export type GetCurrentSystemStateQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', epochId: number, referenceGasPrice?: string | null, startTimestamp?: string | null, protocolConfigs?: { __typename?: 'ProtocolConfigs', protocolVersion: number } | null, systemState?: { __typename?: 'MoveValue', json?: unknown | null } | null } | null };
4509
4635
 
4510
4636
  export type GetDynamicFieldsQueryVariables = Exact<{
4511
4637
  parentId: Scalars['SuiAddress']['input'];
@@ -4514,7 +4640,10 @@ export type GetDynamicFieldsQueryVariables = Exact<{
4514
4640
  }>;
4515
4641
 
4516
4642
 
4517
- export type GetDynamicFieldsQuery = { __typename?: 'Query', address: { __typename?: 'Address', dynamicFields?: { __typename?: 'DynamicFieldConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'DynamicField', name?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null, value?: { __typename: 'MoveObject', contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | { __typename: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null }> } | null } };
4643
+ export type GetDynamicFieldsQuery = { __typename?: 'Query', address?: { __typename?: 'Address', dynamicFields?: { __typename?: 'DynamicFieldConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'DynamicField', name?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null, value?:
4644
+ | { __typename: 'MoveObject', contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null }
4645
+ | { __typename: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null }
4646
+ | null }> } | null } | null };
4518
4647
 
4519
4648
  export type GetMoveFunctionQueryVariables = Exact<{
4520
4649
  package: Scalars['SuiAddress']['input'];
@@ -4535,28 +4664,60 @@ export type DefaultSuinsNameQueryVariables = Exact<{
4535
4664
  }>;
4536
4665
 
4537
4666
 
4538
- export type DefaultSuinsNameQuery = { __typename?: 'Query', address: { __typename?: 'Address', defaultSuinsName?: string | null } };
4667
+ export type DefaultSuinsNameQuery = { __typename?: 'Query', address?: { __typename?: 'Address', defaultNameRecord?: { __typename?: 'NameRecord', domain: string } | null } | null };
4539
4668
 
4540
4669
  export type GetOwnedObjectsQueryVariables = Exact<{
4541
4670
  owner: Scalars['SuiAddress']['input'];
4542
4671
  limit?: InputMaybe<Scalars['Int']['input']>;
4543
4672
  cursor?: InputMaybe<Scalars['String']['input']>;
4544
4673
  filter?: InputMaybe<ObjectFilter>;
4674
+ includeContent?: InputMaybe<Scalars['Boolean']['input']>;
4675
+ includePreviousTransaction?: InputMaybe<Scalars['Boolean']['input']>;
4676
+ includeObjectBcs?: InputMaybe<Scalars['Boolean']['input']>;
4677
+ includeJson?: InputMaybe<Scalars['Boolean']['input']>;
4545
4678
  }>;
4546
4679
 
4547
4680
 
4548
- export type GetOwnedObjectsQuery = { __typename?: 'Query', address: { __typename?: 'Address', objects?: { __typename?: 'MoveObjectConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveObject', address: string, digest?: string | null, version?: number | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null, owner?: { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null } | { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null } | { __typename: 'Immutable' } | { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null } | { __typename: 'Shared', initialSharedVersion?: number | null } | null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null }> } | null } };
4681
+ export type GetOwnedObjectsQuery = { __typename?: 'Query', address?: { __typename?: 'Address', objects?: { __typename?: 'MoveObjectConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveObject', address: string, digest?: string | null, version?: number | null, objectBcs?: string | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, json?: unknown | null, type?: { __typename?: 'MoveType', repr: string } | null } | null, owner?:
4682
+ | { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null }
4683
+ | { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null }
4684
+ | { __typename: 'Immutable' }
4685
+ | { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null }
4686
+ | { __typename: 'Shared', initialSharedVersion?: number | null }
4687
+ | null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null }> } | null } | null };
4549
4688
 
4550
4689
  export type MultiGetObjectsQueryVariables = Exact<{
4551
4690
  objectKeys: Array<ObjectKey> | ObjectKey;
4691
+ includeContent?: InputMaybe<Scalars['Boolean']['input']>;
4692
+ includePreviousTransaction?: InputMaybe<Scalars['Boolean']['input']>;
4693
+ includeObjectBcs?: InputMaybe<Scalars['Boolean']['input']>;
4694
+ includeJson?: InputMaybe<Scalars['Boolean']['input']>;
4552
4695
  }>;
4553
4696
 
4554
4697
 
4555
- export type MultiGetObjectsQuery = { __typename?: 'Query', multiGetObjects: Array<{ __typename?: 'Object', address: string, digest?: string | null, version?: number | null, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null } | null, owner?: { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null } | { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null } | { __typename: 'Immutable' } | { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null } | { __typename: 'Shared', initialSharedVersion?: number | null } | null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null } | null> };
4556
-
4557
- export type Object_FieldsFragment = { __typename?: 'Object', address: string, digest?: string | null, version?: number | null, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null } | null, owner?: { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null } | { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null } | { __typename: 'Immutable' } | { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null } | { __typename: 'Shared', initialSharedVersion?: number | null } | null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null };
4558
-
4559
- export type Move_Object_FieldsFragment = { __typename?: 'MoveObject', address: string, digest?: string | null, version?: number | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null, owner?: { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null } | { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null } | { __typename: 'Immutable' } | { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null } | { __typename: 'Shared', initialSharedVersion?: number | null } | null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null };
4698
+ export type MultiGetObjectsQuery = { __typename?: 'Query', multiGetObjects: Array<{ __typename?: 'Object', address: string, digest?: string | null, version?: number | null, objectBcs?: string | null, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', bcs?: string | null, json?: unknown | null, type?: { __typename?: 'MoveType', repr: string } | null } | null } | null, asMovePackage?: { __typename: 'MovePackage' } | null, owner?:
4699
+ | { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null }
4700
+ | { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null }
4701
+ | { __typename: 'Immutable' }
4702
+ | { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null }
4703
+ | { __typename: 'Shared', initialSharedVersion?: number | null }
4704
+ | null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null } | null> };
4705
+
4706
+ export type Object_FieldsFragment = { __typename?: 'Object', address: string, digest?: string | null, version?: number | null, objectBcs?: string | null, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', bcs?: string | null, json?: unknown | null, type?: { __typename?: 'MoveType', repr: string } | null } | null } | null, asMovePackage?: { __typename: 'MovePackage' } | null, owner?:
4707
+ | { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null }
4708
+ | { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null }
4709
+ | { __typename: 'Immutable' }
4710
+ | { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null }
4711
+ | { __typename: 'Shared', initialSharedVersion?: number | null }
4712
+ | null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null };
4713
+
4714
+ export type Move_Object_FieldsFragment = { __typename?: 'MoveObject', address: string, digest?: string | null, version?: number | null, objectBcs?: string | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, json?: unknown | null, type?: { __typename?: 'MoveType', repr: string } | null } | null, owner?:
4715
+ | { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null }
4716
+ | { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null }
4717
+ | { __typename: 'Immutable' }
4718
+ | { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null }
4719
+ | { __typename: 'Shared', initialSharedVersion?: number | null }
4720
+ | null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null };
4560
4721
 
4561
4722
  type Object_Owner_Fields_AddressOwner_Fragment = { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null };
4562
4723
 
@@ -4568,31 +4729,66 @@ type Object_Owner_Fields_ObjectOwner_Fragment = { __typename: 'ObjectOwner', add
4568
4729
 
4569
4730
  type Object_Owner_Fields_Shared_Fragment = { __typename: 'Shared', initialSharedVersion?: number | null };
4570
4731
 
4571
- export type Object_Owner_FieldsFragment = Object_Owner_Fields_AddressOwner_Fragment | Object_Owner_Fields_ConsensusAddressOwner_Fragment | Object_Owner_Fields_Immutable_Fragment | Object_Owner_Fields_ObjectOwner_Fragment | Object_Owner_Fields_Shared_Fragment;
4732
+ export type Object_Owner_FieldsFragment =
4733
+ | Object_Owner_Fields_AddressOwner_Fragment
4734
+ | Object_Owner_Fields_ConsensusAddressOwner_Fragment
4735
+ | Object_Owner_Fields_Immutable_Fragment
4736
+ | Object_Owner_Fields_ObjectOwner_Fragment
4737
+ | Object_Owner_Fields_Shared_Fragment
4738
+ ;
4572
4739
 
4573
4740
  export type SimulateTransactionQueryVariables = Exact<{
4574
4741
  transaction: Scalars['JSON']['input'];
4742
+ includeTransaction?: InputMaybe<Scalars['Boolean']['input']>;
4743
+ includeEffects?: InputMaybe<Scalars['Boolean']['input']>;
4744
+ includeEvents?: InputMaybe<Scalars['Boolean']['input']>;
4745
+ includeBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;
4746
+ includeObjectTypes?: InputMaybe<Scalars['Boolean']['input']>;
4747
+ includeCommandResults?: InputMaybe<Scalars['Boolean']['input']>;
4748
+ includeBcs?: InputMaybe<Scalars['Boolean']['input']>;
4749
+ doGasSelection?: InputMaybe<Scalars['Boolean']['input']>;
4750
+ checksEnabled?: InputMaybe<Scalars['Boolean']['input']>;
4575
4751
  }>;
4576
4752
 
4577
4753
 
4578
- export type SimulateTransactionQuery = { __typename?: 'Query', simulateTransaction: { __typename?: 'SimulationResult', error?: string | null, effects?: { __typename?: 'TransactionEffects', transaction?: { __typename?: 'Transaction', digest: string, transactionBcs?: string | null, signatures: Array<{ __typename?: 'UserSignature', signatureBytes?: string | null }>, effects?: { __typename?: 'TransactionEffects', effectsBcs?: string | null, epoch?: { __typename?: 'Epoch', epochId: number } | null, unchangedConsensusObjects?: { __typename?: 'UnchangedConsensusObjectConnection', nodes: Array<{ __typename: 'ConsensusObjectCancelled' } | { __typename: 'ConsensusObjectRead', object?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null } | { __typename: 'MutateConsensusStreamEnded' } | { __typename: 'PerEpochConfig' } | { __typename: 'ReadConsensusStreamEnded' }> } | null, objectChanges?: { __typename?: 'ObjectChangeConnection', nodes: Array<{ __typename?: 'ObjectChange', address: string, inputState?: { __typename?: 'Object', version?: number | null, asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }> } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean }, nodes: Array<{ __typename?: 'BalanceChange', amount?: string | null, owner?: { __typename?: 'Address', address: string } | null, coinType?: { __typename?: 'MoveType', repr: string } | null }> } | null } | null } | null } | null } };
4754
+ export type SimulateTransactionQuery = { __typename?: 'Query', simulateTransaction: { __typename?: 'SimulationResult', error?: string | null, effects?: { __typename?: 'TransactionEffects', transaction?: { __typename?: 'Transaction', digest: string, transactionJson?: unknown | null, transactionBcs?: string | null, signatures: Array<{ __typename?: 'UserSignature', signatureBytes?: string | null }>, effects?: { __typename?: 'TransactionEffects', status?: ExecutionStatus | null, effectsBcs?: string | null, effectsJson?: unknown | null, balanceChangesJson?: unknown | null, executionError?: { __typename?: 'ExecutionError', message: string, abortCode?: string | null, identifier?: string | null, constant?: string | null, sourceLineNumber?: number | null, instructionOffset?: number | null, module?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, function?: { __typename?: 'MoveFunction', name: string } | null } | null, epoch?: { __typename?: 'Epoch', epochId: number } | null, objectChanges?: { __typename?: 'ObjectChangeConnection', nodes: Array<{ __typename?: 'ObjectChange', address: string, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }> } | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean }, nodes: Array<{ __typename?: 'Event', transactionModule?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, sender?: { __typename?: 'Address', address: string } | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null }> } | null } | null } | null } | null, outputs?: Array<{ __typename?: 'CommandResult', returnValues?: Array<{ __typename?: 'CommandOutput', value?: { __typename?: 'MoveValue', bcs?: string | null } | null }> | null, mutatedReferences?: Array<{ __typename?: 'CommandOutput', value?: { __typename?: 'MoveValue', bcs?: string | null } | null }> | null }> | null } };
4579
4755
 
4580
4756
  export type ExecuteTransactionMutationVariables = Exact<{
4581
4757
  transactionDataBcs: Scalars['Base64']['input'];
4582
4758
  signatures: Array<Scalars['Base64']['input']> | Scalars['Base64']['input'];
4759
+ includeTransaction?: InputMaybe<Scalars['Boolean']['input']>;
4760
+ includeEffects?: InputMaybe<Scalars['Boolean']['input']>;
4761
+ includeEvents?: InputMaybe<Scalars['Boolean']['input']>;
4762
+ includeBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;
4763
+ includeObjectTypes?: InputMaybe<Scalars['Boolean']['input']>;
4764
+ includeBcs?: InputMaybe<Scalars['Boolean']['input']>;
4583
4765
  }>;
4584
4766
 
4585
4767
 
4586
- export type ExecuteTransactionMutation = { __typename?: 'Mutation', executeTransaction: { __typename?: 'ExecutionResult', errors?: Array<string> | null, effects?: { __typename?: 'TransactionEffects', transaction?: { __typename?: 'Transaction', digest: string, transactionBcs?: string | null, signatures: Array<{ __typename?: 'UserSignature', signatureBytes?: string | null }>, effects?: { __typename?: 'TransactionEffects', effectsBcs?: string | null, epoch?: { __typename?: 'Epoch', epochId: number } | null, unchangedConsensusObjects?: { __typename?: 'UnchangedConsensusObjectConnection', nodes: Array<{ __typename: 'ConsensusObjectCancelled' } | { __typename: 'ConsensusObjectRead', object?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null } | { __typename: 'MutateConsensusStreamEnded' } | { __typename: 'PerEpochConfig' } | { __typename: 'ReadConsensusStreamEnded' }> } | null, objectChanges?: { __typename?: 'ObjectChangeConnection', nodes: Array<{ __typename?: 'ObjectChange', address: string, inputState?: { __typename?: 'Object', version?: number | null, asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }> } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean }, nodes: Array<{ __typename?: 'BalanceChange', amount?: string | null, owner?: { __typename?: 'Address', address: string } | null, coinType?: { __typename?: 'MoveType', repr: string } | null }> } | null } | null } | null } | null } };
4768
+ export type ExecuteTransactionMutation = { __typename?: 'Mutation', executeTransaction: { __typename?: 'ExecutionResult', errors?: Array<string> | null, effects?: { __typename?: 'TransactionEffects', transaction?: { __typename?: 'Transaction', digest: string, transactionJson?: unknown | null, transactionBcs?: string | null, signatures: Array<{ __typename?: 'UserSignature', signatureBytes?: string | null }>, effects?: { __typename?: 'TransactionEffects', status?: ExecutionStatus | null, effectsBcs?: string | null, effectsJson?: unknown | null, balanceChangesJson?: unknown | null, executionError?: { __typename?: 'ExecutionError', message: string, abortCode?: string | null, identifier?: string | null, constant?: string | null, sourceLineNumber?: number | null, instructionOffset?: number | null, module?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, function?: { __typename?: 'MoveFunction', name: string } | null } | null, epoch?: { __typename?: 'Epoch', epochId: number } | null, objectChanges?: { __typename?: 'ObjectChangeConnection', nodes: Array<{ __typename?: 'ObjectChange', address: string, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }> } | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean }, nodes: Array<{ __typename?: 'Event', transactionModule?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, sender?: { __typename?: 'Address', address: string } | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null }> } | null } | null } | null } | null } };
4587
4769
 
4588
4770
  export type GetTransactionBlockQueryVariables = Exact<{
4589
4771
  digest: Scalars['String']['input'];
4772
+ includeTransaction?: InputMaybe<Scalars['Boolean']['input']>;
4773
+ includeEffects?: InputMaybe<Scalars['Boolean']['input']>;
4774
+ includeEvents?: InputMaybe<Scalars['Boolean']['input']>;
4775
+ includeBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;
4776
+ includeObjectTypes?: InputMaybe<Scalars['Boolean']['input']>;
4777
+ includeBcs?: InputMaybe<Scalars['Boolean']['input']>;
4590
4778
  }>;
4591
4779
 
4592
4780
 
4593
- export type GetTransactionBlockQuery = { __typename?: 'Query', transaction?: { __typename?: 'Transaction', digest: string, transactionBcs?: string | null, signatures: Array<{ __typename?: 'UserSignature', signatureBytes?: string | null }>, effects?: { __typename?: 'TransactionEffects', effectsBcs?: string | null, epoch?: { __typename?: 'Epoch', epochId: number } | null, unchangedConsensusObjects?: { __typename?: 'UnchangedConsensusObjectConnection', nodes: Array<{ __typename: 'ConsensusObjectCancelled' } | { __typename: 'ConsensusObjectRead', object?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null } | { __typename: 'MutateConsensusStreamEnded' } | { __typename: 'PerEpochConfig' } | { __typename: 'ReadConsensusStreamEnded' }> } | null, objectChanges?: { __typename?: 'ObjectChangeConnection', nodes: Array<{ __typename?: 'ObjectChange', address: string, inputState?: { __typename?: 'Object', version?: number | null, asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }> } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean }, nodes: Array<{ __typename?: 'BalanceChange', amount?: string | null, owner?: { __typename?: 'Address', address: string } | null, coinType?: { __typename?: 'MoveType', repr: string } | null }> } | null } | null } | null };
4781
+ export type GetTransactionBlockQuery = { __typename?: 'Query', transaction?: { __typename?: 'Transaction', digest: string, transactionJson?: unknown | null, transactionBcs?: string | null, signatures: Array<{ __typename?: 'UserSignature', signatureBytes?: string | null }>, effects?: { __typename?: 'TransactionEffects', status?: ExecutionStatus | null, effectsBcs?: string | null, effectsJson?: unknown | null, balanceChangesJson?: unknown | null, executionError?: { __typename?: 'ExecutionError', message: string, abortCode?: string | null, identifier?: string | null, constant?: string | null, sourceLineNumber?: number | null, instructionOffset?: number | null, module?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, function?: { __typename?: 'MoveFunction', name: string } | null } | null, epoch?: { __typename?: 'Epoch', epochId: number } | null, objectChanges?: { __typename?: 'ObjectChangeConnection', nodes: Array<{ __typename?: 'ObjectChange', address: string, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }> } | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean }, nodes: Array<{ __typename?: 'Event', transactionModule?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, sender?: { __typename?: 'Address', address: string } | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null }> } | null } | null } | null };
4594
4782
 
4595
- export type Transaction_FieldsFragment = { __typename?: 'Transaction', digest: string, transactionBcs?: string | null, signatures: Array<{ __typename?: 'UserSignature', signatureBytes?: string | null }>, effects?: { __typename?: 'TransactionEffects', effectsBcs?: string | null, epoch?: { __typename?: 'Epoch', epochId: number } | null, unchangedConsensusObjects?: { __typename?: 'UnchangedConsensusObjectConnection', nodes: Array<{ __typename: 'ConsensusObjectCancelled' } | { __typename: 'ConsensusObjectRead', object?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null } | { __typename: 'MutateConsensusStreamEnded' } | { __typename: 'PerEpochConfig' } | { __typename: 'ReadConsensusStreamEnded' }> } | null, objectChanges?: { __typename?: 'ObjectChangeConnection', nodes: Array<{ __typename?: 'ObjectChange', address: string, inputState?: { __typename?: 'Object', version?: number | null, asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }> } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean }, nodes: Array<{ __typename?: 'BalanceChange', amount?: string | null, owner?: { __typename?: 'Address', address: string } | null, coinType?: { __typename?: 'MoveType', repr: string } | null }> } | null } | null };
4783
+ export type Transaction_FieldsFragment = { __typename?: 'Transaction', digest: string, transactionJson?: unknown | null, transactionBcs?: string | null, signatures: Array<{ __typename?: 'UserSignature', signatureBytes?: string | null }>, effects?: { __typename?: 'TransactionEffects', status?: ExecutionStatus | null, effectsBcs?: string | null, effectsJson?: unknown | null, balanceChangesJson?: unknown | null, executionError?: { __typename?: 'ExecutionError', message: string, abortCode?: string | null, identifier?: string | null, constant?: string | null, sourceLineNumber?: number | null, instructionOffset?: number | null, module?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, function?: { __typename?: 'MoveFunction', name: string } | null } | null, epoch?: { __typename?: 'Epoch', epochId: number } | null, objectChanges?: { __typename?: 'ObjectChangeConnection', nodes: Array<{ __typename?: 'ObjectChange', address: string, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }> } | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean }, nodes: Array<{ __typename?: 'Event', transactionModule?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, sender?: { __typename?: 'Address', address: string } | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null }> } | null } | null };
4784
+
4785
+ export type ResolveTransactionQueryVariables = Exact<{
4786
+ transaction: Scalars['JSON']['input'];
4787
+ doGasSelection?: InputMaybe<Scalars['Boolean']['input']>;
4788
+ }>;
4789
+
4790
+
4791
+ export type ResolveTransactionQuery = { __typename?: 'Query', simulateTransaction: { __typename?: 'SimulationResult', error?: string | null, effects?: { __typename?: 'TransactionEffects', transaction?: { __typename?: 'Transaction', transactionBcs?: string | null } | null } | null } };
4596
4792
 
4597
4793
  export type VerifyZkLoginSignatureQueryVariables = Exact<{
4598
4794
  bytes: Scalars['Base64']['input'];
@@ -4651,18 +4847,23 @@ export const Object_FieldsFragmentDoc = new TypedDocumentString(`
4651
4847
  address
4652
4848
  digest
4653
4849
  version
4850
+ objectBcs @include(if: $includeObjectBcs)
4654
4851
  asMoveObject {
4655
4852
  contents {
4656
- bcs
4853
+ bcs @include(if: $includeContent)
4854
+ json @include(if: $includeJson)
4657
4855
  type {
4658
4856
  repr
4659
4857
  }
4660
4858
  }
4661
4859
  }
4860
+ asMovePackage {
4861
+ __typename
4862
+ }
4662
4863
  owner {
4663
4864
  ...OBJECT_OWNER_FIELDS
4664
4865
  }
4665
- previousTransaction {
4866
+ previousTransaction @include(if: $includePreviousTransaction) {
4666
4867
  digest
4667
4868
  }
4668
4869
  }
@@ -4693,8 +4894,10 @@ export const Move_Object_FieldsFragmentDoc = new TypedDocumentString(`
4693
4894
  address
4694
4895
  digest
4695
4896
  version
4897
+ objectBcs @include(if: $includeObjectBcs)
4696
4898
  contents {
4697
- bcs
4899
+ bcs @include(if: $includeContent)
4900
+ json @include(if: $includeJson)
4698
4901
  type {
4699
4902
  repr
4700
4903
  }
@@ -4702,7 +4905,7 @@ export const Move_Object_FieldsFragmentDoc = new TypedDocumentString(`
4702
4905
  owner {
4703
4906
  ...OBJECT_OWNER_FIELDS
4704
4907
  }
4705
- previousTransaction {
4908
+ previousTransaction @include(if: $includePreviousTransaction) {
4706
4909
  digest
4707
4910
  }
4708
4911
  }
@@ -4731,49 +4934,40 @@ export const Move_Object_FieldsFragmentDoc = new TypedDocumentString(`
4731
4934
  export const Transaction_FieldsFragmentDoc = new TypedDocumentString(`
4732
4935
  fragment TRANSACTION_FIELDS on Transaction {
4733
4936
  digest
4734
- transactionBcs
4937
+ transactionJson @include(if: $includeTransaction)
4938
+ transactionBcs @include(if: $includeBcs)
4735
4939
  signatures {
4736
4940
  signatureBytes
4737
4941
  }
4738
4942
  effects {
4739
- effectsBcs
4740
- epoch {
4741
- epochId
4742
- }
4743
- unchangedConsensusObjects {
4744
- nodes {
4745
- __typename
4746
- ... on ConsensusObjectRead {
4747
- object {
4748
- asMoveObject {
4749
- address
4750
- contents {
4751
- type {
4752
- repr
4753
- }
4754
- }
4755
- }
4756
- }
4943
+ status
4944
+ executionError {
4945
+ message
4946
+ abortCode
4947
+ identifier
4948
+ constant
4949
+ sourceLineNumber
4950
+ instructionOffset
4951
+ module {
4952
+ name
4953
+ package {
4954
+ address
4757
4955
  }
4758
4956
  }
4957
+ function {
4958
+ name
4959
+ }
4759
4960
  }
4760
- objectChanges {
4961
+ epoch {
4962
+ epochId
4963
+ }
4964
+ effectsBcs @include(if: $includeEffects)
4965
+ effectsJson @include(if: $includeObjectTypes)
4966
+ objectChanges(first: 50) @include(if: $includeObjectTypes) {
4761
4967
  nodes {
4762
4968
  address
4763
- inputState {
4764
- version
4765
- asMoveObject {
4766
- address
4767
- contents {
4768
- type {
4769
- repr
4770
- }
4771
- }
4772
- }
4773
- }
4774
4969
  outputState {
4775
4970
  asMoveObject {
4776
- address
4777
4971
  contents {
4778
4972
  type {
4779
4973
  repr
@@ -4783,18 +4977,27 @@ export const Transaction_FieldsFragmentDoc = new TypedDocumentString(`
4783
4977
  }
4784
4978
  }
4785
4979
  }
4786
- balanceChanges(first: 50) {
4980
+ balanceChangesJson @include(if: $includeBalanceChanges)
4981
+ events(first: 50) @include(if: $includeEvents) {
4787
4982
  pageInfo {
4788
4983
  hasNextPage
4789
4984
  }
4790
4985
  nodes {
4791
- owner {
4986
+ transactionModule {
4987
+ package {
4988
+ address
4989
+ }
4990
+ name
4991
+ }
4992
+ sender {
4792
4993
  address
4793
4994
  }
4794
- coinType {
4795
- repr
4995
+ contents {
4996
+ type {
4997
+ repr
4998
+ }
4999
+ bcs
4796
5000
  }
4797
- amount
4798
5001
  }
4799
5002
  }
4800
5003
  }
@@ -4813,25 +5016,34 @@ export const GetAllBalancesDocument = new TypedDocumentString(`
4813
5016
  repr
4814
5017
  }
4815
5018
  totalBalance
5019
+ addressBalance
4816
5020
  }
4817
5021
  }
4818
5022
  }
4819
5023
  }
4820
5024
  `) as unknown as TypedDocumentString<GetAllBalancesQuery, GetAllBalancesQueryVariables>;
4821
5025
  export const GetBalanceDocument = new TypedDocumentString(`
4822
- query getBalance($owner: SuiAddress!, $coinType: String! = "0x2::sui::SUI") {
5026
+ query getBalance($owner: SuiAddress!, $coinType: String = "0x2::sui::SUI") {
4823
5027
  address(address: $owner) {
4824
5028
  balance(coinType: $coinType) {
4825
5029
  coinType {
4826
5030
  repr
4827
5031
  }
4828
5032
  totalBalance
5033
+ addressBalance
4829
5034
  }
4830
5035
  }
4831
5036
  }
4832
5037
  `) as unknown as TypedDocumentString<GetBalanceQuery, GetBalanceQueryVariables>;
5038
+ export const GetChainIdentifierDocument = new TypedDocumentString(`
5039
+ query getChainIdentifier {
5040
+ checkpoint(sequenceNumber: 0) {
5041
+ digest
5042
+ }
5043
+ }
5044
+ `) as unknown as TypedDocumentString<GetChainIdentifierQuery, GetChainIdentifierQueryVariables>;
4833
5045
  export const GetCoinsDocument = new TypedDocumentString(`
4834
- query getCoins($owner: SuiAddress!, $first: Int, $cursor: String, $type: String! = "0x2::coin::Coin<0x2::sui::SUI>") {
5046
+ query getCoins($owner: SuiAddress!, $first: Int, $cursor: String, $type: String = "0x2::coin::Coin<0x2::sui::SUI>") {
4835
5047
  address(address: $owner) {
4836
5048
  address
4837
5049
  objects(first: $first, after: $cursor, filter: {type: $type}) {
@@ -4844,7 +5056,6 @@ export const GetCoinsDocument = new TypedDocumentString(`
4844
5056
  ...OBJECT_OWNER_FIELDS
4845
5057
  }
4846
5058
  contents {
4847
- bcs
4848
5059
  json
4849
5060
  type {
4850
5061
  repr
@@ -4853,9 +5064,6 @@ export const GetCoinsDocument = new TypedDocumentString(`
4853
5064
  address
4854
5065
  version
4855
5066
  digest
4856
- previousTransaction {
4857
- digest
4858
- }
4859
5067
  }
4860
5068
  }
4861
5069
  }
@@ -4882,6 +5090,21 @@ export const GetCoinsDocument = new TypedDocumentString(`
4882
5090
  }
4883
5091
  }
4884
5092
  }`) as unknown as TypedDocumentString<GetCoinsQuery, GetCoinsQueryVariables>;
5093
+ export const GetCurrentSystemStateDocument = new TypedDocumentString(`
5094
+ query getCurrentSystemState {
5095
+ epoch {
5096
+ epochId
5097
+ referenceGasPrice
5098
+ startTimestamp
5099
+ protocolConfigs {
5100
+ protocolVersion
5101
+ }
5102
+ systemState {
5103
+ json
5104
+ }
5105
+ }
5106
+ }
5107
+ `) as unknown as TypedDocumentString<GetCurrentSystemStateQuery, GetCurrentSystemStateQueryVariables>;
4885
5108
  export const GetDynamicFieldsDocument = new TypedDocumentString(`
4886
5109
  query getDynamicFields($parentId: SuiAddress!, $first: Int, $cursor: String) {
4887
5110
  address(address: $parentId) {
@@ -4949,12 +5172,14 @@ export const GetReferenceGasPriceDocument = new TypedDocumentString(`
4949
5172
  export const DefaultSuinsNameDocument = new TypedDocumentString(`
4950
5173
  query defaultSuinsName($address: SuiAddress!) {
4951
5174
  address(address: $address) {
4952
- defaultSuinsName
5175
+ defaultNameRecord {
5176
+ domain
5177
+ }
4953
5178
  }
4954
5179
  }
4955
5180
  `) as unknown as TypedDocumentString<DefaultSuinsNameQuery, DefaultSuinsNameQueryVariables>;
4956
5181
  export const GetOwnedObjectsDocument = new TypedDocumentString(`
4957
- query getOwnedObjects($owner: SuiAddress!, $limit: Int, $cursor: String, $filter: ObjectFilter) {
5182
+ query getOwnedObjects($owner: SuiAddress!, $limit: Int, $cursor: String, $filter: ObjectFilter, $includeContent: Boolean = false, $includePreviousTransaction: Boolean = false, $includeObjectBcs: Boolean = false, $includeJson: Boolean = false) {
4958
5183
  address(address: $owner) {
4959
5184
  objects(first: $limit, after: $cursor, filter: $filter) {
4960
5185
  pageInfo {
@@ -4971,8 +5196,10 @@ export const GetOwnedObjectsDocument = new TypedDocumentString(`
4971
5196
  address
4972
5197
  digest
4973
5198
  version
5199
+ objectBcs @include(if: $includeObjectBcs)
4974
5200
  contents {
4975
- bcs
5201
+ bcs @include(if: $includeContent)
5202
+ json @include(if: $includeJson)
4976
5203
  type {
4977
5204
  repr
4978
5205
  }
@@ -4980,7 +5207,7 @@ export const GetOwnedObjectsDocument = new TypedDocumentString(`
4980
5207
  owner {
4981
5208
  ...OBJECT_OWNER_FIELDS
4982
5209
  }
4983
- previousTransaction {
5210
+ previousTransaction @include(if: $includePreviousTransaction) {
4984
5211
  digest
4985
5212
  }
4986
5213
  }
@@ -5007,7 +5234,7 @@ fragment OBJECT_OWNER_FIELDS on Owner {
5007
5234
  }
5008
5235
  }`) as unknown as TypedDocumentString<GetOwnedObjectsQuery, GetOwnedObjectsQueryVariables>;
5009
5236
  export const MultiGetObjectsDocument = new TypedDocumentString(`
5010
- query multiGetObjects($objectKeys: [ObjectKey!]!) {
5237
+ query multiGetObjects($objectKeys: [ObjectKey!]!, $includeContent: Boolean = false, $includePreviousTransaction: Boolean = false, $includeObjectBcs: Boolean = false, $includeJson: Boolean = false) {
5011
5238
  multiGetObjects(keys: $objectKeys) {
5012
5239
  ...OBJECT_FIELDS
5013
5240
  }
@@ -5016,18 +5243,23 @@ export const MultiGetObjectsDocument = new TypedDocumentString(`
5016
5243
  address
5017
5244
  digest
5018
5245
  version
5246
+ objectBcs @include(if: $includeObjectBcs)
5019
5247
  asMoveObject {
5020
5248
  contents {
5021
- bcs
5249
+ bcs @include(if: $includeContent)
5250
+ json @include(if: $includeJson)
5022
5251
  type {
5023
5252
  repr
5024
5253
  }
5025
5254
  }
5026
5255
  }
5256
+ asMovePackage {
5257
+ __typename
5258
+ }
5027
5259
  owner {
5028
5260
  ...OBJECT_OWNER_FIELDS
5029
5261
  }
5030
- previousTransaction {
5262
+ previousTransaction @include(if: $includePreviousTransaction) {
5031
5263
  digest
5032
5264
  }
5033
5265
  }
@@ -5054,61 +5286,68 @@ fragment OBJECT_OWNER_FIELDS on Owner {
5054
5286
  }
5055
5287
  }`) as unknown as TypedDocumentString<MultiGetObjectsQuery, MultiGetObjectsQueryVariables>;
5056
5288
  export const SimulateTransactionDocument = new TypedDocumentString(`
5057
- query simulateTransaction($transaction: JSON!) {
5058
- simulateTransaction(transaction: $transaction) {
5289
+ query simulateTransaction($transaction: JSON!, $includeTransaction: Boolean = false, $includeEffects: Boolean = false, $includeEvents: Boolean = false, $includeBalanceChanges: Boolean = false, $includeObjectTypes: Boolean = false, $includeCommandResults: Boolean = false, $includeBcs: Boolean = false, $doGasSelection: Boolean = false, $checksEnabled: Boolean = true) {
5290
+ simulateTransaction(
5291
+ transaction: $transaction
5292
+ doGasSelection: $doGasSelection
5293
+ checksEnabled: $checksEnabled
5294
+ ) {
5059
5295
  error
5060
5296
  effects {
5061
5297
  transaction {
5062
5298
  ...TRANSACTION_FIELDS
5063
5299
  }
5064
5300
  }
5301
+ outputs @include(if: $includeCommandResults) {
5302
+ returnValues {
5303
+ value {
5304
+ bcs
5305
+ }
5306
+ }
5307
+ mutatedReferences {
5308
+ value {
5309
+ bcs
5310
+ }
5311
+ }
5312
+ }
5065
5313
  }
5066
5314
  }
5067
5315
  fragment TRANSACTION_FIELDS on Transaction {
5068
5316
  digest
5069
- transactionBcs
5317
+ transactionJson @include(if: $includeTransaction)
5318
+ transactionBcs @include(if: $includeBcs)
5070
5319
  signatures {
5071
5320
  signatureBytes
5072
5321
  }
5073
5322
  effects {
5074
- effectsBcs
5075
- epoch {
5076
- epochId
5077
- }
5078
- unchangedConsensusObjects {
5079
- nodes {
5080
- __typename
5081
- ... on ConsensusObjectRead {
5082
- object {
5083
- asMoveObject {
5084
- address
5085
- contents {
5086
- type {
5087
- repr
5088
- }
5089
- }
5090
- }
5091
- }
5323
+ status
5324
+ executionError {
5325
+ message
5326
+ abortCode
5327
+ identifier
5328
+ constant
5329
+ sourceLineNumber
5330
+ instructionOffset
5331
+ module {
5332
+ name
5333
+ package {
5334
+ address
5092
5335
  }
5093
5336
  }
5337
+ function {
5338
+ name
5339
+ }
5094
5340
  }
5095
- objectChanges {
5341
+ epoch {
5342
+ epochId
5343
+ }
5344
+ effectsBcs @include(if: $includeEffects)
5345
+ effectsJson @include(if: $includeObjectTypes)
5346
+ objectChanges(first: 50) @include(if: $includeObjectTypes) {
5096
5347
  nodes {
5097
5348
  address
5098
- inputState {
5099
- version
5100
- asMoveObject {
5101
- address
5102
- contents {
5103
- type {
5104
- repr
5105
- }
5106
- }
5107
- }
5108
- }
5109
5349
  outputState {
5110
5350
  asMoveObject {
5111
- address
5112
5351
  contents {
5113
5352
  type {
5114
5353
  repr
@@ -5118,24 +5357,33 @@ export const SimulateTransactionDocument = new TypedDocumentString(`
5118
5357
  }
5119
5358
  }
5120
5359
  }
5121
- balanceChanges(first: 50) {
5360
+ balanceChangesJson @include(if: $includeBalanceChanges)
5361
+ events(first: 50) @include(if: $includeEvents) {
5122
5362
  pageInfo {
5123
5363
  hasNextPage
5124
5364
  }
5125
5365
  nodes {
5126
- owner {
5366
+ transactionModule {
5367
+ package {
5368
+ address
5369
+ }
5370
+ name
5371
+ }
5372
+ sender {
5127
5373
  address
5128
5374
  }
5129
- coinType {
5130
- repr
5375
+ contents {
5376
+ type {
5377
+ repr
5378
+ }
5379
+ bcs
5131
5380
  }
5132
- amount
5133
5381
  }
5134
5382
  }
5135
5383
  }
5136
5384
  }`) as unknown as TypedDocumentString<SimulateTransactionQuery, SimulateTransactionQueryVariables>;
5137
5385
  export const ExecuteTransactionDocument = new TypedDocumentString(`
5138
- mutation executeTransaction($transactionDataBcs: Base64!, $signatures: [Base64!]!) {
5386
+ mutation executeTransaction($transactionDataBcs: Base64!, $signatures: [Base64!]!, $includeTransaction: Boolean = false, $includeEffects: Boolean = false, $includeEvents: Boolean = false, $includeBalanceChanges: Boolean = false, $includeObjectTypes: Boolean = false, $includeBcs: Boolean = false) {
5139
5387
  executeTransaction(
5140
5388
  transactionDataBcs: $transactionDataBcs
5141
5389
  signatures: $signatures
@@ -5150,49 +5398,40 @@ export const ExecuteTransactionDocument = new TypedDocumentString(`
5150
5398
  }
5151
5399
  fragment TRANSACTION_FIELDS on Transaction {
5152
5400
  digest
5153
- transactionBcs
5401
+ transactionJson @include(if: $includeTransaction)
5402
+ transactionBcs @include(if: $includeBcs)
5154
5403
  signatures {
5155
5404
  signatureBytes
5156
5405
  }
5157
5406
  effects {
5158
- effectsBcs
5159
- epoch {
5160
- epochId
5161
- }
5162
- unchangedConsensusObjects {
5163
- nodes {
5164
- __typename
5165
- ... on ConsensusObjectRead {
5166
- object {
5167
- asMoveObject {
5168
- address
5169
- contents {
5170
- type {
5171
- repr
5172
- }
5173
- }
5174
- }
5175
- }
5407
+ status
5408
+ executionError {
5409
+ message
5410
+ abortCode
5411
+ identifier
5412
+ constant
5413
+ sourceLineNumber
5414
+ instructionOffset
5415
+ module {
5416
+ name
5417
+ package {
5418
+ address
5176
5419
  }
5177
5420
  }
5421
+ function {
5422
+ name
5423
+ }
5424
+ }
5425
+ epoch {
5426
+ epochId
5178
5427
  }
5179
- objectChanges {
5428
+ effectsBcs @include(if: $includeEffects)
5429
+ effectsJson @include(if: $includeObjectTypes)
5430
+ objectChanges(first: 50) @include(if: $includeObjectTypes) {
5180
5431
  nodes {
5181
5432
  address
5182
- inputState {
5183
- version
5184
- asMoveObject {
5185
- address
5186
- contents {
5187
- type {
5188
- repr
5189
- }
5190
- }
5191
- }
5192
- }
5193
5433
  outputState {
5194
5434
  asMoveObject {
5195
- address
5196
5435
  contents {
5197
5436
  type {
5198
5437
  repr
@@ -5202,73 +5441,73 @@ export const ExecuteTransactionDocument = new TypedDocumentString(`
5202
5441
  }
5203
5442
  }
5204
5443
  }
5205
- balanceChanges(first: 50) {
5444
+ balanceChangesJson @include(if: $includeBalanceChanges)
5445
+ events(first: 50) @include(if: $includeEvents) {
5206
5446
  pageInfo {
5207
5447
  hasNextPage
5208
5448
  }
5209
5449
  nodes {
5210
- owner {
5450
+ transactionModule {
5451
+ package {
5452
+ address
5453
+ }
5454
+ name
5455
+ }
5456
+ sender {
5211
5457
  address
5212
5458
  }
5213
- coinType {
5214
- repr
5459
+ contents {
5460
+ type {
5461
+ repr
5462
+ }
5463
+ bcs
5215
5464
  }
5216
- amount
5217
5465
  }
5218
5466
  }
5219
5467
  }
5220
5468
  }`) as unknown as TypedDocumentString<ExecuteTransactionMutation, ExecuteTransactionMutationVariables>;
5221
5469
  export const GetTransactionBlockDocument = new TypedDocumentString(`
5222
- query getTransactionBlock($digest: String!) {
5470
+ query getTransactionBlock($digest: String!, $includeTransaction: Boolean = false, $includeEffects: Boolean = false, $includeEvents: Boolean = false, $includeBalanceChanges: Boolean = false, $includeObjectTypes: Boolean = false, $includeBcs: Boolean = false) {
5223
5471
  transaction(digest: $digest) {
5224
5472
  ...TRANSACTION_FIELDS
5225
5473
  }
5226
5474
  }
5227
5475
  fragment TRANSACTION_FIELDS on Transaction {
5228
5476
  digest
5229
- transactionBcs
5477
+ transactionJson @include(if: $includeTransaction)
5478
+ transactionBcs @include(if: $includeBcs)
5230
5479
  signatures {
5231
5480
  signatureBytes
5232
5481
  }
5233
5482
  effects {
5234
- effectsBcs
5235
- epoch {
5236
- epochId
5237
- }
5238
- unchangedConsensusObjects {
5239
- nodes {
5240
- __typename
5241
- ... on ConsensusObjectRead {
5242
- object {
5243
- asMoveObject {
5244
- address
5245
- contents {
5246
- type {
5247
- repr
5248
- }
5249
- }
5250
- }
5251
- }
5483
+ status
5484
+ executionError {
5485
+ message
5486
+ abortCode
5487
+ identifier
5488
+ constant
5489
+ sourceLineNumber
5490
+ instructionOffset
5491
+ module {
5492
+ name
5493
+ package {
5494
+ address
5252
5495
  }
5253
5496
  }
5497
+ function {
5498
+ name
5499
+ }
5500
+ }
5501
+ epoch {
5502
+ epochId
5254
5503
  }
5255
- objectChanges {
5504
+ effectsBcs @include(if: $includeEffects)
5505
+ effectsJson @include(if: $includeObjectTypes)
5506
+ objectChanges(first: 50) @include(if: $includeObjectTypes) {
5256
5507
  nodes {
5257
5508
  address
5258
- inputState {
5259
- version
5260
- asMoveObject {
5261
- address
5262
- contents {
5263
- type {
5264
- repr
5265
- }
5266
- }
5267
- }
5268
- }
5269
5509
  outputState {
5270
5510
  asMoveObject {
5271
- address
5272
5511
  contents {
5273
5512
  type {
5274
5513
  repr
@@ -5278,22 +5517,43 @@ export const GetTransactionBlockDocument = new TypedDocumentString(`
5278
5517
  }
5279
5518
  }
5280
5519
  }
5281
- balanceChanges(first: 50) {
5520
+ balanceChangesJson @include(if: $includeBalanceChanges)
5521
+ events(first: 50) @include(if: $includeEvents) {
5282
5522
  pageInfo {
5283
5523
  hasNextPage
5284
5524
  }
5285
5525
  nodes {
5286
- owner {
5526
+ transactionModule {
5527
+ package {
5528
+ address
5529
+ }
5530
+ name
5531
+ }
5532
+ sender {
5287
5533
  address
5288
5534
  }
5289
- coinType {
5290
- repr
5535
+ contents {
5536
+ type {
5537
+ repr
5538
+ }
5539
+ bcs
5291
5540
  }
5292
- amount
5293
5541
  }
5294
5542
  }
5295
5543
  }
5296
5544
  }`) as unknown as TypedDocumentString<GetTransactionBlockQuery, GetTransactionBlockQueryVariables>;
5545
+ export const ResolveTransactionDocument = new TypedDocumentString(`
5546
+ query resolveTransaction($transaction: JSON!, $doGasSelection: Boolean = true) {
5547
+ simulateTransaction(transaction: $transaction, doGasSelection: $doGasSelection) {
5548
+ error
5549
+ effects {
5550
+ transaction {
5551
+ transactionBcs
5552
+ }
5553
+ }
5554
+ }
5555
+ }
5556
+ `) as unknown as TypedDocumentString<ResolveTransactionQuery, ResolveTransactionQueryVariables>;
5297
5557
  export const VerifyZkLoginSignatureDocument = new TypedDocumentString(`
5298
5558
  query verifyZkLoginSignature($bytes: Base64!, $signature: Base64!, $intentScope: ZkLoginIntentScope!, $author: SuiAddress!) {
5299
5559
  verifyZkLoginSignature(