@typus/typus-perp-sdk 1.1.29 → 1.1.30-codegen

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 (249) hide show
  1. package/dist/src/api/sentio.js +604 -538
  2. package/dist/src/client.d.ts +27 -0
  3. package/dist/src/client.js +108 -0
  4. package/dist/src/fetch.d.ts +160 -34
  5. package/dist/src/fetch.js +365 -665
  6. package/dist/src/generated/typus_perp/admin.d.ts +117 -0
  7. package/dist/src/generated/typus_perp/admin.js +110 -0
  8. package/dist/src/generated/typus_perp/competition.d.ts +22 -0
  9. package/dist/src/generated/typus_perp/competition.js +58 -0
  10. package/dist/src/generated/typus_perp/deps/std/type_name.d.ts +17 -0
  11. package/dist/src/generated/typus_perp/deps/std/type_name.js +25 -0
  12. package/dist/src/generated/typus_perp/deps/sui/balance.d.ts +12 -0
  13. package/dist/src/generated/typus_perp/deps/sui/balance.js +20 -0
  14. package/dist/src/generated/typus_perp/deps/sui/object.d.ts +8 -0
  15. package/dist/src/generated/typus_perp/deps/sui/object.js +16 -0
  16. package/dist/src/generated/typus_perp/deps/sui/object_table.d.ts +19 -0
  17. package/dist/src/generated/typus_perp/deps/sui/object_table.js +59 -0
  18. package/dist/src/generated/typus_perp/deps/sui/vec_set.d.ts +18 -0
  19. package/dist/src/generated/typus_perp/deps/sui/vec_set.js +25 -0
  20. package/dist/src/generated/typus_perp/deps/typus/keyed_big_vector.d.ts +30 -0
  21. package/dist/src/generated/typus_perp/deps/typus/keyed_big_vector.js +67 -0
  22. package/dist/src/generated/typus_perp/deps/typus/linked_object_table.d.ts +32 -0
  23. package/dist/src/generated/typus_perp/deps/typus/linked_object_table.js +71 -0
  24. package/dist/src/generated/typus_perp/deps/typus_framework/vault.d.ts +23 -0
  25. package/dist/src/generated/typus_perp/deps/typus_framework/vault.js +61 -0
  26. package/dist/src/generated/typus_perp/escrow.d.ts +59 -0
  27. package/dist/src/generated/typus_perp/escrow.js +76 -0
  28. package/dist/src/generated/typus_perp/lending.d.ts +47 -0
  29. package/dist/src/generated/typus_perp/lending.js +50 -0
  30. package/dist/src/generated/typus_perp/lp_pool.d.ts +2327 -0
  31. package/dist/src/generated/typus_perp/lp_pool.js +1956 -0
  32. package/dist/src/generated/typus_perp/math.d.ts +95 -0
  33. package/dist/src/generated/typus_perp/math.js +97 -0
  34. package/dist/src/generated/typus_perp/position.d.ts +234 -0
  35. package/dist/src/generated/typus_perp/position.js +204 -0
  36. package/dist/src/generated/typus_perp/symbol.d.ts +18 -0
  37. package/dist/src/generated/typus_perp/symbol.js +55 -0
  38. package/dist/src/generated/typus_perp/tlp.d.ts +13 -0
  39. package/dist/src/generated/typus_perp/tlp.js +56 -0
  40. package/dist/src/generated/typus_perp/trading.d.ts +2486 -0
  41. package/dist/src/generated/typus_perp/trading.js +2476 -0
  42. package/dist/src/generated/typus_perp/treasury_caps.d.ts +13 -0
  43. package/dist/src/{_framework/init-loader.js → generated/typus_perp/treasury_caps.js} +17 -10
  44. package/dist/src/generated/typus_perp/user_account.d.ts +40 -0
  45. package/dist/src/generated/typus_perp/user_account.js +72 -0
  46. package/dist/src/generated/typus_stake_pool/admin.d.ts +100 -0
  47. package/dist/src/generated/typus_stake_pool/admin.js +91 -0
  48. package/dist/src/generated/typus_stake_pool/deps/std/type_name.d.ts +17 -0
  49. package/dist/src/generated/typus_stake_pool/deps/std/type_name.js +25 -0
  50. package/dist/src/generated/typus_stake_pool/deps/sui/object.d.ts +8 -0
  51. package/dist/src/generated/typus_stake_pool/deps/sui/object.js +16 -0
  52. package/dist/src/generated/typus_stake_pool/deps/sui/vec_map.d.ts +30 -0
  53. package/dist/src/generated/typus_stake_pool/deps/sui/vec_map.js +37 -0
  54. package/dist/src/generated/typus_stake_pool/deps/sui/vec_set.d.ts +18 -0
  55. package/dist/src/generated/typus_stake_pool/deps/sui/vec_set.js +25 -0
  56. package/dist/src/generated/typus_stake_pool/stake_pool.d.ts +1023 -0
  57. package/dist/src/generated/typus_stake_pool/stake_pool.js +918 -0
  58. package/dist/src/generated/utils/index.d.ts +11 -0
  59. package/dist/src/generated/utils/index.js +135 -0
  60. package/dist/src/grpc/graphql.d.ts +26 -0
  61. package/dist/src/grpc/graphql.js +126 -0
  62. package/dist/src/grpc/grpc.d.ts +1 -0
  63. package/dist/src/grpc/grpc.js +38 -0
  64. package/dist/src/grpc/ledgerService.js +64 -0
  65. package/dist/src/grpc/liveDataService.d.ts +0 -0
  66. package/dist/src/grpc/liveDataService.js +49 -0
  67. package/dist/src/index.d.ts +1 -4
  68. package/dist/src/index.js +21 -39
  69. package/dist/src/user/history.js +611 -680
  70. package/dist/src/user/order.d.ts +11 -11
  71. package/dist/src/user/order.js +171 -302
  72. package/dist/src/user/orderWithBidReceipt.d.ts +8 -5
  73. package/dist/src/user/orderWithBidReceipt.js +127 -225
  74. package/dist/src/user/tlp.d.ts +32 -23
  75. package/dist/src/user/tlp.js +316 -468
  76. package/package.json +12 -3
  77. package/dist/src/_dependencies/source/0x1/ascii/structs.d.ts +0 -92
  78. package/dist/src/_dependencies/source/0x1/ascii/structs.js +0 -398
  79. package/dist/src/_dependencies/source/0x1/index.d.ts +0 -3
  80. package/dist/src/_dependencies/source/0x1/index.js +0 -6
  81. package/dist/src/_dependencies/source/0x1/option/structs.d.ts +0 -52
  82. package/dist/src/_dependencies/source/0x1/option/structs.js +0 -271
  83. package/dist/src/_dependencies/source/0x1/string/structs.d.ts +0 -50
  84. package/dist/src/_dependencies/source/0x1/string/structs.js +0 -256
  85. package/dist/src/_dependencies/source/0x1/type-name/structs.d.ts +0 -53
  86. package/dist/src/_dependencies/source/0x1/type-name/structs.js +0 -223
  87. package/dist/src/_dependencies/source/0x2/bag/structs.d.ts +0 -61
  88. package/dist/src/_dependencies/source/0x2/bag/structs.js +0 -229
  89. package/dist/src/_dependencies/source/0x2/balance/structs.d.ts +0 -88
  90. package/dist/src/_dependencies/source/0x2/balance/structs.js +0 -386
  91. package/dist/src/_dependencies/source/0x2/coin/structs.d.ts +0 -460
  92. package/dist/src/_dependencies/source/0x2/coin/structs.js +0 -1247
  93. package/dist/src/_dependencies/source/0x2/index.d.ts +0 -3
  94. package/dist/src/_dependencies/source/0x2/index.js +0 -6
  95. package/dist/src/_dependencies/source/0x2/linked-table/structs.d.ts +0 -153
  96. package/dist/src/_dependencies/source/0x2/linked-table/structs.js +0 -438
  97. package/dist/src/_dependencies/source/0x2/object/structs.d.ts +0 -92
  98. package/dist/src/_dependencies/source/0x2/object/structs.js +0 -364
  99. package/dist/src/_dependencies/source/0x2/object-table/structs.d.ts +0 -61
  100. package/dist/src/_dependencies/source/0x2/object-table/structs.js +0 -248
  101. package/dist/src/_dependencies/source/0x2/sui/structs.d.ts +0 -46
  102. package/dist/src/_dependencies/source/0x2/sui/structs.js +0 -222
  103. package/dist/src/_dependencies/source/0x2/table/structs.d.ts +0 -61
  104. package/dist/src/_dependencies/source/0x2/table/structs.js +0 -248
  105. package/dist/src/_dependencies/source/0x2/table-vec/structs.d.ts +0 -68
  106. package/dist/src/_dependencies/source/0x2/table-vec/structs.js +0 -274
  107. package/dist/src/_dependencies/source/0x2/token/structs.d.ts +0 -449
  108. package/dist/src/_dependencies/source/0x2/token/structs.js +0 -1095
  109. package/dist/src/_dependencies/source/0x2/transfer-policy/structs.d.ts +0 -370
  110. package/dist/src/_dependencies/source/0x2/transfer-policy/structs.js +0 -1091
  111. package/dist/src/_dependencies/source/0x2/url/structs.d.ts +0 -53
  112. package/dist/src/_dependencies/source/0x2/url/structs.js +0 -223
  113. package/dist/src/_dependencies/source/0x2/vec-map/structs.d.ts +0 -111
  114. package/dist/src/_dependencies/source/0x2/vec-map/structs.js +0 -446
  115. package/dist/src/_dependencies/source/0x2/vec-set/structs.d.ts +0 -51
  116. package/dist/src/_dependencies/source/0x2/vec-set/structs.js +0 -270
  117. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/airdrop/structs.d.ts +0 -489
  118. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/airdrop/structs.js +0 -1084
  119. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/big-vector/structs.d.ts +0 -147
  120. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/big-vector/structs.js +0 -456
  121. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/critbit/structs.d.ts +0 -239
  122. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/critbit/structs.js +0 -653
  123. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/ecosystem/structs.d.ts +0 -405
  124. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/ecosystem/structs.js +0 -899
  125. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/index.d.ts +0 -8
  126. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/index.js +0 -11
  127. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/init.d.ts +0 -2
  128. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/init.js +0 -102
  129. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/keyed-big-vector/structs.d.ts +0 -227
  130. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/keyed-big-vector/structs.js +0 -632
  131. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/leaderboard/structs.d.ts +0 -699
  132. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/leaderboard/structs.js +0 -1459
  133. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/linked-object-table/structs.d.ts +0 -161
  134. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/linked-object-table/structs.js +0 -438
  135. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/linked-set/structs.d.ts +0 -147
  136. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/linked-set/structs.js +0 -430
  137. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/tails-staking/structs.d.ts +0 -1071
  138. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/tails-staking/structs.js +0 -2261
  139. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/tgld/structs.d.ts +0 -279
  140. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/tgld/structs.js +0 -733
  141. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/user/structs.d.ts +0 -328
  142. package/dist/src/_dependencies/source/0x4b0f4ee1a40ce37ec81c987cc4e76a665419e74b863319492fc7d26f708b835a/user/structs.js +0 -892
  143. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/authority/structs.d.ts +0 -88
  144. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/authority/structs.js +0 -263
  145. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/balance-pool/structs.d.ts +0 -347
  146. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/balance-pool/structs.js +0 -591
  147. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/big-vector/structs.d.ts +0 -73
  148. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/big-vector/structs.js +0 -258
  149. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/dutch/structs.d.ts +0 -876
  150. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/dutch/structs.js +0 -1721
  151. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/i64/structs.d.ts +0 -46
  152. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/i64/structs.js +0 -222
  153. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/index.d.ts +0 -3
  154. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/index.js +0 -6
  155. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/init.d.ts +0 -2
  156. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/init.js +0 -89
  157. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/linked-list/structs.d.ts +0 -155
  158. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/linked-list/structs.js +0 -444
  159. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/vault/structs.d.ts +0 -2386
  160. package/dist/src/_dependencies/source/0xb4f25230ba74837d8299e92951306100c4a532e8c48cc3d8828abe9b91c8b274/vault/structs.js +0 -4952
  161. package/dist/src/_dependencies/source/0xbd147bc7f12f38f175d78947a61364e8e077b9b188b00e7094bc0c3623162196/discount-mint/structs.d.ts +0 -446
  162. package/dist/src/_dependencies/source/0xbd147bc7f12f38f175d78947a61364e8e077b9b188b00e7094bc0c3623162196/discount-mint/structs.js +0 -844
  163. package/dist/src/_dependencies/source/0xbd147bc7f12f38f175d78947a61364e8e077b9b188b00e7094bc0c3623162196/index.d.ts +0 -6
  164. package/dist/src/_dependencies/source/0xbd147bc7f12f38f175d78947a61364e8e077b9b188b00e7094bc0c3623162196/index.js +0 -9
  165. package/dist/src/_dependencies/source/0xbd147bc7f12f38f175d78947a61364e8e077b9b188b00e7094bc0c3623162196/init.d.ts +0 -2
  166. package/dist/src/_dependencies/source/0xbd147bc7f12f38f175d78947a61364e8e077b9b188b00e7094bc0c3623162196/init.js +0 -69
  167. package/dist/src/_dependencies/source/0xbd147bc7f12f38f175d78947a61364e8e077b9b188b00e7094bc0c3623162196/royalty-rule/structs.d.ts +0 -94
  168. package/dist/src/_dependencies/source/0xbd147bc7f12f38f175d78947a61364e8e077b9b188b00e7094bc0c3623162196/royalty-rule/structs.js +0 -376
  169. package/dist/src/_dependencies/source/0xbd147bc7f12f38f175d78947a61364e8e077b9b188b00e7094bc0c3623162196/staking/structs.d.ts +0 -454
  170. package/dist/src/_dependencies/source/0xbd147bc7f12f38f175d78947a61364e8e077b9b188b00e7094bc0c3623162196/staking/structs.js +0 -881
  171. package/dist/src/_dependencies/source/0xbd147bc7f12f38f175d78947a61364e8e077b9b188b00e7094bc0c3623162196/table-vec/structs.d.ts +0 -68
  172. package/dist/src/_dependencies/source/0xbd147bc7f12f38f175d78947a61364e8e077b9b188b00e7094bc0c3623162196/table-vec/structs.js +0 -274
  173. package/dist/src/_dependencies/source/0xbd147bc7f12f38f175d78947a61364e8e077b9b188b00e7094bc0c3623162196/typus-nft/structs.d.ts +0 -1117
  174. package/dist/src/_dependencies/source/0xbd147bc7f12f38f175d78947a61364e8e077b9b188b00e7094bc0c3623162196/typus-nft/structs.js +0 -2387
  175. package/dist/src/_framework/init-loader.d.ts +0 -2
  176. package/dist/src/_framework/loader.d.ts +0 -17
  177. package/dist/src/_framework/loader.js +0 -108
  178. package/dist/src/_framework/reified.d.ts +0 -108
  179. package/dist/src/_framework/reified.js +0 -237
  180. package/dist/src/_framework/util.d.ts +0 -35
  181. package/dist/src/_framework/util.js +0 -396
  182. package/dist/src/_framework/vector.d.ts +0 -35
  183. package/dist/src/_framework/vector.js +0 -112
  184. package/dist/src/pyth.js +0 -1
  185. package/dist/src/typus_perp/admin/functions.d.ts +0 -59
  186. package/dist/src/typus_perp/admin/functions.js +0 -122
  187. package/dist/src/typus_perp/admin/structs.d.ts +0 -529
  188. package/dist/src/typus_perp/admin/structs.js +0 -1065
  189. package/dist/src/typus_perp/competition/functions.d.ts +0 -24
  190. package/dist/src/typus_perp/competition/functions.js +0 -38
  191. package/dist/src/typus_perp/competition/structs.d.ts +0 -92
  192. package/dist/src/typus_perp/competition/structs.js +0 -288
  193. package/dist/src/typus_perp/error/functions.d.ts +0 -73
  194. package/dist/src/typus_perp/error/functions.js +0 -363
  195. package/dist/src/typus_perp/escrow/functions.d.ts +0 -17
  196. package/dist/src/typus_perp/escrow/functions.js +0 -36
  197. package/dist/src/typus_perp/escrow/structs.d.ts +0 -172
  198. package/dist/src/typus_perp/escrow/structs.js +0 -324
  199. package/dist/src/typus_perp/index.d.ts +0 -1
  200. package/dist/src/typus_perp/index.js +0 -7
  201. package/dist/src/typus_perp/init.d.ts +0 -2
  202. package/dist/src/typus_perp/init.js +0 -118
  203. package/dist/src/typus_perp/lending/functions.d.ts +0 -15
  204. package/dist/src/typus_perp/lending/functions.js +0 -22
  205. package/dist/src/typus_perp/lp-pool/functions.d.ts +0 -460
  206. package/dist/src/typus_perp/lp-pool/functions.js +0 -732
  207. package/dist/src/typus_perp/lp-pool/structs.d.ts +0 -4268
  208. package/dist/src/typus_perp/lp-pool/structs.js +0 -6789
  209. package/dist/src/typus_perp/math/functions.d.ts +0 -29
  210. package/dist/src/typus_perp/math/functions.js +0 -61
  211. package/dist/src/typus_perp/position/functions.d.ts +0 -379
  212. package/dist/src/typus_perp/position/functions.js +0 -713
  213. package/dist/src/typus_perp/position/structs.d.ts +0 -1064
  214. package/dist/src/typus_perp/position/structs.js +0 -1450
  215. package/dist/src/typus_perp/symbol/functions.d.ts +0 -9
  216. package/dist/src/typus_perp/symbol/functions.js +0 -24
  217. package/dist/src/typus_perp/symbol/structs.d.ts +0 -81
  218. package/dist/src/typus_perp/symbol/structs.js +0 -235
  219. package/dist/src/typus_perp/tlp/functions.d.ts +0 -19
  220. package/dist/src/typus_perp/tlp/functions.js +0 -40
  221. package/dist/src/typus_perp/tlp/structs.d.ts +0 -97
  222. package/dist/src/typus_perp/tlp/structs.js +0 -365
  223. package/dist/src/typus_perp/token-interface/functions.d.ts +0 -11
  224. package/dist/src/typus_perp/token-interface/functions.js +0 -22
  225. package/dist/src/typus_perp/trading/functions.d.ts +0 -812
  226. package/dist/src/typus_perp/trading/functions.js +0 -1218
  227. package/dist/src/typus_perp/trading/structs.d.ts +0 -3613
  228. package/dist/src/typus_perp/trading/structs.js +0 -5813
  229. package/dist/src/typus_perp/treasury-caps/functions.d.ts +0 -9
  230. package/dist/src/typus_perp/treasury-caps/functions.js +0 -36
  231. package/dist/src/typus_perp/treasury-caps/structs.d.ts +0 -55
  232. package/dist/src/typus_perp/treasury-caps/structs.js +0 -223
  233. package/dist/src/typus_perp/user-account/functions.d.ts +0 -36
  234. package/dist/src/typus_perp/user-account/functions.js +0 -70
  235. package/dist/src/typus_perp/user-account/structs.d.ts +0 -168
  236. package/dist/src/typus_perp/user-account/structs.js +0 -448
  237. package/dist/src/typus_stake_pool/admin/functions.d.ts +0 -49
  238. package/dist/src/typus_stake_pool/admin/functions.js +0 -105
  239. package/dist/src/typus_stake_pool/admin/structs.d.ts +0 -413
  240. package/dist/src/typus_stake_pool/admin/structs.js +0 -789
  241. package/dist/src/typus_stake_pool/index.d.ts +0 -1
  242. package/dist/src/typus_stake_pool/index.js +0 -7
  243. package/dist/src/typus_stake_pool/init.d.ts +0 -2
  244. package/dist/src/typus_stake_pool/init.js +0 -69
  245. package/dist/src/typus_stake_pool/stake-pool/functions.d.ts +0 -229
  246. package/dist/src/typus_stake_pool/stake-pool/functions.js +0 -380
  247. package/dist/src/typus_stake_pool/stake-pool/structs.d.ts +0 -2477
  248. package/dist/src/typus_stake_pool/stake-pool/structs.js +0 -4653
  249. /package/dist/src/{pyth.d.ts → grpc/ledgerService.d.ts} +0 -0
