@gitopia/gitopiajs 0.0.4 → 0.0.6

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 (310) hide show
  1. package/dist/LICENSE +21 -0
  2. package/dist/amino/amino.d.ts +1 -0
  3. package/dist/amino/amino.js +2 -0
  4. package/dist/amino/bundle.d.ts +1 -0
  5. package/dist/amino/bundle.js +41 -0
  6. package/dist/binary.d.ts +130 -0
  7. package/dist/binary.js +371 -0
  8. package/dist/cosmos/bank/v1beta1/bank.d.ts +407 -0
  9. package/dist/cosmos/bank/v1beta1/bank.js +664 -0
  10. package/dist/cosmos/bank/v1beta1/query.d.ts +1062 -0
  11. package/dist/cosmos/bank/v1beta1/query.js +1759 -0
  12. package/dist/cosmos/bank/v1beta1/query.lcd.d.ts +19 -0
  13. package/dist/cosmos/bank/v1beta1/query.lcd.js +173 -0
  14. package/dist/cosmos/bank/v1beta1/query.rpc.Query.d.ts +106 -0
  15. package/dist/cosmos/bank/v1beta1/query.rpc.Query.js +123 -0
  16. package/dist/cosmos/base/query/v1beta1/pagination.d.ts +190 -0
  17. package/dist/cosmos/base/query/v1beta1/pagination.js +204 -0
  18. package/dist/cosmos/base/v1beta1/coin.d.ts +193 -0
  19. package/dist/cosmos/base/v1beta1/coin.js +306 -0
  20. package/dist/cosmos/bundle.d.ts +2311 -0
  21. package/dist/cosmos/bundle.js +134 -0
  22. package/dist/cosmos/client.d.ts +84 -0
  23. package/dist/cosmos/client.js +65 -0
  24. package/dist/cosmos/feegrant/v1beta1/feegrant.d.ts +245 -0
  25. package/dist/cosmos/feegrant/v1beta1/feegrant.js +456 -0
  26. package/dist/cosmos/feegrant/v1beta1/query.d.ts +258 -0
  27. package/dist/cosmos/feegrant/v1beta1/query.js +487 -0
  28. package/dist/cosmos/feegrant/v1beta1/query.lcd.d.ts +11 -0
  29. package/dist/cosmos/feegrant/v1beta1/query.lcd.js +44 -0
  30. package/dist/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +28 -0
  31. package/dist/cosmos/feegrant/v1beta1/query.rpc.Query.js +47 -0
  32. package/dist/cosmos/gov/v1beta1/gov.d.ts +571 -0
  33. package/dist/cosmos/gov/v1beta1/gov.js +1122 -0
  34. package/dist/cosmos/gov/v1beta1/query.d.ts +636 -0
  35. package/dist/cosmos/gov/v1beta1/query.js +1264 -0
  36. package/dist/cosmos/gov/v1beta1/query.lcd.d.ts +16 -0
  37. package/dist/cosmos/gov/v1beta1/query.lcd.js +87 -0
  38. package/dist/cosmos/gov/v1beta1/query.rpc.Query.d.ts +44 -0
  39. package/dist/cosmos/gov/v1beta1/query.rpc.Query.js +92 -0
  40. package/dist/cosmos/group/v1/query.d.ts +1097 -0
  41. package/dist/cosmos/group/v1/query.js +2182 -0
  42. package/dist/cosmos/group/v1/query.lcd.d.ts +22 -0
  43. package/dist/cosmos/group/v1/query.lcd.js +158 -0
  44. package/dist/cosmos/group/v1/query.rpc.Query.d.ts +78 -0
  45. package/dist/cosmos/group/v1/query.rpc.Query.js +148 -0
  46. package/dist/cosmos/group/v1/tx.amino.d.ts +73 -0
  47. package/dist/cosmos/group/v1/tx.amino.js +77 -0
  48. package/dist/cosmos/group/v1/tx.d.ts +1198 -0
  49. package/dist/cosmos/group/v1/tx.js +2362 -0
  50. package/dist/cosmos/group/v1/tx.registry.d.ts +180 -0
  51. package/dist/cosmos/group/v1/tx.registry.js +271 -0
  52. package/dist/cosmos/group/v1/tx.rpc.msg.d.ts +51 -0
  53. package/dist/cosmos/group/v1/tx.rpc.msg.js +96 -0
  54. package/dist/cosmos/group/v1/types.d.ts +873 -0
  55. package/dist/cosmos/group/v1/types.js +1495 -0
  56. package/dist/cosmos/msg/v1/msg.d.ts +1 -0
  57. package/dist/cosmos/msg/v1/msg.js +2 -0
  58. package/dist/cosmos/query/v1/query.d.ts +1 -0
  59. package/dist/cosmos/query/v1/query.js +2 -0
  60. package/dist/cosmos/rpc.query.d.ts +59 -0
  61. package/dist/cosmos/rpc.query.js +60 -0
  62. package/dist/cosmos/rpc.tx.d.ts +10 -0
  63. package/dist/cosmos/rpc.tx.js +44 -0
  64. package/dist/cosmos/upgrade/v1beta1/upgrade.d.ts +278 -0
  65. package/dist/cosmos/upgrade/v1beta1/upgrade.js +382 -0
  66. package/dist/cosmos_proto/bundle.d.ts +32 -0
  67. package/dist/cosmos_proto/bundle.js +41 -0
  68. package/dist/cosmos_proto/cosmos.d.ts +171 -0
  69. package/dist/cosmos_proto/cosmos.js +221 -0
  70. package/dist/esm/amino/amino.js +1 -0
  71. package/dist/esm/amino/bundle.js +5 -0
  72. package/dist/esm/binary.js +366 -0
  73. package/dist/esm/cosmos/bank/v1beta1/bank.js +661 -0
  74. package/dist/esm/cosmos/bank/v1beta1/query.js +1756 -0
  75. package/dist/esm/cosmos/bank/v1beta1/query.lcd.js +169 -0
  76. package/dist/esm/cosmos/bank/v1beta1/query.rpc.Query.js +118 -0
  77. package/dist/esm/cosmos/base/query/v1beta1/pagination.js +201 -0
  78. package/dist/esm/cosmos/base/v1beta1/coin.js +303 -0
  79. package/dist/esm/cosmos/bundle.js +98 -0
  80. package/dist/esm/cosmos/client.js +27 -0
  81. package/dist/esm/cosmos/feegrant/v1beta1/feegrant.js +450 -0
  82. package/dist/esm/cosmos/feegrant/v1beta1/query.js +484 -0
  83. package/dist/esm/cosmos/feegrant/v1beta1/query.lcd.js +40 -0
  84. package/dist/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +42 -0
  85. package/dist/esm/cosmos/gov/v1beta1/gov.js +1112 -0
  86. package/dist/esm/cosmos/gov/v1beta1/query.js +1261 -0
  87. package/dist/esm/cosmos/gov/v1beta1/query.lcd.js +83 -0
  88. package/dist/esm/cosmos/gov/v1beta1/query.rpc.Query.js +87 -0
  89. package/dist/esm/cosmos/group/v1/query.js +2179 -0
  90. package/dist/esm/cosmos/group/v1/query.lcd.js +154 -0
  91. package/dist/esm/cosmos/group/v1/query.rpc.Query.js +143 -0
  92. package/dist/esm/cosmos/group/v1/tx.amino.js +74 -0
  93. package/dist/esm/cosmos/group/v1/tx.js +2354 -0
  94. package/dist/esm/cosmos/group/v1/tx.registry.js +267 -0
  95. package/dist/esm/cosmos/group/v1/tx.rpc.msg.js +92 -0
  96. package/dist/esm/cosmos/group/v1/types.js +1483 -0
  97. package/dist/esm/cosmos/msg/v1/msg.js +1 -0
  98. package/dist/esm/cosmos/query/v1/query.js +1 -0
  99. package/dist/esm/cosmos/rpc.query.js +23 -0
  100. package/dist/esm/cosmos/rpc.tx.js +7 -0
  101. package/dist/esm/cosmos/upgrade/v1beta1/upgrade.js +379 -0
  102. package/dist/esm/cosmos_proto/bundle.js +5 -0
  103. package/dist/esm/cosmos_proto/cosmos.js +216 -0
  104. package/dist/esm/gitopia/bundle.js +95 -0
  105. package/dist/esm/gitopia/client.js +32 -0
  106. package/dist/esm/gitopia/custom-lcd-client.js +50 -0
  107. package/dist/esm/gitopia/gitopia/gitopia/attachment.js +101 -0
  108. package/dist/esm/gitopia/gitopia/gitopia/bounty.js +255 -0
  109. package/dist/esm/gitopia/gitopia/gitopia/branch.js +137 -0
  110. package/dist/esm/gitopia/gitopia/gitopia/comment.js +488 -0
  111. package/dist/esm/gitopia/gitopia/gitopia/dao.js +451 -0
  112. package/dist/esm/gitopia/gitopia/gitopia/exercised_amount.js +78 -0
  113. package/dist/esm/gitopia/gitopia/gitopia/genesis.js +460 -0
  114. package/dist/esm/gitopia/gitopia/gitopia/issue.js +323 -0
  115. package/dist/esm/gitopia/gitopia/gitopia/params.js +293 -0
  116. package/dist/esm/gitopia/gitopia/gitopia/pullRequest.js +565 -0
  117. package/dist/esm/gitopia/gitopia/gitopia/query.js +7351 -0
  118. package/dist/esm/gitopia/gitopia/gitopia/query.lcd.js +452 -0
  119. package/dist/esm/gitopia/gitopia/gitopia/query.rpc.Query.js +453 -0
  120. package/dist/esm/gitopia/gitopia/gitopia/reaction.js +123 -0
  121. package/dist/esm/gitopia/gitopia/gitopia/release.js +225 -0
  122. package/dist/esm/gitopia/gitopia/gitopia/repository.js +1200 -0
  123. package/dist/esm/gitopia/gitopia/gitopia/tag.js +125 -0
  124. package/dist/esm/gitopia/gitopia/gitopia/task.js +197 -0
  125. package/dist/esm/gitopia/gitopia/gitopia/tx.amino.js +464 -0
  126. package/dist/esm/gitopia/gitopia/gitopia/tx.js +14679 -0
  127. package/dist/esm/gitopia/gitopia/gitopia/tx.registry.js +1671 -0
  128. package/dist/esm/gitopia/gitopia/gitopia/tx.rpc.msg.js +560 -0
  129. package/dist/esm/gitopia/gitopia/gitopia/user.js +340 -0
  130. package/dist/esm/gitopia/gitopia/gitopia/whois.js +146 -0
  131. package/dist/esm/gitopia/gitopia/offchain/offchain.js +144 -0
  132. package/dist/esm/gitopia/gitopia/rewards/genesis.js +82 -0
  133. package/dist/esm/gitopia/gitopia/rewards/params.js +81 -0
  134. package/dist/esm/gitopia/gitopia/rewards/pool.js +191 -0
  135. package/dist/esm/gitopia/gitopia/rewards/query.js +654 -0
  136. package/dist/esm/gitopia/gitopia/rewards/query.lcd.js +40 -0
  137. package/dist/esm/gitopia/gitopia/rewards/query.rpc.Query.js +53 -0
  138. package/dist/esm/gitopia/gitopia/rewards/rewards.js +191 -0
  139. package/dist/esm/gitopia/gitopia/rewards/task.js +176 -0
  140. package/dist/esm/gitopia/gitopia/rewards/tx.amino.js +19 -0
  141. package/dist/esm/gitopia/gitopia/rewards/tx.js +525 -0
  142. package/dist/esm/gitopia/gitopia/rewards/tx.registry.js +69 -0
  143. package/dist/esm/gitopia/gitopia/rewards/tx.rpc.msg.js +26 -0
  144. package/dist/esm/gitopia/rpc.query.js +29 -0
  145. package/dist/esm/gitopia/rpc.tx.js +13 -0
  146. package/dist/esm/gogoproto/bundle.js +5 -0
  147. package/dist/esm/gogoproto/gogo.js +1 -0
  148. package/dist/esm/google/api/annotations.js +1 -0
  149. package/dist/esm/google/api/http.js +329 -0
  150. package/dist/esm/google/bundle.js +14 -0
  151. package/dist/esm/google/protobuf/any.js +74 -0
  152. package/dist/esm/google/protobuf/descriptor.js +4848 -0
  153. package/dist/esm/google/protobuf/duration.js +71 -0
  154. package/dist/esm/google/protobuf/timestamp.js +68 -0
  155. package/dist/esm/helpers.js +131 -0
  156. package/dist/esm/ibc/applications/transfer/v1/query.js +847 -0
  157. package/dist/esm/ibc/applications/transfer/v1/query.lcd.js +70 -0
  158. package/dist/esm/ibc/applications/transfer/v1/query.rpc.Query.js +71 -0
  159. package/dist/esm/ibc/applications/transfer/v1/transfer.js +164 -0
  160. package/dist/esm/ibc/applications/transfer/v1/tx.amino.js +9 -0
  161. package/dist/esm/ibc/applications/transfer/v1/tx.js +226 -0
  162. package/dist/esm/ibc/applications/transfer/v1/tx.registry.js +33 -0
  163. package/dist/esm/ibc/applications/transfer/v1/tx.rpc.msg.js +14 -0
  164. package/dist/esm/ibc/bundle.js +44 -0
  165. package/dist/esm/ibc/client.js +29 -0
  166. package/dist/esm/ibc/core/client/v1/client.js +611 -0
  167. package/dist/esm/ibc/rpc.query.js +30 -0
  168. package/dist/esm/ibc/rpc.tx.js +14 -0
  169. package/dist/esm/index.js +19 -0
  170. package/dist/esm/utf8.js +137 -0
  171. package/dist/esm/varint.js +408 -0
  172. package/dist/gitopia/bundle.d.ts +6123 -0
  173. package/dist/gitopia/bundle.js +131 -0
  174. package/dist/gitopia/client.d.ts +492 -0
  175. package/dist/gitopia/client.js +70 -0
  176. package/dist/gitopia/custom-lcd-client.d.ts +31 -0
  177. package/dist/gitopia/custom-lcd-client.js +87 -0
  178. package/dist/gitopia/gitopia/gitopia/attachment.d.ts +39 -0
  179. package/dist/gitopia/gitopia/gitopia/attachment.js +104 -0
  180. package/dist/gitopia/gitopia/gitopia/bounty.d.ts +79 -0
  181. package/dist/gitopia/gitopia/gitopia/bounty.js +262 -0
  182. package/dist/gitopia/gitopia/gitopia/branch.d.ts +48 -0
  183. package/dist/gitopia/gitopia/gitopia/branch.js +140 -0
  184. package/dist/gitopia/gitopia/gitopia/comment.d.ts +125 -0
  185. package/dist/gitopia/gitopia/gitopia/comment.js +495 -0
  186. package/dist/gitopia/gitopia/gitopia/dao.d.ts +160 -0
  187. package/dist/gitopia/gitopia/gitopia/dao.js +454 -0
  188. package/dist/gitopia/gitopia/gitopia/exercised_amount.d.ts +34 -0
  189. package/dist/gitopia/gitopia/gitopia/exercised_amount.js +81 -0
  190. package/dist/gitopia/gitopia/gitopia/genesis.d.ts +143 -0
  191. package/dist/gitopia/gitopia/gitopia/genesis.js +463 -0
  192. package/dist/gitopia/gitopia/gitopia/issue.d.ts +88 -0
  193. package/dist/gitopia/gitopia/gitopia/issue.js +328 -0
  194. package/dist/gitopia/gitopia/gitopia/params.d.ts +115 -0
  195. package/dist/gitopia/gitopia/gitopia/params.js +296 -0
  196. package/dist/gitopia/gitopia/gitopia/pullRequest.d.ts +177 -0
  197. package/dist/gitopia/gitopia/gitopia/pullRequest.js +570 -0
  198. package/dist/gitopia/gitopia/gitopia/query.d.ts +3130 -0
  199. package/dist/gitopia/gitopia/gitopia/query.js +7355 -0
  200. package/dist/gitopia/gitopia/gitopia/query.lcd.d.ts +54 -0
  201. package/dist/gitopia/gitopia/gitopia/query.lcd.js +456 -0
  202. package/dist/gitopia/gitopia/gitopia/query.rpc.Query.d.ts +188 -0
  203. package/dist/gitopia/gitopia/gitopia/query.rpc.Query.js +458 -0
  204. package/dist/gitopia/gitopia/gitopia/reaction.d.ts +42 -0
  205. package/dist/gitopia/gitopia/gitopia/reaction.js +128 -0
  206. package/dist/gitopia/gitopia/gitopia/release.d.ts +70 -0
  207. package/dist/gitopia/gitopia/gitopia/release.js +228 -0
  208. package/dist/gitopia/gitopia/gitopia/repository.d.ts +424 -0
  209. package/dist/gitopia/gitopia/gitopia/repository.js +1207 -0
  210. package/dist/gitopia/gitopia/gitopia/tag.d.ts +45 -0
  211. package/dist/gitopia/gitopia/gitopia/tag.js +128 -0
  212. package/dist/gitopia/gitopia/gitopia/task.d.ts +64 -0
  213. package/dist/gitopia/gitopia/gitopia/task.js +204 -0
  214. package/dist/gitopia/gitopia/gitopia/tx.amino.d.ts +463 -0
  215. package/dist/gitopia/gitopia/gitopia/tx.amino.js +467 -0
  216. package/dist/gitopia/gitopia/gitopia/tx.d.ts +6246 -0
  217. package/dist/gitopia/gitopia/gitopia/tx.js +14687 -0
  218. package/dist/gitopia/gitopia/gitopia/tx.registry.d.ts +1116 -0
  219. package/dist/gitopia/gitopia/gitopia/tx.registry.js +1675 -0
  220. package/dist/gitopia/gitopia/gitopia/tx.rpc.msg.d.ts +200 -0
  221. package/dist/gitopia/gitopia/gitopia/tx.rpc.msg.js +564 -0
  222. package/dist/gitopia/gitopia/gitopia/user.d.ts +104 -0
  223. package/dist/gitopia/gitopia/gitopia/user.js +343 -0
  224. package/dist/gitopia/gitopia/gitopia/whois.d.ts +51 -0
  225. package/dist/gitopia/gitopia/gitopia/whois.js +151 -0
  226. package/dist/gitopia/gitopia/offchain/offchain.d.ts +74 -0
  227. package/dist/gitopia/gitopia/offchain/offchain.js +147 -0
  228. package/dist/gitopia/gitopia/rewards/genesis.d.ts +40 -0
  229. package/dist/gitopia/gitopia/rewards/genesis.js +85 -0
  230. package/dist/gitopia/gitopia/rewards/params.d.ts +37 -0
  231. package/dist/gitopia/gitopia/rewards/params.js +84 -0
  232. package/dist/gitopia/gitopia/rewards/pool.d.ts +59 -0
  233. package/dist/gitopia/gitopia/rewards/pool.js +196 -0
  234. package/dist/gitopia/gitopia/rewards/query.d.ts +294 -0
  235. package/dist/gitopia/gitopia/rewards/query.js +657 -0
  236. package/dist/gitopia/gitopia/rewards/query.lcd.d.ts +12 -0
  237. package/dist/gitopia/gitopia/rewards/query.lcd.js +44 -0
  238. package/dist/gitopia/gitopia/rewards/query.rpc.Query.d.ts +28 -0
  239. package/dist/gitopia/gitopia/rewards/query.rpc.Query.js +58 -0
  240. package/dist/gitopia/gitopia/rewards/rewards.d.ts +79 -0
  241. package/dist/gitopia/gitopia/rewards/rewards.js +194 -0
  242. package/dist/gitopia/gitopia/rewards/task.d.ts +54 -0
  243. package/dist/gitopia/gitopia/rewards/task.js +181 -0
  244. package/dist/gitopia/gitopia/rewards/tx.amino.d.ts +18 -0
  245. package/dist/gitopia/gitopia/rewards/tx.amino.js +22 -0
  246. package/dist/gitopia/gitopia/rewards/tx.d.ts +242 -0
  247. package/dist/gitopia/gitopia/rewards/tx.js +528 -0
  248. package/dist/gitopia/gitopia/rewards/tx.registry.d.ts +48 -0
  249. package/dist/gitopia/gitopia/rewards/tx.registry.js +73 -0
  250. package/dist/gitopia/gitopia/rewards/tx.rpc.msg.d.ts +19 -0
  251. package/dist/gitopia/gitopia/rewards/tx.rpc.msg.js +30 -0
  252. package/dist/gitopia/rpc.query.d.ts +117 -0
  253. package/dist/gitopia/rpc.query.js +66 -0
  254. package/dist/gitopia/rpc.tx.d.ts +16 -0
  255. package/dist/gitopia/rpc.tx.js +50 -0
  256. package/dist/gogoproto/bundle.d.ts +1 -0
  257. package/dist/gogoproto/bundle.js +41 -0
  258. package/dist/gogoproto/gogo.d.ts +1 -0
  259. package/dist/gogoproto/gogo.js +2 -0
  260. package/dist/google/api/annotations.d.ts +1 -0
  261. package/dist/google/api/annotations.js +2 -0
  262. package/dist/google/api/http.d.ts +1049 -0
  263. package/dist/google/api/http.js +332 -0
  264. package/dist/google/bundle.d.ts +525 -0
  265. package/dist/google/bundle.js +50 -0
  266. package/dist/google/protobuf/any.d.ts +358 -0
  267. package/dist/google/protobuf/any.js +77 -0
  268. package/dist/google/protobuf/descriptor.d.ts +3178 -0
  269. package/dist/google/protobuf/descriptor.js +4886 -0
  270. package/dist/google/protobuf/duration.d.ts +223 -0
  271. package/dist/google/protobuf/duration.js +74 -0
  272. package/dist/google/protobuf/timestamp.d.ts +314 -0
  273. package/dist/google/protobuf/timestamp.js +71 -0
  274. package/dist/helpers.d.ts +82 -0
  275. package/dist/helpers.js +146 -0
  276. package/dist/ibc/applications/transfer/v1/query.d.ts +479 -0
  277. package/dist/ibc/applications/transfer/v1/query.js +850 -0
  278. package/dist/ibc/applications/transfer/v1/query.lcd.d.ts +14 -0
  279. package/dist/ibc/applications/transfer/v1/query.lcd.js +74 -0
  280. package/dist/ibc/applications/transfer/v1/query.rpc.Query.d.ts +36 -0
  281. package/dist/ibc/applications/transfer/v1/query.rpc.Query.js +76 -0
  282. package/dist/ibc/applications/transfer/v1/transfer.d.ts +123 -0
  283. package/dist/ibc/applications/transfer/v1/transfer.js +167 -0
  284. package/dist/ibc/applications/transfer/v1/tx.amino.d.ts +8 -0
  285. package/dist/ibc/applications/transfer/v1/tx.amino.js +12 -0
  286. package/dist/ibc/applications/transfer/v1/tx.d.ts +132 -0
  287. package/dist/ibc/applications/transfer/v1/tx.js +229 -0
  288. package/dist/ibc/applications/transfer/v1/tx.registry.d.ts +24 -0
  289. package/dist/ibc/applications/transfer/v1/tx.registry.js +37 -0
  290. package/dist/ibc/applications/transfer/v1/tx.rpc.msg.d.ts +12 -0
  291. package/dist/ibc/applications/transfer/v1/tx.rpc.msg.js +18 -0
  292. package/dist/ibc/bundle.d.ts +450 -0
  293. package/dist/ibc/bundle.js +80 -0
  294. package/dist/ibc/client.d.ts +22 -0
  295. package/dist/ibc/client.js +67 -0
  296. package/dist/ibc/core/client/v1/client.d.ts +408 -0
  297. package/dist/ibc/core/client/v1/client.js +614 -0
  298. package/dist/ibc/rpc.query.d.ts +73 -0
  299. package/dist/ibc/rpc.query.js +67 -0
  300. package/dist/ibc/rpc.tx.d.ts +17 -0
  301. package/dist/ibc/rpc.tx.js +51 -0
  302. package/dist/index.d.ts +18 -0
  303. package/dist/index.js +35 -0
  304. package/dist/package.json +49 -0
  305. package/dist/utf8.d.ts +27 -0
  306. package/dist/utf8.js +141 -0
  307. package/dist/varint.d.ts +105 -0
  308. package/dist/varint.js +426 -0
  309. package/package.json +11 -8
  310. package/CHANGELOG.md +0 -8
