@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.7

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 (751) hide show
  1. package/binary.d.ts +1 -1
  2. package/binary.js +1 -1
  3. package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
  4. package/cosmos/app/runtime/v1alpha1/module.js +44 -1
  5. package/cosmos/app/v1alpha1/module.d.ts +55 -6
  6. package/cosmos/app/v1alpha1/module.js +19 -0
  7. package/cosmos/auth/module/v1/module.d.ts +72 -12
  8. package/cosmos/auth/module/v1/module.js +25 -1
  9. package/cosmos/auth/v1beta1/auth.d.ts +68 -10
  10. package/cosmos/auth/v1beta1/auth.js +26 -0
  11. package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
  12. package/cosmos/auth/v1beta1/genesis.js +6 -0
  13. package/cosmos/auth/v1beta1/query.d.ts +334 -92
  14. package/cosmos/auth/v1beta1/query.js +120 -0
  15. package/cosmos/auth/v1beta1/query.lcd.js +7 -21
  16. package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
  17. package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
  18. package/cosmos/auth/v1beta1/tx.d.ts +31 -10
  19. package/cosmos/auth/v1beta1/tx.js +13 -0
  20. package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
  21. package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
  22. package/cosmos/authz/module/v1/module.d.ts +18 -2
  23. package/cosmos/authz/module/v1/module.js +6 -0
  24. package/cosmos/authz/v1beta1/authz.d.ts +69 -6
  25. package/cosmos/authz/v1beta1/authz.js +27 -0
  26. package/cosmos/authz/v1beta1/event.d.ts +72 -16
  27. package/cosmos/authz/v1beta1/event.js +12 -0
  28. package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
  29. package/cosmos/authz/v1beta1/genesis.js +6 -0
  30. package/cosmos/authz/v1beta1/query.d.ts +168 -32
  31. package/cosmos/authz/v1beta1/query.js +36 -0
  32. package/cosmos/authz/v1beta1/query.lcd.js +2 -6
  33. package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
  34. package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
  35. package/cosmos/authz/v1beta1/tx.d.ts +94 -6
  36. package/cosmos/authz/v1beta1/tx.js +40 -0
  37. package/cosmos/bank/module/v1/module.d.ts +24 -4
  38. package/cosmos/bank/module/v1/module.js +6 -0
  39. package/cosmos/bank/v1beta1/authz.d.ts +13 -8
  40. package/cosmos/bank/v1beta1/authz.js +7 -0
  41. package/cosmos/bank/v1beta1/bank.d.ts +136 -34
  42. package/cosmos/bank/v1beta1/bank.js +48 -0
  43. package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
  44. package/cosmos/bank/v1beta1/genesis.js +13 -0
  45. package/cosmos/bank/v1beta1/query.d.ts +599 -138
  46. package/cosmos/bank/v1beta1/query.js +179 -0
  47. package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
  48. package/cosmos/bank/v1beta1/query.lcd.js +28 -29
  49. package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
  50. package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
  51. package/cosmos/bank/v1beta1/tx.d.ts +143 -30
  52. package/cosmos/bank/v1beta1/tx.js +53 -0
  53. package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
  54. package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
  55. package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
  56. package/cosmos/base/abci/v1beta1/abci.js +73 -0
  57. package/cosmos/base/node/v1beta1/query.d.ts +102 -18
  58. package/cosmos/base/node/v1beta1/query.js +24 -0
  59. package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
  60. package/cosmos/base/query/v1beta1/pagination.js +24 -0
  61. package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
  62. package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
  63. package/cosmos/base/v1beta1/coin.d.ts +56 -0
  64. package/cosmos/base/v1beta1/coin.js +32 -0
  65. package/cosmos/benchmark/module/v1/module.d.ts +102 -26
  66. package/cosmos/benchmark/module/v1/module.js +12 -0
  67. package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
  68. package/cosmos/benchmark/v1/benchmark.js +6 -0
  69. package/cosmos/benchmark/v1/tx.d.ts +36 -4
  70. package/cosmos/benchmark/v1/tx.js +12 -0
  71. package/cosmos/bundle.d.ts +2283 -2421
  72. package/cosmos/bundle.js +242 -261
  73. package/cosmos/circuit/module/v1/module.d.ts +24 -4
  74. package/cosmos/circuit/module/v1/module.js +6 -0
  75. package/cosmos/circuit/v1/query.d.ts +120 -16
  76. package/cosmos/circuit/v1/query.js +36 -0
  77. package/cosmos/circuit/v1/tx.d.ts +126 -18
  78. package/cosmos/circuit/v1/tx.js +36 -0
  79. package/cosmos/circuit/v1/types.d.ts +55 -6
  80. package/cosmos/circuit/v1/types.js +19 -0
  81. package/cosmos/consensus/module/v1/module.d.ts +24 -4
  82. package/cosmos/consensus/module/v1/module.js +6 -0
  83. package/cosmos/consensus/v1/query.d.ts +36 -4
  84. package/cosmos/consensus/v1/query.js +12 -0
  85. package/cosmos/consensus/v1/tx.d.ts +37 -6
  86. package/cosmos/consensus/v1/tx.js +13 -0
  87. package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
  88. package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
  89. package/cosmos/counter/module/v1/module.d.ts +24 -4
  90. package/cosmos/counter/module/v1/module.js +6 -0
  91. package/cosmos/counter/v1/query.d.ts +36 -4
  92. package/cosmos/counter/v1/query.js +12 -0
  93. package/cosmos/counter/v1/tx.d.ts +54 -10
  94. package/cosmos/counter/v1/tx.js +12 -0
  95. package/cosmos/crisis/module/v1/module.d.ts +30 -6
  96. package/cosmos/crisis/module/v1/module.js +6 -0
  97. package/cosmos/crypto/ed25519/keys.d.ts +29 -0
  98. package/cosmos/crypto/ed25519/keys.js +17 -0
  99. package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
  100. package/cosmos/crypto/hd/v1/hd.js +6 -0
  101. package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
  102. package/cosmos/crypto/keyring/v1/record.js +31 -0
  103. package/cosmos/crypto/multisig/keys.d.ts +14 -0
  104. package/cosmos/crypto/multisig/keys.js +8 -0
  105. package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
  106. package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  107. package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
  108. package/cosmos/crypto/secp256k1/keys.js +16 -0
  109. package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
  110. package/cosmos/crypto/secp256r1/keys.js +12 -0
  111. package/cosmos/distribution/module/v1/module.d.ts +24 -4
  112. package/cosmos/distribution/module/v1/module.js +6 -0
  113. package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
  114. package/cosmos/distribution/v1beta1/distribution.js +105 -0
  115. package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
  116. package/cosmos/distribution/v1beta1/genesis.js +52 -0
  117. package/cosmos/distribution/v1beta1/query.d.ts +430 -58
  118. package/cosmos/distribution/v1beta1/query.js +136 -0
  119. package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
  120. package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
  121. package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
  122. package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
  123. package/cosmos/distribution/v1beta1/tx.js +97 -0
  124. package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
  125. package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
  126. package/cosmos/epochs/module/v1/module.d.ts +18 -2
  127. package/cosmos/epochs/module/v1/module.js +6 -0
  128. package/cosmos/epochs/v1beta1/events.d.ts +36 -4
  129. package/cosmos/epochs/v1beta1/events.js +12 -0
  130. package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
  131. package/cosmos/epochs/v1beta1/genesis.js +13 -0
  132. package/cosmos/epochs/v1beta1/query.d.ts +52 -0
  133. package/cosmos/epochs/v1beta1/query.js +28 -0
  134. package/cosmos/evidence/module/v1/module.d.ts +18 -2
  135. package/cosmos/evidence/module/v1/module.js +6 -0
  136. package/cosmos/feegrant/module/v1/module.d.ts +18 -2
  137. package/cosmos/feegrant/module/v1/module.js +6 -0
  138. package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
  139. package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
  140. package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
  141. package/cosmos/feegrant/v1beta1/genesis.js +6 -0
  142. package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
  143. package/cosmos/feegrant/v1beta1/query.js +36 -0
  144. package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
  145. package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
  146. package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
  147. package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
  148. package/cosmos/feegrant/v1beta1/tx.js +37 -0
  149. package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
  150. package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
  151. package/cosmos/genutil/module/v1/module.d.ts +18 -2
  152. package/cosmos/genutil/module/v1/module.js +6 -0
  153. package/cosmos/gov/module/v1/module.d.ts +24 -4
  154. package/cosmos/gov/module/v1/module.js +6 -0
  155. package/cosmos/gov/v1/genesis.d.ts +48 -24
  156. package/cosmos/gov/v1/genesis.js +6 -0
  157. package/cosmos/gov/v1/gov.d.ts +341 -124
  158. package/cosmos/gov/v1/gov.js +59 -0
  159. package/cosmos/gov/v1/query.d.ts +469 -92
  160. package/cosmos/gov/v1/query.js +109 -0
  161. package/cosmos/gov/v1/tx.d.ts +368 -93
  162. package/cosmos/gov/v1/tx.js +88 -0
  163. package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
  164. package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
  165. package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
  166. package/cosmos/gov/v1beta1/genesis.js +6 -0
  167. package/cosmos/gov/v1beta1/gov.d.ts +291 -69
  168. package/cosmos/gov/v1beta1/gov.js +57 -0
  169. package/cosmos/gov/v1beta1/query.d.ts +439 -82
  170. package/cosmos/gov/v1beta1/query.js +97 -0
  171. package/cosmos/gov/v1beta1/tx.d.ts +209 -45
  172. package/cosmos/gov/v1beta1/tx.js +49 -0
  173. package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
  174. package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
  175. package/cosmos/group/module/v1/module.d.ts +18 -2
  176. package/cosmos/group/module/v1/module.js +6 -0
  177. package/cosmos/group/v1/events.d.ts +300 -56
  178. package/cosmos/group/v1/events.js +66 -0
  179. package/cosmos/group/v1/genesis.d.ts +48 -12
  180. package/cosmos/group/v1/genesis.js +6 -0
  181. package/cosmos/group/v1/query.d.ts +768 -152
  182. package/cosmos/group/v1/query.js +168 -0
  183. package/cosmos/group/v1/query.lcd.js +1 -3
  184. package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
  185. package/cosmos/group/v1/query.rpc.Query.js +1 -3
  186. package/cosmos/group/v1/tx.d.ts +804 -163
  187. package/cosmos/group/v1/tx.js +168 -0
  188. package/cosmos/group/v1/types.d.ts +398 -91
  189. package/cosmos/group/v1/types.js +82 -0
  190. package/cosmos/ics23/v1/proofs.d.ts +294 -22
  191. package/cosmos/ics23/v1/proofs.js +138 -0
  192. package/cosmos/mint/module/v1/module.d.ts +24 -4
  193. package/cosmos/mint/module/v1/module.js +6 -0
  194. package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
  195. package/cosmos/mint/v1beta1/genesis.js +6 -0
  196. package/cosmos/mint/v1beta1/mint.d.ts +84 -20
  197. package/cosmos/mint/v1beta1/mint.js +12 -0
  198. package/cosmos/mint/v1beta1/query.d.ts +111 -12
  199. package/cosmos/mint/v1beta1/query.js +39 -0
  200. package/cosmos/mint/v1beta1/tx.d.ts +31 -10
  201. package/cosmos/mint/v1beta1/tx.js +13 -0
  202. package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
  203. package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
  204. package/cosmos/nft/module/v1/module.d.ts +18 -2
  205. package/cosmos/nft/module/v1/module.js +6 -0
  206. package/cosmos/params/module/v1/module.d.ts +18 -2
  207. package/cosmos/params/module/v1/module.js +6 -0
  208. package/cosmos/params/v1beta1/params.d.ts +31 -2
  209. package/cosmos/params/v1beta1/params.js +13 -0
  210. package/cosmos/params/v1beta1/query.d.ts +93 -22
  211. package/cosmos/params/v1beta1/query.js +33 -0
  212. package/cosmos/params/v1beta1/query.lcd.js +1 -3
  213. package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
  214. package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
  215. package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
  216. package/cosmos/protocolpool/module/v1/module.js +6 -0
  217. package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
  218. package/cosmos/protocolpool/v1/genesis.js +6 -0
  219. package/cosmos/protocolpool/v1/query.d.ts +138 -12
  220. package/cosmos/protocolpool/v1/query.js +54 -0
  221. package/cosmos/protocolpool/v1/tx.d.ts +217 -30
  222. package/cosmos/protocolpool/v1/tx.js +67 -0
  223. package/cosmos/protocolpool/v1/types.d.ts +54 -10
  224. package/cosmos/protocolpool/v1/types.js +12 -0
  225. package/cosmos/reflection/v1/reflection.d.ts +42 -6
  226. package/cosmos/reflection/v1/reflection.js +12 -0
  227. package/cosmos/rpc.query.d.ts +1 -9
  228. package/cosmos/rpc.query.js +0 -5
  229. package/cosmos/slashing/module/v1/module.d.ts +24 -4
  230. package/cosmos/slashing/module/v1/module.js +6 -0
  231. package/cosmos/staking/module/v1/module.d.ts +36 -8
  232. package/cosmos/staking/module/v1/module.js +6 -0
  233. package/cosmos/staking/v1beta1/authz.d.ts +43 -15
  234. package/cosmos/staking/v1beta1/authz.js +13 -5
  235. package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
  236. package/cosmos/staking/v1beta1/genesis.js +12 -0
  237. package/cosmos/staking/v1beta1/query.d.ts +660 -102
  238. package/cosmos/staking/v1beta1/query.js +186 -0
  239. package/cosmos/staking/v1beta1/staking.d.ts +631 -121
  240. package/cosmos/staking/v1beta1/staking.js +153 -0
  241. package/cosmos/staking/v1beta1/tx.d.ts +234 -42
  242. package/cosmos/staking/v1beta1/tx.js +88 -0
  243. package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
  244. package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
  245. package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
  246. package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
  247. package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
  248. package/cosmos/store/snapshots/v1/snapshot.js +42 -0
  249. package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
  250. package/cosmos/store/streaming/abci/grpc.js +24 -0
  251. package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
  252. package/cosmos/store/v1beta1/commit_info.js +21 -0
  253. package/cosmos/store/v1beta1/listening.d.ts +45 -10
  254. package/cosmos/store/v1beta1/listening.js +15 -0
  255. package/cosmos/tx/config/v1/config.d.ts +18 -2
  256. package/cosmos/tx/config/v1/config.js +6 -0
  257. package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
  258. package/cosmos/tx/signing/v1beta1/signing.js +33 -0
  259. package/cosmos/tx/v1beta1/service.d.ts +355 -94
  260. package/cosmos/tx/v1beta1/service.js +125 -0
  261. package/cosmos/tx/v1beta1/service.lcd.js +1 -3
  262. package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
  263. package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
  264. package/cosmos/tx/v1beta1/tx.d.ts +371 -80
  265. package/cosmos/tx/v1beta1/tx.js +118 -0
  266. package/cosmos/upgrade/module/v1/module.d.ts +24 -4
  267. package/cosmos/upgrade/module/v1/module.js +6 -0
  268. package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
  269. package/cosmos/upgrade/v1beta1/query.js +70 -0
  270. package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
  271. package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
  272. package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
  273. package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
  274. package/cosmos/upgrade/v1beta1/tx.js +24 -0
  275. package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
  276. package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
  277. package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
  278. package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
  279. package/cosmos/vesting/module/v1/module.d.ts +18 -2
  280. package/cosmos/vesting/module/v1/module.js +6 -0
  281. package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
  282. package/cosmos/vesting/v1beta1/tx.js +40 -0
  283. package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
  284. package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
  285. package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
  286. package/cosmos/vesting/v1beta1/vesting.js +43 -0
  287. package/cosmos_proto/cosmos.d.ts +31 -0
  288. package/cosmos_proto/cosmos.js +19 -0
  289. package/esm/binary.js +1 -1
  290. package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
  291. package/esm/cosmos/app/v1alpha1/module.js +19 -0
  292. package/esm/cosmos/auth/module/v1/module.js +25 -1
  293. package/esm/cosmos/auth/v1beta1/auth.js +26 -0
  294. package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
  295. package/esm/cosmos/auth/v1beta1/query.js +120 -0
  296. package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
  297. package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
  298. package/esm/cosmos/auth/v1beta1/tx.js +13 -0
  299. package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
  300. package/esm/cosmos/authz/module/v1/module.js +6 -0
  301. package/esm/cosmos/authz/v1beta1/authz.js +27 -0
  302. package/esm/cosmos/authz/v1beta1/event.js +12 -0
  303. package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
  304. package/esm/cosmos/authz/v1beta1/query.js +36 -0
  305. package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
  306. package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
  307. package/esm/cosmos/authz/v1beta1/tx.js +40 -0
  308. package/esm/cosmos/bank/module/v1/module.js +6 -0
  309. package/esm/cosmos/bank/v1beta1/authz.js +7 -0
  310. package/esm/cosmos/bank/v1beta1/bank.js +48 -0
  311. package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
  312. package/esm/cosmos/bank/v1beta1/query.js +179 -0
  313. package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
  314. package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
  315. package/esm/cosmos/bank/v1beta1/tx.js +53 -0
  316. package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
  317. package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
  318. package/esm/cosmos/base/node/v1beta1/query.js +24 -0
  319. package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
  320. package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
  321. package/esm/cosmos/base/v1beta1/coin.js +32 -0
  322. package/esm/cosmos/benchmark/module/v1/module.js +12 -0
  323. package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
  324. package/esm/cosmos/benchmark/v1/tx.js +12 -0
  325. package/esm/cosmos/bundle.js +242 -261
  326. package/esm/cosmos/circuit/module/v1/module.js +6 -0
  327. package/esm/cosmos/circuit/v1/query.js +36 -0
  328. package/esm/cosmos/circuit/v1/tx.js +36 -0
  329. package/esm/cosmos/circuit/v1/types.js +19 -0
  330. package/esm/cosmos/consensus/module/v1/module.js +6 -0
  331. package/esm/cosmos/consensus/v1/query.js +12 -0
  332. package/esm/cosmos/consensus/v1/tx.js +13 -0
  333. package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
  334. package/esm/cosmos/counter/module/v1/module.js +6 -0
  335. package/esm/cosmos/counter/v1/query.js +12 -0
  336. package/esm/cosmos/counter/v1/tx.js +12 -0
  337. package/esm/cosmos/crisis/module/v1/module.js +6 -0
  338. package/esm/cosmos/crypto/ed25519/keys.js +17 -0
  339. package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
  340. package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
  341. package/esm/cosmos/crypto/multisig/keys.js +8 -0
  342. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  343. package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
  344. package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
  345. package/esm/cosmos/distribution/module/v1/module.js +6 -0
  346. package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
  347. package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
  348. package/esm/cosmos/distribution/v1beta1/query.js +136 -0
  349. package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
  350. package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
  351. package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
  352. package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
  353. package/esm/cosmos/epochs/module/v1/module.js +6 -0
  354. package/esm/cosmos/epochs/v1beta1/events.js +12 -0
  355. package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
  356. package/esm/cosmos/epochs/v1beta1/query.js +28 -0
  357. package/esm/cosmos/evidence/module/v1/module.js +6 -0
  358. package/esm/cosmos/feegrant/module/v1/module.js +6 -0
  359. package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
  360. package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
  361. package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
  362. package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
  363. package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
  364. package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
  365. package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
  366. package/esm/cosmos/genutil/module/v1/module.js +6 -0
  367. package/esm/cosmos/gov/module/v1/module.js +6 -0
  368. package/esm/cosmos/gov/v1/genesis.js +6 -0
  369. package/esm/cosmos/gov/v1/gov.js +59 -0
  370. package/esm/cosmos/gov/v1/query.js +109 -0
  371. package/esm/cosmos/gov/v1/tx.js +88 -0
  372. package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
  373. package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
  374. package/esm/cosmos/gov/v1beta1/gov.js +57 -0
  375. package/esm/cosmos/gov/v1beta1/query.js +97 -0
  376. package/esm/cosmos/gov/v1beta1/tx.js +49 -0
  377. package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
  378. package/esm/cosmos/group/module/v1/module.js +6 -0
  379. package/esm/cosmos/group/v1/events.js +66 -0
  380. package/esm/cosmos/group/v1/genesis.js +6 -0
  381. package/esm/cosmos/group/v1/query.js +168 -0
  382. package/esm/cosmos/group/v1/query.lcd.js +1 -3
  383. package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
  384. package/esm/cosmos/group/v1/tx.js +168 -0
  385. package/esm/cosmos/group/v1/types.js +82 -0
  386. package/esm/cosmos/ics23/v1/proofs.js +138 -0
  387. package/esm/cosmos/mint/module/v1/module.js +6 -0
  388. package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
  389. package/esm/cosmos/mint/v1beta1/mint.js +12 -0
  390. package/esm/cosmos/mint/v1beta1/query.js +39 -0
  391. package/esm/cosmos/mint/v1beta1/tx.js +13 -0
  392. package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
  393. package/esm/cosmos/nft/module/v1/module.js +6 -0
  394. package/esm/cosmos/params/module/v1/module.js +6 -0
  395. package/esm/cosmos/params/v1beta1/params.js +13 -0
  396. package/esm/cosmos/params/v1beta1/query.js +33 -0
  397. package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
  398. package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
  399. package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
  400. package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
  401. package/esm/cosmos/protocolpool/v1/query.js +54 -0
  402. package/esm/cosmos/protocolpool/v1/tx.js +67 -0
  403. package/esm/cosmos/protocolpool/v1/types.js +12 -0
  404. package/esm/cosmos/reflection/v1/reflection.js +12 -0
  405. package/esm/cosmos/rpc.query.js +0 -5
  406. package/esm/cosmos/slashing/module/v1/module.js +6 -0
  407. package/esm/cosmos/staking/module/v1/module.js +6 -0
  408. package/esm/cosmos/staking/v1beta1/authz.js +13 -5
  409. package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
  410. package/esm/cosmos/staking/v1beta1/query.js +186 -0
  411. package/esm/cosmos/staking/v1beta1/staking.js +153 -0
  412. package/esm/cosmos/staking/v1beta1/tx.js +88 -0
  413. package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
  414. package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
  415. package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
  416. package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
  417. package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
  418. package/esm/cosmos/store/v1beta1/listening.js +15 -0
  419. package/esm/cosmos/tx/config/v1/config.js +6 -0
  420. package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
  421. package/esm/cosmos/tx/v1beta1/service.js +125 -0
  422. package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
  423. package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
  424. package/esm/cosmos/tx/v1beta1/tx.js +119 -1
  425. package/esm/cosmos/upgrade/module/v1/module.js +6 -0
  426. package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
  427. package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
  428. package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
  429. package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
  430. package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
  431. package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
  432. package/esm/cosmos/vesting/module/v1/module.js +6 -0
  433. package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
  434. package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
  435. package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
  436. package/esm/cosmos_proto/cosmos.js +19 -0
  437. package/esm/gogoproto/bundle.js +2 -2
  438. package/esm/google/api/http.js +283 -0
  439. package/esm/google/bundle.js +7 -7
  440. package/esm/google/protobuf/any.js +90 -0
  441. package/esm/google/protobuf/descriptor.js +220 -0
  442. package/esm/google/protobuf/duration.js +63 -0
  443. package/esm/google/protobuf/timestamp.js +94 -0
  444. package/esm/helpers.js +1 -1
  445. package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  446. package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
  447. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
  448. package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
  449. package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  450. package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
  451. package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
  452. package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
  453. package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  454. package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  455. package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
  456. package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
  457. package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
  458. package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
  459. package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
  460. package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
  461. package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
  462. package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
  463. package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
  464. package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
  465. package/esm/ibc/applications/transfer/v1/authz.js +13 -0
  466. package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
  467. package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
  468. package/esm/ibc/applications/transfer/v1/packet.js +8 -0
  469. package/esm/ibc/applications/transfer/v1/query.js +78 -0
  470. package/esm/ibc/applications/transfer/v1/token.js +18 -0
  471. package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
  472. package/esm/ibc/applications/transfer/v1/tx.js +40 -1
  473. package/esm/ibc/bundle.js +196 -173
  474. package/esm/ibc/client.js +4 -1
  475. package/esm/ibc/core/channel/v1/channel.js +64 -0
  476. package/esm/ibc/core/channel/v1/genesis.js +13 -0
  477. package/esm/ibc/core/channel/v1/query.js +197 -0
  478. package/esm/ibc/core/channel/v1/tx.js +129 -0
  479. package/esm/ibc/core/channel/v2/genesis.js +21 -0
  480. package/esm/ibc/core/channel/v2/packet.js +29 -0
  481. package/esm/ibc/core/channel/v2/query.js +100 -0
  482. package/esm/ibc/core/channel/v2/tx.js +48 -0
  483. package/esm/ibc/core/client/v1/client.js +45 -0
  484. package/esm/ibc/core/client/v1/genesis.js +20 -0
  485. package/esm/ibc/core/client/v1/query.js +154 -0
  486. package/esm/ibc/core/client/v1/tx.amino.js +1 -6
  487. package/esm/ibc/core/client/v1/tx.js +86 -151
  488. package/esm/ibc/core/client/v1/tx.registry.js +2 -20
  489. package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
  490. package/esm/ibc/core/client/v2/config.js +9 -0
  491. package/esm/ibc/core/client/v2/counterparty.js +6 -0
  492. package/esm/ibc/core/client/v2/genesis.js +12 -0
  493. package/esm/ibc/core/client/v2/query.js +26 -0
  494. package/esm/ibc/core/client/v2/tx.js +24 -0
  495. package/esm/ibc/core/commitment/v1/commitment.js +25 -0
  496. package/esm/ibc/core/commitment/v2/commitment.js +36 -0
  497. package/esm/ibc/core/connection/v1/connection.js +47 -0
  498. package/esm/ibc/core/connection/v1/genesis.js +6 -0
  499. package/esm/ibc/core/connection/v1/query.js +83 -0
  500. package/esm/ibc/core/connection/v1/tx.js +66 -0
  501. package/esm/ibc/lcd.js +5 -0
  502. package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
  503. package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
  504. package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
  505. package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
  506. package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
  507. package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
  508. package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
  509. package/esm/ibc/rpc.query.js +3 -5
  510. package/esm/ibc/rpc.tx.js +3 -0
  511. package/esm/index.js +1 -1
  512. package/esm/sparkdream/blog/module/v1/module.js +6 -0
  513. package/esm/sparkdream/blog/v1/genesis.js +6 -0
  514. package/esm/sparkdream/blog/v1/params.js +6 -0
  515. package/esm/sparkdream/blog/v1/post.js +6 -0
  516. package/esm/sparkdream/blog/v1/query.js +36 -0
  517. package/esm/sparkdream/blog/v1/tx.js +49 -0
  518. package/esm/sparkdream/bundle.js +41 -41
  519. package/esm/sparkdream/rpc.query.js +0 -5
  520. package/esm/sparkdream/sparkdream/module/v1/module.js +6 -0
  521. package/esm/sparkdream/sparkdream/v1/genesis.js +6 -0
  522. package/esm/sparkdream/sparkdream/v1/params.js +6 -0
  523. package/esm/sparkdream/sparkdream/v1/query.js +12 -0
  524. package/esm/sparkdream/sparkdream/v1/tx.js +13 -0
  525. package/esm/tendermint/abci/types.js +255 -0
  526. package/esm/tendermint/bundle.js +18 -18
  527. package/esm/tendermint/crypto/keys.js +6 -0
  528. package/esm/tendermint/crypto/proof.js +29 -0
  529. package/esm/tendermint/p2p/types.js +20 -0
  530. package/esm/tendermint/types/block.js +5 -0
  531. package/esm/tendermint/types/evidence.js +22 -0
  532. package/esm/tendermint/types/params.js +46 -0
  533. package/esm/tendermint/types/types.js +87 -0
  534. package/esm/tendermint/types/validator.js +15 -0
  535. package/esm/tendermint/version/types.js +16 -0
  536. package/esm/types.js +1 -1
  537. package/esm/utf8.js +1 -1
  538. package/esm/varint.js +1 -1
  539. package/gogoproto/bundle.js +2 -2
  540. package/google/api/http.d.ts +343 -14
  541. package/google/api/http.js +283 -0
  542. package/google/bundle.d.ts +418 -418
  543. package/google/bundle.js +7 -7
  544. package/google/protobuf/any.d.ts +102 -2
  545. package/google/protobuf/any.js +90 -0
  546. package/google/protobuf/descriptor.d.ts +738 -90
  547. package/google/protobuf/descriptor.js +220 -0
  548. package/google/protobuf/duration.d.ts +69 -0
  549. package/google/protobuf/duration.js +63 -0
  550. package/google/protobuf/timestamp.d.ts +100 -0
  551. package/google/protobuf/timestamp.js +94 -0
  552. package/helpers.d.ts +1 -1
  553. package/helpers.js +1 -1
  554. package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
  555. package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  556. package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
  557. package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
  558. package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
  559. package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
  560. package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
  561. package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
  562. package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
  563. package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  564. package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
  565. package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
  566. package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
  567. package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
  568. package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
  569. package/ibc/applications/interchain_accounts/v1/account.js +6 -0
  570. package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
  571. package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  572. package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
  573. package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  574. package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
  575. package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
  576. package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
  577. package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
  578. package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
  579. package/ibc/applications/rate_limiting/v1/query.js +906 -0
  580. package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
  581. package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
  582. package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
  583. package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
  584. package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
  585. package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
  586. package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
  587. package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
  588. package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
  589. package/ibc/applications/rate_limiting/v1/tx.js +729 -0
  590. package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
  591. package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
  592. package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
  593. package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
  594. package/ibc/applications/transfer/v1/authz.d.ts +61 -12
  595. package/ibc/applications/transfer/v1/authz.js +13 -0
  596. package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
  597. package/ibc/applications/transfer/v1/denomtrace.js +8 -0
  598. package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
  599. package/ibc/applications/transfer/v1/genesis.js +6 -0
  600. package/ibc/applications/transfer/v1/packet.d.ts +44 -10
  601. package/ibc/applications/transfer/v1/packet.js +8 -0
  602. package/ibc/applications/transfer/v1/query.d.ts +252 -34
  603. package/ibc/applications/transfer/v1/query.js +78 -0
  604. package/ibc/applications/transfer/v1/token.d.ts +78 -14
  605. package/ibc/applications/transfer/v1/token.js +18 -0
  606. package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
  607. package/ibc/applications/transfer/v1/transfer.js +9 -0
  608. package/ibc/applications/transfer/v1/tx.d.ts +135 -22
  609. package/ibc/applications/transfer/v1/tx.js +40 -1
  610. package/ibc/bundle.d.ts +3830 -3396
  611. package/ibc/bundle.js +196 -173
  612. package/ibc/client.d.ts +20 -5
  613. package/ibc/client.js +4 -1
  614. package/ibc/core/channel/v1/channel.d.ts +292 -60
  615. package/ibc/core/channel/v1/channel.js +64 -0
  616. package/ibc/core/channel/v1/genesis.d.ts +37 -4
  617. package/ibc/core/channel/v1/genesis.js +13 -0
  618. package/ibc/core/channel/v1/query.d.ts +839 -158
  619. package/ibc/core/channel/v1/query.js +197 -0
  620. package/ibc/core/channel/v1/tx.d.ts +335 -30
  621. package/ibc/core/channel/v1/tx.js +129 -0
  622. package/ibc/core/channel/v2/genesis.d.ts +81 -14
  623. package/ibc/core/channel/v2/genesis.js +21 -0
  624. package/ibc/core/channel/v2/packet.d.ts +137 -28
  625. package/ibc/core/channel/v2/packet.js +29 -0
  626. package/ibc/core/channel/v2/query.d.ts +490 -98
  627. package/ibc/core/channel/v2/query.js +100 -0
  628. package/ibc/core/channel/v2/tx.d.ts +144 -16
  629. package/ibc/core/channel/v2/tx.js +48 -0
  630. package/ibc/core/client/v1/client.d.ts +129 -18
  631. package/ibc/core/client/v1/client.js +45 -0
  632. package/ibc/core/client/v1/genesis.d.ts +82 -16
  633. package/ibc/core/client/v1/genesis.js +20 -0
  634. package/ibc/core/client/v1/query.d.ts +508 -74
  635. package/ibc/core/client/v1/query.js +154 -0
  636. package/ibc/core/client/v1/tx.amino.d.ts +1 -6
  637. package/ibc/core/client/v1/tx.amino.js +0 -5
  638. package/ibc/core/client/v1/tx.d.ts +336 -138
  639. package/ibc/core/client/v1/tx.js +87 -152
  640. package/ibc/core/client/v1/tx.registry.d.ts +1 -13
  641. package/ibc/core/client/v1/tx.registry.js +1 -19
  642. package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
  643. package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
  644. package/ibc/core/client/v2/config.d.ts +21 -2
  645. package/ibc/core/client/v2/config.js +9 -0
  646. package/ibc/core/client/v2/counterparty.d.ts +30 -6
  647. package/ibc/core/client/v2/counterparty.js +6 -0
  648. package/ibc/core/client/v2/genesis.d.ts +54 -10
  649. package/ibc/core/client/v2/genesis.js +12 -0
  650. package/ibc/core/client/v2/query.d.ts +74 -8
  651. package/ibc/core/client/v2/query.js +26 -0
  652. package/ibc/core/client/v2/tx.d.ts +108 -20
  653. package/ibc/core/client/v2/tx.js +24 -0
  654. package/ibc/core/commitment/v1/commitment.d.ts +43 -0
  655. package/ibc/core/commitment/v1/commitment.js +25 -0
  656. package/ibc/core/commitment/v2/commitment.d.ts +42 -0
  657. package/ibc/core/commitment/v2/commitment.js +36 -0
  658. package/ibc/core/connection/v1/connection.d.ts +197 -36
  659. package/ibc/core/connection/v1/connection.js +47 -0
  660. package/ibc/core/connection/v1/genesis.d.ts +24 -4
  661. package/ibc/core/connection/v1/genesis.js +6 -0
  662. package/ibc/core/connection/v1/query.d.ts +293 -46
  663. package/ibc/core/connection/v1/query.js +83 -0
  664. package/ibc/core/connection/v1/tx.d.ts +250 -56
  665. package/ibc/core/connection/v1/tx.js +66 -0
  666. package/ibc/lcd.d.ts +3 -0
  667. package/ibc/lcd.js +5 -0
  668. package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
  669. package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
  670. package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
  671. package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
  672. package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
  673. package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
  674. package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
  675. package/ibc/lightclients/wasm/v1/genesis.js +12 -0
  676. package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
  677. package/ibc/lightclients/wasm/v1/query.js +24 -0
  678. package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
  679. package/ibc/lightclients/wasm/v1/tx.js +36 -0
  680. package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
  681. package/ibc/lightclients/wasm/v1/wasm.js +19 -74
  682. package/ibc/rpc.query.d.ts +11 -9
  683. package/ibc/rpc.query.js +3 -5
  684. package/ibc/rpc.tx.d.ts +3 -0
  685. package/ibc/rpc.tx.js +3 -0
  686. package/index.d.ts +1 -1
  687. package/index.js +1 -1
  688. package/package.json +1 -1
  689. package/sparkdream/blog/module/v1/module.d.ts +18 -2
  690. package/sparkdream/blog/module/v1/module.js +6 -0
  691. package/sparkdream/blog/v1/genesis.d.ts +24 -4
  692. package/sparkdream/blog/v1/genesis.js +6 -0
  693. package/sparkdream/blog/v1/params.d.ts +18 -2
  694. package/sparkdream/blog/v1/params.js +6 -0
  695. package/sparkdream/blog/v1/post.d.ts +18 -2
  696. package/sparkdream/blog/v1/post.js +6 -0
  697. package/sparkdream/blog/v1/query.d.ts +114 -14
  698. package/sparkdream/blog/v1/query.js +36 -0
  699. package/sparkdream/blog/v1/tx.d.ts +151 -18
  700. package/sparkdream/blog/v1/tx.js +49 -0
  701. package/sparkdream/bundle.d.ts +302 -310
  702. package/sparkdream/bundle.js +41 -41
  703. package/sparkdream/rpc.query.d.ts +1 -9
  704. package/sparkdream/rpc.query.js +0 -5
  705. package/sparkdream/sparkdream/module/v1/module.d.ts +18 -2
  706. package/sparkdream/sparkdream/module/v1/module.js +6 -0
  707. package/sparkdream/sparkdream/v1/genesis.d.ts +24 -4
  708. package/sparkdream/sparkdream/v1/genesis.js +6 -0
  709. package/sparkdream/sparkdream/v1/params.d.ts +18 -2
  710. package/sparkdream/sparkdream/v1/params.js +6 -0
  711. package/sparkdream/sparkdream/v1/query.d.ts +42 -6
  712. package/sparkdream/sparkdream/v1/query.js +12 -0
  713. package/sparkdream/sparkdream/v1/tx.d.ts +37 -4
  714. package/sparkdream/sparkdream/v1/tx.js +13 -0
  715. package/tendermint/abci/types.d.ts +971 -98
  716. package/tendermint/abci/types.js +255 -0
  717. package/tendermint/bundle.d.ts +844 -844
  718. package/tendermint/bundle.js +18 -18
  719. package/tendermint/crypto/keys.d.ts +18 -2
  720. package/tendermint/crypto/keys.js +6 -0
  721. package/tendermint/crypto/proof.d.ts +89 -6
  722. package/tendermint/crypto/proof.js +29 -0
  723. package/tendermint/p2p/types.d.ts +60 -0
  724. package/tendermint/p2p/types.js +20 -0
  725. package/tendermint/types/block.d.ts +15 -0
  726. package/tendermint/types/block.js +5 -0
  727. package/tendermint/types/evidence.d.ts +66 -4
  728. package/tendermint/types/evidence.js +22 -0
  729. package/tendermint/types/params.d.ts +112 -8
  730. package/tendermint/types/params.js +46 -0
  731. package/tendermint/types/types.d.ts +327 -42
  732. package/tendermint/types/types.js +87 -0
  733. package/tendermint/types/validator.d.ts +45 -0
  734. package/tendermint/types/validator.js +15 -0
  735. package/tendermint/version/types.d.ts +28 -0
  736. package/tendermint/version/types.js +16 -0
  737. package/types.d.ts +1 -1
  738. package/types.js +1 -1
  739. package/utf8.d.ts +1 -1
  740. package/utf8.js +1 -1
  741. package/varint.d.ts +1 -1
  742. package/varint.js +1 -1
  743. package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
  744. package/cosmos/orm/module/v1alpha1/module.js +0 -62
  745. package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
  746. package/cosmos/orm/query/v1alpha1/query.js +0 -695
  747. package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
  748. package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
  749. package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
  750. package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
  751. package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
