@sparkdreamnft/sparkdreamjs 0.0.17 → 0.0.19

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 (275) hide show
  1. package/cosmos/bundle.d.ts +160 -160
  2. package/cosmos/bundle.js +182 -182
  3. package/esm/cosmos/bundle.js +182 -182
  4. package/esm/ibc/bundle.js +106 -106
  5. package/esm/sparkdream/blog/v1/params.js +113 -52
  6. package/esm/sparkdream/blog/v1/tx.js +583 -2
  7. package/esm/sparkdream/blog/v1/tx.registry.js +74 -2
  8. package/esm/sparkdream/blog/v1/tx.rpc.msg.js +33 -3
  9. package/esm/sparkdream/bundle.js +448 -346
  10. package/esm/sparkdream/client.js +7 -1
  11. package/esm/sparkdream/collect/v1/params.js +121 -1
  12. package/esm/sparkdream/collect/v1/tx.js +293 -1
  13. package/esm/sparkdream/collect/v1/tx.registry.js +38 -2
  14. package/esm/sparkdream/collect/v1/tx.rpc.msg.js +17 -2
  15. package/esm/sparkdream/collect/v1/types.js +147 -3
  16. package/esm/sparkdream/commons/v1/genesis.js +29 -1
  17. package/esm/sparkdream/commons/v1/query.js +317 -0
  18. package/esm/sparkdream/commons/v1/query.lcd.js +23 -0
  19. package/esm/sparkdream/commons/v1/query.rpc.Query.js +20 -1
  20. package/esm/sparkdream/commons/v1/recurring_spend.js +296 -0
  21. package/esm/sparkdream/commons/v1/tx.js +693 -0
  22. package/esm/sparkdream/commons/v1/tx.registry.js +74 -2
  23. package/esm/sparkdream/commons/v1/tx.rpc.msg.js +33 -1
  24. package/esm/sparkdream/federation/v1/genesis.js +10 -10
  25. package/esm/sparkdream/federation/v1/params.js +29 -54
  26. package/esm/sparkdream/federation/v1/query.js +216 -71
  27. package/esm/sparkdream/federation/v1/query.lcd.js +11 -6
  28. package/esm/sparkdream/federation/v1/query.rpc.Query.js +24 -15
  29. package/esm/sparkdream/federation/v1/tx.amino.js +21 -21
  30. package/esm/sparkdream/federation/v1/tx.js +1146 -1105
  31. package/esm/sparkdream/federation/v1/tx.registry.js +74 -74
  32. package/esm/sparkdream/federation/v1/tx.rpc.msg.js +32 -26
  33. package/esm/sparkdream/federation/v1/types.js +355 -99
  34. package/esm/sparkdream/federation/v1/verifier_activity.js +13 -1
  35. package/esm/sparkdream/forum/v1/params.js +389 -148
  36. package/esm/sparkdream/forum/v1/post.js +25 -1
  37. package/esm/sparkdream/forum/v1/tx.js +460 -0
  38. package/esm/sparkdream/forum/v1/tx.registry.js +56 -2
  39. package/esm/sparkdream/forum/v1/tx.rpc.msg.js +30 -1
  40. package/esm/sparkdream/forum/v1/types.js +355 -0
  41. package/esm/sparkdream/forum/v1/user_rate_limit.js +41 -2
  42. package/esm/sparkdream/guardian/module/v1/module.js +68 -0
  43. package/esm/sparkdream/guardian/v1/query.js +128 -0
  44. package/esm/sparkdream/guardian/v1/query.lcd.js +13 -0
  45. package/esm/sparkdream/guardian/v1/query.rpc.Query.js +26 -0
  46. package/esm/sparkdream/guardian/v1/tx.amino.js +9 -0
  47. package/esm/sparkdream/guardian/v1/tx.js +175 -0
  48. package/esm/sparkdream/guardian/v1/tx.registry.js +33 -0
  49. package/esm/sparkdream/guardian/v1/tx.rpc.msg.js +24 -0
  50. package/esm/sparkdream/identity/module/v1/module.js +71 -0
  51. package/esm/sparkdream/identity/v1/chain_identity.js +199 -0
  52. package/esm/sparkdream/identity/v1/genesis.js +84 -0
  53. package/esm/sparkdream/identity/v1/query.js +372 -0
  54. package/esm/sparkdream/identity/v1/query.lcd.js +21 -0
  55. package/esm/sparkdream/identity/v1/query.rpc.Query.js +42 -0
  56. package/esm/sparkdream/lcd.js +15 -0
  57. package/esm/sparkdream/name/v1/params.js +19 -18
  58. package/esm/sparkdream/rep/v1/bonded_role.js +48 -2
  59. package/esm/sparkdream/rep/v1/member.js +209 -1
  60. package/esm/sparkdream/rep/v1/tag.js +6 -13
  61. package/esm/sparkdream/rpc.query.js +9 -0
  62. package/esm/sparkdream/rpc.tx.js +6 -0
  63. package/esm/sparkdream/service/module/v1/module.js +71 -0
  64. package/esm/sparkdream/service/v1/controller_transfer_case.js +155 -0
  65. package/esm/sparkdream/service/v1/genesis.js +240 -0
  66. package/esm/sparkdream/service/v1/operator.js +250 -0
  67. package/esm/sparkdream/service/v1/params.js +355 -0
  68. package/esm/sparkdream/service/v1/query.js +1582 -0
  69. package/esm/sparkdream/service/v1/query.lcd.js +107 -0
  70. package/esm/sparkdream/service/v1/query.rpc.Query.js +109 -0
  71. package/esm/sparkdream/service/v1/refile_cooldown.js +121 -0
  72. package/esm/sparkdream/service/v1/report.js +212 -0
  73. package/esm/sparkdream/service/v1/reporter_rate_limit.js +137 -0
  74. package/esm/sparkdream/service/v1/service_type_config.js +264 -0
  75. package/esm/sparkdream/service/v1/system_report_rate_limit.js +115 -0
  76. package/esm/sparkdream/service/v1/tier1_escrow_entry.js +145 -0
  77. package/esm/sparkdream/service/v1/tier1_last_slash.js +121 -0
  78. package/esm/sparkdream/service/v1/tx.amino.js +69 -0
  79. package/esm/sparkdream/service/v1/tx.js +2124 -0
  80. package/esm/sparkdream/service/v1/tx.registry.js +249 -0
  81. package/esm/sparkdream/service/v1/tx.rpc.msg.js +100 -0
  82. package/esm/sparkdream/service/v1/types.js +353 -0
  83. package/esm/sparkdream/session/v1/genesis.js +136 -10
  84. package/esm/sparkdream/session/v1/grant.js +1020 -0
  85. package/esm/sparkdream/session/v1/params.js +543 -19
  86. package/esm/sparkdream/session/v1/query.js +487 -0
  87. package/esm/sparkdream/session/v1/query.lcd.js +41 -3
  88. package/esm/sparkdream/session/v1/query.rpc.Query.js +36 -4
  89. package/esm/sparkdream/session/v1/session.js +6 -0
  90. package/esm/sparkdream/session/v1/tx.js +1066 -0
  91. package/esm/sparkdream/session/v1/tx.registry.js +110 -2
  92. package/esm/sparkdream/session/v1/tx.rpc.msg.js +65 -3
  93. package/esm/tendermint/bundle.js +20 -20
  94. package/ibc/bundle.d.ts +90 -90
  95. package/ibc/bundle.js +106 -106
  96. package/package.json +1 -1
  97. package/sparkdream/blog/v1/params.d.ts +89 -28
  98. package/sparkdream/blog/v1/params.js +113 -52
  99. package/sparkdream/blog/v1/post.d.ts +2 -2
  100. package/sparkdream/blog/v1/tx.d.ts +385 -10
  101. package/sparkdream/blog/v1/tx.js +584 -3
  102. package/sparkdream/blog/v1/tx.registry.d.ts +49 -1
  103. package/sparkdream/blog/v1/tx.registry.js +73 -1
  104. package/sparkdream/blog/v1/tx.rpc.msg.d.ts +27 -3
  105. package/sparkdream/blog/v1/tx.rpc.msg.js +32 -2
  106. package/sparkdream/bundle.d.ts +15308 -12896
  107. package/sparkdream/bundle.js +448 -346
  108. package/sparkdream/client.d.ts +90 -20
  109. package/sparkdream/client.js +7 -1
  110. package/sparkdream/collect/v1/params.d.ts +140 -0
  111. package/sparkdream/collect/v1/params.js +121 -1
  112. package/sparkdream/collect/v1/tx.d.ts +195 -3
  113. package/sparkdream/collect/v1/tx.js +294 -2
  114. package/sparkdream/collect/v1/tx.registry.d.ts +25 -1
  115. package/sparkdream/collect/v1/tx.registry.js +37 -1
  116. package/sparkdream/collect/v1/tx.rpc.msg.d.ts +15 -2
  117. package/sparkdream/collect/v1/tx.rpc.msg.js +16 -1
  118. package/sparkdream/collect/v1/types.d.ts +114 -0
  119. package/sparkdream/collect/v1/types.js +147 -3
  120. package/sparkdream/commons/v1/genesis.d.ts +17 -0
  121. package/sparkdream/commons/v1/genesis.js +29 -1
  122. package/sparkdream/commons/v1/query.d.ts +186 -0
  123. package/sparkdream/commons/v1/query.js +318 -1
  124. package/sparkdream/commons/v1/query.lcd.d.ts +3 -1
  125. package/sparkdream/commons/v1/query.lcd.js +23 -0
  126. package/sparkdream/commons/v1/query.rpc.Query.d.ts +12 -1
  127. package/sparkdream/commons/v1/query.rpc.Query.js +19 -0
  128. package/sparkdream/commons/v1/recurring_spend.d.ts +234 -0
  129. package/sparkdream/commons/v1/recurring_spend.js +301 -0
  130. package/sparkdream/commons/v1/tx.d.ts +472 -0
  131. package/sparkdream/commons/v1/tx.js +694 -1
  132. package/sparkdream/commons/v1/tx.registry.d.ts +49 -1
  133. package/sparkdream/commons/v1/tx.registry.js +73 -1
  134. package/sparkdream/commons/v1/tx.rpc.msg.d.ts +29 -1
  135. package/sparkdream/commons/v1/tx.rpc.msg.js +32 -0
  136. package/sparkdream/federation/v1/genesis.d.ts +3 -3
  137. package/sparkdream/federation/v1/genesis.js +9 -9
  138. package/sparkdream/federation/v1/params.d.ts +64 -13
  139. package/sparkdream/federation/v1/params.js +29 -54
  140. package/sparkdream/federation/v1/query.d.ts +209 -100
  141. package/sparkdream/federation/v1/query.js +216 -71
  142. package/sparkdream/federation/v1/query.lcd.d.ts +4 -3
  143. package/sparkdream/federation/v1/query.lcd.js +11 -6
  144. package/sparkdream/federation/v1/query.rpc.Query.d.ts +10 -7
  145. package/sparkdream/federation/v1/query.rpc.Query.js +24 -15
  146. package/sparkdream/federation/v1/tx.amino.d.ts +21 -21
  147. package/sparkdream/federation/v1/tx.amino.js +20 -20
  148. package/sparkdream/federation/v1/tx.d.ts +479 -352
  149. package/sparkdream/federation/v1/tx.js +1147 -1106
  150. package/sparkdream/federation/v1/tx.registry.d.ts +49 -49
  151. package/sparkdream/federation/v1/tx.registry.js +73 -73
  152. package/sparkdream/federation/v1/tx.rpc.msg.d.ts +18 -9
  153. package/sparkdream/federation/v1/tx.rpc.msg.js +31 -25
  154. package/sparkdream/federation/v1/types.d.ts +307 -41
  155. package/sparkdream/federation/v1/types.js +360 -100
  156. package/sparkdream/federation/v1/verifier_activity.d.ts +18 -0
  157. package/sparkdream/federation/v1/verifier_activity.js +13 -1
  158. package/sparkdream/forum/v1/params.d.ts +309 -62
  159. package/sparkdream/forum/v1/params.js +389 -148
  160. package/sparkdream/forum/v1/post.d.ts +28 -0
  161. package/sparkdream/forum/v1/post.js +25 -1
  162. package/sparkdream/forum/v1/tx.d.ts +291 -0
  163. package/sparkdream/forum/v1/tx.js +462 -2
  164. package/sparkdream/forum/v1/tx.registry.d.ts +37 -1
  165. package/sparkdream/forum/v1/tx.registry.js +55 -1
  166. package/sparkdream/forum/v1/tx.rpc.msg.d.ts +27 -1
  167. package/sparkdream/forum/v1/tx.rpc.msg.js +29 -0
  168. package/sparkdream/forum/v1/types.d.ts +247 -0
  169. package/sparkdream/forum/v1/types.js +356 -1
  170. package/sparkdream/forum/v1/user_rate_limit.d.ts +24 -3
  171. package/sparkdream/forum/v1/user_rate_limit.js +41 -2
  172. package/sparkdream/guardian/module/v1/module.d.ts +74 -0
  173. package/sparkdream/guardian/module/v1/module.js +71 -0
  174. package/sparkdream/guardian/v1/query.d.ts +88 -0
  175. package/sparkdream/guardian/v1/query.js +131 -0
  176. package/sparkdream/guardian/v1/query.lcd.d.ts +9 -0
  177. package/sparkdream/guardian/v1/query.lcd.js +17 -0
  178. package/sparkdream/guardian/v1/query.rpc.Query.d.ts +20 -0
  179. package/sparkdream/guardian/v1/query.rpc.Query.js +31 -0
  180. package/sparkdream/guardian/v1/tx.amino.d.ts +8 -0
  181. package/sparkdream/guardian/v1/tx.amino.js +12 -0
  182. package/sparkdream/guardian/v1/tx.d.ts +138 -0
  183. package/sparkdream/guardian/v1/tx.js +181 -0
  184. package/sparkdream/guardian/v1/tx.registry.d.ts +25 -0
  185. package/sparkdream/guardian/v1/tx.registry.js +37 -0
  186. package/sparkdream/guardian/v1/tx.rpc.msg.d.ts +22 -0
  187. package/sparkdream/guardian/v1/tx.rpc.msg.js +29 -0
  188. package/sparkdream/identity/module/v1/module.d.ts +54 -0
  189. package/sparkdream/identity/module/v1/module.js +74 -0
  190. package/sparkdream/identity/v1/chain_identity.d.ts +131 -0
  191. package/sparkdream/identity/v1/chain_identity.js +202 -0
  192. package/sparkdream/identity/v1/genesis.d.ts +65 -0
  193. package/sparkdream/identity/v1/genesis.js +87 -0
  194. package/sparkdream/identity/v1/query.d.ts +243 -0
  195. package/sparkdream/identity/v1/query.js +375 -0
  196. package/sparkdream/identity/v1/query.lcd.d.ts +11 -0
  197. package/sparkdream/identity/v1/query.lcd.js +25 -0
  198. package/sparkdream/identity/v1/query.rpc.Query.d.ts +26 -0
  199. package/sparkdream/identity/v1/query.rpc.Query.js +47 -0
  200. package/sparkdream/lcd.d.ts +9 -0
  201. package/sparkdream/lcd.js +15 -0
  202. package/sparkdream/name/v1/params.d.ts +25 -8
  203. package/sparkdream/name/v1/params.js +19 -18
  204. package/sparkdream/rep/v1/bonded_role.d.ts +51 -0
  205. package/sparkdream/rep/v1/bonded_role.js +48 -2
  206. package/sparkdream/rep/v1/member.d.ts +134 -0
  207. package/sparkdream/rep/v1/member.js +210 -2
  208. package/sparkdream/rep/v1/tag.d.ts +15 -2
  209. package/sparkdream/rep/v1/tag.js +6 -13
  210. package/sparkdream/rpc.query.d.ts +34 -2
  211. package/sparkdream/rpc.query.js +9 -0
  212. package/sparkdream/rpc.tx.d.ts +6 -0
  213. package/sparkdream/rpc.tx.js +6 -0
  214. package/sparkdream/service/module/v1/module.d.ts +54 -0
  215. package/sparkdream/service/module/v1/module.js +74 -0
  216. package/sparkdream/service/v1/controller_transfer_case.d.ts +125 -0
  217. package/sparkdream/service/v1/controller_transfer_case.js +158 -0
  218. package/sparkdream/service/v1/genesis.d.ts +172 -0
  219. package/sparkdream/service/v1/genesis.js +243 -0
  220. package/sparkdream/service/v1/operator.d.ts +215 -0
  221. package/sparkdream/service/v1/operator.js +253 -0
  222. package/sparkdream/service/v1/params.d.ts +346 -0
  223. package/sparkdream/service/v1/params.js +358 -0
  224. package/sparkdream/service/v1/query.d.ts +964 -0
  225. package/sparkdream/service/v1/query.js +1585 -0
  226. package/sparkdream/service/v1/query.lcd.d.ts +18 -0
  227. package/sparkdream/service/v1/query.lcd.js +111 -0
  228. package/sparkdream/service/v1/query.rpc.Query.d.ts +63 -0
  229. package/sparkdream/service/v1/query.rpc.Query.js +114 -0
  230. package/sparkdream/service/v1/refile_cooldown.d.ts +105 -0
  231. package/sparkdream/service/v1/refile_cooldown.js +124 -0
  232. package/sparkdream/service/v1/report.d.ts +174 -0
  233. package/sparkdream/service/v1/report.js +215 -0
  234. package/sparkdream/service/v1/reporter_rate_limit.d.ts +112 -0
  235. package/sparkdream/service/v1/reporter_rate_limit.js +140 -0
  236. package/sparkdream/service/v1/service_type_config.d.ts +222 -0
  237. package/sparkdream/service/v1/service_type_config.js +269 -0
  238. package/sparkdream/service/v1/system_report_rate_limit.d.ts +106 -0
  239. package/sparkdream/service/v1/system_report_rate_limit.js +118 -0
  240. package/sparkdream/service/v1/tier1_escrow_entry.d.ts +125 -0
  241. package/sparkdream/service/v1/tier1_escrow_entry.js +148 -0
  242. package/sparkdream/service/v1/tier1_last_slash.d.ts +101 -0
  243. package/sparkdream/service/v1/tier1_last_slash.js +124 -0
  244. package/sparkdream/service/v1/tx.amino.d.ts +68 -0
  245. package/sparkdream/service/v1/tx.amino.js +72 -0
  246. package/sparkdream/service/v1/tx.d.ts +1264 -0
  247. package/sparkdream/service/v1/tx.js +2127 -0
  248. package/sparkdream/service/v1/tx.registry.d.ts +169 -0
  249. package/sparkdream/service/v1/tx.registry.js +253 -0
  250. package/sparkdream/service/v1/tx.rpc.msg.d.ts +80 -0
  251. package/sparkdream/service/v1/tx.rpc.msg.js +105 -0
  252. package/sparkdream/service/v1/types.d.ts +94 -0
  253. package/sparkdream/service/v1/types.js +370 -0
  254. package/sparkdream/session/v1/genesis.d.ts +93 -9
  255. package/sparkdream/session/v1/genesis.js +137 -11
  256. package/sparkdream/session/v1/grant.d.ts +517 -0
  257. package/sparkdream/session/v1/grant.js +1027 -0
  258. package/sparkdream/session/v1/params.d.ts +338 -7
  259. package/sparkdream/session/v1/params.js +543 -19
  260. package/sparkdream/session/v1/query.d.ts +265 -0
  261. package/sparkdream/session/v1/query.js +488 -1
  262. package/sparkdream/session/v1/query.lcd.d.ts +4 -1
  263. package/sparkdream/session/v1/query.lcd.js +41 -3
  264. package/sparkdream/session/v1/query.rpc.Query.d.ts +27 -4
  265. package/sparkdream/session/v1/query.rpc.Query.js +35 -3
  266. package/sparkdream/session/v1/session.d.ts +18 -0
  267. package/sparkdream/session/v1/session.js +6 -0
  268. package/sparkdream/session/v1/tx.d.ts +660 -0
  269. package/sparkdream/session/v1/tx.js +1067 -1
  270. package/sparkdream/session/v1/tx.registry.d.ts +73 -1
  271. package/sparkdream/session/v1/tx.registry.js +109 -1
  272. package/sparkdream/session/v1/tx.rpc.msg.d.ts +63 -3
  273. package/sparkdream/session/v1/tx.rpc.msg.js +64 -2
  274. package/tendermint/bundle.d.ts +844 -844
  275. package/tendermint/bundle.js +20 -20