@@ -0,0 +1,134 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.cosmos = void 0;
37
+ //@ts-nocheck
38
+ const _2 = __importStar(require("./bank/v1beta1/bank"));
39
+ const _3 = __importStar(require("./bank/v1beta1/query"));
40
+ const _4 = __importStar(require("./base/query/v1beta1/pagination"));
41
+ const _5 = __importStar(require("./base/v1beta1/coin"));
42
+ const _6 = __importStar(require("./feegrant/v1beta1/feegrant"));
43
+ const _7 = __importStar(require("./feegrant/v1beta1/query"));
44
+ const _8 = __importStar(require("./gov/v1beta1/gov"));
45
+ const _9 = __importStar(require("./gov/v1beta1/query"));
46
+ const _10 = __importStar(require("./group/v1/query"));
47
+ const _11 = __importStar(require("./group/v1/tx"));
48
+ const _12 = __importStar(require("./group/v1/types"));
49
+ const _13 = __importStar(require("./query/v1/query"));
50
+ const _14 = __importStar(require("./upgrade/v1beta1/upgrade"));
51
+ const _51 = __importStar(require("./group/v1/tx.amino"));
52
+ const _52 = __importStar(require("./group/v1/tx.registry"));
53
+ const _53 = __importStar(require("./bank/v1beta1/query.lcd"));
54
+ const _54 = __importStar(require("./feegrant/v1beta1/query.lcd"));
55
+ const _55 = __importStar(require("./gov/v1beta1/query.lcd"));
56
+ const _56 = __importStar(require("./group/v1/query.lcd"));
57
+ const _57 = __importStar(require("./bank/v1beta1/query.rpc.Query"));
58
+ const _58 = __importStar(require("./feegrant/v1beta1/query.rpc.Query"));
59
+ const _59 = __importStar(require("./gov/v1beta1/query.rpc.Query"));
60
+ const _60 = __importStar(require("./group/v1/query.rpc.Query"));
61
+ const _61 = __importStar(require("./group/v1/tx.rpc.msg"));
62
+ const _77 = __importStar(require("./rpc.query"));
63
+ const _78 = __importStar(require("./rpc.tx"));
64
+ var cosmos;
65
+ (function (cosmos) {
66
+ let bank;
67
+ (function (bank) {
68
+ bank.v1beta1 = {
69
+ ..._2,
70
+ ..._3,
71
+ ..._53,
72
+ ..._57
73
+ };
74
+ })(bank = cosmos.bank || (cosmos.bank = {}));
75
+ let base;
76
+ (function (base) {
77
+ let query;
78
+ (function (query) {
79
+ query.v1beta1 = {
80
+ ..._4
81
+ };
82
+ })(query = base.query || (base.query = {}));
83
+ base.v1beta1 = {
84
+ ..._5
85
+ };
86
+ })(base = cosmos.base || (cosmos.base = {}));
87
+ let feegrant;
88
+ (function (feegrant) {
89
+ feegrant.v1beta1 = {
90
+ ..._6,
91
+ ..._7,
92
+ ..._54,
93
+ ..._58
94
+ };
95
+ })(feegrant = cosmos.feegrant || (cosmos.feegrant = {}));
96
+ let gov;
97
+ (function (gov) {
98
+ gov.v1beta1 = {
99
+ ..._8,
100
+ ..._9,
101
+ ..._55,
102
+ ..._59
103
+ };
104
+ })(gov = cosmos.gov || (cosmos.gov = {}));
105
+ let group;
106
+ (function (group) {
107
+ group.v1 = {
108
+ ..._10,
109
+ ..._11,
110
+ ..._12,
111
+ ..._51,
112
+ ..._52,
113
+ ..._56,
114
+ ..._60,
115
+ ..._61
116
+ };
117
+ })(group = cosmos.group || (cosmos.group = {}));
118
+ let query;
119
+ (function (query) {
120
+ query.v1 = {
121
+ ..._13
122
+ };
123
+ })(query = cosmos.query || (cosmos.query = {}));
124
+ let upgrade;
125
+ (function (upgrade) {
126
+ upgrade.v1beta1 = {
127
+ ..._14
128
+ };
129
+ })(upgrade = cosmos.upgrade || (cosmos.upgrade = {}));
130
+ cosmos.ClientFactory = {
131
+ ..._77,
132
+ ..._78
133
+ };
134
+ })(cosmos || (exports.cosmos = cosmos = {}));
@@ -0,0 +1,84 @@
1
+ import { GeneratedType, Registry, OfflineSigner } from "@cosmjs/proto-signing";
2
+ import { AminoTypes, SigningStargateClient } from "@cosmjs/stargate";
3
+ import { HttpEndpoint } from "@cosmjs/tendermint-rpc";
4
+ export declare const cosmosAminoConverters: {
5
+ "/cosmos.group.v1.MsgCreateGroup": {
6
+ aminoType: string;
7
+ toAmino: (message: import("./group/v1/tx").MsgCreateGroup) => import("./group/v1/tx").MsgCreateGroupAmino;
8
+ fromAmino: (object: import("./group/v1/tx").MsgCreateGroupAmino) => import("./group/v1/tx").MsgCreateGroup;
9
+ };
10
+ "/cosmos.group.v1.MsgUpdateGroupMembers": {
11
+ aminoType: string;
12
+ toAmino: (message: import("./group/v1/tx").MsgUpdateGroupMembers) => import("./group/v1/tx").MsgUpdateGroupMembersAmino;
13
+ fromAmino: (object: import("./group/v1/tx").MsgUpdateGroupMembersAmino) => import("./group/v1/tx").MsgUpdateGroupMembers;
14
+ };
15
+ "/cosmos.group.v1.MsgUpdateGroupAdmin": {
16
+ aminoType: string;
17
+ toAmino: (message: import("./group/v1/tx").MsgUpdateGroupAdmin) => import("./group/v1/tx").MsgUpdateGroupAdminAmino;
18
+ fromAmino: (object: import("./group/v1/tx").MsgUpdateGroupAdminAmino) => import("./group/v1/tx").MsgUpdateGroupAdmin;
19
+ };
20
+ "/cosmos.group.v1.MsgUpdateGroupMetadata": {
21
+ aminoType: string;
22
+ toAmino: (message: import("./group/v1/tx").MsgUpdateGroupMetadata) => import("./group/v1/tx").MsgUpdateGroupMetadataAmino;
23
+ fromAmino: (object: import("./group/v1/tx").MsgUpdateGroupMetadataAmino) => import("./group/v1/tx").MsgUpdateGroupMetadata;
24
+ };
25
+ "/cosmos.group.v1.MsgCreateGroupPolicy": {
26
+ aminoType: string;
27
+ toAmino: (message: import("./group/v1/tx").MsgCreateGroupPolicy) => import("./group/v1/tx").MsgCreateGroupPolicyAmino;
28
+ fromAmino: (object: import("./group/v1/tx").MsgCreateGroupPolicyAmino) => import("./group/v1/tx").MsgCreateGroupPolicy;
29
+ };
30
+ "/cosmos.group.v1.MsgCreateGroupWithPolicy": {
31
+ aminoType: string;
32
+ toAmino: (message: import("./group/v1/tx").MsgCreateGroupWithPolicy) => import("./group/v1/tx").MsgCreateGroupWithPolicyAmino;
33
+ fromAmino: (object: import("./group/v1/tx").MsgCreateGroupWithPolicyAmino) => import("./group/v1/tx").MsgCreateGroupWithPolicy;
34
+ };
35
+ "/cosmos.group.v1.MsgUpdateGroupPolicyAdmin": {
36
+ aminoType: string;
37
+ toAmino: (message: import("./group/v1/tx").MsgUpdateGroupPolicyAdmin) => import("./group/v1/tx").MsgUpdateGroupPolicyAdminAmino;
38
+ fromAmino: (object: import("./group/v1/tx").MsgUpdateGroupPolicyAdminAmino) => import("./group/v1/tx").MsgUpdateGroupPolicyAdmin;
39
+ };
40
+ "/cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicy": {
41
+ aminoType: string;
42
+ toAmino: (message: import("./group/v1/tx").MsgUpdateGroupPolicyDecisionPolicy) => import("./group/v1/tx").MsgUpdateGroupPolicyDecisionPolicyAmino;
43
+ fromAmino: (object: import("./group/v1/tx").MsgUpdateGroupPolicyDecisionPolicyAmino) => import("./group/v1/tx").MsgUpdateGroupPolicyDecisionPolicy;
44
+ };
45
+ "/cosmos.group.v1.MsgUpdateGroupPolicyMetadata": {
46
+ aminoType: string;
47
+ toAmino: (message: import("./group/v1/tx").MsgUpdateGroupPolicyMetadata) => import("./group/v1/tx").MsgUpdateGroupPolicyMetadataAmino;
48
+ fromAmino: (object: import("./group/v1/tx").MsgUpdateGroupPolicyMetadataAmino) => import("./group/v1/tx").MsgUpdateGroupPolicyMetadata;
49
+ };
50
+ "/cosmos.group.v1.MsgSubmitProposal": {
51
+ aminoType: string;
52
+ toAmino: (message: import("./group/v1/tx").MsgSubmitProposal) => import("./group/v1/tx").MsgSubmitProposalAmino;
53
+ fromAmino: (object: import("./group/v1/tx").MsgSubmitProposalAmino) => import("./group/v1/tx").MsgSubmitProposal;
54
+ };
55
+ "/cosmos.group.v1.MsgWithdrawProposal": {
56
+ aminoType: string;
57
+ toAmino: (message: import("./group/v1/tx").MsgWithdrawProposal) => import("./group/v1/tx").MsgWithdrawProposalAmino;
58
+ fromAmino: (object: import("./group/v1/tx").MsgWithdrawProposalAmino) => import("./group/v1/tx").MsgWithdrawProposal;
59
+ };
60
+ "/cosmos.group.v1.MsgVote": {
61
+ aminoType: string;
62
+ toAmino: (message: import("./group/v1/tx").MsgVote) => import("./group/v1/tx").MsgVoteAmino;
63
+ fromAmino: (object: import("./group/v1/tx").MsgVoteAmino) => import("./group/v1/tx").MsgVote;
64
+ };
65
+ "/cosmos.group.v1.MsgExec": {
66
+ aminoType: string;
67
+ toAmino: (message: import("./group/v1/tx").MsgExec) => import("./group/v1/tx").MsgExecAmino;
68
+ fromAmino: (object: import("./group/v1/tx").MsgExecAmino) => import("./group/v1/tx").MsgExec;
69
+ };
70
+ "/cosmos.group.v1.MsgLeaveGroup": {
71
+ aminoType: string;
72
+ toAmino: (message: import("./group/v1/tx").MsgLeaveGroup) => import("./group/v1/tx").MsgLeaveGroupAmino;
73
+ fromAmino: (object: import("./group/v1/tx").MsgLeaveGroupAmino) => import("./group/v1/tx").MsgLeaveGroup;
74
+ };
75
+ };
76
+ export declare const cosmosProtoRegistry: ReadonlyArray<[string, GeneratedType]>;
77
+ export declare const getSigningCosmosClientOptions: () => {
78
+ registry: Registry;
79
+ aminoTypes: AminoTypes;
80
+ };
81
+ export declare const getSigningCosmosClient: ({ rpcEndpoint, signer }: {
82
+ rpcEndpoint: string | HttpEndpoint;
83
+ signer: OfflineSigner;
84
+ }) => Promise<SigningStargateClient>;
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.getSigningCosmosClient = exports.getSigningCosmosClientOptions = exports.cosmosProtoRegistry = exports.cosmosAminoConverters = void 0;
37
+ //@ts-nocheck
38
+ const proto_signing_1 = require("@cosmjs/proto-signing");
39
+ const stargate_1 = require("@cosmjs/stargate");
40
+ const cosmosGroupV1TxRegistry = __importStar(require("./group/v1/tx.registry"));
41
+ const cosmosGroupV1TxAmino = __importStar(require("./group/v1/tx.amino"));
42
+ exports.cosmosAminoConverters = {
43
+ ...cosmosGroupV1TxAmino.AminoConverter
44
+ };
45
+ exports.cosmosProtoRegistry = [...cosmosGroupV1TxRegistry.registry];
46
+ const getSigningCosmosClientOptions = () => {
47
+ const registry = new proto_signing_1.Registry([...exports.cosmosProtoRegistry]);
48
+ const aminoTypes = new stargate_1.AminoTypes({
49
+ ...exports.cosmosAminoConverters
50
+ });
51
+ return {
52
+ registry,
53
+ aminoTypes
54
+ };
55
+ };
56
+ exports.getSigningCosmosClientOptions = getSigningCosmosClientOptions;
57
+ const getSigningCosmosClient = async ({ rpcEndpoint, signer }) => {
58
+ const { registry, aminoTypes } = (0, exports.getSigningCosmosClientOptions)();
59
+ const client = await stargate_1.SigningStargateClient.connectWithSigner(rpcEndpoint, signer, {
60
+ registry: registry,
61
+ aminoTypes
62
+ });
63
+ return client;
64
+ };
65
+ exports.getSigningCosmosClient = getSigningCosmosClient;
@@ -0,0 +1,245 @@
1
+ import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin";
2
+ import { Duration, DurationAmino, DurationSDKType } from "../../../google/protobuf/duration";
3
+ import { Any, AnyProtoMsg, AnyAmino, AnySDKType } from "../../../google/protobuf/any";
4
+ import { BinaryReader, BinaryWriter } from "../../../binary";
5
+ /**
6
+ * BasicAllowance implements Allowance with a one-time grant of coins
7
+ * that optionally expires. The grantee can use up to SpendLimit to cover fees.
8
+ */
9
+ export interface BasicAllowance {
10
+ $typeUrl?: "/cosmos.feegrant.v1beta1.BasicAllowance";
11
+ /**
12
+ * spend_limit specifies the maximum amount of coins that can be spent
13
+ * by this allowance and will be updated as coins are spent. If it is
14
+ * empty, there is no spend limit and any amount of coins can be spent.
15
+ */
16
+ spendLimit: Coin[];
17
+ /** expiration specifies an optional time when this allowance expires */
18
+ expiration?: Date;
19
+ }
20
+ export interface BasicAllowanceProtoMsg {
21
+ typeUrl: "/cosmos.feegrant.v1beta1.BasicAllowance";
22
+ value: Uint8Array;
23
+ }
24
+ /**
25
+ * BasicAllowance implements Allowance with a one-time grant of coins
26
+ * that optionally expires. The grantee can use up to SpendLimit to cover fees.
27
+ */
28
+ export interface BasicAllowanceAmino {
29
+ /**
30
+ * spend_limit specifies the maximum amount of coins that can be spent
31
+ * by this allowance and will be updated as coins are spent. If it is
32
+ * empty, there is no spend limit and any amount of coins can be spent.
33
+ */
34
+ spend_limit: CoinAmino[];
35
+ /** expiration specifies an optional time when this allowance expires */
36
+ expiration?: string;
37
+ }
38
+ export interface BasicAllowanceAminoMsg {
39
+ type: "cosmos-sdk/BasicAllowance";
40
+ value: BasicAllowanceAmino;
41
+ }
42
+ /**
43
+ * BasicAllowance implements Allowance with a one-time grant of coins
44
+ * that optionally expires. The grantee can use up to SpendLimit to cover fees.
45
+ */
46
+ export interface BasicAllowanceSDKType {
47
+ $typeUrl?: "/cosmos.feegrant.v1beta1.BasicAllowance";
48
+ spend_limit: CoinSDKType[];
49
+ expiration?: Date;
50
+ }
51
+ /**
52
+ * PeriodicAllowance extends Allowance to allow for both a maximum cap,
53
+ * as well as a limit per time period.
54
+ */
55
+ export interface PeriodicAllowance {
56
+ $typeUrl?: "/cosmos.feegrant.v1beta1.PeriodicAllowance";
57
+ /** basic specifies a struct of `BasicAllowance` */
58
+ basic: BasicAllowance;
59
+ /**
60
+ * period specifies the time duration in which period_spend_limit coins can
61
+ * be spent before that allowance is reset
62
+ */
63
+ period: Duration;
64
+ /**
65
+ * period_spend_limit specifies the maximum number of coins that can be spent
66
+ * in the period
67
+ */
68
+ periodSpendLimit: Coin[];
69
+ /** period_can_spend is the number of coins left to be spent before the period_reset time */
70
+ periodCanSpend: Coin[];
71
+ /**
72
+ * period_reset is the time at which this period resets and a new one begins,
73
+ * it is calculated from the start time of the first transaction after the
74
+ * last period ended
75
+ */
76
+ periodReset: Date;
77
+ }
78
+ export interface PeriodicAllowanceProtoMsg {
79
+ typeUrl: "/cosmos.feegrant.v1beta1.PeriodicAllowance";
80
+ value: Uint8Array;
81
+ }
82
+ /**
83
+ * PeriodicAllowance extends Allowance to allow for both a maximum cap,
84
+ * as well as a limit per time period.
85
+ */
86
+ export interface PeriodicAllowanceAmino {
87
+ /** basic specifies a struct of `BasicAllowance` */
88
+ basic: BasicAllowanceAmino;
89
+ /**
90
+ * period specifies the time duration in which period_spend_limit coins can
91
+ * be spent before that allowance is reset
92
+ */
93
+ period: DurationAmino;
94
+ /**
95
+ * period_spend_limit specifies the maximum number of coins that can be spent
96
+ * in the period
97
+ */
98
+ period_spend_limit: CoinAmino[];
99
+ /** period_can_spend is the number of coins left to be spent before the period_reset time */
100
+ period_can_spend: CoinAmino[];
101
+ /**
102
+ * period_reset is the time at which this period resets and a new one begins,
103
+ * it is calculated from the start time of the first transaction after the
104
+ * last period ended
105
+ */
106
+ period_reset: string;
107
+ }
108
+ export interface PeriodicAllowanceAminoMsg {
109
+ type: "cosmos-sdk/PeriodicAllowance";
110
+ value: PeriodicAllowanceAmino;
111
+ }
112
+ /**
113
+ * PeriodicAllowance extends Allowance to allow for both a maximum cap,
114
+ * as well as a limit per time period.
115
+ */
116
+ export interface PeriodicAllowanceSDKType {
117
+ $typeUrl?: "/cosmos.feegrant.v1beta1.PeriodicAllowance";
118
+ basic: BasicAllowanceSDKType;
119
+ period: DurationSDKType;
120
+ period_spend_limit: CoinSDKType[];
121
+ period_can_spend: CoinSDKType[];
122
+ period_reset: Date;
123
+ }
124
+ /** AllowedMsgAllowance creates allowance only for specified message types. */
125
+ export interface AllowedMsgAllowance {
126
+ $typeUrl?: "/cosmos.feegrant.v1beta1.AllowedMsgAllowance";
127
+ /** allowance can be any of basic and periodic fee allowance. */
128
+ allowance?: BasicAllowance | PeriodicAllowance | AllowedMsgAllowance | Any | undefined;
129
+ /** allowed_messages are the messages for which the grantee has the access. */
130
+ allowedMessages: string[];
131
+ }
132
+ export interface AllowedMsgAllowanceProtoMsg {
133
+ typeUrl: "/cosmos.feegrant.v1beta1.AllowedMsgAllowance";
134
+ value: Uint8Array;
135
+ }
136
+ export type AllowedMsgAllowanceEncoded = Omit<AllowedMsgAllowance, "allowance"> & {
137
+ /** allowance can be any of basic and periodic fee allowance. */ allowance?: BasicAllowanceProtoMsg | PeriodicAllowanceProtoMsg | AllowedMsgAllowanceProtoMsg | AnyProtoMsg | undefined;
138
+ };
139
+ /** AllowedMsgAllowance creates allowance only for specified message types. */
140
+ export interface AllowedMsgAllowanceAmino {
141
+ /** allowance can be any of basic and periodic fee allowance. */
142
+ allowance?: AnyAmino;
143
+ /** allowed_messages are the messages for which the grantee has the access. */
144
+ allowed_messages?: string[];
145
+ }
146
+ export interface AllowedMsgAllowanceAminoMsg {
147
+ type: "cosmos-sdk/AllowedMsgAllowance";
148
+ value: AllowedMsgAllowanceAmino;
149
+ }
150
+ /** AllowedMsgAllowance creates allowance only for specified message types. */
151
+ export interface AllowedMsgAllowanceSDKType {
152
+ $typeUrl?: "/cosmos.feegrant.v1beta1.AllowedMsgAllowance";
153
+ allowance?: BasicAllowanceSDKType | PeriodicAllowanceSDKType | AllowedMsgAllowanceSDKType | AnySDKType | undefined;
154
+ allowed_messages: string[];
155
+ }
156
+ /** Grant is stored in the KVStore to record a grant with full context */
157
+ export interface Grant {
158
+ /** granter is the address of the user granting an allowance of their funds. */
159
+ granter: string;
160
+ /** grantee is the address of the user being granted an allowance of another user's funds. */
161
+ grantee: string;
162
+ /** allowance can be any of basic, periodic, allowed fee allowance. */
163
+ allowance?: BasicAllowance | PeriodicAllowance | AllowedMsgAllowance | Any | undefined;
164
+ }
165
+ export interface GrantProtoMsg {
166
+ typeUrl: "/cosmos.feegrant.v1beta1.Grant";
167
+ value: Uint8Array;
168
+ }
169
+ export type GrantEncoded = Omit<Grant, "allowance"> & {
170
+ /** allowance can be any of basic, periodic, allowed fee allowance. */ allowance?: BasicAllowanceProtoMsg | PeriodicAllowanceProtoMsg | AllowedMsgAllowanceProtoMsg | AnyProtoMsg | undefined;
171
+ };
172
+ /** Grant is stored in the KVStore to record a grant with full context */
173
+ export interface GrantAmino {
174
+ /** granter is the address of the user granting an allowance of their funds. */
175
+ granter?: string;
176
+ /** grantee is the address of the user being granted an allowance of another user's funds. */
177
+ grantee?: string;
178
+ /** allowance can be any of basic, periodic, allowed fee allowance. */
179
+ allowance?: AnyAmino;
180
+ }
181
+ export interface GrantAminoMsg {
182
+ type: "cosmos-sdk/Grant";
183
+ value: GrantAmino;
184
+ }
185
+ /** Grant is stored in the KVStore to record a grant with full context */
186
+ export interface GrantSDKType {
187
+ granter: string;
188
+ grantee: string;
189
+ allowance?: BasicAllowanceSDKType | PeriodicAllowanceSDKType | AllowedMsgAllowanceSDKType | AnySDKType | undefined;
190
+ }
191
+ export declare const BasicAllowance: {
192
+ typeUrl: string;
193
+ encode(message: BasicAllowance, writer?: BinaryWriter): BinaryWriter;
194
+ decode(input: BinaryReader | Uint8Array, length?: number): BasicAllowance;
195
+ fromPartial(object: Partial<BasicAllowance>): BasicAllowance;
196
+ fromAmino(object: BasicAllowanceAmino): BasicAllowance;
197
+ toAmino(message: BasicAllowance): BasicAllowanceAmino;
198
+ fromAminoMsg(object: BasicAllowanceAminoMsg): BasicAllowance;
199
+ toAminoMsg(message: BasicAllowance): BasicAllowanceAminoMsg;
200
+ fromProtoMsg(message: BasicAllowanceProtoMsg): BasicAllowance;
201
+ toProto(message: BasicAllowance): Uint8Array;
202
+ toProtoMsg(message: BasicAllowance): BasicAllowanceProtoMsg;
203
+ };
204
+ export declare const PeriodicAllowance: {
205
+ typeUrl: string;
206
+ encode(message: PeriodicAllowance, writer?: BinaryWriter): BinaryWriter;
207
+ decode(input: BinaryReader | Uint8Array, length?: number): PeriodicAllowance;
208
+ fromPartial(object: Partial<PeriodicAllowance>): PeriodicAllowance;
209
+ fromAmino(object: PeriodicAllowanceAmino): PeriodicAllowance;
210
+ toAmino(message: PeriodicAllowance): PeriodicAllowanceAmino;
211
+ fromAminoMsg(object: PeriodicAllowanceAminoMsg): PeriodicAllowance;
212
+ toAminoMsg(message: PeriodicAllowance): PeriodicAllowanceAminoMsg;
213
+ fromProtoMsg(message: PeriodicAllowanceProtoMsg): PeriodicAllowance;
214
+ toProto(message: PeriodicAllowance): Uint8Array;
215
+ toProtoMsg(message: PeriodicAllowance): PeriodicAllowanceProtoMsg;
216
+ };
217
+ export declare const AllowedMsgAllowance: {
218
+ typeUrl: string;
219
+ encode(message: AllowedMsgAllowance, writer?: BinaryWriter): BinaryWriter;
220
+ decode(input: BinaryReader | Uint8Array, length?: number): AllowedMsgAllowance;
221
+ fromPartial(object: Partial<AllowedMsgAllowance>): AllowedMsgAllowance;
222
+ fromAmino(object: AllowedMsgAllowanceAmino): AllowedMsgAllowance;
223
+ toAmino(message: AllowedMsgAllowance): AllowedMsgAllowanceAmino;
224
+ fromAminoMsg(object: AllowedMsgAllowanceAminoMsg): AllowedMsgAllowance;
225
+ toAminoMsg(message: AllowedMsgAllowance): AllowedMsgAllowanceAminoMsg;
226
+ fromProtoMsg(message: AllowedMsgAllowanceProtoMsg): AllowedMsgAllowance;
227
+ toProto(message: AllowedMsgAllowance): Uint8Array;
228
+ toProtoMsg(message: AllowedMsgAllowance): AllowedMsgAllowanceProtoMsg;
229
+ };
230
+ export declare const Grant: {
231
+ typeUrl: string;
232
+ encode(message: Grant, writer?: BinaryWriter): BinaryWriter;
233
+ decode(input: BinaryReader | Uint8Array, length?: number): Grant;
234
+ fromPartial(object: Partial<Grant>): Grant;
235
+ fromAmino(object: GrantAmino): Grant;
236
+ toAmino(message: Grant): GrantAmino;
237
+ fromAminoMsg(object: GrantAminoMsg): Grant;
238
+ toAminoMsg(message: Grant): GrantAminoMsg;
239
+ fromProtoMsg(message: GrantProtoMsg): Grant;
240
+ toProto(message: Grant): Uint8Array;
241
+ toProtoMsg(message: Grant): GrantProtoMsg;
242
+ };
243
+ export declare const Cosmos_feegrantv1beta1FeeAllowanceI_InterfaceDecoder: (input: BinaryReader | Uint8Array) => BasicAllowance | PeriodicAllowance | AllowedMsgAllowance | Any;
244
+ export declare const Cosmos_feegrantv1beta1FeeAllowanceI_FromAmino: (content: AnyAmino) => Any;
245
+ export declare const Cosmos_feegrantv1beta1FeeAllowanceI_ToAmino: (content: Any) => AnyAmino;