@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
@@ -1,5 +1,5 @@
1
- import { MsgUpdateParams, MsgUpdateOperationalParams, MsgCreateSession, MsgRevokeSession, MsgExecSession } from "./tx";
2
- export const registry = [["/sparkdream.session.v1.MsgUpdateParams", MsgUpdateParams], ["/sparkdream.session.v1.MsgUpdateOperationalParams", MsgUpdateOperationalParams], ["/sparkdream.session.v1.MsgCreateSession", MsgCreateSession], ["/sparkdream.session.v1.MsgRevokeSession", MsgRevokeSession], ["/sparkdream.session.v1.MsgExecSession", MsgExecSession]];
1
+ import { MsgUpdateParams, MsgUpdateOperationalParams, MsgCreateSession, MsgRevokeSession, MsgExecSession, MsgCreateGrant, MsgClaimRecurringPull, MsgPullAllowance, MsgRetryScheduledOneshot, MsgRevokeGrant, MsgDeclineGrant } from "./tx";
2
+ export const registry = [["/sparkdream.session.v1.MsgUpdateParams", MsgUpdateParams], ["/sparkdream.session.v1.MsgUpdateOperationalParams", MsgUpdateOperationalParams], ["/sparkdream.session.v1.MsgCreateSession", MsgCreateSession], ["/sparkdream.session.v1.MsgRevokeSession", MsgRevokeSession], ["/sparkdream.session.v1.MsgExecSession", MsgExecSession], ["/sparkdream.session.v1.MsgCreateGrant", MsgCreateGrant], ["/sparkdream.session.v1.MsgClaimRecurringPull", MsgClaimRecurringPull], ["/sparkdream.session.v1.MsgPullAllowance", MsgPullAllowance], ["/sparkdream.session.v1.MsgRetryScheduledOneshot", MsgRetryScheduledOneshot], ["/sparkdream.session.v1.MsgRevokeGrant", MsgRevokeGrant], ["/sparkdream.session.v1.MsgDeclineGrant", MsgDeclineGrant]];
3
3
  export const load = (protoRegistry) => {
4
4
  registry.forEach(([typeUrl, mod]) => {
5
5
  protoRegistry.register(typeUrl, mod);
@@ -36,6 +36,42 @@ export const MessageComposer = {
36
36
  typeUrl: "/sparkdream.session.v1.MsgExecSession",
37
37
  value: MsgExecSession.encode(value).finish()
38
38
  };
39
+ },
40
+ createGrant(value) {
41
+ return {
42
+ typeUrl: "/sparkdream.session.v1.MsgCreateGrant",
43
+ value: MsgCreateGrant.encode(value).finish()
44
+ };
45
+ },
46
+ claimRecurringPull(value) {
47
+ return {
48
+ typeUrl: "/sparkdream.session.v1.MsgClaimRecurringPull",
49
+ value: MsgClaimRecurringPull.encode(value).finish()
50
+ };
51
+ },
52
+ pullAllowance(value) {
53
+ return {
54
+ typeUrl: "/sparkdream.session.v1.MsgPullAllowance",
55
+ value: MsgPullAllowance.encode(value).finish()
56
+ };
57
+ },
58
+ retryScheduledOneshot(value) {
59
+ return {
60
+ typeUrl: "/sparkdream.session.v1.MsgRetryScheduledOneshot",
61
+ value: MsgRetryScheduledOneshot.encode(value).finish()
62
+ };
63
+ },
64
+ revokeGrant(value) {
65
+ return {
66
+ typeUrl: "/sparkdream.session.v1.MsgRevokeGrant",
67
+ value: MsgRevokeGrant.encode(value).finish()
68
+ };
69
+ },
70
+ declineGrant(value) {
71
+ return {
72
+ typeUrl: "/sparkdream.session.v1.MsgDeclineGrant",
73
+ value: MsgDeclineGrant.encode(value).finish()
74
+ };
39
75
  }
40
76
  },
41
77
  withTypeUrl: {
@@ -68,6 +104,42 @@ export const MessageComposer = {
68
104
  typeUrl: "/sparkdream.session.v1.MsgExecSession",
69
105
  value
70
106
  };
107
+ },
108
+ createGrant(value) {
109
+ return {
110
+ typeUrl: "/sparkdream.session.v1.MsgCreateGrant",
111
+ value
112
+ };
113
+ },
114
+ claimRecurringPull(value) {
115
+ return {
116
+ typeUrl: "/sparkdream.session.v1.MsgClaimRecurringPull",
117
+ value
118
+ };
119
+ },
120
+ pullAllowance(value) {
121
+ return {
122
+ typeUrl: "/sparkdream.session.v1.MsgPullAllowance",
123
+ value
124
+ };
125
+ },
126
+ retryScheduledOneshot(value) {
127
+ return {
128
+ typeUrl: "/sparkdream.session.v1.MsgRetryScheduledOneshot",
129
+ value
130
+ };
131
+ },
132
+ revokeGrant(value) {
133
+ return {
134
+ typeUrl: "/sparkdream.session.v1.MsgRevokeGrant",
135
+ value
136
+ };
137
+ },
138
+ declineGrant(value) {
139
+ return {
140
+ typeUrl: "/sparkdream.session.v1.MsgDeclineGrant",
141
+ value
142
+ };
71
143
  }
72
144
  },