package/ibc/bundle.js CHANGED
@@ -88,59 +88,59 @@ const _171 = __importStar(require("./lightclients/wasm/v1/genesis"));
88
88
  const _172 = __importStar(require("./lightclients/wasm/v1/query"));
89
89
  const _173 = __importStar(require("./lightclients/wasm/v1/tx"));
90
90
  const _174 = __importStar(require("./lightclients/wasm/v1/wasm"));
91
- const _428 = __importStar(require("./applications/interchain_accounts/controller/v1/tx.amino"));
92
- const _429 = __importStar(require("./applications/interchain_accounts/host/v1/tx.amino"));
93
- const _430 = __importStar(require("./applications/rate_limiting/v1/tx.amino"));
94
- const _431 = __importStar(require("./applications/transfer/v1/tx.amino"));
95
- const _432 = __importStar(require("./core/channel/v1/tx.amino"));
96
- const _433 = __importStar(require("./core/channel/v2/tx.amino"));
97
- const _434 = __importStar(require("./core/client/v1/tx.amino"));
98
- const _435 = __importStar(require("./core/client/v2/tx.amino"));
99
- const _436 = __importStar(require("./core/connection/v1/tx.amino"));
100
- const _437 = __importStar(require("./lightclients/wasm/v1/tx.amino"));
101
- const _438 = __importStar(require("./applications/interchain_accounts/controller/v1/tx.registry"));
102
- const _439 = __importStar(require("./applications/interchain_accounts/host/v1/tx.registry"));
103
- const _440 = __importStar(require("./applications/rate_limiting/v1/tx.registry"));
104
- const _441 = __importStar(require("./applications/transfer/v1/tx.registry"));
105
- const _442 = __importStar(require("./core/channel/v1/tx.registry"));
106
- const _443 = __importStar(require("./core/channel/v2/tx.registry"));
107
- const _444 = __importStar(require("./core/client/v1/tx.registry"));
108
- const _445 = __importStar(require("./core/client/v2/tx.registry"));
109
- const _446 = __importStar(require("./core/connection/v1/tx.registry"));
110
- const _447 = __importStar(require("./lightclients/wasm/v1/tx.registry"));
111
- const _448 = __importStar(require("./applications/interchain_accounts/controller/v1/query.lcd"));
112
- const _449 = __importStar(require("./applications/interchain_accounts/host/v1/query.lcd"));
113
- const _450 = __importStar(require("./applications/rate_limiting/v1/query.lcd"));
114
- const _451 = __importStar(require("./applications/transfer/v1/query.lcd"));
115
- const _452 = __importStar(require("./core/channel/v1/query.lcd"));
116
- const _453 = __importStar(require("./core/channel/v2/query.lcd"));
117
- const _454 = __importStar(require("./core/client/v1/query.lcd"));
118
- const _455 = __importStar(require("./core/client/v2/query.lcd"));
119
- const _456 = __importStar(require("./core/connection/v1/query.lcd"));
120
- const _457 = __importStar(require("./lightclients/wasm/v1/query.lcd"));
121
- const _458 = __importStar(require("./applications/interchain_accounts/controller/v1/query.rpc.Query"));
122
- const _459 = __importStar(require("./applications/interchain_accounts/host/v1/query.rpc.Query"));
123
- const _460 = __importStar(require("./applications/rate_limiting/v1/query.rpc.Query"));
124
- const _461 = __importStar(require("./applications/transfer/v1/query.rpc.Query"));
125
- const _462 = __importStar(require("./core/channel/v1/query.rpc.Query"));
126
- const _463 = __importStar(require("./core/channel/v2/query.rpc.Query"));
127
- const _464 = __importStar(require("./core/client/v1/query.rpc.Query"));
128
- const _465 = __importStar(require("./core/client/v2/query.rpc.Query"));
129
- const _466 = __importStar(require("./core/connection/v1/query.rpc.Query"));
130
- const _467 = __importStar(require("./lightclients/wasm/v1/query.rpc.Query"));
131
- const _468 = __importStar(require("./applications/interchain_accounts/controller/v1/tx.rpc.msg"));
132
- const _469 = __importStar(require("./applications/interchain_accounts/host/v1/tx.rpc.msg"));
133
- const _470 = __importStar(require("./applications/rate_limiting/v1/tx.rpc.msg"));
134
- const _471 = __importStar(require("./applications/transfer/v1/tx.rpc.msg"));
135
- const _472 = __importStar(require("./core/channel/v1/tx.rpc.msg"));
136
- const _473 = __importStar(require("./core/channel/v2/tx.rpc.msg"));
137
- const _474 = __importStar(require("./core/client/v1/tx.rpc.msg"));
138
- const _475 = __importStar(require("./core/client/v2/tx.rpc.msg"));
139
- const _476 = __importStar(require("./core/connection/v1/tx.rpc.msg"));
140
- const _477 = __importStar(require("./lightclients/wasm/v1/tx.rpc.msg"));
141
- const _556 = __importStar(require("./lcd"));
142
- const _557 = __importStar(require("./rpc.query"));
143
- const _558 = __importStar(require("./rpc.tx"));
91
+ const _452 = __importStar(require("./applications/interchain_accounts/controller/v1/tx.amino"));
92
+ const _453 = __importStar(require("./applications/interchain_accounts/host/v1/tx.amino"));
93
+ const _454 = __importStar(require("./applications/rate_limiting/v1/tx.amino"));
94
+ const _455 = __importStar(require("./applications/transfer/v1/tx.amino"));
95
+ const _456 = __importStar(require("./core/channel/v1/tx.amino"));
96
+ const _457 = __importStar(require("./core/channel/v2/tx.amino"));
97
+ const _458 = __importStar(require("./core/client/v1/tx.amino"));
98
+ const _459 = __importStar(require("./core/client/v2/tx.amino"));
99
+ const _460 = __importStar(require("./core/connection/v1/tx.amino"));
100
+ const _461 = __importStar(require("./lightclients/wasm/v1/tx.amino"));
101
+ const _462 = __importStar(require("./applications/interchain_accounts/controller/v1/tx.registry"));
102
+ const _463 = __importStar(require("./applications/interchain_accounts/host/v1/tx.registry"));
103
+ const _464 = __importStar(require("./applications/rate_limiting/v1/tx.registry"));
104
+ const _465 = __importStar(require("./applications/transfer/v1/tx.registry"));
105
+ const _466 = __importStar(require("./core/channel/v1/tx.registry"));
106
+ const _467 = __importStar(require("./core/channel/v2/tx.registry"));
107
+ const _468 = __importStar(require("./core/client/v1/tx.registry"));
108
+ const _469 = __importStar(require("./core/client/v2/tx.registry"));
109
+ const _470 = __importStar(require("./core/connection/v1/tx.registry"));
110
+ const _471 = __importStar(require("./lightclients/wasm/v1/tx.registry"));
111
+ const _472 = __importStar(require("./applications/interchain_accounts/controller/v1/query.lcd"));
112
+ const _473 = __importStar(require("./applications/interchain_accounts/host/v1/query.lcd"));
113
+ const _474 = __importStar(require("./applications/rate_limiting/v1/query.lcd"));
114
+ const _475 = __importStar(require("./applications/transfer/v1/query.lcd"));
115
+ const _476 = __importStar(require("./core/channel/v1/query.lcd"));
116
+ const _477 = __importStar(require("./core/channel/v2/query.lcd"));
117
+ const _478 = __importStar(require("./core/client/v1/query.lcd"));
118
+ const _479 = __importStar(require("./core/client/v2/query.lcd"));
119
+ const _480 = __importStar(require("./core/connection/v1/query.lcd"));
120
+ const _481 = __importStar(require("./lightclients/wasm/v1/query.lcd"));
121
+ const _482 = __importStar(require("./applications/interchain_accounts/controller/v1/query.rpc.Query"));
122
+ const _483 = __importStar(require("./applications/interchain_accounts/host/v1/query.rpc.Query"));
123
+ const _484 = __importStar(require("./applications/rate_limiting/v1/query.rpc.Query"));
124
+ const _485 = __importStar(require("./applications/transfer/v1/query.rpc.Query"));
125
+ const _486 = __importStar(require("./core/channel/v1/query.rpc.Query"));
126
+ const _487 = __importStar(require("./core/channel/v2/query.rpc.Query"));
127
+ const _488 = __importStar(require("./core/client/v1/query.rpc.Query"));
128
+ const _489 = __importStar(require("./core/client/v2/query.rpc.Query"));
129
+ const _490 = __importStar(require("./core/connection/v1/query.rpc.Query"));
130
+ const _491 = __importStar(require("./lightclients/wasm/v1/query.rpc.Query"));
131
+ const _492 = __importStar(require("./applications/interchain_accounts/controller/v1/tx.rpc.msg"));
132
+ const _493 = __importStar(require("./applications/interchain_accounts/host/v1/tx.rpc.msg"));
133
+ const _494 = __importStar(require("./applications/rate_limiting/v1/tx.rpc.msg"));
134
+ const _495 = __importStar(require("./applications/transfer/v1/tx.rpc.msg"));
135
+ const _496 = __importStar(require("./core/channel/v1/tx.rpc.msg"));
136
+ const _497 = __importStar(require("./core/channel/v2/tx.rpc.msg"));
137
+ const _498 = __importStar(require("./core/client/v1/tx.rpc.msg"));
138
+ const _499 = __importStar(require("./core/client/v2/tx.rpc.msg"));
139
+ const _500 = __importStar(require("./core/connection/v1/tx.rpc.msg"));
140
+ const _501 = __importStar(require("./lightclients/wasm/v1/tx.rpc.msg"));
141
+ const _592 = __importStar(require("./lcd"));
142
+ const _593 = __importStar(require("./rpc.query"));
143
+ const _594 = __importStar(require("./rpc.tx"));
144
144
  var ibc;