@@ -0,0 +1,903 @@
1
+ //@ts-nocheck
2
+ import { RateLimit, WhitelistedAddressPair } from "./rate_limiting";
3
+ import { BinaryReader, BinaryWriter } from "../../../../binary";
4
+ function createBaseQueryAllRateLimitsRequest() {
5
+ return {};
6
+ }
7
+ /**
8
+ * Queries all rate limits
9
+ * @name QueryAllRateLimitsRequest
10
+ * @package ibc.applications.rate_limiting.v1
11
+ * @see proto type: ibc.applications.rate_limiting.v1.QueryAllRateLimitsRequest
12
+ */
13
+ export const QueryAllRateLimitsRequest = {
14
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllRateLimitsRequest",
15
+ aminoType: "cosmos-sdk/QueryAllRateLimitsRequest",
16
+ encode(_, writer = BinaryWriter.create()) {
17
+ return writer;
18
+ },
19
+ decode(input, length) {
20
+ const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
21
+ let end = length === undefined ? reader.len : reader.pos + length;
22
+ const message = createBaseQueryAllRateLimitsRequest();
23
+ while (reader.pos < end) {
24
+ const tag = reader.uint32();
25
+ switch (tag >>> 3) {
26
+ default:
27
+ reader.skipType(tag & 7);
28
+ break;
29
+ }
30
+ }
31
+ return message;
32
+ },
33
+ fromPartial(_) {
34
+ const message = createBaseQueryAllRateLimitsRequest();
35
+ return message;
36
+ },
37
+ fromAmino(_) {
38
+ const message = createBaseQueryAllRateLimitsRequest();
39
+ return message;
40
+ },
41
+ toAmino(_) {
42
+ const obj = {};
43
+ return obj;
44
+ },
45
+ fromAminoMsg(object) {
46
+ return QueryAllRateLimitsRequest.fromAmino(object.value);
47
+ },
48
+ toAminoMsg(message) {
49
+ return {
50
+ type: "cosmos-sdk/QueryAllRateLimitsRequest",
51
+ value: QueryAllRateLimitsRequest.toAmino(message)
52
+ };
53
+ },
54
+ fromProtoMsg(message) {
55
+ return QueryAllRateLimitsRequest.decode(message.value);
56
+ },
57
+ toProto(message) {
58
+ return QueryAllRateLimitsRequest.encode(message).finish();
59
+ },
60
+ toProtoMsg(message) {
61
+ return {
62
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllRateLimitsRequest",
63
+ value: QueryAllRateLimitsRequest.encode(message).finish()
64
+ };
65
+ }
66
+ };
67
+ function createBaseQueryAllRateLimitsResponse() {
68
+ return {
69
+ rateLimits: []
70
+ };
71
+ }
72
+ /**
73
+ * QueryAllRateLimitsResponse returns all the rate limits stored on the chain.
74
+ * @name QueryAllRateLimitsResponse
75
+ * @package ibc.applications.rate_limiting.v1
76
+ * @see proto type: ibc.applications.rate_limiting.v1.QueryAllRateLimitsResponse
77
+ */
78
+ export const QueryAllRateLimitsResponse = {
79
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllRateLimitsResponse",
80
+ aminoType: "cosmos-sdk/QueryAllRateLimitsResponse",
81
+ encode(message, writer = BinaryWriter.create()) {
82
+ for (const v of message.rateLimits) {
83
+ RateLimit.encode(v, writer.uint32(10).fork()).ldelim();
84
+ }
85
+ return writer;
86
+ },
87
+ decode(input, length) {
88
+ const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
89
+ let end = length === undefined ? reader.len : reader.pos + length;
90
+ const message = createBaseQueryAllRateLimitsResponse();
91
+ while (reader.pos < end) {
92
+ const tag = reader.uint32();
93
+ switch (tag >>> 3) {
94
+ case 1:
95
+ message.rateLimits.push(RateLimit.decode(reader, reader.uint32()));
96
+ break;
97
+ default:
98
+ reader.skipType(tag & 7);
99
+ break;
100
+ }
101
+ }
102
+ return message;
103
+ },
104
+ fromPartial(object) {
105
+ const message = createBaseQueryAllRateLimitsResponse();
106
+ message.rateLimits = object.rateLimits?.map(e => RateLimit.fromPartial(e)) || [];
107
+ return message;
108
+ },
109
+ fromAmino(object) {
110
+ const message = createBaseQueryAllRateLimitsResponse();
111
+ message.rateLimits = object.rate_limits?.map(e => RateLimit.fromAmino(e)) || [];
112
+ return message;
113
+ },
114
+ toAmino(message) {
115
+ const obj = {};
116
+ if (message.rateLimits) {
117
+ obj.rate_limits = message.rateLimits.map(e => e ? RateLimit.toAmino(e) : undefined);
118
+ }
119
+ else {
120
+ obj.rate_limits = message.rateLimits;
121
+ }
122
+ return obj;
123
+ },
124
+ fromAminoMsg(object) {
125
+ return QueryAllRateLimitsResponse.fromAmino(object.value);
126
+ },
127
+ toAminoMsg(message) {
128
+ return {
129
+ type: "cosmos-sdk/QueryAllRateLimitsResponse",
130
+ value: QueryAllRateLimitsResponse.toAmino(message)
131
+ };
132
+ },
133
+ fromProtoMsg(message) {
134
+ return QueryAllRateLimitsResponse.decode(message.value);
135
+ },
136
+ toProto(message) {
137
+ return QueryAllRateLimitsResponse.encode(message).finish();
138
+ },
139
+ toProtoMsg(message) {
140
+ return {
141
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllRateLimitsResponse",
142
+ value: QueryAllRateLimitsResponse.encode(message).finish()
143
+ };
144
+ }
145
+ };
146
+ function createBaseQueryRateLimitRequest() {
147
+ return {
148
+ denom: "",
149
+ channelOrClientId: ""
150
+ };
151
+ }
152
+ /**
153
+ * Queries a specific rate limit by channel ID and denom
154
+ * @name QueryRateLimitRequest
155
+ * @package ibc.applications.rate_limiting.v1
156
+ * @see proto type: ibc.applications.rate_limiting.v1.QueryRateLimitRequest
157
+ */
158
+ export const QueryRateLimitRequest = {
159
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitRequest",
160
+ aminoType: "cosmos-sdk/QueryRateLimitRequest",
161
+ encode(message, writer = BinaryWriter.create()) {
162
+ if (message.denom !== "") {
163
+ writer.uint32(10).string(message.denom);
164
+ }
165
+ if (message.channelOrClientId !== "") {
166
+ writer.uint32(18).string(message.channelOrClientId);
167
+ }
168
+ return writer;
169
+ },
170
+ decode(input, length) {
171
+ const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
172
+ let end = length === undefined ? reader.len : reader.pos + length;
173
+ const message = createBaseQueryRateLimitRequest();
174
+ while (reader.pos < end) {
175
+ const tag = reader.uint32();
176
+ switch (tag >>> 3) {
177
+ case 1:
178
+ message.denom = reader.string();
179
+ break;
180
+ case 2:
181
+ message.channelOrClientId = reader.string();
182
+ break;
183
+ default:
184
+ reader.skipType(tag & 7);
185
+ break;
186
+ }
187
+ }
188
+ return message;
189
+ },
190
+ fromPartial(object) {
191
+ const message = createBaseQueryRateLimitRequest();
192
+ message.denom = object.denom ?? "";
193
+ message.channelOrClientId = object.channelOrClientId ?? "";
194
+ return message;
195
+ },
196
+ fromAmino(object) {
197
+ const message = createBaseQueryRateLimitRequest();
198
+ if (object.denom !== undefined && object.denom !== null) {
199
+ message.denom = object.denom;
200
+ }
201
+ if (object.channel_or_client_id !== undefined && object.channel_or_client_id !== null) {
202
+ message.channelOrClientId = object.channel_or_client_id;
203
+ }
204
+ return message;
205
+ },
206
+ toAmino(message) {
207
+ const obj = {};
208
+ obj.denom = message.denom === "" ? undefined : message.denom;
209
+ obj.channel_or_client_id = message.channelOrClientId === "" ? undefined : message.channelOrClientId;
210
+ return obj;
211
+ },
212
+ fromAminoMsg(object) {
213
+ return QueryRateLimitRequest.fromAmino(object.value);
214
+ },
215
+ toAminoMsg(message) {
216
+ return {
217
+ type: "cosmos-sdk/QueryRateLimitRequest",
218
+ value: QueryRateLimitRequest.toAmino(message)
219
+ };
220
+ },
221
+ fromProtoMsg(message) {
222
+ return QueryRateLimitRequest.decode(message.value);
223
+ },
224
+ toProto(message) {
225
+ return QueryRateLimitRequest.encode(message).finish();
226
+ },
227
+ toProtoMsg(message) {
228
+ return {
229
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitRequest",
230
+ value: QueryRateLimitRequest.encode(message).finish()
231
+ };
232
+ }
233
+ };
234
+ function createBaseQueryRateLimitResponse() {
235
+ return {
236
+ rateLimit: undefined
237
+ };
238
+ }
239
+ /**
240
+ * QueryRateLimitResponse returns a rate limit by denom and channel_or_client_id combination.
241
+ * @name QueryRateLimitResponse
242
+ * @package ibc.applications.rate_limiting.v1
243
+ * @see proto type: ibc.applications.rate_limiting.v1.QueryRateLimitResponse
244
+ */
245
+ export const QueryRateLimitResponse = {
246
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitResponse",
247
+ aminoType: "cosmos-sdk/QueryRateLimitResponse",
248
+ encode(message, writer = BinaryWriter.create()) {
249
+ if (message.rateLimit !== undefined) {
250
+ RateLimit.encode(message.rateLimit, writer.uint32(10).fork()).ldelim();
251
+ }
252
+ return writer;
253
+ },
254
+ decode(input, length) {
255
+ const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
256
+ let end = length === undefined ? reader.len : reader.pos + length;
257
+ const message = createBaseQueryRateLimitResponse();
258
+ while (reader.pos < end) {
259
+ const tag = reader.uint32();
260
+ switch (tag >>> 3) {
261
+ case 1:
262
+ message.rateLimit = RateLimit.decode(reader, reader.uint32());
263
+ break;
264
+ default:
265
+ reader.skipType(tag & 7);
266
+ break;
267
+ }
268
+ }
269
+ return message;
270
+ },
271
+ fromPartial(object) {
272
+ const message = createBaseQueryRateLimitResponse();
273
+ message.rateLimit = object.rateLimit !== undefined && object.rateLimit !== null ? RateLimit.fromPartial(object.rateLimit) : undefined;
274
+ return message;
275
+ },
276
+ fromAmino(object) {
277
+ const message = createBaseQueryRateLimitResponse();
278
+ if (object.rate_limit !== undefined && object.rate_limit !== null) {
279
+ message.rateLimit = RateLimit.fromAmino(object.rate_limit);
280
+ }
281
+ return message;
282
+ },
283
+ toAmino(message) {
284
+ const obj = {};
285
+ obj.rate_limit = message.rateLimit ? RateLimit.toAmino(message.rateLimit) : undefined;
286
+ return obj;
287
+ },
288
+ fromAminoMsg(object) {
289
+ return QueryRateLimitResponse.fromAmino(object.value);
290
+ },
291
+ toAminoMsg(message) {
292
+ return {
293
+ type: "cosmos-sdk/QueryRateLimitResponse",
294
+ value: QueryRateLimitResponse.toAmino(message)
295
+ };
296
+ },
297
+ fromProtoMsg(message) {
298
+ return QueryRateLimitResponse.decode(message.value);
299
+ },
300
+ toProto(message) {
301
+ return QueryRateLimitResponse.encode(message).finish();
302
+ },
303
+ toProtoMsg(message) {
304
+ return {
305
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitResponse",
306
+ value: QueryRateLimitResponse.encode(message).finish()
307
+ };
308
+ }
309
+ };
310
+ function createBaseQueryRateLimitsByChainIDRequest() {
311
+ return {
312
+ chainId: ""
313
+ };
314
+ }
315
+ /**
316
+ * Queries all the rate limits for a given chain
317
+ * @name QueryRateLimitsByChainIDRequest
318
+ * @package ibc.applications.rate_limiting.v1
319
+ * @see proto type: ibc.applications.rate_limiting.v1.QueryRateLimitsByChainIDRequest
320
+ */
321
+ export const QueryRateLimitsByChainIDRequest = {
322
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitsByChainIDRequest",
323
+ aminoType: "cosmos-sdk/QueryRateLimitsByChainIDRequest",
324
+ encode(message, writer = BinaryWriter.create()) {
325
+ if (message.chainId !== "") {
326
+ writer.uint32(10).string(message.chainId);
327
+ }
328
+ return writer;
329
+ },
330
+ decode(input, length) {
331
+ const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
332
+ let end = length === undefined ? reader.len : reader.pos + length;
333
+ const message = createBaseQueryRateLimitsByChainIDRequest();
334
+ while (reader.pos < end) {
335
+ const tag = reader.uint32();
336
+ switch (tag >>> 3) {
337
+ case 1:
338
+ message.chainId = reader.string();
339
+ break;
340
+ default:
341
+ reader.skipType(tag & 7);
342
+ break;
343
+ }
344
+ }
345
+ return message;
346
+ },
347
+ fromPartial(object) {
348
+ const message = createBaseQueryRateLimitsByChainIDRequest();
349
+ message.chainId = object.chainId ?? "";
350
+ return message;
351
+ },
352
+ fromAmino(object) {
353
+ const message = createBaseQueryRateLimitsByChainIDRequest();
354
+ if (object.chain_id !== undefined && object.chain_id !== null) {
355
+ message.chainId = object.chain_id;
356
+ }
357
+ return message;
358
+ },
359
+ toAmino(message) {
360
+ const obj = {};
361
+ obj.chain_id = message.chainId === "" ? undefined : message.chainId;
362
+ return obj;
363
+ },
364
+ fromAminoMsg(object) {
365
+ return QueryRateLimitsByChainIDRequest.fromAmino(object.value);
366
+ },
367
+ toAminoMsg(message) {
368
+ return {
369
+ type: "cosmos-sdk/QueryRateLimitsByChainIDRequest",
370
+ value: QueryRateLimitsByChainIDRequest.toAmino(message)
371
+ };
372
+ },
373
+ fromProtoMsg(message) {
374
+ return QueryRateLimitsByChainIDRequest.decode(message.value);
375
+ },
376
+ toProto(message) {
377
+ return QueryRateLimitsByChainIDRequest.encode(message).finish();
378
+ },
379
+ toProtoMsg(message) {
380
+ return {
381
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitsByChainIDRequest",
382
+ value: QueryRateLimitsByChainIDRequest.encode(message).finish()
383
+ };
384
+ }
385
+ };
386
+ function createBaseQueryRateLimitsByChainIDResponse() {
387
+ return {
388
+ rateLimits: []
389
+ };
390
+ }
391
+ /**
392
+ * QueryRateLimitsByChainIDResponse returns all rate-limits by a chain.
393
+ * @name QueryRateLimitsByChainIDResponse
394
+ * @package ibc.applications.rate_limiting.v1
395
+ * @see proto type: ibc.applications.rate_limiting.v1.QueryRateLimitsByChainIDResponse
396
+ */
397
+ export const QueryRateLimitsByChainIDResponse = {
398
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitsByChainIDResponse",
399
+ aminoType: "cosmos-sdk/QueryRateLimitsByChainIDResponse",
400
+ encode(message, writer = BinaryWriter.create()) {
401
+ for (const v of message.rateLimits) {
402
+ RateLimit.encode(v, writer.uint32(10).fork()).ldelim();
403
+ }
404
+ return writer;
405
+ },
406
+ decode(input, length) {
407
+ const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
408
+ let end = length === undefined ? reader.len : reader.pos + length;
409
+ const message = createBaseQueryRateLimitsByChainIDResponse();
410
+ while (reader.pos < end) {
411
+ const tag = reader.uint32();
412
+ switch (tag >>> 3) {
413
+ case 1:
414
+ message.rateLimits.push(RateLimit.decode(reader, reader.uint32()));
415
+ break;
416
+ default:
417
+ reader.skipType(tag & 7);
418
+ break;
419
+ }
420
+ }
421
+ return message;
422
+ },
423
+ fromPartial(object) {
424
+ const message = createBaseQueryRateLimitsByChainIDResponse();
425
+ message.rateLimits = object.rateLimits?.map(e => RateLimit.fromPartial(e)) || [];
426
+ return message;
427
+ },
428
+ fromAmino(object) {
429
+ const message = createBaseQueryRateLimitsByChainIDResponse();
430
+ message.rateLimits = object.rate_limits?.map(e => RateLimit.fromAmino(e)) || [];
431
+ return message;
432
+ },
433
+ toAmino(message) {
434
+ const obj = {};
435
+ if (message.rateLimits) {
436
+ obj.rate_limits = message.rateLimits.map(e => e ? RateLimit.toAmino(e) : undefined);
437
+ }
438
+ else {
439
+ obj.rate_limits = message.rateLimits;
440
+ }
441
+ return obj;
442
+ },
443
+ fromAminoMsg(object) {
444
+ return QueryRateLimitsByChainIDResponse.fromAmino(object.value);
445
+ },
446
+ toAminoMsg(message) {
447
+ return {
448
+ type: "cosmos-sdk/QueryRateLimitsByChainIDResponse",
449
+ value: QueryRateLimitsByChainIDResponse.toAmino(message)
450
+ };
451
+ },
452
+ fromProtoMsg(message) {
453
+ return QueryRateLimitsByChainIDResponse.decode(message.value);
454
+ },
455
+ toProto(message) {
456
+ return QueryRateLimitsByChainIDResponse.encode(message).finish();
457
+ },
458
+ toProtoMsg(message) {
459
+ return {
460
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitsByChainIDResponse",
461
+ value: QueryRateLimitsByChainIDResponse.encode(message).finish()
462
+ };
463
+ }
464
+ };
465
+ function createBaseQueryRateLimitsByChannelOrClientIDRequest() {
466
+ return {
467
+ channelOrClientId: ""
468
+ };
469
+ }
470
+ /**
471
+ * Queries all the rate limits for a given channel or client ID
472
+ * @name QueryRateLimitsByChannelOrClientIDRequest
473
+ * @package ibc.applications.rate_limiting.v1
474
+ * @see proto type: ibc.applications.rate_limiting.v1.QueryRateLimitsByChannelOrClientIDRequest
475
+ */
476
+ export const QueryRateLimitsByChannelOrClientIDRequest = {
477
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitsByChannelOrClientIDRequest",
478
+ aminoType: "cosmos-sdk/QueryRateLimitsByChannelOrClientIDRequest",
479
+ encode(message, writer = BinaryWriter.create()) {
480
+ if (message.channelOrClientId !== "") {
481
+ writer.uint32(10).string(message.channelOrClientId);
482
+ }
483
+ return writer;
484
+ },
485
+ decode(input, length) {
486
+ const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
487
+ let end = length === undefined ? reader.len : reader.pos + length;
488
+ const message = createBaseQueryRateLimitsByChannelOrClientIDRequest();
489
+ while (reader.pos < end) {
490
+ const tag = reader.uint32();
491
+ switch (tag >>> 3) {
492
+ case 1:
493
+ message.channelOrClientId = reader.string();
494
+ break;
495
+ default:
496
+ reader.skipType(tag & 7);
497
+ break;
498
+ }
499
+ }
500
+ return message;
501
+ },
502
+ fromPartial(object) {
503
+ const message = createBaseQueryRateLimitsByChannelOrClientIDRequest();
504
+ message.channelOrClientId = object.channelOrClientId ?? "";
505
+ return message;
506
+ },
507
+ fromAmino(object) {
508
+ const message = createBaseQueryRateLimitsByChannelOrClientIDRequest();
509
+ if (object.channel_or_client_id !== undefined && object.channel_or_client_id !== null) {
510
+ message.channelOrClientId = object.channel_or_client_id;
511
+ }
512
+ return message;
513
+ },
514
+ toAmino(message) {
515
+ const obj = {};
516
+ obj.channel_or_client_id = message.channelOrClientId === "" ? undefined : message.channelOrClientId;
517
+ return obj;
518
+ },
519
+ fromAminoMsg(object) {
520
+ return QueryRateLimitsByChannelOrClientIDRequest.fromAmino(object.value);
521
+ },
522
+ toAminoMsg(message) {
523
+ return {
524
+ type: "cosmos-sdk/QueryRateLimitsByChannelOrClientIDRequest",
525
+ value: QueryRateLimitsByChannelOrClientIDRequest.toAmino(message)
526
+ };
527
+ },
528
+ fromProtoMsg(message) {
529
+ return QueryRateLimitsByChannelOrClientIDRequest.decode(message.value);
530
+ },
531
+ toProto(message) {
532
+ return QueryRateLimitsByChannelOrClientIDRequest.encode(message).finish();
533
+ },
534
+ toProtoMsg(message) {
535
+ return {
536
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitsByChannelOrClientIDRequest",
537
+ value: QueryRateLimitsByChannelOrClientIDRequest.encode(message).finish()
538
+ };
539
+ }
540
+ };
541
+ function createBaseQueryRateLimitsByChannelOrClientIDResponse() {
542
+ return {
543
+ rateLimits: []
544
+ };
545
+ }
546
+ /**
547
+ * QueryRateLimitsByChannelOrClientIDResponse returns all rate-limits by a channel or client id.
548
+ * @name QueryRateLimitsByChannelOrClientIDResponse
549
+ * @package ibc.applications.rate_limiting.v1
550
+ * @see proto type: ibc.applications.rate_limiting.v1.QueryRateLimitsByChannelOrClientIDResponse
551
+ */
552
+ export const QueryRateLimitsByChannelOrClientIDResponse = {
553
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitsByChannelOrClientIDResponse",
554
+ aminoType: "cosmos-sdk/QueryRateLimitsByChannelOrClientIDResponse",
555
+ encode(message, writer = BinaryWriter.create()) {
556
+ for (const v of message.rateLimits) {
557
+ RateLimit.encode(v, writer.uint32(10).fork()).ldelim();
558
+ }
559
+ return writer;
560
+ },
561
+ decode(input, length) {
562
+ const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
563
+ let end = length === undefined ? reader.len : reader.pos + length;
564
+ const message = createBaseQueryRateLimitsByChannelOrClientIDResponse();
565
+ while (reader.pos < end) {
566
+ const tag = reader.uint32();
567
+ switch (tag >>> 3) {
568
+ case 1:
569
+ message.rateLimits.push(RateLimit.decode(reader, reader.uint32()));
570
+ break;
571
+ default:
572
+ reader.skipType(tag & 7);
573
+ break;
574
+ }
575
+ }
576
+ return message;
577
+ },
578
+ fromPartial(object) {
579
+ const message = createBaseQueryRateLimitsByChannelOrClientIDResponse();
580
+ message.rateLimits = object.rateLimits?.map(e => RateLimit.fromPartial(e)) || [];
581
+ return message;
582
+ },
583
+ fromAmino(object) {
584
+ const message = createBaseQueryRateLimitsByChannelOrClientIDResponse();
585
+ message.rateLimits = object.rate_limits?.map(e => RateLimit.fromAmino(e)) || [];
586
+ return message;
587
+ },
588
+ toAmino(message) {
589
+ const obj = {};
590
+ if (message.rateLimits) {
591
+ obj.rate_limits = message.rateLimits.map(e => e ? RateLimit.toAmino(e) : undefined);
592
+ }
593
+ else {
594
+ obj.rate_limits = message.rateLimits;
595
+ }
596
+ return obj;
597
+ },
598
+ fromAminoMsg(object) {
599
+ return QueryRateLimitsByChannelOrClientIDResponse.fromAmino(object.value);
600
+ },
601
+ toAminoMsg(message) {
602
+ return {
603
+ type: "cosmos-sdk/QueryRateLimitsByChannelOrClientIDResponse",
604
+ value: QueryRateLimitsByChannelOrClientIDResponse.toAmino(message)
605
+ };
606
+ },
607
+ fromProtoMsg(message) {
608
+ return QueryRateLimitsByChannelOrClientIDResponse.decode(message.value);
609
+ },
610
+ toProto(message) {
611
+ return QueryRateLimitsByChannelOrClientIDResponse.encode(message).finish();
612
+ },
613
+ toProtoMsg(message) {
614
+ return {
615
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitsByChannelOrClientIDResponse",
616
+ value: QueryRateLimitsByChannelOrClientIDResponse.encode(message).finish()
617
+ };
618
+ }
619
+ };
620
+ function createBaseQueryAllBlacklistedDenomsRequest() {
621
+ return {};
622
+ }
623
+ /**
624
+ * Queries all blacklisted denoms
625
+ * @name QueryAllBlacklistedDenomsRequest
626
+ * @package ibc.applications.rate_limiting.v1
627
+ * @see proto type: ibc.applications.rate_limiting.v1.QueryAllBlacklistedDenomsRequest
628
+ */
629
+ export const QueryAllBlacklistedDenomsRequest = {
630
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllBlacklistedDenomsRequest",
631
+ aminoType: "cosmos-sdk/QueryAllBlacklistedDenomsRequest",
632
+ encode(_, writer = BinaryWriter.create()) {
633
+ return writer;
634
+ },
635
+ decode(input, length) {
636
+ const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
637
+ let end = length === undefined ? reader.len : reader.pos + length;
638
+ const message = createBaseQueryAllBlacklistedDenomsRequest();
639
+ while (reader.pos < end) {
640
+ const tag = reader.uint32();
641
+ switch (tag >>> 3) {
642
+ default:
643
+ reader.skipType(tag & 7);
644
+ break;
645
+ }
646
+ }
647
+ return message;
648
+ },
649
+ fromPartial(_) {
650
+ const message = createBaseQueryAllBlacklistedDenomsRequest();
651
+ return message;
652
+ },
653
+ fromAmino(_) {
654
+ const message = createBaseQueryAllBlacklistedDenomsRequest();
655
+ return message;
656
+ },
657
+ toAmino(_) {
658
+ const obj = {};
659
+ return obj;
660
+ },
661
+ fromAminoMsg(object) {
662
+ return QueryAllBlacklistedDenomsRequest.fromAmino(object.value);
663
+ },
664
+ toAminoMsg(message) {
665
+ return {
666
+ type: "cosmos-sdk/QueryAllBlacklistedDenomsRequest",
667
+ value: QueryAllBlacklistedDenomsRequest.toAmino(message)
668
+ };
669
+ },
670
+ fromProtoMsg(message) {
671
+ return QueryAllBlacklistedDenomsRequest.decode(message.value);
672
+ },
673
+ toProto(message) {
674
+ return QueryAllBlacklistedDenomsRequest.encode(message).finish();
675
+ },
676
+ toProtoMsg(message) {
677
+ return {
678
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllBlacklistedDenomsRequest",
679
+ value: QueryAllBlacklistedDenomsRequest.encode(message).finish()
680
+ };
681
+ }
682
+ };
683
+ function createBaseQueryAllBlacklistedDenomsResponse() {
684
+ return {
685
+ denoms: []
686
+ };
687
+ }
688
+ /**
689
+ * QueryAllBlacklistedDenomsResponse returns all the blacklisted denosm.
690
+ * @name QueryAllBlacklistedDenomsResponse
691
+ * @package ibc.applications.rate_limiting.v1
692
+ * @see proto type: ibc.applications.rate_limiting.v1.QueryAllBlacklistedDenomsResponse
693
+ */
694
+ export const QueryAllBlacklistedDenomsResponse = {
695
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllBlacklistedDenomsResponse",
696
+ aminoType: "cosmos-sdk/QueryAllBlacklistedDenomsResponse",
697
+ encode(message, writer = BinaryWriter.create()) {
698
+ for (const v of message.denoms) {
699
+ writer.uint32(10).string(v);
700
+ }
701
+ return writer;
702
+ },
703
+ decode(input, length) {
704
+ const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
705
+ let end = length === undefined ? reader.len : reader.pos + length;
706
+ const message = createBaseQueryAllBlacklistedDenomsResponse();
707
+ while (reader.pos < end) {
708
+ const tag = reader.uint32();
709
+ switch (tag >>> 3) {
710
+ case 1:
711
+ message.denoms.push(reader.string());
712
+ break;
713
+ default:
714
+ reader.skipType(tag & 7);
715
+ break;
716
+ }
717
+ }
718
+ return message;
719
+ },
720
+ fromPartial(object) {
721
+ const message = createBaseQueryAllBlacklistedDenomsResponse();
722
+ message.denoms = object.denoms?.map(e => e) || [];
723
+ return message;
724
+ },
725
+ fromAmino(object) {
726
+ const message = createBaseQueryAllBlacklistedDenomsResponse();
727
+ message.denoms = object.denoms?.map(e => e) || [];
728
+ return message;
729
+ },
730
+ toAmino(message) {
731
+ const obj = {};
732
+ if (message.denoms) {
733
+ obj.denoms = message.denoms.map(e => e);
734
+ }
735
+ else {
736
+ obj.denoms = message.denoms;
737
+ }
738
+ return obj;
739
+ },
740
+ fromAminoMsg(object) {
741
+ return QueryAllBlacklistedDenomsResponse.fromAmino(object.value);
742
+ },
743
+ toAminoMsg(message) {
744
+ return {
745
+ type: "cosmos-sdk/QueryAllBlacklistedDenomsResponse",
746
+ value: QueryAllBlacklistedDenomsResponse.toAmino(message)
747
+ };
748
+ },
749
+ fromProtoMsg(message) {
750
+ return QueryAllBlacklistedDenomsResponse.decode(message.value);
751
+ },
752
+ toProto(message) {
753
+ return QueryAllBlacklistedDenomsResponse.encode(message).finish();
754
+ },
755
+ toProtoMsg(message) {
756
+ return {
757
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllBlacklistedDenomsResponse",
758
+ value: QueryAllBlacklistedDenomsResponse.encode(message).finish()
759
+ };
760
+ }
761
+ };
762
+ function createBaseQueryAllWhitelistedAddressesRequest() {
763
+ return {};
764
+ }
765
+ /**
766
+ * Queries all whitelisted address pairs
767
+ * @name QueryAllWhitelistedAddressesRequest
768
+ * @package ibc.applications.rate_limiting.v1
769
+ * @see proto type: ibc.applications.rate_limiting.v1.QueryAllWhitelistedAddressesRequest
770
+ */
771
+ export const QueryAllWhitelistedAddressesRequest = {
772
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllWhitelistedAddressesRequest",
773
+ aminoType: "cosmos-sdk/QueryAllWhitelistedAddressesRequest",
774
+ encode(_, writer = BinaryWriter.create()) {
775
+ return writer;
776
+ },
777
+ decode(input, length) {
778
+ const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
779
+ let end = length === undefined ? reader.len : reader.pos + length;
780
+ const message = createBaseQueryAllWhitelistedAddressesRequest();
781
+ while (reader.pos < end) {
782
+ const tag = reader.uint32();
783
+ switch (tag >>> 3) {
784
+ default:
785
+ reader.skipType(tag & 7);
786
+ break;
787
+ }
788
+ }
789
+ return message;
790
+ },
791
+ fromPartial(_) {
792
+ const message = createBaseQueryAllWhitelistedAddressesRequest();
793
+ return message;
794
+ },
795
+ fromAmino(_) {
796
+ const message = createBaseQueryAllWhitelistedAddressesRequest();
797
+ return message;
798
+ },
799
+ toAmino(_) {
800
+ const obj = {};
801
+ return obj;
802
+ },
803
+ fromAminoMsg(object) {
804
+ return QueryAllWhitelistedAddressesRequest.fromAmino(object.value);
805
+ },
806
+ toAminoMsg(message) {
807
+ return {
808
+ type: "cosmos-sdk/QueryAllWhitelistedAddressesRequest",
809
+ value: QueryAllWhitelistedAddressesRequest.toAmino(message)
810
+ };
811
+ },
812
+ fromProtoMsg(message) {
813
+ return QueryAllWhitelistedAddressesRequest.decode(message.value);
814
+ },
815
+ toProto(message) {
816
+ return QueryAllWhitelistedAddressesRequest.encode(message).finish();
817
+ },
818
+ toProtoMsg(message) {
819
+ return {
820
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllWhitelistedAddressesRequest",
821
+ value: QueryAllWhitelistedAddressesRequest.encode(message).finish()
822
+ };
823
+ }
824
+ };
825
+ function createBaseQueryAllWhitelistedAddressesResponse() {
826
+ return {
827
+ addressPairs: []
828
+ };
829
+ }
830
+ /**
831
+ * QueryAllWhitelistedAddressesResponse returns all whitelisted pairs.
832
+ * @name QueryAllWhitelistedAddressesResponse
833
+ * @package ibc.applications.rate_limiting.v1
834
+ * @see proto type: ibc.applications.rate_limiting.v1.QueryAllWhitelistedAddressesResponse
835
+ */
836
+ export const QueryAllWhitelistedAddressesResponse = {
837
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllWhitelistedAddressesResponse",
838
+ aminoType: "cosmos-sdk/QueryAllWhitelistedAddressesResponse",
839
+ encode(message, writer = BinaryWriter.create()) {
840
+ for (const v of message.addressPairs) {
841
+ WhitelistedAddressPair.encode(v, writer.uint32(10).fork()).ldelim();
842
+ }
843
+ return writer;
844
+ },
845
+ decode(input, length) {
846
+ const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
847
+ let end = length === undefined ? reader.len : reader.pos + length;
848
+ const message = createBaseQueryAllWhitelistedAddressesResponse();
849
+ while (reader.pos < end) {
850
+ const tag = reader.uint32();
851
+ switch (tag >>> 3) {
852
+ case 1:
853
+ message.addressPairs.push(WhitelistedAddressPair.decode(reader, reader.uint32()));
854
+ break;
855
+ default:
856
+ reader.skipType(tag & 7);
857
+ break;
858
+ }
859
+ }
860
+ return message;
861
+ },
862
+ fromPartial(object) {
863
+ const message = createBaseQueryAllWhitelistedAddressesResponse();
864
+ message.addressPairs = object.addressPairs?.map(e => WhitelistedAddressPair.fromPartial(e)) || [];
865
+ return message;
866
+ },
867
+ fromAmino(object) {
868
+ const message = createBaseQueryAllWhitelistedAddressesResponse();
869
+ message.addressPairs = object.address_pairs?.map(e => WhitelistedAddressPair.fromAmino(e)) || [];
870
+ return message;
871
+ },
872
+ toAmino(message) {
873
+ const obj = {};
874
+ if (message.addressPairs) {
875
+ obj.address_pairs = message.addressPairs.map(e => e ? WhitelistedAddressPair.toAmino(e) : undefined);
876
+ }
877
+ else {
878
+ obj.address_pairs = message.addressPairs;
879
+ }
880
+ return obj;
881
+ },
882
+ fromAminoMsg(object) {
883
+ return QueryAllWhitelistedAddressesResponse.fromAmino(object.value);
884
+ },
885
+ toAminoMsg(message) {
886
+ return {
887
+ type: "cosmos-sdk/QueryAllWhitelistedAddressesResponse",
888
+ value: QueryAllWhitelistedAddressesResponse.toAmino(message)
889
+ };
890
+ },
891
+ fromProtoMsg(message) {
892
+ return QueryAllWhitelistedAddressesResponse.decode(message.value);
893
+ },
894
+ toProto(message) {
895
+ return QueryAllWhitelistedAddressesResponse.encode(message).finish();
896
+ },
897
+ toProtoMsg(message) {
898
+ return {
899
+ typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllWhitelistedAddressesResponse",
900
+ value: QueryAllWhitelistedAddressesResponse.encode(message).finish()
901
+ };
902
+ }
903
+ };