@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,1116 @@
1
+ import { GeneratedType, Registry } from "@cosmjs/proto-signing";
2
+ import { MsgToggleForcePush, MsgRevokeProviderPermission, MsgAuthorizeProvider, MsgCreateTask, MsgUpdateTask, MsgDeleteTask, MsgSetBranch, MsgMultiSetBranch, MsgDeleteBranch, MsgMultiDeleteBranch, MsgSetTag, MsgMultiSetTag, MsgDeleteTag, MsgMultiDeleteTag, MsgCreateBounty, MsgUpdateBountyExpiry, MsgCloseBounty, MsgDeleteBounty, MsgExercise, MsgCreateRelease, MsgUpdateRelease, MsgDeleteRelease, MsgCreatePullRequest, MsgUpdatePullRequestTitle, MsgUpdatePullRequestDescription, MsgInvokeMergePullRequest, MsgInvokeDaoMergePullRequest, MsgSetPullRequestState, MsgAddPullRequestReviewers, MsgRemovePullRequestReviewers, MsgAddPullRequestAssignees, MsgRemovePullRequestAssignees, MsgLinkPullRequestIssueByIid, MsgUnlinkPullRequestIssueByIid, MsgAddPullRequestLabels, MsgRemovePullRequestLabels, MsgDeletePullRequest, MsgCreateDao, MsgRenameDao, MsgUpdateDaoDescription, MsgUpdateDaoWebsite, MsgUpdateDaoLocation, MsgUpdateDaoAvatar, MsgUpdateDaoMetadata, MsgDaoTreasurySpend, MsgUpdateDaoConfig, MsgDaoCreateRelease, MsgDeleteDao, MsgCreateComment, MsgUpdateComment, MsgDeleteComment, MsgToggleCommentResolved, MsgCreateIssue, MsgUpdateIssueTitle, MsgUpdateIssueDescription, MsgToggleIssueState, MsgAddIssueAssignees, MsgRemoveIssueAssignees, MsgAddIssueLabels, MsgRemoveIssueLabels, MsgDeleteIssue, MsgCreateRepository, MsgInvokeForkRepository, MsgForkRepository, MsgForkRepositorySuccess, MsgRenameRepository, MsgUpdateRepositoryDescription, MsgToggleRepositoryArchived, MsgChangeOwner, MsgUpdateRepositoryCollaborator, MsgUpdateDaoRepositoryCollaborator, MsgRemoveRepositoryCollaborator, MsgRemoveDaoRepositoryCollaborator, MsgCreateRepositoryLabel, MsgUpdateRepositoryLabel, MsgDeleteRepositoryLabel, MsgSetDefaultBranch, MsgToggleRepositoryForking, MsgToggleArweaveBackup, MsgDeleteRepository, MsgCreateUser, MsgUpdateUserUsername, MsgUpdateUserName, MsgUpdateUserBio, MsgUpdateUserAvatar, MsgDeleteUser, MsgUpdateRepositoryBackupRef, MsgAddRepositoryBackupRef, MsgUpdateUserPinnedRepositories, MsgUpdateDaoPinnedRepositories, MsgUpdateParams, MsgDistributePlatformIncentives } from "./tx";
3
+ export declare const registry: ReadonlyArray<[string, GeneratedType]>;
4
+ export declare const load: (protoRegistry: Registry) => void;
5
+ export declare const MessageComposer: {
6
+ encoded: {
7
+ toggleForcePush(value: MsgToggleForcePush): {
8
+ typeUrl: string;
9
+ value: Uint8Array<ArrayBufferLike>;
10
+ };
11
+ revokeProviderPermission(value: MsgRevokeProviderPermission): {
12
+ typeUrl: string;
13
+ value: Uint8Array<ArrayBufferLike>;
14
+ };
15
+ authorizeProvider(value: MsgAuthorizeProvider): {
16
+ typeUrl: string;
17
+ value: Uint8Array<ArrayBufferLike>;
18
+ };
19
+ createTask(value: MsgCreateTask): {
20
+ typeUrl: string;
21
+ value: Uint8Array<ArrayBufferLike>;
22
+ };
23
+ updateTask(value: MsgUpdateTask): {
24
+ typeUrl: string;
25
+ value: Uint8Array<ArrayBufferLike>;
26
+ };
27
+ deleteTask(value: MsgDeleteTask): {
28
+ typeUrl: string;
29
+ value: Uint8Array<ArrayBufferLike>;
30
+ };
31
+ setBranch(value: MsgSetBranch): {
32
+ typeUrl: string;
33
+ value: Uint8Array<ArrayBufferLike>;
34
+ };
35
+ multiSetBranch(value: MsgMultiSetBranch): {
36
+ typeUrl: string;
37
+ value: Uint8Array<ArrayBufferLike>;
38
+ };
39
+ deleteBranch(value: MsgDeleteBranch): {
40
+ typeUrl: string;
41
+ value: Uint8Array<ArrayBufferLike>;
42
+ };
43
+ multiDeleteBranch(value: MsgMultiDeleteBranch): {
44
+ typeUrl: string;
45
+ value: Uint8Array<ArrayBufferLike>;
46
+ };
47
+ setTag(value: MsgSetTag): {
48
+ typeUrl: string;
49
+ value: Uint8Array<ArrayBufferLike>;
50
+ };
51
+ multiSetTag(value: MsgMultiSetTag): {
52
+ typeUrl: string;
53
+ value: Uint8Array<ArrayBufferLike>;
54
+ };
55
+ deleteTag(value: MsgDeleteTag): {
56
+ typeUrl: string;
57
+ value: Uint8Array<ArrayBufferLike>;
58
+ };
59
+ multiDeleteTag(value: MsgMultiDeleteTag): {
60
+ typeUrl: string;
61
+ value: Uint8Array<ArrayBufferLike>;
62
+ };
63
+ createBounty(value: MsgCreateBounty): {
64
+ typeUrl: string;
65
+ value: Uint8Array<ArrayBufferLike>;
66
+ };
67
+ updateBountyExpiry(value: MsgUpdateBountyExpiry): {
68
+ typeUrl: string;
69
+ value: Uint8Array<ArrayBufferLike>;
70
+ };
71
+ closeBounty(value: MsgCloseBounty): {
72
+ typeUrl: string;
73
+ value: Uint8Array<ArrayBufferLike>;
74
+ };
75
+ deleteBounty(value: MsgDeleteBounty): {
76
+ typeUrl: string;
77
+ value: Uint8Array<ArrayBufferLike>;
78
+ };
79
+ exercise(value: MsgExercise): {
80
+ typeUrl: string;
81
+ value: Uint8Array<ArrayBufferLike>;
82
+ };
83
+ createRelease(value: MsgCreateRelease): {
84
+ typeUrl: string;
85
+ value: Uint8Array<ArrayBufferLike>;
86
+ };
87
+ updateRelease(value: MsgUpdateRelease): {
88
+ typeUrl: string;
89
+ value: Uint8Array<ArrayBufferLike>;
90
+ };
91
+ deleteRelease(value: MsgDeleteRelease): {
92
+ typeUrl: string;
93
+ value: Uint8Array<ArrayBufferLike>;
94
+ };
95
+ createPullRequest(value: MsgCreatePullRequest): {
96
+ typeUrl: string;
97
+ value: Uint8Array<ArrayBufferLike>;
98
+ };
99
+ updatePullRequestTitle(value: MsgUpdatePullRequestTitle): {
100
+ typeUrl: string;
101
+ value: Uint8Array<ArrayBufferLike>;
102
+ };
103
+ updatePullRequestDescription(value: MsgUpdatePullRequestDescription): {
104
+ typeUrl: string;
105
+ value: Uint8Array<ArrayBufferLike>;
106
+ };
107
+ invokeMergePullRequest(value: MsgInvokeMergePullRequest): {
108
+ typeUrl: string;
109
+ value: Uint8Array<ArrayBufferLike>;
110
+ };
111
+ invokeDaoMergePullRequest(value: MsgInvokeDaoMergePullRequest): {
112
+ typeUrl: string;
113
+ value: Uint8Array<ArrayBufferLike>;
114
+ };
115
+ setPullRequestState(value: MsgSetPullRequestState): {
116
+ typeUrl: string;
117
+ value: Uint8Array<ArrayBufferLike>;
118
+ };
119
+ addPullRequestReviewers(value: MsgAddPullRequestReviewers): {
120
+ typeUrl: string;
121
+ value: Uint8Array<ArrayBufferLike>;
122
+ };
123
+ removePullRequestReviewers(value: MsgRemovePullRequestReviewers): {
124
+ typeUrl: string;
125
+ value: Uint8Array<ArrayBufferLike>;
126
+ };
127
+ addPullRequestAssignees(value: MsgAddPullRequestAssignees): {
128
+ typeUrl: string;
129
+ value: Uint8Array<ArrayBufferLike>;
130
+ };
131
+ removePullRequestAssignees(value: MsgRemovePullRequestAssignees): {
132
+ typeUrl: string;
133
+ value: Uint8Array<ArrayBufferLike>;
134
+ };
135
+ linkPullRequestIssueByIid(value: MsgLinkPullRequestIssueByIid): {
136
+ typeUrl: string;
137
+ value: Uint8Array<ArrayBufferLike>;
138
+ };
139
+ unlinkPullRequestIssueByIid(value: MsgUnlinkPullRequestIssueByIid): {
140
+ typeUrl: string;
141
+ value: Uint8Array<ArrayBufferLike>;
142
+ };
143
+ addPullRequestLabels(value: MsgAddPullRequestLabels): {
144
+ typeUrl: string;
145
+ value: Uint8Array<ArrayBufferLike>;
146
+ };
147
+ removePullRequestLabels(value: MsgRemovePullRequestLabels): {
148
+ typeUrl: string;
149
+ value: Uint8Array<ArrayBufferLike>;
150
+ };
151
+ deletePullRequest(value: MsgDeletePullRequest): {
152
+ typeUrl: string;
153
+ value: Uint8Array<ArrayBufferLike>;
154
+ };
155
+ createDao(value: MsgCreateDao): {
156
+ typeUrl: string;
157
+ value: Uint8Array<ArrayBufferLike>;
158
+ };
159
+ renameDao(value: MsgRenameDao): {
160
+ typeUrl: string;
161
+ value: Uint8Array<ArrayBufferLike>;
162
+ };
163
+ updateDaoDescription(value: MsgUpdateDaoDescription): {
164
+ typeUrl: string;
165
+ value: Uint8Array<ArrayBufferLike>;
166
+ };
167
+ updateDaoWebsite(value: MsgUpdateDaoWebsite): {
168
+ typeUrl: string;
169
+ value: Uint8Array<ArrayBufferLike>;
170
+ };
171
+ updateDaoLocation(value: MsgUpdateDaoLocation): {
172
+ typeUrl: string;
173
+ value: Uint8Array<ArrayBufferLike>;
174
+ };
175
+ updateDaoAvatar(value: MsgUpdateDaoAvatar): {
176
+ typeUrl: string;
177
+ value: Uint8Array<ArrayBufferLike>;
178
+ };
179
+ updateDaoMetadata(value: MsgUpdateDaoMetadata): {
180
+ typeUrl: string;
181
+ value: Uint8Array<ArrayBufferLike>;
182
+ };
183
+ daoTreasurySpend(value: MsgDaoTreasurySpend): {
184
+ typeUrl: string;
185
+ value: Uint8Array<ArrayBufferLike>;
186
+ };
187
+ updateDaoConfig(value: MsgUpdateDaoConfig): {
188
+ typeUrl: string;
189
+ value: Uint8Array<ArrayBufferLike>;
190
+ };
191
+ daoCreateRelease(value: MsgDaoCreateRelease): {
192
+ typeUrl: string;
193
+ value: Uint8Array<ArrayBufferLike>;
194
+ };
195
+ deleteDao(value: MsgDeleteDao): {
196
+ typeUrl: string;
197
+ value: Uint8Array<ArrayBufferLike>;
198
+ };
199
+ createComment(value: MsgCreateComment): {
200
+ typeUrl: string;
201
+ value: Uint8Array<ArrayBufferLike>;
202
+ };
203
+ updateComment(value: MsgUpdateComment): {
204
+ typeUrl: string;
205
+ value: Uint8Array<ArrayBufferLike>;
206
+ };
207
+ deleteComment(value: MsgDeleteComment): {
208
+ typeUrl: string;
209
+ value: Uint8Array<ArrayBufferLike>;
210
+ };
211
+ toggleCommentResolved(value: MsgToggleCommentResolved): {
212
+ typeUrl: string;
213
+ value: Uint8Array<ArrayBufferLike>;
214
+ };
215
+ createIssue(value: MsgCreateIssue): {
216
+ typeUrl: string;
217
+ value: Uint8Array<ArrayBufferLike>;
218
+ };
219
+ updateIssueTitle(value: MsgUpdateIssueTitle): {
220
+ typeUrl: string;
221
+ value: Uint8Array<ArrayBufferLike>;
222
+ };
223
+ updateIssueDescription(value: MsgUpdateIssueDescription): {
224
+ typeUrl: string;
225
+ value: Uint8Array<ArrayBufferLike>;
226
+ };
227
+ toggleIssueState(value: MsgToggleIssueState): {
228
+ typeUrl: string;
229
+ value: Uint8Array<ArrayBufferLike>;
230
+ };
231
+ addIssueAssignees(value: MsgAddIssueAssignees): {
232
+ typeUrl: string;
233
+ value: Uint8Array<ArrayBufferLike>;
234
+ };
235
+ removeIssueAssignees(value: MsgRemoveIssueAssignees): {
236
+ typeUrl: string;
237
+ value: Uint8Array<ArrayBufferLike>;
238
+ };
239
+ addIssueLabels(value: MsgAddIssueLabels): {
240
+ typeUrl: string;
241
+ value: Uint8Array<ArrayBufferLike>;
242
+ };
243
+ removeIssueLabels(value: MsgRemoveIssueLabels): {
244
+ typeUrl: string;
245
+ value: Uint8Array<ArrayBufferLike>;
246
+ };
247
+ deleteIssue(value: MsgDeleteIssue): {
248
+ typeUrl: string;
249
+ value: Uint8Array<ArrayBufferLike>;
250
+ };
251
+ createRepository(value: MsgCreateRepository): {
252
+ typeUrl: string;
253
+ value: Uint8Array<ArrayBufferLike>;
254
+ };
255
+ invokeForkRepository(value: MsgInvokeForkRepository): {
256
+ typeUrl: string;
257
+ value: Uint8Array<ArrayBufferLike>;
258
+ };
259
+ forkRepository(value: MsgForkRepository): {
260
+ typeUrl: string;
261
+ value: Uint8Array<ArrayBufferLike>;
262
+ };
263
+ forkRepositorySuccess(value: MsgForkRepositorySuccess): {
264
+ typeUrl: string;
265
+ value: Uint8Array<ArrayBufferLike>;
266
+ };
267
+ renameRepository(value: MsgRenameRepository): {
268
+ typeUrl: string;
269
+ value: Uint8Array<ArrayBufferLike>;
270
+ };
271
+ updateRepositoryDescription(value: MsgUpdateRepositoryDescription): {
272
+ typeUrl: string;
273
+ value: Uint8Array<ArrayBufferLike>;
274
+ };
275
+ toggleRepositoryArchived(value: MsgToggleRepositoryArchived): {
276
+ typeUrl: string;
277
+ value: Uint8Array<ArrayBufferLike>;
278
+ };
279
+ changeOwner(value: MsgChangeOwner): {
280
+ typeUrl: string;
281
+ value: Uint8Array<ArrayBufferLike>;
282
+ };
283
+ updateRepositoryCollaborator(value: MsgUpdateRepositoryCollaborator): {
284
+ typeUrl: string;
285
+ value: Uint8Array<ArrayBufferLike>;
286
+ };
287
+ updateDaoRepositoryCollaborator(value: MsgUpdateDaoRepositoryCollaborator): {
288
+ typeUrl: string;
289
+ value: Uint8Array<ArrayBufferLike>;
290
+ };
291
+ removeRepositoryCollaborator(value: MsgRemoveRepositoryCollaborator): {
292
+ typeUrl: string;
293
+ value: Uint8Array<ArrayBufferLike>;
294
+ };
295
+ removeDaoRepositoryCollaborator(value: MsgRemoveDaoRepositoryCollaborator): {
296
+ typeUrl: string;
297
+ value: Uint8Array<ArrayBufferLike>;
298
+ };
299
+ createRepositoryLabel(value: MsgCreateRepositoryLabel): {
300
+ typeUrl: string;
301
+ value: Uint8Array<ArrayBufferLike>;
302
+ };
303
+ updateRepositoryLabel(value: MsgUpdateRepositoryLabel): {
304
+ typeUrl: string;
305
+ value: Uint8Array<ArrayBufferLike>;
306
+ };
307
+ deleteRepositoryLabel(value: MsgDeleteRepositoryLabel): {
308
+ typeUrl: string;
309
+ value: Uint8Array<ArrayBufferLike>;
310
+ };
311
+ setDefaultBranch(value: MsgSetDefaultBranch): {
312
+ typeUrl: string;
313
+ value: Uint8Array<ArrayBufferLike>;
314
+ };
315
+ toggleRepositoryForking(value: MsgToggleRepositoryForking): {
316
+ typeUrl: string;
317
+ value: Uint8Array<ArrayBufferLike>;
318
+ };
319
+ toggleArweaveBackup(value: MsgToggleArweaveBackup): {
320
+ typeUrl: string;
321
+ value: Uint8Array<ArrayBufferLike>;
322
+ };
323
+ deleteRepository(value: MsgDeleteRepository): {
324
+ typeUrl: string;
325
+ value: Uint8Array<ArrayBufferLike>;
326
+ };
327
+ createUser(value: MsgCreateUser): {
328
+ typeUrl: string;
329
+ value: Uint8Array<ArrayBufferLike>;
330
+ };
331
+ updateUserUsername(value: MsgUpdateUserUsername): {
332
+ typeUrl: string;
333
+ value: Uint8Array<ArrayBufferLike>;
334
+ };
335
+ updateUserName(value: MsgUpdateUserName): {
336
+ typeUrl: string;
337
+ value: Uint8Array<ArrayBufferLike>;
338
+ };
339
+ updateUserBio(value: MsgUpdateUserBio): {
340
+ typeUrl: string;
341
+ value: Uint8Array<ArrayBufferLike>;
342
+ };
343
+ updateUserAvatar(value: MsgUpdateUserAvatar): {
344
+ typeUrl: string;
345
+ value: Uint8Array<ArrayBufferLike>;
346
+ };
347
+ deleteUser(value: MsgDeleteUser): {
348
+ typeUrl: string;
349
+ value: Uint8Array<ArrayBufferLike>;
350
+ };
351
+ updateRepositoryBackupRef(value: MsgUpdateRepositoryBackupRef): {
352
+ typeUrl: string;
353
+ value: Uint8Array<ArrayBufferLike>;
354
+ };
355
+ addRepositoryBackupRef(value: MsgAddRepositoryBackupRef): {
356
+ typeUrl: string;
357
+ value: Uint8Array<ArrayBufferLike>;
358
+ };
359
+ updateUserPinnedRepositories(value: MsgUpdateUserPinnedRepositories): {
360
+ typeUrl: string;
361
+ value: Uint8Array<ArrayBufferLike>;
362
+ };
363
+ updateDaoPinnedRepositories(value: MsgUpdateDaoPinnedRepositories): {
364
+ typeUrl: string;
365
+ value: Uint8Array<ArrayBufferLike>;
366
+ };
367
+ updateParams(value: MsgUpdateParams): {
368
+ typeUrl: string;
369
+ value: Uint8Array<ArrayBufferLike>;
370
+ };
371
+ distributePlatformIncentives(value: MsgDistributePlatformIncentives): {
372
+ typeUrl: string;
373
+ value: Uint8Array<ArrayBufferLike>;
374
+ };
375
+ };
376
+ withTypeUrl: {
377
+ toggleForcePush(value: MsgToggleForcePush): {
378
+ typeUrl: string;
379
+ value: MsgToggleForcePush;
380
+ };
381
+ revokeProviderPermission(value: MsgRevokeProviderPermission): {
382
+ typeUrl: string;
383
+ value: MsgRevokeProviderPermission;
384
+ };
385
+ authorizeProvider(value: MsgAuthorizeProvider): {
386
+ typeUrl: string;
387
+ value: MsgAuthorizeProvider;
388
+ };
389
+ createTask(value: MsgCreateTask): {
390
+ typeUrl: string;
391
+ value: MsgCreateTask;
392
+ };
393
+ updateTask(value: MsgUpdateTask): {
394
+ typeUrl: string;
395
+ value: MsgUpdateTask;
396
+ };
397
+ deleteTask(value: MsgDeleteTask): {
398
+ typeUrl: string;
399
+ value: MsgDeleteTask;
400
+ };
401
+ setBranch(value: MsgSetBranch): {
402
+ typeUrl: string;
403
+ value: MsgSetBranch;
404
+ };
405
+ multiSetBranch(value: MsgMultiSetBranch): {
406
+ typeUrl: string;
407
+ value: MsgMultiSetBranch;
408
+ };
409
+ deleteBranch(value: MsgDeleteBranch): {
410
+ typeUrl: string;
411
+ value: MsgDeleteBranch;
412
+ };
413
+ multiDeleteBranch(value: MsgMultiDeleteBranch): {
414
+ typeUrl: string;
415
+ value: MsgMultiDeleteBranch;
416
+ };
417
+ setTag(value: MsgSetTag): {
418
+ typeUrl: string;
419
+ value: MsgSetTag;
420
+ };
421
+ multiSetTag(value: MsgMultiSetTag): {
422
+ typeUrl: string;
423
+ value: MsgMultiSetTag;
424
+ };
425
+ deleteTag(value: MsgDeleteTag): {
426
+ typeUrl: string;
427
+ value: MsgDeleteTag;
428
+ };
429
+ multiDeleteTag(value: MsgMultiDeleteTag): {
430
+ typeUrl: string;
431
+ value: MsgMultiDeleteTag;
432
+ };
433
+ createBounty(value: MsgCreateBounty): {
434
+ typeUrl: string;
435
+ value: MsgCreateBounty;
436
+ };
437
+ updateBountyExpiry(value: MsgUpdateBountyExpiry): {
438
+ typeUrl: string;
439
+ value: MsgUpdateBountyExpiry;
440
+ };
441
+ closeBounty(value: MsgCloseBounty): {
442
+ typeUrl: string;
443
+ value: MsgCloseBounty;
444
+ };
445
+ deleteBounty(value: MsgDeleteBounty): {
446
+ typeUrl: string;
447
+ value: MsgDeleteBounty;
448
+ };
449
+ exercise(value: MsgExercise): {
450
+ typeUrl: string;
451
+ value: MsgExercise;
452
+ };
453
+ createRelease(value: MsgCreateRelease): {
454
+ typeUrl: string;
455
+ value: MsgCreateRelease;
456
+ };
457
+ updateRelease(value: MsgUpdateRelease): {
458
+ typeUrl: string;
459
+ value: MsgUpdateRelease;
460
+ };
461
+ deleteRelease(value: MsgDeleteRelease): {
462
+ typeUrl: string;
463
+ value: MsgDeleteRelease;
464
+ };
465
+ createPullRequest(value: MsgCreatePullRequest): {
466
+ typeUrl: string;
467
+ value: MsgCreatePullRequest;
468
+ };
469
+ updatePullRequestTitle(value: MsgUpdatePullRequestTitle): {
470
+ typeUrl: string;
471
+ value: MsgUpdatePullRequestTitle;
472
+ };
473
+ updatePullRequestDescription(value: MsgUpdatePullRequestDescription): {
474
+ typeUrl: string;
475
+ value: MsgUpdatePullRequestDescription;
476
+ };
477
+ invokeMergePullRequest(value: MsgInvokeMergePullRequest): {
478
+ typeUrl: string;
479
+ value: MsgInvokeMergePullRequest;
480
+ };
481
+ invokeDaoMergePullRequest(value: MsgInvokeDaoMergePullRequest): {
482
+ typeUrl: string;
483
+ value: MsgInvokeDaoMergePullRequest;
484
+ };
485
+ setPullRequestState(value: MsgSetPullRequestState): {
486
+ typeUrl: string;
487
+ value: MsgSetPullRequestState;
488
+ };
489
+ addPullRequestReviewers(value: MsgAddPullRequestReviewers): {
490
+ typeUrl: string;
491
+ value: MsgAddPullRequestReviewers;
492
+ };
493
+ removePullRequestReviewers(value: MsgRemovePullRequestReviewers): {
494
+ typeUrl: string;
495
+ value: MsgRemovePullRequestReviewers;
496
+ };
497
+ addPullRequestAssignees(value: MsgAddPullRequestAssignees): {
498
+ typeUrl: string;
499
+ value: MsgAddPullRequestAssignees;
500
+ };
501
+ removePullRequestAssignees(value: MsgRemovePullRequestAssignees): {
502
+ typeUrl: string;
503
+ value: MsgRemovePullRequestAssignees;
504
+ };
505
+ linkPullRequestIssueByIid(value: MsgLinkPullRequestIssueByIid): {
506
+ typeUrl: string;
507
+ value: MsgLinkPullRequestIssueByIid;
508
+ };
509
+ unlinkPullRequestIssueByIid(value: MsgUnlinkPullRequestIssueByIid): {
510
+ typeUrl: string;
511
+ value: MsgUnlinkPullRequestIssueByIid;
512
+ };
513
+ addPullRequestLabels(value: MsgAddPullRequestLabels): {
514
+ typeUrl: string;
515
+ value: MsgAddPullRequestLabels;
516
+ };
517
+ removePullRequestLabels(value: MsgRemovePullRequestLabels): {
518
+ typeUrl: string;
519
+ value: MsgRemovePullRequestLabels;
520
+ };
521
+ deletePullRequest(value: MsgDeletePullRequest): {
522
+ typeUrl: string;
523
+ value: MsgDeletePullRequest;
524
+ };
525
+ createDao(value: MsgCreateDao): {
526
+ typeUrl: string;
527
+ value: MsgCreateDao;
528
+ };
529
+ renameDao(value: MsgRenameDao): {
530
+ typeUrl: string;
531
+ value: MsgRenameDao;
532
+ };
533
+ updateDaoDescription(value: MsgUpdateDaoDescription): {
534
+ typeUrl: string;
535
+ value: MsgUpdateDaoDescription;
536
+ };
537
+ updateDaoWebsite(value: MsgUpdateDaoWebsite): {
538
+ typeUrl: string;
539
+ value: MsgUpdateDaoWebsite;
540
+ };
541
+ updateDaoLocation(value: MsgUpdateDaoLocation): {
542
+ typeUrl: string;
543
+ value: MsgUpdateDaoLocation;
544
+ };
545
+ updateDaoAvatar(value: MsgUpdateDaoAvatar): {
546
+ typeUrl: string;
547
+ value: MsgUpdateDaoAvatar;
548
+ };
549
+ updateDaoMetadata(value: MsgUpdateDaoMetadata): {
550
+ typeUrl: string;
551
+ value: MsgUpdateDaoMetadata;
552
+ };
553
+ daoTreasurySpend(value: MsgDaoTreasurySpend): {
554
+ typeUrl: string;
555
+ value: MsgDaoTreasurySpend;
556
+ };
557
+ updateDaoConfig(value: MsgUpdateDaoConfig): {
558
+ typeUrl: string;
559
+ value: MsgUpdateDaoConfig;
560
+ };
561
+ daoCreateRelease(value: MsgDaoCreateRelease): {
562
+ typeUrl: string;
563
+ value: MsgDaoCreateRelease;
564
+ };
565
+ deleteDao(value: MsgDeleteDao): {
566
+ typeUrl: string;
567
+ value: MsgDeleteDao;
568
+ };
569
+ createComment(value: MsgCreateComment): {
570
+ typeUrl: string;
571
+ value: MsgCreateComment;
572
+ };
573
+ updateComment(value: MsgUpdateComment): {
574
+ typeUrl: string;
575
+ value: MsgUpdateComment;
576
+ };
577
+ deleteComment(value: MsgDeleteComment): {
578
+ typeUrl: string;
579
+ value: MsgDeleteComment;
580
+ };
581
+ toggleCommentResolved(value: MsgToggleCommentResolved): {
582
+ typeUrl: string;
583
+ value: MsgToggleCommentResolved;
584
+ };
585
+ createIssue(value: MsgCreateIssue): {
586
+ typeUrl: string;
587
+ value: MsgCreateIssue;
588
+ };
589
+ updateIssueTitle(value: MsgUpdateIssueTitle): {
590
+ typeUrl: string;
591
+ value: MsgUpdateIssueTitle;
592
+ };
593
+ updateIssueDescription(value: MsgUpdateIssueDescription): {
594
+ typeUrl: string;
595
+ value: MsgUpdateIssueDescription;
596
+ };
597
+ toggleIssueState(value: MsgToggleIssueState): {
598
+ typeUrl: string;
599
+ value: MsgToggleIssueState;
600
+ };
601
+ addIssueAssignees(value: MsgAddIssueAssignees): {
602
+ typeUrl: string;
603
+ value: MsgAddIssueAssignees;
604
+ };
605
+ removeIssueAssignees(value: MsgRemoveIssueAssignees): {
606
+ typeUrl: string;
607
+ value: MsgRemoveIssueAssignees;
608
+ };
609
+ addIssueLabels(value: MsgAddIssueLabels): {
610
+ typeUrl: string;
611
+ value: MsgAddIssueLabels;
612
+ };
613
+ removeIssueLabels(value: MsgRemoveIssueLabels): {
614
+ typeUrl: string;
615
+ value: MsgRemoveIssueLabels;
616
+ };
617
+ deleteIssue(value: MsgDeleteIssue): {
618
+ typeUrl: string;
619
+ value: MsgDeleteIssue;
620
+ };
621
+ createRepository(value: MsgCreateRepository): {
622
+ typeUrl: string;
623
+ value: MsgCreateRepository;
624
+ };
625
+ invokeForkRepository(value: MsgInvokeForkRepository): {
626
+ typeUrl: string;
627
+ value: MsgInvokeForkRepository;
628
+ };
629
+ forkRepository(value: MsgForkRepository): {
630
+ typeUrl: string;
631
+ value: MsgForkRepository;
632
+ };
633
+ forkRepositorySuccess(value: MsgForkRepositorySuccess): {
634
+ typeUrl: string;
635
+ value: MsgForkRepositorySuccess;
636
+ };
637
+ renameRepository(value: MsgRenameRepository): {
638
+ typeUrl: string;
639
+ value: MsgRenameRepository;
640
+ };
641
+ updateRepositoryDescription(value: MsgUpdateRepositoryDescription): {
642
+ typeUrl: string;
643
+ value: MsgUpdateRepositoryDescription;
644
+ };
645
+ toggleRepositoryArchived(value: MsgToggleRepositoryArchived): {
646
+ typeUrl: string;
647
+ value: MsgToggleRepositoryArchived;
648
+ };
649
+ changeOwner(value: MsgChangeOwner): {
650
+ typeUrl: string;
651
+ value: MsgChangeOwner;
652
+ };
653
+ updateRepositoryCollaborator(value: MsgUpdateRepositoryCollaborator): {
654
+ typeUrl: string;
655
+ value: MsgUpdateRepositoryCollaborator;
656
+ };
657
+ updateDaoRepositoryCollaborator(value: MsgUpdateDaoRepositoryCollaborator): {
658
+ typeUrl: string;
659
+ value: MsgUpdateDaoRepositoryCollaborator;
660
+ };
661
+ removeRepositoryCollaborator(value: MsgRemoveRepositoryCollaborator): {
662
+ typeUrl: string;
663
+ value: MsgRemoveRepositoryCollaborator;
664
+ };
665
+ removeDaoRepositoryCollaborator(value: MsgRemoveDaoRepositoryCollaborator): {
666
+ typeUrl: string;
667
+ value: MsgRemoveDaoRepositoryCollaborator;
668
+ };
669
+ createRepositoryLabel(value: MsgCreateRepositoryLabel): {
670
+ typeUrl: string;
671
+ value: MsgCreateRepositoryLabel;
672
+ };
673
+ updateRepositoryLabel(value: MsgUpdateRepositoryLabel): {
674
+ typeUrl: string;
675
+ value: MsgUpdateRepositoryLabel;
676
+ };
677
+ deleteRepositoryLabel(value: MsgDeleteRepositoryLabel): {
678
+ typeUrl: string;
679
+ value: MsgDeleteRepositoryLabel;
680
+ };
681
+ setDefaultBranch(value: MsgSetDefaultBranch): {
682
+ typeUrl: string;
683
+ value: MsgSetDefaultBranch;
684
+ };
685
+ toggleRepositoryForking(value: MsgToggleRepositoryForking): {
686
+ typeUrl: string;
687
+ value: MsgToggleRepositoryForking;
688
+ };
689
+ toggleArweaveBackup(value: MsgToggleArweaveBackup): {
690
+ typeUrl: string;
691
+ value: MsgToggleArweaveBackup;
692
+ };
693
+ deleteRepository(value: MsgDeleteRepository): {
694
+ typeUrl: string;
695
+ value: MsgDeleteRepository;
696
+ };
697
+ createUser(value: MsgCreateUser): {
698
+ typeUrl: string;
699
+ value: MsgCreateUser;
700
+ };
701
+ updateUserUsername(value: MsgUpdateUserUsername): {
702
+ typeUrl: string;
703
+ value: MsgUpdateUserUsername;
704
+ };
705
+ updateUserName(value: MsgUpdateUserName): {
706
+ typeUrl: string;
707
+ value: MsgUpdateUserName;
708
+ };
709
+ updateUserBio(value: MsgUpdateUserBio): {
710
+ typeUrl: string;
711
+ value: MsgUpdateUserBio;
712
+ };
713
+ updateUserAvatar(value: MsgUpdateUserAvatar): {
714
+ typeUrl: string;
715
+ value: MsgUpdateUserAvatar;
716
+ };
717
+ deleteUser(value: MsgDeleteUser): {
718
+ typeUrl: string;
719
+ value: MsgDeleteUser;
720
+ };
721
+ updateRepositoryBackupRef(value: MsgUpdateRepositoryBackupRef): {
722
+ typeUrl: string;
723
+ value: MsgUpdateRepositoryBackupRef;
724
+ };
725
+ addRepositoryBackupRef(value: MsgAddRepositoryBackupRef): {
726
+ typeUrl: string;
727
+ value: MsgAddRepositoryBackupRef;
728
+ };
729
+ updateUserPinnedRepositories(value: MsgUpdateUserPinnedRepositories): {
730
+ typeUrl: string;
731
+ value: MsgUpdateUserPinnedRepositories;
732
+ };
733
+ updateDaoPinnedRepositories(value: MsgUpdateDaoPinnedRepositories): {
734
+ typeUrl: string;
735
+ value: MsgUpdateDaoPinnedRepositories;
736
+ };
737
+ updateParams(value: MsgUpdateParams): {
738
+ typeUrl: string;
739
+ value: MsgUpdateParams;
740
+ };
741
+ distributePlatformIncentives(value: MsgDistributePlatformIncentives): {
742
+ typeUrl: string;
743
+ value: MsgDistributePlatformIncentives;
744
+ };
745
+ };
746
+ fromPartial: {
747
+ toggleForcePush(value: MsgToggleForcePush): {
748
+ typeUrl: string;
749
+ value: MsgToggleForcePush;
750
+ };
751
+ revokeProviderPermission(value: MsgRevokeProviderPermission): {
752
+ typeUrl: string;
753
+ value: MsgRevokeProviderPermission;
754
+ };
755
+ authorizeProvider(value: MsgAuthorizeProvider): {
756
+ typeUrl: string;
757
+ value: MsgAuthorizeProvider;
758
+ };
759
+ createTask(value: MsgCreateTask): {
760
+ typeUrl: string;
761
+ value: MsgCreateTask;
762
+ };
763
+ updateTask(value: MsgUpdateTask): {
764
+ typeUrl: string;
765
+ value: MsgUpdateTask;
766
+ };
767
+ deleteTask(value: MsgDeleteTask): {
768
+ typeUrl: string;
769
+ value: MsgDeleteTask;
770
+ };
771
+ setBranch(value: MsgSetBranch): {
772
+ typeUrl: string;
773
+ value: MsgSetBranch;
774
+ };
775
+ multiSetBranch(value: MsgMultiSetBranch): {
776
+ typeUrl: string;
777
+ value: MsgMultiSetBranch;
778
+ };
779
+ deleteBranch(value: MsgDeleteBranch): {
780
+ typeUrl: string;
781
+ value: MsgDeleteBranch;
782
+ };
783
+ multiDeleteBranch(value: MsgMultiDeleteBranch): {
784
+ typeUrl: string;
785
+ value: MsgMultiDeleteBranch;
786
+ };
787
+ setTag(value: MsgSetTag): {
788
+ typeUrl: string;
789
+ value: MsgSetTag;
790
+ };
791
+ multiSetTag(value: MsgMultiSetTag): {
792
+ typeUrl: string;
793
+ value: MsgMultiSetTag;
794
+ };
795
+ deleteTag(value: MsgDeleteTag): {
796
+ typeUrl: string;
797
+ value: MsgDeleteTag;
798
+ };
799
+ multiDeleteTag(value: MsgMultiDeleteTag): {
800
+ typeUrl: string;
801
+ value: MsgMultiDeleteTag;
802
+ };
803
+ createBounty(value: MsgCreateBounty): {
804
+ typeUrl: string;
805
+ value: MsgCreateBounty;
806
+ };
807
+ updateBountyExpiry(value: MsgUpdateBountyExpiry): {
808
+ typeUrl: string;
809
+ value: MsgUpdateBountyExpiry;
810
+ };
811
+ closeBounty(value: MsgCloseBounty): {
812
+ typeUrl: string;
813
+ value: MsgCloseBounty;
814
+ };
815
+ deleteBounty(value: MsgDeleteBounty): {
816
+ typeUrl: string;
817
+ value: MsgDeleteBounty;
818
+ };
819
+ exercise(value: MsgExercise): {
820
+ typeUrl: string;
821
+ value: MsgExercise;
822
+ };
823
+ createRelease(value: MsgCreateRelease): {
824
+ typeUrl: string;
825
+ value: MsgCreateRelease;
826
+ };
827
+ updateRelease(value: MsgUpdateRelease): {
828
+ typeUrl: string;
829
+ value: MsgUpdateRelease;
830
+ };
831
+ deleteRelease(value: MsgDeleteRelease): {
832
+ typeUrl: string;
833
+ value: MsgDeleteRelease;
834
+ };
835
+ createPullRequest(value: MsgCreatePullRequest): {
836
+ typeUrl: string;
837
+ value: MsgCreatePullRequest;
838
+ };
839
+ updatePullRequestTitle(value: MsgUpdatePullRequestTitle): {
840
+ typeUrl: string;
841
+ value: MsgUpdatePullRequestTitle;
842
+ };
843
+ updatePullRequestDescription(value: MsgUpdatePullRequestDescription): {
844
+ typeUrl: string;
845
+ value: MsgUpdatePullRequestDescription;
846
+ };
847
+ invokeMergePullRequest(value: MsgInvokeMergePullRequest): {
848
+ typeUrl: string;
849
+ value: MsgInvokeMergePullRequest;
850
+ };
851
+ invokeDaoMergePullRequest(value: MsgInvokeDaoMergePullRequest): {
852
+ typeUrl: string;
853
+ value: MsgInvokeDaoMergePullRequest;
854
+ };
855
+ setPullRequestState(value: MsgSetPullRequestState): {
856
+ typeUrl: string;
857
+ value: MsgSetPullRequestState;
858
+ };
859
+ addPullRequestReviewers(value: MsgAddPullRequestReviewers): {
860
+ typeUrl: string;
861
+ value: MsgAddPullRequestReviewers;
862
+ };
863
+ removePullRequestReviewers(value: MsgRemovePullRequestReviewers): {
864
+ typeUrl: string;
865
+ value: MsgRemovePullRequestReviewers;
866
+ };
867
+ addPullRequestAssignees(value: MsgAddPullRequestAssignees): {
868
+ typeUrl: string;
869
+ value: MsgAddPullRequestAssignees;
870
+ };
871
+ removePullRequestAssignees(value: MsgRemovePullRequestAssignees): {
872
+ typeUrl: string;
873
+ value: MsgRemovePullRequestAssignees;
874
+ };
875
+ linkPullRequestIssueByIid(value: MsgLinkPullRequestIssueByIid): {
876
+ typeUrl: string;
877
+ value: MsgLinkPullRequestIssueByIid;
878
+ };
879
+ unlinkPullRequestIssueByIid(value: MsgUnlinkPullRequestIssueByIid): {
880
+ typeUrl: string;
881
+ value: MsgUnlinkPullRequestIssueByIid;
882
+ };
883
+ addPullRequestLabels(value: MsgAddPullRequestLabels): {
884
+ typeUrl: string;
885
+ value: MsgAddPullRequestLabels;
886
+ };
887
+ removePullRequestLabels(value: MsgRemovePullRequestLabels): {
888
+ typeUrl: string;
889
+ value: MsgRemovePullRequestLabels;
890
+ };
891
+ deletePullRequest(value: MsgDeletePullRequest): {
892
+ typeUrl: string;
893
+ value: MsgDeletePullRequest;
894
+ };
895
+ createDao(value: MsgCreateDao): {
896
+ typeUrl: string;
897
+ value: MsgCreateDao;
898
+ };
899
+ renameDao(value: MsgRenameDao): {
900
+ typeUrl: string;
901
+ value: MsgRenameDao;
902
+ };
903
+ updateDaoDescription(value: MsgUpdateDaoDescription): {
904
+ typeUrl: string;
905
+ value: MsgUpdateDaoDescription;
906
+ };
907
+ updateDaoWebsite(value: MsgUpdateDaoWebsite): {
908
+ typeUrl: string;
909
+ value: MsgUpdateDaoWebsite;
910
+ };
911
+ updateDaoLocation(value: MsgUpdateDaoLocation): {
912
+ typeUrl: string;
913
+ value: MsgUpdateDaoLocation;
914
+ };
915
+ updateDaoAvatar(value: MsgUpdateDaoAvatar): {
916
+ typeUrl: string;
917
+ value: MsgUpdateDaoAvatar;
918
+ };
919
+ updateDaoMetadata(value: MsgUpdateDaoMetadata): {
920
+ typeUrl: string;
921
+ value: MsgUpdateDaoMetadata;
922
+ };
923
+ daoTreasurySpend(value: MsgDaoTreasurySpend): {
924
+ typeUrl: string;
925
+ value: MsgDaoTreasurySpend;
926
+ };
927
+ updateDaoConfig(value: MsgUpdateDaoConfig): {
928
+ typeUrl: string;
929
+ value: MsgUpdateDaoConfig;
930
+ };
931
+ daoCreateRelease(value: MsgDaoCreateRelease): {
932
+ typeUrl: string;
933
+ value: MsgDaoCreateRelease;
934
+ };
935
+ deleteDao(value: MsgDeleteDao): {
936
+ typeUrl: string;
937
+ value: MsgDeleteDao;
938
+ };
939
+ createComment(value: MsgCreateComment): {
940
+ typeUrl: string;
941
+ value: MsgCreateComment;
942
+ };
943
+ updateComment(value: MsgUpdateComment): {
944
+ typeUrl: string;
945
+ value: MsgUpdateComment;
946
+ };
947
+ deleteComment(value: MsgDeleteComment): {
948
+ typeUrl: string;
949
+ value: MsgDeleteComment;
950
+ };
951
+ toggleCommentResolved(value: MsgToggleCommentResolved): {
952
+ typeUrl: string;
953
+ value: MsgToggleCommentResolved;
954
+ };
955
+ createIssue(value: MsgCreateIssue): {
956
+ typeUrl: string;
957
+ value: MsgCreateIssue;
958
+ };
959
+ updateIssueTitle(value: MsgUpdateIssueTitle): {
960
+ typeUrl: string;
961
+ value: MsgUpdateIssueTitle;
962
+ };
963
+ updateIssueDescription(value: MsgUpdateIssueDescription): {
964
+ typeUrl: string;
965
+ value: MsgUpdateIssueDescription;
966
+ };
967
+ toggleIssueState(value: MsgToggleIssueState): {
968
+ typeUrl: string;
969
+ value: MsgToggleIssueState;
970
+ };
971
+ addIssueAssignees(value: MsgAddIssueAssignees): {
972
+ typeUrl: string;
973
+ value: MsgAddIssueAssignees;
974
+ };
975
+ removeIssueAssignees(value: MsgRemoveIssueAssignees): {
976
+ typeUrl: string;
977
+ value: MsgRemoveIssueAssignees;
978
+ };
979
+ addIssueLabels(value: MsgAddIssueLabels): {
980
+ typeUrl: string;
981
+ value: MsgAddIssueLabels;
982
+ };
983
+ removeIssueLabels(value: MsgRemoveIssueLabels): {
984
+ typeUrl: string;
985
+ value: MsgRemoveIssueLabels;
986
+ };
987
+ deleteIssue(value: MsgDeleteIssue): {
988
+ typeUrl: string;
989
+ value: MsgDeleteIssue;
990
+ };
991
+ createRepository(value: MsgCreateRepository): {
992
+ typeUrl: string;
993
+ value: MsgCreateRepository;
994
+ };
995
+ invokeForkRepository(value: MsgInvokeForkRepository): {
996
+ typeUrl: string;
997
+ value: MsgInvokeForkRepository;
998
+ };
999
+ forkRepository(value: MsgForkRepository): {
1000
+ typeUrl: string;
1001
+ value: MsgForkRepository;
1002
+ };
1003
+ forkRepositorySuccess(value: MsgForkRepositorySuccess): {
1004
+ typeUrl: string;
1005
+ value: MsgForkRepositorySuccess;
1006
+ };
1007
+ renameRepository(value: MsgRenameRepository): {
1008
+ typeUrl: string;
1009
+ value: MsgRenameRepository;
1010
+ };
1011
+ updateRepositoryDescription(value: MsgUpdateRepositoryDescription): {
1012
+ typeUrl: string;
1013
+ value: MsgUpdateRepositoryDescription;
1014
+ };
1015
+ toggleRepositoryArchived(value: MsgToggleRepositoryArchived): {
1016
+ typeUrl: string;
1017
+ value: MsgToggleRepositoryArchived;
1018
+ };
1019
+ changeOwner(value: MsgChangeOwner): {
1020
+ typeUrl: string;
1021
+ value: MsgChangeOwner;
1022
+ };
1023
+ updateRepositoryCollaborator(value: MsgUpdateRepositoryCollaborator): {
1024
+ typeUrl: string;
1025
+ value: MsgUpdateRepositoryCollaborator;
1026
+ };
1027
+ updateDaoRepositoryCollaborator(value: MsgUpdateDaoRepositoryCollaborator): {
1028
+ typeUrl: string;
1029
+ value: MsgUpdateDaoRepositoryCollaborator;
1030
+ };
1031
+ removeRepositoryCollaborator(value: MsgRemoveRepositoryCollaborator): {
1032
+ typeUrl: string;
1033
+ value: MsgRemoveRepositoryCollaborator;
1034
+ };
1035
+ removeDaoRepositoryCollaborator(value: MsgRemoveDaoRepositoryCollaborator): {
1036
+ typeUrl: string;
1037
+ value: MsgRemoveDaoRepositoryCollaborator;
1038
+ };
1039
+ createRepositoryLabel(value: MsgCreateRepositoryLabel): {
1040
+ typeUrl: string;
1041
+ value: MsgCreateRepositoryLabel;
1042
+ };
1043
+ updateRepositoryLabel(value: MsgUpdateRepositoryLabel): {
1044
+ typeUrl: string;
1045
+ value: MsgUpdateRepositoryLabel;
1046
+ };
1047
+ deleteRepositoryLabel(value: MsgDeleteRepositoryLabel): {
1048
+ typeUrl: string;
1049
+ value: MsgDeleteRepositoryLabel;
1050
+ };
1051
+ setDefaultBranch(value: MsgSetDefaultBranch): {
1052
+ typeUrl: string;
1053
+ value: MsgSetDefaultBranch;
1054
+ };
1055
+ toggleRepositoryForking(value: MsgToggleRepositoryForking): {
1056
+ typeUrl: string;
1057
+ value: MsgToggleRepositoryForking;
1058
+ };
1059
+ toggleArweaveBackup(value: MsgToggleArweaveBackup): {
1060
+ typeUrl: string;
1061
+ value: MsgToggleArweaveBackup;
1062
+ };
1063
+ deleteRepository(value: MsgDeleteRepository): {
1064
+ typeUrl: string;
1065
+ value: MsgDeleteRepository;
1066
+ };
1067
+ createUser(value: MsgCreateUser): {
1068
+ typeUrl: string;
1069
+ value: MsgCreateUser;
1070
+ };
1071
+ updateUserUsername(value: MsgUpdateUserUsername): {
1072
+ typeUrl: string;
1073
+ value: MsgUpdateUserUsername;
1074
+ };
1075
+ updateUserName(value: MsgUpdateUserName): {
1076
+ typeUrl: string;
1077
+ value: MsgUpdateUserName;
1078
+ };
1079
+ updateUserBio(value: MsgUpdateUserBio): {
1080
+ typeUrl: string;
1081
+ value: MsgUpdateUserBio;
1082
+ };
1083
+ updateUserAvatar(value: MsgUpdateUserAvatar): {
1084
+ typeUrl: string;
1085
+ value: MsgUpdateUserAvatar;
1086
+ };
1087
+ deleteUser(value: MsgDeleteUser): {
1088
+ typeUrl: string;
1089
+ value: MsgDeleteUser;
1090
+ };
1091
+ updateRepositoryBackupRef(value: MsgUpdateRepositoryBackupRef): {
1092
+ typeUrl: string;
1093
+ value: MsgUpdateRepositoryBackupRef;
1094
+ };
1095
+ addRepositoryBackupRef(value: MsgAddRepositoryBackupRef): {
1096
+ typeUrl: string;
1097
+ value: MsgAddRepositoryBackupRef;
1098
+ };
1099
+ updateUserPinnedRepositories(value: MsgUpdateUserPinnedRepositories): {
1100
+ typeUrl: string;
1101
+ value: MsgUpdateUserPinnedRepositories;
1102
+ };
1103
+ updateDaoPinnedRepositories(value: MsgUpdateDaoPinnedRepositories): {
1104
+ typeUrl: string;
1105
+ value: MsgUpdateDaoPinnedRepositories;
1106
+ };
1107
+ updateParams(value: MsgUpdateParams): {
1108
+ typeUrl: string;
1109
+ value: MsgUpdateParams;
1110
+ };
1111
+ distributePlatformIncentives(value: MsgDistributePlatformIncentives): {
1112
+ typeUrl: string;
1113
+ value: MsgDistributePlatformIncentives;
1114
+ };
1115
+ };
1116
+ };