@burnt-labs/xion-types 21.0.0-alpha.4 → 25.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (572) hide show
  1. package/jest.config.js +18 -0
  2. package/package.json +47 -33
  3. package/scripts/aminos.ts +29 -0
  4. package/scripts/codegen.ts +94 -0
  5. package/scripts/download-protos.ts +248 -0
  6. package/telescope.config.json +84 -0
  7. package/tsconfig.esm.json +9 -0
  8. package/tsconfig.json +18 -0
  9. package/types/abstractaccount/bundle.ts +35 -0
  10. package/types/abstractaccount/client.ts +48 -0
  11. package/types/abstractaccount/lcd.ts +130 -0
  12. package/types/abstractaccount/rpc.query.ts +93 -0
  13. package/types/abstractaccount/rpc.tx.ts +74 -0
  14. package/types/abstractaccount/v1/account.ts +250 -0
  15. package/types/abstractaccount/v1/events.ts +135 -0
  16. package/types/abstractaccount/v1/genesis.ts +106 -0
  17. package/types/abstractaccount/v1/params.ts +192 -0
  18. package/types/abstractaccount/v1/query.lcd.ts +19 -0
  19. package/types/abstractaccount/v1/query.rpc.Query.ts +31 -0
  20. package/types/abstractaccount/v1/query.ts +160 -0
  21. package/types/abstractaccount/v1/tx.amino.ts +14 -0
  22. package/types/abstractaccount/v1/tx.registry.ts +53 -0
  23. package/types/abstractaccount/v1/tx.rpc.msg.ts +29 -0
  24. package/types/abstractaccount/v1/tx.ts +454 -0
  25. package/types/amino/amino.ts +1 -9
  26. package/types/amino/bundle.ts +5 -0
  27. package/types/binary.ts +535 -0
  28. package/types/cosmos/app/runtime/v1alpha1/module.ts +313 -196
  29. package/types/cosmos/app/v1alpha1/config.ts +284 -183
  30. package/types/cosmos/app/v1alpha1/module.ts +296 -169
  31. package/types/cosmos/app/v1alpha1/query.rpc.Query.ts +31 -0
  32. package/types/cosmos/app/v1alpha1/query.ts +123 -212
  33. package/types/cosmos/auth/module/v1/module.ts +199 -132
  34. package/types/cosmos/auth/v1beta1/auth.ts +382 -340
  35. package/types/cosmos/auth/v1beta1/genesis.ts +86 -83
  36. package/types/cosmos/auth/v1beta1/query.lcd.ts +91 -0
  37. package/types/cosmos/auth/v1beta1/query.rpc.Query.ts +137 -0
  38. package/types/cosmos/auth/v1beta1/query.ts +1388 -1235
  39. package/types/cosmos/auth/v1beta1/tx.amino.ts +9 -0
  40. package/types/cosmos/auth/v1beta1/tx.registry.ts +35 -0
  41. package/types/cosmos/auth/v1beta1/tx.rpc.msg.ts +24 -0
  42. package/types/cosmos/auth/v1beta1/tx.ts +141 -235
  43. package/types/cosmos/authz/module/v1/module.ts +54 -52
  44. package/types/cosmos/authz/v1beta1/authz.ts +440 -245
  45. package/types/cosmos/authz/v1beta1/event.ts +181 -139
  46. package/types/cosmos/authz/v1beta1/genesis.ts +69 -67
  47. package/types/cosmos/authz/v1beta1/query.lcd.ts +59 -0
  48. package/types/cosmos/authz/v1beta1/query.rpc.Query.ts +53 -0
  49. package/types/cosmos/authz/v1beta1/query.ts +494 -534
  50. package/types/cosmos/authz/v1beta1/tx.amino.ts +19 -0
  51. package/types/cosmos/authz/v1beta1/tx.registry.ts +71 -0
  52. package/types/cosmos/authz/v1beta1/tx.rpc.msg.ts +49 -0
  53. package/types/cosmos/authz/v1beta1/tx.ts +448 -480
  54. package/types/cosmos/autocli/v1/options.ts +890 -589
  55. package/types/cosmos/autocli/v1/query.rpc.Query.ts +32 -0
  56. package/types/cosmos/autocli/v1/query.ts +227 -308
  57. package/types/cosmos/bank/module/v1/module.ts +101 -89
  58. package/types/cosmos/bank/v1beta1/authz.ts +90 -80
  59. package/types/cosmos/bank/v1beta1/bank.ts +641 -409
  60. package/types/cosmos/bank/v1beta1/genesis.ts +209 -160
  61. package/types/cosmos/bank/v1beta1/query.lcd.ts +207 -0
  62. package/types/cosmos/bank/v1beta1/query.rpc.Query.ts +212 -0
  63. package/types/cosmos/bank/v1beta1/query.ts +2057 -1795
  64. package/types/cosmos/bank/v1beta1/tx.amino.ts +24 -0
  65. package/types/cosmos/bank/v1beta1/tx.registry.ts +89 -0
  66. package/types/cosmos/bank/v1beta1/tx.rpc.msg.ts +53 -0
  67. package/types/cosmos/bank/v1beta1/tx.ts +559 -558
  68. package/types/cosmos/base/abci/v1beta1/abci.ts +1170 -841
  69. package/types/cosmos/base/node/v1beta1/query.lcd.ts +25 -0
  70. package/types/cosmos/base/node/v1beta1/query.rpc.Service.ts +42 -0
  71. package/types/cosmos/base/node/v1beta1/query.ts +311 -431
  72. package/types/cosmos/base/query/v1beta1/pagination.ts +242 -187
  73. package/types/cosmos/base/reflection/v1beta1/reflection.ts +261 -333
  74. package/types/cosmos/base/reflection/v2alpha1/reflection.ts +1866 -1385
  75. package/types/cosmos/base/tendermint/v1beta1/query.lcd.ts +87 -0
  76. package/types/cosmos/base/tendermint/v1beta1/query.rpc.Service.ts +103 -0
  77. package/types/cosmos/base/tendermint/v1beta1/query.ts +1574 -1444
  78. package/types/cosmos/base/tendermint/v1beta1/types.ts +308 -338
  79. package/types/cosmos/base/v1beta1/coin.ts +314 -191
  80. package/types/cosmos/benchmark/module/v1/module.ts +384 -0
  81. package/types/cosmos/benchmark/v1/benchmark.ts +186 -0
  82. package/types/cosmos/benchmark/v1/tx.amino.ts +9 -0
  83. package/types/cosmos/benchmark/v1/tx.registry.ts +35 -0
  84. package/types/cosmos/benchmark/v1/tx.rpc.msg.ts +21 -0
  85. package/types/cosmos/benchmark/v1/tx.ts +224 -0
  86. package/types/cosmos/bundle.ts +807 -0
  87. package/types/cosmos/circuit/module/v1/module.ts +70 -65
  88. package/types/cosmos/circuit/v1/query.lcd.ts +40 -0
  89. package/types/cosmos/circuit/v1/query.rpc.Query.ts +55 -0
  90. package/types/cosmos/circuit/v1/query.ts +395 -425
  91. package/types/cosmos/circuit/v1/tx.amino.ts +19 -0
  92. package/types/cosmos/circuit/v1/tx.registry.ts +71 -0
  93. package/types/cosmos/circuit/v1/tx.rpc.msg.ts +43 -0
  94. package/types/cosmos/circuit/v1/tx.ts +457 -489
  95. package/types/cosmos/circuit/v1/types.ts +253 -187
  96. package/types/cosmos/client.ts +100 -0
  97. package/types/cosmos/consensus/module/v1/module.ts +70 -65
  98. package/types/cosmos/consensus/v1/query.lcd.ts +19 -0
  99. package/types/cosmos/consensus/v1/query.rpc.Query.ts +31 -0
  100. package/types/cosmos/consensus/v1/query.ts +124 -213
  101. package/types/cosmos/consensus/v1/tx.amino.ts +9 -0
  102. package/types/cosmos/consensus/v1/tx.registry.ts +35 -0
  103. package/types/cosmos/consensus/v1/tx.rpc.msg.ts +24 -0
  104. package/types/cosmos/consensus/v1/tx.ts +169 -269
  105. package/types/cosmos/counter/module/v1/module.ts +100 -0
  106. package/types/cosmos/counter/v1/query.rpc.Query.ts +31 -0
  107. package/types/cosmos/counter/v1/query.ts +171 -0
  108. package/types/cosmos/counter/v1/tx.amino.ts +9 -0
  109. package/types/cosmos/counter/v1/tx.registry.ts +35 -0
  110. package/types/cosmos/counter/v1/tx.rpc.msg.ts +21 -0
  111. package/types/cosmos/counter/v1/tx.ts +217 -0
  112. package/types/cosmos/crisis/module/v1/module.ts +81 -76
  113. package/types/cosmos/crisis/v1beta1/genesis.ts +73 -69
  114. package/types/cosmos/crisis/v1beta1/tx.amino.ts +14 -0
  115. package/types/cosmos/crisis/v1beta1/tx.registry.ts +53 -0
  116. package/types/cosmos/crisis/v1beta1/tx.rpc.msg.ts +32 -0
  117. package/types/cosmos/crisis/v1beta1/tx.ts +276 -343
  118. package/types/cosmos/crypto/bls12_381/keys.ts +207 -0
  119. package/types/cosmos/crypto/ed25519/keys.ts +145 -121
  120. package/types/cosmos/crypto/hd/v1/hd.ts +116 -106
  121. package/types/cosmos/crypto/keyring/v1/record.ts +368 -255
  122. package/types/cosmos/crypto/multisig/keys.ts +84 -79
  123. package/types/cosmos/crypto/multisig/v1beta1/multisig.ts +154 -135
  124. package/types/cosmos/crypto/secp256k1/keys.ts +141 -121
  125. package/types/cosmos/crypto/secp256r1/keys.ts +138 -123
  126. package/types/cosmos/distribution/module/v1/module.ts +78 -76
  127. package/types/cosmos/distribution/v1beta1/distribution.ts +1042 -634
  128. package/types/cosmos/distribution/v1beta1/genesis.ts +807 -591
  129. package/types/cosmos/distribution/v1beta1/query.lcd.ts +89 -0
  130. package/types/cosmos/distribution/v1beta1/query.rpc.Query.ts +137 -0
  131. package/types/cosmos/distribution/v1beta1/query.ts +1484 -1294
  132. package/types/cosmos/distribution/v1beta1/tx.amino.ts +39 -0
  133. package/types/cosmos/distribution/v1beta1/tx.registry.ts +143 -0
  134. package/types/cosmos/distribution/v1beta1/tx.rpc.msg.ts +96 -0
  135. package/types/cosmos/distribution/v1beta1/tx.ts +969 -927
  136. package/types/cosmos/epochs/module/v1/module.ts +77 -0
  137. package/types/cosmos/epochs/v1beta1/events.ts +205 -0
  138. package/types/cosmos/epochs/v1beta1/genesis.ts +384 -0
  139. package/types/cosmos/epochs/v1beta1/query.lcd.ts +31 -0
  140. package/types/cosmos/epochs/v1beta1/query.rpc.Query.ts +42 -0
  141. package/types/cosmos/epochs/v1beta1/query.ts +390 -0
  142. package/types/cosmos/evidence/module/v1/module.ts +54 -52
  143. package/types/cosmos/evidence/v1beta1/evidence.ts +114 -130
  144. package/types/cosmos/evidence/v1beta1/genesis.ts +72 -63
  145. package/types/cosmos/evidence/v1beta1/query.lcd.ts +40 -0
  146. package/types/cosmos/evidence/v1beta1/query.rpc.Query.ts +44 -0
  147. package/types/cosmos/evidence/v1beta1/query.ts +310 -378
  148. package/types/cosmos/evidence/v1beta1/tx.amino.ts +9 -0
  149. package/types/cosmos/evidence/v1beta1/tx.registry.ts +35 -0
  150. package/types/cosmos/evidence/v1beta1/tx.rpc.msg.ts +24 -0
  151. package/types/cosmos/evidence/v1beta1/tx.ts +170 -261
  152. package/types/cosmos/feegrant/module/v1/module.ts +54 -52
  153. package/types/cosmos/feegrant/v1beta1/feegrant.ts +501 -302
  154. package/types/cosmos/feegrant/v1beta1/genesis.ts +69 -67
  155. package/types/cosmos/feegrant/v1beta1/query.lcd.ts +44 -0
  156. package/types/cosmos/feegrant/v1beta1/query.rpc.Query.ts +53 -0
  157. package/types/cosmos/feegrant/v1beta1/query.ts +462 -504
  158. package/types/cosmos/feegrant/v1beta1/tx.amino.ts +19 -0
  159. package/types/cosmos/feegrant/v1beta1/tx.registry.ts +71 -0
  160. package/types/cosmos/feegrant/v1beta1/tx.rpc.msg.ts +43 -0
  161. package/types/cosmos/feegrant/v1beta1/tx.ts +482 -437
  162. package/types/cosmos/genutil/module/v1/module.ts +54 -52
  163. package/types/cosmos/genutil/v1beta1/genesis.ts +71 -86
  164. package/types/cosmos/gov/module/v1/module.ts +85 -81
  165. package/types/cosmos/gov/v1/genesis.ts +173 -177
  166. package/types/cosmos/gov/v1/gov.ts +1097 -864
  167. package/types/cosmos/gov/v1/query.lcd.ts +95 -0
  168. package/types/cosmos/gov/v1/query.rpc.Query.ts +119 -0
  169. package/types/cosmos/gov/v1/query.ts +1384 -1205
  170. package/types/cosmos/gov/v1/tx.amino.ts +39 -0
  171. package/types/cosmos/gov/v1/tx.registry.ts +143 -0
  172. package/types/cosmos/gov/v1/tx.rpc.msg.ts +75 -0
  173. package/types/cosmos/gov/v1/tx.ts +1351 -1035
  174. package/types/cosmos/gov/v1beta1/genesis.ts +144 -145
  175. package/types/cosmos/gov/v1beta1/gov.ts +1135 -649
  176. package/types/cosmos/gov/v1beta1/query.lcd.ts +89 -0
  177. package/types/cosmos/gov/v1beta1/query.rpc.Query.ts +108 -0
  178. package/types/cosmos/gov/v1beta1/query.ts +1247 -1092
  179. package/types/cosmos/gov/v1beta1/tx.amino.ts +24 -0
  180. package/types/cosmos/gov/v1beta1/tx.registry.ts +89 -0
  181. package/types/cosmos/gov/v1beta1/tx.rpc.msg.ts +45 -0
  182. package/types/cosmos/gov/v1beta1/tx.ts +835 -586
  183. package/types/cosmos/group/module/v1/module.ts +88 -87
  184. package/types/cosmos/group/v1/events.ts +869 -456
  185. package/types/cosmos/group/v1/genesis.ts +164 -157
  186. package/types/cosmos/group/v1/query.lcd.ts +158 -0
  187. package/types/cosmos/group/v1/query.rpc.Query.ts +182 -0
  188. package/types/cosmos/group/v1/query.ts +2138 -1870
  189. package/types/cosmos/group/v1/tx.amino.ts +74 -0
  190. package/types/cosmos/group/v1/tx.registry.ts +269 -0
  191. package/types/cosmos/group/v1/tx.rpc.msg.ts +125 -0
  192. package/types/cosmos/group/v1/tx.ts +2229 -1888
  193. package/types/cosmos/group/v1/types.ts +1348 -903
  194. package/types/cosmos/ics23/v1/proofs.ts +1341 -859
  195. package/types/cosmos/lcd.ts +125 -0
  196. package/types/cosmos/mint/module/v1/module.ts +78 -76
  197. package/types/cosmos/mint/v1beta1/genesis.ts +84 -85
  198. package/types/cosmos/mint/v1beta1/mint.ts +212 -172
  199. package/types/cosmos/mint/v1beta1/query.lcd.ts +31 -0
  200. package/types/cosmos/mint/v1beta1/query.rpc.Query.ts +53 -0
  201. package/types/cosmos/mint/v1beta1/query.ts +371 -416
  202. package/types/cosmos/mint/v1beta1/tx.amino.ts +9 -0
  203. package/types/cosmos/mint/v1beta1/tx.registry.ts +35 -0
  204. package/types/cosmos/mint/v1beta1/tx.rpc.msg.ts +24 -0
  205. package/types/cosmos/mint/v1beta1/tx.ts +141 -235
  206. package/types/cosmos/msg/textual/v1/textual.ts +1 -9
  207. package/types/cosmos/msg/v1/msg.ts +1 -9
  208. package/types/cosmos/nft/module/v1/module.ts +54 -52
  209. package/types/cosmos/nft/v1beta1/event.ts +281 -198
  210. package/types/cosmos/nft/v1beta1/genesis.ts +165 -119
  211. package/types/cosmos/nft/v1beta1/nft.ts +250 -194
  212. package/types/cosmos/nft/v1beta1/query.lcd.ts +77 -0
  213. package/types/cosmos/nft/v1beta1/query.rpc.Query.ts +102 -0
  214. package/types/cosmos/nft/v1beta1/query.ts +1035 -884
  215. package/types/cosmos/nft/v1beta1/tx.amino.ts +9 -0
  216. package/types/cosmos/nft/v1beta1/tx.registry.ts +35 -0
  217. package/types/cosmos/nft/v1beta1/tx.rpc.msg.ts +21 -0
  218. package/types/cosmos/nft/v1beta1/tx.ts +153 -236
  219. package/types/cosmos/params/module/v1/module.ts +54 -52
  220. package/types/cosmos/params/v1beta1/params.ts +172 -137
  221. package/types/cosmos/params/v1beta1/query.lcd.ts +35 -0
  222. package/types/cosmos/params/v1beta1/query.rpc.Query.ts +45 -0
  223. package/types/cosmos/params/v1beta1/query.ts +350 -374
  224. package/types/cosmos/protocolpool/module/v1/module.ts +100 -0
  225. package/types/cosmos/protocolpool/v1/genesis.ts +126 -0
  226. package/types/cosmos/protocolpool/v1/query.lcd.ts +37 -0
  227. package/types/cosmos/protocolpool/v1/query.rpc.Query.ts +64 -0
  228. package/types/cosmos/protocolpool/v1/query.ts +761 -0
  229. package/types/cosmos/protocolpool/v1/tx.amino.ts +29 -0
  230. package/types/cosmos/protocolpool/v1/tx.registry.ts +107 -0
  231. package/types/cosmos/protocolpool/v1/tx.rpc.msg.ts +69 -0
  232. package/types/cosmos/protocolpool/v1/tx.ts +1124 -0
  233. package/types/cosmos/protocolpool/v1/types.ts +268 -0
  234. package/types/cosmos/query/v1/query.ts +1 -9
  235. package/types/cosmos/reflection/v1/reflection.ts +122 -219
  236. package/types/cosmos/rpc.query.ts +90 -0
  237. package/types/cosmos/rpc.tx.ts +71 -0
  238. package/types/cosmos/slashing/module/v1/module.ts +70 -65
  239. package/types/cosmos/slashing/v1beta1/genesis.ts +345 -235
  240. package/types/cosmos/slashing/v1beta1/query.lcd.ts +40 -0
  241. package/types/cosmos/slashing/v1beta1/query.rpc.Query.ts +55 -0
  242. package/types/cosmos/slashing/v1beta1/query.ts +414 -434
  243. package/types/cosmos/slashing/v1beta1/slashing.ts +237 -275
  244. package/types/cosmos/slashing/v1beta1/tx.amino.ts +14 -0
  245. package/types/cosmos/slashing/v1beta1/tx.registry.ts +53 -0
  246. package/types/cosmos/slashing/v1beta1/tx.rpc.msg.ts +36 -0
  247. package/types/cosmos/slashing/v1beta1/tx.ts +254 -322
  248. package/types/cosmos/staking/module/v1/module.ts +107 -96
  249. package/types/cosmos/staking/v1beta1/authz.ts +180 -157
  250. package/types/cosmos/staking/v1beta1/genesis.ts +236 -219
  251. package/types/cosmos/staking/v1beta1/query.lcd.ts +174 -0
  252. package/types/cosmos/staking/v1beta1/query.rpc.Query.ts +217 -0
  253. package/types/cosmos/staking/v1beta1/query.ts +2155 -1880
  254. package/types/cosmos/staking/v1beta1/staking.ts +2058 -1380
  255. package/types/cosmos/staking/v1beta1/tx.amino.ts +39 -0
  256. package/types/cosmos/staking/v1beta1/tx.registry.ts +143 -0
  257. package/types/cosmos/staking/v1beta1/tx.rpc.msg.ts +84 -0
  258. package/types/cosmos/staking/v1beta1/tx.ts +1080 -1075
  259. package/types/cosmos/store/internal/kv/v1beta1/kv.ts +140 -131
  260. package/types/cosmos/store/snapshots/v1/snapshot.ts +555 -433
  261. package/types/cosmos/store/streaming/abci/grpc.ts +269 -351
  262. package/types/cosmos/store/v1beta1/commit_info.ts +249 -237
  263. package/types/cosmos/store/v1beta1/listening.ts +195 -190
  264. package/types/cosmos/tx/config/v1/config.ts +85 -78
  265. package/types/cosmos/tx/signing/v1beta1/signing.ts +420 -315
  266. package/types/cosmos/tx/v1beta1/service.lcd.ts +59 -0
  267. package/types/cosmos/tx/v1beta1/service.rpc.Service.ts +119 -0
  268. package/types/cosmos/tx/v1beta1/service.ts +1495 -1287
  269. package/types/cosmos/tx/v1beta1/tx.ts +1432 -877
  270. package/types/cosmos/upgrade/module/v1/module.ts +70 -65
  271. package/types/cosmos/upgrade/v1beta1/query.lcd.ts +54 -0
  272. package/types/cosmos/upgrade/v1beta1/query.rpc.Query.ts +82 -0
  273. package/types/cosmos/upgrade/v1beta1/query.ts +682 -685
  274. package/types/cosmos/upgrade/v1beta1/tx.amino.ts +14 -0
  275. package/types/cosmos/upgrade/v1beta1/tx.registry.ts +53 -0
  276. package/types/cosmos/upgrade/v1beta1/tx.rpc.msg.ts +32 -0
  277. package/types/cosmos/upgrade/v1beta1/tx.ts +248 -335
  278. package/types/cosmos/upgrade/v1beta1/upgrade.ts +412 -296
  279. package/types/cosmos/vesting/module/v1/module.ts +54 -52
  280. package/types/cosmos/vesting/v1beta1/tx.amino.ts +19 -0
  281. package/types/cosmos/vesting/v1beta1/tx.registry.ts +71 -0
  282. package/types/cosmos/vesting/v1beta1/tx.rpc.msg.ts +46 -0
  283. package/types/cosmos/vesting/v1beta1/tx.ts +454 -538
  284. package/types/cosmos/vesting/v1beta1/vesting.ts +516 -369
  285. package/types/cosmos_proto/bundle.ts +5 -0
  286. package/types/cosmos_proto/cosmos.ts +194 -138
  287. package/types/cosmwasm/bundle.ts +39 -0
  288. package/types/cosmwasm/client.ts +48 -0
  289. package/types/cosmwasm/lcd.ts +132 -0
  290. package/types/cosmwasm/rpc.query.ts +95 -0
  291. package/types/cosmwasm/rpc.tx.ts +76 -0
  292. package/types/cosmwasm/wasm/v1/authz.ts +999 -476
  293. package/types/cosmwasm/wasm/v1/genesis.ts +366 -313
  294. package/types/cosmwasm/wasm/v1/ibc.ts +297 -224
  295. package/types/cosmwasm/wasm/v1/proposal_legacy.ts +1738 -1159
  296. package/types/cosmwasm/wasm/v1/query.lcd.ts +154 -0
  297. package/types/cosmwasm/wasm/v1/query.rpc.Query.ts +181 -0
  298. package/types/cosmwasm/wasm/v1/query.ts +2251 -1896
  299. package/types/cosmwasm/wasm/v1/tx.amino.ts +89 -0
  300. package/types/cosmwasm/wasm/v1/tx.registry.ts +323 -0
  301. package/types/cosmwasm/wasm/v1/tx.rpc.msg.ts +197 -0
  302. package/types/cosmwasm/wasm/v1/tx.ts +2916 -2474
  303. package/types/cosmwasm/wasm/v1/types.ts +739 -508
  304. package/types/gogoproto/bundle.ts +5 -0
  305. package/types/gogoproto/gogo.ts +1 -9
  306. package/types/google/api/annotations.ts +1 -9
  307. package/types/google/api/apikeys/v2/apikeys.ts +1245 -0
  308. package/types/google/api/apikeys/v2/resources.ts +1268 -0
  309. package/types/google/api/auth.ts +1175 -0
  310. package/types/google/api/backend.ts +691 -0
  311. package/types/google/api/billing.ts +333 -0
  312. package/types/google/api/client.ts +3100 -0
  313. package/types/google/api/cloudquotas/v1/cloudquotas.ts +1196 -0
  314. package/types/google/api/cloudquotas/v1/resources.ts +2065 -0
  315. package/types/google/api/cloudquotas/v1beta/cloudquotas.ts +1196 -0
  316. package/types/google/api/cloudquotas/v1beta/quota_adjuster_settings.ts +509 -0
  317. package/types/google/api/cloudquotas/v1beta/resources.ts +2069 -0
  318. package/types/google/api/config_change.ts +385 -0
  319. package/types/google/api/consumer.ts +362 -0
  320. package/types/google/api/context.ts +418 -0
  321. package/types/google/api/control.ts +141 -0
  322. package/types/google/api/distribution.ts +1253 -0
  323. package/types/google/api/documentation.ts +738 -0
  324. package/types/google/api/endpoint.ts +245 -0
  325. package/types/google/api/error_reason.ts +816 -0
  326. package/types/google/api/expr/conformance/v1alpha1/conformance_service.ts +1293 -0
  327. package/types/google/api/expr/v1alpha1/checked.ts +2259 -0
  328. package/types/google/api/expr/v1alpha1/eval.ts +675 -0
  329. package/types/google/api/expr/v1alpha1/explain.ts +257 -0
  330. package/types/google/api/expr/v1alpha1/syntax.ts +2983 -0
  331. package/types/google/api/expr/v1alpha1/value.ts +771 -0
  332. package/types/google/api/expr/v1beta1/decl.ts +563 -0
  333. package/types/google/api/expr/v1beta1/eval.ts +758 -0
  334. package/types/google/api/expr/v1beta1/expr.ts +1750 -0
  335. package/types/google/api/expr/v1beta1/source.ts +446 -0
  336. package/types/google/api/expr/v1beta1/value.ts +771 -0
  337. package/types/google/api/field_behavior.ts +136 -0
  338. package/types/google/api/field_info.ts +319 -0
  339. package/types/google/api/http.ts +985 -380
  340. package/types/google/api/httpbody.ts +270 -0
  341. package/types/google/api/label.ts +174 -0
  342. package/types/google/api/launch_stage.ts +112 -0
  343. package/types/google/api/log.ts +201 -0
  344. package/types/google/api/logging.ts +355 -0
  345. package/types/google/api/metric.ts +1174 -0
  346. package/types/google/api/monitored_resource.ts +841 -0
  347. package/types/google/api/monitoring.ts +430 -0
  348. package/types/google/api/policy.ts +314 -0
  349. package/types/google/api/quota.ts +1040 -0
  350. package/types/google/api/resource.ts +769 -0
  351. package/types/google/api/routing.ts +1405 -0
  352. package/types/google/api/service.ts +790 -0
  353. package/types/google/api/servicecontrol/v1/check_error.ts +366 -0
  354. package/types/google/api/servicecontrol/v1/distribution.ts +773 -0
  355. package/types/google/api/servicecontrol/v1/http_request.ts +427 -0
  356. package/types/google/api/servicecontrol/v1/log_entry.ts +804 -0
  357. package/types/google/api/servicecontrol/v1/metric_value.ts +499 -0
  358. package/types/google/api/servicecontrol/v1/operation.ts +544 -0
  359. package/types/google/api/servicecontrol/v1/quota_controller.ts +1041 -0
  360. package/types/google/api/servicecontrol/v1/service_controller.ts +1164 -0
  361. package/types/google/api/servicecontrol/v2/service_controller.ts +949 -0
  362. package/types/google/api/servicemanagement/v1/resources.ts +1888 -0
  363. package/types/google/api/servicemanagement/v1/servicemanager.ts +2444 -0
  364. package/types/google/api/serviceusage/v1/resources.ts +629 -0
  365. package/types/google/api/serviceusage/v1/serviceusage.ts +1530 -0
  366. package/types/google/api/serviceusage/v1beta1/resources.ts +2972 -0
  367. package/types/google/api/serviceusage/v1beta1/serviceusage.ts +4567 -0
  368. package/types/google/api/source_info.ts +97 -0
  369. package/types/google/api/system_parameter.ts +461 -0
  370. package/types/google/api/usage.ts +404 -0
  371. package/types/google/api/visibility.ts +328 -0
  372. package/types/google/bundle.ts +115 -0
  373. package/types/google/logging/type/log_severity.ts +104 -0
  374. package/types/google/longrunning/operations.ts +1153 -0
  375. package/types/google/protobuf/any.ts +288 -118
  376. package/types/google/protobuf/api.ts +942 -0
  377. package/types/google/protobuf/descriptor.ts +5230 -3892
  378. package/types/google/protobuf/duration.ts +193 -95
  379. package/types/google/protobuf/empty.ts +93 -0
  380. package/types/google/protobuf/field_mask.ts +694 -0
  381. package/types/google/protobuf/source_context.ts +105 -0
  382. package/types/google/protobuf/struct.ts +584 -0
  383. package/types/google/protobuf/timestamp.ts +273 -115
  384. package/types/google/protobuf/type.ts +1279 -0
  385. package/types/google/protobuf/wrappers.ts +1002 -0
  386. package/types/google/rpc/code.ts +286 -0
  387. package/types/google/rpc/context/attribute_context.ts +2517 -0
  388. package/types/google/rpc/context/audit_context.ts +188 -0
  389. package/types/google/rpc/error_details.ts +2467 -0
  390. package/types/google/rpc/http.ts +424 -0
  391. package/types/google/rpc/status.ts +173 -0
  392. package/types/helpers.ts +259 -0
  393. package/types/ibc/applications/interchain_accounts/controller/v1/controller.ts +75 -68
  394. package/types/ibc/applications/interchain_accounts/controller/v1/query.lcd.ts +25 -0
  395. package/types/ibc/applications/interchain_accounts/controller/v1/query.rpc.Query.ts +42 -0
  396. package/types/ibc/applications/interchain_accounts/controller/v1/query.ts +258 -326
  397. package/types/ibc/applications/interchain_accounts/controller/v1/tx.amino.ts +19 -0
  398. package/types/ibc/applications/interchain_accounts/controller/v1/tx.registry.ts +71 -0
  399. package/types/ibc/applications/interchain_accounts/controller/v1/tx.rpc.msg.ts +37 -0
  400. package/types/ibc/applications/interchain_accounts/controller/v1/tx.ts +461 -511
  401. package/types/ibc/applications/interchain_accounts/genesis/v1/genesis.ts +451 -346
  402. package/types/ibc/applications/interchain_accounts/host/v1/host.ts +172 -146
  403. package/types/ibc/applications/interchain_accounts/host/v1/query.lcd.ts +19 -0
  404. package/types/ibc/applications/interchain_accounts/host/v1/query.rpc.Query.ts +31 -0
  405. package/types/ibc/applications/interchain_accounts/host/v1/query.ts +122 -211
  406. package/types/ibc/applications/interchain_accounts/host/v1/tx.amino.ts +14 -0
  407. package/types/ibc/applications/interchain_accounts/host/v1/tx.registry.ts +53 -0
  408. package/types/ibc/applications/interchain_accounts/host/v1/tx.rpc.msg.ts +29 -0
  409. package/types/ibc/applications/interchain_accounts/host/v1/tx.ts +300 -379
  410. package/types/ibc/applications/interchain_accounts/v1/account.ts +80 -80
  411. package/types/ibc/applications/interchain_accounts/v1/metadata.ts +130 -114
  412. package/types/ibc/applications/interchain_accounts/v1/packet.ts +151 -146
  413. package/types/ibc/applications/transfer/v1/authz.ts +197 -145
  414. package/types/ibc/applications/transfer/v1/denomtrace.ts +133 -0
  415. package/types/ibc/applications/transfer/v1/genesis.ts +107 -109
  416. package/types/ibc/applications/transfer/v1/packet.ts +186 -0
  417. package/types/ibc/applications/transfer/v1/query.lcd.ts +76 -0
  418. package/types/ibc/applications/transfer/v1/query.rpc.Query.ts +88 -0
  419. package/types/ibc/applications/transfer/v1/query.ts +900 -802
  420. package/types/ibc/applications/transfer/v1/token.ts +347 -0
  421. package/types/ibc/applications/transfer/v1/transfer.ts +90 -163
  422. package/types/ibc/applications/transfer/v1/tx.amino.ts +14 -0
  423. package/types/ibc/applications/transfer/v1/tx.registry.ts +53 -0
  424. package/types/ibc/applications/transfer/v1/tx.rpc.msg.ts +29 -0
  425. package/types/ibc/applications/transfer/v1/tx.ts +387 -407
  426. package/types/ibc/bundle.ts +265 -0
  427. package/types/ibc/client.ts +72 -0
  428. package/types/ibc/core/channel/v1/channel.ts +865 -739
  429. package/types/ibc/core/channel/v1/genesis.ts +222 -226
  430. package/types/ibc/core/channel/v1/query.lcd.ts +135 -0
  431. package/types/ibc/core/channel/v1/query.rpc.Query.ts +200 -0
  432. package/types/ibc/core/channel/v1/query.ts +2672 -2943
  433. package/types/ibc/core/channel/v1/tx.amino.ts +54 -0
  434. package/types/ibc/core/channel/v1/tx.registry.ts +197 -0
  435. package/types/ibc/core/channel/v1/tx.rpc.msg.ts +96 -0
  436. package/types/ibc/core/channel/v1/tx.ts +1593 -3915
  437. package/types/ibc/core/channel/v2/genesis.ts +433 -0
  438. package/types/ibc/core/channel/v2/packet.ts +640 -0
  439. package/types/ibc/core/channel/v2/query.lcd.ts +77 -0
  440. package/types/ibc/core/channel/v2/query.rpc.Query.ts +108 -0
  441. package/types/ibc/core/channel/v2/query.ts +2075 -0
  442. package/types/ibc/core/channel/v2/tx.amino.ts +24 -0
  443. package/types/ibc/core/channel/v2/tx.registry.ts +89 -0
  444. package/types/ibc/core/channel/v2/tx.rpc.msg.ts +45 -0
  445. package/types/ibc/core/channel/v2/tx.ts +1003 -0
  446. package/types/ibc/core/client/v1/client.ts +420 -510
  447. package/types/ibc/core/client/v1/genesis.ts +294 -247
  448. package/types/ibc/core/client/v1/query.lcd.ts +102 -0
  449. package/types/ibc/core/client/v1/query.rpc.Query.ts +149 -0
  450. package/types/ibc/core/client/v1/query.ts +1834 -1454
  451. package/types/ibc/core/client/v1/tx.amino.ts +44 -0
  452. package/types/ibc/core/client/v1/tx.registry.ts +161 -0
  453. package/types/ibc/core/client/v1/tx.rpc.msg.ts +77 -0
  454. package/types/ibc/core/client/v1/tx.ts +1248 -962
  455. package/types/ibc/core/client/v2/config.ts +115 -0
  456. package/types/ibc/core/client/v2/counterparty.ts +122 -0
  457. package/types/ibc/core/client/v2/genesis.ts +220 -0
  458. package/types/ibc/core/client/v2/query.lcd.ts +25 -0
  459. package/types/ibc/core/client/v2/query.rpc.Query.ts +42 -0
  460. package/types/ibc/core/client/v2/query.ts +402 -0
  461. package/types/ibc/core/client/v2/tx.amino.ts +14 -0
  462. package/types/ibc/core/client/v2/tx.registry.ts +53 -0
  463. package/types/ibc/core/client/v2/tx.rpc.msg.ts +29 -0
  464. package/types/ibc/core/client/v2/tx.ts +453 -0
  465. package/types/ibc/core/commitment/v1/commitment.ts +209 -217
  466. package/types/ibc/core/commitment/v2/commitment.ts +193 -0
  467. package/types/ibc/core/connection/v1/connection.ts +661 -418
  468. package/types/ibc/core/connection/v1/genesis.ts +103 -110
  469. package/types/ibc/core/connection/v1/query.lcd.ts +61 -0
  470. package/types/ibc/core/connection/v1/query.rpc.Query.ts +97 -0
  471. package/types/ibc/core/connection/v1/query.ts +992 -962
  472. package/types/ibc/core/connection/v1/tx.amino.ts +29 -0
  473. package/types/ibc/core/connection/v1/tx.registry.ts +107 -0
  474. package/types/ibc/core/connection/v1/tx.rpc.msg.ts +59 -0
  475. package/types/ibc/core/connection/v1/tx.ts +939 -998
  476. package/types/ibc/core/types/v1/genesis.ts +146 -99
  477. package/types/ibc/lcd.ts +176 -0
  478. package/types/ibc/lightclients/solomachine/v2/solomachine.ts +1379 -951
  479. package/types/ibc/lightclients/solomachine/v3/solomachine.ts +746 -559
  480. package/types/ibc/lightclients/tendermint/v1/tendermint.ts +579 -512
  481. package/types/ibc/lightclients/wasm/v1/genesis.ts +138 -124
  482. package/types/ibc/lightclients/wasm/v1/query.lcd.ts +34 -0
  483. package/types/ibc/lightclients/wasm/v1/query.rpc.Query.ts +44 -0
  484. package/types/ibc/lightclients/wasm/v1/query.ts +283 -354
  485. package/types/ibc/lightclients/wasm/v1/tx.amino.ts +19 -0
  486. package/types/ibc/lightclients/wasm/v1/tx.registry.ts +71 -0
  487. package/types/ibc/lightclients/wasm/v1/tx.rpc.msg.ts +37 -0
  488. package/types/ibc/lightclients/wasm/v1/tx.ts +428 -471
  489. package/types/ibc/lightclients/wasm/v1/wasm.ts +298 -215
  490. package/types/ibc/rpc.query.ts +123 -0
  491. package/types/ibc/rpc.tx.ts +104 -0
  492. package/types/index.ts +25 -0
  493. package/types/tendermint/abci/types.ts +4204 -4068
  494. package/types/tendermint/bundle.ts +33 -0
  495. package/types/tendermint/crypto/keys.ts +71 -102
  496. package/types/tendermint/crypto/proof.ts +373 -303
  497. package/types/tendermint/p2p/types.ts +327 -318
  498. package/types/tendermint/types/block.ts +89 -106
  499. package/types/tendermint/types/evidence.ts +319 -321
  500. package/types/tendermint/types/params.ts +560 -408
  501. package/types/tendermint/types/types.ts +1390 -1193
  502. package/types/tendermint/types/validator.ts +239 -249
  503. package/types/tendermint/version/types.ts +156 -130
  504. package/types/utf8.ts +149 -0
  505. package/types/varint.ts +489 -0
  506. package/types/xion/bundle.ts +117 -0
  507. package/types/xion/client.ts +57 -0
  508. package/types/xion/feeabs/v1beta1/epoch.ts +386 -0
  509. package/types/xion/feeabs/v1beta1/genesis.ts +136 -0
  510. package/types/xion/feeabs/v1beta1/osmosisibc.ts +868 -0
  511. package/types/xion/feeabs/v1beta1/params.ts +189 -0
  512. package/types/xion/feeabs/v1beta1/proposal.ts +593 -0
  513. package/types/xion/feeabs/v1beta1/query.lcd.ts +37 -0
  514. package/types/xion/feeabs/v1beta1/query.rpc.Query.ts +64 -0
  515. package/types/xion/feeabs/v1beta1/query.ts +732 -0
  516. package/types/xion/feeabs/v1beta1/tx.amino.ts +39 -0
  517. package/types/xion/feeabs/v1beta1/tx.registry.ts +143 -0
  518. package/types/xion/feeabs/v1beta1/tx.rpc.msg.ts +72 -0
  519. package/types/xion/feeabs/v1beta1/tx.ts +1261 -0
  520. package/types/xion/globalfee/v1/genesis.ts +163 -133
  521. package/types/xion/globalfee/v1/query.lcd.ts +19 -0
  522. package/types/xion/globalfee/v1/query.rpc.Query.ts +31 -0
  523. package/types/xion/globalfee/v1/query.ts +119 -210
  524. package/types/xion/jwk/v1/audience.ts +153 -117
  525. package/types/xion/jwk/v1/genesis.ts +82 -83
  526. package/types/xion/jwk/v1/params.ts +83 -88
  527. package/types/xion/jwk/v1/query.lcd.ts +52 -0
  528. package/types/xion/jwk/v1/query.rpc.Query.ts +77 -0
  529. package/types/xion/jwk/v1/query.ts +1351 -715
  530. package/types/xion/jwk/v1/tx.amino.ts +29 -0
  531. package/types/xion/jwk/v1/tx.registry.ts +107 -0
  532. package/types/xion/jwk/v1/tx.rpc.msg.ts +53 -0
  533. package/types/xion/jwk/v1/tx.ts +714 -695
  534. package/types/xion/lcd.ts +147 -0
  535. package/types/xion/mint/v1/event.ts +155 -150
  536. package/types/xion/mint/v1/genesis.ts +78 -85
  537. package/types/xion/mint/v1/mint.ts +206 -172
  538. package/types/xion/mint/v1/query.lcd.ts +31 -0
  539. package/types/xion/mint/v1/query.rpc.Query.ts +53 -0
  540. package/types/xion/mint/v1/query.ts +335 -416
  541. package/types/xion/mint/v1/tx.amino.ts +9 -0
  542. package/types/xion/mint/v1/tx.registry.ts +35 -0
  543. package/types/xion/mint/v1/tx.rpc.msg.ts +26 -0
  544. package/types/xion/mint/v1/tx.ts +147 -230
  545. package/types/xion/rpc.query.ts +105 -0
  546. package/types/xion/rpc.tx.ts +83 -0
  547. package/types/xion/v1/feegrant.ts +359 -170
  548. package/types/xion/v1/genesis.ts +81 -79
  549. package/types/xion/v1/query.rpc.Query.ts +64 -0
  550. package/types/xion/v1/query.ts +601 -617
  551. package/types/xion/v1/tx.amino.ts +24 -0
  552. package/types/xion/v1/tx.registry.ts +89 -0
  553. package/types/xion/v1/tx.rpc.msg.ts +57 -0
  554. package/types/xion/v1/tx.ts +540 -543
  555. package/README.md +0 -111
  556. package/index.js +0 -15
  557. package/types/capability/v1/capability.ts +0 -245
  558. package/types/capability/v1/genesis.ts +0 -202
  559. package/types/cosmos/orm/module/v1alpha1/module.ts +0 -79
  560. package/types/cosmos/orm/query/v1alpha1/query.ts +0 -1016
  561. package/types/cosmos/orm/v1/orm.ts +0 -441
  562. package/types/cosmos/orm/v1alpha1/schema.ts +0 -313
  563. package/types/ibc/applications/fee/v1/ack.ts +0 -160
  564. package/types/ibc/applications/fee/v1/fee.ts +0 -391
  565. package/types/ibc/applications/fee/v1/genesis.ts +0 -553
  566. package/types/ibc/applications/fee/v1/metadata.ts +0 -117
  567. package/types/ibc/applications/fee/v1/query.ts +0 -2056
  568. package/types/ibc/applications/fee/v1/tx.ts +0 -936
  569. package/types/ibc/applications/transfer/v2/packet.ts +0 -169
  570. package/types/ibc/core/channel/v1/upgrade.ts +0 -330
  571. package/types/ibc/lightclients/localhost/v2/localhost.ts +0 -98
  572. package/types/tendermint/libs/bits/types.ts +0 -123
