@haneullabs/haneul 0.1.0 → 2.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1676) hide show
  1. package/CHANGELOG.md +339 -113
  2. package/README.md +107 -77
  3. package/dist/_virtual/rolldown_runtime.mjs +18 -0
  4. package/dist/bcs/bcs.d.mts +27 -0
  5. package/dist/bcs/bcs.d.mts.map +1 -0
  6. package/dist/bcs/bcs.mjs +293 -0
  7. package/dist/bcs/bcs.mjs.map +1 -0
  8. package/dist/bcs/effects.mjs +224 -0
  9. package/dist/bcs/effects.mjs.map +1 -0
  10. package/dist/bcs/index.d.mts +3051 -0
  11. package/dist/bcs/index.d.mts.map +1 -0
  12. package/dist/bcs/index.mjs +62 -0
  13. package/dist/bcs/index.mjs.map +1 -0
  14. package/dist/bcs/pure.d.mts +26 -0
  15. package/dist/bcs/pure.d.mts.map +1 -0
  16. package/dist/bcs/pure.mjs +29 -0
  17. package/dist/bcs/pure.mjs.map +1 -0
  18. package/dist/bcs/type-tag-serializer.d.mts +12 -0
  19. package/dist/bcs/type-tag-serializer.d.mts.map +1 -0
  20. package/dist/bcs/type-tag-serializer.mjs +57 -0
  21. package/dist/bcs/type-tag-serializer.mjs.map +1 -0
  22. package/dist/bcs/types.d.mts +40 -0
  23. package/dist/bcs/types.d.mts.map +1 -0
  24. package/dist/client/cache.d.mts +19 -0
  25. package/dist/client/cache.d.mts.map +1 -0
  26. package/dist/client/cache.mjs +48 -0
  27. package/dist/client/cache.mjs.map +1 -0
  28. package/dist/client/client.d.mts +21 -0
  29. package/dist/client/client.d.mts.map +1 -0
  30. package/dist/client/client.mjs +30 -0
  31. package/dist/client/client.mjs.map +1 -0
  32. package/dist/client/core-resolver.d.mts +9 -0
  33. package/dist/client/core-resolver.d.mts.map +1 -0
  34. package/dist/client/core-resolver.mjs +249 -0
  35. package/dist/client/core-resolver.mjs.map +1 -0
  36. package/dist/client/core.d.mts +48 -0
  37. package/dist/client/core.d.mts.map +1 -0
  38. package/dist/client/core.mjs +120 -0
  39. package/dist/client/core.mjs.map +1 -0
  40. package/dist/client/errors.d.mts +15 -0
  41. package/dist/client/errors.d.mts.map +1 -0
  42. package/dist/client/errors.mjs +28 -0
  43. package/dist/client/errors.mjs.map +1 -0
  44. package/dist/client/index.d.mts +8 -0
  45. package/dist/client/index.mjs +7 -0
  46. package/dist/client/mvr.d.mts +12 -0
  47. package/dist/client/mvr.d.mts.map +1 -0
  48. package/dist/client/mvr.mjs +250 -0
  49. package/dist/client/mvr.mjs.map +1 -0
  50. package/dist/client/transaction-resolver.mjs +405 -0
  51. package/dist/client/transaction-resolver.mjs.map +1 -0
  52. package/dist/client/types.d.mts +720 -0
  53. package/dist/client/types.d.mts.map +1 -0
  54. package/dist/client/utils.d.mts +35 -0
  55. package/dist/client/utils.d.mts.map +1 -0
  56. package/dist/client/utils.mjs +387 -0
  57. package/dist/client/utils.mjs.map +1 -0
  58. package/dist/cryptography/index.d.mts +7 -0
  59. package/dist/cryptography/index.mjs +8 -0
  60. package/dist/cryptography/intent.d.mts +11 -0
  61. package/dist/cryptography/intent.d.mts.map +1 -0
  62. package/dist/cryptography/intent.mjs +20 -0
  63. package/dist/cryptography/intent.mjs.map +1 -0
  64. package/dist/cryptography/keypair.d.mts +83 -0
  65. package/dist/cryptography/keypair.d.mts.map +1 -0
  66. package/dist/cryptography/keypair.mjs +96 -0
  67. package/dist/cryptography/keypair.mjs.map +1 -0
  68. package/dist/cryptography/mnemonics.d.mts +31 -0
  69. package/dist/cryptography/mnemonics.d.mts.map +1 -0
  70. package/dist/cryptography/mnemonics.mjs +45 -0
  71. package/dist/cryptography/mnemonics.mjs.map +1 -0
  72. package/dist/cryptography/publickey.d.mts +65 -0
  73. package/dist/cryptography/publickey.d.mts.map +1 -0
  74. package/dist/cryptography/publickey.mjs +105 -0
  75. package/dist/cryptography/publickey.mjs.map +1 -0
  76. package/dist/cryptography/signature-scheme.d.mts +28 -0
  77. package/dist/cryptography/signature-scheme.d.mts.map +1 -0
  78. package/dist/cryptography/signature-scheme.mjs +27 -0
  79. package/dist/cryptography/signature-scheme.mjs.map +1 -0
  80. package/dist/cryptography/signature.d.mts +75 -0
  81. package/dist/cryptography/signature.d.mts.map +1 -0
  82. package/dist/cryptography/signature.mjs +46 -0
  83. package/dist/cryptography/signature.mjs.map +1 -0
  84. package/dist/faucet/faucet.d.mts +25 -0
  85. package/dist/faucet/faucet.d.mts.map +1 -0
  86. package/dist/faucet/faucet.mjs +42 -0
  87. package/dist/faucet/faucet.mjs.map +1 -0
  88. package/dist/faucet/index.d.mts +2 -0
  89. package/dist/faucet/index.mjs +3 -0
  90. package/dist/graphql/client.d.mts +87 -0
  91. package/dist/graphql/client.d.mts.map +1 -0
  92. package/dist/graphql/client.mjs +118 -0
  93. package/dist/graphql/client.mjs.map +1 -0
  94. package/dist/graphql/core.d.mts +38 -0
  95. package/dist/graphql/core.d.mts.map +1 -0
  96. package/dist/graphql/core.mjs +640 -0
  97. package/dist/graphql/core.mjs.map +1 -0
  98. package/dist/graphql/generated/queries.d.mts +14 -0
  99. package/dist/graphql/generated/queries.d.mts.map +1 -0
  100. package/dist/graphql/generated/queries.mjs +812 -0
  101. package/dist/graphql/generated/queries.mjs.map +1 -0
  102. package/dist/graphql/generated/tada-env.d.mts +11244 -0
  103. package/dist/graphql/generated/tada-env.d.mts.map +1 -0
  104. package/dist/graphql/index.d.mts +2 -0
  105. package/dist/graphql/index.mjs +3 -0
  106. package/dist/graphql/schema/index.d.mts +13 -0
  107. package/dist/graphql/schema/index.d.mts.map +1 -0
  108. package/dist/graphql/schema/index.mjs +8 -0
  109. package/dist/graphql/schema/index.mjs.map +1 -0
  110. package/dist/graphql/types.d.mts +75 -0
  111. package/dist/graphql/types.d.mts.map +1 -0
  112. package/dist/grpc/client.d.mts +63 -0
  113. package/dist/grpc/client.d.mts.map +1 -0
  114. package/dist/grpc/client.mjs +105 -0
  115. package/dist/grpc/client.mjs.map +1 -0
  116. package/dist/grpc/core.d.mts +40 -0
  117. package/dist/grpc/core.d.mts.map +1 -0
  118. package/dist/grpc/core.mjs +810 -0
  119. package/dist/grpc/core.mjs.map +1 -0
  120. package/dist/grpc/index.d.mts +4 -0
  121. package/dist/grpc/index.mjs +5 -0
  122. package/dist/grpc/proto/google/protobuf/any.d.mts +173 -0
  123. package/dist/grpc/proto/google/protobuf/any.d.mts.map +1 -0
  124. package/dist/grpc/proto/google/protobuf/any.mjs +101 -0
  125. package/dist/grpc/proto/google/protobuf/any.mjs.map +1 -0
  126. package/dist/grpc/proto/google/protobuf/duration.d.mts +106 -0
  127. package/dist/grpc/proto/google/protobuf/duration.d.mts.map +1 -0
  128. package/dist/grpc/proto/google/protobuf/duration.mjs +62 -0
  129. package/dist/grpc/proto/google/protobuf/duration.mjs.map +1 -0
  130. package/dist/grpc/proto/google/protobuf/field_mask.d.mts +233 -0
  131. package/dist/grpc/proto/google/protobuf/field_mask.d.mts.map +1 -0
  132. package/dist/grpc/proto/google/protobuf/field_mask.mjs +46 -0
  133. package/dist/grpc/proto/google/protobuf/field_mask.mjs.map +1 -0
  134. package/dist/grpc/proto/google/protobuf/struct.d.mts +171 -0
  135. package/dist/grpc/proto/google/protobuf/struct.d.mts.map +1 -0
  136. package/dist/grpc/proto/google/protobuf/struct.mjs +208 -0
  137. package/dist/grpc/proto/google/protobuf/struct.mjs.map +1 -0
  138. package/dist/grpc/proto/google/protobuf/timestamp.d.mts +147 -0
  139. package/dist/grpc/proto/google/protobuf/timestamp.d.mts.map +1 -0
  140. package/dist/grpc/proto/google/protobuf/timestamp.mjs +87 -0
  141. package/dist/grpc/proto/google/protobuf/timestamp.mjs.map +1 -0
  142. package/dist/grpc/proto/google/rpc/status.d.mts +51 -0
  143. package/dist/grpc/proto/google/rpc/status.d.mts.map +1 -0
  144. package/dist/grpc/proto/google/rpc/status.mjs +37 -0
  145. package/dist/grpc/proto/google/rpc/status.mjs.map +1 -0
  146. package/dist/grpc/proto/haneul/rpc/v2/argument.d.mts +71 -0
  147. package/dist/grpc/proto/haneul/rpc/v2/argument.d.mts.map +1 -0
  148. package/dist/grpc/proto/haneul/rpc/v2/argument.mjs +74 -0
  149. package/dist/grpc/proto/haneul/rpc/v2/argument.mjs.map +1 -0
  150. package/dist/grpc/proto/haneul/rpc/v2/balance_change.d.mts +39 -0
  151. package/dist/grpc/proto/haneul/rpc/v2/balance_change.d.mts.map +1 -0
  152. package/dist/grpc/proto/haneul/rpc/v2/balance_change.mjs +38 -0
  153. package/dist/grpc/proto/haneul/rpc/v2/balance_change.mjs.map +1 -0
  154. package/dist/grpc/proto/haneul/rpc/v2/bcs.d.mts +35 -0
  155. package/dist/grpc/proto/haneul/rpc/v2/bcs.d.mts.map +1 -0
  156. package/dist/grpc/proto/haneul/rpc/v2/bcs.mjs +28 -0
  157. package/dist/grpc/proto/haneul/rpc/v2/bcs.mjs.map +1 -0
  158. package/dist/grpc/proto/haneul/rpc/v2/checkpoint.d.mts +73 -0
  159. package/dist/grpc/proto/haneul/rpc/v2/checkpoint.d.mts.map +1 -0
  160. package/dist/grpc/proto/haneul/rpc/v2/checkpoint.mjs +68 -0
  161. package/dist/grpc/proto/haneul/rpc/v2/checkpoint.mjs.map +1 -0
  162. package/dist/grpc/proto/haneul/rpc/v2/checkpoint_contents.d.mts +104 -0
  163. package/dist/grpc/proto/haneul/rpc/v2/checkpoint_contents.d.mts.map +1 -0
  164. package/dist/grpc/proto/haneul/rpc/v2/checkpoint_contents.mjs +100 -0
  165. package/dist/grpc/proto/haneul/rpc/v2/checkpoint_contents.mjs.map +1 -0
  166. package/dist/grpc/proto/haneul/rpc/v2/checkpoint_summary.d.mts +200 -0
  167. package/dist/grpc/proto/haneul/rpc/v2/checkpoint_summary.d.mts.map +1 -0
  168. package/dist/grpc/proto/haneul/rpc/v2/checkpoint_summary.mjs +180 -0
  169. package/dist/grpc/proto/haneul/rpc/v2/checkpoint_summary.mjs.map +1 -0
  170. package/dist/grpc/proto/haneul/rpc/v2/effects.d.mts +398 -0
  171. package/dist/grpc/proto/haneul/rpc/v2/effects.d.mts.map +1 -0
  172. package/dist/grpc/proto/haneul/rpc/v2/effects.mjs +438 -0
  173. package/dist/grpc/proto/haneul/rpc/v2/effects.mjs.map +1 -0
  174. package/dist/grpc/proto/haneul/rpc/v2/epoch.d.mts +67 -0
  175. package/dist/grpc/proto/haneul/rpc/v2/epoch.d.mts.map +1 -0
  176. package/dist/grpc/proto/haneul/rpc/v2/epoch.mjs +83 -0
  177. package/dist/grpc/proto/haneul/rpc/v2/epoch.mjs.map +1 -0
  178. package/dist/grpc/proto/haneul/rpc/v2/error_reason.d.mts +21 -0
  179. package/dist/grpc/proto/haneul/rpc/v2/error_reason.d.mts.map +1 -0
  180. package/dist/grpc/proto/haneul/rpc/v2/error_reason.mjs +23 -0
  181. package/dist/grpc/proto/haneul/rpc/v2/error_reason.mjs.map +1 -0
  182. package/dist/grpc/proto/haneul/rpc/v2/event.d.mts +93 -0
  183. package/dist/grpc/proto/haneul/rpc/v2/event.d.mts.map +1 -0
  184. package/dist/grpc/proto/haneul/rpc/v2/event.mjs +89 -0
  185. package/dist/grpc/proto/haneul/rpc/v2/event.mjs.map +1 -0
  186. package/dist/grpc/proto/haneul/rpc/v2/executed_transaction.d.mts +85 -0
  187. package/dist/grpc/proto/haneul/rpc/v2/executed_transaction.d.mts.map +1 -0
  188. package/dist/grpc/proto/haneul/rpc/v2/executed_transaction.mjs +83 -0
  189. package/dist/grpc/proto/haneul/rpc/v2/executed_transaction.mjs.map +1 -0
  190. package/dist/grpc/proto/haneul/rpc/v2/execution_status.d.mts +914 -0
  191. package/dist/grpc/proto/haneul/rpc/v2/execution_status.d.mts.map +1 -0
  192. package/dist/grpc/proto/haneul/rpc/v2/execution_status.mjs +916 -0
  193. package/dist/grpc/proto/haneul/rpc/v2/execution_status.mjs.map +1 -0
  194. package/dist/grpc/proto/haneul/rpc/v2/gas_cost_summary.d.mts +46 -0
  195. package/dist/grpc/proto/haneul/rpc/v2/gas_cost_summary.d.mts.map +1 -0
  196. package/dist/grpc/proto/haneul/rpc/v2/gas_cost_summary.mjs +49 -0
  197. package/dist/grpc/proto/haneul/rpc/v2/gas_cost_summary.mjs.map +1 -0
  198. package/dist/grpc/proto/haneul/rpc/v2/input.d.mts +190 -0
  199. package/dist/grpc/proto/haneul/rpc/v2/input.d.mts.map +1 -0
  200. package/dist/grpc/proto/haneul/rpc/v2/input.mjs +196 -0
  201. package/dist/grpc/proto/haneul/rpc/v2/input.mjs.map +1 -0
  202. package/dist/grpc/proto/haneul/rpc/v2/jwk.d.mts +75 -0
  203. package/dist/grpc/proto/haneul/rpc/v2/jwk.d.mts.map +1 -0
  204. package/dist/grpc/proto/haneul/rpc/v2/jwk.mjs +66 -0
  205. package/dist/grpc/proto/haneul/rpc/v2/jwk.mjs.map +1 -0
  206. package/dist/grpc/proto/haneul/rpc/v2/ledger_service.client.d.mts +87 -0
  207. package/dist/grpc/proto/haneul/rpc/v2/ledger_service.client.d.mts.map +1 -0
  208. package/dist/grpc/proto/haneul/rpc/v2/ledger_service.client.mjs +70 -0
  209. package/dist/grpc/proto/haneul/rpc/v2/ledger_service.client.mjs.map +1 -0
  210. package/dist/grpc/proto/haneul/rpc/v2/ledger_service.d.mts +424 -0
  211. package/dist/grpc/proto/haneul/rpc/v2/ledger_service.d.mts.map +1 -0
  212. package/dist/grpc/proto/haneul/rpc/v2/ledger_service.mjs +411 -0
  213. package/dist/grpc/proto/haneul/rpc/v2/ledger_service.mjs.map +1 -0
  214. package/dist/grpc/proto/haneul/rpc/v2/move_package.d.mts +584 -0
  215. package/dist/grpc/proto/haneul/rpc/v2/move_package.d.mts.map +1 -0
  216. package/dist/grpc/proto/haneul/rpc/v2/move_package.mjs +574 -0
  217. package/dist/grpc/proto/haneul/rpc/v2/move_package.mjs.map +1 -0
  218. package/dist/grpc/proto/haneul/rpc/v2/move_package_service.client.d.mts +59 -0
  219. package/dist/grpc/proto/haneul/rpc/v2/move_package_service.client.d.mts.map +1 -0
  220. package/dist/grpc/proto/haneul/rpc/v2/move_package_service.client.mjs +47 -0
  221. package/dist/grpc/proto/haneul/rpc/v2/move_package_service.client.mjs.map +1 -0
  222. package/dist/grpc/proto/haneul/rpc/v2/move_package_service.d.mts +232 -0
  223. package/dist/grpc/proto/haneul/rpc/v2/move_package_service.d.mts.map +1 -0
  224. package/dist/grpc/proto/haneul/rpc/v2/move_package_service.mjs +231 -0
  225. package/dist/grpc/proto/haneul/rpc/v2/move_package_service.mjs.map +1 -0
  226. package/dist/grpc/proto/haneul/rpc/v2/name_service.client.d.mts +43 -0
  227. package/dist/grpc/proto/haneul/rpc/v2/name_service.client.d.mts.map +1 -0
  228. package/dist/grpc/proto/haneul/rpc/v2/name_service.client.mjs +33 -0
  229. package/dist/grpc/proto/haneul/rpc/v2/name_service.client.mjs.map +1 -0
  230. package/dist/grpc/proto/haneul/rpc/v2/name_service.d.mts +149 -0
  231. package/dist/grpc/proto/haneul/rpc/v2/name_service.d.mts.map +1 -0
  232. package/dist/grpc/proto/haneul/rpc/v2/name_service.mjs +135 -0
  233. package/dist/grpc/proto/haneul/rpc/v2/name_service.mjs.map +1 -0
  234. package/dist/grpc/proto/haneul/rpc/v2/object.d.mts +132 -0
  235. package/dist/grpc/proto/haneul/rpc/v2/object.d.mts.map +1 -0
  236. package/dist/grpc/proto/haneul/rpc/v2/object.mjs +125 -0
  237. package/dist/grpc/proto/haneul/rpc/v2/object.mjs.map +1 -0
  238. package/dist/grpc/proto/haneul/rpc/v2/object_reference.d.mts +39 -0
  239. package/dist/grpc/proto/haneul/rpc/v2/object_reference.d.mts.map +1 -0
  240. package/dist/grpc/proto/haneul/rpc/v2/object_reference.mjs +39 -0
  241. package/dist/grpc/proto/haneul/rpc/v2/object_reference.mjs.map +1 -0
  242. package/dist/grpc/proto/haneul/rpc/v2/owner.d.mts +66 -0
  243. package/dist/grpc/proto/haneul/rpc/v2/owner.d.mts.map +1 -0
  244. package/dist/grpc/proto/haneul/rpc/v2/owner.mjs +69 -0
  245. package/dist/grpc/proto/haneul/rpc/v2/owner.mjs.map +1 -0
  246. package/dist/grpc/proto/haneul/rpc/v2/protocol_config.d.mts +35 -0
  247. package/dist/grpc/proto/haneul/rpc/v2/protocol_config.d.mts.map +1 -0
  248. package/dist/grpc/proto/haneul/rpc/v2/protocol_config.mjs +45 -0
  249. package/dist/grpc/proto/haneul/rpc/v2/protocol_config.mjs.map +1 -0
  250. package/dist/grpc/proto/haneul/rpc/v2/signature.d.mts +635 -0
  251. package/dist/grpc/proto/haneul/rpc/v2/signature.d.mts.map +1 -0
  252. package/dist/grpc/proto/haneul/rpc/v2/signature.mjs +573 -0
  253. package/dist/grpc/proto/haneul/rpc/v2/signature.mjs.map +1 -0
  254. package/dist/grpc/proto/haneul/rpc/v2/signature_scheme.d.mts +44 -0
  255. package/dist/grpc/proto/haneul/rpc/v2/signature_scheme.d.mts.map +1 -0
  256. package/dist/grpc/proto/haneul/rpc/v2/signature_scheme.mjs +46 -0
  257. package/dist/grpc/proto/haneul/rpc/v2/signature_scheme.mjs.map +1 -0
  258. package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.client.d.mts +39 -0
  259. package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.client.d.mts.map +1 -0
  260. package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.client.mjs +28 -0
  261. package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.client.mjs.map +1 -0
  262. package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.d.mts +84 -0
  263. package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.d.mts.map +1 -0
  264. package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.mjs +77 -0
  265. package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.mjs.map +1 -0
  266. package/dist/grpc/proto/haneul/rpc/v2/state_service.client.d.mts +67 -0
  267. package/dist/grpc/proto/haneul/rpc/v2/state_service.client.d.mts.map +1 -0
  268. package/dist/grpc/proto/haneul/rpc/v2/state_service.client.mjs +54 -0
  269. package/dist/grpc/proto/haneul/rpc/v2/state_service.client.mjs.map +1 -0
  270. package/dist/grpc/proto/haneul/rpc/v2/state_service.d.mts +709 -0
  271. package/dist/grpc/proto/haneul/rpc/v2/state_service.d.mts.map +1 -0
  272. package/dist/grpc/proto/haneul/rpc/v2/state_service.mjs +672 -0
  273. package/dist/grpc/proto/haneul/rpc/v2/state_service.mjs.map +1 -0
  274. package/dist/grpc/proto/haneul/rpc/v2/subscription_service.client.d.mts +59 -0
  275. package/dist/grpc/proto/haneul/rpc/v2/subscription_service.client.d.mts.map +1 -0
  276. package/dist/grpc/proto/haneul/rpc/v2/subscription_service.client.mjs +38 -0
  277. package/dist/grpc/proto/haneul/rpc/v2/subscription_service.client.mjs.map +1 -0
  278. package/dist/grpc/proto/haneul/rpc/v2/subscription_service.d.mts +62 -0
  279. package/dist/grpc/proto/haneul/rpc/v2/subscription_service.d.mts.map +1 -0
  280. package/dist/grpc/proto/haneul/rpc/v2/subscription_service.mjs +55 -0
  281. package/dist/grpc/proto/haneul/rpc/v2/subscription_service.mjs.map +1 -0
  282. package/dist/grpc/proto/haneul/rpc/v2/system_state.d.mts +689 -0
  283. package/dist/grpc/proto/haneul/rpc/v2/system_state.d.mts.map +1 -0
  284. package/dist/grpc/proto/haneul/rpc/v2/system_state.mjs +733 -0
  285. package/dist/grpc/proto/haneul/rpc/v2/system_state.mjs.map +1 -0
  286. package/dist/grpc/proto/haneul/rpc/v2/transaction.d.mts +1403 -0
  287. package/dist/grpc/proto/haneul/rpc/v2/transaction.d.mts.map +1 -0
  288. package/dist/grpc/proto/haneul/rpc/v2/transaction.mjs +1280 -0
  289. package/dist/grpc/proto/haneul/rpc/v2/transaction.mjs.map +1 -0
  290. package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.d.mts +43 -0
  291. package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.d.mts.map +1 -0
  292. package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.mjs +33 -0
  293. package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.mjs.map +1 -0
  294. package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.d.mts +189 -0
  295. package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.d.mts.map +1 -0
  296. package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.mjs +193 -0
  297. package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.mjs.map +1 -0
  298. package/dist/grpc/proto/types.d.mts +39 -0
  299. package/dist/grpc/proto/types.d.mts.map +1 -0
  300. package/dist/grpc/proto/types.mjs +240 -0
  301. package/dist/grpc/proto/types.mjs.map +1 -0
  302. package/dist/jsonRpc/client.d.mts +350 -0
  303. package/dist/jsonRpc/client.d.mts.map +1 -0
  304. package/dist/jsonRpc/client.mjs +710 -0
  305. package/dist/jsonRpc/client.mjs.map +1 -0
  306. package/dist/jsonRpc/core.d.mts +79 -0
  307. package/dist/jsonRpc/core.d.mts.map +1 -0
  308. package/dist/jsonRpc/core.mjs +768 -0
  309. package/dist/jsonRpc/core.mjs.map +1 -0
  310. package/dist/jsonRpc/errors.d.mts +15 -0
  311. package/dist/jsonRpc/errors.d.mts.map +1 -0
  312. package/dist/jsonRpc/errors.mjs +38 -0
  313. package/dist/jsonRpc/errors.mjs.map +1 -0
  314. package/dist/jsonRpc/http-transport.d.mts +48 -0
  315. package/dist/jsonRpc/http-transport.d.mts.map +1 -0
  316. package/dist/jsonRpc/http-transport.mjs +68 -0
  317. package/dist/jsonRpc/http-transport.mjs.map +1 -0
  318. package/dist/jsonRpc/index.d.mts +12 -0
  319. package/dist/jsonRpc/index.mjs +6 -0
  320. package/dist/jsonRpc/network.d.mts +5 -0
  321. package/dist/jsonRpc/network.d.mts.map +1 -0
  322. package/dist/jsonRpc/network.mjs +14 -0
  323. package/dist/jsonRpc/network.mjs.map +1 -0
  324. package/dist/jsonRpc/rpc-websocket-client.d.mts +26 -0
  325. package/dist/jsonRpc/rpc-websocket-client.d.mts.map +1 -0
  326. package/dist/jsonRpc/rpc-websocket-client.mjs +135 -0
  327. package/dist/jsonRpc/rpc-websocket-client.mjs.map +1 -0
  328. package/dist/jsonRpc/types/chain.d.mts +101 -0
  329. package/dist/jsonRpc/types/chain.d.mts.map +1 -0
  330. package/dist/jsonRpc/types/changes.d.mts +24 -0
  331. package/dist/jsonRpc/types/changes.d.mts.map +1 -0
  332. package/dist/jsonRpc/types/coins.d.mts +11 -0
  333. package/dist/jsonRpc/types/coins.d.mts.map +1 -0
  334. package/dist/jsonRpc/types/common.d.mts +6 -0
  335. package/dist/jsonRpc/types/common.d.mts.map +1 -0
  336. package/dist/jsonRpc/types/generated.d.mts +1523 -0
  337. package/dist/jsonRpc/types/generated.d.mts.map +1 -0
  338. package/dist/jsonRpc/types/index.d.mts +6 -0
  339. package/dist/jsonRpc/types/params.d.mts +655 -0
  340. package/dist/jsonRpc/types/params.d.mts.map +1 -0
  341. package/dist/keypairs/ed25519/ed25519-hd-key.mjs +45 -0
  342. package/dist/keypairs/ed25519/ed25519-hd-key.mjs.map +1 -0
  343. package/dist/keypairs/ed25519/index.d.mts +3 -0
  344. package/dist/keypairs/ed25519/index.mjs +4 -0
  345. package/dist/keypairs/ed25519/keypair.d.mts +79 -0
  346. package/dist/keypairs/ed25519/keypair.d.mts.map +1 -0
  347. package/dist/keypairs/ed25519/keypair.mjs +125 -0
  348. package/dist/keypairs/ed25519/keypair.mjs.map +1 -0
  349. package/dist/keypairs/ed25519/publickey.d.mts +35 -0
  350. package/dist/keypairs/ed25519/publickey.d.mts.map +1 -0
  351. package/dist/keypairs/ed25519/publickey.mjs +61 -0
  352. package/dist/keypairs/ed25519/publickey.mjs.map +1 -0
  353. package/dist/keypairs/passkey/index.d.mts +3 -0
  354. package/dist/keypairs/passkey/index.mjs +4 -0
  355. package/dist/keypairs/passkey/keypair.d.mts +116 -0
  356. package/dist/keypairs/passkey/keypair.d.mts.map +1 -0
  357. package/dist/keypairs/passkey/keypair.mjs +221 -0
  358. package/dist/keypairs/passkey/keypair.mjs.map +1 -0
  359. package/dist/keypairs/passkey/publickey.d.mts +35 -0
  360. package/dist/keypairs/passkey/publickey.d.mts.map +1 -0
  361. package/dist/keypairs/passkey/publickey.mjs +142 -0
  362. package/dist/keypairs/passkey/publickey.mjs.map +1 -0
  363. package/dist/keypairs/passkey/types.d.mts +16 -0
  364. package/dist/keypairs/passkey/types.d.mts.map +1 -0
  365. package/dist/keypairs/secp256k1/index.d.mts +3 -0
  366. package/dist/keypairs/secp256k1/index.mjs +4 -0
  367. package/dist/keypairs/secp256k1/keypair.d.mts +78 -0
  368. package/dist/keypairs/secp256k1/keypair.d.mts.map +1 -0
  369. package/dist/keypairs/secp256k1/keypair.mjs +125 -0
  370. package/dist/keypairs/secp256k1/keypair.mjs.map +1 -0
  371. package/dist/keypairs/secp256k1/publickey.d.mts +35 -0
  372. package/dist/keypairs/secp256k1/publickey.d.mts.map +1 -0
  373. package/dist/keypairs/secp256k1/publickey.mjs +61 -0
  374. package/dist/keypairs/secp256k1/publickey.mjs.map +1 -0
  375. package/dist/keypairs/secp256r1/index.d.mts +3 -0
  376. package/dist/keypairs/secp256r1/index.mjs +4 -0
  377. package/dist/keypairs/secp256r1/keypair.d.mts +78 -0
  378. package/dist/keypairs/secp256r1/keypair.d.mts.map +1 -0
  379. package/dist/keypairs/secp256r1/keypair.mjs +124 -0
  380. package/dist/keypairs/secp256r1/keypair.mjs.map +1 -0
  381. package/dist/keypairs/secp256r1/publickey.d.mts +35 -0
  382. package/dist/keypairs/secp256r1/publickey.d.mts.map +1 -0
  383. package/dist/keypairs/secp256r1/publickey.mjs +62 -0
  384. package/dist/keypairs/secp256r1/publickey.mjs.map +1 -0
  385. package/dist/multisig/index.d.mts +3 -0
  386. package/dist/multisig/index.mjs +4 -0
  387. package/dist/multisig/publickey.d.mts +119 -0
  388. package/dist/multisig/publickey.d.mts.map +1 -0
  389. package/dist/multisig/publickey.mjs +192 -0
  390. package/dist/multisig/publickey.mjs.map +1 -0
  391. package/dist/multisig/signer.d.mts +24 -0
  392. package/dist/multisig/signer.d.mts.map +1 -0
  393. package/dist/multisig/signer.mjs +53 -0
  394. package/dist/multisig/signer.mjs.map +1 -0
  395. package/dist/transactions/Arguments.d.mts +56 -0
  396. package/dist/transactions/Arguments.d.mts.map +1 -0
  397. package/dist/transactions/Arguments.mjs +15 -0
  398. package/dist/transactions/Arguments.mjs.map +1 -0
  399. package/dist/transactions/Commands.d.mts +71 -0
  400. package/dist/transactions/Commands.d.mts.map +1 -0
  401. package/dist/transactions/Commands.mjs +104 -0
  402. package/dist/transactions/Commands.mjs.map +1 -0
  403. package/dist/transactions/Inputs.d.mts +49 -0
  404. package/dist/transactions/Inputs.d.mts.map +1 -0
  405. package/dist/transactions/Inputs.mjs +66 -0
  406. package/dist/transactions/Inputs.mjs.map +1 -0
  407. package/dist/transactions/ObjectCache.d.mts +84 -0
  408. package/dist/transactions/ObjectCache.d.mts.map +1 -0
  409. package/dist/transactions/ObjectCache.mjs +173 -0
  410. package/dist/transactions/ObjectCache.mjs.map +1 -0
  411. package/dist/transactions/Transaction.d.mts +492 -0
  412. package/dist/transactions/Transaction.d.mts.map +1 -0
  413. package/dist/transactions/Transaction.mjs +520 -0
  414. package/dist/transactions/Transaction.mjs.map +1 -0
  415. package/dist/transactions/TransactionData.d.mts +61 -0
  416. package/dist/transactions/TransactionData.d.mts.map +1 -0
  417. package/dist/transactions/TransactionData.mjs +282 -0
  418. package/dist/transactions/TransactionData.mjs.map +1 -0
  419. package/dist/transactions/data/internal.d.mts +571 -0
  420. package/dist/transactions/data/internal.d.mts.map +1 -0
  421. package/dist/transactions/data/internal.mjs +197 -0
  422. package/dist/transactions/data/internal.mjs.map +1 -0
  423. package/dist/transactions/data/v1.d.mts +249 -0
  424. package/dist/transactions/data/v1.d.mts.map +1 -0
  425. package/dist/transactions/data/v1.mjs +352 -0
  426. package/dist/transactions/data/v1.mjs.map +1 -0
  427. package/dist/transactions/data/v2.d.mts +180 -0
  428. package/dist/transactions/data/v2.d.mts.map +1 -0
  429. package/dist/transactions/data/v2.mjs +100 -0
  430. package/dist/transactions/data/v2.mjs.map +1 -0
  431. package/dist/transactions/executor/caching.mjs +74 -0
  432. package/dist/transactions/executor/caching.mjs.map +1 -0
  433. package/dist/transactions/executor/parallel.d.mts +46 -0
  434. package/dist/transactions/executor/parallel.d.mts.map +1 -0
  435. package/dist/transactions/executor/parallel.mjs +304 -0
  436. package/dist/transactions/executor/parallel.mjs.map +1 -0
  437. package/dist/transactions/executor/queue.mjs +42 -0
  438. package/dist/transactions/executor/queue.mjs.map +1 -0
  439. package/dist/transactions/executor/serial.d.mts +34 -0
  440. package/dist/transactions/executor/serial.d.mts.map +1 -0
  441. package/dist/transactions/executor/serial.mjs +130 -0
  442. package/dist/transactions/executor/serial.mjs.map +1 -0
  443. package/dist/transactions/hash.mjs +20 -0
  444. package/dist/transactions/hash.mjs.map +1 -0
  445. package/dist/transactions/index.d.mts +16 -0
  446. package/dist/transactions/index.mjs +13 -0
  447. package/dist/transactions/intents/CoinWithBalance.d.mts +17 -0
  448. package/dist/transactions/intents/CoinWithBalance.d.mts.map +1 -0
  449. package/dist/transactions/intents/CoinWithBalance.mjs +193 -0
  450. package/dist/transactions/intents/CoinWithBalance.mjs.map +1 -0
  451. package/dist/transactions/object.d.mts +24 -0
  452. package/dist/transactions/object.d.mts.map +1 -0
  453. package/dist/transactions/object.mjs +55 -0
  454. package/dist/transactions/object.mjs.map +1 -0
  455. package/dist/transactions/plugins/NamedPackagesPlugin.mjs +24 -0
  456. package/dist/transactions/plugins/NamedPackagesPlugin.mjs.map +1 -0
  457. package/dist/transactions/pure.d.mts +25 -0
  458. package/dist/transactions/pure.d.mts.map +1 -0
  459. package/dist/transactions/pure.mjs +33 -0
  460. package/dist/transactions/pure.mjs.map +1 -0
  461. package/dist/transactions/resolve.d.mts +16 -0
  462. package/dist/transactions/resolve.d.mts.map +1 -0
  463. package/dist/transactions/resolve.mjs +57 -0
  464. package/dist/transactions/resolve.mjs.map +1 -0
  465. package/dist/transactions/serializer.d.mts +11 -0
  466. package/dist/transactions/serializer.d.mts.map +1 -0
  467. package/dist/transactions/serializer.mjs +107 -0
  468. package/dist/transactions/serializer.mjs.map +1 -0
  469. package/dist/transactions/utils.d.mts +9 -0
  470. package/dist/transactions/utils.d.mts.map +1 -0
  471. package/dist/transactions/utils.mjs +82 -0
  472. package/dist/transactions/utils.mjs.map +1 -0
  473. package/dist/utils/constants.d.mts +15 -0
  474. package/dist/utils/constants.d.mts.map +1 -0
  475. package/dist/utils/constants.mjs +16 -0
  476. package/dist/utils/constants.mjs.map +1 -0
  477. package/dist/utils/derived-objects.d.mts +11 -0
  478. package/dist/utils/derived-objects.d.mts.map +1 -0
  479. package/dist/utils/derived-objects.mjs +14 -0
  480. package/dist/utils/derived-objects.mjs.map +1 -0
  481. package/dist/utils/dynamic-fields.d.mts +7 -0
  482. package/dist/utils/dynamic-fields.d.mts.map +1 -0
  483. package/dist/utils/dynamic-fields.mjs +21 -0
  484. package/dist/utils/dynamic-fields.mjs.map +1 -0
  485. package/dist/utils/format.d.mts +6 -0
  486. package/dist/utils/format.d.mts.map +1 -0
  487. package/dist/utils/format.mjs +14 -0
  488. package/dist/utils/format.mjs.map +1 -0
  489. package/dist/utils/haneul-types.d.mts +31 -0
  490. package/dist/utils/haneul-types.d.mts.map +1 -0
  491. package/dist/utils/haneul-types.mjs +110 -0
  492. package/dist/utils/haneul-types.mjs.map +1 -0
  493. package/dist/utils/haneulns.d.mts +6 -0
  494. package/dist/utils/haneulns.d.mts.map +1 -0
  495. package/dist/utils/haneulns.mjs +27 -0
  496. package/dist/utils/haneulns.mjs.map +1 -0
  497. package/dist/utils/index.d.mts +10 -0
  498. package/dist/utils/index.mjs +11 -0
  499. package/dist/utils/move-registry.d.mts +9 -0
  500. package/dist/utils/move-registry.d.mts.map +1 -0
  501. package/dist/utils/move-registry.mjs +32 -0
  502. package/dist/utils/move-registry.mjs.map +1 -0
  503. package/dist/verify/index.d.mts +2 -0
  504. package/dist/verify/index.mjs +3 -0
  505. package/dist/verify/verify.d.mts +28 -0
  506. package/dist/verify/verify.d.mts.map +1 -0
  507. package/dist/verify/verify.mjs +76 -0
  508. package/dist/verify/verify.mjs.map +1 -0
  509. package/dist/version.mjs +7 -0
  510. package/dist/version.mjs.map +1 -0
  511. package/dist/zklogin/address.d.mts +22 -0
  512. package/dist/zklogin/address.d.mts.map +1 -0
  513. package/dist/zklogin/address.mjs +49 -0
  514. package/dist/zklogin/address.mjs.map +1 -0
  515. package/dist/zklogin/bcs.d.mts +34 -0
  516. package/dist/zklogin/bcs.d.mts.map +1 -0
  517. package/dist/zklogin/bcs.mjs +24 -0
  518. package/dist/zklogin/bcs.mjs.map +1 -0
  519. package/dist/zklogin/index.d.mts +9 -0
  520. package/dist/zklogin/index.mjs +9 -0
  521. package/dist/zklogin/jwt-decode.d.mts +14 -0
  522. package/dist/zklogin/jwt-decode.d.mts.map +1 -0
  523. package/dist/zklogin/jwt-decode.mjs +50 -0
  524. package/dist/zklogin/jwt-decode.mjs.map +1 -0
  525. package/dist/zklogin/jwt-utils.d.mts +13 -0
  526. package/dist/zklogin/jwt-utils.d.mts.map +1 -0
  527. package/dist/zklogin/jwt-utils.mjs +68 -0
  528. package/dist/zklogin/jwt-utils.mjs.map +1 -0
  529. package/dist/zklogin/nonce.d.mts +8 -0
  530. package/dist/zklogin/nonce.d.mts.map +1 -0
  531. package/dist/zklogin/nonce.mjs +32 -0
  532. package/dist/zklogin/nonce.mjs.map +1 -0
  533. package/dist/zklogin/poseidon.d.mts +5 -0
  534. package/dist/zklogin/poseidon.d.mts.map +1 -0
  535. package/dist/zklogin/poseidon.mjs +36 -0
  536. package/dist/zklogin/poseidon.mjs.map +1 -0
  537. package/dist/zklogin/publickey.d.mts +67 -0
  538. package/dist/zklogin/publickey.d.mts.map +1 -0
  539. package/dist/zklogin/publickey.mjs +173 -0
  540. package/dist/zklogin/publickey.mjs.map +1 -0
  541. package/dist/zklogin/signature.d.mts +31 -0
  542. package/dist/zklogin/signature.d.mts.map +1 -0
  543. package/dist/zklogin/signature.mjs +30 -0
  544. package/dist/zklogin/signature.mjs.map +1 -0
  545. package/dist/zklogin/utils.d.mts +11 -0
  546. package/dist/zklogin/utils.d.mts.map +1 -0
  547. package/dist/zklogin/utils.mjs +63 -0
  548. package/dist/zklogin/utils.mjs.map +1 -0
  549. package/package.json +199 -195
  550. package/src/bcs/bcs.ts +91 -2
  551. package/src/bcs/effects.ts +76 -11
  552. package/src/bcs/index.ts +24 -3
  553. package/src/bcs/pure.ts +0 -1
  554. package/src/bcs/types.ts +27 -3
  555. package/src/client/client.ts +73 -0
  556. package/src/client/core-resolver.ts +504 -0
  557. package/src/client/core.ts +268 -0
  558. package/src/client/errors.ts +50 -0
  559. package/src/client/index.ts +23 -16
  560. package/src/client/mvr.ts +488 -0
  561. package/src/client/transaction-resolver.ts +559 -0
  562. package/src/client/types.ts +899 -0
  563. package/src/client/utils.ts +547 -0
  564. package/src/cryptography/index.ts +3 -3
  565. package/src/cryptography/intent.ts +1 -1
  566. package/src/cryptography/keypair.ts +14 -16
  567. package/src/cryptography/publickey.ts +7 -7
  568. package/src/faucet/faucet.ts +3 -99
  569. package/src/faucet/index.ts +1 -8
  570. package/src/graphql/client.ts +131 -9
  571. package/src/graphql/core.ts +645 -154
  572. package/src/graphql/generated/queries.ts +739 -522
  573. package/src/graphql/generated/schema.graphql +4362 -0
  574. package/src/graphql/generated/tada-env.ts +13090 -0
  575. package/src/graphql/generated/tsconfig.tada.json +11 -0
  576. package/src/graphql/index.ts +1 -0
  577. package/src/graphql/queries/getAllBalances.graphql +2 -1
  578. package/src/graphql/queries/getBalance.graphql +2 -1
  579. package/src/graphql/queries/getChainIdentifier.graphql +8 -0
  580. package/src/graphql/queries/getCoinMetadata.graphql +13 -0
  581. package/src/graphql/queries/getCoins.graphql +2 -6
  582. package/src/graphql/queries/getCurrentSystemState.graphql +16 -0
  583. package/src/graphql/queries/getDynamicFields.graphql +1 -1
  584. package/src/graphql/queries/getMoveFunction.graphql +1 -1
  585. package/src/graphql/queries/nameService.graphql +4 -2
  586. package/src/graphql/queries/objects.graphql +28 -6
  587. package/src/graphql/queries/transactions.graphql +116 -41
  588. package/src/graphql/queries/verifyZkLoginSignature.graphql +1 -1
  589. package/src/graphql/schema/index.ts +17 -0
  590. package/src/grpc/client.ts +131 -9
  591. package/src/grpc/core.ts +822 -259
  592. package/src/grpc/index.ts +6 -2
  593. package/src/grpc/proto/haneul/rpc/v2/bcs.ts +1 -1
  594. package/src/grpc/proto/haneul/rpc/v2/checkpoint_contents.ts +44 -0
  595. package/src/grpc/proto/haneul/rpc/v2/effects.ts +80 -0
  596. package/src/grpc/proto/haneul/rpc/v2/epoch.ts +1 -1
  597. package/src/grpc/proto/haneul/rpc/v2/executed_transaction.ts +1 -1
  598. package/src/grpc/proto/haneul/rpc/v2/execution_status.ts +68 -2
  599. package/src/grpc/proto/haneul/rpc/v2/input.ts +115 -0
  600. package/src/grpc/proto/haneul/rpc/v2/name_service.ts +1 -1
  601. package/src/grpc/proto/haneul/rpc/v2/object.ts +1 -1
  602. package/src/grpc/proto/haneul/rpc/v2/signature.ts +1 -1
  603. package/src/grpc/proto/haneul/rpc/v2/signature_scheme.ts +2 -2
  604. package/src/grpc/proto/haneul/rpc/v2/state_service.ts +33 -3
  605. package/src/grpc/proto/haneul/rpc/v2/system_state.ts +10 -10
  606. package/src/grpc/proto/haneul/rpc/v2/transaction.ts +100 -1
  607. package/src/grpc/proto/types.ts +44 -0
  608. package/src/jsonRpc/client.ts +95 -120
  609. package/src/jsonRpc/core.ts +618 -178
  610. package/src/jsonRpc/http-transport.ts +0 -2
  611. package/src/jsonRpc/index.ts +1 -0
  612. package/src/jsonRpc/network.ts +17 -0
  613. package/src/jsonRpc/types/chain.ts +7 -7
  614. package/src/jsonRpc/types/coins.ts +1 -0
  615. package/src/jsonRpc/types/generated.ts +119 -74
  616. package/src/jsonRpc/types/params.ts +20 -20
  617. package/src/keypairs/ed25519/ed25519-hd-key.ts +3 -3
  618. package/src/keypairs/ed25519/keypair.ts +10 -10
  619. package/src/keypairs/ed25519/publickey.ts +1 -1
  620. package/src/keypairs/passkey/keypair.ts +22 -18
  621. package/src/keypairs/passkey/publickey.ts +7 -4
  622. package/src/keypairs/secp256k1/keypair.ts +15 -18
  623. package/src/keypairs/secp256k1/publickey.ts +2 -7
  624. package/src/keypairs/secp256r1/keypair.ts +15 -18
  625. package/src/keypairs/secp256r1/publickey.ts +2 -7
  626. package/src/multisig/publickey.ts +9 -11
  627. package/src/multisig/signer.ts +0 -7
  628. package/src/transactions/Commands.ts +2 -2
  629. package/src/transactions/Inputs.ts +25 -1
  630. package/src/transactions/ObjectCache.ts +2 -2
  631. package/src/transactions/Transaction.ts +86 -94
  632. package/src/transactions/TransactionData.ts +5 -16
  633. package/src/transactions/__tests__/Transaction.test.ts +19 -19
  634. package/src/transactions/__tests__/bcs.test.ts +8 -8
  635. package/src/transactions/data/internal.ts +108 -79
  636. package/src/transactions/data/v2.ts +11 -1
  637. package/src/transactions/executor/caching.ts +39 -31
  638. package/src/transactions/executor/parallel.ts +207 -147
  639. package/src/transactions/executor/serial.ts +110 -38
  640. package/src/transactions/hash.ts +1 -1
  641. package/src/transactions/index.ts +1 -14
  642. package/src/transactions/intents/CoinWithBalance.ts +195 -75
  643. package/src/transactions/object.ts +13 -6
  644. package/src/transactions/plugins/NamedPackagesPlugin.ts +12 -83
  645. package/src/transactions/resolve.ts +11 -10
  646. package/src/transactions/serializer.ts +114 -133
  647. package/src/transactions/utils.ts +1 -1
  648. package/src/utils/constants.ts +14 -8
  649. package/src/utils/dynamic-fields.ts +1 -1
  650. package/src/utils/haneul-types.ts +63 -1
  651. package/src/utils/index.ts +3 -12
  652. package/src/utils/move-registry.ts +3 -4
  653. package/src/verify/index.ts +0 -1
  654. package/src/verify/verify.ts +6 -7
  655. package/src/version.ts +1 -1
  656. package/src/zklogin/address.ts +18 -7
  657. package/src/zklogin/index.ts +1 -5
  658. package/src/zklogin/nonce.ts +2 -2
  659. package/src/zklogin/publickey.ts +25 -24
  660. package/src/zklogin/utils.ts +2 -2
  661. package/bcs/package.json +0 -6
  662. package/client/package.json +0 -6
  663. package/cryptography/package.json +0 -6
  664. package/dist/cjs/bcs/bcs.d.ts +0 -1973
  665. package/dist/cjs/bcs/bcs.js +0 -328
  666. package/dist/cjs/bcs/bcs.js.map +0 -7
  667. package/dist/cjs/bcs/effects.d.ts +0 -579
  668. package/dist/cjs/bcs/effects.js +0 -210
  669. package/dist/cjs/bcs/effects.js.map +0 -7
  670. package/dist/cjs/bcs/index.d.ts +0 -2589
  671. package/dist/cjs/bcs/index.js +0 -80
  672. package/dist/cjs/bcs/index.js.map +0 -7
  673. package/dist/cjs/bcs/pure.d.ts +0 -22
  674. package/dist/cjs/bcs/pure.js +0 -59
  675. package/dist/cjs/bcs/pure.js.map +0 -7
  676. package/dist/cjs/bcs/type-tag-serializer.d.ts +0 -7
  677. package/dist/cjs/bcs/type-tag-serializer.js +0 -117
  678. package/dist/cjs/bcs/type-tag-serializer.js.map +0 -7
  679. package/dist/cjs/bcs/types.d.ts +0 -114
  680. package/dist/cjs/bcs/types.js +0 -27
  681. package/dist/cjs/bcs/types.js.map +0 -7
  682. package/dist/cjs/client/index.d.ts +0 -5
  683. package/dist/cjs/client/index.js +0 -34
  684. package/dist/cjs/client/index.js.map +0 -7
  685. package/dist/cjs/client/network.d.ts +0 -1
  686. package/dist/cjs/client/network.js +0 -38
  687. package/dist/cjs/client/network.js.map +0 -7
  688. package/dist/cjs/cryptography/index.d.ts +0 -7
  689. package/dist/cjs/cryptography/index.js +0 -47
  690. package/dist/cjs/cryptography/index.js.map +0 -7
  691. package/dist/cjs/cryptography/intent.d.ts +0 -6
  692. package/dist/cjs/cryptography/intent.js +0 -35
  693. package/dist/cjs/cryptography/intent.js.map +0 -7
  694. package/dist/cjs/cryptography/keypair.d.ts +0 -72
  695. package/dist/cjs/cryptography/keypair.js +0 -118
  696. package/dist/cjs/cryptography/keypair.js.map +0 -7
  697. package/dist/cjs/cryptography/mnemonics.d.ts +0 -27
  698. package/dist/cjs/cryptography/mnemonics.js +0 -47
  699. package/dist/cjs/cryptography/mnemonics.js.map +0 -7
  700. package/dist/cjs/cryptography/publickey.d.ts +0 -67
  701. package/dist/cjs/cryptography/publickey.js +0 -140
  702. package/dist/cjs/cryptography/publickey.js.map +0 -7
  703. package/dist/cjs/cryptography/signature-scheme.d.ts +0 -24
  704. package/dist/cjs/cryptography/signature-scheme.js +0 -48
  705. package/dist/cjs/cryptography/signature-scheme.js.map +0 -7
  706. package/dist/cjs/cryptography/signature.d.ts +0 -65
  707. package/dist/cjs/cryptography/signature.js +0 -71
  708. package/dist/cjs/cryptography/signature.js.map +0 -7
  709. package/dist/cjs/experimental/cache.d.ts +0 -12
  710. package/dist/cjs/experimental/cache.js +0 -88
  711. package/dist/cjs/experimental/cache.js.map +0 -7
  712. package/dist/cjs/experimental/client.d.ts +0 -12
  713. package/dist/cjs/experimental/client.js +0 -46
  714. package/dist/cjs/experimental/client.js.map +0 -7
  715. package/dist/cjs/experimental/core.d.ts +0 -37
  716. package/dist/cjs/experimental/core.js +0 -114
  717. package/dist/cjs/experimental/core.js.map +0 -7
  718. package/dist/cjs/experimental/errors.d.ts +0 -8
  719. package/dist/cjs/experimental/errors.js +0 -54
  720. package/dist/cjs/experimental/errors.js.map +0 -7
  721. package/dist/cjs/experimental/index.d.ts +0 -7
  722. package/dist/cjs/experimental/index.js +0 -32
  723. package/dist/cjs/experimental/index.js.map +0 -7
  724. package/dist/cjs/experimental/mvr.d.ts +0 -42
  725. package/dist/cjs/experimental/mvr.js +0 -365
  726. package/dist/cjs/experimental/mvr.js.map +0 -7
  727. package/dist/cjs/experimental/transports/utils.d.ts +0 -3
  728. package/dist/cjs/experimental/transports/utils.js +0 -101
  729. package/dist/cjs/experimental/transports/utils.js.map +0 -7
  730. package/dist/cjs/experimental/types.d.ts +0 -434
  731. package/dist/cjs/experimental/types.js +0 -17
  732. package/dist/cjs/experimental/types.js.map +0 -7
  733. package/dist/cjs/faucet/faucet.d.ts +0 -65
  734. package/dist/cjs/faucet/faucet.js +0 -130
  735. package/dist/cjs/faucet/faucet.js.map +0 -7
  736. package/dist/cjs/faucet/index.d.ts +0 -1
  737. package/dist/cjs/faucet/index.js +0 -30
  738. package/dist/cjs/faucet/index.js.map +0 -7
  739. package/dist/cjs/graphql/client.d.ts +0 -50
  740. package/dist/cjs/graphql/client.js +0 -94
  741. package/dist/cjs/graphql/client.js.map +0 -7
  742. package/dist/cjs/graphql/core.d.ts +0 -32
  743. package/dist/cjs/graphql/core.js +0 -471
  744. package/dist/cjs/graphql/core.js.map +0 -7
  745. package/dist/cjs/graphql/generated/2024.1/tada-env.d.ts +0 -11380
  746. package/dist/cjs/graphql/generated/2024.1/tada-env.js +0 -13142
  747. package/dist/cjs/graphql/generated/2024.1/tada-env.js.map +0 -7
  748. package/dist/cjs/graphql/generated/2024.1/tsconfig.tada.js +0 -12
  749. package/dist/cjs/graphql/generated/2024.1/tsconfig.tada.js.map +0 -7
  750. package/dist/cjs/graphql/generated/2024.4/tada-env.d.ts +0 -11496
  751. package/dist/cjs/graphql/generated/2024.4/tada-env.js +0 -13288
  752. package/dist/cjs/graphql/generated/2024.4/tada-env.js.map +0 -7
  753. package/dist/cjs/graphql/generated/2024.4/tsconfig.tada.js +0 -12
  754. package/dist/cjs/graphql/generated/2024.4/tsconfig.tada.js.map +0 -7
  755. package/dist/cjs/graphql/generated/latest/tada-env.d.ts +0 -11128
  756. package/dist/cjs/graphql/generated/latest/tada-env.js +0 -12926
  757. package/dist/cjs/graphql/generated/latest/tada-env.js.map +0 -7
  758. package/dist/cjs/graphql/generated/latest/tsconfig.tada.js +0 -12
  759. package/dist/cjs/graphql/generated/latest/tsconfig.tada.js.map +0 -7
  760. package/dist/cjs/graphql/generated/queries.d.ts +0 -4980
  761. package/dist/cjs/graphql/generated/queries.js +0 -803
  762. package/dist/cjs/graphql/generated/queries.js.map +0 -7
  763. package/dist/cjs/graphql/index.d.ts +0 -1
  764. package/dist/cjs/graphql/index.js +0 -26
  765. package/dist/cjs/graphql/index.js.map +0 -7
  766. package/dist/cjs/graphql/schemas/2024.1/index.d.ts +0 -10
  767. package/dist/cjs/graphql/schemas/2024.1/index.js +0 -29
  768. package/dist/cjs/graphql/schemas/2024.1/index.js.map +0 -7
  769. package/dist/cjs/graphql/schemas/2024.4/index.d.ts +0 -10
  770. package/dist/cjs/graphql/schemas/2024.4/index.js +0 -29
  771. package/dist/cjs/graphql/schemas/2024.4/index.js.map +0 -7
  772. package/dist/cjs/graphql/schemas/latest/index.d.ts +0 -10
  773. package/dist/cjs/graphql/schemas/latest/index.js +0 -29
  774. package/dist/cjs/graphql/schemas/latest/index.js.map +0 -7
  775. package/dist/cjs/graphql/types.d.ts +0 -71
  776. package/dist/cjs/graphql/types.js +0 -17
  777. package/dist/cjs/graphql/types.js.map +0 -7
  778. package/dist/cjs/grpc/client.d.ts +0 -33
  779. package/dist/cjs/grpc/client.js +0 -53
  780. package/dist/cjs/grpc/client.js.map +0 -7
  781. package/dist/cjs/grpc/core.d.ts +0 -30
  782. package/dist/cjs/grpc/core.js +0 -651
  783. package/dist/cjs/grpc/core.js.map +0 -7
  784. package/dist/cjs/grpc/index.d.ts +0 -4
  785. package/dist/cjs/grpc/index.js +0 -27
  786. package/dist/cjs/grpc/index.js.map +0 -7
  787. package/dist/cjs/grpc/proto/google/protobuf/any.d.ts +0 -173
  788. package/dist/cjs/grpc/proto/google/protobuf/any.js +0 -139
  789. package/dist/cjs/grpc/proto/google/protobuf/any.js.map +0 -7
  790. package/dist/cjs/grpc/proto/google/protobuf/duration.d.ts +0 -104
  791. package/dist/cjs/grpc/proto/google/protobuf/duration.js +0 -88
  792. package/dist/cjs/grpc/proto/google/protobuf/duration.js.map +0 -7
  793. package/dist/cjs/grpc/proto/google/protobuf/empty.d.ts +0 -25
  794. package/dist/cjs/grpc/proto/google/protobuf/empty.js +0 -31
  795. package/dist/cjs/grpc/proto/google/protobuf/empty.js.map +0 -7
  796. package/dist/cjs/grpc/proto/google/protobuf/field_mask.d.ts +0 -231
  797. package/dist/cjs/grpc/proto/google/protobuf/field_mask.js +0 -73
  798. package/dist/cjs/grpc/proto/google/protobuf/field_mask.js.map +0 -7
  799. package/dist/cjs/grpc/proto/google/protobuf/struct.d.ts +0 -169
  800. package/dist/cjs/grpc/proto/google/protobuf/struct.js +0 -199
  801. package/dist/cjs/grpc/proto/google/protobuf/struct.js.map +0 -7
  802. package/dist/cjs/grpc/proto/google/protobuf/timestamp.d.ts +0 -145
  803. package/dist/cjs/grpc/proto/google/protobuf/timestamp.js +0 -123
  804. package/dist/cjs/grpc/proto/google/protobuf/timestamp.js.map +0 -7
  805. package/dist/cjs/grpc/proto/google/rpc/error_details.d.ts +0 -525
  806. package/dist/cjs/grpc/proto/google/rpc/error_details.js +0 -332
  807. package/dist/cjs/grpc/proto/google/rpc/error_details.js.map +0 -7
  808. package/dist/cjs/grpc/proto/google/rpc/status.d.ts +0 -46
  809. package/dist/cjs/grpc/proto/google/rpc/status.js +0 -48
  810. package/dist/cjs/grpc/proto/google/rpc/status.js.map +0 -7
  811. package/dist/cjs/grpc/proto/haneul/rpc/v2/argument.d.ts +0 -66
  812. package/dist/cjs/grpc/proto/haneul/rpc/v2/argument.js +0 -71
  813. package/dist/cjs/grpc/proto/haneul/rpc/v2/argument.js.map +0 -7
  814. package/dist/cjs/grpc/proto/haneul/rpc/v2/balance_change.d.ts +0 -34
  815. package/dist/cjs/grpc/proto/haneul/rpc/v2/balance_change.js +0 -56
  816. package/dist/cjs/grpc/proto/haneul/rpc/v2/balance_change.js.map +0 -7
  817. package/dist/cjs/grpc/proto/haneul/rpc/v2/bcs.d.ts +0 -30
  818. package/dist/cjs/grpc/proto/haneul/rpc/v2/bcs.js +0 -48
  819. package/dist/cjs/grpc/proto/haneul/rpc/v2/bcs.js.map +0 -7
  820. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint.d.ts +0 -68
  821. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint.js +0 -64
  822. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint.js.map +0 -7
  823. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_contents.d.ts +0 -74
  824. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_contents.js +0 -89
  825. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_contents.js.map +0 -7
  826. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_summary.d.ts +0 -195
  827. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_summary.js +0 -165
  828. package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_summary.js.map +0 -7
  829. package/dist/cjs/grpc/proto/haneul/rpc/v2/effects.d.ts +0 -338
  830. package/dist/cjs/grpc/proto/haneul/rpc/v2/effects.js +0 -294
  831. package/dist/cjs/grpc/proto/haneul/rpc/v2/effects.js.map +0 -7
  832. package/dist/cjs/grpc/proto/haneul/rpc/v2/epoch.d.ts +0 -62
  833. package/dist/cjs/grpc/proto/haneul/rpc/v2/epoch.js +0 -73
  834. package/dist/cjs/grpc/proto/haneul/rpc/v2/epoch.js.map +0 -7
  835. package/dist/cjs/grpc/proto/haneul/rpc/v2/error_reason.d.ts +0 -17
  836. package/dist/cjs/grpc/proto/haneul/rpc/v2/error_reason.js +0 -30
  837. package/dist/cjs/grpc/proto/haneul/rpc/v2/error_reason.js.map +0 -7
  838. package/dist/cjs/grpc/proto/haneul/rpc/v2/event.d.ts +0 -88
  839. package/dist/cjs/grpc/proto/haneul/rpc/v2/event.js +0 -86
  840. package/dist/cjs/grpc/proto/haneul/rpc/v2/event.js.map +0 -7
  841. package/dist/cjs/grpc/proto/haneul/rpc/v2/executed_transaction.d.ts +0 -80
  842. package/dist/cjs/grpc/proto/haneul/rpc/v2/executed_transaction.js +0 -74
  843. package/dist/cjs/grpc/proto/haneul/rpc/v2/executed_transaction.js.map +0 -7
  844. package/dist/cjs/grpc/proto/haneul/rpc/v2/execution_status.d.ts +0 -843
  845. package/dist/cjs/grpc/proto/haneul/rpc/v2/execution_status.js +0 -513
  846. package/dist/cjs/grpc/proto/haneul/rpc/v2/execution_status.js.map +0 -7
  847. package/dist/cjs/grpc/proto/haneul/rpc/v2/gas_cost_summary.d.ts +0 -41
  848. package/dist/cjs/grpc/proto/haneul/rpc/v2/gas_cost_summary.js +0 -64
  849. package/dist/cjs/grpc/proto/haneul/rpc/v2/gas_cost_summary.js.map +0 -7
  850. package/dist/cjs/grpc/proto/haneul/rpc/v2/input.d.ts +0 -98
  851. package/dist/cjs/grpc/proto/haneul/rpc/v2/input.js +0 -90
  852. package/dist/cjs/grpc/proto/haneul/rpc/v2/input.js.map +0 -7
  853. package/dist/cjs/grpc/proto/haneul/rpc/v2/jwk.d.ts +0 -70
  854. package/dist/cjs/grpc/proto/haneul/rpc/v2/jwk.js +0 -88
  855. package/dist/cjs/grpc/proto/haneul/rpc/v2/jwk.js.map +0 -7
  856. package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.client.d.ts +0 -95
  857. package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.client.js +0 -127
  858. package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.client.js.map +0 -7
  859. package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.d.ts +0 -420
  860. package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.js +0 -327
  861. package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.js.map +0 -7
  862. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package.d.ts +0 -579
  863. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package.js +0 -480
  864. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package.js.map +0 -7
  865. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.client.d.ts +0 -61
  866. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.client.js +0 -86
  867. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.client.js.map +0 -7
  868. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.d.ts +0 -229
  869. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.js +0 -226
  870. package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.js.map +0 -7
  871. package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.client.d.ts +0 -41
  872. package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.client.js +0 -60
  873. package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.client.js.map +0 -7
  874. package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.d.ts +0 -144
  875. package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.js +0 -138
  876. package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.js.map +0 -7
  877. package/dist/cjs/grpc/proto/haneul/rpc/v2/object.d.ts +0 -127
  878. package/dist/cjs/grpc/proto/haneul/rpc/v2/object.js +0 -113
  879. package/dist/cjs/grpc/proto/haneul/rpc/v2/object.js.map +0 -7
  880. package/dist/cjs/grpc/proto/haneul/rpc/v2/object_reference.d.ts +0 -34
  881. package/dist/cjs/grpc/proto/haneul/rpc/v2/object_reference.js +0 -56
  882. package/dist/cjs/grpc/proto/haneul/rpc/v2/object_reference.js.map +0 -7
  883. package/dist/cjs/grpc/proto/haneul/rpc/v2/owner.d.ts +0 -61
  884. package/dist/cjs/grpc/proto/haneul/rpc/v2/owner.js +0 -65
  885. package/dist/cjs/grpc/proto/haneul/rpc/v2/owner.js.map +0 -7
  886. package/dist/cjs/grpc/proto/haneul/rpc/v2/protocol_config.d.ts +0 -30
  887. package/dist/cjs/grpc/proto/haneul/rpc/v2/protocol_config.js +0 -62
  888. package/dist/cjs/grpc/proto/haneul/rpc/v2/protocol_config.js.map +0 -7
  889. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature.d.ts +0 -630
  890. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature.js +0 -514
  891. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature.js.map +0 -7
  892. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_scheme.d.ts +0 -40
  893. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_scheme.js +0 -34
  894. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_scheme.js.map +0 -7
  895. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.client.d.ts +0 -35
  896. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.client.js +0 -49
  897. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.client.js.map +0 -7
  898. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.d.ts +0 -79
  899. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.js +0 -76
  900. package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.js.map +0 -7
  901. package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.client.d.ts +0 -71
  902. package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.client.js +0 -99
  903. package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.client.js.map +0 -7
  904. package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.d.ts +0 -690
  905. package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.js +0 -546
  906. package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.js.map +0 -7
  907. package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.client.d.ts +0 -55
  908. package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.client.js +0 -59
  909. package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.client.js.map +0 -7
  910. package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.d.ts +0 -57
  911. package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.js +0 -63
  912. package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.js.map +0 -7
  913. package/dist/cjs/grpc/proto/haneul/rpc/v2/system_state.d.ts +0 -684
  914. package/dist/cjs/grpc/proto/haneul/rpc/v2/system_state.js +0 -674
  915. package/dist/cjs/grpc/proto/haneul/rpc/v2/system_state.js.map +0 -7
  916. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction.d.ts +0 -1321
  917. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction.js +0 -931
  918. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction.js.map +0 -7
  919. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.d.ts +0 -41
  920. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.js +0 -60
  921. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.js.map +0 -7
  922. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.d.ts +0 -184
  923. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.js +0 -159
  924. package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.js.map +0 -7
  925. package/dist/cjs/jsonRpc/client.d.ts +0 -264
  926. package/dist/cjs/jsonRpc/client.js +0 -832
  927. package/dist/cjs/jsonRpc/client.js.map +0 -7
  928. package/dist/cjs/jsonRpc/core.d.ts +0 -93
  929. package/dist/cjs/jsonRpc/core.js +0 -644
  930. package/dist/cjs/jsonRpc/core.js.map +0 -7
  931. package/dist/cjs/jsonRpc/errors.d.ts +0 -12
  932. package/dist/cjs/jsonRpc/errors.js +0 -60
  933. package/dist/cjs/jsonRpc/errors.js.map +0 -7
  934. package/dist/cjs/jsonRpc/http-transport.d.ts +0 -42
  935. package/dist/cjs/jsonRpc/http-transport.js +0 -119
  936. package/dist/cjs/jsonRpc/http-transport.js.map +0 -7
  937. package/dist/cjs/jsonRpc/index.d.ts +0 -4
  938. package/dist/cjs/jsonRpc/index.js +0 -32
  939. package/dist/cjs/jsonRpc/index.js.map +0 -7
  940. package/dist/cjs/jsonRpc/json-rpc-resolver.d.ts +0 -4
  941. package/dist/cjs/jsonRpc/json-rpc-resolver.js +0 -311
  942. package/dist/cjs/jsonRpc/json-rpc-resolver.js.map +0 -7
  943. package/dist/cjs/jsonRpc/rpc-websocket-client.d.ts +0 -43
  944. package/dist/cjs/jsonRpc/rpc-websocket-client.js +0 -194
  945. package/dist/cjs/jsonRpc/rpc-websocket-client.js.map +0 -7
  946. package/dist/cjs/jsonRpc/types/chain.d.ts +0 -99
  947. package/dist/cjs/jsonRpc/types/chain.js +0 -17
  948. package/dist/cjs/jsonRpc/types/chain.js.map +0 -7
  949. package/dist/cjs/jsonRpc/types/changes.d.ts +0 -19
  950. package/dist/cjs/jsonRpc/types/changes.js +0 -17
  951. package/dist/cjs/jsonRpc/types/changes.js.map +0 -7
  952. package/dist/cjs/jsonRpc/types/coins.d.ts +0 -6
  953. package/dist/cjs/jsonRpc/types/coins.js +0 -17
  954. package/dist/cjs/jsonRpc/types/coins.js.map +0 -7
  955. package/dist/cjs/jsonRpc/types/common.d.ts +0 -2
  956. package/dist/cjs/jsonRpc/types/common.js +0 -17
  957. package/dist/cjs/jsonRpc/types/common.js.map +0 -7
  958. package/dist/cjs/jsonRpc/types/generated.d.ts +0 -1492
  959. package/dist/cjs/jsonRpc/types/generated.js +0 -17
  960. package/dist/cjs/jsonRpc/types/generated.js.map +0 -7
  961. package/dist/cjs/jsonRpc/types/index.d.ts +0 -6
  962. package/dist/cjs/jsonRpc/types/index.js +0 -17
  963. package/dist/cjs/jsonRpc/types/index.js.map +0 -7
  964. package/dist/cjs/jsonRpc/types/params.d.ts +0 -656
  965. package/dist/cjs/jsonRpc/types/params.js +0 -17
  966. package/dist/cjs/jsonRpc/types/params.js.map +0 -7
  967. package/dist/cjs/keypairs/ed25519/ed25519-hd-key.d.ts +0 -8
  968. package/dist/cjs/keypairs/ed25519/ed25519-hd-key.js +0 -77
  969. package/dist/cjs/keypairs/ed25519/ed25519-hd-key.js.map +0 -7
  970. package/dist/cjs/keypairs/ed25519/index.d.ts +0 -2
  971. package/dist/cjs/keypairs/ed25519/index.js +0 -28
  972. package/dist/cjs/keypairs/ed25519/index.js.map +0 -7
  973. package/dist/cjs/keypairs/ed25519/keypair.d.ts +0 -74
  974. package/dist/cjs/keypairs/ed25519/keypair.js +0 -162
  975. package/dist/cjs/keypairs/ed25519/keypair.js.map +0 -7
  976. package/dist/cjs/keypairs/ed25519/publickey.d.ts +0 -30
  977. package/dist/cjs/keypairs/ed25519/publickey.js +0 -88
  978. package/dist/cjs/keypairs/ed25519/publickey.js.map +0 -7
  979. package/dist/cjs/keypairs/passkey/index.d.ts +0 -3
  980. package/dist/cjs/keypairs/passkey/index.js +0 -29
  981. package/dist/cjs/keypairs/passkey/index.js.map +0 -7
  982. package/dist/cjs/keypairs/passkey/keypair.d.ts +0 -113
  983. package/dist/cjs/keypairs/passkey/keypair.js +0 -251
  984. package/dist/cjs/keypairs/passkey/keypair.js.map +0 -7
  985. package/dist/cjs/keypairs/passkey/publickey.d.ts +0 -72
  986. package/dist/cjs/keypairs/passkey/publickey.js +0 -168
  987. package/dist/cjs/keypairs/passkey/publickey.js.map +0 -7
  988. package/dist/cjs/keypairs/passkey/types.d.ts +0 -12
  989. package/dist/cjs/keypairs/passkey/types.js +0 -17
  990. package/dist/cjs/keypairs/passkey/types.js.map +0 -7
  991. package/dist/cjs/keypairs/secp256k1/index.d.ts +0 -2
  992. package/dist/cjs/keypairs/secp256k1/index.js +0 -28
  993. package/dist/cjs/keypairs/secp256k1/index.js.map +0 -7
  994. package/dist/cjs/keypairs/secp256k1/keypair.d.ts +0 -73
  995. package/dist/cjs/keypairs/secp256k1/keypair.js +0 -150
  996. package/dist/cjs/keypairs/secp256k1/keypair.js.map +0 -7
  997. package/dist/cjs/keypairs/secp256k1/publickey.d.ts +0 -30
  998. package/dist/cjs/keypairs/secp256k1/publickey.js +0 -93
  999. package/dist/cjs/keypairs/secp256k1/publickey.js.map +0 -7
  1000. package/dist/cjs/keypairs/secp256r1/index.d.ts +0 -2
  1001. package/dist/cjs/keypairs/secp256r1/index.js +0 -28
  1002. package/dist/cjs/keypairs/secp256r1/index.js.map +0 -7
  1003. package/dist/cjs/keypairs/secp256r1/keypair.d.ts +0 -73
  1004. package/dist/cjs/keypairs/secp256r1/keypair.js +0 -144
  1005. package/dist/cjs/keypairs/secp256r1/keypair.js.map +0 -7
  1006. package/dist/cjs/keypairs/secp256r1/publickey.d.ts +0 -30
  1007. package/dist/cjs/keypairs/secp256r1/publickey.js +0 -94
  1008. package/dist/cjs/keypairs/secp256r1/publickey.js.map +0 -7
  1009. package/dist/cjs/multisig/index.d.ts +0 -2
  1010. package/dist/cjs/multisig/index.js +0 -28
  1011. package/dist/cjs/multisig/index.js.map +0 -7
  1012. package/dist/cjs/multisig/publickey.d.ts +0 -114
  1013. package/dist/cjs/multisig/publickey.js +0 -260
  1014. package/dist/cjs/multisig/publickey.js.map +0 -7
  1015. package/dist/cjs/multisig/signer.d.ts +0 -20
  1016. package/dist/cjs/multisig/signer.js +0 -105
  1017. package/dist/cjs/multisig/signer.js.map +0 -7
  1018. package/dist/cjs/package.json +0 -5
  1019. package/dist/cjs/transactions/Arguments.d.ts +0 -49
  1020. package/dist/cjs/transactions/Arguments.js +0 -33
  1021. package/dist/cjs/transactions/Arguments.js.map +0 -7
  1022. package/dist/cjs/transactions/Commands.d.ts +0 -57
  1023. package/dist/cjs/transactions/Commands.js +0 -140
  1024. package/dist/cjs/transactions/Commands.js.map +0 -7
  1025. package/dist/cjs/transactions/Inputs.d.ts +0 -22
  1026. package/dist/cjs/transactions/Inputs.js +0 -80
  1027. package/dist/cjs/transactions/Inputs.js.map +0 -7
  1028. package/dist/cjs/transactions/ObjectCache.d.ts +0 -83
  1029. package/dist/cjs/transactions/ObjectCache.js +0 -241
  1030. package/dist/cjs/transactions/ObjectCache.js.map +0 -7
  1031. package/dist/cjs/transactions/Transaction.d.ts +0 -710
  1032. package/dist/cjs/transactions/Transaction.js +0 -683
  1033. package/dist/cjs/transactions/Transaction.js.map +0 -7
  1034. package/dist/cjs/transactions/TransactionData.d.ts +0 -73
  1035. package/dist/cjs/transactions/TransactionData.js +0 -433
  1036. package/dist/cjs/transactions/TransactionData.js.map +0 -7
  1037. package/dist/cjs/transactions/__tests__/Transaction.test.d.ts +0 -1
  1038. package/dist/cjs/transactions/__tests__/bcs.test.d.ts +0 -1
  1039. package/dist/cjs/transactions/data/internal.d.ts +0 -1010
  1040. package/dist/cjs/transactions/data/internal.js +0 -216
  1041. package/dist/cjs/transactions/data/internal.js.map +0 -7
  1042. package/dist/cjs/transactions/data/v1.d.ts +0 -312
  1043. package/dist/cjs/transactions/data/v1.js +0 -482
  1044. package/dist/cjs/transactions/data/v1.js.map +0 -7
  1045. package/dist/cjs/transactions/data/v2.d.ts +0 -153
  1046. package/dist/cjs/transactions/data/v2.js +0 -125
  1047. package/dist/cjs/transactions/data/v2.js.map +0 -7
  1048. package/dist/cjs/transactions/executor/caching.d.ts +0 -31
  1049. package/dist/cjs/transactions/executor/caching.js +0 -114
  1050. package/dist/cjs/transactions/executor/caching.js.map +0 -7
  1051. package/dist/cjs/transactions/executor/parallel.d.ts +0 -37
  1052. package/dist/cjs/transactions/executor/parallel.js +0 -380
  1053. package/dist/cjs/transactions/executor/parallel.js.map +0 -7
  1054. package/dist/cjs/transactions/executor/queue.d.ts +0 -11
  1055. package/dist/cjs/transactions/executor/queue.js +0 -85
  1056. package/dist/cjs/transactions/executor/queue.js.map +0 -7
  1057. package/dist/cjs/transactions/executor/serial.d.ts +0 -31
  1058. package/dist/cjs/transactions/executor/serial.js +0 -137
  1059. package/dist/cjs/transactions/executor/serial.js.map +0 -7
  1060. package/dist/cjs/transactions/hash.d.ts +0 -7
  1061. package/dist/cjs/transactions/hash.js +0 -32
  1062. package/dist/cjs/transactions/hash.js.map +0 -7
  1063. package/dist/cjs/transactions/index.d.ts +0 -21
  1064. package/dist/cjs/transactions/index.js +0 -51
  1065. package/dist/cjs/transactions/index.js.map +0 -7
  1066. package/dist/cjs/transactions/intents/CoinWithBalance.d.ts +0 -9
  1067. package/dist/cjs/transactions/intents/CoinWithBalance.js +0 -188
  1068. package/dist/cjs/transactions/intents/CoinWithBalance.js.map +0 -7
  1069. package/dist/cjs/transactions/object.d.ts +0 -16
  1070. package/dist/cjs/transactions/object.js +0 -78
  1071. package/dist/cjs/transactions/object.js.map +0 -7
  1072. package/dist/cjs/transactions/plugins/NamedPackagesPlugin.d.ts +0 -48
  1073. package/dist/cjs/transactions/plugins/NamedPackagesPlugin.js +0 -67
  1074. package/dist/cjs/transactions/plugins/NamedPackagesPlugin.js.map +0 -7
  1075. package/dist/cjs/transactions/pure.d.ts +0 -20
  1076. package/dist/cjs/transactions/pure.js +0 -57
  1077. package/dist/cjs/transactions/pure.js.map +0 -7
  1078. package/dist/cjs/transactions/resolve.d.ts +0 -13
  1079. package/dist/cjs/transactions/resolve.js +0 -98
  1080. package/dist/cjs/transactions/resolve.js.map +0 -7
  1081. package/dist/cjs/transactions/serializer.d.ts +0 -7
  1082. package/dist/cjs/transactions/serializer.js +0 -182
  1083. package/dist/cjs/transactions/serializer.js.map +0 -7
  1084. package/dist/cjs/transactions/utils.d.ts +0 -10
  1085. package/dist/cjs/transactions/utils.js +0 -135
  1086. package/dist/cjs/transactions/utils.js.map +0 -7
  1087. package/dist/cjs/utils/constants.d.ts +0 -10
  1088. package/dist/cjs/utils/constants.js +0 -44
  1089. package/dist/cjs/utils/constants.js.map +0 -7
  1090. package/dist/cjs/utils/derived-objects.d.ts +0 -5
  1091. package/dist/cjs/utils/derived-objects.js +0 -34
  1092. package/dist/cjs/utils/derived-objects.js.map +0 -7
  1093. package/dist/cjs/utils/dynamic-fields.d.ts +0 -2
  1094. package/dist/cjs/utils/dynamic-fields.js +0 -41
  1095. package/dist/cjs/utils/dynamic-fields.js.map +0 -7
  1096. package/dist/cjs/utils/format.d.ts +0 -2
  1097. package/dist/cjs/utils/format.js +0 -36
  1098. package/dist/cjs/utils/format.js.map +0 -7
  1099. package/dist/cjs/utils/haneul-types.d.ts +0 -26
  1100. package/dist/cjs/utils/haneul-types.js +0 -91
  1101. package/dist/cjs/utils/haneul-types.js.map +0 -7
  1102. package/dist/cjs/utils/haneulns.d.ts +0 -2
  1103. package/dist/cjs/utils/haneulns.js +0 -57
  1104. package/dist/cjs/utils/haneulns.js.map +0 -7
  1105. package/dist/cjs/utils/index.d.ts +0 -9
  1106. package/dist/cjs/utils/index.js +0 -69
  1107. package/dist/cjs/utils/index.js.map +0 -7
  1108. package/dist/cjs/utils/move-registry.d.ts +0 -6
  1109. package/dist/cjs/utils/move-registry.js +0 -45
  1110. package/dist/cjs/utils/move-registry.js.map +0 -7
  1111. package/dist/cjs/verify/index.d.ts +0 -1
  1112. package/dist/cjs/verify/index.js +0 -29
  1113. package/dist/cjs/verify/index.js.map +0 -7
  1114. package/dist/cjs/verify/verify.d.ts +0 -21
  1115. package/dist/cjs/verify/verify.js +0 -124
  1116. package/dist/cjs/verify/verify.js.map +0 -7
  1117. package/dist/cjs/version.d.ts +0 -2
  1118. package/dist/cjs/version.js +0 -27
  1119. package/dist/cjs/version.js.map +0 -7
  1120. package/dist/cjs/zklogin/address.d.ts +0 -16
  1121. package/dist/cjs/zklogin/address.js +0 -87
  1122. package/dist/cjs/zklogin/address.js.map +0 -7
  1123. package/dist/cjs/zklogin/bcs.d.ts +0 -28
  1124. package/dist/cjs/zklogin/bcs.js +0 -42
  1125. package/dist/cjs/zklogin/bcs.js.map +0 -7
  1126. package/dist/cjs/zklogin/index.d.ts +0 -9
  1127. package/dist/cjs/zklogin/index.js +0 -46
  1128. package/dist/cjs/zklogin/index.js.map +0 -7
  1129. package/dist/cjs/zklogin/jwt-decode.d.ts +0 -47
  1130. package/dist/cjs/zklogin/jwt-decode.js +0 -85
  1131. package/dist/cjs/zklogin/jwt-decode.js.map +0 -7
  1132. package/dist/cjs/zklogin/jwt-utils.d.ts +0 -12
  1133. package/dist/cjs/zklogin/jwt-utils.js +0 -121
  1134. package/dist/cjs/zklogin/jwt-utils.js.map +0 -7
  1135. package/dist/cjs/zklogin/nonce.d.ts +0 -4
  1136. package/dist/cjs/zklogin/nonce.js +0 -54
  1137. package/dist/cjs/zklogin/nonce.js.map +0 -7
  1138. package/dist/cjs/zklogin/poseidon.d.ts +0 -2
  1139. package/dist/cjs/zklogin/poseidon.js +0 -63
  1140. package/dist/cjs/zklogin/poseidon.js.map +0 -7
  1141. package/dist/cjs/zklogin/publickey.d.ts +0 -87
  1142. package/dist/cjs/zklogin/publickey.js +0 -257
  1143. package/dist/cjs/zklogin/publickey.js.map +0 -7
  1144. package/dist/cjs/zklogin/signature.d.ts +0 -23
  1145. package/dist/cjs/zklogin/signature.js +0 -48
  1146. package/dist/cjs/zklogin/signature.js.map +0 -7
  1147. package/dist/cjs/zklogin/utils.d.ts +0 -16
  1148. package/dist/cjs/zklogin/utils.js +0 -97
  1149. package/dist/cjs/zklogin/utils.js.map +0 -7
  1150. package/dist/esm/bcs/bcs.d.ts +0 -1973
  1151. package/dist/esm/bcs/bcs.js +0 -308
  1152. package/dist/esm/bcs/bcs.js.map +0 -7
  1153. package/dist/esm/bcs/effects.d.ts +0 -579
  1154. package/dist/esm/bcs/effects.js +0 -190
  1155. package/dist/esm/bcs/effects.js.map +0 -7
  1156. package/dist/esm/bcs/index.d.ts +0 -2589
  1157. package/dist/esm/bcs/index.js +0 -94
  1158. package/dist/esm/bcs/index.js.map +0 -7
  1159. package/dist/esm/bcs/pure.d.ts +0 -22
  1160. package/dist/esm/bcs/pure.js +0 -39
  1161. package/dist/esm/bcs/pure.js.map +0 -7
  1162. package/dist/esm/bcs/type-tag-serializer.d.ts +0 -7
  1163. package/dist/esm/bcs/type-tag-serializer.js +0 -97
  1164. package/dist/esm/bcs/type-tag-serializer.js.map +0 -7
  1165. package/dist/esm/bcs/types.d.ts +0 -114
  1166. package/dist/esm/bcs/types.js +0 -7
  1167. package/dist/esm/bcs/types.js.map +0 -7
  1168. package/dist/esm/client/index.d.ts +0 -5
  1169. package/dist/esm/client/index.js +0 -19
  1170. package/dist/esm/client/index.js.map +0 -7
  1171. package/dist/esm/client/network.d.ts +0 -1
  1172. package/dist/esm/client/network.js +0 -18
  1173. package/dist/esm/client/network.js.map +0 -7
  1174. package/dist/esm/cryptography/index.d.ts +0 -7
  1175. package/dist/esm/cryptography/index.js +0 -47
  1176. package/dist/esm/cryptography/index.js.map +0 -7
  1177. package/dist/esm/cryptography/intent.d.ts +0 -6
  1178. package/dist/esm/cryptography/intent.js +0 -15
  1179. package/dist/esm/cryptography/intent.js.map +0 -7
  1180. package/dist/esm/cryptography/keypair.d.ts +0 -72
  1181. package/dist/esm/cryptography/keypair.js +0 -98
  1182. package/dist/esm/cryptography/keypair.js.map +0 -7
  1183. package/dist/esm/cryptography/mnemonics.d.ts +0 -27
  1184. package/dist/esm/cryptography/mnemonics.js +0 -27
  1185. package/dist/esm/cryptography/mnemonics.js.map +0 -7
  1186. package/dist/esm/cryptography/publickey.d.ts +0 -67
  1187. package/dist/esm/cryptography/publickey.js +0 -120
  1188. package/dist/esm/cryptography/publickey.js.map +0 -7
  1189. package/dist/esm/cryptography/signature-scheme.d.ts +0 -24
  1190. package/dist/esm/cryptography/signature-scheme.js +0 -28
  1191. package/dist/esm/cryptography/signature-scheme.js.map +0 -7
  1192. package/dist/esm/cryptography/signature.d.ts +0 -65
  1193. package/dist/esm/cryptography/signature.js +0 -51
  1194. package/dist/esm/cryptography/signature.js.map +0 -7
  1195. package/dist/esm/experimental/cache.d.ts +0 -12
  1196. package/dist/esm/experimental/cache.js +0 -68
  1197. package/dist/esm/experimental/cache.js.map +0 -7
  1198. package/dist/esm/experimental/client.d.ts +0 -12
  1199. package/dist/esm/experimental/client.js +0 -26
  1200. package/dist/esm/experimental/client.js.map +0 -7
  1201. package/dist/esm/experimental/core.d.ts +0 -37
  1202. package/dist/esm/experimental/core.js +0 -94
  1203. package/dist/esm/experimental/core.js.map +0 -7
  1204. package/dist/esm/experimental/errors.d.ts +0 -8
  1205. package/dist/esm/experimental/errors.js +0 -34
  1206. package/dist/esm/experimental/errors.js.map +0 -7
  1207. package/dist/esm/experimental/index.d.ts +0 -7
  1208. package/dist/esm/experimental/index.js +0 -12
  1209. package/dist/esm/experimental/index.js.map +0 -7
  1210. package/dist/esm/experimental/mvr.d.ts +0 -42
  1211. package/dist/esm/experimental/mvr.js +0 -350
  1212. package/dist/esm/experimental/mvr.js.map +0 -7
  1213. package/dist/esm/experimental/transports/utils.d.ts +0 -3
  1214. package/dist/esm/experimental/transports/utils.js +0 -81
  1215. package/dist/esm/experimental/transports/utils.js.map +0 -7
  1216. package/dist/esm/experimental/types.d.ts +0 -434
  1217. package/dist/esm/experimental/types.js +0 -1
  1218. package/dist/esm/experimental/types.js.map +0 -7
  1219. package/dist/esm/faucet/faucet.d.ts +0 -65
  1220. package/dist/esm/faucet/faucet.js +0 -110
  1221. package/dist/esm/faucet/faucet.js.map +0 -7
  1222. package/dist/esm/faucet/index.d.ts +0 -1
  1223. package/dist/esm/faucet/index.js +0 -17
  1224. package/dist/esm/faucet/index.js.map +0 -7
  1225. package/dist/esm/graphql/client.d.ts +0 -50
  1226. package/dist/esm/graphql/client.js +0 -74
  1227. package/dist/esm/graphql/client.js.map +0 -7
  1228. package/dist/esm/graphql/core.d.ts +0 -32
  1229. package/dist/esm/graphql/core.js +0 -469
  1230. package/dist/esm/graphql/core.js.map +0 -7
  1231. package/dist/esm/graphql/generated/2024.1/tada-env.d.ts +0 -11380
  1232. package/dist/esm/graphql/generated/2024.1/tada-env.js +0 -13122
  1233. package/dist/esm/graphql/generated/2024.1/tada-env.js.map +0 -7
  1234. package/dist/esm/graphql/generated/2024.1/tsconfig.tada.js +0 -17
  1235. package/dist/esm/graphql/generated/2024.1/tsconfig.tada.js.map +0 -7
  1236. package/dist/esm/graphql/generated/2024.4/tada-env.d.ts +0 -11496
  1237. package/dist/esm/graphql/generated/2024.4/tada-env.js +0 -13268
  1238. package/dist/esm/graphql/generated/2024.4/tada-env.js.map +0 -7
  1239. package/dist/esm/graphql/generated/2024.4/tsconfig.tada.js +0 -17
  1240. package/dist/esm/graphql/generated/2024.4/tsconfig.tada.js.map +0 -7
  1241. package/dist/esm/graphql/generated/latest/tada-env.d.ts +0 -11128
  1242. package/dist/esm/graphql/generated/latest/tada-env.js +0 -12906
  1243. package/dist/esm/graphql/generated/latest/tada-env.js.map +0 -7
  1244. package/dist/esm/graphql/generated/latest/tsconfig.tada.js +0 -17
  1245. package/dist/esm/graphql/generated/latest/tsconfig.tada.js.map +0 -7
  1246. package/dist/esm/graphql/generated/queries.d.ts +0 -4980
  1247. package/dist/esm/graphql/generated/queries.js +0 -783
  1248. package/dist/esm/graphql/generated/queries.js.map +0 -7
  1249. package/dist/esm/graphql/index.d.ts +0 -1
  1250. package/dist/esm/graphql/index.js +0 -9
  1251. package/dist/esm/graphql/index.js.map +0 -7
  1252. package/dist/esm/graphql/schemas/2024.1/index.d.ts +0 -10
  1253. package/dist/esm/graphql/schemas/2024.1/index.js +0 -9
  1254. package/dist/esm/graphql/schemas/2024.1/index.js.map +0 -7
  1255. package/dist/esm/graphql/schemas/2024.4/index.d.ts +0 -10
  1256. package/dist/esm/graphql/schemas/2024.4/index.js +0 -9
  1257. package/dist/esm/graphql/schemas/2024.4/index.js.map +0 -7
  1258. package/dist/esm/graphql/schemas/latest/index.d.ts +0 -10
  1259. package/dist/esm/graphql/schemas/latest/index.js +0 -9
  1260. package/dist/esm/graphql/schemas/latest/index.js.map +0 -7
  1261. package/dist/esm/graphql/types.d.ts +0 -71
  1262. package/dist/esm/graphql/types.js +0 -1
  1263. package/dist/esm/graphql/types.js.map +0 -7
  1264. package/dist/esm/grpc/client.d.ts +0 -33
  1265. package/dist/esm/grpc/client.js +0 -33
  1266. package/dist/esm/grpc/client.js.map +0 -7
  1267. package/dist/esm/grpc/core.d.ts +0 -30
  1268. package/dist/esm/grpc/core.js +0 -640
  1269. package/dist/esm/grpc/core.js.map +0 -7
  1270. package/dist/esm/grpc/index.d.ts +0 -4
  1271. package/dist/esm/grpc/index.js +0 -7
  1272. package/dist/esm/grpc/index.js.map +0 -7
  1273. package/dist/esm/grpc/proto/google/protobuf/any.d.ts +0 -173
  1274. package/dist/esm/grpc/proto/google/protobuf/any.js +0 -119
  1275. package/dist/esm/grpc/proto/google/protobuf/any.js.map +0 -7
  1276. package/dist/esm/grpc/proto/google/protobuf/duration.d.ts +0 -104
  1277. package/dist/esm/grpc/proto/google/protobuf/duration.js +0 -68
  1278. package/dist/esm/grpc/proto/google/protobuf/duration.js.map +0 -7
  1279. package/dist/esm/grpc/proto/google/protobuf/empty.d.ts +0 -25
  1280. package/dist/esm/grpc/proto/google/protobuf/empty.js +0 -11
  1281. package/dist/esm/grpc/proto/google/protobuf/empty.js.map +0 -7
  1282. package/dist/esm/grpc/proto/google/protobuf/field_mask.d.ts +0 -231
  1283. package/dist/esm/grpc/proto/google/protobuf/field_mask.js +0 -53
  1284. package/dist/esm/grpc/proto/google/protobuf/field_mask.js.map +0 -7
  1285. package/dist/esm/grpc/proto/google/protobuf/struct.d.ts +0 -169
  1286. package/dist/esm/grpc/proto/google/protobuf/struct.js +0 -179
  1287. package/dist/esm/grpc/proto/google/protobuf/struct.js.map +0 -7
  1288. package/dist/esm/grpc/proto/google/protobuf/timestamp.d.ts +0 -145
  1289. package/dist/esm/grpc/proto/google/protobuf/timestamp.js +0 -103
  1290. package/dist/esm/grpc/proto/google/protobuf/timestamp.js.map +0 -7
  1291. package/dist/esm/grpc/proto/google/rpc/error_details.d.ts +0 -525
  1292. package/dist/esm/grpc/proto/google/rpc/error_details.js +0 -312
  1293. package/dist/esm/grpc/proto/google/rpc/error_details.js.map +0 -7
  1294. package/dist/esm/grpc/proto/google/rpc/status.d.ts +0 -46
  1295. package/dist/esm/grpc/proto/google/rpc/status.js +0 -28
  1296. package/dist/esm/grpc/proto/google/rpc/status.js.map +0 -7
  1297. package/dist/esm/grpc/proto/haneul/rpc/v2/argument.d.ts +0 -66
  1298. package/dist/esm/grpc/proto/haneul/rpc/v2/argument.js +0 -51
  1299. package/dist/esm/grpc/proto/haneul/rpc/v2/argument.js.map +0 -7
  1300. package/dist/esm/grpc/proto/haneul/rpc/v2/balance_change.d.ts +0 -34
  1301. package/dist/esm/grpc/proto/haneul/rpc/v2/balance_change.js +0 -36
  1302. package/dist/esm/grpc/proto/haneul/rpc/v2/balance_change.js.map +0 -7
  1303. package/dist/esm/grpc/proto/haneul/rpc/v2/bcs.d.ts +0 -30
  1304. package/dist/esm/grpc/proto/haneul/rpc/v2/bcs.js +0 -28
  1305. package/dist/esm/grpc/proto/haneul/rpc/v2/bcs.js.map +0 -7
  1306. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint.d.ts +0 -68
  1307. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint.js +0 -44
  1308. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint.js.map +0 -7
  1309. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_contents.d.ts +0 -74
  1310. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_contents.js +0 -69
  1311. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_contents.js.map +0 -7
  1312. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_summary.d.ts +0 -195
  1313. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_summary.js +0 -145
  1314. package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_summary.js.map +0 -7
  1315. package/dist/esm/grpc/proto/haneul/rpc/v2/effects.d.ts +0 -338
  1316. package/dist/esm/grpc/proto/haneul/rpc/v2/effects.js +0 -274
  1317. package/dist/esm/grpc/proto/haneul/rpc/v2/effects.js.map +0 -7
  1318. package/dist/esm/grpc/proto/haneul/rpc/v2/epoch.d.ts +0 -62
  1319. package/dist/esm/grpc/proto/haneul/rpc/v2/epoch.js +0 -53
  1320. package/dist/esm/grpc/proto/haneul/rpc/v2/epoch.js.map +0 -7
  1321. package/dist/esm/grpc/proto/haneul/rpc/v2/error_reason.d.ts +0 -17
  1322. package/dist/esm/grpc/proto/haneul/rpc/v2/error_reason.js +0 -10
  1323. package/dist/esm/grpc/proto/haneul/rpc/v2/error_reason.js.map +0 -7
  1324. package/dist/esm/grpc/proto/haneul/rpc/v2/event.d.ts +0 -88
  1325. package/dist/esm/grpc/proto/haneul/rpc/v2/event.js +0 -66
  1326. package/dist/esm/grpc/proto/haneul/rpc/v2/event.js.map +0 -7
  1327. package/dist/esm/grpc/proto/haneul/rpc/v2/executed_transaction.d.ts +0 -80
  1328. package/dist/esm/grpc/proto/haneul/rpc/v2/executed_transaction.js +0 -54
  1329. package/dist/esm/grpc/proto/haneul/rpc/v2/executed_transaction.js.map +0 -7
  1330. package/dist/esm/grpc/proto/haneul/rpc/v2/execution_status.d.ts +0 -843
  1331. package/dist/esm/grpc/proto/haneul/rpc/v2/execution_status.js +0 -493
  1332. package/dist/esm/grpc/proto/haneul/rpc/v2/execution_status.js.map +0 -7
  1333. package/dist/esm/grpc/proto/haneul/rpc/v2/gas_cost_summary.d.ts +0 -41
  1334. package/dist/esm/grpc/proto/haneul/rpc/v2/gas_cost_summary.js +0 -44
  1335. package/dist/esm/grpc/proto/haneul/rpc/v2/gas_cost_summary.js.map +0 -7
  1336. package/dist/esm/grpc/proto/haneul/rpc/v2/input.d.ts +0 -98
  1337. package/dist/esm/grpc/proto/haneul/rpc/v2/input.js +0 -70
  1338. package/dist/esm/grpc/proto/haneul/rpc/v2/input.js.map +0 -7
  1339. package/dist/esm/grpc/proto/haneul/rpc/v2/jwk.d.ts +0 -70
  1340. package/dist/esm/grpc/proto/haneul/rpc/v2/jwk.js +0 -68
  1341. package/dist/esm/grpc/proto/haneul/rpc/v2/jwk.js.map +0 -7
  1342. package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.client.d.ts +0 -95
  1343. package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.client.js +0 -107
  1344. package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.client.js.map +0 -7
  1345. package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.d.ts +0 -420
  1346. package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.js +0 -307
  1347. package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.js.map +0 -7
  1348. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package.d.ts +0 -579
  1349. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package.js +0 -460
  1350. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package.js.map +0 -7
  1351. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.client.d.ts +0 -61
  1352. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.client.js +0 -66
  1353. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.client.js.map +0 -7
  1354. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.d.ts +0 -229
  1355. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.js +0 -206
  1356. package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.js.map +0 -7
  1357. package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.client.d.ts +0 -41
  1358. package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.client.js +0 -40
  1359. package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.client.js.map +0 -7
  1360. package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.d.ts +0 -144
  1361. package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.js +0 -118
  1362. package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.js.map +0 -7
  1363. package/dist/esm/grpc/proto/haneul/rpc/v2/object.d.ts +0 -127
  1364. package/dist/esm/grpc/proto/haneul/rpc/v2/object.js +0 -93
  1365. package/dist/esm/grpc/proto/haneul/rpc/v2/object.js.map +0 -7
  1366. package/dist/esm/grpc/proto/haneul/rpc/v2/object_reference.d.ts +0 -34
  1367. package/dist/esm/grpc/proto/haneul/rpc/v2/object_reference.js +0 -36
  1368. package/dist/esm/grpc/proto/haneul/rpc/v2/object_reference.js.map +0 -7
  1369. package/dist/esm/grpc/proto/haneul/rpc/v2/owner.d.ts +0 -61
  1370. package/dist/esm/grpc/proto/haneul/rpc/v2/owner.js +0 -45
  1371. package/dist/esm/grpc/proto/haneul/rpc/v2/owner.js.map +0 -7
  1372. package/dist/esm/grpc/proto/haneul/rpc/v2/protocol_config.d.ts +0 -30
  1373. package/dist/esm/grpc/proto/haneul/rpc/v2/protocol_config.js +0 -42
  1374. package/dist/esm/grpc/proto/haneul/rpc/v2/protocol_config.js.map +0 -7
  1375. package/dist/esm/grpc/proto/haneul/rpc/v2/signature.d.ts +0 -630
  1376. package/dist/esm/grpc/proto/haneul/rpc/v2/signature.js +0 -494
  1377. package/dist/esm/grpc/proto/haneul/rpc/v2/signature.js.map +0 -7
  1378. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_scheme.d.ts +0 -40
  1379. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_scheme.js +0 -14
  1380. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_scheme.js.map +0 -7
  1381. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.client.d.ts +0 -35
  1382. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.client.js +0 -29
  1383. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.client.js.map +0 -7
  1384. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.d.ts +0 -79
  1385. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.js +0 -56
  1386. package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.js.map +0 -7
  1387. package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.client.d.ts +0 -71
  1388. package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.client.js +0 -79
  1389. package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.client.js.map +0 -7
  1390. package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.d.ts +0 -690
  1391. package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.js +0 -526
  1392. package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.js.map +0 -7
  1393. package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.client.d.ts +0 -55
  1394. package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.client.js +0 -39
  1395. package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.client.js.map +0 -7
  1396. package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.d.ts +0 -57
  1397. package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.js +0 -43
  1398. package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.js.map +0 -7
  1399. package/dist/esm/grpc/proto/haneul/rpc/v2/system_state.d.ts +0 -684
  1400. package/dist/esm/grpc/proto/haneul/rpc/v2/system_state.js +0 -654
  1401. package/dist/esm/grpc/proto/haneul/rpc/v2/system_state.js.map +0 -7
  1402. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction.d.ts +0 -1321
  1403. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction.js +0 -911
  1404. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction.js.map +0 -7
  1405. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.d.ts +0 -41
  1406. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.js +0 -40
  1407. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.js.map +0 -7
  1408. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.d.ts +0 -184
  1409. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.js +0 -139
  1410. package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.js.map +0 -7
  1411. package/dist/esm/jsonRpc/client.d.ts +0 -264
  1412. package/dist/esm/jsonRpc/client.js +0 -818
  1413. package/dist/esm/jsonRpc/client.js.map +0 -7
  1414. package/dist/esm/jsonRpc/core.d.ts +0 -93
  1415. package/dist/esm/jsonRpc/core.js +0 -624
  1416. package/dist/esm/jsonRpc/core.js.map +0 -7
  1417. package/dist/esm/jsonRpc/errors.d.ts +0 -12
  1418. package/dist/esm/jsonRpc/errors.js +0 -40
  1419. package/dist/esm/jsonRpc/errors.js.map +0 -7
  1420. package/dist/esm/jsonRpc/http-transport.d.ts +0 -42
  1421. package/dist/esm/jsonRpc/http-transport.js +0 -99
  1422. package/dist/esm/jsonRpc/http-transport.js.map +0 -7
  1423. package/dist/esm/jsonRpc/index.d.ts +0 -4
  1424. package/dist/esm/jsonRpc/index.js +0 -17
  1425. package/dist/esm/jsonRpc/index.js.map +0 -7
  1426. package/dist/esm/jsonRpc/json-rpc-resolver.d.ts +0 -4
  1427. package/dist/esm/jsonRpc/json-rpc-resolver.js +0 -295
  1428. package/dist/esm/jsonRpc/json-rpc-resolver.js.map +0 -7
  1429. package/dist/esm/jsonRpc/rpc-websocket-client.d.ts +0 -43
  1430. package/dist/esm/jsonRpc/rpc-websocket-client.js +0 -174
  1431. package/dist/esm/jsonRpc/rpc-websocket-client.js.map +0 -7
  1432. package/dist/esm/jsonRpc/types/chain.d.ts +0 -99
  1433. package/dist/esm/jsonRpc/types/chain.js +0 -1
  1434. package/dist/esm/jsonRpc/types/chain.js.map +0 -7
  1435. package/dist/esm/jsonRpc/types/changes.d.ts +0 -19
  1436. package/dist/esm/jsonRpc/types/changes.js +0 -1
  1437. package/dist/esm/jsonRpc/types/changes.js.map +0 -7
  1438. package/dist/esm/jsonRpc/types/coins.d.ts +0 -6
  1439. package/dist/esm/jsonRpc/types/coins.js +0 -1
  1440. package/dist/esm/jsonRpc/types/coins.js.map +0 -7
  1441. package/dist/esm/jsonRpc/types/common.d.ts +0 -2
  1442. package/dist/esm/jsonRpc/types/common.js +0 -1
  1443. package/dist/esm/jsonRpc/types/common.js.map +0 -7
  1444. package/dist/esm/jsonRpc/types/generated.d.ts +0 -1492
  1445. package/dist/esm/jsonRpc/types/generated.js +0 -1
  1446. package/dist/esm/jsonRpc/types/generated.js.map +0 -7
  1447. package/dist/esm/jsonRpc/types/index.d.ts +0 -6
  1448. package/dist/esm/jsonRpc/types/index.js +0 -1
  1449. package/dist/esm/jsonRpc/types/index.js.map +0 -7
  1450. package/dist/esm/jsonRpc/types/params.d.ts +0 -656
  1451. package/dist/esm/jsonRpc/types/params.js +0 -1
  1452. package/dist/esm/jsonRpc/types/params.js.map +0 -7
  1453. package/dist/esm/keypairs/ed25519/ed25519-hd-key.d.ts +0 -8
  1454. package/dist/esm/keypairs/ed25519/ed25519-hd-key.js +0 -57
  1455. package/dist/esm/keypairs/ed25519/ed25519-hd-key.js.map +0 -7
  1456. package/dist/esm/keypairs/ed25519/index.d.ts +0 -2
  1457. package/dist/esm/keypairs/ed25519/index.js +0 -11
  1458. package/dist/esm/keypairs/ed25519/index.js.map +0 -7
  1459. package/dist/esm/keypairs/ed25519/keypair.d.ts +0 -74
  1460. package/dist/esm/keypairs/ed25519/keypair.js +0 -147
  1461. package/dist/esm/keypairs/ed25519/keypair.js.map +0 -7
  1462. package/dist/esm/keypairs/ed25519/publickey.d.ts +0 -30
  1463. package/dist/esm/keypairs/ed25519/publickey.js +0 -72
  1464. package/dist/esm/keypairs/ed25519/publickey.js.map +0 -7
  1465. package/dist/esm/keypairs/passkey/index.d.ts +0 -3
  1466. package/dist/esm/keypairs/passkey/index.js +0 -9
  1467. package/dist/esm/keypairs/passkey/index.js.map +0 -7
  1468. package/dist/esm/keypairs/passkey/keypair.d.ts +0 -113
  1469. package/dist/esm/keypairs/passkey/keypair.js +0 -236
  1470. package/dist/esm/keypairs/passkey/keypair.js.map +0 -7
  1471. package/dist/esm/keypairs/passkey/publickey.d.ts +0 -72
  1472. package/dist/esm/keypairs/passkey/publickey.js +0 -148
  1473. package/dist/esm/keypairs/passkey/publickey.js.map +0 -7
  1474. package/dist/esm/keypairs/passkey/types.d.ts +0 -12
  1475. package/dist/esm/keypairs/passkey/types.js +0 -1
  1476. package/dist/esm/keypairs/passkey/types.js.map +0 -7
  1477. package/dist/esm/keypairs/secp256k1/index.d.ts +0 -2
  1478. package/dist/esm/keypairs/secp256k1/index.js +0 -11
  1479. package/dist/esm/keypairs/secp256k1/index.js.map +0 -7
  1480. package/dist/esm/keypairs/secp256k1/keypair.d.ts +0 -73
  1481. package/dist/esm/keypairs/secp256k1/keypair.js +0 -130
  1482. package/dist/esm/keypairs/secp256k1/keypair.js.map +0 -7
  1483. package/dist/esm/keypairs/secp256k1/publickey.d.ts +0 -30
  1484. package/dist/esm/keypairs/secp256k1/publickey.js +0 -77
  1485. package/dist/esm/keypairs/secp256k1/publickey.js.map +0 -7
  1486. package/dist/esm/keypairs/secp256r1/index.d.ts +0 -2
  1487. package/dist/esm/keypairs/secp256r1/index.js +0 -11
  1488. package/dist/esm/keypairs/secp256r1/index.js.map +0 -7
  1489. package/dist/esm/keypairs/secp256r1/keypair.d.ts +0 -73
  1490. package/dist/esm/keypairs/secp256r1/keypair.js +0 -124
  1491. package/dist/esm/keypairs/secp256r1/keypair.js.map +0 -7
  1492. package/dist/esm/keypairs/secp256r1/publickey.d.ts +0 -30
  1493. package/dist/esm/keypairs/secp256r1/publickey.js +0 -74
  1494. package/dist/esm/keypairs/secp256r1/publickey.js.map +0 -7
  1495. package/dist/esm/multisig/index.d.ts +0 -2
  1496. package/dist/esm/multisig/index.js +0 -8
  1497. package/dist/esm/multisig/index.js.map +0 -7
  1498. package/dist/esm/multisig/publickey.d.ts +0 -114
  1499. package/dist/esm/multisig/publickey.js +0 -243
  1500. package/dist/esm/multisig/publickey.js.map +0 -7
  1501. package/dist/esm/multisig/signer.d.ts +0 -20
  1502. package/dist/esm/multisig/signer.js +0 -85
  1503. package/dist/esm/multisig/signer.js.map +0 -7
  1504. package/dist/esm/package.json +0 -5
  1505. package/dist/esm/transactions/Arguments.d.ts +0 -49
  1506. package/dist/esm/transactions/Arguments.js +0 -13
  1507. package/dist/esm/transactions/Arguments.js.map +0 -7
  1508. package/dist/esm/transactions/Commands.d.ts +0 -57
  1509. package/dist/esm/transactions/Commands.js +0 -120
  1510. package/dist/esm/transactions/Commands.js.map +0 -7
  1511. package/dist/esm/transactions/Inputs.d.ts +0 -22
  1512. package/dist/esm/transactions/Inputs.js +0 -60
  1513. package/dist/esm/transactions/Inputs.js.map +0 -7
  1514. package/dist/esm/transactions/ObjectCache.d.ts +0 -83
  1515. package/dist/esm/transactions/ObjectCache.js +0 -221
  1516. package/dist/esm/transactions/ObjectCache.js.map +0 -7
  1517. package/dist/esm/transactions/Transaction.d.ts +0 -710
  1518. package/dist/esm/transactions/Transaction.js +0 -668
  1519. package/dist/esm/transactions/Transaction.js.map +0 -7
  1520. package/dist/esm/transactions/TransactionData.d.ts +0 -73
  1521. package/dist/esm/transactions/TransactionData.js +0 -413
  1522. package/dist/esm/transactions/TransactionData.js.map +0 -7
  1523. package/dist/esm/transactions/__tests__/Transaction.test.d.ts +0 -1
  1524. package/dist/esm/transactions/__tests__/bcs.test.d.ts +0 -1
  1525. package/dist/esm/transactions/data/internal.d.ts +0 -1010
  1526. package/dist/esm/transactions/data/internal.js +0 -215
  1527. package/dist/esm/transactions/data/internal.js.map +0 -7
  1528. package/dist/esm/transactions/data/v1.d.ts +0 -312
  1529. package/dist/esm/transactions/data/v1.js +0 -481
  1530. package/dist/esm/transactions/data/v1.js.map +0 -7
  1531. package/dist/esm/transactions/data/v2.d.ts +0 -153
  1532. package/dist/esm/transactions/data/v2.js +0 -121
  1533. package/dist/esm/transactions/data/v2.js.map +0 -7
  1534. package/dist/esm/transactions/executor/caching.d.ts +0 -31
  1535. package/dist/esm/transactions/executor/caching.js +0 -94
  1536. package/dist/esm/transactions/executor/caching.js.map +0 -7
  1537. package/dist/esm/transactions/executor/parallel.d.ts +0 -37
  1538. package/dist/esm/transactions/executor/parallel.js +0 -360
  1539. package/dist/esm/transactions/executor/parallel.js.map +0 -7
  1540. package/dist/esm/transactions/executor/queue.d.ts +0 -11
  1541. package/dist/esm/transactions/executor/queue.js +0 -65
  1542. package/dist/esm/transactions/executor/queue.js.map +0 -7
  1543. package/dist/esm/transactions/executor/serial.d.ts +0 -31
  1544. package/dist/esm/transactions/executor/serial.js +0 -117
  1545. package/dist/esm/transactions/executor/serial.js.map +0 -7
  1546. package/dist/esm/transactions/hash.d.ts +0 -7
  1547. package/dist/esm/transactions/hash.js +0 -12
  1548. package/dist/esm/transactions/hash.js.map +0 -7
  1549. package/dist/esm/transactions/index.d.ts +0 -21
  1550. package/dist/esm/transactions/index.js +0 -39
  1551. package/dist/esm/transactions/index.js.map +0 -7
  1552. package/dist/esm/transactions/intents/CoinWithBalance.d.ts +0 -9
  1553. package/dist/esm/transactions/intents/CoinWithBalance.js +0 -168
  1554. package/dist/esm/transactions/intents/CoinWithBalance.js.map +0 -7
  1555. package/dist/esm/transactions/object.d.ts +0 -16
  1556. package/dist/esm/transactions/object.js +0 -58
  1557. package/dist/esm/transactions/object.js.map +0 -7
  1558. package/dist/esm/transactions/plugins/NamedPackagesPlugin.d.ts +0 -48
  1559. package/dist/esm/transactions/plugins/NamedPackagesPlugin.js +0 -47
  1560. package/dist/esm/transactions/plugins/NamedPackagesPlugin.js.map +0 -7
  1561. package/dist/esm/transactions/pure.d.ts +0 -20
  1562. package/dist/esm/transactions/pure.js +0 -37
  1563. package/dist/esm/transactions/pure.js.map +0 -7
  1564. package/dist/esm/transactions/resolve.d.ts +0 -13
  1565. package/dist/esm/transactions/resolve.js +0 -78
  1566. package/dist/esm/transactions/resolve.js.map +0 -7
  1567. package/dist/esm/transactions/serializer.d.ts +0 -7
  1568. package/dist/esm/transactions/serializer.js +0 -162
  1569. package/dist/esm/transactions/serializer.js.map +0 -7
  1570. package/dist/esm/transactions/utils.d.ts +0 -10
  1571. package/dist/esm/transactions/utils.js +0 -115
  1572. package/dist/esm/transactions/utils.js.map +0 -7
  1573. package/dist/esm/utils/constants.d.ts +0 -10
  1574. package/dist/esm/utils/constants.js +0 -24
  1575. package/dist/esm/utils/constants.js.map +0 -7
  1576. package/dist/esm/utils/derived-objects.d.ts +0 -5
  1577. package/dist/esm/utils/derived-objects.js +0 -14
  1578. package/dist/esm/utils/derived-objects.js.map +0 -7
  1579. package/dist/esm/utils/dynamic-fields.d.ts +0 -2
  1580. package/dist/esm/utils/dynamic-fields.js +0 -21
  1581. package/dist/esm/utils/dynamic-fields.js.map +0 -7
  1582. package/dist/esm/utils/format.d.ts +0 -2
  1583. package/dist/esm/utils/format.js +0 -16
  1584. package/dist/esm/utils/format.js.map +0 -7
  1585. package/dist/esm/utils/haneul-types.d.ts +0 -26
  1586. package/dist/esm/utils/haneul-types.js +0 -71
  1587. package/dist/esm/utils/haneul-types.js.map +0 -7
  1588. package/dist/esm/utils/haneulns.d.ts +0 -2
  1589. package/dist/esm/utils/haneulns.js +0 -37
  1590. package/dist/esm/utils/haneulns.js.map +0 -7
  1591. package/dist/esm/utils/index.d.ts +0 -9
  1592. package/dist/esm/utils/index.js +0 -80
  1593. package/dist/esm/utils/index.js.map +0 -7
  1594. package/dist/esm/utils/move-registry.d.ts +0 -6
  1595. package/dist/esm/utils/move-registry.js +0 -25
  1596. package/dist/esm/utils/move-registry.js.map +0 -7
  1597. package/dist/esm/verify/index.d.ts +0 -1
  1598. package/dist/esm/verify/index.js +0 -15
  1599. package/dist/esm/verify/index.js.map +0 -7
  1600. package/dist/esm/verify/verify.d.ts +0 -21
  1601. package/dist/esm/verify/verify.js +0 -104
  1602. package/dist/esm/verify/verify.js.map +0 -7
  1603. package/dist/esm/version.d.ts +0 -2
  1604. package/dist/esm/version.js +0 -7
  1605. package/dist/esm/version.js.map +0 -7
  1606. package/dist/esm/zklogin/address.d.ts +0 -16
  1607. package/dist/esm/zklogin/address.js +0 -72
  1608. package/dist/esm/zklogin/address.js.map +0 -7
  1609. package/dist/esm/zklogin/bcs.d.ts +0 -28
  1610. package/dist/esm/zklogin/bcs.js +0 -22
  1611. package/dist/esm/zklogin/bcs.js.map +0 -7
  1612. package/dist/esm/zklogin/index.d.ts +0 -9
  1613. package/dist/esm/zklogin/index.js +0 -35
  1614. package/dist/esm/zklogin/index.js.map +0 -7
  1615. package/dist/esm/zklogin/jwt-decode.d.ts +0 -47
  1616. package/dist/esm/zklogin/jwt-decode.js +0 -65
  1617. package/dist/esm/zklogin/jwt-decode.js.map +0 -7
  1618. package/dist/esm/zklogin/jwt-utils.d.ts +0 -12
  1619. package/dist/esm/zklogin/jwt-utils.js +0 -101
  1620. package/dist/esm/zklogin/jwt-utils.js.map +0 -7
  1621. package/dist/esm/zklogin/nonce.d.ts +0 -4
  1622. package/dist/esm/zklogin/nonce.js +0 -34
  1623. package/dist/esm/zklogin/nonce.js.map +0 -7
  1624. package/dist/esm/zklogin/poseidon.d.ts +0 -2
  1625. package/dist/esm/zklogin/poseidon.js +0 -60
  1626. package/dist/esm/zklogin/poseidon.js.map +0 -7
  1627. package/dist/esm/zklogin/publickey.d.ts +0 -87
  1628. package/dist/esm/zklogin/publickey.js +0 -237
  1629. package/dist/esm/zklogin/publickey.js.map +0 -7
  1630. package/dist/esm/zklogin/signature.d.ts +0 -23
  1631. package/dist/esm/zklogin/signature.js +0 -28
  1632. package/dist/esm/zklogin/signature.js.map +0 -7
  1633. package/dist/esm/zklogin/utils.d.ts +0 -16
  1634. package/dist/esm/zklogin/utils.js +0 -77
  1635. package/dist/esm/zklogin/utils.js.map +0 -7
  1636. package/dist/tsconfig.esm.tsbuildinfo +0 -1
  1637. package/dist/tsconfig.tsbuildinfo +0 -1
  1638. package/experimental/package.json +0 -6
  1639. package/faucet/package.json +0 -6
  1640. package/graphql/package.json +0 -6
  1641. package/graphql/schemas/2024.1/package.json +0 -6
  1642. package/graphql/schemas/2024.4/package.json +0 -6
  1643. package/graphql/schemas/latest/package.json +0 -6
  1644. package/grpc/package.json +0 -6
  1645. package/jsonRpc/package.json +0 -6
  1646. package/keypairs/ed25519/package.json +0 -6
  1647. package/keypairs/passkey/package.json +0 -6
  1648. package/keypairs/secp256k1/package.json +0 -6
  1649. package/keypairs/secp256r1/package.json +0 -6
  1650. package/multisig/package.json +0 -6
  1651. package/src/client/network.ts +0 -17
  1652. package/src/experimental/client.ts +0 -60
  1653. package/src/experimental/core.ts +0 -197
  1654. package/src/experimental/errors.ts +0 -37
  1655. package/src/experimental/index.ts +0 -24
  1656. package/src/experimental/mvr.ts +0 -488
  1657. package/src/experimental/transports/utils.ts +0 -117
  1658. package/src/experimental/types.ts +0 -569
  1659. package/src/graphql/generated/2024.1/schema.graphql +0 -4182
  1660. package/src/graphql/generated/2024.1/tada-env.ts +0 -13144
  1661. package/src/graphql/generated/2024.1/tsconfig.tada.json +0 -11
  1662. package/src/graphql/generated/2024.4/schema.graphql +0 -4211
  1663. package/src/graphql/generated/2024.4/tada-env.ts +0 -13290
  1664. package/src/graphql/generated/2024.4/tsconfig.tada.json +0 -11
  1665. package/src/graphql/generated/latest/schema.graphql +0 -4312
  1666. package/src/graphql/generated/latest/tada-env.ts +0 -12928
  1667. package/src/graphql/generated/latest/tsconfig.tada.json +0 -11
  1668. package/src/graphql/schemas/2024.1/index.ts +0 -17
  1669. package/src/graphql/schemas/2024.4/index.ts +0 -17
  1670. package/src/graphql/schemas/latest/index.ts +0 -17
  1671. package/src/jsonRpc/json-rpc-resolver.ts +0 -420
  1672. package/transactions/package.json +0 -6
  1673. package/utils/package.json +0 -6
  1674. package/verify/package.json +0 -6
  1675. package/zklogin/package.json +0 -6
  1676. /package/src/{experimental → client}/cache.ts +0 -0