73
145
  fromPartial: {
@@ -100,6 +172,42 @@ export const MessageComposer = {
100
172
  typeUrl: "/sparkdream.session.v1.MsgExecSession",
101
173
  value: MsgExecSession.fromPartial(value)
102
174
  };
175
+ },
176
+ createGrant(value) {
177
+ return {
178
+ typeUrl: "/sparkdream.session.v1.MsgCreateGrant",
179
+ value: MsgCreateGrant.fromPartial(value)
180
+ };
181
+ },
182
+ claimRecurringPull(value) {
183
+ return {
184
+ typeUrl: "/sparkdream.session.v1.MsgClaimRecurringPull",
185
+ value: MsgClaimRecurringPull.fromPartial(value)
186
+ };
187
+ },
188
+ pullAllowance(value) {
189
+ return {
190
+ typeUrl: "/sparkdream.session.v1.MsgPullAllowance",
191
+ value: MsgPullAllowance.fromPartial(value)
192
+ };
193
+ },
194
+ retryScheduledOneshot(value) {
195
+ return {
196
+ typeUrl: "/sparkdream.session.v1.MsgRetryScheduledOneshot",
197
+ value: MsgRetryScheduledOneshot.fromPartial(value)
198
+ };
199
+ },
200
+ revokeGrant(value) {
201
+ return {
202
+ typeUrl: "/sparkdream.session.v1.MsgRevokeGrant",
203
+ value: MsgRevokeGrant.fromPartial(value)
204
+ };
205
+ },
206
+ declineGrant(value) {
207
+ return {
208
+ typeUrl: "/sparkdream.session.v1.MsgDeclineGrant",
209
+ value: MsgDeclineGrant.fromPartial(value)
210
+ };
103
211
  }
104
212
  }
105
213
  };
@@ -1,5 +1,5 @@
1
1
  import { BinaryReader } from "../../../binary";