package/jest.config.js ADDED
@@ -0,0 +1,18 @@
1
+ /** @type {import('ts-jest').JestConfigWithTsJest} */
2
+ module.exports = {
3
+ preset: "ts-jest",
4
+ testEnvironment: "node",
5
+ transform: {
6
+ "^.+\\.tsx?$": [
7
+ "ts-jest",
8
+ {
9
+ babelConfig: false,
10
+ tsconfig: "tsconfig.json",
11
+ },
12
+ ],
13
+ },
14
+ transformIgnorePatterns: [`/node_modules/*`],
15
+ testRegex: "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
16
+ moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
17
+ modulePathIgnorePatterns: ["dist/*"]
18
+ };
package/package.json CHANGED
@@ -1,42 +1,56 @@
1
1
  {
2
2
  "name": "@burnt-labs/xion-types",
3
- "version": "21.0.0-alpha.4",
4
- "description": "TypeScript definitions for Xion Protobuf files",
3
+ "version": "25.0.0",
4
+ "author": "burnt-labs <devops@burnt.com>",
5
+ "description": "xion-types",
5
6
  "main": "index.js",
6
- "types": "types/",
7
- "files": [
8
- "types/",
9
- "index.js",
10
- "README.md"
11
- ],
12
- "scripts": {
13
- "build": "echo 'Types are pre-generated, no build step needed'",
14
- "test": "echo 'No tests configured'",
15
- "prepublishOnly": "echo 'Package ready for publishing'"
7
+ "module": "esm/index.js",
8
+ "types": "index.d.ts",
9
+ "homepage": "https://github.com/burnt-labs/xion-types",
10
+ "license": "SEE LICENSE IN LICENSE",
11
+ "publishConfig": {
12
+ "access": "public",
13
+ "directory": "dist"
16
14
  },
17
- "license": "MIT",
18
- "dependencies": {
19
- "@improbable-eng/grpc-web": "^0.14.1",
20
- "browser-headers": "^0.4.1",
21
- "google-protobuf": "^3.17.3",
22
- "long": "^4.0.0",
23
- "protobufjs": "~6.11.2"
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/burnt-labs/xion-types"
18
+ },
19
+ "bugs": {
20
+ "url": "https://github.com/burnt-labs/xion-types/issues"
21
+ },
22
+ "scripts": {
23
+ "copy": "copyfiles -f ./LICENSE README.md package.json dist",
24
+ "clean": "rimraf dist",
25
+ "prepare": "npm run build",
26
+ "download-protos": "ts-node scripts/download-protos.ts",
27
+ "codegen": "ts-node scripts/codegen.ts",
28
+ "build": "npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
29
+ "build:dev": "npm run clean && npm run codegen && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy",
30
+ "lint": "eslint . --fix",
31
+ "test": "jest",
32
+ "test:watch": "jest --watch"
24
33
  },
25
34
  "devDependencies": {
26
- "prettier": "^2.3.0",
27
- "ts-proto": "^1.82.5",
28
- "typescript": "^5.0.0"
35
+ "@types/node": "^22.14.1",
36
+ "copyfiles": "^2.4.1",
37
+ "rimraf": "^6.0.1",
38
+ "ts-node": "^10.9.2",
39
+ "typescript": "^5.8.3"
29
40
  },
30
- "repository": {
31
- "type": "git",
32
- "url": "https://github.com/burnt-labs/xion-types.git"
41
+ "dependencies": {
42
+ "@bufbuild/protobuf": "^2.8.0",
43
+ "@cosmology/lcd": "^0.14.0",
44
+ "@cosmology/telescope": "^1.12.20",
45
+ "@improbable-eng/grpc-web": "^0.15.0",
46
+ "@interchainjs/cosmos": "1.11.5",
47
+ "@interchainjs/cosmos-types": "1.11.5",
48
+ "@interchainjs/encoding": "1.11.5",
49
+ "@interchainjs/pubkey": "1.11.5",
50
+ "@interchainjs/types": "1.11.5",
51
+ "@interchainjs/utils": "1.11.5",
52
+ "@tanstack/react-query": "^5.89.0"
33
53
  },
34
- "keywords": [
35
- "xion",
36
- "blockchain",
37
- "typescript",
38
- "protobuf",
39
- "cosmos",
40
- "ibc"
41
- ]
54
+ "keywords": [],
55
+ "packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
42
56
  }
@@ -0,0 +1,29 @@
1
+ export const AMINO_MAP = {
2
+ // PUT YOUR AMINO names here...
3
+ // Staking
4
+ // '/cosmos.staking.v1beta1.MsgCreateValidator': {
5
+ // aminoType: 'cosmos-sdk/MsgCreateValidator'
6
+ // },
7
+ // '/cosmos.staking.v1beta1.MsgEditValidator': {
8
+ // aminoType: 'cosmos-sdk/MsgEditValidator'
9
+ // },
10
+ // '/cosmos.staking.v1beta1.MsgDelegate': {
11
+ // aminoType: 'cosmos-sdk/MsgDelegate'
12
+ // },
13
+ // '/cosmos.staking.v1beta1.MsgUndelegate': {
14
+ // aminoType: 'cosmos-sdk/MsgUndelegate'
15
+ // },
16
+ // '/cosmos.staking.v1beta1.MsgBeginRedelegate': {
17
+ // aminoType: 'cosmos-sdk/MsgBeginRedelegate'
18
+ // },
19
+ // '/cosmos.staking.v1beta1.MsgCancelUnbondingDelegation': {
20
+ // aminoType: 'cosmos-sdk/MsgCancelUnbondingDelegation'
21
+ // },
22
+ // '/cosmos.staking.v1beta1.MsgUpdateParams': {
23
+ // aminoType: 'cosmos-sdk/x/staking/MsgUpdateParams'
24
+ // },
25
+ // // IBC
26
+ // '/ibc.applications.transfer.v1.MsgTransfer': {
27
+ // aminoType: 'cosmos-sdk/MsgTransfer'
28
+ // }
29
+ };
@@ -0,0 +1,94 @@
1
+ import { TelescopeInput } from '@cosmology/telescope';
2
+ import telescope from '@cosmology/telescope';
3
+ import { join } from 'path';
4
+ import { rimrafSync as rimraf } from 'rimraf';
5
+
6
+ import { AMINO_MAP } from './aminos';
7
+
8
+ const protoDirs: string[] = [join(__dirname, '/../protos'), join(__dirname, '/../../xion/proto')];
9
+ const outPath: string = join(__dirname, '../types');
10
+ rimraf(outPath);
11
+
12
+ export const options: TelescopeInput = {
13
+ protoDirs,
14
+ outPath,
15
+ options: {
16
+ interfaces: {
17
+ enabled: true,
18
+ useUnionTypes: true
19
+ },
20
+ prototypes: {
21
+ enabled: true,
22
+ excluded: {
23
+ packages: [
24
+ //'ibc.applications.fee.v1', // issue with parsing protos (LCD routes with nested objects in params)
25
+ //'cosmos.app.v1alpha1',
26
+ // 'cosmos.app.v1beta1',
27
+ // 'cosmos.base.kv.v1beta1',
28
+ // 'cosmos.base.reflection.v1beta1',
29
+ // 'cosmos.base.snapshots.v1beta1',
30
+ // 'cosmos.base.store.v1beta1',
31
+ // 'cosmos.base.tendermint.v1beta1',
32
+ // 'cosmos.crisis.v1beta1',
33
+ // 'cosmos.evidence.v1beta1',
34
+ // 'cosmos.genutil.v1beta1',
35
+ // 'cosmos.autocli.v1',
36
+ // 'cosmos.msg.v1',
37
+ // 'cosmos.nft.v1beta1',
38
+ // 'cosmos.capability.v1beta1',
39
+ // 'cosmos.orm.v1alpha1',
40
+ // 'cosmos.orm.v1',
41
+ // 'cosmos.slashing.v1beta1',
42
+ // 'google.api',
43
+ // 'ibc.core.port.v1',
44
+ // 'ibc.core.types.v1'
45
+ ]
46
+ },
47
+ },
48
+
49
+ bundle: {
50
+ enabled: true
51
+ },
52
+
53
+ tsDisable: {
54
+ files: [],
55
+ patterns: [],
56
+ disableAll: true
57
+ },
58
+
59
+ eslintDisable: {
60
+ files: [],
61
+ patterns: [],
62
+ disableAll: false
63
+ },
64
+
65
+ stargateClients: {
66
+ enabled: true,
67
+ includeCosmosDefaultTypes: true
68
+ },
69
+
70
+ aminoEncoding: {
71
+ enabled: true,
72
+ customTypes: {
73
+ useCosmosSDKDec: false
74
+ },
75
+ exceptions: {
76
+ ...AMINO_MAP
77
+ },
78
+ },
79
+ rpcClients: {
80
+ type: 'tendermint',
81
+ enabled: true
82
+ },
83
+ }
84
+ };
85
+
86
+
87
+ telescope(options)
88
+ .then(() => {
89
+ console.log('✨ all done!');
90
+ })
91
+ .catch((e) => {
92
+ console.error(e);
93
+ process.exit(1);
94
+ });
@@ -0,0 +1,248 @@
1
+ // @ts-ignore
2
+ import downloadProtos from '@cosmology/telescope/main/commands/download'
3
+ import { join } from 'path';
4
+ import { execSync } from 'child_process';
5
+ import { readFileSync, writeFileSync, readdirSync, statSync } from 'fs';
6
+
7
+ /**
8
+ * Fix common proto syntax errors that cause telescope to fail
9
+ */
10
+ function fixProtoSyntaxErrors(protoDir: string): void {
11
+ console.log('🔧 Fixing proto syntax errors...');
12
+
13
+ let totalFilesFixed = 0;
14
+
15
+ function processDirectory(dir: string): void {
16
+ const items = readdirSync(dir);
17
+
18
+ for (const item of items) {
19
+ const fullPath = join(dir, item);
20
+ const stat = statSync(fullPath);
21
+
22
+ if (stat.isDirectory()) {
23
+ processDirectory(fullPath);
24
+ } else if (item.endsWith('.proto')) {
25
+ let content = readFileSync(fullPath, 'utf8');
26
+ const originalContent = content;
27
+
28
+ // Fix: Remove standalone semicolons (lines with just spaces and a semicolon)
29
+ content = content.replace(/^(\s*);(\s*)$/gm, '$1$2');
30
+
31
+ if (content !== originalContent) {
32
+ writeFileSync(fullPath, content, 'utf8');
33
+ const relativePath = fullPath.replace(protoDir + '/', '');
34
+ console.log(` ✅ Fixed syntax errors in: ${relativePath}`);
35
+ totalFilesFixed++;
36
+ }
37
+ }
38
+ }
39
+ }
40
+
41
+ processDirectory(protoDir);
42
+
43
+ if (totalFilesFixed > 0) {
44
+ console.log(`🎉 Fixed syntax errors in ${totalFilesFixed} proto files`);
45
+ } else {
46
+ console.log('✅ No proto syntax errors found');
47
+ }
48
+ }
49
+
50
+ // Read dependencies from .env file
51
+ const envFilePath = join(__dirname, '../../.env');
52
+ let deps: string[];
53
+
54
+ try {
55
+ const envContent = readFileSync(envFilePath, 'utf8');
56
+
57
+ // Parse the DEPS variable from .env file
58
+ const depsMatch = envContent.match(/DEPS="([^"]+)"/);
59
+ if (!depsMatch) {
60
+ throw new Error('DEPS variable not found in .env file');
61
+ }
62
+
63
+ deps = depsMatch[1].split('\n').filter(dep => dep.trim());
64
+ console.log(`📋 Loaded ${deps.length} dependencies from .env file`);
65
+ } catch (error) {
66
+ console.error('❌ Error: Could not read .env file or parse DEPS variable');
67
+ console.error('Please ensure .env file exists in the project root with DEPS variable');
68
+ process.exit(1);
69
+ }
70
+
71
+ // Generate module mapping dynamically from dependencies
72
+ function generateModuleMapping(deps: string[]): Record<string, { owner: string; repo: string }> {
73
+ const mapping: Record<string, { owner: string; repo: string }> = {};
74
+
75
+ for (const dep of deps) {
76
+ // Parse GitHub URLs like github.com/owner/repo or github.com/owner/repo/version
77
+ const match = dep.match(/github\.com\/([^\/]+)\/([^\/]+)/);
78
+ if (match) {
79
+ const [, owner, repo] = match;
80
+ mapping[dep] = { owner, repo };
81
+ }
82
+ }
83
+
84
+ return mapping;
85
+ }
86
+
87
+ const moduleMapping = generateModuleMapping(deps);
88
+
89
+ function generateConfig() {
90
+ console.log('🔄 Generating config with dependency versions...');
91
+
92
+ const xionDir = join(__dirname, '../../xion');
93
+ const repos: any[] = [];
94
+ const targets: string[] = [];
95
+
96
+ for (const dep of deps) {
97
+ try {
98
+ // First, let's see if there's a replace directive
99
+ const replaceInfo = execSync(
100
+ `cd "${xionDir}" && go list -f '{{ if .Replace }}{{ .Replace.Path }} {{ .Replace.Version }}{{ else }}NO_REPLACE{{ end }}' -m "${dep}"`,
101
+ { encoding: 'utf8' }
102
+ ).trim();
103
+
104
+ console.log(`Module: ${dep}`);
105
+ console.log(` Replace info: ${replaceInfo}`);
106
+
107
+ // Get module info, handling replace directives properly
108
+ const moduleInfo = execSync(
109
+ `cd "${xionDir}" && go list -f '{{ .Version }}{{ if .Replace }} {{ .Replace.Path }}{{ else }} {{ .Path }}{{ end }}' -m "${dep}"`,
110
+ { encoding: 'utf8' }
111
+ ).trim();
112
+
113
+ const parts = moduleInfo.split(' ');
114
+ const version = parts[0];
115
+ const effectivePath = parts[1];
116
+
117
+ console.log(` Version: ${version}`);
118
+ console.log(` Effective path: ${effectivePath}`);
119
+
120
+ // All modules should work now with the updated configuration
121
+ // if (dep.includes('problematic-module')) {
122
+ // console.log(` Skipping ${dep} - known to have issues with proto extraction`);
123
+ // continue;
124
+ // }
125
+
126
+ // Parse the effective path to get owner/repo
127
+ let owner: string, repo: string;
128
+
129
+ if (effectivePath.startsWith('github.com/')) {
130
+ const match = effectivePath.match(/github\.com\/([^\/]+)\/([^\/]+)/);
131
+ if (match) {
132
+ [, owner, repo] = match;
133
+ } else {
134
+ console.warn(`Could not parse GitHub path: ${effectivePath}`);
135
+ continue;
136
+ }
137
+ } else {
138
+ // Fallback to original module mapping if not a GitHub path
139
+ if (moduleMapping[dep]) {
140
+ ({ owner, repo } = moduleMapping[dep]);
141
+ } else {
142
+ console.warn(`No mapping found for non-GitHub module: ${effectivePath}`);
143
+ continue;
144
+ }
145
+ }
146
+
147
+ // Handle pseudo-versions (e.g., v0.53.1-0.20250911214339-3cd81ea27e01)
148
+ let branchOrTag = version;
149
+ if (version.includes('-0.')) {
150
+ // Extract commit hash from pseudo-version
151
+ const commitMatch = version.match(/-([a-f0-9]{12})$/);
152
+ if (commitMatch) {
153
+ branchOrTag = commitMatch[1]; // Use commit hash
154
+ } else {
155
+ branchOrTag = 'main'; // Fallback to main
156
+ }
157
+ console.log(` Pseudo-version detected, using: ${branchOrTag}`);
158
+ }
159
+
160
+ repos.push({
161
+ owner,
162
+ repo,
163
+ branch: branchOrTag
164
+ });
165
+
166
+ // Generate target patterns based on repo names, excluding problematic patterns
167
+ let targetPattern: string;
168
+ switch (repo) {
169
+ case 'cosmos-sdk':
170
+ targetPattern = 'cosmos/**/*.proto';
171
+ break;
172
+ case 'wasmd':
173
+ targetPattern = 'cosmwasm/**/*.proto';
174
+ break;
175
+ case 'ibc-go':
176
+ targetPattern = 'ibc/**/*.proto';
177
+ break;
178
+ case 'abstract-account':
179
+ targetPattern = 'abstractaccount/**/*.proto';
180
+ break;
181
+ case 'tokenfactory':
182
+ // Be more specific to avoid problematic Google Cloud protos
183
+ targetPattern = 'osmosis/tokenfactory/**/*.proto';
184
+ break;
185
+ case 'ibc-apps':
186
+ targetPattern = 'packetforward/**/*.proto';
187
+ break;
188
+ default:
189
+ targetPattern = `${repo}/**/*.proto`;
190
+ }
191
+
192
+ if (!targets.includes(targetPattern)) {
193
+ targets.push(targetPattern);
194
+ }
195
+
196
+ console.log(`Added ${owner}/${repo} with version: ${version} and target: ${targetPattern}`);
197
+ } catch (error) {
198
+ console.warn(`Warning: Could not find module info for ${dep}:`, error);
199
+ }
200
+ }
201
+
202
+ // Include only the essential Google proto types, avoiding newer problematic ones
203
+ // Don't include google/protobuf/** as it might have newer features telescope can't parse
204
+ targets.push('google/api/**/*.proto');
205
+ targets.push('google/rpc/**/*.proto');
206
+
207
+ console.log('📋 Final configuration:');
208
+ console.log(' Repos:', repos.length);
209
+ repos.forEach(repo => console.log(` - ${repo.owner}/${repo.repo}@${repo.branch}`));
210
+ console.log(' Targets:', targets.length);
211
+ targets.forEach(target => console.log(` - ${target}`));
212
+
213
+ return {
214
+ repos,
215
+ protoDirMapping: {
216
+ "gogo/protobuf/master": ".",
217
+ "googleapis/googleapis/master": ".",
218
+ "protocolbuffers/protobuf/main": "src"
219
+ },
220
+ outDir: "protos",
221
+ ssh: false,
222
+ tempRepoDir: "git-modules",
223
+ targets
224
+ };
225
+ }
226
+
227
+ const config = generateConfig();
228
+
229
+ // Set environment variable to suppress Git detached HEAD warnings
230
+ process.env.GIT_CONFIG_COUNT = '1';
231
+ process.env.GIT_CONFIG_KEY_0 = 'advice.detachedHead';
232
+ process.env.GIT_CONFIG_VALUE_0 = 'false';
233
+
234
+ downloadProtos(config)
235
+ .then(() => {
236
+ console.log('✅ Proto download completed');
237
+
238
+ // Fix proto syntax errors after download
239
+ const protoDir = join(__dirname, '../protos');
240
+ fixProtoSyntaxErrors(protoDir);
241
+
242
+ console.log('🎉 Proto download and syntax fixing complete!');
243
+ })
244
+ // @ts-ignore
245
+ .catch((error) => {
246
+ console.error('❌ Proto download failed:', error);
247
+ process.exit(1);
248
+ });
@@ -0,0 +1,84 @@
1
+ {
2
+ "options": {
3
+ "classesUseArrowFunctions": true,
4
+ "env": "v-next",
5
+ "useInterchainJs": true,
6
+ "useSDKTypes": true,
7
+ "prototypes": {
8
+ "enableRegistryLoader": false,
9
+ "enableMessageComposer": false,
10
+ "enabled": true,
11
+ "parser": {
12
+ "keepCase": false,
13
+ "alternateCommentMode": true,
14
+ "preferTrailingComment": false
15
+ },
16
+ "methods": {
17
+ "fromJSON": true,
18
+ "toJSON": true,
19
+ "encode": true,
20
+ "decode": true,
21
+ "fromPartial": true,
22
+ "toAmino": true,
23
+ "fromAmino": true,
24
+ "fromProto": false,
25
+ "toProto": false,
26
+ "fromProtoMsg": false,
27
+ "toProtoMsg": false,
28
+ "toAminoMsg": true,
29
+ "fromAminoMsg": true
30
+ },
31
+ "addTypeUrlToDecoders": true,
32
+ "addTypeUrlToObjects": true,
33
+ "addAminoTypeToObjects": true,
34
+ "typingsFormat": {
35
+ "duration": "duration",
36
+ "timestamp": "date",
37
+ "useExact": true,
38
+ "useDeepPartial": true,
39
+ "num64": "bigint",
40
+ "customTypes": {
41
+ "useCosmosSDKDec": true,
42
+ "useEnhancedDecimal": false
43
+ },
44
+ "useTelescopeGeneratedType": true,
45
+ "autoFixUndefinedEnumDefault": true
46
+ }
47
+ },
48
+ "bundle": {
49
+ "enabled": false
50
+ },
51
+ "stargateClients": {
52
+ "enabled": true
53
+ },
54
+ "lcdClients": {
55
+ "enabled": true
56
+ },
57
+ "rpcClients": {
58
+ "enabled": true
59
+ },
60
+ "helperFunctions": {
61
+ "enabled": true,
62
+ "useGlobalDecoderRegistry": true,
63
+ "hooks": {
64
+ "react": true,
65
+ "vue": false
66
+ }
67
+ },
68
+ "interfaces": {
69
+ "enabled": true,
70
+ "useGlobalDecoderRegistry": true,
71
+ "registerAllDecodersToGlobal": false,
72
+ "useUnionTypes": true
73
+ },
74
+ "aminoEncoding": {
75
+ "enabled": true,
76
+ "useLegacyInlineEncoding": false,
77
+ "disableMsgTypes": false,
78
+ "useProtoOptionality": true,
79
+ "customTypes": {
80
+ "useCosmosSDKDec": true
81
+ }
82
+ }
83
+ }
84
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "dist/esm",
5
+ "module": "es2022",
6
+ "rootDir": ".",
7
+ "declaration": false
8
+ }
9
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2020",
4
+ "module": "commonjs",
5
+ "lib": ["ES2020"],
6
+ "moduleResolution": "node",
7
+ "esModuleInterop": true,
8
+ "allowSyntheticDefaultImports": true,
9
+ "strict": false,
10
+ "skipLibCheck": true,
11
+ "forceConsistentCasingInFileNames": true,
12
+ "declaration": true,
13
+ "outDir": "dist",
14
+ "rootDir": "types",
15
+ },
16
+ "include": ["**/*.ts"],
17
+ "exclude": ["dist", "node_modules", "scripts", "**/*.spec.*", "**/*.test.*"],
18
+ }
@@ -0,0 +1,35 @@
1
+ //@ts-nocheck
2
+ import * as _0 from "./v1/account";
3
+ import * as _1 from "./v1/events";
4
+ import * as _2 from "./v1/genesis";
5
+ import * as _3 from "./v1/params";
6
+ import * as _4 from "./v1/query";
7
+ import * as _5 from "./v1/tx";
8
+ import * as _289 from "./v1/tx.amino";
9
+ import * as _290 from "./v1/tx.registry";
10
+ import * as _291 from "./v1/query.lcd";
11
+ import * as _292 from "./v1/query.rpc.Query";
12
+ import * as _293 from "./v1/tx.rpc.msg";
13
+ import * as _475 from "./lcd";
14
+ import * as _476 from "./rpc.query";
15
+ import * as _477 from "./rpc.tx";
16
+ export namespace abstractaccount {
17
+ export const v1 = {
18
+ ..._0,
19
+ ..._1,
20
+ ..._2,
21
+ ..._3,
22
+ ..._4,
23
+ ..._5,
24
+ ..._289,
25
+ ..._290,
26
+ ..._291,
27
+ ..._292,
28
+ ..._293
29
+ };
30
+ export const ClientFactory = {
31
+ ..._475,
32
+ ..._476,
33
+ ..._477
34
+ };
35
+ }
@@ -0,0 +1,48 @@
1
+ //@ts-nocheck
2
+ import { GeneratedType, Registry, OfflineSigner } from "@cosmjs/proto-signing";
3
+ import { defaultRegistryTypes, AminoTypes, SigningStargateClient } from "@cosmjs/stargate";
4
+ import { HttpEndpoint } from "@cosmjs/tendermint-rpc";
5
+ import * as abstractaccountV1TxRegistry from "./v1/tx.registry";
6
+ import * as abstractaccountV1TxAmino from "./v1/tx.amino";
7
+ export const abstractaccountAminoConverters = {
8
+ ...abstractaccountV1TxAmino.AminoConverter
9
+ };
10
+ export const abstractaccountProtoRegistry: ReadonlyArray<[string, GeneratedType]> = [...abstractaccountV1TxRegistry.registry];
11
+ export const getSigningAbstractaccountClientOptions = ({
12
+ defaultTypes = defaultRegistryTypes
13
+ }: {
14
+ defaultTypes?: ReadonlyArray<[string, GeneratedType]>;
15
+ } = {}): {
16
+ registry: Registry;
17
+ aminoTypes: AminoTypes;
18
+ } => {
19
+ const registry = new Registry([...defaultTypes, ...abstractaccountProtoRegistry]);
20
+ const aminoTypes = new AminoTypes({
21
+ ...abstractaccountAminoConverters
22
+ });
23
+ return {
24
+ registry,
25
+ aminoTypes
26
+ };
27
+ };
28
+ export const getSigningAbstractaccountClient = async ({
29
+ rpcEndpoint,
30
+ signer,
31
+ defaultTypes = defaultRegistryTypes
32
+ }: {
33
+ rpcEndpoint: string | HttpEndpoint;
34
+ signer: OfflineSigner;
35
+ defaultTypes?: ReadonlyArray<[string, GeneratedType]>;
36
+ }) => {
37
+ const {
38
+ registry,
39
+ aminoTypes
40
+ } = getSigningAbstractaccountClientOptions({
41
+ defaultTypes
42
+ });
43
+ const client = await SigningStargateClient.connectWithSigner(rpcEndpoint, signer, {
44
+ registry: registry as any,
45
+ aminoTypes
46
+ });
47
+ return client;
48
+ };