145
145
  (function (ibc) {
146
146
  let applications;
@@ -153,11 +153,11 @@ var ibc;
153
153
  ..._122,
154
154
  ..._123,
155
155
  ..._124,
156
- ..._428,
157
- ..._438,
158
- ..._448,
159
- ..._458,
160
- ..._468
156
+ ..._452,
157
+ ..._462,
158
+ ..._472,
159
+ ..._482,
160
+ ..._492
161
161
  };
162
162
  })(controller = interchain_accounts.controller || (interchain_accounts.controller = {}));
163
163
  let genesis;
@@ -172,11 +172,11 @@ var ibc;
172
172
  ..._126,
173
173
  ..._127,
174
174
  ..._128,
175
- ..._429,
176
- ..._439,
177
- ..._449,
178
- ..._459,
179
- ..._469
175
+ ..._453,
176
+ ..._463,
177
+ ..._473,
178
+ ..._483,
179
+ ..._493
180
180
  };
181
181
  })(host = interchain_accounts.host || (interchain_accounts.host = {}));
182
182
  interchain_accounts.v1 = {
@@ -198,11 +198,11 @@ var ibc;
198
198
  ..._134,
199
199
  ..._135,
200
200
  ..._136,
201
- ..._430,
202
- ..._440,
203
- ..._450,
204
- ..._460,
205
- ..._470
201
+ ..._454,
202
+ ..._464,
203
+ ..._474,
204
+ ..._484,
205
+ ..._494
206
206
  };