@@ -1,1071 +0,0 @@
1
- import * as reified from "../../../../_framework/reified";
2
- import { PhantomReified, Reified, StructClass, ToField, ToTypeStr, ToTypeStr as ToPhantom } from "../../../../_framework/reified";
3
- import { FieldsWithTypes } from "../../../../_framework/util";
4
- import { Vector } from "../../../../_framework/vector";
5
- import { TypeName } from "../../0x1/type-name/structs";
6
- import { Bag } from "../../0x2/bag/structs";
7
- import { ObjectTable } from "../../0x2/object-table/structs";
8
- import { UID } from "../../0x2/object/structs";
9
- import { TransferPolicy } from "../../0x2/transfer-policy/structs";
10
- import { ManagerCap, Tails } from "../../0xbd147bc7f12f38f175d78947a61364e8e077b9b188b00e7094bc0c3623162196/typus-nft/structs";
11
- import { BigVector } from "../big-vector/structs";
12
- import { PKG_V3, PKG_V6 } from "../index";
13
- import { SuiClient, SuiObjectData, SuiParsedData } from "@mysten/sui/client";
14
- export declare function isClaimProfitSharingEvent(type: string): boolean;
15
- export interface ClaimProfitSharingEventFields {
16
- tails: ToField<Vector<"u64">>;
17
- profitAsset: ToField<TypeName>;
18
- log: ToField<Vector<"u64">>;
19
- bcsPadding: ToField<Vector<Vector<"u8">>>;
20
- }
21
- export type ClaimProfitSharingEventReified = Reified<ClaimProfitSharingEvent, ClaimProfitSharingEventFields>;
22
- export declare class ClaimProfitSharingEvent implements StructClass {
23
- __StructClass: true;
24
- static readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::ClaimProfitSharingEvent";
25
- static readonly $numTypeParams = 0;
26
- static readonly $isPhantom: readonly [];
27
- readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::ClaimProfitSharingEvent";
28
- readonly $fullTypeName: `${typeof PKG_V3}::tails_staking::ClaimProfitSharingEvent`;
29
- readonly $typeArgs: [];
30
- readonly $isPhantom: readonly [];
31
- readonly tails: ToField<Vector<"u64">>;
32
- readonly profitAsset: ToField<TypeName>;
33
- readonly log: ToField<Vector<"u64">>;
34
- readonly bcsPadding: ToField<Vector<Vector<"u8">>>;
35
- private constructor();
36
- static reified(): ClaimProfitSharingEventReified;
37
- static get r(): reified.StructClassReified<ClaimProfitSharingEvent, ClaimProfitSharingEventFields>;
38
- static phantom(): PhantomReified<ToTypeStr<ClaimProfitSharingEvent>>;
39
- static get p(): reified.PhantomReified<"0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::ClaimProfitSharingEvent">;
40
- static get bcs(): import("@mysten/sui/bcs").BcsType<{
41
- tails: string[];
42
- profit_asset: {
43
- name: {
44
- bytes: number[];
45
- };
46
- };
47
- log: string[];
48
- bcs_padding: number[][];
49
- }, {
50
- tails: Iterable<string | number | bigint> & {
51
- length: number;
52
- };
53
- profit_asset: {
54
- name: {
55
- bytes: Iterable<number> & {
56
- length: number;
57
- };
58
- };
59
- };
60
- log: Iterable<string | number | bigint> & {
61
- length: number;
62
- };
63
- bcs_padding: Iterable<Iterable<number> & {
64
- length: number;
65
- }> & {
66
- length: number;
67
- };
68
- }>;
69
- static fromFields(fields: Record<string, any>): ClaimProfitSharingEvent;
70
- static fromFieldsWithTypes(item: FieldsWithTypes): ClaimProfitSharingEvent;
71
- static fromBcs(data: Uint8Array): ClaimProfitSharingEvent;
72
- toJSONField(): {
73
- tails: string[];
74
- profitAsset: {
75
- name: string;
76
- };
77
- log: string[];
78
- bcsPadding: number[][];
79
- };
80
- toJSON(): {
81
- tails: string[];
82
- profitAsset: {
83
- name: string;
84
- };
85
- log: string[];
86
- bcsPadding: number[][];
87
- $typeName: string;
88
- $typeArgs: [];
89
- };
90
- static fromJSONField(field: any): ClaimProfitSharingEvent;
91
- static fromJSON(json: Record<string, any>): ClaimProfitSharingEvent;
92
- static fromSuiParsedData(content: SuiParsedData): ClaimProfitSharingEvent;
93
- static fromSuiObjectData(data: SuiObjectData): ClaimProfitSharingEvent;
94
- static fetch(client: SuiClient, id: string): Promise<ClaimProfitSharingEvent>;
95
- }
96
- export declare function isDailySignUpEvent(type: string): boolean;
97
- export interface DailySignUpEventFields {
98
- tails: ToField<Vector<"u64">>;
99
- log: ToField<Vector<"u64">>;
100
- bcsPadding: ToField<Vector<Vector<"u8">>>;
101
- }
102
- export type DailySignUpEventReified = Reified<DailySignUpEvent, DailySignUpEventFields>;
103
- export declare class DailySignUpEvent implements StructClass {
104
- __StructClass: true;
105
- static readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::DailySignUpEvent";
106
- static readonly $numTypeParams = 0;
107
- static readonly $isPhantom: readonly [];
108
- readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::DailySignUpEvent";
109
- readonly $fullTypeName: `${typeof PKG_V3}::tails_staking::DailySignUpEvent`;
110
- readonly $typeArgs: [];
111
- readonly $isPhantom: readonly [];
112
- readonly tails: ToField<Vector<"u64">>;
113
- readonly log: ToField<Vector<"u64">>;
114
- readonly bcsPadding: ToField<Vector<Vector<"u8">>>;
115
- private constructor();
116
- static reified(): DailySignUpEventReified;
117
- static get r(): reified.StructClassReified<DailySignUpEvent, DailySignUpEventFields>;
118
- static phantom(): PhantomReified<ToTypeStr<DailySignUpEvent>>;
119
- static get p(): reified.PhantomReified<"0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::DailySignUpEvent">;
120
- static get bcs(): import("@mysten/sui/bcs").BcsType<{
121
- tails: string[];
122
- log: string[];
123
- bcs_padding: number[][];
124
- }, {
125
- tails: Iterable<string | number | bigint> & {
126
- length: number;
127
- };
128
- log: Iterable<string | number | bigint> & {
129
- length: number;
130
- };
131
- bcs_padding: Iterable<Iterable<number> & {
132
- length: number;
133
- }> & {
134
- length: number;
135
- };
136
- }>;
137
- static fromFields(fields: Record<string, any>): DailySignUpEvent;
138
- static fromFieldsWithTypes(item: FieldsWithTypes): DailySignUpEvent;
139
- static fromBcs(data: Uint8Array): DailySignUpEvent;
140
- toJSONField(): {
141
- tails: string[];
142
- log: string[];
143
- bcsPadding: number[][];
144
- };
145
- toJSON(): {
146
- tails: string[];
147
- log: string[];
148
- bcsPadding: number[][];
149
- $typeName: string;
150
- $typeArgs: [];
151
- };
152
- static fromJSONField(field: any): DailySignUpEvent;
153
- static fromJSON(json: Record<string, any>): DailySignUpEvent;
154
- static fromSuiParsedData(content: SuiParsedData): DailySignUpEvent;
155
- static fromSuiObjectData(data: SuiObjectData): DailySignUpEvent;
156
- static fetch(client: SuiClient, id: string): Promise<DailySignUpEvent>;
157
- }
158
- export declare function isExpDownEvent(type: string): boolean;
159
- export interface ExpDownEventFields {
160
- tails: ToField<"address">;
161
- log: ToField<Vector<"u64">>;
162
- bcsPadding: ToField<Vector<Vector<"u8">>>;
163
- }
164
- export type ExpDownEventReified = Reified<ExpDownEvent, ExpDownEventFields>;
165
- export declare class ExpDownEvent implements StructClass {
166
- __StructClass: true;
167
- static readonly $typeName = "0xea14501c603e8fcd907087d3aa7cb7adb4d7b3a7ea5e078cc9e8f05c67bc8034::tails_staking::ExpDownEvent";
168
- static readonly $numTypeParams = 0;
169
- static readonly $isPhantom: readonly [];
170
- readonly $typeName = "0xea14501c603e8fcd907087d3aa7cb7adb4d7b3a7ea5e078cc9e8f05c67bc8034::tails_staking::ExpDownEvent";
171
- readonly $fullTypeName: `${typeof PKG_V6}::tails_staking::ExpDownEvent`;
172
- readonly $typeArgs: [];
173
- readonly $isPhantom: readonly [];
174
- readonly tails: ToField<"address">;
175
- readonly log: ToField<Vector<"u64">>;
176
- readonly bcsPadding: ToField<Vector<Vector<"u8">>>;
177
- private constructor();
178
- static reified(): ExpDownEventReified;
179
- static get r(): reified.StructClassReified<ExpDownEvent, ExpDownEventFields>;
180
- static phantom(): PhantomReified<ToTypeStr<ExpDownEvent>>;
181
- static get p(): reified.PhantomReified<"0xea14501c603e8fcd907087d3aa7cb7adb4d7b3a7ea5e078cc9e8f05c67bc8034::tails_staking::ExpDownEvent">;
182
- static get bcs(): import("@mysten/sui/bcs").BcsType<{
183
- tails: string;
184
- log: string[];
185
- bcs_padding: number[][];
186
- }, {
187
- tails: string;
188
- log: Iterable<string | number | bigint> & {
189
- length: number;
190
- };
191
- bcs_padding: Iterable<Iterable<number> & {
192
- length: number;
193
- }> & {
194
- length: number;
195
- };
196
- }>;
197
- static fromFields(fields: Record<string, any>): ExpDownEvent;
198
- static fromFieldsWithTypes(item: FieldsWithTypes): ExpDownEvent;
199
- static fromBcs(data: Uint8Array): ExpDownEvent;
200
- toJSONField(): {
201
- tails: string;
202
- log: string[];
203
- bcsPadding: number[][];
204
- };
205
- toJSON(): {
206
- tails: string;
207
- log: string[];
208
- bcsPadding: number[][];
209
- $typeName: string;
210
- $typeArgs: [];
211
- };
212
- static fromJSONField(field: any): ExpDownEvent;
213
- static fromJSON(json: Record<string, any>): ExpDownEvent;
214
- static fromSuiParsedData(content: SuiParsedData): ExpDownEvent;
215
- static fromSuiObjectData(data: SuiObjectData): ExpDownEvent;
216
- static fetch(client: SuiClient, id: string): Promise<ExpDownEvent>;
217
- }
218
- export declare function isExpUpEvent(type: string): boolean;
219
- export interface ExpUpEventFields {
220
- tails: ToField<"address">;
221
- log: ToField<Vector<"u64">>;
222
- bcsPadding: ToField<Vector<Vector<"u8">>>;
223
- }
224
- export type ExpUpEventReified = Reified<ExpUpEvent, ExpUpEventFields>;
225
- export declare class ExpUpEvent implements StructClass {
226
- __StructClass: true;
227
- static readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::ExpUpEvent";
228
- static readonly $numTypeParams = 0;
229
- static readonly $isPhantom: readonly [];
230
- readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::ExpUpEvent";
231
- readonly $fullTypeName: `${typeof PKG_V3}::tails_staking::ExpUpEvent`;
232
- readonly $typeArgs: [];
233
- readonly $isPhantom: readonly [];
234
- readonly tails: ToField<"address">;
235
- readonly log: ToField<Vector<"u64">>;
236
- readonly bcsPadding: ToField<Vector<Vector<"u8">>>;
237
- private constructor();
238
- static reified(): ExpUpEventReified;
239
- static get r(): reified.StructClassReified<ExpUpEvent, ExpUpEventFields>;
240
- static phantom(): PhantomReified<ToTypeStr<ExpUpEvent>>;
241
- static get p(): reified.PhantomReified<"0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::ExpUpEvent">;
242
- static get bcs(): import("@mysten/sui/bcs").BcsType<{
243
- tails: string;
244
- log: string[];
245
- bcs_padding: number[][];
246
- }, {
247
- tails: string;
248
- log: Iterable<string | number | bigint> & {
249
- length: number;
250
- };
251
- bcs_padding: Iterable<Iterable<number> & {
252
- length: number;
253
- }> & {
254
- length: number;
255
- };
256
- }>;
257
- static fromFields(fields: Record<string, any>): ExpUpEvent;
258
- static fromFieldsWithTypes(item: FieldsWithTypes): ExpUpEvent;
259
- static fromBcs(data: Uint8Array): ExpUpEvent;
260
- toJSONField(): {
261
- tails: string;
262
- log: string[];
263
- bcsPadding: number[][];
264
- };
265
- toJSON(): {
266
- tails: string;
267
- log: string[];
268
- bcsPadding: number[][];
269
- $typeName: string;
270
- $typeArgs: [];
271
- };
272
- static fromJSONField(field: any): ExpUpEvent;
273
- static fromJSON(json: Record<string, any>): ExpUpEvent;
274
- static fromSuiParsedData(content: SuiParsedData): ExpUpEvent;
275
- static fromSuiObjectData(data: SuiObjectData): ExpUpEvent;
276
- static fetch(client: SuiClient, id: string): Promise<ExpUpEvent>;
277
- }
278
- export declare function isLevelUpEvent(type: string): boolean;
279
- export interface LevelUpEventFields {
280
- tails: ToField<"address">;
281
- log: ToField<Vector<"u64">>;
282
- bcsPadding: ToField<Vector<Vector<"u8">>>;
283
- }
284
- export type LevelUpEventReified = Reified<LevelUpEvent, LevelUpEventFields>;
285
- export declare class LevelUpEvent implements StructClass {
286
- __StructClass: true;
287
- static readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::LevelUpEvent";
288
- static readonly $numTypeParams = 0;
289
- static readonly $isPhantom: readonly [];
290
- readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::LevelUpEvent";
291
- readonly $fullTypeName: `${typeof PKG_V3}::tails_staking::LevelUpEvent`;
292
- readonly $typeArgs: [];
293
- readonly $isPhantom: readonly [];
294
- readonly tails: ToField<"address">;
295
- readonly log: ToField<Vector<"u64">>;
296
- readonly bcsPadding: ToField<Vector<Vector<"u8">>>;
297
- private constructor();
298
- static reified(): LevelUpEventReified;
299
- static get r(): reified.StructClassReified<LevelUpEvent, LevelUpEventFields>;
300
- static phantom(): PhantomReified<ToTypeStr<LevelUpEvent>>;
301
- static get p(): reified.PhantomReified<"0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::LevelUpEvent">;
302
- static get bcs(): import("@mysten/sui/bcs").BcsType<{
303
- tails: string;
304
- log: string[];
305
- bcs_padding: number[][];
306
- }, {
307
- tails: string;
308
- log: Iterable<string | number | bigint> & {
309
- length: number;
310
- };
311
- bcs_padding: Iterable<Iterable<number> & {
312
- length: number;
313
- }> & {
314
- length: number;
315
- };
316
- }>;
317
- static fromFields(fields: Record<string, any>): LevelUpEvent;
318
- static fromFieldsWithTypes(item: FieldsWithTypes): LevelUpEvent;
319
- static fromBcs(data: Uint8Array): LevelUpEvent;
320
- toJSONField(): {
321
- tails: string;
322
- log: string[];
323
- bcsPadding: number[][];
324
- };
325
- toJSON(): {
326
- tails: string;
327
- log: string[];
328
- bcsPadding: number[][];
329
- $typeName: string;
330
- $typeArgs: [];
331
- };
332
- static fromJSONField(field: any): LevelUpEvent;
333
- static fromJSON(json: Record<string, any>): LevelUpEvent;
334
- static fromSuiParsedData(content: SuiParsedData): LevelUpEvent;
335
- static fromSuiObjectData(data: SuiObjectData): LevelUpEvent;
336
- static fetch(client: SuiClient, id: string): Promise<LevelUpEvent>;
337
- }
338
- export declare function isRemoveProfitSharingEvent(type: string): boolean;
339
- export interface RemoveProfitSharingEventFields {
340
- token: ToField<TypeName>;
341
- log: ToField<Vector<"u64">>;
342
- bcsPadding: ToField<Vector<Vector<"u8">>>;
343
- }
344
- export type RemoveProfitSharingEventReified = Reified<RemoveProfitSharingEvent, RemoveProfitSharingEventFields>;
345
- export declare class RemoveProfitSharingEvent implements StructClass {
346
- __StructClass: true;
347
- static readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::RemoveProfitSharingEvent";
348
- static readonly $numTypeParams = 0;
349
- static readonly $isPhantom: readonly [];
350
- readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::RemoveProfitSharingEvent";
351
- readonly $fullTypeName: `${typeof PKG_V3}::tails_staking::RemoveProfitSharingEvent`;
352
- readonly $typeArgs: [];
353
- readonly $isPhantom: readonly [];
354
- readonly token: ToField<TypeName>;
355
- readonly log: ToField<Vector<"u64">>;
356
- readonly bcsPadding: ToField<Vector<Vector<"u8">>>;
357
- private constructor();
358
- static reified(): RemoveProfitSharingEventReified;
359
- static get r(): reified.StructClassReified<RemoveProfitSharingEvent, RemoveProfitSharingEventFields>;
360
- static phantom(): PhantomReified<ToTypeStr<RemoveProfitSharingEvent>>;
361
- static get p(): reified.PhantomReified<"0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::RemoveProfitSharingEvent">;
362
- static get bcs(): import("@mysten/sui/bcs").BcsType<{
363
- token: {
364
- name: {
365
- bytes: number[];
366
- };
367
- };
368
- log: string[];
369
- bcs_padding: number[][];
370
- }, {
371
- token: {
372
- name: {
373
- bytes: Iterable<number> & {
374
- length: number;
375
- };
376
- };
377
- };
378
- log: Iterable<string | number | bigint> & {
379
- length: number;
380
- };
381
- bcs_padding: Iterable<Iterable<number> & {
382
- length: number;
383
- }> & {
384
- length: number;
385
- };
386
- }>;
387
- static fromFields(fields: Record<string, any>): RemoveProfitSharingEvent;
388
- static fromFieldsWithTypes(item: FieldsWithTypes): RemoveProfitSharingEvent;
389
- static fromBcs(data: Uint8Array): RemoveProfitSharingEvent;
390
- toJSONField(): {
391
- token: {
392
- name: string;
393
- };
394
- log: string[];
395
- bcsPadding: number[][];
396
- };
397
- toJSON(): {
398
- token: {
399
- name: string;
400
- };
401
- log: string[];
402
- bcsPadding: number[][];
403
- $typeName: string;
404
- $typeArgs: [];
405
- };
406
- static fromJSONField(field: any): RemoveProfitSharingEvent;
407
- static fromJSON(json: Record<string, any>): RemoveProfitSharingEvent;
408
- static fromSuiParsedData(content: SuiParsedData): RemoveProfitSharingEvent;
409
- static fromSuiObjectData(data: SuiObjectData): RemoveProfitSharingEvent;
410
- static fetch(client: SuiClient, id: string): Promise<RemoveProfitSharingEvent>;
411
- }
412
- export declare function isSetProfitSharingEvent(type: string): boolean;
413
- export interface SetProfitSharingEventFields {
414
- token: ToField<TypeName>;
415
- levelProfits: ToField<Vector<"u64">>;
416
- levelCounts: ToField<Vector<"u64">>;
417
- log: ToField<Vector<"u64">>;
418
- bcsPadding: ToField<Vector<Vector<"u8">>>;
419
- }
420
- export type SetProfitSharingEventReified = Reified<SetProfitSharingEvent, SetProfitSharingEventFields>;
421
- export declare class SetProfitSharingEvent implements StructClass {
422
- __StructClass: true;
423
- static readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::SetProfitSharingEvent";
424
- static readonly $numTypeParams = 0;
425
- static readonly $isPhantom: readonly [];
426
- readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::SetProfitSharingEvent";
427
- readonly $fullTypeName: `${typeof PKG_V3}::tails_staking::SetProfitSharingEvent`;
428
- readonly $typeArgs: [];
429
- readonly $isPhantom: readonly [];
430
- readonly token: ToField<TypeName>;
431
- readonly levelProfits: ToField<Vector<"u64">>;
432
- readonly levelCounts: ToField<Vector<"u64">>;
433
- readonly log: ToField<Vector<"u64">>;
434
- readonly bcsPadding: ToField<Vector<Vector<"u8">>>;
435
- private constructor();
436
- static reified(): SetProfitSharingEventReified;
437
- static get r(): reified.StructClassReified<SetProfitSharingEvent, SetProfitSharingEventFields>;
438
- static phantom(): PhantomReified<ToTypeStr<SetProfitSharingEvent>>;
439
- static get p(): reified.PhantomReified<"0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::SetProfitSharingEvent">;
440
- static get bcs(): import("@mysten/sui/bcs").BcsType<{
441
- token: {
442
- name: {
443
- bytes: number[];
444
- };
445
- };
446
- level_profits: string[];
447
- level_counts: string[];
448
- log: string[];
449
- bcs_padding: number[][];
450
- }, {
451
- token: {
452
- name: {
453
- bytes: Iterable<number> & {
454
- length: number;
455
- };
456
- };
457
- };
458
- level_profits: Iterable<string | number | bigint> & {
459
- length: number;
460
- };
461
- level_counts: Iterable<string | number | bigint> & {
462
- length: number;
463
- };
464
- log: Iterable<string | number | bigint> & {
465
- length: number;
466
- };
467
- bcs_padding: Iterable<Iterable<number> & {
468
- length: number;
469
- }> & {
470
- length: number;
471
- };
472
- }>;
473
- static fromFields(fields: Record<string, any>): SetProfitSharingEvent;
474
- static fromFieldsWithTypes(item: FieldsWithTypes): SetProfitSharingEvent;
475
- static fromBcs(data: Uint8Array): SetProfitSharingEvent;
476
- toJSONField(): {
477
- token: {
478
- name: string;
479
- };
480
- levelProfits: string[];
481
- levelCounts: string[];
482
- log: string[];
483
- bcsPadding: number[][];
484
- };
485
- toJSON(): {
486
- token: {
487
- name: string;
488
- };
489
- levelProfits: string[];
490
- levelCounts: string[];
491
- log: string[];
492
- bcsPadding: number[][];
493
- $typeName: string;
494
- $typeArgs: [];
495
- };
496
- static fromJSONField(field: any): SetProfitSharingEvent;
497
- static fromJSON(json: Record<string, any>): SetProfitSharingEvent;
498
- static fromSuiParsedData(content: SuiParsedData): SetProfitSharingEvent;
499
- static fromSuiObjectData(data: SuiObjectData): SetProfitSharingEvent;
500
- static fetch(client: SuiClient, id: string): Promise<SetProfitSharingEvent>;
501
- }
502
- export declare function isStakeTailsEvent(type: string): boolean;
503
- export interface StakeTailsEventFields {
504
- tails: ToField<"address">;
505
- log: ToField<Vector<"u64">>;
506
- bcsPadding: ToField<Vector<Vector<"u8">>>;
507
- }
508
- export type StakeTailsEventReified = Reified<StakeTailsEvent, StakeTailsEventFields>;
509
- export declare class StakeTailsEvent implements StructClass {
510
- __StructClass: true;
511
- static readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::StakeTailsEvent";
512
- static readonly $numTypeParams = 0;
513
- static readonly $isPhantom: readonly [];
514
- readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::StakeTailsEvent";
515
- readonly $fullTypeName: `${typeof PKG_V3}::tails_staking::StakeTailsEvent`;
516
- readonly $typeArgs: [];
517
- readonly $isPhantom: readonly [];
518
- readonly tails: ToField<"address">;
519
- readonly log: ToField<Vector<"u64">>;
520
- readonly bcsPadding: ToField<Vector<Vector<"u8">>>;
521
- private constructor();
522
- static reified(): StakeTailsEventReified;
523
- static get r(): reified.StructClassReified<StakeTailsEvent, StakeTailsEventFields>;
524
- static phantom(): PhantomReified<ToTypeStr<StakeTailsEvent>>;
525
- static get p(): reified.PhantomReified<"0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::StakeTailsEvent">;
526
- static get bcs(): import("@mysten/sui/bcs").BcsType<{
527
- tails: string;
528
- log: string[];
529
- bcs_padding: number[][];
530
- }, {
531
- tails: string;
532
- log: Iterable<string | number | bigint> & {
533
- length: number;
534
- };
535
- bcs_padding: Iterable<Iterable<number> & {
536
- length: number;
537
- }> & {
538
- length: number;
539
- };
540
- }>;
541
- static fromFields(fields: Record<string, any>): StakeTailsEvent;
542
- static fromFieldsWithTypes(item: FieldsWithTypes): StakeTailsEvent;
543
- static fromBcs(data: Uint8Array): StakeTailsEvent;
544
- toJSONField(): {
545
- tails: string;
546
- log: string[];
547
- bcsPadding: number[][];
548
- };
549
- toJSON(): {
550
- tails: string;
551
- log: string[];
552
- bcsPadding: number[][];
553
- $typeName: string;
554
- $typeArgs: [];
555
- };
556
- static fromJSONField(field: any): StakeTailsEvent;
557
- static fromJSON(json: Record<string, any>): StakeTailsEvent;
558
- static fromSuiParsedData(content: SuiParsedData): StakeTailsEvent;
559
- static fromSuiObjectData(data: SuiObjectData): StakeTailsEvent;
560
- static fetch(client: SuiClient, id: string): Promise<StakeTailsEvent>;
561
- }
562
- export declare function isStakingInfo(type: string): boolean;
563
- export interface StakingInfoFields {
564
- user: ToField<"address">;
565
- tails: ToField<Vector<"u64">>;
566
- profits: ToField<Vector<"u64">>;
567
- u64Padding: ToField<Vector<"u64">>;
568
- }
569
- export type StakingInfoReified = Reified<StakingInfo, StakingInfoFields>;
570
- export declare class StakingInfo implements StructClass {
571
- __StructClass: true;
572
- static readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::StakingInfo";
573
- static readonly $numTypeParams = 0;
574
- static readonly $isPhantom: readonly [];
575
- readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::StakingInfo";
576
- readonly $fullTypeName: `${typeof PKG_V3}::tails_staking::StakingInfo`;
577
- readonly $typeArgs: [];
578
- readonly $isPhantom: readonly [];
579
- readonly user: ToField<"address">;
580
- readonly tails: ToField<Vector<"u64">>;
581
- readonly profits: ToField<Vector<"u64">>;
582
- readonly u64Padding: ToField<Vector<"u64">>;
583
- private constructor();
584
- static reified(): StakingInfoReified;
585
- static get r(): reified.StructClassReified<StakingInfo, StakingInfoFields>;
586
- static phantom(): PhantomReified<ToTypeStr<StakingInfo>>;
587
- static get p(): reified.PhantomReified<"0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::StakingInfo">;
588
- static get bcs(): import("@mysten/sui/bcs").BcsType<{
589
- user: string;
590
- tails: string[];
591
- profits: string[];
592
- u64_padding: string[];
593
- }, {
594
- user: string;
595
- tails: Iterable<string | number | bigint> & {
596
- length: number;
597
- };
598
- profits: Iterable<string | number | bigint> & {
599
- length: number;
600
- };
601
- u64_padding: Iterable<string | number | bigint> & {
602
- length: number;
603
- };
604
- }>;
605
- static fromFields(fields: Record<string, any>): StakingInfo;
606
- static fromFieldsWithTypes(item: FieldsWithTypes): StakingInfo;
607
- static fromBcs(data: Uint8Array): StakingInfo;
608
- toJSONField(): {
609
- user: string;
610
- tails: string[];
611
- profits: string[];
612
- u64Padding: string[];
613
- };
614
- toJSON(): {
615
- user: string;
616
- tails: string[];
617
- profits: string[];
618
- u64Padding: string[];
619
- $typeName: string;
620
- $typeArgs: [];
621
- };
622
- static fromJSONField(field: any): StakingInfo;
623
- static fromJSON(json: Record<string, any>): StakingInfo;
624
- static fromSuiParsedData(content: SuiParsedData): StakingInfo;
625
- static fromSuiObjectData(data: SuiObjectData): StakingInfo;
626
- static fetch(client: SuiClient, id: string): Promise<StakingInfo>;
627
- }
628
- export declare function isTailsStakingRegistry(type: string): boolean;
629
- export interface TailsStakingRegistryFields {
630
- id: ToField<UID>;
631
- config: ToField<Vector<"u64">>;
632
- tailsManagerCap: ToField<ManagerCap>;
633
- tails: ToField<ObjectTable<"address", ToPhantom<Tails>>>;
634
- tailsMetadata: ToField<Bag>;
635
- stakingInfos: ToField<BigVector>;
636
- profitAssets: ToField<Vector<TypeName>>;
637
- transferPolicy: ToField<TransferPolicy<ToPhantom<Tails>>>;
638
- }
639
- export type TailsStakingRegistryReified = Reified<TailsStakingRegistry, TailsStakingRegistryFields>;
640
- export declare class TailsStakingRegistry implements StructClass {
641
- __StructClass: true;
642
- static readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::TailsStakingRegistry";
643
- static readonly $numTypeParams = 0;
644
- static readonly $isPhantom: readonly [];
645
- readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::TailsStakingRegistry";
646
- readonly $fullTypeName: `${typeof PKG_V3}::tails_staking::TailsStakingRegistry`;
647
- readonly $typeArgs: [];
648
- readonly $isPhantom: readonly [];
649
- readonly id: ToField<UID>;
650
- readonly config: ToField<Vector<"u64">>;
651
- readonly tailsManagerCap: ToField<ManagerCap>;
652
- readonly tails: ToField<ObjectTable<"address", ToPhantom<Tails>>>;
653
- readonly tailsMetadata: ToField<Bag>;
654
- readonly stakingInfos: ToField<BigVector>;
655
- readonly profitAssets: ToField<Vector<TypeName>>;
656
- readonly transferPolicy: ToField<TransferPolicy<ToPhantom<Tails>>>;
657
- private constructor();
658
- static reified(): TailsStakingRegistryReified;
659
- static get r(): reified.StructClassReified<TailsStakingRegistry, TailsStakingRegistryFields>;
660
- static phantom(): PhantomReified<ToTypeStr<TailsStakingRegistry>>;
661
- static get p(): reified.PhantomReified<"0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::TailsStakingRegistry">;
662
- static get bcs(): import("@mysten/sui/bcs").BcsType<{
663
- id: {
664
- id: {
665
- bytes: string;
666
- };
667
- };
668
- config: string[];
669
- tails_manager_cap: {
670
- id: {
671
- id: {
672
- bytes: string;
673
- };
674
- };
675
- };
676
- tails: {
677
- id: {
678
- id: {
679
- bytes: string;
680
- };
681
- };
682
- size: string;
683
- };
684
- tails_metadata: {
685
- id: {
686
- id: {
687
- bytes: string;
688
- };
689
- };
690
- size: string;
691
- };
692
- staking_infos: {
693
- id: {
694
- id: {
695
- bytes: string;
696
- };
697
- };
698
- element_type: {
699
- name: {
700
- bytes: number[];
701
- };
702
- };
703
- slice_idx: string;
704
- slice_size: number;
705
- length: string;
706
- };
707
- profit_assets: {
708
- name: {
709
- bytes: number[];
710
- };
711
- }[];
712
- transfer_policy: {
713
- id: {
714
- id: {
715
- bytes: string;
716
- };
717
- };
718
- balance: {
719
- value: string;
720
- };
721
- rules: {
722
- contents: any[];
723
- };
724
- };
725
- }, {
726
- id: {
727
- id: {
728
- bytes: string;
729
- };
730
- };
731
- config: Iterable<string | number | bigint> & {
732
- length: number;
733
- };
734
- tails_manager_cap: {
735
- id: {
736
- id: {
737
- bytes: string;
738
- };
739
- };
740
- };
741
- tails: {
742
- id: {
743
- id: {
744
- bytes: string;
745
- };
746
- };
747
- size: string | number | bigint;
748
- };
749
- tails_metadata: {
750
- id: {
751
- id: {
752
- bytes: string;
753
- };
754
- };
755
- size: string | number | bigint;
756
- };
757
- staking_infos: {
758
- id: {
759
- id: {
760
- bytes: string;
761
- };
762
- };
763
- element_type: {
764
- name: {
765
- bytes: Iterable<number> & {
766
- length: number;
767
- };
768
- };
769
- };
770
- slice_idx: string | number | bigint;
771
- slice_size: number;
772
- length: string | number | bigint;
773
- };
774
- profit_assets: Iterable<{
775
- name: {
776
- bytes: Iterable<number> & {
777
- length: number;
778
- };
779
- };
780
- }> & {
781
- length: number;
782
- };
783
- transfer_policy: {
784
- id: {
785
- id: {
786
- bytes: string;
787
- };
788
- };
789
- balance: {
790
- value: string | number | bigint;
791
- };
792
- rules: {
793
- contents: Iterable<any> & {
794
- length: number;
795
- };
796
- };
797
- };
798
- }>;
799
- static fromFields(fields: Record<string, any>): TailsStakingRegistry;
800
- static fromFieldsWithTypes(item: FieldsWithTypes): TailsStakingRegistry;
801
- static fromBcs(data: Uint8Array): TailsStakingRegistry;
802
- toJSONField(): {
803
- id: string;
804
- config: string[];
805
- tailsManagerCap: {
806
- id: string;
807
- };
808
- tails: {
809
- id: string;
810
- size: string;
811
- };
812
- tailsMetadata: {
813
- id: string;
814
- size: string;
815
- };
816
- stakingInfos: {
817
- id: string;
818
- elementType: {
819
- name: string;
820
- };
821
- sliceIdx: string;
822
- sliceSize: number;
823
- length: string;
824
- };
825
- profitAssets: {
826
- name: string;
827
- }[];
828
- transferPolicy: {
829
- id: string;
830
- balance: {
831
- value: string;
832
- };
833
- rules: {
834
- contents: {
835
- name: string;
836
- }[];
837
- };
838
- };
839
- };
840
- toJSON(): {
841
- id: string;
842
- config: string[];
843
- tailsManagerCap: {
844
- id: string;
845
- };
846
- tails: {
847
- id: string;
848
- size: string;
849
- };
850
- tailsMetadata: {
851
- id: string;
852
- size: string;
853
- };
854
- stakingInfos: {
855
- id: string;
856
- elementType: {
857
- name: string;
858
- };
859
- sliceIdx: string;
860
- sliceSize: number;
861
- length: string;
862
- };
863
- profitAssets: {
864
- name: string;
865
- }[];
866
- transferPolicy: {
867
- id: string;
868
- balance: {
869
- value: string;
870
- };
871
- rules: {
872
- contents: {
873
- name: string;
874
- }[];
875
- };
876
- };
877
- $typeName: string;
878
- $typeArgs: [];
879
- };
880
- static fromJSONField(field: any): TailsStakingRegistry;
881
- static fromJSON(json: Record<string, any>): TailsStakingRegistry;
882
- static fromSuiParsedData(content: SuiParsedData): TailsStakingRegistry;
883
- static fromSuiObjectData(data: SuiObjectData): TailsStakingRegistry;
884
- static fetch(client: SuiClient, id: string): Promise<TailsStakingRegistry>;
885
- }
886
- export declare function isTransferTailsEvent(type: string): boolean;
887
- export interface TransferTailsEventFields {
888
- tails: ToField<"address">;
889
- recipient: ToField<"address">;
890
- log: ToField<Vector<"u64">>;
891
- bcsPadding: ToField<Vector<Vector<"u8">>>;
892
- }
893
- export type TransferTailsEventReified = Reified<TransferTailsEvent, TransferTailsEventFields>;
894
- export declare class TransferTailsEvent implements StructClass {
895
- __StructClass: true;
896
- static readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::TransferTailsEvent";
897
- static readonly $numTypeParams = 0;
898
- static readonly $isPhantom: readonly [];
899
- readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::TransferTailsEvent";
900
- readonly $fullTypeName: `${typeof PKG_V3}::tails_staking::TransferTailsEvent`;
901
- readonly $typeArgs: [];
902
- readonly $isPhantom: readonly [];
903
- readonly tails: ToField<"address">;
904
- readonly recipient: ToField<"address">;
905
- readonly log: ToField<Vector<"u64">>;
906
- readonly bcsPadding: ToField<Vector<Vector<"u8">>>;
907
- private constructor();
908
- static reified(): TransferTailsEventReified;
909
- static get r(): reified.StructClassReified<TransferTailsEvent, TransferTailsEventFields>;
910
- static phantom(): PhantomReified<ToTypeStr<TransferTailsEvent>>;
911
- static get p(): reified.PhantomReified<"0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::TransferTailsEvent">;
912
- static get bcs(): import("@mysten/sui/bcs").BcsType<{
913
- tails: string;
914
- recipient: string;
915
- log: string[];
916
- bcs_padding: number[][];
917
- }, {
918
- tails: string;
919
- recipient: string;
920
- log: Iterable<string | number | bigint> & {
921
- length: number;
922
- };
923
- bcs_padding: Iterable<Iterable<number> & {
924
- length: number;
925
- }> & {
926
- length: number;
927
- };
928
- }>;
929
- static fromFields(fields: Record<string, any>): TransferTailsEvent;
930
- static fromFieldsWithTypes(item: FieldsWithTypes): TransferTailsEvent;
931
- static fromBcs(data: Uint8Array): TransferTailsEvent;
932
- toJSONField(): {
933
- tails: string;
934
- recipient: string;
935
- log: string[];
936
- bcsPadding: number[][];
937
- };
938
- toJSON(): {
939
- tails: string;
940
- recipient: string;
941
- log: string[];
942
- bcsPadding: number[][];
943
- $typeName: string;
944
- $typeArgs: [];
945
- };
946
- static fromJSONField(field: any): TransferTailsEvent;
947
- static fromJSON(json: Record<string, any>): TransferTailsEvent;
948
- static fromSuiParsedData(content: SuiParsedData): TransferTailsEvent;
949
- static fromSuiObjectData(data: SuiObjectData): TransferTailsEvent;
950
- static fetch(client: SuiClient, id: string): Promise<TransferTailsEvent>;
951
- }
952
- export declare function isUnstakeTailsEvent(type: string): boolean;
953
- export interface UnstakeTailsEventFields {
954
- tails: ToField<"address">;
955
- log: ToField<Vector<"u64">>;
956
- bcsPadding: ToField<Vector<Vector<"u8">>>;
957
- }
958
- export type UnstakeTailsEventReified = Reified<UnstakeTailsEvent, UnstakeTailsEventFields>;
959
- export declare class UnstakeTailsEvent implements StructClass {
960
- __StructClass: true;
961
- static readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::UnstakeTailsEvent";
962
- static readonly $numTypeParams = 0;
963
- static readonly $isPhantom: readonly [];
964
- readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::UnstakeTailsEvent";
965
- readonly $fullTypeName: `${typeof PKG_V3}::tails_staking::UnstakeTailsEvent`;
966
- readonly $typeArgs: [];
967
- readonly $isPhantom: readonly [];
968
- readonly tails: ToField<"address">;
969
- readonly log: ToField<Vector<"u64">>;
970
- readonly bcsPadding: ToField<Vector<Vector<"u8">>>;
971
- private constructor();
972
- static reified(): UnstakeTailsEventReified;
973
- static get r(): reified.StructClassReified<UnstakeTailsEvent, UnstakeTailsEventFields>;
974
- static phantom(): PhantomReified<ToTypeStr<UnstakeTailsEvent>>;
975
- static get p(): reified.PhantomReified<"0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::UnstakeTailsEvent">;
976
- static get bcs(): import("@mysten/sui/bcs").BcsType<{
977
- tails: string;
978
- log: string[];
979
- bcs_padding: number[][];
980
- }, {
981
- tails: string;
982
- log: Iterable<string | number | bigint> & {
983
- length: number;
984
- };
985
- bcs_padding: Iterable<Iterable<number> & {
986
- length: number;
987
- }> & {
988
- length: number;
989
- };
990
- }>;
991
- static fromFields(fields: Record<string, any>): UnstakeTailsEvent;
992
- static fromFieldsWithTypes(item: FieldsWithTypes): UnstakeTailsEvent;
993
- static fromBcs(data: Uint8Array): UnstakeTailsEvent;
994
- toJSONField(): {
995
- tails: string;
996
- log: string[];
997
- bcsPadding: number[][];
998
- };
999
- toJSON(): {
1000
- tails: string;
1001
- log: string[];
1002
- bcsPadding: number[][];
1003
- $typeName: string;
1004
- $typeArgs: [];
1005
- };
1006
- static fromJSONField(field: any): UnstakeTailsEvent;
1007
- static fromJSON(json: Record<string, any>): UnstakeTailsEvent;
1008
- static fromSuiParsedData(content: SuiParsedData): UnstakeTailsEvent;
1009
- static fromSuiObjectData(data: SuiObjectData): UnstakeTailsEvent;
1010
- static fetch(client: SuiClient, id: string): Promise<UnstakeTailsEvent>;
1011
- }
1012
- export declare function isUpdateTailsStakingRegistryConfigEvent(type: string): boolean;
1013
- export interface UpdateTailsStakingRegistryConfigEventFields {
1014
- index: ToField<"u64">;
1015
- log: ToField<Vector<"u64">>;
1016
- bcsPadding: ToField<Vector<Vector<"u8">>>;
1017
- }
1018
- export type UpdateTailsStakingRegistryConfigEventReified = Reified<UpdateTailsStakingRegistryConfigEvent, UpdateTailsStakingRegistryConfigEventFields>;
1019
- export declare class UpdateTailsStakingRegistryConfigEvent implements StructClass {
1020
- __StructClass: true;
1021
- static readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::UpdateTailsStakingRegistryConfigEvent";
1022
- static readonly $numTypeParams = 0;
1023
- static readonly $isPhantom: readonly [];
1024
- readonly $typeName = "0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::UpdateTailsStakingRegistryConfigEvent";
1025
- readonly $fullTypeName: `${typeof PKG_V3}::tails_staking::UpdateTailsStakingRegistryConfigEvent`;
1026
- readonly $typeArgs: [];
1027
- readonly $isPhantom: readonly [];
1028
- readonly index: ToField<"u64">;
1029
- readonly log: ToField<Vector<"u64">>;
1030
- readonly bcsPadding: ToField<Vector<Vector<"u8">>>;
1031
- private constructor();
1032
- static reified(): UpdateTailsStakingRegistryConfigEventReified;
1033
- static get r(): reified.StructClassReified<UpdateTailsStakingRegistryConfigEvent, UpdateTailsStakingRegistryConfigEventFields>;
1034
- static phantom(): PhantomReified<ToTypeStr<UpdateTailsStakingRegistryConfigEvent>>;
1035
- static get p(): reified.PhantomReified<"0xf5c7e61fd28d1ed38711f03e1c5ffc6c5b8435eff386132fc5822efe6d90b138::tails_staking::UpdateTailsStakingRegistryConfigEvent">;
1036
- static get bcs(): import("@mysten/sui/bcs").BcsType<{
1037
- index: string;
1038
- log: string[];
1039
- bcs_padding: number[][];
1040
- }, {
1041
- index: string | number | bigint;
1042
- log: Iterable<string | number | bigint> & {
1043
- length: number;
1044
- };
1045
- bcs_padding: Iterable<Iterable<number> & {
1046
- length: number;
1047
- }> & {
1048
- length: number;
1049
- };
1050
- }>;
1051
- static fromFields(fields: Record<string, any>): UpdateTailsStakingRegistryConfigEvent;
1052
- static fromFieldsWithTypes(item: FieldsWithTypes): UpdateTailsStakingRegistryConfigEvent;
1053
- static fromBcs(data: Uint8Array): UpdateTailsStakingRegistryConfigEvent;
1054
- toJSONField(): {
1055
- index: string;
1056
- log: string[];
1057
- bcsPadding: number[][];
1058
- };
1059
- toJSON(): {
1060
- index: string;
1061
- log: string[];
1062
- bcsPadding: number[][];
1063
- $typeName: string;
1064
- $typeArgs: [];
1065
- };
1066
- static fromJSONField(field: any): UpdateTailsStakingRegistryConfigEvent;
1067
- static fromJSON(json: Record<string, any>): UpdateTailsStakingRegistryConfigEvent;
1068
- static fromSuiParsedData(content: SuiParsedData): UpdateTailsStakingRegistryConfigEvent;
1069
- static fromSuiObjectData(data: SuiObjectData): UpdateTailsStakingRegistryConfigEvent;
1070
- static fetch(client: SuiClient, id: string): Promise<UpdateTailsStakingRegistryConfigEvent>;
1071
- }