2
- import { MsgUpdateParams, MsgUpdateParamsResponse, MsgUpdateOperationalParams, MsgUpdateOperationalParamsResponse, MsgCreateSession, MsgCreateSessionResponse, MsgRevokeSession, MsgRevokeSessionResponse, MsgExecSession, MsgExecSessionResponse } from "./tx";
2
+ import { MsgUpdateParams, MsgUpdateParamsResponse, MsgUpdateOperationalParams, MsgUpdateOperationalParamsResponse, MsgCreateSession, MsgCreateSessionResponse, MsgRevokeSession, MsgRevokeSessionResponse, MsgExecSession, MsgExecSessionResponse, MsgCreateGrant, MsgCreateGrantResponse, MsgClaimRecurringPull, MsgClaimRecurringPullResponse, MsgPullAllowance, MsgPullAllowanceResponse, MsgRetryScheduledOneshot, MsgRetryScheduledOneshotResponse, MsgRevokeGrant, MsgRevokeGrantResponse, MsgDeclineGrant, MsgDeclineGrantResponse } from "./tx";
3
3
  export class MsgClientImpl {
4
4
  rpc;
5
5
  constructor(rpc) {
@@ -19,13 +19,19 @@ export class MsgClientImpl {
19
19
  const promise = this.rpc.request("sparkdream.session.v1.Msg", "UpdateOperationalParams", data);
20
20
  return promise.then(data => MsgUpdateOperationalParamsResponse.decode(new BinaryReader(data)));
21
21
  };
22
- /* CreateSession creates a new session key delegation. */
22
+ /* CreateSession creates a new session key delegation.
23
+
24
+ DEPRECATED in favor of `CreateGrant` with a SessionKeyPayload; kept for
25
+ pre-launch backward compatibility and removed at P6. */
23
26
  createSession = async (request) => {
24
27
  const data = MsgCreateSession.encode(request).finish();
25
28
  const promise = this.rpc.request("sparkdream.session.v1.Msg", "CreateSession", data);
26
29
  return promise.then(data => MsgCreateSessionResponse.decode(new BinaryReader(data)));
27
30
  };
28
- /* RevokeSession revokes an active session. */
31
+ /* RevokeSession revokes an active session.
32
+
33
+ DEPRECATED in favor of `RevokeGrant` (P6); kept for pre-launch backward
34
+ compatibility. */
29
35
  revokeSession = async (request) => {
30
36
  const data = MsgRevokeSession.encode(request).finish();
31
37
  const promise = this.rpc.request("sparkdream.session.v1.Msg", "RevokeSession", data);
@@ -37,6 +43,62 @@ export class MsgClientImpl {
37
43
  const promise = this.rpc.request("sparkdream.session.v1.Msg", "ExecSession", data);
38
44
  return promise.then(data => MsgExecSessionResponse.decode(new BinaryReader(data)));
39
45
  };
46
+ /* CreateGrant is the unified entrypoint that creates any of the four typed
47
+ grants. Type is inferred from the payload oneof. */
48
+ createGrant = async (request) => {
49
+ const data = MsgCreateGrant.encode(request).finish();
50
+ const promise = this.rpc.request("sparkdream.session.v1.Msg", "CreateGrant", data);
51
+ return promise.then(data => MsgCreateGrantResponse.decode(new BinaryReader(data)));
52
+ };
53
+ /* ClaimRecurringPull disburses one period of a RECURRING_PULL grant from
54
+ the granter to the grantee. Logical-clock advances; catch-up requires
55
+ multiple txs. */
56
+ claimRecurringPull = async (request) => {
57
+ const data = MsgClaimRecurringPull.encode(request).finish();
58
+ const promise = this.rpc.request("sparkdream.session.v1.Msg", "ClaimRecurringPull", data);
59
+ return promise.then(data => MsgClaimRecurringPullResponse.decode(new BinaryReader(data)));
60
+ };
61
+ /* PullAllowance withdraws an amount from a SPENDING_ALLOWANCE grant
62
+ budget to a chosen recipient (constrained by the optional whitelist
63
+ and the per-period cap). The grantee picks the recipient and amount
64
+ per call within the rolling-window budget. */
65
+ pullAllowance = async (request) => {
66
+ const data = MsgPullAllowance.encode(request).finish();
67
+ const promise = this.rpc.request("sparkdream.session.v1.Msg", "PullAllowance", data);
68
+ return promise.then(data => MsgPullAllowanceResponse.decode(new BinaryReader(data)));
69
+ };
70
+ /* RetryScheduledOneshot re-enqueues a PAUSED_INSUFFICIENT_FUNDS
71
+ ScheduledOneshot for firing. Either the granter or the grantee may
72
+ call (no additional authorization needed — the granter already
73
+ authorized the underlying action at creation time). Sets
74
+ fire_at = block_time on success. */
75
+ retryScheduledOneshot = async (request) => {
76
+ const data = MsgRetryScheduledOneshot.encode(request).finish();
77
+ const promise = this.rpc.request("sparkdream.session.v1.Msg", "RetryScheduledOneshot", data);
78
+ return promise.then(data => MsgRetryScheduledOneshotResponse.decode(new BinaryReader(data)));
79
+ };
80
+ /* RevokeGrant cancels any active grant by id. Signed by the granter
81
+ on file. Refunds any held OneshotGasDeposit for SCHEDULED_ONESHOT
82
+ grants. A session-key holder may invoke this only when the session
83
+ key's SessionKeyPayload.allow_self_revoke = true AND the targeted
84
+ grant's granter matches the session-key granter (anti
85
+ cross-granter-revoke). */
86
+ revokeGrant = async (request) => {
87
+ const data = MsgRevokeGrant.encode(request).finish();
88
+ const promise = this.rpc.request("sparkdream.session.v1.Msg", "RevokeGrant", data);
89
+ return promise.then(data => MsgRevokeGrantResponse.decode(new BinaryReader(data)));
90
+ };
91
+ /* DeclineGrant lets the grantee opt out of any active grant by id.
92
+ Applies uniformly across all four grant types. For ScheduledOneshot
93
+ this is a pre-fire veto: the grant transitions to DECLINED, the
94
+ EndBlocker skips it, and the held deposit is refunded to the
95
+ granter. Decline is one-way — the granter must Revoke + CreateGrant
96
+ to retry. */
97
+ declineGrant = async (request) => {
98
+ const data = MsgDeclineGrant.encode(request).finish();
99
+ const promise = this.rpc.request("sparkdream.session.v1.Msg", "DeclineGrant", data);
100
+ return promise.then(data => MsgDeclineGrantResponse.decode(new BinaryReader(data)));
101
+ };
40
102
  }
41
103
  export const createClientImpl = (rpc) => {
42
104
  return new MsgClientImpl(rpc);
@@ -1,34 +1,34 @@
1
1
  //@ts-nocheck
2
- import * as _330 from "./abci/types";
3
- import * as _331 from "./crypto/keys";
4
- import * as _332 from "./crypto/proof";
5
- import * as _333 from "./p2p/types";
6
- import * as _334 from "./types/block";
7
- import * as _335 from "./types/evidence";
8
- import * as _336 from "./types/params";
9
- import * as _337 from "./types/types";
10
- import * as _338 from "./types/validator";
11
- import * as _339 from "./version/types";
2
+ import * as _354 from "./abci/types";
3
+ import * as _355 from "./crypto/keys";
4
+ import * as _356 from "./crypto/proof";
5
+ import * as _357 from "./p2p/types";
6
+ import * as _358 from "./types/block";
7
+ import * as _359 from "./types/evidence";
8
+ import * as _360 from "./types/params";
9
+ import * as _361 from "./types/types";
10
+ import * as _362 from "./types/validator";
11
+ import * as _363 from "./version/types";
12
12
  export var tendermint;
13
13
  (function (tendermint) {
14
14
  tendermint.abci = {
15
- ..._330
15
+ ..._354
16
16
  };
17
17
  tendermint.crypto = {
18
- ..._331,
19
- ..._332
18
+ ..._355,
19
+ ..._356
20
20
  };
21
21
  tendermint.p2p = {
22
- ..._333
22
+ ..._357
23
23
  };
24
24
  tendermint.types = {
25
- ..._334,
26
- ..._335,
27
- ..._336,
28
- ..._337,
29
- ..._338
25
+ ..._358,
26
+ ..._359,
27
+ ..._360,
28
+ ..._361,
29
+ ..._362
30
30
  };
31
31
  tendermint.version = {
32
- ..._339
32
+ ..._363
33
33
  };
34
34
  })(tendermint || (tendermint = {}));
package/ibc/bundle.d.ts CHANGED
@@ -51,49 +51,49 @@ import * as _171 from "./lightclients/wasm/v1/genesis";
51
51
  import * as _172 from "./lightclients/wasm/v1/query";
52
52
  import * as _173 from "./lightclients/wasm/v1/tx";
53
53
  import * as _174 from "./lightclients/wasm/v1/wasm";
54
- import * as _448 from "./applications/interchain_accounts/controller/v1/query.lcd";
55
- import * as _449 from "./applications/interchain_accounts/host/v1/query.lcd";
56
- import * as _450 from "./applications/rate_limiting/v1/query.lcd";
57
- import * as _451 from "./applications/transfer/v1/query.lcd";
58
- import * as _452 from "./core/channel/v1/query.lcd";
59
- import * as _453 from "./core/channel/v2/query.lcd";
60
- import * as _454 from "./core/client/v1/query.lcd";
61
- import * as _455 from "./core/client/v2/query.lcd";
62
- import * as _456 from "./core/connection/v1/query.lcd";
63
- import * as _457 from "./lightclients/wasm/v1/query.lcd";
64
- import * as _458 from "./applications/interchain_accounts/controller/v1/query.rpc.Query";
65
- import * as _459 from "./applications/interchain_accounts/host/v1/query.rpc.Query";
66
- import * as _460 from "./applications/rate_limiting/v1/query.rpc.Query";
67
- import * as _461 from "./applications/transfer/v1/query.rpc.Query";
68
- import * as _462 from "./core/channel/v1/query.rpc.Query";
69
- import * as _463 from "./core/channel/v2/query.rpc.Query";
70
- import * as _464 from "./core/client/v1/query.rpc.Query";
71
- import * as _465 from "./core/client/v2/query.rpc.Query";
72
- import * as _466 from "./core/connection/v1/query.rpc.Query";
73
- import * as _467 from "./lightclients/wasm/v1/query.rpc.Query";
74
- import * as _468 from "./applications/interchain_accounts/controller/v1/tx.rpc.msg";
75
- import * as _469 from "./applications/interchain_accounts/host/v1/tx.rpc.msg";
76
- import * as _470 from "./applications/rate_limiting/v1/tx.rpc.msg";
77
- import * as _471 from "./applications/transfer/v1/tx.rpc.msg";
78
- import * as _472 from "./core/channel/v1/tx.rpc.msg";
79
- import * as _473 from "./core/channel/v2/tx.rpc.msg";
80
- import * as _474 from "./core/client/v1/tx.rpc.msg";
81
- import * as _475 from "./core/client/v2/tx.rpc.msg";
82
- import * as _476 from "./core/connection/v1/tx.rpc.msg";
83
- import * as _477 from "./lightclients/wasm/v1/tx.rpc.msg";
54
+ import * as _472 from "./applications/interchain_accounts/controller/v1/query.lcd";
55
+ import * as _473 from "./applications/interchain_accounts/host/v1/query.lcd";
56
+ import * as _474 from "./applications/rate_limiting/v1/query.lcd";
57
+ import * as _475 from "./applications/transfer/v1/query.lcd";
58
+ import * as _476 from "./core/channel/v1/query.lcd";
59
+ import * as _477 from "./core/channel/v2/query.lcd";
60
+ import * as _478 from "./core/client/v1/query.lcd";
61
+ import * as _479 from "./core/client/v2/query.lcd";
62
+ import * as _480 from "./core/connection/v1/query.lcd";
63
+ import * as _481 from "./lightclients/wasm/v1/query.lcd";
64
+ import * as _482 from "./applications/interchain_accounts/controller/v1/query.rpc.Query";
65
+ import * as _483 from "./applications/interchain_accounts/host/v1/query.rpc.Query";
66
+ import * as _484 from "./applications/rate_limiting/v1/query.rpc.Query";
67
+ import * as _485 from "./applications/transfer/v1/query.rpc.Query";
68
+ import * as _486 from "./core/channel/v1/query.rpc.Query";
69
+ import * as _487 from "./core/channel/v2/query.rpc.Query";
70
+ import * as _488 from "./core/client/v1/query.rpc.Query";
71
+ import * as _489 from "./core/client/v2/query.rpc.Query";
72
+ import * as _490 from "./core/connection/v1/query.rpc.Query";
73
+ import * as _491 from "./lightclients/wasm/v1/query.rpc.Query";
74
+ import * as _492 from "./applications/interchain_accounts/controller/v1/tx.rpc.msg";
75
+ import * as _493 from "./applications/interchain_accounts/host/v1/tx.rpc.msg";
76
+ import * as _494 from "./applications/rate_limiting/v1/tx.rpc.msg";
77
+ import * as _495 from "./applications/transfer/v1/tx.rpc.msg";
78
+ import * as _496 from "./core/channel/v1/tx.rpc.msg";
79
+ import * as _497 from "./core/channel/v2/tx.rpc.msg";
80
+ import * as _498 from "./core/client/v1/tx.rpc.msg";
81
+ import * as _499 from "./core/client/v2/tx.rpc.msg";
82
+ import * as _500 from "./core/connection/v1/tx.rpc.msg";
83
+ import * as _501 from "./lightclients/wasm/v1/tx.rpc.msg";
84
84
  export declare namespace ibc {
85
85
  namespace applications {
86
86
  namespace interchain_accounts {
87
87
  namespace controller {
88
88
  const v1: {
89
- MsgClientImpl: typeof _468.MsgClientImpl;
90
- createClientImpl: (rpc: import("..").TxRpc) => _468.MsgClientImpl;
91
- QueryClientImpl: typeof _458.QueryClientImpl;
89
+ MsgClientImpl: typeof _492.MsgClientImpl;
90
+ createClientImpl: (rpc: import("..").TxRpc) => _492.MsgClientImpl;
91
+ QueryClientImpl: typeof _482.QueryClientImpl;
92
92
  createRpcQueryExtension: (base: QueryClient) => {
93
93
  interchainAccount(request: _123.QueryInterchainAccountRequest): Promise<_123.QueryInterchainAccountResponse>;
94
94
  params(request?: _123.QueryParamsRequest): Promise<_123.QueryParamsResponse>;
95
95
  };
96
- LCDQueryClient: typeof _448.LCDQueryClient;
96
+ LCDQueryClient: typeof _472.LCDQueryClient;
97
97
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
98
98
  load: (protoRegistry: Registry) => void;
99
99
  MessageComposer: {
@@ -389,13 +389,13 @@ export declare namespace ibc {
389
389
  }
390
390
  namespace host {
391
391
  const v1: {
392
- MsgClientImpl: typeof _469.MsgClientImpl;
393
- createClientImpl: (rpc: import("..").TxRpc) => _469.MsgClientImpl;
394
- QueryClientImpl: typeof _459.QueryClientImpl;
392
+ MsgClientImpl: typeof _493.MsgClientImpl;
393
+ createClientImpl: (rpc: import("..").TxRpc) => _493.MsgClientImpl;
394
+ QueryClientImpl: typeof _483.QueryClientImpl;
395
395
  createRpcQueryExtension: (base: QueryClient) => {
396
396
  params(request?: _127.QueryParamsRequest): Promise<_127.QueryParamsResponse>;
397
397
  };
398
- LCDQueryClient: typeof _449.LCDQueryClient;
398
+ LCDQueryClient: typeof _473.LCDQueryClient;
399
399
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
400
400
  load: (protoRegistry: Registry) => void;
401
401
  MessageComposer: {
@@ -663,9 +663,9 @@ export declare namespace ibc {
663
663
  }
664
664
  namespace rate_limiting {
665
665
  const v1: {
666
- MsgClientImpl: typeof _470.MsgClientImpl;
667
- createClientImpl: (rpc: import("..").TxRpc) => _470.MsgClientImpl;
668
- QueryClientImpl: typeof _460.QueryClientImpl;
666
+ MsgClientImpl: typeof _494.MsgClientImpl;
667
+ createClientImpl: (rpc: import("..").TxRpc) => _494.MsgClientImpl;
668
+ QueryClientImpl: typeof _484.QueryClientImpl;
669
669
  createRpcQueryExtension: (base: QueryClient) => {
670
670
  allRateLimits(request?: _134.QueryAllRateLimitsRequest): Promise<_134.QueryAllRateLimitsResponse>;
671
671
  rateLimit(request: _134.QueryRateLimitRequest): Promise<_134.QueryRateLimitResponse>;
@@ -674,7 +674,7 @@ export declare namespace ibc {
674
674
  allBlacklistedDenoms(request?: _134.QueryAllBlacklistedDenomsRequest): Promise<_134.QueryAllBlacklistedDenomsResponse>;
675
675
  allWhitelistedAddresses(request?: _134.QueryAllWhitelistedAddressesRequest): Promise<_134.QueryAllWhitelistedAddressesResponse>;
676
676
  };
677
- LCDQueryClient: typeof _450.LCDQueryClient;
677
+ LCDQueryClient: typeof _474.LCDQueryClient;
678
678
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
679
679
  load: (protoRegistry: Registry) => void;
680
680
  MessageComposer: {
@@ -1141,9 +1141,9 @@ export declare namespace ibc {
1141
1141
  }
1142
1142
  namespace transfer {
1143
1143
  const v1: {
1144
- MsgClientImpl: typeof _471.MsgClientImpl;
1145
- createClientImpl: (rpc: import("..").TxRpc) => _471.MsgClientImpl;
1146
- QueryClientImpl: typeof _461.QueryClientImpl;
1144
+ MsgClientImpl: typeof _495.MsgClientImpl;
1145
+ createClientImpl: (rpc: import("..").TxRpc) => _495.MsgClientImpl;
1146
+ QueryClientImpl: typeof _485.QueryClientImpl;
1147
1147
  createRpcQueryExtension: (base: QueryClient) => {
1148
1148
  params(request?: _141.QueryParamsRequest): Promise<_141.QueryParamsResponse>;
1149
1149
  denoms(request?: _141.QueryDenomsRequest): Promise<_141.QueryDenomsResponse>;
@@ -1152,7 +1152,7 @@ export declare namespace ibc {
1152
1152
  escrowAddress(request: _141.QueryEscrowAddressRequest): Promise<_141.QueryEscrowAddressResponse>;
1153
1153
  totalEscrowForDenom(request: _141.QueryTotalEscrowForDenomRequest): Promise<_141.QueryTotalEscrowForDenomResponse>;
1154
1154
  };
1155
- LCDQueryClient: typeof _451.LCDQueryClient;
1155
+ LCDQueryClient: typeof _475.LCDQueryClient;
1156
1156
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
1157
1157
  load: (protoRegistry: Registry) => void;
1158
1158
  MessageComposer: {
@@ -1555,9 +1555,9 @@ export declare namespace ibc {
1555
1555
  namespace core {
1556
1556
  namespace channel {
1557
1557
  const v1: {
1558
- MsgClientImpl: typeof _472.MsgClientImpl;
1559
- createClientImpl: (rpc: import("..").TxRpc) => _472.MsgClientImpl;
1560
- QueryClientImpl: typeof _462.QueryClientImpl;
1558
+ MsgClientImpl: typeof _496.MsgClientImpl;
1559
+ createClientImpl: (rpc: import("..").TxRpc) => _496.MsgClientImpl;
1560
+ QueryClientImpl: typeof _486.QueryClientImpl;
1561
1561
  createRpcQueryExtension: (base: QueryClient) => {
1562
1562
  channel(request: _147.QueryChannelRequest): Promise<_147.QueryChannelResponse>;
1563
1563
  channels(request?: _147.QueryChannelsRequest): Promise<_147.QueryChannelsResponse>;
@@ -1574,7 +1574,7 @@ export declare namespace ibc {
1574
1574
  nextSequenceReceive(request: _147.QueryNextSequenceReceiveRequest): Promise<_147.QueryNextSequenceReceiveResponse>;
1575
1575
  nextSequenceSend(request: _147.QueryNextSequenceSendRequest): Promise<_147.QueryNextSequenceSendResponse>;
1576
1576
  };
1577
- LCDQueryClient: typeof _452.LCDQueryClient;
1577
+ LCDQueryClient: typeof _476.LCDQueryClient;
1578
1578
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
1579
1579
  load: (protoRegistry: Registry) => void;
1580
1580
  MessageComposer: {
@@ -2583,9 +2583,9 @@ export declare namespace ibc {
2583
2583
  };
2584
2584
  };
2585
2585
  const v2: {
2586
- MsgClientImpl: typeof _473.MsgClientImpl;
2587
- createClientImpl: (rpc: import("..").TxRpc) => _473.MsgClientImpl;
2588
- QueryClientImpl: typeof _463.QueryClientImpl;
2586
+ MsgClientImpl: typeof _497.MsgClientImpl;
2587
+ createClientImpl: (rpc: import("..").TxRpc) => _497.MsgClientImpl;
2588
+ QueryClientImpl: typeof _487.QueryClientImpl;
2589
2589
  createRpcQueryExtension: (base: QueryClient) => {
2590
2590
  nextSequenceSend(request: _151.QueryNextSequenceSendRequest): Promise<_151.QueryNextSequenceSendResponse>;
2591
2591
  packetCommitment(request: _151.QueryPacketCommitmentRequest): Promise<_151.QueryPacketCommitmentResponse>;
@@ -2596,7 +2596,7 @@ export declare namespace ibc {
2596
2596
  unreceivedPackets(request: _151.QueryUnreceivedPacketsRequest): Promise<_151.QueryUnreceivedPacketsResponse>;
2597
2597
  unreceivedAcks(request: _151.QueryUnreceivedAcksRequest): Promise<_151.QueryUnreceivedAcksResponse>;
2598
2598
  };
2599
- LCDQueryClient: typeof _453.LCDQueryClient;
2599
+ LCDQueryClient: typeof _477.LCDQueryClient;
2600
2600
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
2601
2601
  load: (protoRegistry: Registry) => void;
2602
2602
  MessageComposer: {
@@ -3123,9 +3123,9 @@ export declare namespace ibc {
3123
3123
  }
3124
3124
  namespace client {
3125
3125
  const v1: {
3126
- MsgClientImpl: typeof _474.MsgClientImpl;
3127
- createClientImpl: (rpc: import("..").TxRpc) => _474.MsgClientImpl;
3128
- QueryClientImpl: typeof _464.QueryClientImpl;
3126
+ MsgClientImpl: typeof _498.MsgClientImpl;
3127
+ createClientImpl: (rpc: import("..").TxRpc) => _498.MsgClientImpl;
3128
+ QueryClientImpl: typeof _488.QueryClientImpl;
3129
3129
  createRpcQueryExtension: (base: QueryClient) => {
3130
3130
  clientState(request: _155.QueryClientStateRequest): Promise<_155.QueryClientStateResponse>;
3131
3131
  clientStates(request?: _155.QueryClientStatesRequest): Promise<_155.QueryClientStatesResponse>;
@@ -3139,7 +3139,7 @@ export declare namespace ibc {
3139
3139
  upgradedConsensusState(request?: _155.QueryUpgradedConsensusStateRequest): Promise<_155.QueryUpgradedConsensusStateResponse>;
3140
3140
  verifyMembership(request: _155.QueryVerifyMembershipRequest): Promise<_155.QueryVerifyMembershipResponse>;
3141
3141
  };
3142
- LCDQueryClient: typeof _454.LCDQueryClient;
3142
+ LCDQueryClient: typeof _478.LCDQueryClient;
3143
3143
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
3144
3144
  load: (protoRegistry: Registry) => void;
3145
3145
  MessageComposer: {
@@ -3889,14 +3889,14 @@ export declare namespace ibc {
3889
3889
  };
3890
3890
  };
3891
3891
  const v2: {
3892
- MsgClientImpl: typeof _475.MsgClientImpl;
3893
- createClientImpl: (rpc: import("..").TxRpc) => _475.MsgClientImpl;
3894
- QueryClientImpl: typeof _465.QueryClientImpl;
3892
+ MsgClientImpl: typeof _499.MsgClientImpl;
3893
+ createClientImpl: (rpc: import("..").TxRpc) => _499.MsgClientImpl;
3894
+ QueryClientImpl: typeof _489.QueryClientImpl;
3895
3895
  createRpcQueryExtension: (base: QueryClient) => {
3896
3896
  counterpartyInfo(request: _160.QueryCounterpartyInfoRequest): Promise<_160.QueryCounterpartyInfoResponse>;
3897
3897
  config(request: _160.QueryConfigRequest): Promise<_160.QueryConfigResponse>;
3898
3898
  };
3899
- LCDQueryClient: typeof _455.LCDQueryClient;
3899
+ LCDQueryClient: typeof _479.LCDQueryClient;
3900
3900
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
3901
3901
  load: (protoRegistry: Registry) => void;
3902
3902
  MessageComposer: {
@@ -4177,9 +4177,9 @@ export declare namespace ibc {
4177
4177
  }
4178
4178
  namespace connection {
4179
4179
  const v1: {
4180
- MsgClientImpl: typeof _476.MsgClientImpl;
4181
- createClientImpl: (rpc: import("..").TxRpc) => _476.MsgClientImpl;
4182
- QueryClientImpl: typeof _466.QueryClientImpl;
4180
+ MsgClientImpl: typeof _500.MsgClientImpl;
4181
+ createClientImpl: (rpc: import("..").TxRpc) => _500.MsgClientImpl;
4182
+ QueryClientImpl: typeof _490.QueryClientImpl;
4183
4183
  createRpcQueryExtension: (base: QueryClient) => {
4184
4184
  connection(request: _166.QueryConnectionRequest): Promise<_166.QueryConnectionResponse>;
4185
4185
  connections(request?: _166.QueryConnectionsRequest): Promise<_166.QueryConnectionsResponse>;
@@ -4188,7 +4188,7 @@ export declare namespace ibc {
4188
4188
  connectionConsensusState(request: _166.QueryConnectionConsensusStateRequest): Promise<_166.QueryConnectionConsensusStateResponse>;
4189
4189
  connectionParams(request?: _166.QueryConnectionParamsRequest): Promise<_166.QueryConnectionParamsResponse>;
4190
4190
  };
4191
- LCDQueryClient: typeof _456.LCDQueryClient;
4191
+ LCDQueryClient: typeof _480.LCDQueryClient;
4192
4192
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
4193
4193
  load: (protoRegistry: Registry) => void;
4194
4194
  MessageComposer: {
@@ -5136,14 +5136,14 @@ export declare namespace ibc {
5136
5136
  }
5137
5137
  namespace wasm {
5138
5138
  const v1: {
5139
- MsgClientImpl: typeof _477.MsgClientImpl;
5140
- createClientImpl: (rpc: import("..").TxRpc) => _477.MsgClientImpl;
5141
- QueryClientImpl: typeof _467.QueryClientImpl;
5139
+ MsgClientImpl: typeof _501.MsgClientImpl;
5140
+ createClientImpl: (rpc: import("..").TxRpc) => _501.MsgClientImpl;
5141
+ QueryClientImpl: typeof _491.QueryClientImpl;
5142
5142
  createRpcQueryExtension: (base: QueryClient) => {
5143
5143
  checksums(request?: _172.QueryChecksumsRequest): Promise<_172.QueryChecksumsResponse>;
5144
5144
  code(request: _172.QueryCodeRequest): Promise<_172.QueryCodeResponse>;
5145
5145
  };
5146
- LCDQueryClient: typeof _457.LCDQueryClient;
5146
+ LCDQueryClient: typeof _481.LCDQueryClient;
5147
5147
  registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
5148
5148
  load: (protoRegistry: Registry) => void;
5149
5149
  MessageComposer: {
@@ -5479,35 +5479,35 @@ export declare namespace ibc {
5479
5479
  applications: {
5480
5480
  interchain_accounts: {
5481
5481
  controller: {
5482
- v1: _468.MsgClientImpl;
5482
+ v1: _492.MsgClientImpl;
5483
5483
  };
5484
5484
  host: {
5485
- v1: _469.MsgClientImpl;
5485
+ v1: _493.MsgClientImpl;
5486
5486
  };
5487
5487
  };
5488
5488
  rate_limiting: {
5489
- v1: _470.MsgClientImpl;
5489
+ v1: _494.MsgClientImpl;
5490
5490
  };
5491
5491
  transfer: {
5492
- v1: _471.MsgClientImpl;
5492
+ v1: _495.MsgClientImpl;
5493
5493
  };
5494
5494
  };
5495
5495
  core: {
5496
5496
  channel: {
5497
- v1: _472.MsgClientImpl;
5498
- v2: _473.MsgClientImpl;
5497
+ v1: _496.MsgClientImpl;
5498
+ v2: _497.MsgClientImpl;
5499
5499
  };
5500
5500
  client: {
5501
- v1: _474.MsgClientImpl;
5502
- v2: _475.MsgClientImpl;
5501
+ v1: _498.MsgClientImpl;
5502
+ v2: _499.MsgClientImpl;
5503
5503
  };
5504
5504
  connection: {
5505
- v1: _476.MsgClientImpl;
5505
+ v1: _500.MsgClientImpl;
5506
5506
  };
5507
5507
  };
5508
5508
  lightclients: {
5509
5509
  wasm: {
5510
- v1: _477.MsgClientImpl;
5510
+ v1: _501.MsgClientImpl;
5511
5511
  };
5512
5512
  };
5513
5513
  };
@@ -5877,35 +5877,35 @@ export declare namespace ibc {
5877
5877
  applications: {
5878
5878
  interchain_accounts: {
5879
5879
  controller: {
5880
- v1: _448.LCDQueryClient;
5880
+ v1: _472.LCDQueryClient;
5881
5881
  };
5882
5882
  host: {
5883
- v1: _449.LCDQueryClient;
5883
+ v1: _473.LCDQueryClient;
5884
5884
  };
5885
5885
  };
5886
5886
  rate_limiting: {
5887
- v1: _450.LCDQueryClient;
5887
+ v1: _474.LCDQueryClient;
5888
5888
  };
5889
5889
  transfer: {
5890
- v1: _451.LCDQueryClient;
5890
+ v1: _475.LCDQueryClient;
5891
5891
  };
5892
5892
  };
5893
5893
  core: {
5894
5894
  channel: {
5895
- v1: _452.LCDQueryClient;
5896
- v2: _453.LCDQueryClient;
5895
+ v1: _476.LCDQueryClient;
5896
+ v2: _477.LCDQueryClient;
5897
5897
  };
5898
5898
  client: {
5899
- v1: _454.LCDQueryClient;
5900
- v2: _455.LCDQueryClient;
5899
+ v1: _478.LCDQueryClient;
5900
+ v2: _479.LCDQueryClient;
5901
5901
  };
5902
5902
  connection: {
5903
- v1: _456.LCDQueryClient;
5903
+ v1: _480.LCDQueryClient;
5904
5904
  };
5905
5905
  };
5906
5906
  lightclients: {
5907
5907
  wasm: {
5908
- v1: _457.LCDQueryClient;
5908
+ v1: _481.LCDQueryClient;
5909
5909
  };
5910
5910
  };
5911
5911
  };