207
207
  })(rate_limiting = applications.rate_limiting || (applications.rate_limiting = {}));
208
208
  let transfer;
@@ -216,11 +216,11 @@ var ibc;
216
216
  ..._142,
217
217
  ..._143,
218
218
  ..._144,
219
- ..._431,
220
- ..._441,
221
- ..._451,
222
- ..._461,
223
- ..._471
219
+ ..._455,
220
+ ..._465,
221
+ ..._475,
222
+ ..._485,
223
+ ..._495
224
224
  };
225
225
  })(transfer = applications.transfer || (applications.transfer = {}));
226
226
  })(applications = ibc.applications || (ibc.applications = {}));
@@ -233,22 +233,22 @@ var ibc;
233
233
  ..._146,
234
234
  ..._147,
235
235
  ..._148,
236
- ..._432,
237
- ..._442,
238
- ..._452,
239
- ..._462,
240
- ..._472
236
+ ..._456,
237
+ ..._466,
238
+ ..._476,
239
+ ..._486,
240
+ ..._496
241
241
  };
242
242
  channel.v2 = {
243
243
  ..._149,
244
244
  ..._150,
245
245
  ..._151,
246
246
  ..._152,
247
- ..._433,
248
- ..._443,
249
- ..._453,
250
- ..._463,
251
- ..._473
247
+ ..._457,
248
+ ..._467,
249
+ ..._477,
250
+ ..._487,
251
+ ..._497
252
252
  };