@@ -1,17 +0,0 @@
1
- "use strict";
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __copyProps = (to, from, except, desc) => {
7
- if (from && typeof from === "object" || typeof from === "function") {
8
- for (let key of __getOwnPropNames(from))
9
- if (!__hasOwnProp.call(to, key) && key !== except)
10
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11
- }
12
- return to;
13
- };
14
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
15
- var generated_exports = {};
16
- module.exports = __toCommonJS(generated_exports);
17
- //# sourceMappingURL=generated.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../../src/jsonRpc/types/generated.ts"],
4
- "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\n/**\n * ######################################\n * ### DO NOT EDIT THIS FILE DIRECTLY ###\n * ######################################\n *\n * This file is generated from:\n * /crates/sui-open-rpc/spec/openrpc.json\n */\n\nexport interface Balance {\n\tcoinObjectCount: number;\n\tcoinType: string;\n\tlockedBalance: {\n\t\t[key: string]: string;\n\t};\n\ttotalBalance: string;\n}\nexport interface BalanceChange {\n\t/**\n\t * The amount indicate the balance value changes, negative amount means spending coin value and\n\t * positive means receiving coin value.\n\t */\n\tamount: string;\n\tcoinType: string;\n\t/** Owner of the balance change */\n\towner: ObjectOwner;\n}\nexport interface Checkpoint {\n\t/** Commitments to checkpoint state */\n\tcheckpointCommitments: CheckpointCommitment[];\n\t/** Checkpoint digest */\n\tdigest: string;\n\t/** Present only on the final checkpoint of the epoch. */\n\tendOfEpochData?: EndOfEpochData | null;\n\t/** Checkpoint's epoch ID */\n\tepoch: string;\n\t/**\n\t * The running total gas costs of all transactions included in the current epoch so far until this\n\t * checkpoint.\n\t */\n\tepochRollingGasCostSummary: GasCostSummary;\n\t/** Total number of transactions committed since genesis, including those in this checkpoint. */\n\tnetworkTotalTransactions: string;\n\t/** Digest of the previous checkpoint */\n\tpreviousDigest?: string | null;\n\t/** Checkpoint sequence number */\n\tsequenceNumber: string;\n\t/**\n\t * Timestamp of the checkpoint - number of milliseconds from the Unix epoch Checkpoint timestamps are\n\t * monotonic, but not strongly monotonic - subsequent checkpoints can have same timestamp if they\n\t * originate from the same underlining consensus commit\n\t */\n\ttimestampMs: string;\n\t/** Transaction digests */\n\ttransactions: string[];\n\t/** Validator Signature */\n\tvalidatorSignature: string;\n}\nexport type CheckpointCommitment = {\n\tECMHLiveObjectSetDigest: ECMHLiveObjectSetDigest;\n};\nexport type CheckpointId = string | string;\n/** A claim consists of value and index_mod_4. */\nexport interface Claim {\n\tindexMod4: number;\n\tvalue: string;\n}\nexport interface CoinStruct {\n\tbalance: string;\n\tcoinObjectId: string;\n\tcoinType: string;\n\tdigest: string;\n\tpreviousTransaction: string;\n\tversion: string;\n}\n/** RPC representation of the [Committee] type. */\nexport interface CommitteeInfo {\n\tepoch: string;\n\tvalidators: [string, string][];\n}\n/** Unlike [enum Signature], [enum CompressedSignature] does not contain public key. */\nexport type CompressedSignature =\n\t| {\n\t\t\tEd25519: string;\n\t }\n\t| {\n\t\t\tSecp256k1: string;\n\t }\n\t| {\n\t\t\tSecp256r1: string;\n\t }\n\t| {\n\t\t\tZkLogin: string;\n\t }\n\t| {\n\t\t\tPasskey: string;\n\t };\n/** Uses an enum to allow for future expansion of the ConsensusDeterminedVersionAssignments. */\nexport type ConsensusDeterminedVersionAssignments =\n\t| {\n\t\t\tCancelledTransactions: [string, [string, string][]][];\n\t }\n\t| {\n\t\t\tCancelledTransactionsV2: [string, [[string, string], string][]][];\n\t };\nexport type HaneulParsedData =\n\t| {\n\t\t\tdataType: 'moveObject';\n\t\t\tfields: MoveStruct;\n\t\t\thasPublicTransfer: boolean;\n\t\t\ttype: string;\n\t }\n\t| {\n\t\t\tdataType: 'package';\n\t\t\tdisassembled: {\n\t\t\t\t[key: string]: unknown;\n\t\t\t};\n\t };\nexport interface DelegatedStake {\n\tstakes: StakeObject[];\n\t/** Staking pool object id. */\n\tstakingPool: string;\n\t/** Validator's Address. */\n\tvalidatorAddress: string;\n}\n/** Additional rguments supplied to dev inspect beyond what is allowed in today's API. */\nexport interface DevInspectArgs {\n\t/** The gas budget for the transaction. */\n\tgasBudget?: string | null;\n\t/** The gas objects used to pay for the transaction. */\n\tgasObjects?: [string, string, string][] | null;\n\t/** The sponsor of the gas for the transaction, might be different from the sender. */\n\tgasSponsor?: string | null;\n\t/** Whether to return the raw transaction data and effects. */\n\tshowRawTxnDataAndEffects?: boolean | null;\n\t/** Whether to skip transaction checks for the transaction. */\n\tskipChecks?: boolean | null;\n}\n/** The response from processing a dev inspect transaction */\nexport interface DevInspectResults {\n\t/**\n\t * Summary of effects that likely would be generated if the transaction is actually run. Note however,\n\t * that not all dev-inspect transactions are actually usable as transactions so it might not be\n\t * possible actually generate these effects from a normal transaction.\n\t */\n\teffects: TransactionEffects;\n\t/** Execution error from executing the transactions */\n\terror?: string | null;\n\t/** Events that likely would be generated if the transaction is actually run. */\n\tevents: HaneulEvent[];\n\t/** The raw effects of the transaction that was dev inspected. */\n\trawEffects?: number[];\n\t/** The raw transaction data that was dev inspected. */\n\trawTxnData?: number[];\n\t/** Execution results (including return values) from executing the transactions */\n\tresults?: SuiExecutionResult[] | null;\n}\nexport interface DisplayFieldsResponse {\n\tdata?: {\n\t\t[key: string]: string;\n\t} | null;\n\terror?: ObjectResponseError | null;\n}\nexport interface DryRunTransactionBlockResponse {\n\tbalanceChanges: BalanceChange[];\n\teffects: TransactionEffects;\n\tevents: HaneulEvent[];\n\texecutionErrorSource?: string | null;\n\tinput: TransactionBlockData;\n\tobjectChanges: HaneulObjectChange[];\n\tsuggestedGasPrice?: string | null;\n}\nexport type DynamicFieldInfo =\n\t| {\n\t\t\tdigest: string;\n\t\t\tname: DynamicFieldName;\n\t\t\tobjectId: string;\n\t\t\tobjectType: string;\n\t\t\ttype: DynamicFieldType;\n\t\t\tversion: string;\n\t\t\tbcsEncoding: 'base64';\n\t\t\tbcsName: string;\n\t }\n\t| {\n\t\t\tdigest: string;\n\t\t\tname: DynamicFieldName;\n\t\t\tobjectId: string;\n\t\t\tobjectType: string;\n\t\t\ttype: DynamicFieldType;\n\t\t\tversion: string;\n\t\t\tbcsEncoding: 'base58';\n\t\t\tbcsName: string;\n\t };\nexport interface DynamicFieldName {\n\ttype: string;\n\tvalue: unknown;\n}\nexport type DynamicFieldType = 'DynamicField' | 'DynamicObject';\n/** The Sha256 digest of an EllipticCurveMultisetHash committing to the live object set. */\nexport interface ECMHLiveObjectSetDigest {\n\tdigest: number[];\n}\nexport interface EndOfEpochData {\n\t/** Commitments to epoch specific state (e.g. live object set) */\n\tepochCommitments: CheckpointCommitment[];\n\t/**\n\t * next_epoch_committee is `Some` if and only if the current checkpoint is the last checkpoint of an\n\t * epoch. Therefore next_epoch_committee can be used to pick the last checkpoint of an epoch, which is\n\t * often useful to get epoch level summary stats like total gas cost of an epoch, or the total number\n\t * of transactions from genesis to the end of an epoch. The committee is stored as a vector of\n\t * validator pub key and stake pairs. The vector should be sorted based on the Committee data\n\t * structure.\n\t */\n\tnextEpochCommittee: [string, string][];\n\t/**\n\t * The protocol version that is in effect during the epoch that starts immediately after this\n\t * checkpoint.\n\t */\n\tnextEpochProtocolVersion: string;\n}\nexport type HaneulEvent =\n\t| {\n\t\t\t/**\n\t\t\t * Sequential event ID, ie (transaction seq number, event seq number). 1) Serves as a unique event ID\n\t\t\t * for each fullnode 2) Also serves to sequence events for the purposes of pagination and querying. A\n\t\t\t * higher id is an event seen later by that fullnode. This ID is the \"cursor\" for event querying.\n\t\t\t */\n\t\t\tid: EventId;\n\t\t\t/** Move package where this event was emitted. */\n\t\t\tpackageId: string;\n\t\t\t/** Parsed json value of the event */\n\t\t\tparsedJson: unknown;\n\t\t\t/** Sender's Haneul address. */\n\t\t\tsender: string;\n\t\t\t/** UTC timestamp in milliseconds since epoch (1/1/1970) */\n\t\t\ttimestampMs?: string | null;\n\t\t\t/** Move module where this event was emitted. */\n\t\t\ttransactionModule: string;\n\t\t\t/** Move event type. */\n\t\t\ttype: string;\n\t\t\tbcs: string;\n\t\t\tbcsEncoding: 'base64';\n\t }\n\t| {\n\t\t\t/**\n\t\t\t * Sequential event ID, ie (transaction seq number, event seq number). 1) Serves as a unique event ID\n\t\t\t * for each fullnode 2) Also serves to sequence events for the purposes of pagination and querying. A\n\t\t\t * higher id is an event seen later by that fullnode. This ID is the \"cursor\" for event querying.\n\t\t\t */\n\t\t\tid: EventId;\n\t\t\t/** Move package where this event was emitted. */\n\t\t\tpackageId: string;\n\t\t\t/** Parsed json value of the event */\n\t\t\tparsedJson: unknown;\n\t\t\t/** Sender's Haneul address. */\n\t\t\tsender: string;\n\t\t\t/** UTC timestamp in milliseconds since epoch (1/1/1970) */\n\t\t\ttimestampMs?: string | null;\n\t\t\t/** Move module where this event was emitted. */\n\t\t\ttransactionModule: string;\n\t\t\t/** Move event type. */\n\t\t\ttype: string;\n\t\t\tbcs: string;\n\t\t\tbcsEncoding: 'base58';\n\t };\nexport type HaneulEventFilter =\n\t/** Return all events. */\n\t| {\n\t\t\tAll: [];\n\t } /** Return events that match any of the given filters. Only supported on event subscriptions. */\n\t| {\n\t\t\tAny: HaneulEventFilter[];\n\t } /** Query by sender address. */\n\t| {\n\t\t\tSender: string;\n\t } /** Return events emitted by the given transaction. */\n\t| {\n\t\t\tTransaction: string;\n\t } /**\n\t * Return events emitted in a specified Move module. If the event is defined in Module A but emitted in\n\t * a tx with Module B, query `MoveModule` by module B returns the event. Query `MoveEventModule` by\n\t * module A returns the event too.\n\t */\n\t| {\n\t\t\tMoveModule: {\n\t\t\t\t/** the module name */\n\t\t\t\tmodule: string;\n\t\t\t\t/** the Move package ID */\n\t\t\t\tpackage: string;\n\t\t\t};\n\t } /**\n\t * Return events with the given Move event struct name (struct tag). For example, if the event is\n\t * defined in `0xabcd::MyModule`, and named `Foo`, then the struct tag is `0xabcd::MyModule::Foo`.\n\t */\n\t| {\n\t\t\tMoveEventType: string;\n\t } /**\n\t * Return events with the given Move module name where the event struct is defined. If the event is\n\t * defined in Module A but emitted in a tx with Module B, query `MoveEventModule` by module A returns\n\t * the event. Query `MoveModule` by module B returns the event too.\n\t */\n\t| {\n\t\t\tMoveEventModule: {\n\t\t\t\t/** the module name */\n\t\t\t\tmodule: string;\n\t\t\t\t/** the Move package ID */\n\t\t\t\tpackage: string;\n\t\t\t};\n\t } /** Return events emitted in [start_time, end_time] interval */\n\t| {\n\t\t\tTimeRange: {\n\t\t\t\t/** right endpoint of time interval, milliseconds since epoch, exclusive */\n\t\t\t\tendTime: string;\n\t\t\t\t/** left endpoint of time interval, milliseconds since epoch, inclusive */\n\t\t\t\tstartTime: string;\n\t\t\t};\n\t };\n/** Unique ID of a Haneul Event, the ID is a combination of transaction digest and event seq number. */\nexport interface EventId {\n\teventSeq: string;\n\ttxDigest: string;\n}\nexport type ExecuteTransactionRequestType = 'WaitForEffectsCert' | 'WaitForLocalExecution';\nexport type ExecutionStatus = {\n\tstatus: 'success' | 'failure';\n\terror?: string;\n};\n/**\n * Summary of the charges in a transaction. Storage is charged independently of computation. There are\n * 3 parts to the storage charges: `storage_cost`: it is the charge of storage at the time the\n * transaction is executed. The cost of storage is the number of bytes of the objects being mutated\n * multiplied by a variable storage cost per byte `storage_rebate`: this is the amount a user gets back\n * when manipulating an object. The `storage_rebate` is the `storage_cost` for an object minus fees.\n * `non_refundable_storage_fee`: not all the value of the object storage cost is given back to user and\n * there is a small fraction that is kept by the system. This value tracks that charge.\n *\n * When looking at a gas cost summary the amount charged to the user is\n * `computation_cost + storage_cost - storage_rebate` and that is the amount that is deducted from the\n * gas coins. `non_refundable_storage_fee` is collected from the objects being mutated/deleted and it\n * is tracked by the system in storage funds.\n *\n * Objects deleted, including the older versions of objects mutated, have the storage field on the\n * objects added up to a pool of \"potential rebate\". This rebate then is reduced by the \"nonrefundable\n * rate\" such that:\n * `potential_rebate(storage cost of deleted/mutated objects) = storage_rebate + non_refundable_storage_fee`\n */\nexport interface GasCostSummary {\n\t/** Cost of computation/execution */\n\tcomputationCost: string;\n\t/** The fee for the rebate. The portion of the storage rebate kept by the system. */\n\tnonRefundableStorageFee: string;\n\t/** Storage cost, it's the sum of all storage cost for all objects created or mutated. */\n\tstorageCost: string;\n\t/**\n\t * The amount of storage cost refunded to the user for all objects deleted or mutated in the\n\t * transaction.\n\t */\n\tstorageRebate: string;\n}\nexport interface HaneulGasData {\n\tbudget: string;\n\towner: string;\n\tpayment: HaneulObjectRef[];\n\tprice: string;\n}\nexport interface GetPastObjectRequest {\n\t/** the ID of the queried object */\n\tobjectId: string;\n\t/** the version of the queried object. */\n\tversion: string;\n}\nexport type InputObjectKind =\n\t| {\n\t\t\tMovePackage: string;\n\t }\n\t| {\n\t\t\tImmOrOwnedMoveObject: HaneulObjectRef;\n\t }\n\t| {\n\t\t\tSharedMoveObject: {\n\t\t\t\tid: string;\n\t\t\t\tinitial_shared_version: string;\n\t\t\t\tmutable?: boolean;\n\t\t\t};\n\t };\nexport interface MoveCallParams {\n\targuments: unknown[];\n\tfunction: string;\n\tmodule: string;\n\tpackageObjectId: string;\n\ttypeArguments?: string[];\n}\nexport type HaneulMoveFunctionArgType =\n\t| 'Pure'\n\t| {\n\t\t\tObject: ObjectValueKind;\n\t };\nexport type MoveStruct =\n\t| MoveValue[]\n\t| {\n\t\t\tfields: {\n\t\t\t\t[key: string]: MoveValue;\n\t\t\t};\n\t\t\ttype: string;\n\t }\n\t| {\n\t\t\t[key: string]: MoveValue;\n\t };\nexport type MoveValue =\n\t| number\n\t| boolean\n\t| string\n\t| MoveValue[]\n\t| string\n\t| {\n\t\t\tid: string;\n\t }\n\t| MoveStruct\n\t| null\n\t| MoveVariant;\nexport interface MoveVariant {\n\tfields: {\n\t\t[key: string]: MoveValue;\n\t};\n\ttype: string;\n\tvariant: string;\n}\n/** The struct that contains signatures and public keys necessary for authenticating a MultiSig. */\nexport interface MultiSig {\n\t/** A bitmap that indicates the position of which public key the signature should be authenticated with. */\n\tbitmap: number;\n\t/**\n\t * The public key encoded with each public key with its signature scheme used along with the\n\t * corresponding weight.\n\t */\n\tmultisig_pk: MultiSigPublicKey;\n\t/** The plain signature encoded with signature scheme. */\n\tsigs: CompressedSignature[];\n}\n/**\n * Deprecated, use [struct MultiSig] instead. The struct that contains signatures and public keys\n * necessary for authenticating a MultiSigLegacy.\n */\nexport interface MultiSigLegacy {\n\t/** A bitmap that indicates the position of which public key the signature should be authenticated with. */\n\tbitmap: string;\n\t/**\n\t * The public key encoded with each public key with its signature scheme used along with the\n\t * corresponding weight.\n\t */\n\tmultisig_pk: MultiSigPublicKeyLegacy;\n\t/** The plain signature encoded with signature scheme. */\n\tsigs: CompressedSignature[];\n}\n/** The struct that contains the public key used for authenticating a MultiSig. */\nexport interface MultiSigPublicKey {\n\t/** A list of public key and its corresponding weight. */\n\tpk_map: [PublicKey, number][];\n\t/**\n\t * If the total weight of the public keys corresponding to verified signatures is larger than\n\t * threshold, the MultiSig is verified.\n\t */\n\tthreshold: number;\n}\n/**\n * Deprecated, use [struct MultiSigPublicKey] instead. The struct that contains the public key used for\n * authenticating a MultiSig.\n */\nexport interface MultiSigPublicKeyLegacy {\n\t/** A list of public key and its corresponding weight. */\n\tpk_map: [PublicKey, number][];\n\t/**\n\t * If the total weight of the public keys corresponding to verified signatures is larger than\n\t * threshold, the MultiSig is verified.\n\t */\n\tthreshold: number;\n}\n/**\n * ObjectChange are derived from the object mutations in the TransactionEffect to provide richer object\n * information.\n */\nexport type HaneulObjectChange =\n\t/** Module published */\n\t| {\n\t\t\tdigest: string;\n\t\t\tmodules: string[];\n\t\t\tpackageId: string;\n\t\t\ttype: 'published';\n\t\t\tversion: string;\n\t } /** Transfer objects to new address / wrap in another object */\n\t| {\n\t\t\tdigest: string;\n\t\t\tobjectId: string;\n\t\t\tobjectType: string;\n\t\t\trecipient: ObjectOwner;\n\t\t\tsender: string;\n\t\t\ttype: 'transferred';\n\t\t\tversion: string;\n\t } /** Object mutated. */\n\t| {\n\t\t\tdigest: string;\n\t\t\tobjectId: string;\n\t\t\tobjectType: string;\n\t\t\towner: ObjectOwner;\n\t\t\tpreviousVersion: string;\n\t\t\tsender: string;\n\t\t\ttype: 'mutated';\n\t\t\tversion: string;\n\t } /** Delete object */\n\t| {\n\t\t\tobjectId: string;\n\t\t\tobjectType: string;\n\t\t\tsender: string;\n\t\t\ttype: 'deleted';\n\t\t\tversion: string;\n\t } /** Wrapped object */\n\t| {\n\t\t\tobjectId: string;\n\t\t\tobjectType: string;\n\t\t\tsender: string;\n\t\t\ttype: 'wrapped';\n\t\t\tversion: string;\n\t } /** New object creation */\n\t| {\n\t\t\tdigest: string;\n\t\t\tobjectId: string;\n\t\t\tobjectType: string;\n\t\t\towner: ObjectOwner;\n\t\t\tsender: string;\n\t\t\ttype: 'created';\n\t\t\tversion: string;\n\t };\nexport interface HaneulObjectData {\n\t/**\n\t * Move object content or package content in BCS, default to be None unless\n\t * HaneulObjectDataOptions.showBcs is set to true\n\t */\n\tbcs?: RawData | null;\n\t/**\n\t * Move object content or package content, default to be None unless HaneulObjectDataOptions.showContent\n\t * is set to true\n\t */\n\tcontent?: HaneulParsedData | null;\n\t/** Base64 string representing the object digest */\n\tdigest: string;\n\t/**\n\t * The Display metadata for frontend UI rendering, default to be None unless\n\t * HaneulObjectDataOptions.showContent is set to true This can also be None if the struct type does not\n\t * have Display defined See more details in <https://forums.sui.io/t/nft-object-display-proposal/4872>\n\t */\n\tdisplay?: DisplayFieldsResponse | null;\n\tobjectId: string;\n\t/** The owner of this object. Default to be None unless HaneulObjectDataOptions.showOwner is set to true */\n\towner?: ObjectOwner | null;\n\t/**\n\t * The digest of the transaction that created or last mutated this object. Default to be None unless\n\t * HaneulObjectDataOptions.showPreviousTransaction is set to true\n\t */\n\tpreviousTransaction?: string | null;\n\t/**\n\t * The amount of SUI we would rebate if this object gets deleted. This number is re-calculated each\n\t * time the object is mutated based on the present storage gas price.\n\t */\n\tstorageRebate?: string | null;\n\t/** The type of the object. Default to be None unless HaneulObjectDataOptions.showType is set to true */\n\ttype?: string | null;\n\t/** Object version. */\n\tversion: string;\n}\nexport interface HaneulObjectDataOptions {\n\t/** Whether to show the content in BCS format. Default to be False */\n\tshowBcs?: boolean;\n\t/**\n\t * Whether to show the content(i.e., package content or Move struct content) of the object. Default to\n\t * be False\n\t */\n\tshowContent?: boolean;\n\t/** Whether to show the Display metadata of the object for frontend rendering. Default to be False */\n\tshowDisplay?: boolean;\n\t/** Whether to show the owner of the object. Default to be False */\n\tshowOwner?: boolean;\n\t/** Whether to show the previous transaction digest of the object. Default to be False */\n\tshowPreviousTransaction?: boolean;\n\t/** Whether to show the storage rebate of the object. Default to be False */\n\tshowStorageRebate?: boolean;\n\t/** Whether to show the type of the object. Default to be False */\n\tshowType?: boolean;\n}\nexport type ObjectRead =\n\t/** The object exists and is found with this version */\n\t| {\n\t\t\tdetails: HaneulObjectData;\n\t\t\tstatus: 'VersionFound';\n\t } /** The object does not exist */\n\t| {\n\t\t\tdetails: string;\n\t\t\tstatus: 'ObjectNotExists';\n\t } /** The object is found to be deleted with this version */\n\t| {\n\t\t\tdetails: HaneulObjectRef;\n\t\t\tstatus: 'ObjectDeleted';\n\t } /** The object exists but not found with this version */\n\t| {\n\t\t\tdetails: [string, string];\n\t\t\tstatus: 'VersionNotFound';\n\t } /** The asked object version is higher than the latest */\n\t| {\n\t\t\tdetails: {\n\t\t\t\tasked_version: string;\n\t\t\t\tlatest_version: string;\n\t\t\t\tobject_id: string;\n\t\t\t};\n\t\t\tstatus: 'VersionTooHigh';\n\t };\nexport interface HaneulObjectRef {\n\t/** Base64 string representing the object digest */\n\tdigest: string;\n\t/** Hex code as string representing the object id */\n\tobjectId: string;\n\t/** Object version. */\n\tversion: string;\n}\nexport type ObjectResponseError =\n\t| {\n\t\t\tcode: 'notExists';\n\t\t\tobject_id: string;\n\t }\n\t| {\n\t\t\tcode: 'dynamicFieldNotFound';\n\t\t\tparent_object_id: string;\n\t }\n\t| {\n\t\t\tcode: 'deleted';\n\t\t\t/** Base64 string representing the object digest */\n\t\t\tdigest: string;\n\t\t\tobject_id: string;\n\t\t\t/** Object version. */\n\t\t\tversion: string;\n\t }\n\t| {\n\t\t\tcode: 'unknown';\n\t }\n\t| {\n\t\t\tcode: 'displayError';\n\t\t\terror: string;\n\t };\nexport interface HaneulObjectResponseQuery {\n\t/** If None, no filter will be applied */\n\tfilter?: HaneulObjectDataFilter | null;\n\t/** config which fields to include in the response, by default only digest is included */\n\toptions?: HaneulObjectDataOptions | null;\n}\nexport type ObjectValueKind = 'ByImmutableReference' | 'ByMutableReference' | 'ByValue';\nexport interface OwnedObjectRef {\n\towner: ObjectOwner;\n\treference: HaneulObjectRef;\n}\nexport type ObjectOwner =\n\t/** Object is exclusively owned by a single address, and is mutable. */\n\t| {\n\t\t\tAddressOwner: string;\n\t } /**\n\t * Object is exclusively owned by a single object, and is mutable. The object ID is converted to\n\t * HaneulAddress as HaneulAddress is universal.\n\t */\n\t| {\n\t\t\tObjectOwner: string;\n\t } /** Object is shared, can be used by any address, and is mutable. */\n\t| {\n\t\t\tShared: {\n\t\t\t\t/** The version at which the object became shared */\n\t\t\t\tinitial_shared_version: string;\n\t\t\t};\n\t }\n\t| 'Immutable' /** Object is exclusively owned by a single address and sequenced via consensus. */\n\t| {\n\t\t\tConsensusAddressOwner: {\n\t\t\t\towner: string;\n\t\t\t\t/**\n\t\t\t\t * The version at which the object most recently became a consensus object. This serves the same\n\t\t\t\t * function as `initial_shared_version`, except it may change if the object's Owner type changes.\n\t\t\t\t */\n\t\t\t\tstart_version: string;\n\t\t\t};\n\t };\n/**\n * `next_cursor` points to the last item in the page; Reading with `next_cursor` will start from the\n * next item after `next_cursor` if `next_cursor` is `Some`, otherwise it will start from the first\n * item.\n */\nexport interface PaginatedCheckpoints {\n\tdata: Checkpoint[];\n\thasNextPage: boolean;\n\tnextCursor?: string | null;\n}\n/**\n * `next_cursor` points to the last item in the page; Reading with `next_cursor` will start from the\n * next item after `next_cursor` if `next_cursor` is `Some`, otherwise it will start from the first\n * item.\n */\nexport interface PaginatedCoins {\n\tdata: CoinStruct[];\n\thasNextPage: boolean;\n\tnextCursor?: string | null;\n}\n/**\n * `next_cursor` points to the last item in the page; Reading with `next_cursor` will start from the\n * next item after `next_cursor` if `next_cursor` is `Some`, otherwise it will start from the first\n * item.\n */\nexport interface PaginatedDynamicFieldInfos {\n\tdata: DynamicFieldInfo[];\n\thasNextPage: boolean;\n\tnextCursor?: string | null;\n}\n/**\n * `next_cursor` points to the last item in the page; Reading with `next_cursor` will start from the\n * next item after `next_cursor` if `next_cursor` is `Some`, otherwise it will start from the first\n * item.\n */\nexport interface PaginatedEvents {\n\tdata: HaneulEvent[];\n\thasNextPage: boolean;\n\tnextCursor?: EventId | null;\n}\n/**\n * `next_cursor` points to the last item in the page; Reading with `next_cursor` will start from the\n * next item after `next_cursor` if `next_cursor` is `Some`, otherwise it will start from the first\n * item.\n */\nexport interface PaginatedStrings {\n\tdata: string[];\n\thasNextPage: boolean;\n\tnextCursor?: string | null;\n}\n/**\n * `next_cursor` points to the last item in the page; Reading with `next_cursor` will start from the\n * next item after `next_cursor` if `next_cursor` is `Some`, otherwise it will start from the first\n * item.\n */\nexport interface PaginatedObjectsResponse {\n\tdata: HaneulObjectResponse[];\n\thasNextPage: boolean;\n\tnextCursor?: string | null;\n}\n/**\n * `next_cursor` points to the last item in the page; Reading with `next_cursor` will start from the\n * next item after `next_cursor` if `next_cursor` is `Some`, otherwise it will start from the first\n * item.\n */\nexport interface PaginatedTransactionResponse {\n\tdata: HaneulTransactionBlockResponse[];\n\thasNextPage: boolean;\n\tnextCursor?: string | null;\n}\n/**\n * An passkey authenticator with parsed fields. See field defition below. Can be initialized from\n * [struct RawPasskeyAuthenticator].\n */\nexport interface PasskeyAuthenticator {\n\t/**\n\t * `authenticatorData` is a bytearray that encodes\n\t * [Authenticator Data](https://www.w3.org/TR/webauthn-2/#sctn-authenticator-data) structure returned\n\t * by the authenticator attestation response as is.\n\t */\n\tauthenticator_data: number[];\n\t/**\n\t * `clientDataJSON` contains a JSON-compatible UTF-8 encoded string of the client data which is passed\n\t * to the authenticator by the client during the authentication request (see\n\t * [CollectedClientData](https://www.w3.org/TR/webauthn-2/#dictdef-collectedclientdata))\n\t */\n\tclient_data_json: string;\n}\nexport interface ProtocolConfig {\n\tattributes: {\n\t\t[key: string]: ProtocolConfigValue | null;\n\t};\n\tfeatureFlags: {\n\t\t[key: string]: boolean;\n\t};\n\tmaxSupportedProtocolVersion: string;\n\tminSupportedProtocolVersion: string;\n\tprotocolVersion: string;\n}\nexport type ProtocolConfigValue =\n\t| {\n\t\t\tu16: string;\n\t }\n\t| {\n\t\t\tu32: string;\n\t }\n\t| {\n\t\t\tu64: string;\n\t }\n\t| {\n\t\t\tf64: string;\n\t }\n\t| {\n\t\t\tbool: string;\n\t };\nexport type PublicKey =\n\t| {\n\t\t\tEd25519: string;\n\t }\n\t| {\n\t\t\tSecp256k1: string;\n\t }\n\t| {\n\t\t\tSecp256r1: string;\n\t }\n\t| {\n\t\t\tZkLogin: string;\n\t }\n\t| {\n\t\t\tPasskey: string;\n\t };\nexport type RPCTransactionRequestParams =\n\t| {\n\t\t\ttransferObjectRequestParams: TransferObjectParams;\n\t }\n\t| {\n\t\t\tmoveCallRequestParams: MoveCallParams;\n\t };\nexport type RawData =\n\t| {\n\t\t\tbcsBytes: string;\n\t\t\tdataType: 'moveObject';\n\t\t\thasPublicTransfer: boolean;\n\t\t\ttype: string;\n\t\t\tversion: string;\n\t }\n\t| {\n\t\t\tdataType: 'package';\n\t\t\tid: string;\n\t\t\tlinkageTable: {\n\t\t\t\t[key: string]: UpgradeInfo;\n\t\t\t};\n\t\t\tmoduleMap: {\n\t\t\t\t[key: string]: string;\n\t\t\t};\n\t\t\ttypeOriginTable: TypeOrigin[];\n\t\t\tversion: string;\n\t };\nexport type Signature =\n\t| {\n\t\t\tEd25519HaneulSignature: string;\n\t }\n\t| {\n\t\t\tSecp256k1HaneulSignature: string;\n\t }\n\t| {\n\t\t\tSecp256r1HaneulSignature: string;\n\t };\nexport type StakeObject =\n\t| {\n\t\t\tprincipal: string;\n\t\t\tstakeActiveEpoch: string;\n\t\t\tstakeRequestEpoch: string;\n\t\t\t/** ID of the StakedSui receipt object. */\n\t\t\tstakedSuiId: string;\n\t\t\tstatus: 'Pending';\n\t }\n\t| {\n\t\t\tprincipal: string;\n\t\t\tstakeActiveEpoch: string;\n\t\t\tstakeRequestEpoch: string;\n\t\t\t/** ID of the StakedSui receipt object. */\n\t\t\tstakedSuiId: string;\n\t\t\testimatedReward: string;\n\t\t\tstatus: 'Active';\n\t }\n\t| {\n\t\t\tprincipal: string;\n\t\t\tstakeActiveEpoch: string;\n\t\t\tstakeRequestEpoch: string;\n\t\t\t/** ID of the StakedSui receipt object. */\n\t\t\tstakedSuiId: string;\n\t\t\tstatus: 'Unstaked';\n\t };\nexport interface SuiActiveJwk {\n\tepoch: string;\n\tjwk: SuiJWK;\n\tjwk_id: SuiJwkId;\n}\n/** An argument to a transaction in a programmable transaction block */\nexport type SuiArgument =\n\t| 'GasCoin' /** One of the input objects or primitive values (from `ProgrammableTransactionBlock` inputs) */\n\t| {\n\t\t\tInput: number;\n\t } /** The result of another transaction (from `ProgrammableTransactionBlock` transactions) */\n\t| {\n\t\t\tResult: number;\n\t } /**\n\t * Like a `Result` but it accesses a nested result. Currently, the only usage of this is to access a\n\t * value from a Move call with multiple return values.\n\t */\n\t| {\n\t\t\tNestedResult: [number, number];\n\t };\nexport interface SuiAuthenticatorStateExpire {\n\tmin_epoch: string;\n}\nexport type SuiCallArg =\n\t| {\n\t\t\ttype: 'object';\n\t\t\tdigest: string;\n\t\t\tobjectId: string;\n\t\t\tobjectType: 'immOrOwnedObject';\n\t\t\tversion: string;\n\t }\n\t| {\n\t\t\ttype: 'object';\n\t\t\tinitialSharedVersion: string;\n\t\t\tmutable: boolean;\n\t\t\tobjectId: string;\n\t\t\tobjectType: 'sharedObject';\n\t }\n\t| {\n\t\t\ttype: 'object';\n\t\t\tdigest: string;\n\t\t\tobjectId: string;\n\t\t\tobjectType: 'receiving';\n\t\t\tversion: string;\n\t }\n\t| {\n\t\t\ttype: 'pure';\n\t\t\tvalue: unknown;\n\t\t\tvalueType?: string | null;\n\t };\nexport interface SuiChangeEpoch {\n\tcomputation_charge: string;\n\tepoch: string;\n\tepoch_start_timestamp_ms: string;\n\tstorage_charge: string;\n\tstorage_rebate: string;\n}\nexport interface CoinMetadata {\n\t/** Number of decimal places the coin uses. */\n\tdecimals: number;\n\t/** Description of the token */\n\tdescription: string;\n\t/** URL for the token logo */\n\ticonUrl?: string | null;\n\t/** Object id for the CoinMetadata object */\n\tid?: string | null;\n\t/** Name for the token */\n\tname: string;\n\t/** Symbol for the token */\n\tsymbol: string;\n}\nexport type SuiEndOfEpochTransactionKind =\n\t| 'AuthenticatorStateCreate'\n\t| 'RandomnessStateCreate'\n\t| 'CoinDenyListStateCreate'\n\t| 'StoreExecutionTimeObservations'\n\t| 'AccumulatorRootCreate'\n\t| {\n\t\t\tChangeEpoch: SuiChangeEpoch;\n\t }\n\t| {\n\t\t\tAuthenticatorStateExpire: SuiAuthenticatorStateExpire;\n\t }\n\t| {\n\t\t\tBridgeStateCreate: string;\n\t }\n\t| {\n\t\t\tBridgeCommitteeUpdate: string;\n\t };\nexport interface SuiExecutionResult {\n\t/** The value of any arguments that were mutably borrowed. Non-mut borrowed values are not included */\n\tmutableReferenceOutputs?: [SuiArgument, number[], string][];\n\t/** The return values from the transaction */\n\treturnValues?: [number[], string][];\n}\nexport interface SuiJWK {\n\talg: string;\n\te: string;\n\tkty: string;\n\tn: string;\n}\nexport interface SuiJwkId {\n\tiss: string;\n\tkid: string;\n}\nexport type SuiMoveAbility = 'Copy' | 'Drop' | 'Store' | 'Key';\nexport interface SuiMoveAbilitySet {\n\tabilities: SuiMoveAbility[];\n}\nexport interface SuiMoveAbort {\n\terror_code?: string | null;\n\tfunction?: string | null;\n\tline?: number | null;\n\tmodule_id?: string | null;\n}\nexport interface SuiMoveModuleId {\n\taddress: string;\n\tname: string;\n}\nexport interface SuiMoveNormalizedEnum {\n\tabilities: SuiMoveAbilitySet;\n\ttypeParameters: SuiMoveStructTypeParameter[];\n\tvariantDeclarationOrder?: string[] | null;\n\tvariants: {\n\t\t[key: string]: SuiMoveNormalizedField[];\n\t};\n}\nexport interface SuiMoveNormalizedField {\n\tname: string;\n\ttype: HaneulMoveNormalizedType;\n}\nexport interface SuiMoveNormalizedFunction {\n\tisEntry: boolean;\n\tparameters: HaneulMoveNormalizedType[];\n\treturn: HaneulMoveNormalizedType[];\n\ttypeParameters: SuiMoveAbilitySet[];\n\tvisibility: SuiMoveVisibility;\n}\nexport interface SuiMoveNormalizedModule {\n\taddress: string;\n\tenums?: {\n\t\t[key: string]: SuiMoveNormalizedEnum;\n\t};\n\texposedFunctions: {\n\t\t[key: string]: SuiMoveNormalizedFunction;\n\t};\n\tfileFormatVersion: number;\n\tfriends: SuiMoveModuleId[];\n\tname: string;\n\tstructs: {\n\t\t[key: string]: SuiMoveNormalizedStruct;\n\t};\n}\nexport interface SuiMoveNormalizedStruct {\n\tabilities: SuiMoveAbilitySet;\n\tfields: SuiMoveNormalizedField[];\n\ttypeParameters: SuiMoveStructTypeParameter[];\n}\nexport type HaneulMoveNormalizedType =\n\t| 'Bool'\n\t| 'U8'\n\t| 'U16'\n\t| 'U32'\n\t| 'U64'\n\t| 'U128'\n\t| 'U256'\n\t| 'Address'\n\t| 'Signer'\n\t| {\n\t\t\tStruct: {\n\t\t\t\taddress: string;\n\t\t\t\tmodule: string;\n\t\t\t\tname: string;\n\t\t\t\ttypeArguments: HaneulMoveNormalizedType[];\n\t\t\t};\n\t }\n\t| {\n\t\t\tVector: HaneulMoveNormalizedType;\n\t }\n\t| {\n\t\t\tTypeParameter: number;\n\t }\n\t| {\n\t\t\tReference: HaneulMoveNormalizedType;\n\t }\n\t| {\n\t\t\tMutableReference: HaneulMoveNormalizedType;\n\t };\nexport interface SuiMoveStructTypeParameter {\n\tconstraints: SuiMoveAbilitySet;\n\tisPhantom: boolean;\n}\nexport type SuiMoveVisibility = 'Private' | 'Public' | 'Friend';\nexport type HaneulObjectDataFilter =\n\t| {\n\t\t\tMatchAll: HaneulObjectDataFilter[];\n\t }\n\t| {\n\t\t\tMatchAny: HaneulObjectDataFilter[];\n\t }\n\t| {\n\t\t\tMatchNone: HaneulObjectDataFilter[];\n\t } /** Query by type a specified Package. */\n\t| {\n\t\t\tPackage: string;\n\t } /** Query by type a specified Move module. */\n\t| {\n\t\t\tMoveModule: {\n\t\t\t\t/** the module name */\n\t\t\t\tmodule: string;\n\t\t\t\t/** the Move package ID */\n\t\t\t\tpackage: string;\n\t\t\t};\n\t } /** Query by type */\n\t| {\n\t\t\tStructType: string;\n\t }\n\t| {\n\t\t\tAddressOwner: string;\n\t }\n\t| {\n\t\t\tObjectOwner: string;\n\t }\n\t| {\n\t\t\tObjectId: string;\n\t }\n\t| {\n\t\t\tObjectIds: string[];\n\t }\n\t| {\n\t\t\tVersion: string;\n\t };\nexport interface HaneulObjectResponse {\n\tdata?: HaneulObjectData | null;\n\terror?: ObjectResponseError | null;\n}\n/**\n * The transaction for calling a Move function, either an entry function or a public function (which\n * cannot return references).\n */\nexport interface MoveCallHaneulTransaction {\n\t/** The arguments to the function. */\n\targuments?: SuiArgument[];\n\t/** The function to be called. */\n\tfunction: string;\n\t/** The specific module in the package containing the function. */\n\tmodule: string;\n\t/** The package containing the module and function. */\n\tpackage: string;\n\t/** The type arguments to the function. */\n\ttype_arguments?: string[];\n}\n/**\n * This is the JSON-RPC type for the SUI system state object. It flattens all fields to make them\n * top-level fields such that it as minimum dependencies to the internal data structures of the SUI\n * system state type.\n */\nexport interface HaneulSystemStateSummary {\n\t/** The list of active validators in the current epoch. */\n\tactiveValidators: SuiValidatorSummary[];\n\t/** Map storing the number of epochs for which each validator has been below the low stake threshold. */\n\tatRiskValidators: [string, string][];\n\t/** The current epoch ID, starting from 0. */\n\tepoch: string;\n\t/** The duration of an epoch, in milliseconds. */\n\tepochDurationMs: string;\n\t/** Unix timestamp of the current epoch start */\n\tepochStartTimestampMs: string;\n\t/**\n\t * ID of the object that maps from a staking pool ID to the inactive validator that has that pool as\n\t * its staking pool.\n\t */\n\tinactivePoolsId: string;\n\t/** Number of inactive staking pools. */\n\tinactivePoolsSize: string;\n\t/**\n\t * Maximum number of active validators at any moment. We do not allow the number of validators in any\n\t * epoch to go above this.\n\t */\n\tmaxValidatorCount: string;\n\t/** Lower-bound on the amount of stake required to become a validator. */\n\tminValidatorJoiningStake: string;\n\t/** ID of the object that contains the list of new validators that will join at the end of the epoch. */\n\tpendingActiveValidatorsId: string;\n\t/** Number of new validators that will join at the end of the epoch. */\n\tpendingActiveValidatorsSize: string;\n\t/** Removal requests from the validators. Each element is an index pointing to `active_validators`. */\n\tpendingRemovals: string[];\n\t/** The current protocol version, starting from 1. */\n\tprotocolVersion: string;\n\t/** The reference gas price for the current epoch. */\n\treferenceGasPrice: string;\n\t/**\n\t * Whether the system is running in a downgraded safe mode due to a non-recoverable bug. This is set\n\t * whenever we failed to execute advance_epoch, and ended up executing advance_epoch_safe_mode. It can\n\t * be reset once we are able to successfully execute advance_epoch.\n\t */\n\tsafeMode: boolean;\n\t/** Amount of computation rewards accumulated (and not yet distributed) during safe mode. */\n\tsafeModeComputationRewards: string;\n\t/** Amount of non-refundable storage fee accumulated during safe mode. */\n\tsafeModeNonRefundableStorageFee: string;\n\t/** Amount of storage rebates accumulated (and not yet burned) during safe mode. */\n\tsafeModeStorageRebates: string;\n\t/** Amount of storage rewards accumulated (and not yet distributed) during safe mode. */\n\tsafeModeStorageRewards: string;\n\t/** Balance of SUI set aside for stake subsidies that will be drawn down over time. */\n\tstakeSubsidyBalance: string;\n\t/** The amount of stake subsidy to be drawn down per epoch. This amount decays and decreases over time. */\n\tstakeSubsidyCurrentDistributionAmount: string;\n\t/**\n\t * The rate at which the distribution amount decays at the end of each period. Expressed in basis\n\t * points.\n\t */\n\tstakeSubsidyDecreaseRate: number;\n\t/**\n\t * This counter may be different from the current epoch number if in some epochs we decide to skip the\n\t * subsidy.\n\t */\n\tstakeSubsidyDistributionCounter: string;\n\t/** Number of distributions to occur before the distribution amount decays. */\n\tstakeSubsidyPeriodLength: string;\n\t/** The starting epoch in which stake subsidies start being paid out */\n\tstakeSubsidyStartEpoch: string;\n\t/** ID of the object that maps from staking pool's ID to the sui address of a validator. */\n\tstakingPoolMappingsId: string;\n\t/** Number of staking pool mappings. */\n\tstakingPoolMappingsSize: string;\n\t/**\n\t * The non-refundable portion of the storage fund coming from storage reinvestment, non-refundable\n\t * storage rebates and any leftover staking rewards.\n\t */\n\tstorageFundNonRefundableBalance: string;\n\t/** The storage rebates of all the objects on-chain stored in the storage fund. */\n\tstorageFundTotalObjectStorageRebates: string;\n\t/** The current version of the system state data structure type. */\n\tsystemStateVersion: string;\n\t/** Total amount of stake from all active validators at the beginning of the epoch. */\n\ttotalStake: string;\n\t/**\n\t * ID of the object that stores preactive validators, mapping their addresses to their `Validator`\n\t * structs.\n\t */\n\tvalidatorCandidatesId: string;\n\t/** Number of preactive validators. */\n\tvalidatorCandidatesSize: string;\n\t/**\n\t * A validator can have stake below `validator_low_stake_threshold` for this many epochs before being\n\t * kicked out.\n\t */\n\tvalidatorLowStakeGracePeriod: string;\n\t/**\n\t * Validators with stake amount below `validator_low_stake_threshold` are considered to have low stake\n\t * and will be escorted out of the validator set after being below this threshold for more than\n\t * `validator_low_stake_grace_period` number of epochs.\n\t */\n\tvalidatorLowStakeThreshold: string;\n\t/** A map storing the records of validator reporting each other. */\n\tvalidatorReportRecords: [string, string[]][];\n\t/**\n\t * Validators with stake below `validator_very_low_stake_threshold` will be removed immediately at\n\t * epoch change, no grace period.\n\t */\n\tvalidatorVeryLowStakeThreshold: string;\n}\n/** A single transaction in a programmable transaction block. */\nexport type HaneulTransaction =\n\t/** A call to either an entry or a public Move function */\n\t| {\n\t\t\tMoveCall: MoveCallHaneulTransaction;\n\t } /**\n\t * `(Vec<forall T:key+store. T>, address)` It sends n-objects to the specified address. These objects\n\t * must have store (public transfer) and either the previous owner must be an address or the object\n\t * must be newly created.\n\t */\n\t| {\n\t\t\tTransferObjects: [SuiArgument[], SuiArgument];\n\t } /**\n\t * `(&mut Coin<T>, Vec<u64>)` -> `Vec<Coin<T>>` It splits off some amounts into a new coins with those\n\t * amounts\n\t */\n\t| {\n\t\t\tSplitCoins: [SuiArgument, SuiArgument[]];\n\t } /** `(&mut Coin<T>, Vec<Coin<T>>)` It merges n-coins into the first coin */\n\t| {\n\t\t\tMergeCoins: [SuiArgument, SuiArgument[]];\n\t } /**\n\t * Publishes a Move package. It takes the package bytes and a list of the package's transitive\n\t * dependencies to link against on-chain.\n\t */\n\t| {\n\t\t\tPublish: string[];\n\t } /** Upgrades a Move package */\n\t| {\n\t\t\tUpgrade: [string[], string, SuiArgument];\n\t } /**\n\t * `forall T: Vec<T> -> vector<T>` Given n-values of the same type, it constructs a vector. For non\n\t * objects or an empty vector, the type tag must be specified.\n\t */\n\t| {\n\t\t\tMakeMoveVec: [string | null, SuiArgument[]];\n\t };\nexport type HaneulTransactionBlockBuilderMode = 'Commit' | 'DevInspect';\n/**\n * This is the JSON-RPC type for the SUI validator. It flattens all inner structures to top-level\n * fields so that they are decoupled from the internal definitions.\n */\nexport interface SuiValidatorSummary {\n\tcommissionRate: string;\n\tdescription: string;\n\t/** ID of the exchange rate table object. */\n\texchangeRatesId: string;\n\t/** Number of exchange rates in the table. */\n\texchangeRatesSize: string;\n\tgasPrice: string;\n\timageUrl: string;\n\tname: string;\n\tnetAddress: string;\n\tnetworkPubkeyBytes: string;\n\tnextEpochCommissionRate: string;\n\tnextEpochGasPrice: string;\n\tnextEpochNetAddress?: string | null;\n\tnextEpochNetworkPubkeyBytes?: string | null;\n\tnextEpochP2pAddress?: string | null;\n\tnextEpochPrimaryAddress?: string | null;\n\tnextEpochProofOfPossession?: string | null;\n\tnextEpochProtocolPubkeyBytes?: string | null;\n\tnextEpochStake: string;\n\tnextEpochWorkerAddress?: string | null;\n\tnextEpochWorkerPubkeyBytes?: string | null;\n\toperationCapId: string;\n\tp2pAddress: string;\n\t/** Pending pool token withdrawn during the current epoch, emptied at epoch boundaries. */\n\tpendingPoolTokenWithdraw: string;\n\t/** Pending stake amount for this epoch. */\n\tpendingStake: string;\n\t/** Pending stake withdrawn during the current epoch, emptied at epoch boundaries. */\n\tpendingTotalSuiWithdraw: string;\n\t/** Total number of pool tokens issued by the pool. */\n\tpoolTokenBalance: string;\n\tprimaryAddress: string;\n\tprojectUrl: string;\n\tproofOfPossessionBytes: string;\n\tprotocolPubkeyBytes: string;\n\t/** The epoch stake rewards will be added here at the end of each epoch. */\n\trewardsPool: string;\n\t/** The epoch at which this pool became active. */\n\tstakingPoolActivationEpoch?: string | null;\n\t/** The epoch at which this staking pool ceased to be active. `None` = {pre-active, active}, */\n\tstakingPoolDeactivationEpoch?: string | null;\n\t/** ID of the staking pool object. */\n\tstakingPoolId: string;\n\t/** The total number of SUI tokens in this pool. */\n\tstakingPoolSuiBalance: string;\n\tsuiAddress: string;\n\tvotingPower: string;\n\tworkerAddress: string;\n\tworkerPubkeyBytes: string;\n}\nexport interface CoinSupply {\n\tvalue: string;\n}\nexport interface HaneulTransactionBlock {\n\tdata: TransactionBlockData;\n\ttxSignatures: string[];\n}\nexport interface TransactionBlockBytes {\n\t/** the gas objects to be used */\n\tgas: HaneulObjectRef[];\n\t/** objects to be used in this transaction */\n\tinputObjects: InputObjectKind[];\n\t/** BCS serialized transaction data bytes without its type tag, as base-64 encoded string. */\n\ttxBytes: string;\n}\nexport type TransactionBlockData = {\n\tgasData: HaneulGasData;\n\tmessageVersion: 'v1';\n\tsender: string;\n\ttransaction: HaneulTransactionBlockKind;\n};\nexport type TransactionEffects =\n\t/** The response from processing a transaction or a certified transaction */\n\t{\n\t\t/** The abort error populated if the transaction failed with an abort code. */\n\t\tabortError?: SuiMoveAbort | null;\n\t\t/** ObjectRef and owner of new objects created. */\n\t\tcreated?: OwnedObjectRef[];\n\t\t/** Object Refs of objects now deleted (the old refs). */\n\t\tdeleted?: HaneulObjectRef[];\n\t\t/** The set of transaction digests this transaction depends on. */\n\t\tdependencies?: string[];\n\t\t/**\n\t\t * The digest of the events emitted during execution, can be None if the transaction does not emit any\n\t\t * event.\n\t\t */\n\t\teventsDigest?: string | null;\n\t\t/** The epoch when this transaction was executed. */\n\t\texecutedEpoch: string;\n\t\t/**\n\t\t * The updated gas object reference. Have a dedicated field for convenient access. It's also included\n\t\t * in mutated.\n\t\t */\n\t\tgasObject: OwnedObjectRef;\n\t\tgasUsed: GasCostSummary;\n\t\tmessageVersion: 'v1';\n\t\t/**\n\t\t * The version that every modified (mutated or deleted) object had before it was modified by this\n\t\t * transaction.\n\t\t */\n\t\tmodifiedAtVersions?: TransactionBlockEffectsModifiedAtVersions[];\n\t\t/** ObjectRef and owner of mutated objects, including gas object. */\n\t\tmutated?: OwnedObjectRef[];\n\t\t/**\n\t\t * The object references of the shared objects used in this transaction. Empty if no shared objects\n\t\t * were used.\n\t\t */\n\t\tsharedObjects?: HaneulObjectRef[];\n\t\t/** The status of the execution */\n\t\tstatus: ExecutionStatus;\n\t\t/** The transaction digest */\n\t\ttransactionDigest: string;\n\t\t/**\n\t\t * ObjectRef and owner of objects that are unwrapped in this transaction. Unwrapped objects are objects\n\t\t * that were wrapped into other objects in the past, and just got extracted out.\n\t\t */\n\t\tunwrapped?: OwnedObjectRef[];\n\t\t/** Object refs of objects previously wrapped in other objects but now deleted. */\n\t\tunwrappedThenDeleted?: HaneulObjectRef[];\n\t\t/** Object refs of objects now wrapped in other objects. */\n\t\twrapped?: HaneulObjectRef[];\n\t};\nexport interface TransactionBlockEffectsModifiedAtVersions {\n\tobjectId: string;\n\tsequenceNumber: string;\n}\nexport type HaneulTransactionBlockKind =\n\t/** A system transaction that will update epoch information on-chain. */\n\t| {\n\t\t\tcomputation_charge: string;\n\t\t\tepoch: string;\n\t\t\tepoch_start_timestamp_ms: string;\n\t\t\tkind: 'ChangeEpoch';\n\t\t\tstorage_charge: string;\n\t\t\tstorage_rebate: string;\n\t } /** A system transaction used for initializing the initial state of the chain. */\n\t| {\n\t\t\tkind: 'Genesis';\n\t\t\tobjects: string[];\n\t } /** A system transaction marking the start of a series of transactions scheduled as part of a checkpoint */\n\t| {\n\t\t\tcommit_timestamp_ms: string;\n\t\t\tepoch: string;\n\t\t\tkind: 'ConsensusCommitPrologue';\n\t\t\tround: string;\n\t } /** A series of transactions where the results of one transaction can be used in future transactions */\n\t| {\n\t\t\t/** Input objects or primitive values */\n\t\t\tinputs: SuiCallArg[];\n\t\t\tkind: 'ProgrammableTransaction';\n\t\t\t/**\n\t\t\t * The transactions to be executed sequentially. A failure in any transaction will result in the\n\t\t\t * failure of the entire programmable transaction block.\n\t\t\t */\n\t\t\ttransactions: HaneulTransaction[];\n\t } /** A transaction which updates global authenticator state */\n\t| {\n\t\t\tepoch: string;\n\t\t\tkind: 'AuthenticatorStateUpdate';\n\t\t\tnew_active_jwks: SuiActiveJwk[];\n\t\t\tround: string;\n\t } /** A transaction which updates global randomness state */\n\t| {\n\t\t\tepoch: string;\n\t\t\tkind: 'RandomnessStateUpdate';\n\t\t\trandom_bytes: number[];\n\t\t\trandomness_round: string;\n\t } /** The transaction which occurs only at the end of the epoch */\n\t| {\n\t\t\tkind: 'EndOfEpochTransaction';\n\t\t\ttransactions: SuiEndOfEpochTransactionKind[];\n\t }\n\t| {\n\t\t\tcommit_timestamp_ms: string;\n\t\t\tconsensus_commit_digest: string;\n\t\t\tepoch: string;\n\t\t\tkind: 'ConsensusCommitPrologueV2';\n\t\t\tround: string;\n\t }\n\t| {\n\t\t\tcommit_timestamp_ms: string;\n\t\t\tconsensus_commit_digest: string;\n\t\t\tconsensus_determined_version_assignments: ConsensusDeterminedVersionAssignments;\n\t\t\tepoch: string;\n\t\t\tkind: 'ConsensusCommitPrologueV3';\n\t\t\tround: string;\n\t\t\tsub_dag_index?: string | null;\n\t }\n\t| {\n\t\t\tadditional_state_digest: string;\n\t\t\tcommit_timestamp_ms: string;\n\t\t\tconsensus_commit_digest: string;\n\t\t\tconsensus_determined_version_assignments: ConsensusDeterminedVersionAssignments;\n\t\t\tepoch: string;\n\t\t\tkind: 'ConsensusCommitPrologueV4';\n\t\t\tround: string;\n\t\t\tsub_dag_index?: string | null;\n\t } /** A series of commands where the results of one command can be used in future commands */\n\t| {\n\t\t\t/** Input objects or primitive values */\n\t\t\tinputs: SuiCallArg[];\n\t\t\tkind: 'ProgrammableSystemTransaction';\n\t\t\t/**\n\t\t\t * The transactions to be executed sequentially. A failure in any transaction will result in the\n\t\t\t * failure of the entire programmable transaction block.\n\t\t\t */\n\t\t\ttransactions: HaneulTransaction[];\n\t };\nexport interface HaneulTransactionBlockResponse {\n\tbalanceChanges?: BalanceChange[] | null;\n\t/**\n\t * The checkpoint number when this transaction was included and hence finalized. This is only returned\n\t * in the read api, not in the transaction execution api.\n\t */\n\tcheckpoint?: string | null;\n\tconfirmedLocalExecution?: boolean | null;\n\tdigest: string;\n\teffects?: TransactionEffects | null;\n\terrors?: string[];\n\tevents?: HaneulEvent[] | null;\n\tobjectChanges?: HaneulObjectChange[] | null;\n\trawEffects?: number[];\n\t/**\n\t * BCS encoded [SenderSignedData] that includes input object references returns empty array if\n\t * `show_raw_transaction` is false\n\t */\n\trawTransaction?: string;\n\ttimestampMs?: string | null;\n\t/** Transaction input data */\n\ttransaction?: HaneulTransactionBlock | null;\n}\nexport interface HaneulTransactionBlockResponseOptions {\n\t/** Whether to show balance_changes. Default to be False */\n\tshowBalanceChanges?: boolean;\n\t/** Whether to show transaction effects. Default to be False */\n\tshowEffects?: boolean;\n\t/** Whether to show transaction events. Default to be False */\n\tshowEvents?: boolean;\n\t/** Whether to show transaction input data. Default to be False */\n\tshowInput?: boolean;\n\t/** Whether to show object_changes. Default to be False */\n\tshowObjectChanges?: boolean;\n\t/** Whether to show raw transaction effects. Default to be False */\n\tshowRawEffects?: boolean;\n\t/** Whether to show bcs-encoded transaction input data */\n\tshowRawInput?: boolean;\n}\nexport interface HaneulTransactionBlockResponseQuery {\n\t/** If None, no filter will be applied */\n\tfilter?: TransactionFilter | null;\n\t/** config which fields to include in the response, by default only digest is included */\n\toptions?: HaneulTransactionBlockResponseOptions | null;\n}\nexport type TransactionFilter =\n\t/** CURRENTLY NOT SUPPORTED. Query by checkpoint. */\n\t| {\n\t\t\tCheckpoint: string;\n\t } /** Query by move function. */\n\t| {\n\t\t\tMoveFunction: {\n\t\t\t\tfunction?: string | null;\n\t\t\t\tmodule?: string | null;\n\t\t\t\tpackage: string;\n\t\t\t};\n\t } /** Query by input object. */\n\t| {\n\t\t\tInputObject: string;\n\t } /** Query by changed object, including created, mutated and unwrapped objects. */\n\t| {\n\t\t\tChangedObject: string;\n\t } /** Query for transactions that touch this object. */\n\t| {\n\t\t\tAffectedObject: string;\n\t } /** Query by sender address. */\n\t| {\n\t\t\tFromAddress: string;\n\t } /** Query by recipient address. */\n\t| {\n\t\t\tToAddress: string;\n\t } /** Query by sender and recipient address. */\n\t| {\n\t\t\tFromAndToAddress: {\n\t\t\t\tfrom: string;\n\t\t\t\tto: string;\n\t\t\t};\n\t } /** CURRENTLY NOT SUPPORTED. Query txs that have a given address as sender or recipient. */\n\t| {\n\t\t\tFromOrToAddress: {\n\t\t\t\taddr: string;\n\t\t\t};\n\t } /** Query by transaction kind */\n\t| {\n\t\t\tTransactionKind: string;\n\t } /** Query transactions of any given kind in the input. */\n\t| {\n\t\t\tTransactionKindIn: string[];\n\t };\nexport interface TransferObjectParams {\n\tobjectId: string;\n\trecipient: string;\n}\n/** Identifies a struct and the module it was defined in */\nexport interface TypeOrigin {\n\tdatatype_name: string;\n\tmodule_name: string;\n\tpackage: string;\n}\n/** Upgraded package info for the linkage table */\nexport interface UpgradeInfo {\n\t/** ID of the upgraded packages */\n\tupgraded_id: string;\n\t/** Version of the upgraded package */\n\tupgraded_version: string;\n}\nexport interface ValidatorApy {\n\taddress: string;\n\tapy: number;\n}\nexport interface ValidatorsApy {\n\tapys: ValidatorApy[];\n\tepoch: string;\n}\n/** An zk login authenticator with all the necessary fields. */\nexport interface ZkLoginAuthenticator {\n\tinputs: ZkLoginInputs;\n\tmaxEpoch: string;\n\tuserSignature: Signature;\n}\n/** All inputs required for the zk login proof verification and other public inputs. */\nexport interface ZkLoginInputs {\n\taddressSeed: string;\n\theaderBase64: string;\n\tissBase64Details: Claim;\n\tproofPoints: ZkLoginProof;\n}\nexport type ZkLoginIntentScope = 'TransactionData' | 'PersonalMessage';\n/** The struct for zk login proof. */\nexport interface ZkLoginProof {\n\ta: string[];\n\tb: string[][];\n\tc: string[];\n}\nexport interface ZkLoginVerifyResult {\n\t/** The errors field captures any verification error */\n\terrors: string[];\n\t/** The boolean result of the verification. If true, errors should be empty. */\n\tsuccess: boolean;\n}\n"],
5
- "mappings": ";;;;;;;;;;;;;;AAAA;AAAA;",
6
- "names": []
7
- }
@@ -1,6 +0,0 @@
1
- export type * from './chain.js';
2
- export type * from './coins.js';
3
- export type * from './common.js';
4
- export type * from './changes.js';
5
- export type * from './generated.js';
6
- export type * from './params.js';
@@ -1,17 +0,0 @@
1
- "use strict";
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __copyProps = (to, from, except, desc) => {
7
- if (from && typeof from === "object" || typeof from === "function") {
8
- for (let key of __getOwnPropNames(from))
9
- if (!__hasOwnProp.call(to, key) && key !== except)
10
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11
- }
12
- return to;
13
- };
14
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
15
- var types_exports = {};
16
- module.exports = __toCommonJS(types_exports);
17
- //# sourceMappingURL=index.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../../src/jsonRpc/types/index.ts"],
4
- "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nexport type * from './chain.js';\nexport type * from './coins.js';\nexport type * from './common.js';\nexport type * from './changes.js';\nexport type * from './generated.js';\nexport type * from './params.js';\n"],
5
- "mappings": ";;;;;;;;;;;;;;AAAA;AAAA;",
6
- "names": []
7
- }