@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
@@ -0,0 +1,1523 @@
1
+ //#region src/jsonRpc/types/generated.d.ts
2
+ /**
3
+ * ######################################
4
+ * ### DO NOT EDIT THIS FILE DIRECTLY ###
5
+ * ######################################
6
+ *
7
+ * This file is generated from:
8
+ * /crates/sui-open-rpc/spec/openrpc.json
9
+ */
10
+ interface AccumulatorEvent {
11
+ accumulatorObj: string;
12
+ address: string;
13
+ operation: AccumulatorOperation;
14
+ ty: string;
15
+ value: AccumulatorValue;
16
+ }
17
+ type AccumulatorOperation = 'merge' | 'split';
18
+ type AccumulatorValue = {
19
+ integer: string;
20
+ } | {
21
+ integerTuple: [string, string];
22
+ } | {
23
+ eventDigest: [string, string][];
24
+ };
25
+ interface Balance {
26
+ coinObjectCount: number;
27
+ coinType: string;
28
+ /**
29
+ * The portion of `total_balance` that resides in the address balance rather than in the coin objects.
30
+ * `total_balance` is the total amount of funds owned by the address. That is, do not add these two
31
+ * fields together.
32
+ */
33
+ fundsInAddressBalance?: string;
34
+ lockedBalance: {
35
+ [key: string]: string;
36
+ };
37
+ totalBalance: string;
38
+ }
39
+ interface BalanceChange {
40
+ /**
41
+ * The amount indicate the balance value changes, negative amount means spending coin value and
42
+ * positive means receiving coin value.
43
+ */
44
+ amount: string;
45
+ coinType: string;
46
+ /** Owner of the balance change */
47
+ owner: ObjectOwner;
48
+ }
49
+ interface Checkpoint {
50
+ /** Commitments to checkpoint state */
51
+ checkpointCommitments: CheckpointCommitment[];
52
+ /** Checkpoint digest */
53
+ digest: string;
54
+ /** Present only on the final checkpoint of the epoch. */
55
+ endOfEpochData?: EndOfEpochData | null;
56
+ /** Checkpoint's epoch ID */
57
+ epoch: string;
58
+ /**
59
+ * The running total gas costs of all transactions included in the current epoch so far until this
60
+ * checkpoint.
61
+ */
62
+ epochRollingGasCostSummary: GasCostSummary;
63
+ /** Total number of transactions committed since genesis, including those in this checkpoint. */
64
+ networkTotalTransactions: string;
65
+ /** Digest of the previous checkpoint */
66
+ previousDigest?: string | null;
67
+ /** Checkpoint sequence number */
68
+ sequenceNumber: string;
69
+ /**
70
+ * Timestamp of the checkpoint - number of milliseconds from the Unix epoch Checkpoint timestamps are
71
+ * monotonic, but not strongly monotonic - subsequent checkpoints can have same timestamp if they
72
+ * originate from the same underlining consensus commit
73
+ */
74
+ timestampMs: string;
75
+ /** Transaction digests */
76
+ transactions: string[];
77
+ /** Validator Signature */
78
+ validatorSignature: string;
79
+ }
80
+ type CheckpointCommitment = {
81
+ ECMHLiveObjectSetDigest: ECMHLiveObjectSetDigest;
82
+ } | {
83
+ CheckpointArtifactsDigest: string;
84
+ };
85
+ type CheckpointId = string | string;
86
+ /** A claim consists of value and index_mod_4. */
87
+ interface Claim {
88
+ indexMod4: number;
89
+ value: string;
90
+ }
91
+ interface CoinStruct {
92
+ balance: string;
93
+ coinObjectId: string;
94
+ coinType: string;
95
+ digest: string;
96
+ previousTransaction: string;
97
+ version: string;
98
+ }
99
+ /** RPC representation of the [Committee] type. */
100
+ interface CommitteeInfo {
101
+ epoch: string;
102
+ validators: [string, string][];
103
+ }
104
+ /** Unlike [enum Signature], [enum CompressedSignature] does not contain public key. */
105
+ type CompressedSignature = {
106
+ Ed25519: string;
107
+ } | {
108
+ Secp256k1: string;
109
+ } | {
110
+ Secp256r1: string;
111
+ } | {
112
+ ZkLogin: string;
113
+ } | {
114
+ Passkey: string;
115
+ };
116
+ type ConsensusDeterminedVersionAssignments = {
117
+ CancelledTransactions: [string, [string, string][]][];
118
+ } | {
119
+ CancelledTransactionsV2: [string, [[string, string], string][]][];
120
+ };
121
+ type SuiParsedData = {
122
+ dataType: 'moveObject';
123
+ fields: MoveStruct;
124
+ hasPublicTransfer: boolean;
125
+ type: string;
126
+ } | {
127
+ dataType: 'package';
128
+ disassembled: {
129
+ [key: string]: unknown;
130
+ };
131
+ };
132
+ interface DelegatedStake {
133
+ stakes: StakeObject[];
134
+ /** Staking pool object id. */
135
+ stakingPool: string;
136
+ /** Validator's Address. */
137
+ validatorAddress: string;
138
+ }
139
+ /** Additional rguments supplied to dev inspect beyond what is allowed in today's API. */
140
+ interface DevInspectArgs {
141
+ /** The gas budget for the transaction. */
142
+ gasBudget?: string | null;
143
+ /** The gas objects used to pay for the transaction. */
144
+ gasObjects?: [string, string, string][] | null;
145
+ /** The sponsor of the gas for the transaction, might be different from the sender. */
146
+ gasSponsor?: string | null;
147
+ /** Whether to return the raw transaction data and effects. */
148
+ showRawTxnDataAndEffects?: boolean | null;
149
+ /** Whether to skip transaction checks for the transaction. */
150
+ skipChecks?: boolean | null;
151
+ }
152
+ /** The response from processing a dev inspect transaction */
153
+ interface DevInspectResults {
154
+ /**
155
+ * Summary of effects that likely would be generated if the transaction is actually run. Note however,
156
+ * that not all dev-inspect transactions are actually usable as transactions so it might not be
157
+ * possible actually generate these effects from a normal transaction.
158
+ */
159
+ effects: TransactionEffects;
160
+ /** Execution error from executing the transactions */
161
+ error?: string | null;
162
+ /** Events that likely would be generated if the transaction is actually run. */
163
+ events: SuiEvent[];
164
+ /** The raw effects of the transaction that was dev inspected. */
165
+ rawEffects?: number[];
166
+ /** The raw transaction data that was dev inspected. */
167
+ rawTxnData?: number[];
168
+ /** Execution results (including return values) from executing the transactions */
169
+ results?: SuiExecutionResult[] | null;
170
+ }
171
+ interface DisplayFieldsResponse {
172
+ data?: {
173
+ [key: string]: string;
174
+ } | null;
175
+ error?: ObjectResponseError | null;
176
+ }
177
+ interface DryRunTransactionBlockResponse {
178
+ balanceChanges: BalanceChange[];
179
+ effects: TransactionEffects;
180
+ events: SuiEvent[];
181
+ executionErrorSource?: string | null;
182
+ input: TransactionBlockData;
183
+ objectChanges: SuiObjectChange[];
184
+ suggestedGasPrice?: string | null;
185
+ }
186
+ type DynamicFieldInfo = {
187
+ digest: string;
188
+ name: DynamicFieldName;
189
+ objectId: string;
190
+ objectType: string;
191
+ type: DynamicFieldType;
192
+ version: string;
193
+ bcsEncoding: 'base64';
194
+ bcsName: string;
195
+ } | {
196
+ digest: string;
197
+ name: DynamicFieldName;
198
+ objectId: string;
199
+ objectType: string;
200
+ type: DynamicFieldType;
201
+ version: string;
202
+ bcsEncoding: 'base58';
203
+ bcsName: string;
204
+ };
205
+ interface DynamicFieldName {
206
+ type: string;
207
+ value: unknown;
208
+ }
209
+ type DynamicFieldType = 'DynamicField' | 'DynamicObject';
210
+ /** The Sha256 digest of an EllipticCurveMultisetHash committing to the live object set. */
211
+ interface ECMHLiveObjectSetDigest {
212
+ digest: number[];
213
+ }
214
+ interface EndOfEpochData {
215
+ /** Commitments to epoch specific state (e.g. live object set) */
216
+ epochCommitments: CheckpointCommitment[];
217
+ /**
218
+ * next_epoch_committee is `Some` if and only if the current checkpoint is the last checkpoint of an
219
+ * epoch. Therefore next_epoch_committee can be used to pick the last checkpoint of an epoch, which is
220
+ * often useful to get epoch level summary stats like total gas cost of an epoch, or the total number
221
+ * of transactions from genesis to the end of an epoch. The committee is stored as a vector of
222
+ * validator pub key and stake pairs. The vector should be sorted based on the Committee data
223
+ * structure.
224
+ */
225
+ nextEpochCommittee: [string, string][];
226
+ /**
227
+ * The protocol version that is in effect during the epoch that starts immediately after this
228
+ * checkpoint.
229
+ */
230
+ nextEpochProtocolVersion: string;
231
+ }
232
+ type SuiEvent = {
233
+ /**
234
+ * Sequential event ID, ie (transaction seq number, event seq number). 1) Serves as a unique event ID
235
+ * for each fullnode 2) Also serves to sequence events for the purposes of pagination and querying. A
236
+ * higher id is an event seen later by that fullnode. This ID is the "cursor" for event querying.
237
+ */
238
+ id: EventId;
239
+ /** Move package where this event was emitted. */
240
+ packageId: string;
241
+ /** Parsed json value of the event */
242
+ parsedJson: unknown;
243
+ /** Sender's Sui address. */
244
+ sender: string;
245
+ /** UTC timestamp in milliseconds since epoch (1/1/1970) */
246
+ timestampMs?: string | null;
247
+ /** Move module where this event was emitted. */
248
+ transactionModule: string;
249
+ /** Move event type. */
250
+ type: string;
251
+ bcs: string;
252
+ bcsEncoding: 'base64';
253
+ } | {
254
+ /**
255
+ * Sequential event ID, ie (transaction seq number, event seq number). 1) Serves as a unique event ID
256
+ * for each fullnode 2) Also serves to sequence events for the purposes of pagination and querying. A
257
+ * higher id is an event seen later by that fullnode. This ID is the "cursor" for event querying.
258
+ */
259
+ id: EventId;
260
+ /** Move package where this event was emitted. */
261
+ packageId: string;
262
+ /** Parsed json value of the event */
263
+ parsedJson: unknown;
264
+ /** Sender's Sui address. */
265
+ sender: string;
266
+ /** UTC timestamp in milliseconds since epoch (1/1/1970) */
267
+ timestampMs?: string | null;
268
+ /** Move module where this event was emitted. */
269
+ transactionModule: string;
270
+ /** Move event type. */
271
+ type: string;
272
+ bcs: string;
273
+ bcsEncoding: 'base58';
274
+ };
275
+ type SuiEventFilter = /** Return all events. */
276
+ {
277
+ All: [];
278
+ } /** Return events that match any of the given filters. Only supported on event subscriptions. */ | {
279
+ Any: SuiEventFilter[];
280
+ } /** Query by sender address. */ | {
281
+ Sender: string;
282
+ } /** Return events emitted by the given transaction. */ | {
283
+ Transaction: string;
284
+ } /**
285
+ * Return events emitted in a specified Move module. If the event is defined in Module A but emitted in
286
+ * a tx with Module B, query `MoveModule` by module B returns the event. Query `MoveEventModule` by
287
+ * module A returns the event too.
288
+ */ | {
289
+ MoveModule: {
290
+ /** the module name */
291
+ module: string;
292
+ /** the Move package ID */
293
+ package: string;
294
+ };
295
+ } /**
296
+ * Return events with the given Move event struct name (struct tag). For example, if the event is
297
+ * defined in `0xabcd::MyModule`, and named `Foo`, then the struct tag is `0xabcd::MyModule::Foo`.
298
+ */ | {
299
+ MoveEventType: string;
300
+ } /**
301
+ * Return events with the given Move module name where the event struct is defined. If the event is
302
+ * defined in Module A but emitted in a tx with Module B, query `MoveEventModule` by module A returns
303
+ * the event. Query `MoveModule` by module B returns the event too.
304
+ */ | {
305
+ MoveEventModule: {
306
+ /** the module name */
307
+ module: string;
308
+ /** the Move package ID */
309
+ package: string;
310
+ };
311
+ } /** Return events emitted in [start_time, end_time] interval */ | {
312
+ TimeRange: {
313
+ /** right endpoint of time interval, milliseconds since epoch, exclusive */
314
+ endTime: string;
315
+ /** left endpoint of time interval, milliseconds since epoch, inclusive */
316
+ startTime: string;
317
+ };
318
+ };
319
+ /** Unique ID of a Sui Event, the ID is a combination of transaction digest and event seq number. */
320
+ interface EventId {
321
+ eventSeq: string;
322
+ txDigest: string;
323
+ }
324
+ type ExecuteTransactionRequestType = 'WaitForEffectsCert' | 'WaitForLocalExecution';
325
+ type ExecutionStatus = {
326
+ status: 'success' | 'failure';
327
+ error?: string;
328
+ };
329
+ /**
330
+ * Summary of the charges in a transaction. Storage is charged independently of computation. There are
331
+ * 3 parts to the storage charges: `storage_cost`: it is the charge of storage at the time the
332
+ * transaction is executed. The cost of storage is the number of bytes of the objects being mutated
333
+ * multiplied by a variable storage cost per byte `storage_rebate`: this is the amount a user gets back
334
+ * when manipulating an object. The `storage_rebate` is the `storage_cost` for an object minus fees.
335
+ * `non_refundable_storage_fee`: not all the value of the object storage cost is given back to user and
336
+ * there is a small fraction that is kept by the system. This value tracks that charge.
337
+ *
338
+ * When looking at a gas cost summary the amount charged to the user is
339
+ * `computation_cost + storage_cost - storage_rebate` and that is the amount that is deducted from the
340
+ * gas coins. `non_refundable_storage_fee` is collected from the objects being mutated/deleted and it
341
+ * is tracked by the system in storage funds.
342
+ *
343
+ * Objects deleted, including the older versions of objects mutated, have the storage field on the
344
+ * objects added up to a pool of "potential rebate". This rebate then is reduced by the "nonrefundable
345
+ * rate" such that:
346
+ * `potential_rebate(storage cost of deleted/mutated objects) = storage_rebate + non_refundable_storage_fee`
347
+ */
348
+ interface GasCostSummary {
349
+ /** Cost of computation/execution */
350
+ computationCost: string;
351
+ /** The fee for the rebate. The portion of the storage rebate kept by the system. */
352
+ nonRefundableStorageFee: string;
353
+ /** Storage cost, it's the sum of all storage cost for all objects created or mutated. */
354
+ storageCost: string;
355
+ /**
356
+ * The amount of storage cost refunded to the user for all objects deleted or mutated in the
357
+ * transaction.
358
+ */
359
+ storageRebate: string;
360
+ }
361
+ interface SuiGasData {
362
+ budget: string;
363
+ owner: string;
364
+ payment: SuiObjectRef[];
365
+ price: string;
366
+ }
367
+ interface GetPastObjectRequest {
368
+ /** the ID of the queried object */
369
+ objectId: string;
370
+ /** the version of the queried object. */
371
+ version: string;
372
+ }
373
+ type InputObjectKind = {
374
+ MovePackage: string;
375
+ } | {
376
+ ImmOrOwnedMoveObject: SuiObjectRef;
377
+ } | {
378
+ SharedMoveObject: {
379
+ id: string;
380
+ initial_shared_version: string;
381
+ mutable?: boolean;
382
+ };
383
+ };
384
+ interface MoveCallParams {
385
+ arguments: unknown[];
386
+ function: string;
387
+ module: string;
388
+ packageObjectId: string;
389
+ typeArguments?: string[];
390
+ }
391
+ type SuiMoveFunctionArgType = 'Pure' | {
392
+ Object: ObjectValueKind;
393
+ };
394
+ type MoveStruct = MoveValue[] | {
395
+ fields: {
396
+ [key: string]: MoveValue;
397
+ };
398
+ type: string;
399
+ } | {
400
+ [key: string]: MoveValue;
401
+ };
402
+ type MoveValue = number | boolean | string | MoveValue[] | string | {
403
+ id: string;
404
+ } | MoveStruct | null | MoveVariant;
405
+ interface MoveVariant {
406
+ fields: {
407
+ [key: string]: MoveValue;
408
+ };
409
+ type: string;
410
+ variant: string;
411
+ }
412
+ /** The struct that contains signatures and public keys necessary for authenticating a MultiSig. */
413
+ interface MultiSig {
414
+ /** A bitmap that indicates the position of which public key the signature should be authenticated with. */
415
+ bitmap: number;
416
+ /**
417
+ * The public key encoded with each public key with its signature scheme used along with the
418
+ * corresponding weight.
419
+ */
420
+ multisig_pk: MultiSigPublicKey;
421
+ /** The plain signature encoded with signature scheme. */
422
+ sigs: CompressedSignature[];
423
+ }
424
+ /**
425
+ * Deprecated, use [struct MultiSig] instead. The struct that contains signatures and public keys
426
+ * necessary for authenticating a MultiSigLegacy.
427
+ */
428
+ interface MultiSigLegacy {
429
+ /** A bitmap that indicates the position of which public key the signature should be authenticated with. */
430
+ bitmap: string;
431
+ /**
432
+ * The public key encoded with each public key with its signature scheme used along with the
433
+ * corresponding weight.
434
+ */
435
+ multisig_pk: MultiSigPublicKeyLegacy;
436
+ /** The plain signature encoded with signature scheme. */
437
+ sigs: CompressedSignature[];
438
+ }
439
+ /** The struct that contains the public key used for authenticating a MultiSig. */
440
+ interface MultiSigPublicKey {
441
+ /** A list of public key and its corresponding weight. */
442
+ pk_map: [PublicKey, number][];
443
+ /**
444
+ * If the total weight of the public keys corresponding to verified signatures is larger than
445
+ * threshold, the MultiSig is verified.
446
+ */
447
+ threshold: number;
448
+ }
449
+ /**
450
+ * Deprecated, use [struct MultiSigPublicKey] instead. The struct that contains the public key used for
451
+ * authenticating a MultiSig.
452
+ */
453
+ interface MultiSigPublicKeyLegacy {
454
+ /** A list of public key and its corresponding weight. */
455
+ pk_map: [PublicKey, number][];
456
+ /**
457
+ * If the total weight of the public keys corresponding to verified signatures is larger than
458
+ * threshold, the MultiSig is verified.
459
+ */
460
+ threshold: number;
461
+ }
462
+ /**
463
+ * ObjectChange are derived from the object mutations in the TransactionEffect to provide richer object
464
+ * information.
465
+ */
466
+ type SuiObjectChange = /** Module published */
467
+ {
468
+ digest: string;
469
+ modules: string[];
470
+ packageId: string;
471
+ type: 'published';
472
+ version: string;
473
+ } /** Transfer objects to new address / wrap in another object */ | {
474
+ digest: string;
475
+ objectId: string;
476
+ objectType: string;
477
+ recipient: ObjectOwner;
478
+ sender: string;
479
+ type: 'transferred';
480
+ version: string;
481
+ } /** Object mutated. */ | {
482
+ digest: string;
483
+ objectId: string;
484
+ objectType: string;
485
+ owner: ObjectOwner;
486
+ previousVersion: string;
487
+ sender: string;
488
+ type: 'mutated';
489
+ version: string;
490
+ } /** Delete object */ | {
491
+ objectId: string;
492
+ objectType: string;
493
+ sender: string;
494
+ type: 'deleted';
495
+ version: string;
496
+ } /** Wrapped object */ | {
497
+ objectId: string;
498
+ objectType: string;
499
+ sender: string;
500
+ type: 'wrapped';
501
+ version: string;
502
+ } /** New object creation */ | {
503
+ digest: string;
504
+ objectId: string;
505
+ objectType: string;
506
+ owner: ObjectOwner;
507
+ sender: string;
508
+ type: 'created';
509
+ version: string;
510
+ };
511
+ interface SuiObjectData {
512
+ /**
513
+ * Move object content or package content in BCS, default to be None unless
514
+ * SuiObjectDataOptions.showBcs is set to true
515
+ */
516
+ bcs?: RawData | null;
517
+ /**
518
+ * Move object content or package content, default to be None unless SuiObjectDataOptions.showContent
519
+ * is set to true
520
+ */
521
+ content?: SuiParsedData | null;
522
+ /** Base64 string representing the object digest */
523
+ digest: string;
524
+ /**
525
+ * The Display metadata for frontend UI rendering, default to be None unless
526
+ * SuiObjectDataOptions.showContent is set to true This can also be None if the struct type does not
527
+ * have Display defined See more details in <https://forums.sui.io/t/nft-object-display-proposal/4872>
528
+ */
529
+ display?: DisplayFieldsResponse | null;
530
+ objectId: string;
531
+ /** The owner of this object. Default to be None unless SuiObjectDataOptions.showOwner is set to true */
532
+ owner?: ObjectOwner | null;
533
+ /**
534
+ * The digest of the transaction that created or last mutated this object. Default to be None unless
535
+ * SuiObjectDataOptions.showPreviousTransaction is set to true
536
+ */
537
+ previousTransaction?: string | null;
538
+ /**
539
+ * The amount of SUI we would rebate if this object gets deleted. This number is re-calculated each
540
+ * time the object is mutated based on the present storage gas price.
541
+ */
542
+ storageRebate?: string | null;
543
+ /** The type of the object. Default to be None unless SuiObjectDataOptions.showType is set to true */
544
+ type?: string | null;
545
+ /** Object version. */
546
+ version: string;
547
+ }
548
+ interface SuiObjectDataOptions {
549
+ /** Whether to show the content in BCS format. Default to be False */
550
+ showBcs?: boolean;
551
+ /**
552
+ * Whether to show the content(i.e., package content or Move struct content) of the object. Default to
553
+ * be False
554
+ */
555
+ showContent?: boolean;
556
+ /** Whether to show the Display metadata of the object for frontend rendering. Default to be False */
557
+ showDisplay?: boolean;
558
+ /** Whether to show the owner of the object. Default to be False */
559
+ showOwner?: boolean;
560
+ /** Whether to show the previous transaction digest of the object. Default to be False */
561
+ showPreviousTransaction?: boolean;
562
+ /** Whether to show the storage rebate of the object. Default to be False */
563
+ showStorageRebate?: boolean;
564
+ /** Whether to show the type of the object. Default to be False */
565
+ showType?: boolean;
566
+ }
567
+ type ObjectRead = /** The object exists and is found with this version */
568
+ {
569
+ details: SuiObjectData;
570
+ status: 'VersionFound';
571
+ } /** The object does not exist */ | {
572
+ details: string;
573
+ status: 'ObjectNotExists';
574
+ } /** The object is found to be deleted with this version */ | {
575
+ details: SuiObjectRef;
576
+ status: 'ObjectDeleted';
577
+ } /** The object exists but not found with this version */ | {
578
+ details: [string, string];
579
+ status: 'VersionNotFound';
580
+ } /** The asked object version is higher than the latest */ | {
581
+ details: {
582
+ asked_version: string;
583
+ latest_version: string;
584
+ object_id: string;
585
+ };
586
+ status: 'VersionTooHigh';
587
+ };
588
+ interface SuiObjectRef {
589
+ /** Base64 string representing the object digest */
590
+ digest: string;
591
+ /** Hex code as string representing the object id */
592
+ objectId: string;
593
+ /** Object version. */
594
+ version: string;
595
+ }
596
+ type ObjectResponseError = {
597
+ code: 'notExists';
598
+ object_id: string;
599
+ } | {
600
+ code: 'dynamicFieldNotFound';
601
+ parent_object_id: string;
602
+ } | {
603
+ code: 'deleted';
604
+ /** Base64 string representing the object digest */
605
+ digest: string;
606
+ object_id: string;
607
+ /** Object version. */
608
+ version: string;
609
+ } | {
610
+ code: 'unknown';
611
+ } | {
612
+ code: 'displayError';
613
+ error: string;
614
+ };
615
+ interface SuiObjectResponseQuery {
616
+ /** If None, no filter will be applied */
617
+ filter?: SuiObjectDataFilter | null;
618
+ /** config which fields to include in the response, by default only digest is included */
619
+ options?: SuiObjectDataOptions | null;
620
+ }
621
+ type ObjectValueKind = 'ByImmutableReference' | 'ByMutableReference' | 'ByValue';
622
+ interface OwnedObjectRef {
623
+ owner: ObjectOwner;
624
+ reference: SuiObjectRef;
625
+ }
626
+ type ObjectOwner = /** Object is exclusively owned by a single address, and is mutable. */
627
+ {
628
+ AddressOwner: string;
629
+ } /**
630
+ * Object is exclusively owned by a single object, and is mutable. The object ID is converted to
631
+ * SuiAddress as SuiAddress is universal.
632
+ */ | {
633
+ ObjectOwner: string;
634
+ } /** Object is shared, can be used by any address, and is mutable. */ | {
635
+ Shared: {
636
+ /** The version at which the object became shared */
637
+ initial_shared_version: string;
638
+ };
639
+ } | 'Immutable' /** Object is exclusively owned by a single address and sequenced via consensus. */ | {
640
+ ConsensusAddressOwner: {
641
+ owner: string;
642
+ /**
643
+ * The version at which the object most recently became a consensus object. This serves the same
644
+ * function as `initial_shared_version`, except it may change if the object's Owner type changes.
645
+ */
646
+ start_version: string;
647
+ };
648
+ };
649
+ /**
650
+ * `next_cursor` points to the last item in the page; Reading with `next_cursor` will start from the
651
+ * next item after `next_cursor` if `next_cursor` is `Some`, otherwise it will start from the first
652
+ * item.
653
+ */
654
+ interface PaginatedCheckpoints {
655
+ data: Checkpoint[];
656
+ hasNextPage: boolean;
657
+ nextCursor?: string | null;
658
+ }
659
+ /**
660
+ * `next_cursor` points to the last item in the page; Reading with `next_cursor` will start from the
661
+ * next item after `next_cursor` if `next_cursor` is `Some`, otherwise it will start from the first
662
+ * item.
663
+ */
664
+ interface PaginatedCoins {
665
+ data: CoinStruct[];
666
+ hasNextPage: boolean;
667
+ nextCursor?: string | null;
668
+ }
669
+ /**
670
+ * `next_cursor` points to the last item in the page; Reading with `next_cursor` will start from the
671
+ * next item after `next_cursor` if `next_cursor` is `Some`, otherwise it will start from the first
672
+ * item.
673
+ */
674
+ interface PaginatedDynamicFieldInfos {
675
+ data: DynamicFieldInfo[];
676
+ hasNextPage: boolean;
677
+ nextCursor?: string | null;
678
+ }
679
+ /**
680
+ * `next_cursor` points to the last item in the page; Reading with `next_cursor` will start from the
681
+ * next item after `next_cursor` if `next_cursor` is `Some`, otherwise it will start from the first
682
+ * item.
683
+ */
684
+ interface PaginatedEvents {
685
+ data: SuiEvent[];
686
+ hasNextPage: boolean;
687
+ nextCursor?: EventId | null;
688
+ }
689
+ /**
690
+ * `next_cursor` points to the last item in the page; Reading with `next_cursor` will start from the
691
+ * next item after `next_cursor` if `next_cursor` is `Some`, otherwise it will start from the first
692
+ * item.
693
+ */
694
+ interface PaginatedStrings {
695
+ data: string[];
696
+ hasNextPage: boolean;
697
+ nextCursor?: string | null;
698
+ }
699
+ /**
700
+ * `next_cursor` points to the last item in the page; Reading with `next_cursor` will start from the
701
+ * next item after `next_cursor` if `next_cursor` is `Some`, otherwise it will start from the first
702
+ * item.
703
+ */
704
+ interface PaginatedObjectsResponse {
705
+ data: SuiObjectResponse[];
706
+ hasNextPage: boolean;
707
+ nextCursor?: string | null;
708
+ }
709
+ /**
710
+ * `next_cursor` points to the last item in the page; Reading with `next_cursor` will start from the
711
+ * next item after `next_cursor` if `next_cursor` is `Some`, otherwise it will start from the first
712
+ * item.
713
+ */
714
+ interface PaginatedTransactionResponse {
715
+ data: SuiTransactionBlockResponse[];
716
+ hasNextPage: boolean;
717
+ nextCursor?: string | null;
718
+ }
719
+ /**
720
+ * An passkey authenticator with parsed fields. See field defition below. Can be initialized from
721
+ * [struct RawPasskeyAuthenticator].
722
+ */
723
+ interface PasskeyAuthenticator {
724
+ /**
725
+ * `authenticatorData` is a bytearray that encodes
726
+ * [Authenticator Data](https://www.w3.org/TR/webauthn-2/#sctn-authenticator-data) structure returned
727
+ * by the authenticator attestation response as is.
728
+ */
729
+ authenticator_data: number[];
730
+ /**
731
+ * `clientDataJSON` contains a JSON-compatible UTF-8 encoded string of the client data which is passed
732
+ * to the authenticator by the client during the authentication request (see
733
+ * [CollectedClientData](https://www.w3.org/TR/webauthn-2/#dictdef-collectedclientdata))
734
+ */
735
+ client_data_json: string;
736
+ }
737
+ interface ProtocolConfig {
738
+ attributes: {
739
+ [key: string]: ProtocolConfigValue | null;
740
+ };
741
+ featureFlags: {
742
+ [key: string]: boolean;
743
+ };
744
+ maxSupportedProtocolVersion: string;
745
+ minSupportedProtocolVersion: string;
746
+ protocolVersion: string;
747
+ }
748
+ type ProtocolConfigValue = {
749
+ u16: string;
750
+ } | {
751
+ u32: string;
752
+ } | {
753
+ u64: string;
754
+ } | {
755
+ f64: string;
756
+ } | {
757
+ bool: string;
758
+ };
759
+ type PublicKey = {
760
+ Ed25519: string;
761
+ } | {
762
+ Secp256k1: string;
763
+ } | {
764
+ Secp256r1: string;
765
+ } | {
766
+ ZkLogin: string;
767
+ } | {
768
+ Passkey: string;
769
+ };
770
+ type RPCTransactionRequestParams = {
771
+ transferObjectRequestParams: TransferObjectParams;
772
+ } | {
773
+ moveCallRequestParams: MoveCallParams;
774
+ };
775
+ type RawData = {
776
+ bcsBytes: string;
777
+ dataType: 'moveObject';
778
+ hasPublicTransfer: boolean;
779
+ type: string;
780
+ version: string;
781
+ } | {
782
+ dataType: 'package';
783
+ id: string;
784
+ linkageTable: {
785
+ [key: string]: UpgradeInfo;
786
+ };
787
+ moduleMap: {
788
+ [key: string]: string;
789
+ };
790
+ typeOriginTable: TypeOrigin[];
791
+ version: string;
792
+ };
793
+ type Signature = {
794
+ Ed25519SuiSignature: string;
795
+ } | {
796
+ Secp256k1SuiSignature: string;
797
+ } | {
798
+ Secp256r1SuiSignature: string;
799
+ };
800
+ type StakeObject = {
801
+ principal: string;
802
+ stakeActiveEpoch: string;
803
+ stakeRequestEpoch: string;
804
+ /** ID of the StakedSui receipt object. */
805
+ stakedSuiId: string;
806
+ status: 'Pending';
807
+ } | {
808
+ principal: string;
809
+ stakeActiveEpoch: string;
810
+ stakeRequestEpoch: string;
811
+ /** ID of the StakedSui receipt object. */
812
+ stakedSuiId: string;
813
+ estimatedReward: string;
814
+ status: 'Active';
815
+ } | {
816
+ principal: string;
817
+ stakeActiveEpoch: string;
818
+ stakeRequestEpoch: string;
819
+ /** ID of the StakedSui receipt object. */
820
+ stakedSuiId: string;
821
+ status: 'Unstaked';
822
+ };
823
+ interface SuiActiveJwk {
824
+ epoch: string;
825
+ jwk: SuiJWK;
826
+ jwk_id: SuiJwkId;
827
+ }
828
+ /** An argument to a transaction in a programmable transaction block */
829
+ type SuiArgument = 'GasCoin' /** One of the input objects or primitive values (from `ProgrammableTransactionBlock` inputs) */ | {
830
+ Input: number;
831
+ } /** The result of another transaction (from `ProgrammableTransactionBlock` transactions) */ | {
832
+ Result: number;
833
+ } /**
834
+ * Like a `Result` but it accesses a nested result. Currently, the only usage of this is to access a
835
+ * value from a Move call with multiple return values.
836
+ */ | {
837
+ NestedResult: [number, number];
838
+ };
839
+ interface SuiAuthenticatorStateExpire {
840
+ min_epoch: string;
841
+ }
842
+ type SuiCallArg = {
843
+ type: 'object';
844
+ digest: string;
845
+ objectId: string;
846
+ objectType: 'immOrOwnedObject';
847
+ version: string;
848
+ } | {
849
+ type: 'object';
850
+ initialSharedVersion: string;
851
+ mutable: boolean;
852
+ objectId: string;
853
+ objectType: 'sharedObject';
854
+ } | {
855
+ type: 'object';
856
+ digest: string;
857
+ objectId: string;
858
+ objectType: 'receiving';
859
+ version: string;
860
+ } | {
861
+ type: 'pure';
862
+ value: unknown;
863
+ valueType?: string | null;
864
+ } | {
865
+ reservation: SuiReservation;
866
+ type: 'fundsWithdrawal';
867
+ typeArg: SuiWithdrawalTypeArg;
868
+ withdrawFrom: SuiWithdrawFrom;
869
+ };
870
+ interface SuiChangeEpoch {
871
+ computation_charge: string;
872
+ epoch: string;
873
+ epoch_start_timestamp_ms: string;
874
+ storage_charge: string;
875
+ storage_rebate: string;
876
+ }
877
+ interface CoinMetadata {
878
+ /** Number of decimal places the coin uses. */
879
+ decimals: number;
880
+ /** Description of the token */
881
+ description: string;
882
+ /** URL for the token logo */
883
+ iconUrl?: string | null;
884
+ /** Object id for the CoinMetadata object */
885
+ id?: string | null;
886
+ /** Name for the token */
887
+ name: string;
888
+ /** Symbol for the token */
889
+ symbol: string;
890
+ }
891
+ type SuiEndOfEpochTransactionKind = 'AuthenticatorStateCreate' | 'RandomnessStateCreate' | 'CoinDenyListStateCreate' | 'StoreExecutionTimeObservations' | 'AccumulatorRootCreate' | 'CoinRegistryCreate' | 'DisplayRegistryCreate' | 'AddressAliasStateCreate' | 'WriteAccumulatorStorageCost' | {
892
+ ChangeEpoch: SuiChangeEpoch;
893
+ } | {
894
+ AuthenticatorStateExpire: SuiAuthenticatorStateExpire;
895
+ } | {
896
+ BridgeStateCreate: string;
897
+ } | {
898
+ BridgeCommitteeUpdate: string;
899
+ };
900
+ interface SuiExecutionResult {
901
+ /** The value of any arguments that were mutably borrowed. Non-mut borrowed values are not included */
902
+ mutableReferenceOutputs?: [SuiArgument, number[], string][];
903
+ /** The return values from the transaction */
904
+ returnValues?: [number[], string][];
905
+ }
906
+ interface SuiJWK {
907
+ alg: string;
908
+ e: string;
909
+ kty: string;
910
+ n: string;
911
+ }
912
+ interface SuiJwkId {
913
+ iss: string;
914
+ kid: string;
915
+ }
916
+ type SuiMoveAbility = 'Copy' | 'Drop' | 'Store' | 'Key';
917
+ interface SuiMoveAbilitySet {
918
+ abilities: SuiMoveAbility[];
919
+ }
920
+ interface SuiMoveAbort {
921
+ error_code?: string | null;
922
+ function?: string | null;
923
+ line?: number | null;
924
+ module_id?: string | null;
925
+ }
926
+ interface SuiMoveModuleId {
927
+ address: string;
928
+ name: string;
929
+ }
930
+ interface SuiMoveNormalizedEnum {
931
+ abilities: SuiMoveAbilitySet;
932
+ typeParameters: SuiMoveStructTypeParameter[];
933
+ variantDeclarationOrder?: string[] | null;
934
+ variants: {
935
+ [key: string]: SuiMoveNormalizedField[];
936
+ };
937
+ }
938
+ interface SuiMoveNormalizedField {
939
+ name: string;
940
+ type: SuiMoveNormalizedType;
941
+ }
942
+ interface SuiMoveNormalizedFunction {
943
+ isEntry: boolean;
944
+ parameters: SuiMoveNormalizedType[];
945
+ return: SuiMoveNormalizedType[];
946
+ typeParameters: SuiMoveAbilitySet[];
947
+ visibility: SuiMoveVisibility;
948
+ }
949
+ interface SuiMoveNormalizedModule {
950
+ address: string;
951
+ enums?: {
952
+ [key: string]: SuiMoveNormalizedEnum;
953
+ };
954
+ exposedFunctions: {
955
+ [key: string]: SuiMoveNormalizedFunction;
956
+ };
957
+ fileFormatVersion: number;
958
+ friends: SuiMoveModuleId[];
959
+ name: string;
960
+ structs: {
961
+ [key: string]: SuiMoveNormalizedStruct;
962
+ };
963
+ }
964
+ interface SuiMoveNormalizedStruct {
965
+ abilities: SuiMoveAbilitySet;
966
+ fields: SuiMoveNormalizedField[];
967
+ typeParameters: SuiMoveStructTypeParameter[];
968
+ }
969
+ type SuiMoveNormalizedType = 'Bool' | 'U8' | 'U16' | 'U32' | 'U64' | 'U128' | 'U256' | 'Address' | 'Signer' | {
970
+ Struct: {
971
+ address: string;
972
+ module: string;
973
+ name: string;
974
+ typeArguments: SuiMoveNormalizedType[];
975
+ };
976
+ } | {
977
+ Vector: SuiMoveNormalizedType;
978
+ } | {
979
+ TypeParameter: number;
980
+ } | {
981
+ Reference: SuiMoveNormalizedType;
982
+ } | {
983
+ MutableReference: SuiMoveNormalizedType;
984
+ };
985
+ interface SuiMoveStructTypeParameter {
986
+ constraints: SuiMoveAbilitySet;
987
+ isPhantom: boolean;
988
+ }
989
+ type SuiMoveVisibility = 'Private' | 'Public' | 'Friend';
990
+ type SuiObjectDataFilter = {
991
+ MatchAll: SuiObjectDataFilter[];
992
+ } | {
993
+ MatchAny: SuiObjectDataFilter[];
994
+ } | {
995
+ MatchNone: SuiObjectDataFilter[];
996
+ } /** Query by type a specified Package. */ | {
997
+ Package: string;
998
+ } /** Query by type a specified Move module. */ | {
999
+ MoveModule: {
1000
+ /** the module name */
1001
+ module: string;
1002
+ /** the Move package ID */
1003
+ package: string;
1004
+ };
1005
+ } /** Query by type */ | {
1006
+ StructType: string;
1007
+ } | {
1008
+ AddressOwner: string;
1009
+ } | {
1010
+ ObjectOwner: string;
1011
+ } | {
1012
+ ObjectId: string;
1013
+ } | {
1014
+ ObjectIds: string[];
1015
+ } | {
1016
+ Version: string;
1017
+ };
1018
+ interface SuiObjectResponse {
1019
+ data?: SuiObjectData | null;
1020
+ error?: ObjectResponseError | null;
1021
+ }
1022
+ /**
1023
+ * The transaction for calling a Move function, either an entry function or a public function (which
1024
+ * cannot return references).
1025
+ */
1026
+ interface MoveCallSuiTransaction {
1027
+ /** The arguments to the function. */
1028
+ arguments?: SuiArgument[];
1029
+ /** The function to be called. */
1030
+ function: string;
1031
+ /** The specific module in the package containing the function. */
1032
+ module: string;
1033
+ /** The package containing the module and function. */
1034
+ package: string;
1035
+ /** The type arguments to the function. */
1036
+ type_arguments?: string[];
1037
+ }
1038
+ type SuiReservation = {
1039
+ maxAmountU64: string;
1040
+ };
1041
+ /**
1042
+ * This is the JSON-RPC type for the SUI system state object. It flattens all fields to make them
1043
+ * top-level fields such that it as minimum dependencies to the internal data structures of the SUI
1044
+ * system state type.
1045
+ */
1046
+ interface SuiSystemStateSummary {
1047
+ /** The list of active validators in the current epoch. */
1048
+ activeValidators: SuiValidatorSummary[];
1049
+ /** Map storing the number of epochs for which each validator has been below the low stake threshold. */
1050
+ atRiskValidators: [string, string][];
1051
+ /** The current epoch ID, starting from 0. */
1052
+ epoch: string;
1053
+ /** The duration of an epoch, in milliseconds. */
1054
+ epochDurationMs: string;
1055
+ /** Unix timestamp of the current epoch start */
1056
+ epochStartTimestampMs: string;
1057
+ /**
1058
+ * ID of the object that maps from a staking pool ID to the inactive validator that has that pool as
1059
+ * its staking pool.
1060
+ */
1061
+ inactivePoolsId: string;
1062
+ /** Number of inactive staking pools. */
1063
+ inactivePoolsSize: string;
1064
+ /**
1065
+ * Maximum number of active validators at any moment. We do not allow the number of validators in any
1066
+ * epoch to go above this.
1067
+ */
1068
+ maxValidatorCount: string;
1069
+ /** Lower-bound on the amount of stake required to become a validator. */
1070
+ minValidatorJoiningStake: string;
1071
+ /** ID of the object that contains the list of new validators that will join at the end of the epoch. */
1072
+ pendingActiveValidatorsId: string;
1073
+ /** Number of new validators that will join at the end of the epoch. */
1074
+ pendingActiveValidatorsSize: string;
1075
+ /** Removal requests from the validators. Each element is an index pointing to `active_validators`. */
1076
+ pendingRemovals: string[];
1077
+ /** The current protocol version, starting from 1. */
1078
+ protocolVersion: string;
1079
+ /** The reference gas price for the current epoch. */
1080
+ referenceGasPrice: string;
1081
+ /**
1082
+ * Whether the system is running in a downgraded safe mode due to a non-recoverable bug. This is set
1083
+ * whenever we failed to execute advance_epoch, and ended up executing advance_epoch_safe_mode. It can
1084
+ * be reset once we are able to successfully execute advance_epoch.
1085
+ */
1086
+ safeMode: boolean;
1087
+ /** Amount of computation rewards accumulated (and not yet distributed) during safe mode. */
1088
+ safeModeComputationRewards: string;
1089
+ /** Amount of non-refundable storage fee accumulated during safe mode. */
1090
+ safeModeNonRefundableStorageFee: string;
1091
+ /** Amount of storage rebates accumulated (and not yet burned) during safe mode. */
1092
+ safeModeStorageRebates: string;
1093
+ /** Amount of storage rewards accumulated (and not yet distributed) during safe mode. */
1094
+ safeModeStorageRewards: string;
1095
+ /** Balance of SUI set aside for stake subsidies that will be drawn down over time. */
1096
+ stakeSubsidyBalance: string;
1097
+ /** The amount of stake subsidy to be drawn down per epoch. This amount decays and decreases over time. */
1098
+ stakeSubsidyCurrentDistributionAmount: string;
1099
+ /**
1100
+ * The rate at which the distribution amount decays at the end of each period. Expressed in basis
1101
+ * points.
1102
+ */
1103
+ stakeSubsidyDecreaseRate: number;
1104
+ /**
1105
+ * This counter may be different from the current epoch number if in some epochs we decide to skip the
1106
+ * subsidy.
1107
+ */
1108
+ stakeSubsidyDistributionCounter: string;
1109
+ /** Number of distributions to occur before the distribution amount decays. */
1110
+ stakeSubsidyPeriodLength: string;
1111
+ /** The starting epoch in which stake subsidies start being paid out */
1112
+ stakeSubsidyStartEpoch: string;
1113
+ /** ID of the object that maps from staking pool's ID to the sui address of a validator. */
1114
+ stakingPoolMappingsId: string;
1115
+ /** Number of staking pool mappings. */
1116
+ stakingPoolMappingsSize: string;
1117
+ /**
1118
+ * The non-refundable portion of the storage fund coming from storage reinvestment, non-refundable
1119
+ * storage rebates and any leftover staking rewards.
1120
+ */
1121
+ storageFundNonRefundableBalance: string;
1122
+ /** The storage rebates of all the objects on-chain stored in the storage fund. */
1123
+ storageFundTotalObjectStorageRebates: string;
1124
+ /** The current version of the system state data structure type. */
1125
+ systemStateVersion: string;
1126
+ /** Total amount of stake from all active validators at the beginning of the epoch. */
1127
+ totalStake: string;
1128
+ /**
1129
+ * ID of the object that stores preactive validators, mapping their addresses to their `Validator`
1130
+ * structs.
1131
+ */
1132
+ validatorCandidatesId: string;
1133
+ /** Number of preactive validators. */
1134
+ validatorCandidatesSize: string;
1135
+ /**
1136
+ * A validator can have stake below `validator_low_stake_threshold` for this many epochs before being
1137
+ * kicked out.
1138
+ */
1139
+ validatorLowStakeGracePeriod: string;
1140
+ /**
1141
+ * Validators with stake amount below `validator_low_stake_threshold` are considered to have low stake
1142
+ * and will be escorted out of the validator set after being below this threshold for more than
1143
+ * `validator_low_stake_grace_period` number of epochs.
1144
+ */
1145
+ validatorLowStakeThreshold: string;
1146
+ /** A map storing the records of validator reporting each other. */
1147
+ validatorReportRecords: [string, string[]][];
1148
+ /**
1149
+ * Validators with stake below `validator_very_low_stake_threshold` will be removed immediately at
1150
+ * epoch change, no grace period.
1151
+ */
1152
+ validatorVeryLowStakeThreshold: string;
1153
+ }
1154
+ /** A single transaction in a programmable transaction block. */
1155
+ type SuiTransaction = /** A call to either an entry or a public Move function */
1156
+ {
1157
+ MoveCall: MoveCallSuiTransaction;
1158
+ } /**
1159
+ * `(Vec<forall T:key+store. T>, address)` It sends n-objects to the specified address. These objects
1160
+ * must have store (public transfer) and either the previous owner must be an address or the object
1161
+ * must be newly created.
1162
+ */ | {
1163
+ TransferObjects: [SuiArgument[], SuiArgument];
1164
+ } /**
1165
+ * `(&mut Coin<T>, Vec<u64>)` -> `Vec<Coin<T>>` It splits off some amounts into a new coins with those
1166
+ * amounts
1167
+ */ | {
1168
+ SplitCoins: [SuiArgument, SuiArgument[]];
1169
+ } /** `(&mut Coin<T>, Vec<Coin<T>>)` It merges n-coins into the first coin */ | {
1170
+ MergeCoins: [SuiArgument, SuiArgument[]];
1171
+ } /**
1172
+ * Publishes a Move package. It takes the package bytes and a list of the package's transitive
1173
+ * dependencies to link against on-chain.
1174
+ */ | {
1175
+ Publish: string[];
1176
+ } /** Upgrades a Move package */ | {
1177
+ Upgrade: [string[], string, SuiArgument];
1178
+ } /**
1179
+ * `forall T: Vec<T> -> vector<T>` Given n-values of the same type, it constructs a vector. For non
1180
+ * objects or an empty vector, the type tag must be specified.
1181
+ */ | {
1182
+ MakeMoveVec: [string | null, SuiArgument[]];
1183
+ };
1184
+ type SuiTransactionBlockBuilderMode = 'Commit' | 'DevInspect';
1185
+ /**
1186
+ * This is the JSON-RPC type for the SUI validator. It flattens all inner structures to top-level
1187
+ * fields so that they are decoupled from the internal definitions.
1188
+ */
1189
+ interface SuiValidatorSummary {
1190
+ commissionRate: string;
1191
+ description: string;
1192
+ /** ID of the exchange rate table object. */
1193
+ exchangeRatesId: string;
1194
+ /** Number of exchange rates in the table. */
1195
+ exchangeRatesSize: string;
1196
+ gasPrice: string;
1197
+ imageUrl: string;
1198
+ name: string;
1199
+ netAddress: string;
1200
+ networkPubkeyBytes: string;
1201
+ nextEpochCommissionRate: string;
1202
+ nextEpochGasPrice: string;
1203
+ nextEpochNetAddress?: string | null;
1204
+ nextEpochNetworkPubkeyBytes?: string | null;
1205
+ nextEpochP2pAddress?: string | null;
1206
+ nextEpochPrimaryAddress?: string | null;
1207
+ nextEpochProofOfPossession?: string | null;
1208
+ nextEpochProtocolPubkeyBytes?: string | null;
1209
+ nextEpochStake: string;
1210
+ nextEpochWorkerAddress?: string | null;
1211
+ nextEpochWorkerPubkeyBytes?: string | null;
1212
+ operationCapId: string;
1213
+ p2pAddress: string;
1214
+ /** Pending pool token withdrawn during the current epoch, emptied at epoch boundaries. */
1215
+ pendingPoolTokenWithdraw: string;
1216
+ /** Pending stake amount for this epoch. */
1217
+ pendingStake: string;
1218
+ /** Pending stake withdrawn during the current epoch, emptied at epoch boundaries. */
1219
+ pendingTotalSuiWithdraw: string;
1220
+ /** Total number of pool tokens issued by the pool. */
1221
+ poolTokenBalance: string;
1222
+ primaryAddress: string;
1223
+ projectUrl: string;
1224
+ proofOfPossessionBytes: string;
1225
+ protocolPubkeyBytes: string;
1226
+ /** The epoch stake rewards will be added here at the end of each epoch. */
1227
+ rewardsPool: string;
1228
+ /** The epoch at which this pool became active. */
1229
+ stakingPoolActivationEpoch?: string | null;
1230
+ /** The epoch at which this staking pool ceased to be active. `None` = {pre-active, active}, */
1231
+ stakingPoolDeactivationEpoch?: string | null;
1232
+ /** ID of the staking pool object. */
1233
+ stakingPoolId: string;
1234
+ /** The total number of SUI tokens in this pool. */
1235
+ stakingPoolSuiBalance: string;
1236
+ suiAddress: string;
1237
+ votingPower: string;
1238
+ workerAddress: string;
1239
+ workerPubkeyBytes: string;
1240
+ }
1241
+ type SuiWithdrawFrom = 'sender' | 'sponsor';
1242
+ type SuiWithdrawalTypeArg = {
1243
+ balance: string;
1244
+ };
1245
+ interface CoinSupply {
1246
+ value: string;
1247
+ }
1248
+ interface SuiTransactionBlock {
1249
+ data: TransactionBlockData;
1250
+ txSignatures: string[];
1251
+ }
1252
+ interface TransactionBlockBytes {
1253
+ /** the gas objects to be used */
1254
+ gas: SuiObjectRef[];
1255
+ /** objects to be used in this transaction */
1256
+ inputObjects: InputObjectKind[];
1257
+ /** BCS serialized transaction data bytes without its type tag, as base-64 encoded string. */
1258
+ txBytes: string;
1259
+ }
1260
+ type TransactionBlockData = {
1261
+ gasData: SuiGasData;
1262
+ messageVersion: 'v1';
1263
+ sender: string;
1264
+ transaction: SuiTransactionBlockKind;
1265
+ };
1266
+ type TransactionEffects = /** The response from processing a transaction or a certified transaction */
1267
+ {
1268
+ /** The abort error populated if the transaction failed with an abort code. */
1269
+ abortError?: SuiMoveAbort | null;
1270
+ accumulatorEvents?: AccumulatorEvent[];
1271
+ /** ObjectRef and owner of new objects created. */
1272
+ created?: OwnedObjectRef[];
1273
+ /** Object Refs of objects now deleted (the old refs). */
1274
+ deleted?: SuiObjectRef[];
1275
+ /** The set of transaction digests this transaction depends on. */
1276
+ dependencies?: string[];
1277
+ /**
1278
+ * The digest of the events emitted during execution, can be None if the transaction does not emit any
1279
+ * event.
1280
+ */
1281
+ eventsDigest?: string | null;
1282
+ /** The epoch when this transaction was executed. */
1283
+ executedEpoch: string;
1284
+ /**
1285
+ * The updated gas object reference. Have a dedicated field for convenient access. It's also included
1286
+ * in mutated.
1287
+ */
1288
+ gasObject: OwnedObjectRef;
1289
+ gasUsed: GasCostSummary;
1290
+ messageVersion: 'v1';
1291
+ /**
1292
+ * The version that every modified (mutated or deleted) object had before it was modified by this
1293
+ * transaction.
1294
+ */
1295
+ modifiedAtVersions?: TransactionBlockEffectsModifiedAtVersions[];
1296
+ /** ObjectRef and owner of mutated objects, including gas object. */
1297
+ mutated?: OwnedObjectRef[];
1298
+ /**
1299
+ * The object references of the shared objects used in this transaction. Empty if no shared objects
1300
+ * were used.
1301
+ */
1302
+ sharedObjects?: SuiObjectRef[];
1303
+ /** The status of the execution */
1304
+ status: ExecutionStatus;
1305
+ /** The transaction digest */
1306
+ transactionDigest: string;
1307
+ /**
1308
+ * ObjectRef and owner of objects that are unwrapped in this transaction. Unwrapped objects are objects
1309
+ * that were wrapped into other objects in the past, and just got extracted out.
1310
+ */
1311
+ unwrapped?: OwnedObjectRef[];
1312
+ /** Object refs of objects previously wrapped in other objects but now deleted. */
1313
+ unwrappedThenDeleted?: SuiObjectRef[];
1314
+ /** Object refs of objects now wrapped in other objects. */
1315
+ wrapped?: SuiObjectRef[];
1316
+ };
1317
+ interface TransactionBlockEffectsModifiedAtVersions {
1318
+ objectId: string;
1319
+ sequenceNumber: string;
1320
+ }
1321
+ type SuiTransactionBlockKind = /** A system transaction that will update epoch information on-chain. */
1322
+ {
1323
+ computation_charge: string;
1324
+ epoch: string;
1325
+ epoch_start_timestamp_ms: string;
1326
+ kind: 'ChangeEpoch';
1327
+ storage_charge: string;
1328
+ storage_rebate: string;
1329
+ } /** A system transaction used for initializing the initial state of the chain. */ | {
1330
+ kind: 'Genesis';
1331
+ objects: string[];
1332
+ } /** A system transaction marking the start of a series of transactions scheduled as part of a checkpoint */ | {
1333
+ commit_timestamp_ms: string;
1334
+ epoch: string;
1335
+ kind: 'ConsensusCommitPrologue';
1336
+ round: string;
1337
+ } /** A series of transactions where the results of one transaction can be used in future transactions */ | {
1338
+ /** Input objects or primitive values */
1339
+ inputs: SuiCallArg[];
1340
+ kind: 'ProgrammableTransaction';
1341
+ /**
1342
+ * The transactions to be executed sequentially. A failure in any transaction will result in the
1343
+ * failure of the entire programmable transaction block.
1344
+ */
1345
+ transactions: SuiTransaction[];
1346
+ } /** A transaction which updates global authenticator state */ | {
1347
+ epoch: string;
1348
+ kind: 'AuthenticatorStateUpdate';
1349
+ new_active_jwks: SuiActiveJwk[];
1350
+ round: string;
1351
+ } /** A transaction which updates global randomness state */ | {
1352
+ epoch: string;
1353
+ kind: 'RandomnessStateUpdate';
1354
+ random_bytes: number[];
1355
+ randomness_round: string;
1356
+ } /** The transaction which occurs only at the end of the epoch */ | {
1357
+ kind: 'EndOfEpochTransaction';
1358
+ transactions: SuiEndOfEpochTransactionKind[];
1359
+ } | {
1360
+ commit_timestamp_ms: string;
1361
+ consensus_commit_digest: string;
1362
+ epoch: string;
1363
+ kind: 'ConsensusCommitPrologueV2';
1364
+ round: string;
1365
+ } | {
1366
+ commit_timestamp_ms: string;
1367
+ consensus_commit_digest: string;
1368
+ consensus_determined_version_assignments: ConsensusDeterminedVersionAssignments;
1369
+ epoch: string;
1370
+ kind: 'ConsensusCommitPrologueV3';
1371
+ round: string;
1372
+ sub_dag_index?: string | null;
1373
+ } | {
1374
+ additional_state_digest: string;
1375
+ commit_timestamp_ms: string;
1376
+ consensus_commit_digest: string;
1377
+ consensus_determined_version_assignments: ConsensusDeterminedVersionAssignments;
1378
+ epoch: string;
1379
+ kind: 'ConsensusCommitPrologueV4';
1380
+ round: string;
1381
+ sub_dag_index?: string | null;
1382
+ } /** A series of commands where the results of one command can be used in future commands */ | {
1383
+ /** Input objects or primitive values */
1384
+ inputs: SuiCallArg[];
1385
+ kind: 'ProgrammableSystemTransaction';
1386
+ /**
1387
+ * The transactions to be executed sequentially. A failure in any transaction will result in the
1388
+ * failure of the entire programmable transaction block.
1389
+ */
1390
+ transactions: SuiTransaction[];
1391
+ };
1392
+ interface SuiTransactionBlockResponse {
1393
+ balanceChanges?: BalanceChange[] | null;
1394
+ /**
1395
+ * The checkpoint number when this transaction was included and hence finalized. This is only returned
1396
+ * in the read api, not in the transaction execution api.
1397
+ */
1398
+ checkpoint?: string | null;
1399
+ confirmedLocalExecution?: boolean | null;
1400
+ digest: string;
1401
+ effects?: TransactionEffects | null;
1402
+ errors?: string[];
1403
+ events?: SuiEvent[] | null;
1404
+ objectChanges?: SuiObjectChange[] | null;
1405
+ rawEffects?: number[];
1406
+ /**
1407
+ * BCS encoded [SenderSignedData] that includes input object references returns empty array if
1408
+ * `show_raw_transaction` is false
1409
+ */
1410
+ rawTransaction?: string;
1411
+ timestampMs?: string | null;
1412
+ /** Transaction input data */
1413
+ transaction?: SuiTransactionBlock | null;
1414
+ }
1415
+ interface SuiTransactionBlockResponseOptions {
1416
+ /** Whether to show balance_changes. Default to be False */
1417
+ showBalanceChanges?: boolean;
1418
+ /** Whether to show transaction effects. Default to be False */
1419
+ showEffects?: boolean;
1420
+ /** Whether to show transaction events. Default to be False */
1421
+ showEvents?: boolean;
1422
+ /** Whether to show transaction input data. Default to be False */
1423
+ showInput?: boolean;
1424
+ /** Whether to show object_changes. Default to be False */
1425
+ showObjectChanges?: boolean;
1426
+ /** Whether to show raw transaction effects. Default to be False */
1427
+ showRawEffects?: boolean;
1428
+ /** Whether to show bcs-encoded transaction input data */
1429
+ showRawInput?: boolean;
1430
+ }
1431
+ interface SuiTransactionBlockResponseQuery {
1432
+ /** If None, no filter will be applied */
1433
+ filter?: TransactionFilter | null;
1434
+ /** config which fields to include in the response, by default only digest is included */
1435
+ options?: SuiTransactionBlockResponseOptions | null;
1436
+ }
1437
+ type TransactionFilter = /** CURRENTLY NOT SUPPORTED. Query by checkpoint. */
1438
+ {
1439
+ Checkpoint: string;
1440
+ } /** Query by move function. */ | {
1441
+ MoveFunction: {
1442
+ function?: string | null;
1443
+ module?: string | null;
1444
+ package: string;
1445
+ };
1446
+ } /** Query by input object. */ | {
1447
+ InputObject: string;
1448
+ } /** Query by changed object, including created, mutated and unwrapped objects. */ | {
1449
+ ChangedObject: string;
1450
+ } /** Query for transactions that touch this object. */ | {
1451
+ AffectedObject: string;
1452
+ } /** Query by sender address. */ | {
1453
+ FromAddress: string;
1454
+ } /** Query by recipient address. */ | {
1455
+ ToAddress: string;
1456
+ } /** Query by sender and recipient address. */ | {
1457
+ FromAndToAddress: {
1458
+ from: string;
1459
+ to: string;
1460
+ };
1461
+ } /** CURRENTLY NOT SUPPORTED. Query txs that have a given address as sender or recipient. */ | {
1462
+ FromOrToAddress: {
1463
+ addr: string;
1464
+ };
1465
+ } /** Query by transaction kind */ | {
1466
+ TransactionKind: string;
1467
+ } /** Query transactions of any given kind in the input. */ | {
1468
+ TransactionKindIn: string[];
1469
+ };
1470
+ interface TransferObjectParams {
1471
+ objectId: string;
1472
+ recipient: string;
1473
+ }
1474
+ /** Identifies a struct and the module it was defined in */
1475
+ interface TypeOrigin {
1476
+ datatype_name: string;
1477
+ module_name: string;
1478
+ package: string;
1479
+ }
1480
+ /** Upgraded package info for the linkage table */
1481
+ interface UpgradeInfo {
1482
+ /** ID of the upgraded packages */
1483
+ upgraded_id: string;
1484
+ /** Version of the upgraded package */
1485
+ upgraded_version: string;
1486
+ }
1487
+ interface ValidatorApy {
1488
+ address: string;
1489
+ apy: number;
1490
+ }
1491
+ interface ValidatorsApy {
1492
+ apys: ValidatorApy[];
1493
+ epoch: string;
1494
+ }
1495
+ /** An zk login authenticator with all the necessary fields. */
1496
+ interface ZkLoginAuthenticator {
1497
+ inputs: ZkLoginInputs;
1498
+ maxEpoch: string;
1499
+ userSignature: Signature;
1500
+ }
1501
+ /** All inputs required for the zk login proof verification and other public inputs. */
1502
+ interface ZkLoginInputs {
1503
+ addressSeed: string;
1504
+ headerBase64: string;
1505
+ issBase64Details: Claim;
1506
+ proofPoints: ZkLoginProof;
1507
+ }
1508
+ type ZkLoginIntentScope = 'TransactionData' | 'PersonalMessage';
1509
+ /** The struct for zk login proof. */
1510
+ interface ZkLoginProof {
1511
+ a: string[];
1512
+ b: string[][];
1513
+ c: string[];
1514
+ }
1515
+ interface ZkLoginVerifyResult {
1516
+ /** The errors field captures any verification error */
1517
+ errors: string[];
1518
+ /** The boolean result of the verification. If true, errors should be empty. */
1519
+ success: boolean;
1520
+ }
1521
+ //#endregion
1522
+ export { AccumulatorEvent, AccumulatorOperation, AccumulatorValue, Balance, BalanceChange, Checkpoint, CheckpointCommitment, CheckpointId, Claim, CoinMetadata, CoinStruct, CoinSupply, CommitteeInfo, CompressedSignature, ConsensusDeterminedVersionAssignments, DelegatedStake, DevInspectArgs, DevInspectResults, DisplayFieldsResponse, DryRunTransactionBlockResponse, DynamicFieldInfo, DynamicFieldName, DynamicFieldType, ECMHLiveObjectSetDigest, EndOfEpochData, EventId, ExecuteTransactionRequestType, ExecutionStatus, GasCostSummary, GetPastObjectRequest, InputObjectKind, MoveCallParams, MoveCallSuiTransaction, MoveStruct, MoveValue, MoveVariant, MultiSig, MultiSigLegacy, MultiSigPublicKey, MultiSigPublicKeyLegacy, ObjectOwner, ObjectRead, ObjectResponseError, ObjectValueKind, OwnedObjectRef, PaginatedCheckpoints, PaginatedCoins, PaginatedDynamicFieldInfos, PaginatedEvents, PaginatedObjectsResponse, PaginatedStrings, PaginatedTransactionResponse, PasskeyAuthenticator, ProtocolConfig, ProtocolConfigValue, PublicKey, RPCTransactionRequestParams, RawData, Signature, StakeObject, SuiActiveJwk, SuiArgument, SuiAuthenticatorStateExpire, SuiCallArg, SuiChangeEpoch, SuiEndOfEpochTransactionKind, SuiEvent, SuiEventFilter, SuiExecutionResult, SuiGasData, SuiJWK, SuiJwkId, SuiMoveAbility, SuiMoveAbilitySet, SuiMoveAbort, SuiMoveFunctionArgType, SuiMoveModuleId, SuiMoveNormalizedEnum, SuiMoveNormalizedField, SuiMoveNormalizedFunction, SuiMoveNormalizedModule, SuiMoveNormalizedStruct, SuiMoveNormalizedType, SuiMoveStructTypeParameter, SuiMoveVisibility, SuiObjectChange, SuiObjectData, SuiObjectDataFilter, SuiObjectDataOptions, SuiObjectRef, SuiObjectResponse, SuiObjectResponseQuery, SuiParsedData, SuiReservation, SuiSystemStateSummary, SuiTransaction, SuiTransactionBlock, SuiTransactionBlockBuilderMode, SuiTransactionBlockKind, SuiTransactionBlockResponse, SuiTransactionBlockResponseOptions, SuiTransactionBlockResponseQuery, SuiValidatorSummary, SuiWithdrawFrom, SuiWithdrawalTypeArg, TransactionBlockBytes, TransactionBlockData, TransactionBlockEffectsModifiedAtVersions, TransactionEffects, TransactionFilter, TransferObjectParams, TypeOrigin, UpgradeInfo, ValidatorApy, ValidatorsApy, ZkLoginAuthenticator, ZkLoginInputs, ZkLoginIntentScope, ZkLoginProof, ZkLoginVerifyResult };
1523
+ //# sourceMappingURL=generated.d.mts.map