253
253
  })(channel = core.channel || (core.channel = {}));
254
254
  let client;
@@ -258,11 +258,11 @@ var ibc;
258
258
  ..._154,
259
259
  ..._155,
260
260
  ..._156,
261
- ..._434,
262
- ..._444,
263
- ..._454,
264
- ..._464,
265
- ..._474
261
+ ..._458,
262
+ ..._468,
263
+ ..._478,
264
+ ..._488,
265
+ ..._498
266
266
  };
267
267
  client.v2 = {
268
268
  ..._157,
@@ -270,11 +270,11 @@ var ibc;
270
270
  ..._159,
271
271
  ..._160,
272
272
  ..._161,
273
- ..._435,
274
- ..._445,
275
- ..._455,
276
- ..._465,
277
- ..._475
273
+ ..._459,
274
+ ..._469,
275
+ ..._479,
276
+ ..._489,
277
+ ..._499
278
278
  };
279
279
  })(client = core.client || (core.client = {}));
280
280
  let commitment;
@@ -293,11 +293,11 @@ var ibc;
293
293
  ..._165,
294
294
  ..._166,
295
295
  ..._167,
296
- ..._436,
297
- ..._446,
298
- ..._456,
299
- ..._466,
300
- ..._476
296
+ ..._460,
297
+ ..._470,
298
+ ..._480,
299
+ ..._490,
300
+ ..._500
301
301
  };
302
302
  })(connection = core.connection || (core.connection = {}));
303
303
  })(core = ibc.core || (ibc.core = {}));
@@ -325,17 +325,17 @@ var ibc;
325
325
  ..._172,
326
326
  ..._173,
327
327
  ..._174,
328
- ..._437,
329
- ..._447,
330
- ..._457,
331
- ..._467,
332
- ..._477
328
+ ..._461,
329
+ ..._471,
330
+ ..._481,
331
+ ..._491,
332
+ ..._501
333
333
  };
334
334
  })(wasm = lightclients.wasm || (lightclients.wasm = {}));
335
335
  })(lightclients = ibc.lightclients || (ibc.lightclients = {}));
336
336
  ibc.ClientFactory = {
337
- ..._556,
338
- ..._557,
339
- ..._558
337
+ ..._592,
338
+ ..._593,
339
+ ..._594
340
340
  };
341
341
  })(ibc || (exports.ibc = ibc = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sparkdreamnft/sparkdreamjs",
3
- "version": "0.0.17",
3
+ "version": "0.0.19",
4
4
  "author": "kob <kob@sparkdream.io>",
5
5
  "description": "Spark Dream blockchain TypeScript library",
6
6
  "main": "index.js",
@@ -1,8 +1,9 @@
1
- import { Coin, CoinAmino } from "../../../cosmos/base/v1beta1/coin";
2
1
  import { BinaryReader, BinaryWriter } from "../../../binary";
3
2
  import { DeepPartial } from "../../../helpers";
4
3
  /**
5
- * Params defines the parameters for the module.
4
+ * Params defines the parameters for the module. Fee/cost fields are stored
5
+ * as bare amounts in the chain's bond denom (resolved at runtime from
6
+ * x/identity); the keeper wraps them into sdk.Coin at the point of use.
6
7
  * @name Params
7
8
  * @package sparkdream.blog.v1
8
9
  * @see proto type: sparkdream.blog.v1.Params
@@ -17,9 +18,10 @@ export interface Params {
17
18
  */
18
19
  maxBodyLength: bigint;
19
20
  /**
20
- * cost_per_byte charged for on-chain content storage (applies to all posts, burned)
21
+ * cost_per_byte_amount charged for on-chain content storage, in bond-denom
22
+ * micro-units. Applies to all posts; burned.
21
23
  */
22
- costPerByte: Coin;
24
+ costPerByteAmount: string;
23
25
  /**
24
26
  * cost_per_byte_exempt when true, disables cost_per_byte fee collection
25
27
  */
@@ -33,9 +35,9 @@ export interface Params {
33
35
  */
34
36
  maxReplyDepth: number;
35
37
  /**
36
- * Flat fee per reaction
38
+ * Flat fee per reaction, in bond-denom micro-units.
37
39
  */
38
- reactionFee: Coin;
40
+ reactionFeeAmount: string;
39
41
  /**
40
42
  * Disable reaction fees
41
43
  */
@@ -69,13 +71,13 @@ export interface Params {
69
71
  */
70
72
  minEphemeralContentTtl: bigint;
71
73
  /**
72
- * Governance-only ceiling for cost_per_byte
74
+ * Governance-only ceiling for cost_per_byte_amount.
73
75
  */
74
- maxCostPerByte: Coin;
76
+ maxCostPerByteAmount: string;
75
77
  /**
76
- * Governance-only ceiling for reaction_fee
78
+ * Governance-only ceiling for reaction_fee_amount.
77
79
  */
78
- maxReactionFee: Coin;
80
+ maxReactionFeeAmount: string;
79
81
  /**
80
82
  * Min conviction score to renew anonymous content at TTL expiry (default: 100.0; 0 = disabled)
81
83
  */
@@ -92,13 +94,33 @@ export interface Params {
92
94
  * Maximum length in bytes of any single tag name (default: 32)
93
95
  */
94
96
  maxTagLength: number;
97
+ /**
98
+ * Maximum number of ephemeral posts/replies promoted to permanent per block
99
+ * by the EndBlocker membership-promotion drain. 0 disables the drain
100
+ * (relies on lazy TTL-time promotion). Default: 50.
101
+ */
102
+ maxPromotionsPerBlock: number;
103
+ /**
104
+ * Minimum trust level to call MsgMakePostPermanent / MsgMakeReplyPermanent
105
+ * (default: 1 = PROVISIONAL). Separate gate from pin_min_trust_level — making
106
+ * content permanent is a lower-impact curator action than featuring it.
107
+ */
108
+ makePermanentMinTrustLevel: number;
109
+ /**
110
+ * Max MsgMakePostPermanent + MsgMakeReplyPermanent calls per address per day.
111
+ * Independent of max_pins_per_day and max_posts_per_day — promoting an
112
+ * ephemeral to permanent is a distinct curator action with its own quota.
113
+ */
114
+ maxMakePermanentPerDay: number;
95
115
  }
96
116
  export interface ParamsProtoMsg {
97
117
  typeUrl: "/sparkdream.blog.v1.Params";
98
118
  value: Uint8Array;
99
119
  }
100
120
  /**
101
- * Params defines the parameters for the module.
121
+ * Params defines the parameters for the module. Fee/cost fields are stored
122
+ * as bare amounts in the chain's bond denom (resolved at runtime from
123
+ * x/identity); the keeper wraps them into sdk.Coin at the point of use.
102
124
  * @name ParamsAmino
103
125
  * @package sparkdream.blog.v1
104
126
  * @see proto type: sparkdream.blog.v1.Params
@@ -113,9 +135,10 @@ export interface ParamsAmino {
113
135
  */
114
136
  max_body_length?: string;
115
137
  /**
116
- * cost_per_byte charged for on-chain content storage (applies to all posts, burned)
138
+ * cost_per_byte_amount charged for on-chain content storage, in bond-denom
139
+ * micro-units. Applies to all posts; burned.
117
140
  */
118
- cost_per_byte?: CoinAmino;
141
+ cost_per_byte_amount?: string;
119
142
  /**
120
143
  * cost_per_byte_exempt when true, disables cost_per_byte fee collection
121
144
  */
@@ -129,9 +152,9 @@ export interface ParamsAmino {
129
152
  */
130
153
  max_reply_depth?: number;
131
154
  /**
132
- * Flat fee per reaction
155
+ * Flat fee per reaction, in bond-denom micro-units.
133
156
  */
134
- reaction_fee?: CoinAmino;
157
+ reaction_fee_amount?: string;
135
158
  /**
136
159
  * Disable reaction fees
137
160
  */
@@ -165,13 +188,13 @@ export interface ParamsAmino {
165
188
  */
166
189
  min_ephemeral_content_ttl?: string;
167
190
  /**
168
- * Governance-only ceiling for cost_per_byte
191
+ * Governance-only ceiling for cost_per_byte_amount.
169
192
  */
170
- max_cost_per_byte?: CoinAmino;
193
+ max_cost_per_byte_amount?: string;
171
194
  /**
172
- * Governance-only ceiling for reaction_fee
195
+ * Governance-only ceiling for reaction_fee_amount.
173
196
  */
174
- max_reaction_fee?: CoinAmino;
197
+ max_reaction_fee_amount?: string;
175
198
  /**
176
199
  * Min conviction score to renew anonymous content at TTL expiry (default: 100.0; 0 = disabled)
177
200
  */
@@ -188,6 +211,24 @@ export interface ParamsAmino {
188
211
  * Maximum length in bytes of any single tag name (default: 32)
189
212
  */
190
213
  max_tag_length?: number;
214
+ /**
215
+ * Maximum number of ephemeral posts/replies promoted to permanent per block
216
+ * by the EndBlocker membership-promotion drain. 0 disables the drain
217
+ * (relies on lazy TTL-time promotion). Default: 50.
218
+ */
219
+ max_promotions_per_block?: number;
220
+ /**
221
+ * Minimum trust level to call MsgMakePostPermanent / MsgMakeReplyPermanent
222
+ * (default: 1 = PROVISIONAL). Separate gate from pin_min_trust_level — making
223
+ * content permanent is a lower-impact curator action than featuring it.
224
+ */
225
+ make_permanent_min_trust_level?: number;
226
+ /**
227
+ * Max MsgMakePostPermanent + MsgMakeReplyPermanent calls per address per day.
228
+ * Independent of max_pins_per_day and max_posts_per_day — promoting an
229
+ * ephemeral to permanent is a distinct curator action with its own quota.
230
+ */
231
+ max_make_permanent_per_day?: number;
191
232
  }
192
233
  export interface ParamsAminoMsg {
193
234
  type: "sparkdream/x/blog/Params";
@@ -202,17 +243,18 @@ export interface ParamsAminoMsg {
202
243
  */
203
244
  export interface BlogOperationalParams {
204
245
  /**
205
- * cost_per_byte charged for on-chain content storage (applies to all posts, burned)
246
+ * cost_per_byte_amount charged for on-chain content storage, in bond-denom
247
+ * micro-units. Applies to all posts; burned.
206
248
  */
207
- costPerByte: Coin;
249
+ costPerByteAmount: string;
208
250
  /**
209
251
  * cost_per_byte_exempt when true, disables cost_per_byte fee collection
210
252
  */
211
253
  costPerByteExempt: boolean;
212
254
  /**
213
- * Flat fee per reaction
255
+ * Flat fee per reaction, in bond-denom micro-units.
214
256
  */
215
- reactionFee: Coin;
257
+ reactionFeeAmount: string;
216
258
  /**
217
259
  * Disable reaction fees
218
260
  */
@@ -245,6 +287,14 @@ export interface BlogOperationalParams {
245
287
  * Operations Committee can adjust conviction renewal period
246
288
  */
247
289
  convictionRenewalPeriod: bigint;
290
+ /**
291
+ * Per-block cap on EndBlocker membership-promotion drain (0 = disabled).
292
+ */
293
+ maxPromotionsPerBlock: number;
294
+ /**
295
+ * Max MsgMakePostPermanent + MsgMakeReplyPermanent calls per address per day.
296
+ */
297
+ maxMakePermanentPerDay: number;
248
298
  }
249
299
  export interface BlogOperationalParamsProtoMsg {
250
300
  typeUrl: "/sparkdream.blog.v1.BlogOperationalParams";
@@ -259,17 +309,18 @@ export interface BlogOperationalParamsProtoMsg {
259
309
  */
260
310
  export interface BlogOperationalParamsAmino {
261
311
  /**
262
- * cost_per_byte charged for on-chain content storage (applies to all posts, burned)
312
+ * cost_per_byte_amount charged for on-chain content storage, in bond-denom
313
+ * micro-units. Applies to all posts; burned.
263
314
  */
264
- cost_per_byte?: CoinAmino;
315
+ cost_per_byte_amount?: string;
265
316
  /**
266
317
  * cost_per_byte_exempt when true, disables cost_per_byte fee collection
267
318
  */
268
319
  cost_per_byte_exempt?: boolean;
269
320
  /**
270
- * Flat fee per reaction
321
+ * Flat fee per reaction, in bond-denom micro-units.
271
322
  */
272
- reaction_fee?: CoinAmino;
323
+ reaction_fee_amount?: string;
273
324
  /**
274
325
  * Disable reaction fees
275
326
  */
@@ -302,13 +353,23 @@ export interface BlogOperationalParamsAmino {
302
353
  * Operations Committee can adjust conviction renewal period
303
354
  */
304
355
  conviction_renewal_period?: string;
356
+ /**
357
+ * Per-block cap on EndBlocker membership-promotion drain (0 = disabled).
358
+ */
359
+ max_promotions_per_block?: number;
360
+ /**
361
+ * Max MsgMakePostPermanent + MsgMakeReplyPermanent calls per address per day.
362
+ */
363
+ max_make_permanent_per_day?: number;
305
364
  }
306
365
  export interface BlogOperationalParamsAminoMsg {
307
366
  type: "sparkdream/x/blog/BlogOperationalParams";
308
367
  value: BlogOperationalParamsAmino;
309
368
  }
310
369
  /**
311
- * Params defines the parameters for the module.
370
+ * Params defines the parameters for the module. Fee/cost fields are stored
371
+ * as bare amounts in the chain's bond denom (resolved at runtime from
372
+ * x/identity); the keeper wraps them into sdk.Coin at the point of use.
312
373
  * @name Params
313
374
  * @package sparkdream.blog.v1
314
375
  * @see proto type: sparkdream.blog.v1.Params