example-js-sdk 0.0.1

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 (1134) hide show
  1. package/README.md +89 -0
  2. package/lib/CarbonSDK.d.ts +145 -0
  3. package/lib/CarbonSDK.js +496 -0
  4. package/lib/clients/BatchQueryClient.d.ts +26 -0
  5. package/lib/clients/BatchQueryClient.js +88 -0
  6. package/lib/clients/BlockchainClient.d.ts +16 -0
  7. package/lib/clients/BlockchainClient.js +19 -0
  8. package/lib/clients/CarbonQueryClient.d.ts +108 -0
  9. package/lib/clients/CarbonQueryClient.js +109 -0
  10. package/lib/clients/ETHClient.d.ts +101 -0
  11. package/lib/clients/ETHClient.js +344 -0
  12. package/lib/clients/GasFee.d.ts +12 -0
  13. package/lib/clients/GasFee.js +30 -0
  14. package/lib/clients/GrpcQueryClient.d.ts +22 -0
  15. package/lib/clients/GrpcQueryClient.js +60 -0
  16. package/lib/clients/HydrogenClient.d.ts +28 -0
  17. package/lib/clients/HydrogenClient.js +225 -0
  18. package/lib/clients/InsightsQueryClient.d.ts +77 -0
  19. package/lib/clients/InsightsQueryClient.js +496 -0
  20. package/lib/clients/TokenClient.d.ts +93 -0
  21. package/lib/clients/TokenClient.js +715 -0
  22. package/lib/clients/index.d.ts +7 -0
  23. package/lib/clients/index.js +20 -0
  24. package/lib/codec/alliance/alliance/alliance.d.ts +72 -0
  25. package/lib/codec/alliance/alliance/alliance.js +369 -0
  26. package/lib/codec/alliance/alliance/delegations.d.ts +67 -0
  27. package/lib/codec/alliance/alliance/delegations.js +373 -0
  28. package/lib/codec/alliance/alliance/events.d.ts +76 -0
  29. package/lib/codec/alliance/alliance/events.js +451 -0
  30. package/lib/codec/alliance/alliance/export.d.ts +10 -0
  31. package/lib/codec/alliance/alliance/export.js +84 -0
  32. package/lib/codec/alliance/alliance/genesis.d.ts +80 -0
  33. package/lib/codec/alliance/alliance/genesis.js +503 -0
  34. package/lib/codec/alliance/alliance/gov.d.ts +84 -0
  35. package/lib/codec/alliance/alliance/gov.js +403 -0
  36. package/lib/codec/alliance/alliance/params.d.ts +37 -0
  37. package/lib/codec/alliance/alliance/params.js +204 -0
  38. package/lib/codec/alliance/alliance/query.d.ts +442 -0
  39. package/lib/codec/alliance/alliance/query.js +2036 -0
  40. package/lib/codec/alliance/alliance/redelegations.d.ts +60 -0
  41. package/lib/codec/alliance/alliance/redelegations.js +290 -0
  42. package/lib/codec/alliance/alliance/tx.d.ts +250 -0
  43. package/lib/codec/alliance/alliance/tx.js +1096 -0
  44. package/lib/codec/alliance/alliance/unbonding.d.ts +27 -0
  45. package/lib/codec/alliance/alliance/unbonding.js +128 -0
  46. package/lib/codec/amino/amino.d.ts +1 -0
  47. package/lib/codec/amino/amino.js +5 -0
  48. package/lib/codec/carbon-models.d.ts +23 -0
  49. package/lib/codec/carbon-models.js +59 -0
  50. package/lib/codec/cosmos/app/runtime/v1alpha1/module.d.ts +86 -0
  51. package/lib/codec/cosmos/app/runtime/v1alpha1/module.js +279 -0
  52. package/lib/codec/cosmos/app/v1alpha1/config.d.ts +86 -0
  53. package/lib/codec/cosmos/app/v1alpha1/config.js +237 -0
  54. package/lib/codec/cosmos/app/v1alpha1/module.d.ts +112 -0
  55. package/lib/codec/cosmos/app/v1alpha1/module.js +215 -0
  56. package/lib/codec/cosmos/app/v1alpha1/query.d.ts +49 -0
  57. package/lib/codec/cosmos/app/v1alpha1/query.js +118 -0
  58. package/lib/codec/cosmos/auth/module/v1/module.d.ts +43 -0
  59. package/lib/codec/cosmos/auth/module/v1/module.js +166 -0
  60. package/lib/codec/cosmos/auth/v1beta1/auth.d.ts +80 -0
  61. package/lib/codec/cosmos/auth/v1beta1/auth.js +424 -0
  62. package/lib/codec/cosmos/auth/v1beta1/export.d.ts +3 -0
  63. package/lib/codec/cosmos/auth/v1beta1/export.js +32 -0
  64. package/lib/codec/cosmos/auth/v1beta1/genesis.d.ts +25 -0
  65. package/lib/codec/cosmos/auth/v1beta1/genesis.js +88 -0
  66. package/lib/codec/cosmos/auth/v1beta1/query.d.ts +402 -0
  67. package/lib/codec/cosmos/auth/v1beta1/query.js +1110 -0
  68. package/lib/codec/cosmos/auth/v1beta1/tx.d.ts +69 -0
  69. package/lib/codec/cosmos/auth/v1beta1/tx.js +132 -0
  70. package/lib/codec/cosmos/authz/module/v1/module.d.ts +19 -0
  71. package/lib/codec/cosmos/authz/module/v1/module.js +51 -0
  72. package/lib/codec/cosmos/authz/v1beta1/authz.d.ts +78 -0
  73. package/lib/codec/cosmos/authz/v1beta1/authz.js +298 -0
  74. package/lib/codec/cosmos/authz/v1beta1/event.d.ts +43 -0
  75. package/lib/codec/cosmos/authz/v1beta1/event.js +165 -0
  76. package/lib/codec/cosmos/authz/v1beta1/genesis.d.ts +22 -0
  77. package/lib/codec/cosmos/authz/v1beta1/genesis.js +72 -0
  78. package/lib/codec/cosmos/authz/v1beta1/query.d.ts +131 -0
  79. package/lib/codec/cosmos/authz/v1beta1/query.js +473 -0
  80. package/lib/codec/cosmos/authz/v1beta1/tx.d.ts +135 -0
  81. package/lib/codec/cosmos/authz/v1beta1/tx.js +426 -0
  82. package/lib/codec/cosmos/autocli/v1/options.d.ts +191 -0
  83. package/lib/codec/cosmos/autocli/v1/options.js +737 -0
  84. package/lib/codec/cosmos/autocli/v1/query.d.ts +66 -0
  85. package/lib/codec/cosmos/autocli/v1/query.js +203 -0
  86. package/lib/codec/cosmos/bank/module/v1/module.d.ts +34 -0
  87. package/lib/codec/cosmos/bank/module/v1/module.js +105 -0
  88. package/lib/codec/cosmos/bank/v1beta1/authz.d.ts +33 -0
  89. package/lib/codec/cosmos/bank/v1beta1/authz.js +87 -0
  90. package/lib/codec/cosmos/bank/v1beta1/bank.d.ts +167 -0
  91. package/lib/codec/cosmos/bank/v1beta1/bank.js +554 -0
  92. package/lib/codec/cosmos/bank/v1beta1/export.d.ts +5 -0
  93. package/lib/codec/cosmos/bank/v1beta1/export.js +52 -0
  94. package/lib/codec/cosmos/bank/v1beta1/genesis.d.ts +56 -0
  95. package/lib/codec/cosmos/bank/v1beta1/genesis.js +210 -0
  96. package/lib/codec/cosmos/bank/v1beta1/query.d.ts +587 -0
  97. package/lib/codec/cosmos/bank/v1beta1/query.js +1710 -0
  98. package/lib/codec/cosmos/bank/v1beta1/tx.d.ts +184 -0
  99. package/lib/codec/cosmos/bank/v1beta1/tx.js +499 -0
  100. package/lib/codec/cosmos/base/abci/v1beta1/abci.d.ts +269 -0
  101. package/lib/codec/cosmos/base/abci/v1beta1/abci.js +1109 -0
  102. package/lib/codec/cosmos/base/node/v1beta1/query.d.ts +85 -0
  103. package/lib/codec/cosmos/base/node/v1beta1/query.js +374 -0
  104. package/lib/codec/cosmos/base/query/v1beta1/pagination.d.ts +87 -0
  105. package/lib/codec/cosmos/base/query/v1beta1/pagination.js +221 -0
  106. package/lib/codec/cosmos/base/reflection/v1beta1/reflection.d.ts +88 -0
  107. package/lib/codec/cosmos/base/reflection/v1beta1/reflection.js +233 -0
  108. package/lib/codec/cosmos/base/reflection/v2alpha1/reflection.d.ts +443 -0
  109. package/lib/codec/cosmos/base/reflection/v2alpha1/reflection.js +1537 -0
  110. package/lib/codec/cosmos/base/tendermint/v1beta1/query.d.ts +343 -0
  111. package/lib/codec/cosmos/base/tendermint/v1beta1/query.js +1530 -0
  112. package/lib/codec/cosmos/base/tendermint/v1beta1/types.d.ts +69 -0
  113. package/lib/codec/cosmos/base/tendermint/v1beta1/types.js +417 -0
  114. package/lib/codec/cosmos/base/v1beta1/coin.d.ts +74 -0
  115. package/lib/codec/cosmos/base/v1beta1/coin.js +237 -0
  116. package/lib/codec/cosmos/circuit/module/v1/module.d.ts +21 -0
  117. package/lib/codec/cosmos/circuit/module/v1/module.js +65 -0
  118. package/lib/codec/cosmos/circuit/v1/query.d.ts +106 -0
  119. package/lib/codec/cosmos/circuit/v1/query.js +356 -0
  120. package/lib/codec/cosmos/circuit/v1/tx.d.ts +137 -0
  121. package/lib/codec/cosmos/circuit/v1/tx.js +398 -0
  122. package/lib/codec/cosmos/circuit/v1/types.d.ts +84 -0
  123. package/lib/codec/cosmos/circuit/v1/types.js +289 -0
  124. package/lib/codec/cosmos/consensus/module/v1/module.d.ts +21 -0
  125. package/lib/codec/cosmos/consensus/module/v1/module.js +65 -0
  126. package/lib/codec/cosmos/consensus/v1/query.d.ts +54 -0
  127. package/lib/codec/cosmos/consensus/v1/query.js +118 -0
  128. package/lib/codec/cosmos/consensus/v1/tx.d.ts +70 -0
  129. package/lib/codec/cosmos/consensus/v1/tx.js +176 -0
  130. package/lib/codec/cosmos/crisis/module/v1/module.d.ts +23 -0
  131. package/lib/codec/cosmos/crisis/module/v1/module.js +79 -0
  132. package/lib/codec/cosmos/crisis/v1beta1/genesis.d.ts +25 -0
  133. package/lib/codec/cosmos/crisis/v1beta1/genesis.js +69 -0
  134. package/lib/codec/cosmos/crisis/v1beta1/tx.d.ts +96 -0
  135. package/lib/codec/cosmos/crisis/v1beta1/tx.js +250 -0
  136. package/lib/codec/cosmos/crypto/ed25519/keys.d.ts +41 -0
  137. package/lib/codec/cosmos/crypto/ed25519/keys.js +155 -0
  138. package/lib/codec/cosmos/crypto/hd/v1/hd.d.ts +33 -0
  139. package/lib/codec/cosmos/crypto/hd/v1/hd.js +115 -0
  140. package/lib/codec/cosmos/crypto/keyring/v1/record.d.ts +83 -0
  141. package/lib/codec/cosmos/crypto/keyring/v1/record.js +314 -0
  142. package/lib/codec/cosmos/crypto/multisig/keys.d.ts +26 -0
  143. package/lib/codec/cosmos/crypto/multisig/keys.js +85 -0
  144. package/lib/codec/cosmos/crypto/multisig/v1beta1/multisig.d.ts +42 -0
  145. package/lib/codec/cosmos/crypto/multisig/v1beta1/multisig.js +175 -0
  146. package/lib/codec/cosmos/crypto/secp256k1/keys.d.ts +38 -0
  147. package/lib/codec/cosmos/crypto/secp256k1/keys.js +155 -0
  148. package/lib/codec/cosmos/crypto/secp256r1/keys.d.ts +38 -0
  149. package/lib/codec/cosmos/crypto/secp256r1/keys.js +155 -0
  150. package/lib/codec/cosmos/distribution/module/v1/module.d.ts +22 -0
  151. package/lib/codec/cosmos/distribution/module/v1/module.js +79 -0
  152. package/lib/codec/cosmos/distribution/v1beta1/distribution.d.ts +237 -0
  153. package/lib/codec/cosmos/distribution/v1beta1/distribution.js +899 -0
  154. package/lib/codec/cosmos/distribution/v1beta1/export.d.ts +4 -0
  155. package/lib/codec/cosmos/distribution/v1beta1/export.js +63 -0
  156. package/lib/codec/cosmos/distribution/v1beta1/genesis.d.ts +164 -0
  157. package/lib/codec/cosmos/distribution/v1beta1/genesis.js +761 -0
  158. package/lib/codec/cosmos/distribution/v1beta1/query.d.ts +409 -0
  159. package/lib/codec/cosmos/distribution/v1beta1/query.js +1291 -0
  160. package/lib/codec/cosmos/distribution/v1beta1/tx.d.ts +304 -0
  161. package/lib/codec/cosmos/distribution/v1beta1/tx.js +820 -0
  162. package/lib/codec/cosmos/evidence/module/v1/module.d.ts +19 -0
  163. package/lib/codec/cosmos/evidence/module/v1/module.js +51 -0
  164. package/lib/codec/cosmos/evidence/v1beta1/evidence.d.ts +30 -0
  165. package/lib/codec/cosmos/evidence/v1beta1/evidence.js +130 -0
  166. package/lib/codec/cosmos/evidence/v1beta1/genesis.d.ts +22 -0
  167. package/lib/codec/cosmos/evidence/v1beta1/genesis.js +68 -0
  168. package/lib/codec/cosmos/evidence/v1beta1/query.d.ts +100 -0
  169. package/lib/codec/cosmos/evidence/v1beta1/query.js +312 -0
  170. package/lib/codec/cosmos/evidence/v1beta1/tx.d.ts +59 -0
  171. package/lib/codec/cosmos/evidence/v1beta1/tx.js +184 -0
  172. package/lib/codec/cosmos/feegrant/module/v1/module.d.ts +19 -0
  173. package/lib/codec/cosmos/feegrant/module/v1/module.js +51 -0
  174. package/lib/codec/cosmos/feegrant/v1beta1/feegrant.d.ts +100 -0
  175. package/lib/codec/cosmos/feegrant/v1beta1/feegrant.js +373 -0
  176. package/lib/codec/cosmos/feegrant/v1beta1/genesis.d.ts +22 -0
  177. package/lib/codec/cosmos/feegrant/v1beta1/genesis.js +70 -0
  178. package/lib/codec/cosmos/feegrant/v1beta1/query.d.ts +131 -0
  179. package/lib/codec/cosmos/feegrant/v1beta1/query.js +427 -0
  180. package/lib/codec/cosmos/feegrant/v1beta1/tx.d.ts +131 -0
  181. package/lib/codec/cosmos/feegrant/v1beta1/tx.js +340 -0
  182. package/lib/codec/cosmos/genutil/module/v1/module.d.ts +19 -0
  183. package/lib/codec/cosmos/genutil/module/v1/module.js +51 -0
  184. package/lib/codec/cosmos/genutil/v1beta1/genesis.d.ts +21 -0
  185. package/lib/codec/cosmos/genutil/v1beta1/genesis.js +107 -0
  186. package/lib/codec/cosmos/gov/module/v1/module.d.ts +26 -0
  187. package/lib/codec/cosmos/gov/module/v1/module.js +81 -0
  188. package/lib/codec/cosmos/gov/v1/export.d.ts +3 -0
  189. package/lib/codec/cosmos/gov/v1/export.js +53 -0
  190. package/lib/codec/cosmos/gov/v1/genesis.d.ts +65 -0
  191. package/lib/codec/cosmos/gov/v1/genesis.js +203 -0
  192. package/lib/codec/cosmos/gov/v1/gov.d.ts +354 -0
  193. package/lib/codec/cosmos/gov/v1/gov.js +1221 -0
  194. package/lib/codec/cosmos/gov/v1/query.d.ts +333 -0
  195. package/lib/codec/cosmos/gov/v1/query.js +1169 -0
  196. package/lib/codec/cosmos/gov/v1/tx.d.ts +308 -0
  197. package/lib/codec/cosmos/gov/v1/tx.js +995 -0
  198. package/lib/codec/cosmos/gov/v1beta1/genesis.d.ts +34 -0
  199. package/lib/codec/cosmos/gov/v1beta1/genesis.js +175 -0
  200. package/lib/codec/cosmos/gov/v1beta1/gov.d.ts +255 -0
  201. package/lib/codec/cosmos/gov/v1beta1/gov.js +971 -0
  202. package/lib/codec/cosmos/gov/v1beta1/query.d.ts +284 -0
  203. package/lib/codec/cosmos/gov/v1beta1/query.js +1064 -0
  204. package/lib/codec/cosmos/gov/v1beta1/tx.d.ts +165 -0
  205. package/lib/codec/cosmos/gov/v1beta1/tx.js +533 -0
  206. package/lib/codec/cosmos/group/module/v1/module.d.ts +30 -0
  207. package/lib/codec/cosmos/group/module/v1/module.js +85 -0
  208. package/lib/codec/cosmos/group/v1/events.d.ts +165 -0
  209. package/lib/codec/cosmos/group/v1/events.js +647 -0
  210. package/lib/codec/cosmos/group/v1/genesis.d.ts +46 -0
  211. package/lib/codec/cosmos/group/v1/genesis.js +196 -0
  212. package/lib/codec/cosmos/group/v1/query.d.ts +484 -0
  213. package/lib/codec/cosmos/group/v1/query.js +1829 -0
  214. package/lib/codec/cosmos/group/v1/tx.d.ts +526 -0
  215. package/lib/codec/cosmos/group/v1/tx.js +1927 -0
  216. package/lib/codec/cosmos/group/v1/types.d.ts +393 -0
  217. package/lib/codec/cosmos/group/v1/types.js +1329 -0
  218. package/lib/codec/cosmos/ics23/v1/proofs.d.ts +342 -0
  219. package/lib/codec/cosmos/ics23/v1/proofs.js +1353 -0
  220. package/lib/codec/cosmos/mint/module/v1/module.d.ts +22 -0
  221. package/lib/codec/cosmos/mint/module/v1/module.js +79 -0
  222. package/lib/codec/cosmos/mint/v1beta1/export.d.ts +3 -0
  223. package/lib/codec/cosmos/mint/v1beta1/export.js +16 -0
  224. package/lib/codec/cosmos/mint/v1beta1/genesis.d.ts +24 -0
  225. package/lib/codec/cosmos/mint/v1beta1/genesis.js +84 -0
  226. package/lib/codec/cosmos/mint/v1beta1/mint.d.ts +46 -0
  227. package/lib/codec/cosmos/mint/v1beta1/mint.js +198 -0
  228. package/lib/codec/cosmos/mint/v1beta1/query.d.ts +112 -0
  229. package/lib/codec/cosmos/mint/v1beta1/query.js +344 -0
  230. package/lib/codec/cosmos/mint/v1beta1/tx.d.ts +69 -0
  231. package/lib/codec/cosmos/mint/v1beta1/tx.js +132 -0
  232. package/lib/codec/cosmos/msg/textual/v1/textual.d.ts +1 -0
  233. package/lib/codec/cosmos/msg/textual/v1/textual.js +5 -0
  234. package/lib/codec/cosmos/msg/v1/msg.d.ts +1 -0
  235. package/lib/codec/cosmos/msg/v1/msg.js +5 -0
  236. package/lib/codec/cosmos/nft/module/v1/module.d.ts +19 -0
  237. package/lib/codec/cosmos/nft/module/v1/module.js +51 -0
  238. package/lib/codec/cosmos/nft/v1beta1/event.d.ts +61 -0
  239. package/lib/codec/cosmos/nft/v1beta1/event.js +251 -0
  240. package/lib/codec/cosmos/nft/v1beta1/genesis.d.ts +39 -0
  241. package/lib/codec/cosmos/nft/v1beta1/genesis.js +157 -0
  242. package/lib/codec/cosmos/nft/v1beta1/nft.d.ts +55 -0
  243. package/lib/codec/cosmos/nft/v1beta1/nft.js +238 -0
  244. package/lib/codec/cosmos/nft/v1beta1/query.d.ts +243 -0
  245. package/lib/codec/cosmos/nft/v1beta1/query.js +862 -0
  246. package/lib/codec/cosmos/nft/v1beta1/tx.d.ts +54 -0
  247. package/lib/codec/cosmos/nft/v1beta1/tx.js +153 -0
  248. package/lib/codec/cosmos/orm/module/v1alpha1/module.d.ts +23 -0
  249. package/lib/codec/cosmos/orm/module/v1alpha1/module.js +51 -0
  250. package/lib/codec/cosmos/orm/query/v1alpha1/query.d.ts +183 -0
  251. package/lib/codec/cosmos/orm/query/v1alpha1/query.js +680 -0
  252. package/lib/codec/cosmos/orm/v1/orm.d.ts +130 -0
  253. package/lib/codec/cosmos/orm/v1/orm.js +283 -0
  254. package/lib/codec/cosmos/orm/v1alpha1/schema.d.ts +78 -0
  255. package/lib/codec/cosmos/orm/v1alpha1/schema.js +257 -0
  256. package/lib/codec/cosmos/params/module/v1/module.d.ts +19 -0
  257. package/lib/codec/cosmos/params/module/v1/module.js +51 -0
  258. package/lib/codec/cosmos/params/v1beta1/export.d.ts +2 -0
  259. package/lib/codec/cosmos/params/v1beta1/export.js +12 -0
  260. package/lib/codec/cosmos/params/v1beta1/params.d.ts +39 -0
  261. package/lib/codec/cosmos/params/v1beta1/params.js +170 -0
  262. package/lib/codec/cosmos/params/v1beta1/query.d.ts +114 -0
  263. package/lib/codec/cosmos/params/v1beta1/query.js +308 -0
  264. package/lib/codec/cosmos/query/v1/query.d.ts +1 -0
  265. package/lib/codec/cosmos/query/v1/query.js +5 -0
  266. package/lib/codec/cosmos/reflection/v1/reflection.d.ts +55 -0
  267. package/lib/codec/cosmos/reflection/v1/reflection.js +118 -0
  268. package/lib/codec/cosmos/slashing/module/v1/module.d.ts +21 -0
  269. package/lib/codec/cosmos/slashing/module/v1/module.js +65 -0
  270. package/lib/codec/cosmos/slashing/v1beta1/export.d.ts +4 -0
  271. package/lib/codec/cosmos/slashing/v1beta1/export.js +22 -0
  272. package/lib/codec/cosmos/slashing/v1beta1/genesis.d.ts +80 -0
  273. package/lib/codec/cosmos/slashing/v1beta1/genesis.js +307 -0
  274. package/lib/codec/cosmos/slashing/v1beta1/query.d.ts +119 -0
  275. package/lib/codec/cosmos/slashing/v1beta1/query.js +353 -0
  276. package/lib/codec/cosmos/slashing/v1beta1/slashing.d.ts +61 -0
  277. package/lib/codec/cosmos/slashing/v1beta1/slashing.js +329 -0
  278. package/lib/codec/cosmos/slashing/v1beta1/tx.d.ts +99 -0
  279. package/lib/codec/cosmos/slashing/v1beta1/tx.js +223 -0
  280. package/lib/codec/cosmos/staking/module/v1/module.d.ts +31 -0
  281. package/lib/codec/cosmos/staking/module/v1/module.js +108 -0
  282. package/lib/codec/cosmos/staking/v1beta1/authz.d.ts +70 -0
  283. package/lib/codec/cosmos/staking/v1beta1/authz.js +227 -0
  284. package/lib/codec/cosmos/staking/v1beta1/export.d.ts +5 -0
  285. package/lib/codec/cosmos/staking/v1beta1/export.js +84 -0
  286. package/lib/codec/cosmos/staking/v1beta1/genesis.d.ts +57 -0
  287. package/lib/codec/cosmos/staking/v1beta1/genesis.js +297 -0
  288. package/lib/codec/cosmos/staking/v1beta1/query.d.ts +556 -0
  289. package/lib/codec/cosmos/staking/v1beta1/query.js +1804 -0
  290. package/lib/codec/cosmos/staking/v1beta1/staking.d.ts +448 -0
  291. package/lib/codec/cosmos/staking/v1beta1/staking.js +1924 -0
  292. package/lib/codec/cosmos/staking/v1beta1/tx.d.ts +299 -0
  293. package/lib/codec/cosmos/staking/v1beta1/tx.js +1012 -0
  294. package/lib/codec/cosmos/store/internal/kv/v1beta1/kv.d.ts +33 -0
  295. package/lib/codec/cosmos/store/internal/kv/v1beta1/kv.js +174 -0
  296. package/lib/codec/cosmos/store/snapshots/v1/snapshot.d.ts +126 -0
  297. package/lib/codec/cosmos/store/snapshots/v1/snapshot.js +563 -0
  298. package/lib/codec/cosmos/store/streaming/abci/grpc.d.ts +79 -0
  299. package/lib/codec/cosmos/store/streaming/abci/grpc.js +261 -0
  300. package/lib/codec/cosmos/store/v1beta1/commit_info.d.ts +57 -0
  301. package/lib/codec/cosmos/store/v1beta1/commit_info.js +292 -0
  302. package/lib/codec/cosmos/store/v1beta1/listening.d.ts +50 -0
  303. package/lib/codec/cosmos/store/v1beta1/listening.js +236 -0
  304. package/lib/codec/cosmos/tx/config/v1/config.d.ts +29 -0
  305. package/lib/codec/cosmos/tx/config/v1/config.js +79 -0
  306. package/lib/codec/cosmos/tx/signing/v1beta1/signing.d.ts +152 -0
  307. package/lib/codec/cosmos/tx/signing/v1beta1/signing.js +504 -0
  308. package/lib/codec/cosmos/tx/v1beta1/export.d.ts +2 -0
  309. package/lib/codec/cosmos/tx/v1beta1/export.js +43 -0
  310. package/lib/codec/cosmos/tx/v1beta1/service.d.ts +481 -0
  311. package/lib/codec/cosmos/tx/v1beta1/service.js +1357 -0
  312. package/lib/codec/cosmos/tx/v1beta1/tx.d.ts +390 -0
  313. package/lib/codec/cosmos/tx/v1beta1/tx.js +1149 -0
  314. package/lib/codec/cosmos/upgrade/module/v1/module.d.ts +21 -0
  315. package/lib/codec/cosmos/upgrade/module/v1/module.js +65 -0
  316. package/lib/codec/cosmos/upgrade/v1beta1/query.d.ts +226 -0
  317. package/lib/codec/cosmos/upgrade/v1beta1/query.js +571 -0
  318. package/lib/codec/cosmos/upgrade/v1beta1/tx.d.ts +104 -0
  319. package/lib/codec/cosmos/upgrade/v1beta1/tx.js +221 -0
  320. package/lib/codec/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -0
  321. package/lib/codec/cosmos/upgrade/v1beta1/upgrade.js +346 -0
  322. package/lib/codec/cosmos/vesting/module/v1/module.d.ts +19 -0
  323. package/lib/codec/cosmos/vesting/module/v1/module.js +51 -0
  324. package/lib/codec/cosmos/vesting/v1beta1/export.d.ts +2 -0
  325. package/lib/codec/cosmos/vesting/v1beta1/export.js +17 -0
  326. package/lib/codec/cosmos/vesting/v1beta1/tx.d.ts +147 -0
  327. package/lib/codec/cosmos/vesting/v1beta1/tx.js +434 -0
  328. package/lib/codec/cosmos/vesting/v1beta1/vesting.d.ts +112 -0
  329. package/lib/codec/cosmos/vesting/v1beta1/vesting.js +481 -0
  330. package/lib/codec/cosmos-models.d.ts +10 -0
  331. package/lib/codec/cosmos-models.js +46 -0
  332. package/lib/codec/ethermint/crypto/v1/ethsecp256k1/export.d.ts +1 -0
  333. package/lib/codec/ethermint/crypto/v1/ethsecp256k1/export.js +6 -0
  334. package/lib/codec/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +41 -0
  335. package/lib/codec/ethermint/crypto/v1/ethsecp256k1/keys.js +155 -0
  336. package/lib/codec/ethermint/evm/v1/events.d.ts +76 -0
  337. package/lib/codec/ethermint/evm/v1/events.js +314 -0
  338. package/lib/codec/ethermint/evm/v1/evm.d.ts +247 -0
  339. package/lib/codec/ethermint/evm/v1/evm.js +1146 -0
  340. package/lib/codec/ethermint/evm/v1/export.d.ts +5 -0
  341. package/lib/codec/ethermint/evm/v1/export.js +53 -0
  342. package/lib/codec/ethermint/evm/v1/genesis.d.ts +45 -0
  343. package/lib/codec/ethermint/evm/v1/genesis.js +166 -0
  344. package/lib/codec/ethermint/evm/v1/query.d.ts +451 -0
  345. package/lib/codec/ethermint/evm/v1/query.js +1687 -0
  346. package/lib/codec/ethermint/evm/v1/tx.d.ts +230 -0
  347. package/lib/codec/ethermint/evm/v1/tx.js +954 -0
  348. package/lib/codec/ethermint/feemarket/v1/events.d.ts +36 -0
  349. package/lib/codec/ethermint/feemarket/v1/events.js +127 -0
  350. package/lib/codec/ethermint/feemarket/v1/export.d.ts +4 -0
  351. package/lib/codec/ethermint/feemarket/v1/export.js +18 -0
  352. package/lib/codec/ethermint/feemarket/v1/feemarket.d.ts +52 -0
  353. package/lib/codec/ethermint/feemarket/v1/feemarket.js +176 -0
  354. package/lib/codec/ethermint/feemarket/v1/genesis.d.ts +27 -0
  355. package/lib/codec/ethermint/feemarket/v1/genesis.js +84 -0
  356. package/lib/codec/ethermint/feemarket/v1/query.d.ts +109 -0
  357. package/lib/codec/ethermint/feemarket/v1/query.js +300 -0
  358. package/lib/codec/ethermint/feemarket/v1/tx.d.ts +60 -0
  359. package/lib/codec/ethermint/feemarket/v1/tx.js +132 -0
  360. package/lib/codec/ethermint/types/v1/account.d.ts +27 -0
  361. package/lib/codec/ethermint/types/v1/account.js +83 -0
  362. package/lib/codec/ethermint/types/v1/dynamic_fee.d.ts +21 -0
  363. package/lib/codec/ethermint/types/v1/dynamic_fee.js +65 -0
  364. package/lib/codec/ethermint/types/v1/export.d.ts +4 -0
  365. package/lib/codec/ethermint/types/v1/export.js +11 -0
  366. package/lib/codec/ethermint/types/v1/indexer.d.ts +42 -0
  367. package/lib/codec/ethermint/types/v1/indexer.js +154 -0
  368. package/lib/codec/ethermint/types/v1/web3.d.ts +37 -0
  369. package/lib/codec/ethermint/types/v1/web3.js +135 -0
  370. package/lib/codec/ethermint-models.d.ts +4 -0
  371. package/lib/codec/ethermint-models.js +40 -0
  372. package/lib/codec/google/protobuf/any.d.ts +138 -0
  373. package/lib/codec/google/protobuf/any.js +120 -0
  374. package/lib/codec/google/protobuf/descriptor.d.ts +1446 -0
  375. package/lib/codec/google/protobuf/descriptor.js +4811 -0
  376. package/lib/codec/google/protobuf/duration.d.ts +93 -0
  377. package/lib/codec/google/protobuf/duration.js +81 -0
  378. package/lib/codec/google/protobuf/empty.d.ts +27 -0
  379. package/lib/codec/google/protobuf/empty.js +51 -0
  380. package/lib/codec/google/protobuf/timestamp.d.ts +122 -0
  381. package/lib/codec/google/protobuf/timestamp.js +81 -0
  382. package/lib/codec/google/protobuf/wrappers.d.ts +161 -0
  383. package/lib/codec/google/protobuf/wrappers.js +490 -0
  384. package/lib/codec/ibc/applications/fee/v1/ack.d.ts +25 -0
  385. package/lib/codec/ibc/applications/fee/v1/ack.js +134 -0
  386. package/lib/codec/ibc/applications/fee/v1/fee.d.ts +72 -0
  387. package/lib/codec/ibc/applications/fee/v1/fee.js +311 -0
  388. package/lib/codec/ibc/applications/fee/v1/genesis.d.ts +98 -0
  389. package/lib/codec/ibc/applications/fee/v1/genesis.js +433 -0
  390. package/lib/codec/ibc/applications/fee/v1/metadata.d.ts +26 -0
  391. package/lib/codec/ibc/applications/fee/v1/metadata.js +79 -0
  392. package/lib/codec/ibc/applications/fee/v1/query.d.ts +341 -0
  393. package/lib/codec/ibc/applications/fee/v1/query.js +1293 -0
  394. package/lib/codec/ibc/applications/fee/v1/tx.d.ts +182 -0
  395. package/lib/codec/ibc/applications/fee/v1/tx.js +540 -0
  396. package/lib/codec/ibc/applications/interchain_accounts/controller/export.d.ts +3 -0
  397. package/lib/codec/ibc/applications/interchain_accounts/controller/export.js +17 -0
  398. package/lib/codec/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +24 -0
  399. package/lib/codec/ibc/applications/interchain_accounts/controller/v1/controller.js +65 -0
  400. package/lib/codec/ibc/applications/interchain_accounts/controller/v1/query.d.ts +77 -0
  401. package/lib/codec/ibc/applications/interchain_accounts/controller/v1/query.js +234 -0
  402. package/lib/codec/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +122 -0
  403. package/lib/codec/ibc/applications/interchain_accounts/controller/v1/tx.js +435 -0
  404. package/lib/codec/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -0
  405. package/lib/codec/ibc/applications/interchain_accounts/genesis/v1/genesis.js +462 -0
  406. package/lib/codec/ibc/applications/interchain_accounts/host/export.d.ts +3 -0
  407. package/lib/codec/ibc/applications/interchain_accounts/host/export.js +11 -0
  408. package/lib/codec/ibc/applications/interchain_accounts/host/v1/host.d.ts +26 -0
  409. package/lib/codec/ibc/applications/interchain_accounts/host/v1/host.js +84 -0
  410. package/lib/codec/ibc/applications/interchain_accounts/host/v1/query.d.ts +49 -0
  411. package/lib/codec/ibc/applications/interchain_accounts/host/v1/query.js +118 -0
  412. package/lib/codec/ibc/applications/interchain_accounts/host/v1/tx.d.ts +55 -0
  413. package/lib/codec/ibc/applications/interchain_accounts/host/v1/tx.js +132 -0
  414. package/lib/codec/ibc/applications/interchain_accounts/v1/account.d.ts +22 -0
  415. package/lib/codec/ibc/applications/interchain_accounts/v1/account.js +83 -0
  416. package/lib/codec/ibc/applications/interchain_accounts/v1/export.d.ts +3 -0
  417. package/lib/codec/ibc/applications/interchain_accounts/v1/export.js +13 -0
  418. package/lib/codec/ibc/applications/interchain_accounts/v1/metadata.d.ts +37 -0
  419. package/lib/codec/ibc/applications/interchain_accounts/v1/metadata.js +127 -0
  420. package/lib/codec/ibc/applications/interchain_accounts/v1/packet.d.ts +48 -0
  421. package/lib/codec/ibc/applications/interchain_accounts/v1/packet.js +225 -0
  422. package/lib/codec/ibc/applications/transfer/v1/authz.d.ts +49 -0
  423. package/lib/codec/ibc/applications/transfer/v1/authz.js +188 -0
  424. package/lib/codec/ibc/applications/transfer/v1/export.d.ts +4 -0
  425. package/lib/codec/ibc/applications/transfer/v1/export.js +27 -0
  426. package/lib/codec/ibc/applications/transfer/v1/genesis.d.ts +29 -0
  427. package/lib/codec/ibc/applications/transfer/v1/genesis.js +117 -0
  428. package/lib/codec/ibc/applications/transfer/v1/query.d.ts +216 -0
  429. package/lib/codec/ibc/applications/transfer/v1/query.js +674 -0
  430. package/lib/codec/ibc/applications/transfer/v1/transfer.d.ts +55 -0
  431. package/lib/codec/ibc/applications/transfer/v1/transfer.js +141 -0
  432. package/lib/codec/ibc/applications/transfer/v1/tx.d.ts +113 -0
  433. package/lib/codec/ibc/applications/transfer/v1/tx.js +339 -0
  434. package/lib/codec/ibc/applications/transfer/v2/export.d.ts +1 -0
  435. package/lib/codec/ibc/applications/transfer/v2/export.js +5 -0
  436. package/lib/codec/ibc/applications/transfer/v2/packet.d.ts +33 -0
  437. package/lib/codec/ibc/applications/transfer/v2/packet.js +115 -0
  438. package/lib/codec/ibc/core/channel/v1/channel.d.ts +266 -0
  439. package/lib/codec/ibc/core/channel/v1/channel.js +1023 -0
  440. package/lib/codec/ibc/core/channel/v1/export.d.ts +5 -0
  441. package/lib/codec/ibc/core/channel/v1/export.js +103 -0
  442. package/lib/codec/ibc/core/channel/v1/genesis.d.ts +47 -0
  443. package/lib/codec/ibc/core/channel/v1/genesis.js +300 -0
  444. package/lib/codec/ibc/core/channel/v1/query.d.ts +724 -0
  445. package/lib/codec/ibc/core/channel/v1/query.js +2739 -0
  446. package/lib/codec/ibc/core/channel/v1/tx.d.ts +684 -0
  447. package/lib/codec/ibc/core/channel/v1/tx.js +3370 -0
  448. package/lib/codec/ibc/core/channel/v1/upgrade.d.ts +65 -0
  449. package/lib/codec/ibc/core/channel/v1/upgrade.js +242 -0
  450. package/lib/codec/ibc/core/client/v1/client.d.ts +168 -0
  451. package/lib/codec/ibc/core/client/v1/client.js +516 -0
  452. package/lib/codec/ibc/core/client/v1/export.d.ts +4 -0
  453. package/lib/codec/ibc/core/client/v1/export.js +48 -0
  454. package/lib/codec/ibc/core/client/v1/genesis.d.ts +70 -0
  455. package/lib/codec/ibc/core/client/v1/genesis.js +332 -0
  456. package/lib/codec/ibc/core/client/v1/query.d.ts +367 -0
  457. package/lib/codec/ibc/core/client/v1/query.js +1185 -0
  458. package/lib/codec/ibc/core/client/v1/tx.d.ts +281 -0
  459. package/lib/codec/ibc/core/client/v1/tx.js +946 -0
  460. package/lib/codec/ibc/core/commitment/v1/commitment.d.ts +74 -0
  461. package/lib/codec/ibc/core/commitment/v1/commitment.js +262 -0
  462. package/lib/codec/ibc/core/commitment/v1/export.d.ts +1 -0
  463. package/lib/codec/ibc/core/commitment/v1/export.js +8 -0
  464. package/lib/codec/ibc/core/connection/v1/connection.d.ts +177 -0
  465. package/lib/codec/ibc/core/connection/v1/connection.js +621 -0
  466. package/lib/codec/ibc/core/connection/v1/export.d.ts +3 -0
  467. package/lib/codec/ibc/core/connection/v1/export.js +38 -0
  468. package/lib/codec/ibc/core/connection/v1/genesis.d.ts +25 -0
  469. package/lib/codec/ibc/core/connection/v1/genesis.js +126 -0
  470. package/lib/codec/ibc/core/connection/v1/query.d.ts +260 -0
  471. package/lib/codec/ibc/core/connection/v1/query.js +892 -0
  472. package/lib/codec/ibc/core/connection/v1/tx.d.ts +234 -0
  473. package/lib/codec/ibc/core/connection/v1/tx.js +975 -0
  474. package/lib/codec/ibc/core/types/v1/genesis.d.ts +28 -0
  475. package/lib/codec/ibc/core/types/v1/genesis.js +103 -0
  476. package/lib/codec/ibc/lightclients/localhost/v2/export.d.ts +1 -0
  477. package/lib/codec/ibc/lightclients/localhost/v2/export.js +5 -0
  478. package/lib/codec/ibc/lightclients/localhost/v2/localhost.d.ts +22 -0
  479. package/lib/codec/ibc/lightclients/localhost/v2/localhost.js +69 -0
  480. package/lib/codec/ibc/lightclients/solomachine/v2/export.d.ts +1 -0
  481. package/lib/codec/ibc/lightclients/solomachine/v2/export.js +23 -0
  482. package/lib/codec/ibc/lightclients/solomachine/v2/solomachine.d.ts +314 -0
  483. package/lib/codec/ibc/lightclients/solomachine/v2/solomachine.js +1359 -0
  484. package/lib/codec/ibc/lightclients/solomachine/v3/export.d.ts +1 -0
  485. package/lib/codec/ibc/lightclients/solomachine/v3/export.js +12 -0
  486. package/lib/codec/ibc/lightclients/solomachine/v3/solomachine.d.ts +154 -0
  487. package/lib/codec/ibc/lightclients/solomachine/v3/solomachine.js +719 -0
  488. package/lib/codec/ibc/lightclients/tendermint/v1/export.d.ts +1 -0
  489. package/lib/codec/ibc/lightclients/tendermint/v1/export.js +9 -0
  490. package/lib/codec/ibc/lightclients/tendermint/v1/tendermint.d.ts +152 -0
  491. package/lib/codec/ibc/lightclients/tendermint/v1/tendermint.js +622 -0
  492. package/lib/codec/ibc/lightclients/wasm/v1/genesis.d.ts +34 -0
  493. package/lib/codec/ibc/lightclients/wasm/v1/genesis.js +161 -0
  494. package/lib/codec/ibc/lightclients/wasm/v1/query.d.ts +81 -0
  495. package/lib/codec/ibc/lightclients/wasm/v1/query.js +295 -0
  496. package/lib/codec/ibc/lightclients/wasm/v1/tx.d.ts +114 -0
  497. package/lib/codec/ibc/lightclients/wasm/v1/tx.js +419 -0
  498. package/lib/codec/ibc/lightclients/wasm/v1/wasm.d.ts +74 -0
  499. package/lib/codec/ibc/lightclients/wasm/v1/wasm.js +288 -0
  500. package/lib/codec/ibc-models.d.ts +13 -0
  501. package/lib/codec/ibc-models.js +49 -0
  502. package/lib/codec/index.d.ts +512 -0
  503. package/lib/codec/index.js +26760 -0
  504. package/lib/codec/mememax/orbix/adl/genesis.d.ts +19 -0
  505. package/lib/codec/mememax/orbix/adl/genesis.js +51 -0
  506. package/lib/codec/mememax/orbix/adl/query.d.ts +15 -0
  507. package/lib/codec/mememax/orbix/adl/query.js +12 -0
  508. package/lib/codec/mememax/orbix/adl/tx.d.ts +15 -0
  509. package/lib/codec/mememax/orbix/adl/tx.js +12 -0
  510. package/lib/codec/mememax/orbix/admin/export.d.ts +3 -0
  511. package/lib/codec/mememax/orbix/admin/export.js +22 -0
  512. package/lib/codec/mememax/orbix/admin/genesis.d.ts +24 -0
  513. package/lib/codec/mememax/orbix/admin/genesis.js +94 -0
  514. package/lib/codec/mememax/orbix/admin/params.d.ts +32 -0
  515. package/lib/codec/mememax/orbix/admin/params.js +114 -0
  516. package/lib/codec/mememax/orbix/admin/query.d.ts +97 -0
  517. package/lib/codec/mememax/orbix/admin/query.js +300 -0
  518. package/lib/codec/mememax/orbix/admin/tx.d.ts +134 -0
  519. package/lib/codec/mememax/orbix/admin/tx.js +419 -0
  520. package/lib/codec/mememax/orbix/bank/event.d.ts +70 -0
  521. package/lib/codec/mememax/orbix/bank/event.js +365 -0
  522. package/lib/codec/mememax/orbix/bank/export.d.ts +3 -0
  523. package/lib/codec/mememax/orbix/bank/export.js +21 -0
  524. package/lib/codec/mememax/orbix/bank/genesis.d.ts +20 -0
  525. package/lib/codec/mememax/orbix/bank/genesis.js +71 -0
  526. package/lib/codec/mememax/orbix/bank/query.d.ts +102 -0
  527. package/lib/codec/mememax/orbix/bank/query.js +492 -0
  528. package/lib/codec/mememax/orbix/bank/tx.d.ts +70 -0
  529. package/lib/codec/mememax/orbix/bank/tx.js +234 -0
  530. package/lib/codec/mememax/orbix/book/book.d.ts +61 -0
  531. package/lib/codec/mememax/orbix/book/book.js +350 -0
  532. package/lib/codec/mememax/orbix/book/event.d.ts +67 -0
  533. package/lib/codec/mememax/orbix/book/event.js +294 -0
  534. package/lib/codec/mememax/orbix/book/export.d.ts +4 -0
  535. package/lib/codec/mememax/orbix/book/export.js +26 -0
  536. package/lib/codec/mememax/orbix/book/genesis.d.ts +26 -0
  537. package/lib/codec/mememax/orbix/book/genesis.js +87 -0
  538. package/lib/codec/mememax/orbix/book/legacy.d.ts +23 -0
  539. package/lib/codec/mememax/orbix/book/legacy.js +125 -0
  540. package/lib/codec/mememax/orbix/book/query.d.ts +160 -0
  541. package/lib/codec/mememax/orbix/book/query.js +643 -0
  542. package/lib/codec/mememax/orbix/book/tx.d.ts +15 -0
  543. package/lib/codec/mememax/orbix/book/tx.js +12 -0
  544. package/lib/codec/mememax/orbix/bridge/bridge.d.ts +132 -0
  545. package/lib/codec/mememax/orbix/bridge/bridge.js +801 -0
  546. package/lib/codec/mememax/orbix/bridge/event.d.ts +316 -0
  547. package/lib/codec/mememax/orbix/bridge/event.js +1806 -0
  548. package/lib/codec/mememax/orbix/bridge/export.d.ts +6 -0
  549. package/lib/codec/mememax/orbix/bridge/export.js +122 -0
  550. package/lib/codec/mememax/orbix/bridge/genesis.d.ts +29 -0
  551. package/lib/codec/mememax/orbix/bridge/genesis.js +249 -0
  552. package/lib/codec/mememax/orbix/bridge/params.d.ts +71 -0
  553. package/lib/codec/mememax/orbix/bridge/params.js +376 -0
  554. package/lib/codec/mememax/orbix/bridge/pending_action.d.ts +102 -0
  555. package/lib/codec/mememax/orbix/bridge/pending_action.js +718 -0
  556. package/lib/codec/mememax/orbix/bridge/query.d.ts +365 -0
  557. package/lib/codec/mememax/orbix/bridge/query.js +1589 -0
  558. package/lib/codec/mememax/orbix/bridge/tx.d.ts +636 -0
  559. package/lib/codec/mememax/orbix/bridge/tx.js +3199 -0
  560. package/lib/codec/mememax/orbix/broker/amm.d.ts +49 -0
  561. package/lib/codec/mememax/orbix/broker/amm.js +278 -0
  562. package/lib/codec/mememax/orbix/broker/candlestick.d.ts +28 -0
  563. package/lib/codec/mememax/orbix/broker/candlestick.js +219 -0
  564. package/lib/codec/mememax/orbix/broker/event.d.ts +55 -0
  565. package/lib/codec/mememax/orbix/broker/event.js +474 -0
  566. package/lib/codec/mememax/orbix/broker/export.d.ts +7 -0
  567. package/lib/codec/mememax/orbix/broker/export.js +27 -0
  568. package/lib/codec/mememax/orbix/broker/genesis.d.ts +21 -0
  569. package/lib/codec/mememax/orbix/broker/genesis.js +70 -0
  570. package/lib/codec/mememax/orbix/broker/incoming_liquidations.d.ts +19 -0
  571. package/lib/codec/mememax/orbix/broker/incoming_liquidations.js +107 -0
  572. package/lib/codec/mememax/orbix/broker/pagination.d.ts +20 -0
  573. package/lib/codec/mememax/orbix/broker/pagination.js +79 -0
  574. package/lib/codec/mememax/orbix/broker/query.d.ts +116 -0
  575. package/lib/codec/mememax/orbix/broker/query.js +592 -0
  576. package/lib/codec/mememax/orbix/broker/tx.d.ts +59 -0
  577. package/lib/codec/mememax/orbix/broker/tx.js +198 -0
  578. package/lib/codec/mememax/orbix/coin/bridge.d.ts +25 -0
  579. package/lib/codec/mememax/orbix/coin/bridge.js +156 -0
  580. package/lib/codec/mememax/orbix/coin/event.d.ts +155 -0
  581. package/lib/codec/mememax/orbix/coin/event.js +787 -0
  582. package/lib/codec/mememax/orbix/coin/export.d.ts +9 -0
  583. package/lib/codec/mememax/orbix/coin/export.js +109 -0
  584. package/lib/codec/mememax/orbix/coin/genesis.d.ts +44 -0
  585. package/lib/codec/mememax/orbix/coin/genesis.js +239 -0
  586. package/lib/codec/mememax/orbix/coin/group.d.ts +56 -0
  587. package/lib/codec/mememax/orbix/coin/group.js +237 -0
  588. package/lib/codec/mememax/orbix/coin/params.d.ts +35 -0
  589. package/lib/codec/mememax/orbix/coin/params.js +148 -0
  590. package/lib/codec/mememax/orbix/coin/proposal.d.ts +22 -0
  591. package/lib/codec/mememax/orbix/coin/proposal.js +94 -0
  592. package/lib/codec/mememax/orbix/coin/query.d.ts +313 -0
  593. package/lib/codec/mememax/orbix/coin/query.js +1414 -0
  594. package/lib/codec/mememax/orbix/coin/token.d.ts +112 -0
  595. package/lib/codec/mememax/orbix/coin/token.js +714 -0
  596. package/lib/codec/mememax/orbix/coin/tx.d.ts +650 -0
  597. package/lib/codec/mememax/orbix/coin/tx.js +3318 -0
  598. package/lib/codec/mememax/orbix/evmbank/export.d.ts +2 -0
  599. package/lib/codec/mememax/orbix/evmbank/export.js +8 -0
  600. package/lib/codec/mememax/orbix/evmbank/genesis.d.ts +34 -0
  601. package/lib/codec/mememax/orbix/evmbank/genesis.js +173 -0
  602. package/lib/codec/mememax/orbix/evmbank/query.d.ts +45 -0
  603. package/lib/codec/mememax/orbix/evmbank/query.js +126 -0
  604. package/lib/codec/mememax/orbix/evmmerge/address.d.ts +20 -0
  605. package/lib/codec/mememax/orbix/evmmerge/address.js +79 -0
  606. package/lib/codec/mememax/orbix/evmmerge/event.d.ts +21 -0
  607. package/lib/codec/mememax/orbix/evmmerge/event.js +91 -0
  608. package/lib/codec/mememax/orbix/evmmerge/export.d.ts +6 -0
  609. package/lib/codec/mememax/orbix/evmmerge/export.js +20 -0
  610. package/lib/codec/mememax/orbix/evmmerge/genesis.d.ts +51 -0
  611. package/lib/codec/mememax/orbix/evmmerge/genesis.js +236 -0
  612. package/lib/codec/mememax/orbix/evmmerge/offchain.d.ts +26 -0
  613. package/lib/codec/mememax/orbix/evmmerge/offchain.js +121 -0
  614. package/lib/codec/mememax/orbix/evmmerge/query.d.ts +94 -0
  615. package/lib/codec/mememax/orbix/evmmerge/query.js +270 -0
  616. package/lib/codec/mememax/orbix/evmmerge/tx.d.ts +56 -0
  617. package/lib/codec/mememax/orbix/evmmerge/tx.js +142 -0
  618. package/lib/codec/mememax/orbix/fee/event.d.ts +21 -0
  619. package/lib/codec/mememax/orbix/fee/event.js +91 -0
  620. package/lib/codec/mememax/orbix/fee/export.d.ts +4 -0
  621. package/lib/codec/mememax/orbix/fee/export.js +27 -0
  622. package/lib/codec/mememax/orbix/fee/fee.d.ts +45 -0
  623. package/lib/codec/mememax/orbix/fee/fee.js +203 -0
  624. package/lib/codec/mememax/orbix/fee/genesis.d.ts +24 -0
  625. package/lib/codec/mememax/orbix/fee/genesis.js +89 -0
  626. package/lib/codec/mememax/orbix/fee/query.d.ts +125 -0
  627. package/lib/codec/mememax/orbix/fee/query.js +492 -0
  628. package/lib/codec/mememax/orbix/fee/tx.d.ts +119 -0
  629. package/lib/codec/mememax/orbix/fee/tx.js +454 -0
  630. package/lib/codec/mememax/orbix/insurance/event.d.ts +25 -0
  631. package/lib/codec/mememax/orbix/insurance/event.js +51 -0
  632. package/lib/codec/mememax/orbix/insurance/export.d.ts +5 -0
  633. package/lib/codec/mememax/orbix/insurance/export.js +26 -0
  634. package/lib/codec/mememax/orbix/insurance/fund.d.ts +51 -0
  635. package/lib/codec/mememax/orbix/insurance/fund.js +271 -0
  636. package/lib/codec/mememax/orbix/insurance/genesis.d.ts +27 -0
  637. package/lib/codec/mememax/orbix/insurance/genesis.js +90 -0
  638. package/lib/codec/mememax/orbix/insurance/params.d.ts +41 -0
  639. package/lib/codec/mememax/orbix/insurance/params.js +195 -0
  640. package/lib/codec/mememax/orbix/insurance/query.d.ts +121 -0
  641. package/lib/codec/mememax/orbix/insurance/query.js +453 -0
  642. package/lib/codec/mememax/orbix/insurance/tx.d.ts +76 -0
  643. package/lib/codec/mememax/orbix/insurance/tx.js +261 -0
  644. package/lib/codec/mememax/orbix/leverage/event.d.ts +22 -0
  645. package/lib/codec/mememax/orbix/leverage/event.js +103 -0
  646. package/lib/codec/mememax/orbix/leverage/export.d.ts +4 -0
  647. package/lib/codec/mememax/orbix/leverage/export.js +16 -0
  648. package/lib/codec/mememax/orbix/leverage/genesis.d.ts +25 -0
  649. package/lib/codec/mememax/orbix/leverage/genesis.js +72 -0
  650. package/lib/codec/mememax/orbix/leverage/leverage.d.ts +32 -0
  651. package/lib/codec/mememax/orbix/leverage/leverage.js +144 -0
  652. package/lib/codec/mememax/orbix/leverage/query.d.ts +77 -0
  653. package/lib/codec/mememax/orbix/leverage/query.js +257 -0
  654. package/lib/codec/mememax/orbix/leverage/tx.d.ts +48 -0
  655. package/lib/codec/mememax/orbix/leverage/tx.js +141 -0
  656. package/lib/codec/mememax/orbix/liquidation/event.d.ts +24 -0
  657. package/lib/codec/mememax/orbix/liquidation/event.js +159 -0
  658. package/lib/codec/mememax/orbix/liquidation/export.d.ts +5 -0
  659. package/lib/codec/mememax/orbix/liquidation/export.js +15 -0
  660. package/lib/codec/mememax/orbix/liquidation/genesis.d.ts +39 -0
  661. package/lib/codec/mememax/orbix/liquidation/genesis.js +153 -0
  662. package/lib/codec/mememax/orbix/liquidation/outstanding_position.d.ts +35 -0
  663. package/lib/codec/mememax/orbix/liquidation/outstanding_position.js +216 -0
  664. package/lib/codec/mememax/orbix/liquidation/query.d.ts +57 -0
  665. package/lib/codec/mememax/orbix/liquidation/query.js +256 -0
  666. package/lib/codec/mememax/orbix/liquidation/quote_changes.d.ts +23 -0
  667. package/lib/codec/mememax/orbix/liquidation/quote_changes.js +105 -0
  668. package/lib/codec/mememax/orbix/liquidation/tx.d.ts +15 -0
  669. package/lib/codec/mememax/orbix/liquidation/tx.js +12 -0
  670. package/lib/codec/mememax/orbix/market/event.d.ts +21 -0
  671. package/lib/codec/mememax/orbix/market/event.js +82 -0
  672. package/lib/codec/mememax/orbix/market/export.d.ts +7 -0
  673. package/lib/codec/mememax/orbix/market/export.js +71 -0
  674. package/lib/codec/mememax/orbix/market/fee.d.ts +134 -0
  675. package/lib/codec/mememax/orbix/market/fee.js +350 -0
  676. package/lib/codec/mememax/orbix/market/genesis.d.ts +33 -0
  677. package/lib/codec/mememax/orbix/market/genesis.js +164 -0
  678. package/lib/codec/mememax/orbix/market/market.d.ts +116 -0
  679. package/lib/codec/mememax/orbix/market/market.js +930 -0
  680. package/lib/codec/mememax/orbix/market/params.d.ts +81 -0
  681. package/lib/codec/mememax/orbix/market/params.js +754 -0
  682. package/lib/codec/mememax/orbix/market/proposal.d.ts +49 -0
  683. package/lib/codec/mememax/orbix/market/proposal.js +249 -0
  684. package/lib/codec/mememax/orbix/market/query.d.ts +267 -0
  685. package/lib/codec/mememax/orbix/market/query.js +1095 -0
  686. package/lib/codec/mememax/orbix/market/tx.d.ts +394 -0
  687. package/lib/codec/mememax/orbix/market/tx.js +1823 -0
  688. package/lib/codec/mememax/orbix/marketstats/export.d.ts +2 -0
  689. package/lib/codec/mememax/orbix/marketstats/export.js +8 -0
  690. package/lib/codec/mememax/orbix/marketstats/genesis.d.ts +19 -0
  691. package/lib/codec/mememax/orbix/marketstats/genesis.js +51 -0
  692. package/lib/codec/mememax/orbix/marketstats/marketstats.d.ts +32 -0
  693. package/lib/codec/mememax/orbix/marketstats/marketstats.js +263 -0
  694. package/lib/codec/mememax/orbix/marketstats/query.d.ts +45 -0
  695. package/lib/codec/mememax/orbix/marketstats/query.js +122 -0
  696. package/lib/codec/mememax/orbix/marketstats/tx.d.ts +15 -0
  697. package/lib/codec/mememax/orbix/marketstats/tx.js +12 -0
  698. package/lib/codec/mememax/orbix/misc/block.d.ts +22 -0
  699. package/lib/codec/mememax/orbix/misc/block.js +105 -0
  700. package/lib/codec/mememax/orbix/misc/export.d.ts +6 -0
  701. package/lib/codec/mememax/orbix/misc/export.js +29 -0
  702. package/lib/codec/mememax/orbix/misc/message.d.ts +25 -0
  703. package/lib/codec/mememax/orbix/misc/message.js +166 -0
  704. package/lib/codec/mememax/orbix/misc/message_type.d.ts +19 -0
  705. package/lib/codec/mememax/orbix/misc/message_type.js +65 -0
  706. package/lib/codec/mememax/orbix/misc/query.d.ts +209 -0
  707. package/lib/codec/mememax/orbix/misc/query.js +957 -0
  708. package/lib/codec/mememax/orbix/misc/trade.d.ts +29 -0
  709. package/lib/codec/mememax/orbix/misc/trade.js +228 -0
  710. package/lib/codec/mememax/orbix/misc/transaction.d.ts +47 -0
  711. package/lib/codec/mememax/orbix/misc/transaction.js +372 -0
  712. package/lib/codec/mememax/orbix/oracle/event.d.ts +39 -0
  713. package/lib/codec/mememax/orbix/oracle/event.js +229 -0
  714. package/lib/codec/mememax/orbix/oracle/export.d.ts +7 -0
  715. package/lib/codec/mememax/orbix/oracle/export.js +70 -0
  716. package/lib/codec/mememax/orbix/oracle/genesis.d.ts +31 -0
  717. package/lib/codec/mememax/orbix/oracle/genesis.js +172 -0
  718. package/lib/codec/mememax/orbix/oracle/historical.d.ts +47 -0
  719. package/lib/codec/mememax/orbix/oracle/historical.js +227 -0
  720. package/lib/codec/mememax/orbix/oracle/oracle.d.ts +42 -0
  721. package/lib/codec/mememax/orbix/oracle/oracle.js +284 -0
  722. package/lib/codec/mememax/orbix/oracle/params.d.ts +49 -0
  723. package/lib/codec/mememax/orbix/oracle/params.js +395 -0
  724. package/lib/codec/mememax/orbix/oracle/query.d.ts +363 -0
  725. package/lib/codec/mememax/orbix/oracle/query.js +1623 -0
  726. package/lib/codec/mememax/orbix/oracle/slashing.d.ts +35 -0
  727. package/lib/codec/mememax/orbix/oracle/slashing.js +189 -0
  728. package/lib/codec/mememax/orbix/oracle/tx.d.ts +333 -0
  729. package/lib/codec/mememax/orbix/oracle/tx.js +1627 -0
  730. package/lib/codec/mememax/orbix/order/event.d.ts +24 -0
  731. package/lib/codec/mememax/orbix/order/event.js +141 -0
  732. package/lib/codec/mememax/orbix/order/export.d.ts +6 -0
  733. package/lib/codec/mememax/orbix/order/export.js +46 -0
  734. package/lib/codec/mememax/orbix/order/genesis.d.ts +67 -0
  735. package/lib/codec/mememax/orbix/order/genesis.js +346 -0
  736. package/lib/codec/mememax/orbix/order/order.d.ts +98 -0
  737. package/lib/codec/mememax/orbix/order/order.js +812 -0
  738. package/lib/codec/mememax/orbix/order/params.d.ts +32 -0
  739. package/lib/codec/mememax/orbix/order/params.js +154 -0
  740. package/lib/codec/mememax/orbix/order/query.d.ts +188 -0
  741. package/lib/codec/mememax/orbix/order/query.js +748 -0
  742. package/lib/codec/mememax/orbix/order/tx.d.ts +228 -0
  743. package/lib/codec/mememax/orbix/order/tx.js +1010 -0
  744. package/lib/codec/mememax/orbix/perpspool/event.d.ts +182 -0
  745. package/lib/codec/mememax/orbix/perpspool/event.js +1158 -0
  746. package/lib/codec/mememax/orbix/perpspool/export.d.ts +9 -0
  747. package/lib/codec/mememax/orbix/perpspool/export.js +116 -0
  748. package/lib/codec/mememax/orbix/perpspool/genesis.d.ts +83 -0
  749. package/lib/codec/mememax/orbix/perpspool/genesis.js +506 -0
  750. package/lib/codec/mememax/orbix/perpspool/market.d.ts +139 -0
  751. package/lib/codec/mememax/orbix/perpspool/market.js +582 -0
  752. package/lib/codec/mememax/orbix/perpspool/params.d.ts +86 -0
  753. package/lib/codec/mememax/orbix/perpspool/params.js +765 -0
  754. package/lib/codec/mememax/orbix/perpspool/pool.d.ts +132 -0
  755. package/lib/codec/mememax/orbix/perpspool/pool.js +694 -0
  756. package/lib/codec/mememax/orbix/perpspool/query.d.ts +465 -0
  757. package/lib/codec/mememax/orbix/perpspool/query.js +2106 -0
  758. package/lib/codec/mememax/orbix/perpspool/quote.d.ts +52 -0
  759. package/lib/codec/mememax/orbix/perpspool/quote.js +238 -0
  760. package/lib/codec/mememax/orbix/perpspool/tx.d.ts +447 -0
  761. package/lib/codec/mememax/orbix/perpspool/tx.js +2030 -0
  762. package/lib/codec/mememax/orbix/perpspool/user_vault.d.ts +82 -0
  763. package/lib/codec/mememax/orbix/perpspool/user_vault.js +488 -0
  764. package/lib/codec/mememax/orbix/position/event.d.ts +38 -0
  765. package/lib/codec/mememax/orbix/position/event.js +221 -0
  766. package/lib/codec/mememax/orbix/position/export.d.ts +4 -0
  767. package/lib/codec/mememax/orbix/position/export.js +26 -0
  768. package/lib/codec/mememax/orbix/position/genesis.d.ts +25 -0
  769. package/lib/codec/mememax/orbix/position/genesis.js +72 -0
  770. package/lib/codec/mememax/orbix/position/position.d.ts +89 -0
  771. package/lib/codec/mememax/orbix/position/position.js +655 -0
  772. package/lib/codec/mememax/orbix/position/query.d.ts +148 -0
  773. package/lib/codec/mememax/orbix/position/query.js +625 -0
  774. package/lib/codec/mememax/orbix/position/tx.d.ts +47 -0
  775. package/lib/codec/mememax/orbix/position/tx.js +141 -0
  776. package/lib/codec/mememax/orbix/pricing/event.d.ts +91 -0
  777. package/lib/codec/mememax/orbix/pricing/event.js +430 -0
  778. package/lib/codec/mememax/orbix/pricing/export.d.ts +6 -0
  779. package/lib/codec/mememax/orbix/pricing/export.js +59 -0
  780. package/lib/codec/mememax/orbix/pricing/genesis.d.ts +28 -0
  781. package/lib/codec/mememax/orbix/pricing/genesis.js +105 -0
  782. package/lib/codec/mememax/orbix/pricing/legacy.d.ts +23 -0
  783. package/lib/codec/mememax/orbix/pricing/legacy.js +99 -0
  784. package/lib/codec/mememax/orbix/pricing/params.d.ts +41 -0
  785. package/lib/codec/mememax/orbix/pricing/params.js +293 -0
  786. package/lib/codec/mememax/orbix/pricing/pricing.d.ts +100 -0
  787. package/lib/codec/mememax/orbix/pricing/pricing.js +669 -0
  788. package/lib/codec/mememax/orbix/pricing/query.d.ts +252 -0
  789. package/lib/codec/mememax/orbix/pricing/query.js +1039 -0
  790. package/lib/codec/mememax/orbix/pricing/tx.d.ts +239 -0
  791. package/lib/codec/mememax/orbix/pricing/tx.js +916 -0
  792. package/lib/codec/mememax/orbix/sequence/export.d.ts +3 -0
  793. package/lib/codec/mememax/orbix/sequence/export.js +13 -0
  794. package/lib/codec/mememax/orbix/sequence/genesis.d.ts +32 -0
  795. package/lib/codec/mememax/orbix/sequence/genesis.js +136 -0
  796. package/lib/codec/mememax/orbix/sequence/query.d.ts +73 -0
  797. package/lib/codec/mememax/orbix/sequence/query.js +262 -0
  798. package/lib/codec/mememax/orbix/sequence/tx.d.ts +46 -0
  799. package/lib/codec/mememax/orbix/sequence/tx.js +155 -0
  800. package/lib/codec/mememax/orbix/subaccount/export.d.ts +5 -0
  801. package/lib/codec/mememax/orbix/subaccount/export.js +41 -0
  802. package/lib/codec/mememax/orbix/subaccount/genesis.d.ts +30 -0
  803. package/lib/codec/mememax/orbix/subaccount/genesis.js +128 -0
  804. package/lib/codec/mememax/orbix/subaccount/legacy.d.ts +20 -0
  805. package/lib/codec/mememax/orbix/subaccount/legacy.js +79 -0
  806. package/lib/codec/mememax/orbix/subaccount/params.d.ts +31 -0
  807. package/lib/codec/mememax/orbix/subaccount/params.js +134 -0
  808. package/lib/codec/mememax/orbix/subaccount/query.d.ts +275 -0
  809. package/lib/codec/mememax/orbix/subaccount/query.js +1197 -0
  810. package/lib/codec/mememax/orbix/subaccount/subaccount.d.ts +49 -0
  811. package/lib/codec/mememax/orbix/subaccount/subaccount.js +296 -0
  812. package/lib/codec/mememax/orbix/subaccount/tx.d.ts +145 -0
  813. package/lib/codec/mememax/orbix/subaccount/tx.js +519 -0
  814. package/lib/codec/oraclesvc/query.d.ts +23 -0
  815. package/lib/codec/oraclesvc/query.js +25 -0
  816. package/lib/codec/tendermint/abci/types.d.ts +867 -0
  817. package/lib/codec/tendermint/abci/types.js +4883 -0
  818. package/lib/codec/tendermint/crypto/keys.d.ts +21 -0
  819. package/lib/codec/tendermint/crypto/keys.js +121 -0
  820. package/lib/codec/tendermint/crypto/proof.d.ts +79 -0
  821. package/lib/codec/tendermint/crypto/proof.js +415 -0
  822. package/lib/codec/tendermint/libs/bits/types.d.ts +20 -0
  823. package/lib/codec/tendermint/libs/bits/types.js +93 -0
  824. package/lib/codec/tendermint/oracle/types.d.ts +96 -0
  825. package/lib/codec/tendermint/oracle/types.js +666 -0
  826. package/lib/codec/tendermint/p2p/types.d.ts +64 -0
  827. package/lib/codec/tendermint/p2p/types.js +416 -0
  828. package/lib/codec/tendermint/types/block.d.ts +24 -0
  829. package/lib/codec/tendermint/types/block.js +113 -0
  830. package/lib/codec/tendermint/types/evidence.d.ts +65 -0
  831. package/lib/codec/tendermint/types/evidence.js +402 -0
  832. package/lib/codec/tendermint/types/params.d.ts +148 -0
  833. package/lib/codec/tendermint/types/params.js +499 -0
  834. package/lib/codec/tendermint/types/types.d.ts +289 -0
  835. package/lib/codec/tendermint/types/types.js +1650 -0
  836. package/lib/codec/tendermint/types/validator.d.ts +62 -0
  837. package/lib/codec/tendermint/types/validator.js +353 -0
  838. package/lib/codec/tendermint/version/types.d.ts +42 -0
  839. package/lib/codec/tendermint/version/types.js +143 -0
  840. package/lib/constant/address.d.ts +3 -0
  841. package/lib/constant/address.js +5 -0
  842. package/lib/constant/eip6963Provider.d.ts +66 -0
  843. package/lib/constant/eip6963Provider.js +31 -0
  844. package/lib/constant/eip712.d.ts +46 -0
  845. package/lib/constant/eip712.js +106 -0
  846. package/lib/constant/generic.d.ts +24 -0
  847. package/lib/constant/generic.js +24 -0
  848. package/lib/constant/grant.d.ts +1 -0
  849. package/lib/constant/grant.js +4 -0
  850. package/lib/constant/ibc.d.ts +190 -0
  851. package/lib/constant/ibc.js +2145 -0
  852. package/lib/constant/index.d.ts +10 -0
  853. package/lib/constant/index.js +26 -0
  854. package/lib/constant/modules.d.ts +1 -0
  855. package/lib/constant/modules.js +2 -0
  856. package/lib/constant/network.d.ts +77 -0
  857. package/lib/constant/network.js +429 -0
  858. package/lib/constant/node.d.ts +5 -0
  859. package/lib/constant/node.js +80 -0
  860. package/lib/constant/token.d.ts +13 -0
  861. package/lib/constant/token.js +375 -0
  862. package/lib/constant/walletProvider.d.ts +10 -0
  863. package/lib/constant/walletProvider.js +15 -0
  864. package/lib/constant/web3Config.d.ts +23 -0
  865. package/lib/constant/web3Config.js +46 -0
  866. package/lib/eth/abis/axelarBridge.json +1150 -0
  867. package/lib/eth/abis/balanceReader.json +26 -0
  868. package/lib/eth/abis/bridgeEntrance.json +105 -0
  869. package/lib/eth/abis/erc20.json +222 -0
  870. package/lib/eth/abis/index.d.ts +9 -0
  871. package/lib/eth/abis/index.js +22 -0
  872. package/lib/eth/abis/keyStorage.json +44 -0
  873. package/lib/eth/abis/lockProxy.json +574 -0
  874. package/lib/eth/abis/nativeDepositer.json +167 -0
  875. package/lib/eth/abis/vault.json +119 -0
  876. package/lib/eth/index.d.ts +1 -0
  877. package/lib/eth/index.js +37 -0
  878. package/lib/hydrogen/feeQuote.d.ts +23 -0
  879. package/lib/hydrogen/feeQuote.js +2 -0
  880. package/lib/hydrogen/index.d.ts +3 -0
  881. package/lib/hydrogen/index.js +19 -0
  882. package/lib/hydrogen/relays.d.ts +34 -0
  883. package/lib/hydrogen/relays.js +2 -0
  884. package/lib/hydrogen/stats.d.ts +26 -0
  885. package/lib/hydrogen/stats.js +2 -0
  886. package/lib/hydrogen/transfer.d.ts +159 -0
  887. package/lib/hydrogen/transfer.js +10 -0
  888. package/lib/index.d.ts +12 -0
  889. package/lib/index.js +69 -0
  890. package/lib/insights/alliances.d.ts +39 -0
  891. package/lib/insights/alliances.js +2 -0
  892. package/lib/insights/balance.d.ts +74 -0
  893. package/lib/insights/balance.js +2 -0
  894. package/lib/insights/block.d.ts +25 -0
  895. package/lib/insights/block.js +2 -0
  896. package/lib/insights/chain.d.ts +40 -0
  897. package/lib/insights/chain.js +2 -0
  898. package/lib/insights/common.d.ts +101 -0
  899. package/lib/insights/common.js +83 -0
  900. package/lib/insights/competition.d.ts +196 -0
  901. package/lib/insights/competition.js +2 -0
  902. package/lib/insights/crosschain.d.ts +10 -0
  903. package/lib/insights/crosschain.js +2 -0
  904. package/lib/insights/delegation.d.ts +26 -0
  905. package/lib/insights/delegation.js +2 -0
  906. package/lib/insights/funding.d.ts +41 -0
  907. package/lib/insights/funding.js +2 -0
  908. package/lib/insights/index.d.ts +16 -0
  909. package/lib/insights/index.js +32 -0
  910. package/lib/insights/inflation.d.ts +6 -0
  911. package/lib/insights/inflation.js +2 -0
  912. package/lib/insights/market.d.ts +25 -0
  913. package/lib/insights/market.js +8 -0
  914. package/lib/insights/node.d.ts +32 -0
  915. package/lib/insights/node.js +2 -0
  916. package/lib/insights/oracles.d.ts +17 -0
  917. package/lib/insights/oracles.js +2 -0
  918. package/lib/insights/pool.d.ts +201 -0
  919. package/lib/insights/pool.js +2 -0
  920. package/lib/insights/position.d.ts +104 -0
  921. package/lib/insights/position.js +10 -0
  922. package/lib/insights/proposal.d.ts +21 -0
  923. package/lib/insights/proposal.js +2 -0
  924. package/lib/insights/transaction.d.ts +30 -0
  925. package/lib/insights/transaction.js +2 -0
  926. package/lib/insights/user.d.ts +148 -0
  927. package/lib/insights/user.js +2 -0
  928. package/lib/modules/admin.d.ts +298 -0
  929. package/lib/modules/admin.js +368 -0
  930. package/lib/modules/alliance.d.ts +43 -0
  931. package/lib/modules/alliance.js +79 -0
  932. package/lib/modules/bank.d.ts +14 -0
  933. package/lib/modules/bank.js +24 -0
  934. package/lib/modules/base.d.ts +12 -0
  935. package/lib/modules/base.js +18 -0
  936. package/lib/modules/bridge.d.ts +38 -0
  937. package/lib/modules/bridge.js +84 -0
  938. package/lib/modules/broker.d.ts +16 -0
  939. package/lib/modules/broker.js +37 -0
  940. package/lib/modules/coin.d.ts +54 -0
  941. package/lib/modules/coin.js +108 -0
  942. package/lib/modules/cosmwasm.d.ts +20 -0
  943. package/lib/modules/cosmwasm.js +69 -0
  944. package/lib/modules/evm.d.ts +45 -0
  945. package/lib/modules/evm.js +73 -0
  946. package/lib/modules/evmmerge.d.ts +12 -0
  947. package/lib/modules/evmmerge.js +24 -0
  948. package/lib/modules/fee.d.ts +5 -0
  949. package/lib/modules/fee.js +16 -0
  950. package/lib/modules/gov.d.ts +21 -0
  951. package/lib/modules/gov.js +55 -0
  952. package/lib/modules/grant.d.ts +29 -0
  953. package/lib/modules/grant.js +137 -0
  954. package/lib/modules/ibc.d.ts +46 -0
  955. package/lib/modules/ibc.js +244 -0
  956. package/lib/modules/index.d.ts +19 -0
  957. package/lib/modules/index.js +35 -0
  958. package/lib/modules/leverage.d.ts +14 -0
  959. package/lib/modules/leverage.js +41 -0
  960. package/lib/modules/market.d.ts +104 -0
  961. package/lib/modules/market.js +153 -0
  962. package/lib/modules/oracle.d.ts +5 -0
  963. package/lib/modules/oracle.js +10 -0
  964. package/lib/modules/order.d.ts +78 -0
  965. package/lib/modules/order.js +156 -0
  966. package/lib/modules/perpspool.d.ts +72 -0
  967. package/lib/modules/perpspool.js +178 -0
  968. package/lib/modules/position.d.ts +14 -0
  969. package/lib/modules/position.js +41 -0
  970. package/lib/modules/staking.d.ts +36 -0
  971. package/lib/modules/staking.js +81 -0
  972. package/lib/modules/subaccount.d.ts +24 -0
  973. package/lib/modules/subaccount.js +51 -0
  974. package/lib/provider/amino/AminoTypesMap.d.ts +3 -0
  975. package/lib/provider/amino/AminoTypesMap.js +27 -0
  976. package/lib/provider/amino/index.d.ts +1 -0
  977. package/lib/provider/amino/index.js +8 -0
  978. package/lib/provider/amino/types/admin.d.ts +4 -0
  979. package/lib/provider/amino/types/admin.js +132 -0
  980. package/lib/provider/amino/types/bank.d.ts +4 -0
  981. package/lib/provider/amino/types/bank.js +48 -0
  982. package/lib/provider/amino/types/bridge.d.ts +4 -0
  983. package/lib/provider/amino/types/bridge.js +59 -0
  984. package/lib/provider/amino/types/broker.d.ts +4 -0
  985. package/lib/provider/amino/types/broker.js +48 -0
  986. package/lib/provider/amino/types/coin.d.ts +4 -0
  987. package/lib/provider/amino/types/coin.js +66 -0
  988. package/lib/provider/amino/types/evm.d.ts +4 -0
  989. package/lib/provider/amino/types/evm.js +48 -0
  990. package/lib/provider/amino/types/evmmerge.d.ts +4 -0
  991. package/lib/provider/amino/types/evmmerge.js +48 -0
  992. package/lib/provider/amino/types/feemarket.d.ts +4 -0
  993. package/lib/provider/amino/types/feemarket.js +48 -0
  994. package/lib/provider/amino/types/gov.d.ts +4 -0
  995. package/lib/provider/amino/types/gov.js +358 -0
  996. package/lib/provider/amino/types/grant.d.ts +4 -0
  997. package/lib/provider/amino/types/grant.js +217 -0
  998. package/lib/provider/amino/types/group.d.ts +4 -0
  999. package/lib/provider/amino/types/group.js +64 -0
  1000. package/lib/provider/amino/types/ibc.d.ts +4 -0
  1001. package/lib/provider/amino/types/ibc.js +74 -0
  1002. package/lib/provider/amino/types/index.d.ts +20 -0
  1003. package/lib/provider/amino/types/index.js +46 -0
  1004. package/lib/provider/amino/types/leverage.d.ts +4 -0
  1005. package/lib/provider/amino/types/leverage.js +50 -0
  1006. package/lib/provider/amino/types/market.d.ts +4 -0
  1007. package/lib/provider/amino/types/market.js +104 -0
  1008. package/lib/provider/amino/types/oracle.d.ts +4 -0
  1009. package/lib/provider/amino/types/oracle.js +4 -0
  1010. package/lib/provider/amino/types/order.d.ts +4 -0
  1011. package/lib/provider/amino/types/order.js +105 -0
  1012. package/lib/provider/amino/types/perpspool.d.ts +4 -0
  1013. package/lib/provider/amino/types/perpspool.js +121 -0
  1014. package/lib/provider/amino/types/position.d.ts +4 -0
  1015. package/lib/provider/amino/types/position.js +48 -0
  1016. package/lib/provider/amino/types/staking.d.ts +4 -0
  1017. package/lib/provider/amino/types/staking.js +66 -0
  1018. package/lib/provider/amino/types/subaccount.d.ts +4 -0
  1019. package/lib/provider/amino/types/subaccount.js +60 -0
  1020. package/lib/provider/amino/utils.d.ts +45 -0
  1021. package/lib/provider/amino/utils.js +249 -0
  1022. package/lib/provider/chainProvider/GetSigningCosmosClientOptions.d.ts +2 -0
  1023. package/lib/provider/chainProvider/GetSigningCosmosClientOptions.js +18 -0
  1024. package/lib/provider/chainProvider/index.d.ts +2 -0
  1025. package/lib/provider/chainProvider/index.js +5 -0
  1026. package/lib/provider/eip6963Provider/Eip6963Provider.d.ts +9 -0
  1027. package/lib/provider/eip6963Provider/Eip6963Provider.js +27 -0
  1028. package/lib/provider/eip6963Provider/index.d.ts +1 -0
  1029. package/lib/provider/eip6963Provider/index.js +8 -0
  1030. package/lib/provider/index.d.ts +10 -0
  1031. package/lib/provider/index.js +22 -0
  1032. package/lib/provider/keplr/KeplrAccount.d.ts +27 -0
  1033. package/lib/provider/keplr/KeplrAccount.js +229 -0
  1034. package/lib/provider/keplr/KeplrStore.d.ts +0 -0
  1035. package/lib/provider/keplr/KeplrStore.js +1 -0
  1036. package/lib/provider/keplr/index.d.ts +3 -0
  1037. package/lib/provider/keplr/index.js +8 -0
  1038. package/lib/provider/leap/LeapAccount.d.ts +28 -0
  1039. package/lib/provider/leap/LeapAccount.js +203 -0
  1040. package/lib/provider/leap/index.d.ts +3 -0
  1041. package/lib/provider/leap/index.js +8 -0
  1042. package/lib/provider/ledger/index.d.ts +1 -0
  1043. package/lib/provider/ledger/index.js +8 -0
  1044. package/lib/provider/ledger/ledger.d.ts +28 -0
  1045. package/lib/provider/ledger/ledger.js +308 -0
  1046. package/lib/provider/metamask/MetaMask.d.ts +83 -0
  1047. package/lib/provider/metamask/MetaMask.js +665 -0
  1048. package/lib/provider/metamask/error.d.ts +2 -0
  1049. package/lib/provider/metamask/error.js +18 -0
  1050. package/lib/provider/metamask/index.d.ts +1 -0
  1051. package/lib/provider/metamask/index.js +5 -0
  1052. package/lib/provider/metamask/legacy-accounts.d.ts +11 -0
  1053. package/lib/provider/metamask/legacy-accounts.js +2254 -0
  1054. package/lib/provider/rainbowKit/RainbowKitAccount.d.ts +41 -0
  1055. package/lib/provider/rainbowKit/RainbowKitAccount.js +298 -0
  1056. package/lib/provider/rainbowKit/index.d.ts +1 -0
  1057. package/lib/provider/rainbowKit/index.js +8 -0
  1058. package/lib/provider/sdk/SDKProvider.d.ts +13 -0
  1059. package/lib/provider/sdk/SDKProvider.js +2 -0
  1060. package/lib/provider/sdk/index.d.ts +1 -0
  1061. package/lib/provider/sdk/index.js +2 -0
  1062. package/lib/util/address.d.ts +72 -0
  1063. package/lib/util/address.js +252 -0
  1064. package/lib/util/alliance.d.ts +2 -0
  1065. package/lib/util/alliance.js +27 -0
  1066. package/lib/util/api.d.ts +122 -0
  1067. package/lib/util/api.js +175 -0
  1068. package/lib/util/auth.d.ts +31 -0
  1069. package/lib/util/auth.js +46 -0
  1070. package/lib/util/blockchain.d.ts +96 -0
  1071. package/lib/util/blockchain.js +571 -0
  1072. package/lib/util/bytes.d.ts +1 -0
  1073. package/lib/util/bytes.js +9 -0
  1074. package/lib/util/eip712.d.ts +10 -0
  1075. package/lib/util/eip712.js +199 -0
  1076. package/lib/util/ethermint.d.ts +9 -0
  1077. package/lib/util/ethermint.js +131 -0
  1078. package/lib/util/evm.d.ts +2 -0
  1079. package/lib/util/evm.js +10 -0
  1080. package/lib/util/external.d.ts +11 -0
  1081. package/lib/util/external.js +7 -0
  1082. package/lib/util/fetch.d.ts +1 -0
  1083. package/lib/util/fetch.js +15 -0
  1084. package/lib/util/generic.d.ts +40 -0
  1085. package/lib/util/generic.js +163 -0
  1086. package/lib/util/gov.d.ts +47 -0
  1087. package/lib/util/gov.js +251 -0
  1088. package/lib/util/grant.d.ts +21 -0
  1089. package/lib/util/grant.js +59 -0
  1090. package/lib/util/ibc.d.ts +19 -0
  1091. package/lib/util/ibc.js +148 -0
  1092. package/lib/util/index.d.ts +20 -0
  1093. package/lib/util/index.js +56 -0
  1094. package/lib/util/ledger.d.ts +3 -0
  1095. package/lib/util/ledger.js +43 -0
  1096. package/lib/util/legacyEIP712.d.ts +20 -0
  1097. package/lib/util/legacyEIP712.js +100 -0
  1098. package/lib/util/message.d.ts +2 -0
  1099. package/lib/util/message.js +24 -0
  1100. package/lib/util/network.d.ts +9 -0
  1101. package/lib/util/network.js +39 -0
  1102. package/lib/util/number.d.ts +9 -0
  1103. package/lib/util/number.js +47 -0
  1104. package/lib/util/order.d.ts +3 -0
  1105. package/lib/util/order.js +13 -0
  1106. package/lib/util/provider.d.ts +1 -0
  1107. package/lib/util/provider.js +12 -0
  1108. package/lib/util/token.d.ts +16 -0
  1109. package/lib/util/token.js +23 -0
  1110. package/lib/util/transferfees.d.ts +18 -0
  1111. package/lib/util/transferfees.js +9 -0
  1112. package/lib/util/tx.d.ts +559 -0
  1113. package/lib/util/tx.js +168 -0
  1114. package/lib/util/type.d.ts +22 -0
  1115. package/lib/util/type.js +45 -0
  1116. package/lib/wallet/CarbonSigner.d.ts +67 -0
  1117. package/lib/wallet/CarbonSigner.js +131 -0
  1118. package/lib/wallet/CarbonSigningClient.d.ts +41 -0
  1119. package/lib/wallet/CarbonSigningClient.js +201 -0
  1120. package/lib/wallet/CarbonWallet.d.ts +220 -0
  1121. package/lib/wallet/CarbonWallet.js +790 -0
  1122. package/lib/wallet/index.d.ts +2 -0
  1123. package/lib/wallet/index.js +18 -0
  1124. package/lib/websocket/channel.d.ts +3 -0
  1125. package/lib/websocket/channel.js +209 -0
  1126. package/lib/websocket/connector.d.ts +234 -0
  1127. package/lib/websocket/connector.js +502 -0
  1128. package/lib/websocket/index.d.ts +1 -0
  1129. package/lib/websocket/index.js +17 -0
  1130. package/lib/websocket/models.d.ts +332 -0
  1131. package/lib/websocket/models.js +2 -0
  1132. package/lib/websocket/types.d.ts +154 -0
  1133. package/lib/websocket/types.js +44 -0
  1134. package/package.json +90 -0
@@ -0,0 +1,1446 @@
1
+ import Long from "long";
2
+ import _m0 from "protobufjs/minimal";
3
+ export declare const protobufPackage = "google.protobuf";
4
+ /** The full set of known editions. */
5
+ export declare enum Edition {
6
+ /** EDITION_UNKNOWN - A placeholder for an unknown edition value. */
7
+ EDITION_UNKNOWN = 0,
8
+ /**
9
+ * EDITION_LEGACY - A placeholder edition for specifying default behaviors *before* a feature
10
+ * was first introduced. This is effectively an "infinite past".
11
+ */
12
+ EDITION_LEGACY = 900,
13
+ /**
14
+ * EDITION_PROTO2 - Legacy syntax "editions". These pre-date editions, but behave much like
15
+ * distinct editions. These can't be used to specify the edition of proto
16
+ * files, but feature definitions must supply proto2/proto3 defaults for
17
+ * backwards compatibility.
18
+ */
19
+ EDITION_PROTO2 = 998,
20
+ EDITION_PROTO3 = 999,
21
+ /**
22
+ * EDITION_2023 - Editions that have been released. The specific values are arbitrary and
23
+ * should not be depended on, but they will always be time-ordered for easy
24
+ * comparison.
25
+ */
26
+ EDITION_2023 = 1000,
27
+ EDITION_2024 = 1001,
28
+ /**
29
+ * EDITION_1_TEST_ONLY - Placeholder editions for testing feature resolution. These should not be
30
+ * used or relied on outside of tests.
31
+ */
32
+ EDITION_1_TEST_ONLY = 1,
33
+ EDITION_2_TEST_ONLY = 2,
34
+ EDITION_99997_TEST_ONLY = 99997,
35
+ EDITION_99998_TEST_ONLY = 99998,
36
+ EDITION_99999_TEST_ONLY = 99999,
37
+ /**
38
+ * EDITION_MAX - Placeholder for specifying unbounded edition support. This should only
39
+ * ever be used by plugins that can expect to never require any changes to
40
+ * support a new edition.
41
+ */
42
+ EDITION_MAX = 2147483647,
43
+ UNRECOGNIZED = -1
44
+ }
45
+ export declare function editionFromJSON(object: any): Edition;
46
+ export declare function editionToJSON(object: Edition): string;
47
+ /**
48
+ * The protocol compiler can output a FileDescriptorSet containing the .proto
49
+ * files it parses.
50
+ */
51
+ export interface FileDescriptorSet {
52
+ file: FileDescriptorProto[];
53
+ }
54
+ /** Describes a complete .proto file. */
55
+ export interface FileDescriptorProto {
56
+ /** file name, relative to root of source tree */
57
+ name: string;
58
+ /** e.g. "foo", "foo.bar", etc. */
59
+ package: string;
60
+ /** Names of files imported by this file. */
61
+ dependency: string[];
62
+ /** Indexes of the public imported files in the dependency list above. */
63
+ publicDependency: number[];
64
+ /**
65
+ * Indexes of the weak imported files in the dependency list.
66
+ * For Google-internal migration only. Do not use.
67
+ */
68
+ weakDependency: number[];
69
+ /** All top-level definitions in this file. */
70
+ messageType: DescriptorProto[];
71
+ enumType: EnumDescriptorProto[];
72
+ service: ServiceDescriptorProto[];
73
+ extension: FieldDescriptorProto[];
74
+ options?: FileOptions;
75
+ /**
76
+ * This field contains optional information about the original source code.
77
+ * You may safely remove this entire field without harming runtime
78
+ * functionality of the descriptors -- the information is needed only by
79
+ * development tools.
80
+ */
81
+ sourceCodeInfo?: SourceCodeInfo;
82
+ /**
83
+ * The syntax of the proto file.
84
+ * The supported values are "proto2", "proto3", and "editions".
85
+ *
86
+ * If `edition` is present, this value must be "editions".
87
+ */
88
+ syntax: string;
89
+ /** The edition of the proto file. */
90
+ edition: Edition;
91
+ }
92
+ /** Describes a message type. */
93
+ export interface DescriptorProto {
94
+ name: string;
95
+ field: FieldDescriptorProto[];
96
+ extension: FieldDescriptorProto[];
97
+ nestedType: DescriptorProto[];
98
+ enumType: EnumDescriptorProto[];
99
+ extensionRange: DescriptorProto_ExtensionRange[];
100
+ oneofDecl: OneofDescriptorProto[];
101
+ options?: MessageOptions;
102
+ reservedRange: DescriptorProto_ReservedRange[];
103
+ /**
104
+ * Reserved field names, which may not be used by fields in the same message.
105
+ * A given name may only be reserved once.
106
+ */
107
+ reservedName: string[];
108
+ }
109
+ export interface DescriptorProto_ExtensionRange {
110
+ /** Inclusive. */
111
+ start: number;
112
+ /** Exclusive. */
113
+ end: number;
114
+ options?: ExtensionRangeOptions;
115
+ }
116
+ /**
117
+ * Range of reserved tag numbers. Reserved tag numbers may not be used by
118
+ * fields or extension ranges in the same message. Reserved ranges may
119
+ * not overlap.
120
+ */
121
+ export interface DescriptorProto_ReservedRange {
122
+ /** Inclusive. */
123
+ start: number;
124
+ /** Exclusive. */
125
+ end: number;
126
+ }
127
+ export interface ExtensionRangeOptions {
128
+ /** The parser stores options it doesn't recognize here. See above. */
129
+ uninterpretedOption: UninterpretedOption[];
130
+ /**
131
+ * For external users: DO NOT USE. We are in the process of open sourcing
132
+ * extension declaration and executing internal cleanups before it can be
133
+ * used externally.
134
+ */
135
+ declaration: ExtensionRangeOptions_Declaration[];
136
+ /** Any features defined in the specific edition. */
137
+ features?: FeatureSet;
138
+ /**
139
+ * The verification state of the range.
140
+ * TODO: flip the default to DECLARATION once all empty ranges
141
+ * are marked as UNVERIFIED.
142
+ */
143
+ verification: ExtensionRangeOptions_VerificationState;
144
+ }
145
+ /** The verification state of the extension range. */
146
+ export declare enum ExtensionRangeOptions_VerificationState {
147
+ /** DECLARATION - All the extensions of the range must be declared. */
148
+ DECLARATION = 0,
149
+ UNVERIFIED = 1,
150
+ UNRECOGNIZED = -1
151
+ }
152
+ export declare function extensionRangeOptions_VerificationStateFromJSON(object: any): ExtensionRangeOptions_VerificationState;
153
+ export declare function extensionRangeOptions_VerificationStateToJSON(object: ExtensionRangeOptions_VerificationState): string;
154
+ export interface ExtensionRangeOptions_Declaration {
155
+ /** The extension number declared within the extension range. */
156
+ number: number;
157
+ /**
158
+ * The fully-qualified name of the extension field. There must be a leading
159
+ * dot in front of the full name.
160
+ */
161
+ fullName: string;
162
+ /**
163
+ * The fully-qualified type name of the extension field. Unlike
164
+ * Metadata.type, Declaration.type must have a leading dot for messages
165
+ * and enums.
166
+ */
167
+ type: string;
168
+ /**
169
+ * If true, indicates that the number is reserved in the extension range,
170
+ * and any extension field with the number will fail to compile. Set this
171
+ * when a declared extension field is deleted.
172
+ */
173
+ reserved: boolean;
174
+ /**
175
+ * If true, indicates that the extension must be defined as repeated.
176
+ * Otherwise the extension must be defined as optional.
177
+ */
178
+ repeated: boolean;
179
+ }
180
+ /** Describes a field within a message. */
181
+ export interface FieldDescriptorProto {
182
+ name: string;
183
+ number: number;
184
+ label: FieldDescriptorProto_Label;
185
+ /**
186
+ * If type_name is set, this need not be set. If both this and type_name
187
+ * are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.
188
+ */
189
+ type: FieldDescriptorProto_Type;
190
+ /**
191
+ * For message and enum types, this is the name of the type. If the name
192
+ * starts with a '.', it is fully-qualified. Otherwise, C++-like scoping
193
+ * rules are used to find the type (i.e. first the nested types within this
194
+ * message are searched, then within the parent, on up to the root
195
+ * namespace).
196
+ */
197
+ typeName: string;
198
+ /**
199
+ * For extensions, this is the name of the type being extended. It is
200
+ * resolved in the same manner as type_name.
201
+ */
202
+ extendee: string;
203
+ /**
204
+ * For numeric types, contains the original text representation of the value.
205
+ * For booleans, "true" or "false".
206
+ * For strings, contains the default text contents (not escaped in any way).
207
+ * For bytes, contains the C escaped value. All bytes >= 128 are escaped.
208
+ */
209
+ defaultValue: string;
210
+ /**
211
+ * If set, gives the index of a oneof in the containing type's oneof_decl
212
+ * list. This field is a member of that oneof.
213
+ */
214
+ oneofIndex: number;
215
+ /**
216
+ * JSON name of this field. The value is set by protocol compiler. If the
217
+ * user has set a "json_name" option on this field, that option's value
218
+ * will be used. Otherwise, it's deduced from the field's name by converting
219
+ * it to camelCase.
220
+ */
221
+ jsonName: string;
222
+ options?: FieldOptions;
223
+ /**
224
+ * If true, this is a proto3 "optional". When a proto3 field is optional, it
225
+ * tracks presence regardless of field type.
226
+ *
227
+ * When proto3_optional is true, this field must belong to a oneof to signal
228
+ * to old proto3 clients that presence is tracked for this field. This oneof
229
+ * is known as a "synthetic" oneof, and this field must be its sole member
230
+ * (each proto3 optional field gets its own synthetic oneof). Synthetic oneofs
231
+ * exist in the descriptor only, and do not generate any API. Synthetic oneofs
232
+ * must be ordered after all "real" oneofs.
233
+ *
234
+ * For message fields, proto3_optional doesn't create any semantic change,
235
+ * since non-repeated message fields always track presence. However it still
236
+ * indicates the semantic detail of whether the user wrote "optional" or not.
237
+ * This can be useful for round-tripping the .proto file. For consistency we
238
+ * give message fields a synthetic oneof also, even though it is not required
239
+ * to track presence. This is especially important because the parser can't
240
+ * tell if a field is a message or an enum, so it must always create a
241
+ * synthetic oneof.
242
+ *
243
+ * Proto2 optional fields do not set this flag, because they already indicate
244
+ * optional with `LABEL_OPTIONAL`.
245
+ */
246
+ proto3Optional: boolean;
247
+ }
248
+ export declare enum FieldDescriptorProto_Type {
249
+ /**
250
+ * TYPE_DOUBLE - 0 is reserved for errors.
251
+ * Order is weird for historical reasons.
252
+ */
253
+ TYPE_DOUBLE = 1,
254
+ TYPE_FLOAT = 2,
255
+ /**
256
+ * TYPE_INT64 - Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if
257
+ * negative values are likely.
258
+ */
259
+ TYPE_INT64 = 3,
260
+ TYPE_UINT64 = 4,
261
+ /**
262
+ * TYPE_INT32 - Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if
263
+ * negative values are likely.
264
+ */
265
+ TYPE_INT32 = 5,
266
+ TYPE_FIXED64 = 6,
267
+ TYPE_FIXED32 = 7,
268
+ TYPE_BOOL = 8,
269
+ TYPE_STRING = 9,
270
+ /**
271
+ * TYPE_GROUP - Tag-delimited aggregate.
272
+ * Group type is deprecated and not supported after google.protobuf. However, Proto3
273
+ * implementations should still be able to parse the group wire format and
274
+ * treat group fields as unknown fields. In Editions, the group wire format
275
+ * can be enabled via the `message_encoding` feature.
276
+ */
277
+ TYPE_GROUP = 10,
278
+ /** TYPE_MESSAGE - Length-delimited aggregate. */
279
+ TYPE_MESSAGE = 11,
280
+ /** TYPE_BYTES - New in version 2. */
281
+ TYPE_BYTES = 12,
282
+ TYPE_UINT32 = 13,
283
+ TYPE_ENUM = 14,
284
+ TYPE_SFIXED32 = 15,
285
+ TYPE_SFIXED64 = 16,
286
+ /** TYPE_SINT32 - Uses ZigZag encoding. */
287
+ TYPE_SINT32 = 17,
288
+ /** TYPE_SINT64 - Uses ZigZag encoding. */
289
+ TYPE_SINT64 = 18,
290
+ UNRECOGNIZED = -1
291
+ }
292
+ export declare function fieldDescriptorProto_TypeFromJSON(object: any): FieldDescriptorProto_Type;
293
+ export declare function fieldDescriptorProto_TypeToJSON(object: FieldDescriptorProto_Type): string;
294
+ export declare enum FieldDescriptorProto_Label {
295
+ /** LABEL_OPTIONAL - 0 is reserved for errors */
296
+ LABEL_OPTIONAL = 1,
297
+ LABEL_REPEATED = 3,
298
+ /**
299
+ * LABEL_REQUIRED - The required label is only allowed in google.protobuf. In proto3 and Editions
300
+ * it's explicitly prohibited. In Editions, the `field_presence` feature
301
+ * can be used to get this behavior.
302
+ */
303
+ LABEL_REQUIRED = 2,
304
+ UNRECOGNIZED = -1
305
+ }
306
+ export declare function fieldDescriptorProto_LabelFromJSON(object: any): FieldDescriptorProto_Label;
307
+ export declare function fieldDescriptorProto_LabelToJSON(object: FieldDescriptorProto_Label): string;
308
+ /** Describes a oneof. */
309
+ export interface OneofDescriptorProto {
310
+ name: string;
311
+ options?: OneofOptions;
312
+ }
313
+ /** Describes an enum type. */
314
+ export interface EnumDescriptorProto {
315
+ name: string;
316
+ value: EnumValueDescriptorProto[];
317
+ options?: EnumOptions;
318
+ /**
319
+ * Range of reserved numeric values. Reserved numeric values may not be used
320
+ * by enum values in the same enum declaration. Reserved ranges may not
321
+ * overlap.
322
+ */
323
+ reservedRange: EnumDescriptorProto_EnumReservedRange[];
324
+ /**
325
+ * Reserved enum value names, which may not be reused. A given name may only
326
+ * be reserved once.
327
+ */
328
+ reservedName: string[];
329
+ }
330
+ /**
331
+ * Range of reserved numeric values. Reserved values may not be used by
332
+ * entries in the same enum. Reserved ranges may not overlap.
333
+ *
334
+ * Note that this is distinct from DescriptorProto.ReservedRange in that it
335
+ * is inclusive such that it can appropriately represent the entire int32
336
+ * domain.
337
+ */
338
+ export interface EnumDescriptorProto_EnumReservedRange {
339
+ /** Inclusive. */
340
+ start: number;
341
+ /** Inclusive. */
342
+ end: number;
343
+ }
344
+ /** Describes a value within an enum. */
345
+ export interface EnumValueDescriptorProto {
346
+ name: string;
347
+ number: number;
348
+ options?: EnumValueOptions;
349
+ }
350
+ /** Describes a service. */
351
+ export interface ServiceDescriptorProto {
352
+ name: string;
353
+ method: MethodDescriptorProto[];
354
+ options?: ServiceOptions;
355
+ }
356
+ /** Describes a method of a service. */
357
+ export interface MethodDescriptorProto {
358
+ name: string;
359
+ /**
360
+ * Input and output type names. These are resolved in the same way as
361
+ * FieldDescriptorProto.type_name, but must refer to a message type.
362
+ */
363
+ inputType: string;
364
+ outputType: string;
365
+ options?: MethodOptions;
366
+ /** Identifies if client streams multiple client messages */
367
+ clientStreaming: boolean;
368
+ /** Identifies if server streams multiple server messages */
369
+ serverStreaming: boolean;
370
+ }
371
+ export interface FileOptions {
372
+ /**
373
+ * Sets the Java package where classes generated from this .proto will be
374
+ * placed. By default, the proto package is used, but this is often
375
+ * inappropriate because proto packages do not normally start with backwards
376
+ * domain names.
377
+ */
378
+ javaPackage: string;
379
+ /**
380
+ * Controls the name of the wrapper Java class generated for the .proto file.
381
+ * That class will always contain the .proto file's getDescriptor() method as
382
+ * well as any top-level extensions defined in the .proto file.
383
+ * If java_multiple_files is disabled, then all the other classes from the
384
+ * .proto file will be nested inside the single wrapper outer class.
385
+ */
386
+ javaOuterClassname: string;
387
+ /**
388
+ * If enabled, then the Java code generator will generate a separate .java
389
+ * file for each top-level message, enum, and service defined in the .proto
390
+ * file. Thus, these types will *not* be nested inside the wrapper class
391
+ * named by java_outer_classname. However, the wrapper class will still be
392
+ * generated to contain the file's getDescriptor() method as well as any
393
+ * top-level extensions defined in the file.
394
+ */
395
+ javaMultipleFiles: boolean;
396
+ /**
397
+ * This option does nothing.
398
+ *
399
+ * @deprecated
400
+ */
401
+ javaGenerateEqualsAndHash: boolean;
402
+ /**
403
+ * A proto2 file can set this to true to opt in to UTF-8 checking for Java,
404
+ * which will throw an exception if invalid UTF-8 is parsed from the wire or
405
+ * assigned to a string field.
406
+ *
407
+ * TODO: clarify exactly what kinds of field types this option
408
+ * applies to, and update these docs accordingly.
409
+ *
410
+ * Proto3 files already perform these checks. Setting the option explicitly to
411
+ * false has no effect: it cannot be used to opt proto3 files out of UTF-8
412
+ * checks.
413
+ */
414
+ javaStringCheckUtf8: boolean;
415
+ optimizeFor: FileOptions_OptimizeMode;
416
+ /**
417
+ * Sets the Go package where structs generated from this .proto will be
418
+ * placed. If omitted, the Go package will be derived from the following:
419
+ * - The basename of the package import path, if provided.
420
+ * - Otherwise, the package statement in the .proto file, if present.
421
+ * - Otherwise, the basename of the .proto file, without extension.
422
+ */
423
+ goPackage: string;
424
+ /**
425
+ * Should generic services be generated in each language? "Generic" services
426
+ * are not specific to any particular RPC system. They are generated by the
427
+ * main code generators in each language (without additional plugins).
428
+ * Generic services were the only kind of service generation supported by
429
+ * early versions of google.protobuf.
430
+ *
431
+ * Generic services are now considered deprecated in favor of using plugins
432
+ * that generate code specific to your particular RPC system. Therefore,
433
+ * these default to false. Old code which depends on generic services should
434
+ * explicitly set them to true.
435
+ */
436
+ ccGenericServices: boolean;
437
+ javaGenericServices: boolean;
438
+ pyGenericServices: boolean;
439
+ /**
440
+ * Is this file deprecated?
441
+ * Depending on the target platform, this can emit Deprecated annotations
442
+ * for everything in the file, or it will be completely ignored; in the very
443
+ * least, this is a formalization for deprecating files.
444
+ */
445
+ deprecated: boolean;
446
+ /**
447
+ * Enables the use of arenas for the proto messages in this file. This applies
448
+ * only to generated classes for C++.
449
+ */
450
+ ccEnableArenas: boolean;
451
+ /**
452
+ * Sets the objective c class prefix which is prepended to all objective c
453
+ * generated classes from this .proto. There is no default.
454
+ */
455
+ objcClassPrefix: string;
456
+ /** Namespace for generated classes; defaults to the package. */
457
+ csharpNamespace: string;
458
+ /**
459
+ * By default Swift generators will take the proto package and CamelCase it
460
+ * replacing '.' with underscore and use that to prefix the types/symbols
461
+ * defined. When this options is provided, they will use this value instead
462
+ * to prefix the types/symbols defined.
463
+ */
464
+ swiftPrefix: string;
465
+ /**
466
+ * Sets the php class prefix which is prepended to all php generated classes
467
+ * from this .proto. Default is empty.
468
+ */
469
+ phpClassPrefix: string;
470
+ /**
471
+ * Use this option to change the namespace of php generated classes. Default
472
+ * is empty. When this option is empty, the package name will be used for
473
+ * determining the namespace.
474
+ */
475
+ phpNamespace: string;
476
+ /**
477
+ * Use this option to change the namespace of php generated metadata classes.
478
+ * Default is empty. When this option is empty, the proto file name will be
479
+ * used for determining the namespace.
480
+ */
481
+ phpMetadataNamespace: string;
482
+ /**
483
+ * Use this option to change the package of ruby generated classes. Default
484
+ * is empty. When this option is not set, the package name will be used for
485
+ * determining the ruby package.
486
+ */
487
+ rubyPackage: string;
488
+ /** Any features defined in the specific edition. */
489
+ features?: FeatureSet;
490
+ /**
491
+ * The parser stores options it doesn't recognize here.
492
+ * See the documentation for the "Options" section above.
493
+ */
494
+ uninterpretedOption: UninterpretedOption[];
495
+ }
496
+ /** Generated classes can be optimized for speed or code size. */
497
+ export declare enum FileOptions_OptimizeMode {
498
+ /** SPEED - Generate complete code for parsing, serialization, */
499
+ SPEED = 1,
500
+ /** CODE_SIZE - etc. */
501
+ CODE_SIZE = 2,
502
+ /** LITE_RUNTIME - Generate code using MessageLite and the lite runtime. */
503
+ LITE_RUNTIME = 3,
504
+ UNRECOGNIZED = -1
505
+ }
506
+ export declare function fileOptions_OptimizeModeFromJSON(object: any): FileOptions_OptimizeMode;
507
+ export declare function fileOptions_OptimizeModeToJSON(object: FileOptions_OptimizeMode): string;
508
+ export interface MessageOptions {
509
+ /**
510
+ * Set true to use the old proto1 MessageSet wire format for extensions.
511
+ * This is provided for backwards-compatibility with the MessageSet wire
512
+ * format. You should not use this for any other reason: It's less
513
+ * efficient, has fewer features, and is more complicated.
514
+ *
515
+ * The message must be defined exactly as follows:
516
+ * message Foo {
517
+ * option message_set_wire_format = true;
518
+ * extensions 4 to max;
519
+ * }
520
+ * Note that the message cannot have any defined fields; MessageSets only
521
+ * have extensions.
522
+ *
523
+ * All extensions of your type must be singular messages; e.g. they cannot
524
+ * be int32s, enums, or repeated messages.
525
+ *
526
+ * Because this is an option, the above two restrictions are not enforced by
527
+ * the protocol compiler.
528
+ */
529
+ messageSetWireFormat: boolean;
530
+ /**
531
+ * Disables the generation of the standard "descriptor()" accessor, which can
532
+ * conflict with a field of the same name. This is meant to make migration
533
+ * from proto1 easier; new code should avoid fields named "descriptor".
534
+ */
535
+ noStandardDescriptorAccessor: boolean;
536
+ /**
537
+ * Is this message deprecated?
538
+ * Depending on the target platform, this can emit Deprecated annotations
539
+ * for the message, or it will be completely ignored; in the very least,
540
+ * this is a formalization for deprecating messages.
541
+ */
542
+ deprecated: boolean;
543
+ /**
544
+ * Whether the message is an automatically generated map entry type for the
545
+ * maps field.
546
+ *
547
+ * For maps fields:
548
+ * map<KeyType, ValueType> map_field = 1;
549
+ * The parsed descriptor looks like:
550
+ * message MapFieldEntry {
551
+ * option map_entry = true;
552
+ * optional KeyType key = 1;
553
+ * optional ValueType value = 2;
554
+ * }
555
+ * repeated MapFieldEntry map_field = 1;
556
+ *
557
+ * Implementations may choose not to generate the map_entry=true message, but
558
+ * use a native map in the target language to hold the keys and values.
559
+ * The reflection APIs in such implementations still need to work as
560
+ * if the field is a repeated message field.
561
+ *
562
+ * NOTE: Do not set the option in .proto files. Always use the maps syntax
563
+ * instead. The option should only be implicitly set by the proto compiler
564
+ * parser.
565
+ */
566
+ mapEntry: boolean;
567
+ /**
568
+ * Enable the legacy handling of JSON field name conflicts. This lowercases
569
+ * and strips underscored from the fields before comparison in proto3 only.
570
+ * The new behavior takes `json_name` into account and applies to proto2 as
571
+ * well.
572
+ *
573
+ * This should only be used as a temporary measure against broken builds due
574
+ * to the change in behavior for JSON field name conflicts.
575
+ *
576
+ * TODO This is legacy behavior we plan to remove once downstream
577
+ * teams have had time to migrate.
578
+ *
579
+ * @deprecated
580
+ */
581
+ deprecatedLegacyJsonFieldConflicts: boolean;
582
+ /** Any features defined in the specific edition. */
583
+ features?: FeatureSet;
584
+ /** The parser stores options it doesn't recognize here. See above. */
585
+ uninterpretedOption: UninterpretedOption[];
586
+ }
587
+ export interface FieldOptions {
588
+ /**
589
+ * NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
590
+ * The ctype option instructs the C++ code generator to use a different
591
+ * representation of the field than it normally would. See the specific
592
+ * options below. This option is only implemented to support use of
593
+ * [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of
594
+ * type "bytes" in the open source release.
595
+ * TODO: make ctype actually deprecated.
596
+ */
597
+ ctype: FieldOptions_CType;
598
+ /**
599
+ * The packed option can be enabled for repeated primitive fields to enable
600
+ * a more efficient representation on the wire. Rather than repeatedly
601
+ * writing the tag and type for each element, the entire array is encoded as
602
+ * a single length-delimited blob. In proto3, only explicit setting it to
603
+ * false will avoid using packed encoding. This option is prohibited in
604
+ * Editions, but the `repeated_field_encoding` feature can be used to control
605
+ * the behavior.
606
+ */
607
+ packed: boolean;
608
+ /**
609
+ * The jstype option determines the JavaScript type used for values of the
610
+ * field. The option is permitted only for 64 bit integral and fixed types
611
+ * (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING
612
+ * is represented as JavaScript string, which avoids loss of precision that
613
+ * can happen when a large value is converted to a floating point JavaScript.
614
+ * Specifying JS_NUMBER for the jstype causes the generated JavaScript code to
615
+ * use the JavaScript "number" type. The behavior of the default option
616
+ * JS_NORMAL is implementation dependent.
617
+ *
618
+ * This option is an enum to permit additional types to be added, e.g.
619
+ * goog.math.Integer.
620
+ */
621
+ jstype: FieldOptions_JSType;
622
+ /**
623
+ * Should this field be parsed lazily? Lazy applies only to message-type
624
+ * fields. It means that when the outer message is initially parsed, the
625
+ * inner message's contents will not be parsed but instead stored in encoded
626
+ * form. The inner message will actually be parsed when it is first accessed.
627
+ *
628
+ * This is only a hint. Implementations are free to choose whether to use
629
+ * eager or lazy parsing regardless of the value of this option. However,
630
+ * setting this option true suggests that the protocol author believes that
631
+ * using lazy parsing on this field is worth the additional bookkeeping
632
+ * overhead typically needed to implement it.
633
+ *
634
+ * This option does not affect the public interface of any generated code;
635
+ * all method signatures remain the same. Furthermore, thread-safety of the
636
+ * interface is not affected by this option; const methods remain safe to
637
+ * call from multiple threads concurrently, while non-const methods continue
638
+ * to require exclusive access.
639
+ *
640
+ * Note that lazy message fields are still eagerly verified to check
641
+ * ill-formed wireformat or missing required fields. Calling IsInitialized()
642
+ * on the outer message would fail if the inner message has missing required
643
+ * fields. Failed verification would result in parsing failure (except when
644
+ * uninitialized messages are acceptable).
645
+ */
646
+ lazy: boolean;
647
+ /**
648
+ * unverified_lazy does no correctness checks on the byte stream. This should
649
+ * only be used where lazy with verification is prohibitive for performance
650
+ * reasons.
651
+ */
652
+ unverifiedLazy: boolean;
653
+ /**
654
+ * Is this field deprecated?
655
+ * Depending on the target platform, this can emit Deprecated annotations
656
+ * for accessors, or it will be completely ignored; in the very least, this
657
+ * is a formalization for deprecating fields.
658
+ */
659
+ deprecated: boolean;
660
+ /** For Google-internal migration only. Do not use. */
661
+ weak: boolean;
662
+ /**
663
+ * Indicate that the field value should not be printed out when using debug
664
+ * formats, e.g. when the field contains sensitive credentials.
665
+ */
666
+ debugRedact: boolean;
667
+ retention: FieldOptions_OptionRetention;
668
+ targets: FieldOptions_OptionTargetType[];
669
+ editionDefaults: FieldOptions_EditionDefault[];
670
+ /** Any features defined in the specific edition. */
671
+ features?: FeatureSet;
672
+ featureSupport?: FieldOptions_FeatureSupport;
673
+ /** The parser stores options it doesn't recognize here. See above. */
674
+ uninterpretedOption: UninterpretedOption[];
675
+ }
676
+ export declare enum FieldOptions_CType {
677
+ /** STRING - Default mode. */
678
+ STRING = 0,
679
+ /**
680
+ * CORD - The option [ctype=CORD] may be applied to a non-repeated field of type
681
+ * "bytes". It indicates that in C++, the data should be stored in a Cord
682
+ * instead of a string. For very large strings, this may reduce memory
683
+ * fragmentation. It may also allow better performance when parsing from a
684
+ * Cord, or when parsing with aliasing enabled, as the parsed Cord may then
685
+ * alias the original buffer.
686
+ */
687
+ CORD = 1,
688
+ STRING_PIECE = 2,
689
+ UNRECOGNIZED = -1
690
+ }
691
+ export declare function fieldOptions_CTypeFromJSON(object: any): FieldOptions_CType;
692
+ export declare function fieldOptions_CTypeToJSON(object: FieldOptions_CType): string;
693
+ export declare enum FieldOptions_JSType {
694
+ /** JS_NORMAL - Use the default type. */
695
+ JS_NORMAL = 0,
696
+ /** JS_STRING - Use JavaScript strings. */
697
+ JS_STRING = 1,
698
+ /** JS_NUMBER - Use JavaScript numbers. */
699
+ JS_NUMBER = 2,
700
+ UNRECOGNIZED = -1
701
+ }
702
+ export declare function fieldOptions_JSTypeFromJSON(object: any): FieldOptions_JSType;
703
+ export declare function fieldOptions_JSTypeToJSON(object: FieldOptions_JSType): string;
704
+ /** If set to RETENTION_SOURCE, the option will be omitted from the binary. */
705
+ export declare enum FieldOptions_OptionRetention {
706
+ RETENTION_UNKNOWN = 0,
707
+ RETENTION_RUNTIME = 1,
708
+ RETENTION_SOURCE = 2,
709
+ UNRECOGNIZED = -1
710
+ }
711
+ export declare function fieldOptions_OptionRetentionFromJSON(object: any): FieldOptions_OptionRetention;
712
+ export declare function fieldOptions_OptionRetentionToJSON(object: FieldOptions_OptionRetention): string;
713
+ /**
714
+ * This indicates the types of entities that the field may apply to when used
715
+ * as an option. If it is unset, then the field may be freely used as an
716
+ * option on any kind of entity.
717
+ */
718
+ export declare enum FieldOptions_OptionTargetType {
719
+ TARGET_TYPE_UNKNOWN = 0,
720
+ TARGET_TYPE_FILE = 1,
721
+ TARGET_TYPE_EXTENSION_RANGE = 2,
722
+ TARGET_TYPE_MESSAGE = 3,
723
+ TARGET_TYPE_FIELD = 4,
724
+ TARGET_TYPE_ONEOF = 5,
725
+ TARGET_TYPE_ENUM = 6,
726
+ TARGET_TYPE_ENUM_ENTRY = 7,
727
+ TARGET_TYPE_SERVICE = 8,
728
+ TARGET_TYPE_METHOD = 9,
729
+ UNRECOGNIZED = -1
730
+ }
731
+ export declare function fieldOptions_OptionTargetTypeFromJSON(object: any): FieldOptions_OptionTargetType;
732
+ export declare function fieldOptions_OptionTargetTypeToJSON(object: FieldOptions_OptionTargetType): string;
733
+ export interface FieldOptions_EditionDefault {
734
+ edition: Edition;
735
+ /** Textproto value. */
736
+ value: string;
737
+ }
738
+ /** Information about the support window of a feature. */
739
+ export interface FieldOptions_FeatureSupport {
740
+ /**
741
+ * The edition that this feature was first available in. In editions
742
+ * earlier than this one, the default assigned to EDITION_LEGACY will be
743
+ * used, and proto files will not be able to override it.
744
+ */
745
+ editionIntroduced: Edition;
746
+ /**
747
+ * The edition this feature becomes deprecated in. Using this after this
748
+ * edition may trigger warnings.
749
+ */
750
+ editionDeprecated: Edition;
751
+ /**
752
+ * The deprecation warning text if this feature is used after the edition it
753
+ * was marked deprecated in.
754
+ */
755
+ deprecationWarning: string;
756
+ /**
757
+ * The edition this feature is no longer available in. In editions after
758
+ * this one, the last default assigned will be used, and proto files will
759
+ * not be able to override it.
760
+ */
761
+ editionRemoved: Edition;
762
+ }
763
+ export interface OneofOptions {
764
+ /** Any features defined in the specific edition. */
765
+ features?: FeatureSet;
766
+ /** The parser stores options it doesn't recognize here. See above. */
767
+ uninterpretedOption: UninterpretedOption[];
768
+ }
769
+ export interface EnumOptions {
770
+ /**
771
+ * Set this option to true to allow mapping different tag names to the same
772
+ * value.
773
+ */
774
+ allowAlias: boolean;
775
+ /**
776
+ * Is this enum deprecated?
777
+ * Depending on the target platform, this can emit Deprecated annotations
778
+ * for the enum, or it will be completely ignored; in the very least, this
779
+ * is a formalization for deprecating enums.
780
+ */
781
+ deprecated: boolean;
782
+ /**
783
+ * Enable the legacy handling of JSON field name conflicts. This lowercases
784
+ * and strips underscored from the fields before comparison in proto3 only.
785
+ * The new behavior takes `json_name` into account and applies to proto2 as
786
+ * well.
787
+ * TODO Remove this legacy behavior once downstream teams have
788
+ * had time to migrate.
789
+ *
790
+ * @deprecated
791
+ */
792
+ deprecatedLegacyJsonFieldConflicts: boolean;
793
+ /** Any features defined in the specific edition. */
794
+ features?: FeatureSet;
795
+ /** The parser stores options it doesn't recognize here. See above. */
796
+ uninterpretedOption: UninterpretedOption[];
797
+ }
798
+ export interface EnumValueOptions {
799
+ /**
800
+ * Is this enum value deprecated?
801
+ * Depending on the target platform, this can emit Deprecated annotations
802
+ * for the enum value, or it will be completely ignored; in the very least,
803
+ * this is a formalization for deprecating enum values.
804
+ */
805
+ deprecated: boolean;
806
+ /** Any features defined in the specific edition. */
807
+ features?: FeatureSet;
808
+ /**
809
+ * Indicate that fields annotated with this enum value should not be printed
810
+ * out when using debug formats, e.g. when the field contains sensitive
811
+ * credentials.
812
+ */
813
+ debugRedact: boolean;
814
+ /** Information about the support window of a feature value. */
815
+ featureSupport?: FieldOptions_FeatureSupport;
816
+ /** The parser stores options it doesn't recognize here. See above. */
817
+ uninterpretedOption: UninterpretedOption[];
818
+ }
819
+ export interface ServiceOptions {
820
+ /** Any features defined in the specific edition. */
821
+ features?: FeatureSet;
822
+ /**
823
+ * Is this service deprecated?
824
+ * Depending on the target platform, this can emit Deprecated annotations
825
+ * for the service, or it will be completely ignored; in the very least,
826
+ * this is a formalization for deprecating services.
827
+ */
828
+ deprecated: boolean;
829
+ /** The parser stores options it doesn't recognize here. See above. */
830
+ uninterpretedOption: UninterpretedOption[];
831
+ }
832
+ export interface MethodOptions {
833
+ /**
834
+ * Is this method deprecated?
835
+ * Depending on the target platform, this can emit Deprecated annotations
836
+ * for the method, or it will be completely ignored; in the very least,
837
+ * this is a formalization for deprecating methods.
838
+ */
839
+ deprecated: boolean;
840
+ idempotencyLevel: MethodOptions_IdempotencyLevel;
841
+ /** Any features defined in the specific edition. */
842
+ features?: FeatureSet;
843
+ /** The parser stores options it doesn't recognize here. See above. */
844
+ uninterpretedOption: UninterpretedOption[];
845
+ }
846
+ /**
847
+ * Is this method side-effect-free (or safe in HTTP parlance), or idempotent,
848
+ * or neither? HTTP based RPC implementation may choose GET verb for safe
849
+ * methods, and PUT verb for idempotent methods instead of the default POST.
850
+ */
851
+ export declare enum MethodOptions_IdempotencyLevel {
852
+ IDEMPOTENCY_UNKNOWN = 0,
853
+ /** NO_SIDE_EFFECTS - implies idempotent */
854
+ NO_SIDE_EFFECTS = 1,
855
+ /** IDEMPOTENT - idempotent, but may have side effects */
856
+ IDEMPOTENT = 2,
857
+ UNRECOGNIZED = -1
858
+ }
859
+ export declare function methodOptions_IdempotencyLevelFromJSON(object: any): MethodOptions_IdempotencyLevel;
860
+ export declare function methodOptions_IdempotencyLevelToJSON(object: MethodOptions_IdempotencyLevel): string;
861
+ /**
862
+ * A message representing a option the parser does not recognize. This only
863
+ * appears in options protos created by the compiler::Parser class.
864
+ * DescriptorPool resolves these when building Descriptor objects. Therefore,
865
+ * options protos in descriptor objects (e.g. returned by Descriptor::options(),
866
+ * or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
867
+ * in them.
868
+ */
869
+ export interface UninterpretedOption {
870
+ name: UninterpretedOption_NamePart[];
871
+ /**
872
+ * The value of the uninterpreted option, in whatever type the tokenizer
873
+ * identified it as during parsing. Exactly one of these should be set.
874
+ */
875
+ identifierValue: string;
876
+ positiveIntValue: Long;
877
+ negativeIntValue: Long;
878
+ doubleValue: number;
879
+ stringValue: Uint8Array;
880
+ aggregateValue: string;
881
+ }
882
+ /**
883
+ * The name of the uninterpreted option. Each string represents a segment in
884
+ * a dot-separated name. is_extension is true iff a segment represents an
885
+ * extension (denoted with parentheses in options specs in .proto files).
886
+ * E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
887
+ * "foo.(bar.baz).moo".
888
+ */
889
+ export interface UninterpretedOption_NamePart {
890
+ namePart: string;
891
+ isExtension: boolean;
892
+ }
893
+ /**
894
+ * TODO Enums in C++ gencode (and potentially other languages) are
895
+ * not well scoped. This means that each of the feature enums below can clash
896
+ * with each other. The short names we've chosen maximize call-site
897
+ * readability, but leave us very open to this scenario. A future feature will
898
+ * be designed and implemented to handle this, hopefully before we ever hit a
899
+ * conflict here.
900
+ */
901
+ export interface FeatureSet {
902
+ fieldPresence: FeatureSet_FieldPresence;
903
+ enumType: FeatureSet_EnumType;
904
+ repeatedFieldEncoding: FeatureSet_RepeatedFieldEncoding;
905
+ utf8Validation: FeatureSet_Utf8Validation;
906
+ messageEncoding: FeatureSet_MessageEncoding;
907
+ jsonFormat: FeatureSet_JsonFormat;
908
+ }
909
+ export declare enum FeatureSet_FieldPresence {
910
+ FIELD_PRESENCE_UNKNOWN = 0,
911
+ EXPLICIT = 1,
912
+ IMPLICIT = 2,
913
+ LEGACY_REQUIRED = 3,
914
+ UNRECOGNIZED = -1
915
+ }
916
+ export declare function featureSet_FieldPresenceFromJSON(object: any): FeatureSet_FieldPresence;
917
+ export declare function featureSet_FieldPresenceToJSON(object: FeatureSet_FieldPresence): string;
918
+ export declare enum FeatureSet_EnumType {
919
+ ENUM_TYPE_UNKNOWN = 0,
920
+ OPEN = 1,
921
+ CLOSED = 2,
922
+ UNRECOGNIZED = -1
923
+ }
924
+ export declare function featureSet_EnumTypeFromJSON(object: any): FeatureSet_EnumType;
925
+ export declare function featureSet_EnumTypeToJSON(object: FeatureSet_EnumType): string;
926
+ export declare enum FeatureSet_RepeatedFieldEncoding {
927
+ REPEATED_FIELD_ENCODING_UNKNOWN = 0,
928
+ PACKED = 1,
929
+ EXPANDED = 2,
930
+ UNRECOGNIZED = -1
931
+ }
932
+ export declare function featureSet_RepeatedFieldEncodingFromJSON(object: any): FeatureSet_RepeatedFieldEncoding;
933
+ export declare function featureSet_RepeatedFieldEncodingToJSON(object: FeatureSet_RepeatedFieldEncoding): string;
934
+ export declare enum FeatureSet_Utf8Validation {
935
+ UTF8_VALIDATION_UNKNOWN = 0,
936
+ VERIFY = 2,
937
+ NONE = 3,
938
+ UNRECOGNIZED = -1
939
+ }
940
+ export declare function featureSet_Utf8ValidationFromJSON(object: any): FeatureSet_Utf8Validation;
941
+ export declare function featureSet_Utf8ValidationToJSON(object: FeatureSet_Utf8Validation): string;
942
+ export declare enum FeatureSet_MessageEncoding {
943
+ MESSAGE_ENCODING_UNKNOWN = 0,
944
+ LENGTH_PREFIXED = 1,
945
+ DELIMITED = 2,
946
+ UNRECOGNIZED = -1
947
+ }
948
+ export declare function featureSet_MessageEncodingFromJSON(object: any): FeatureSet_MessageEncoding;
949
+ export declare function featureSet_MessageEncodingToJSON(object: FeatureSet_MessageEncoding): string;
950
+ export declare enum FeatureSet_JsonFormat {
951
+ JSON_FORMAT_UNKNOWN = 0,
952
+ ALLOW = 1,
953
+ LEGACY_BEST_EFFORT = 2,
954
+ UNRECOGNIZED = -1
955
+ }
956
+ export declare function featureSet_JsonFormatFromJSON(object: any): FeatureSet_JsonFormat;
957
+ export declare function featureSet_JsonFormatToJSON(object: FeatureSet_JsonFormat): string;
958
+ /**
959
+ * A compiled specification for the defaults of a set of features. These
960
+ * messages are generated from FeatureSet extensions and can be used to seed
961
+ * feature resolution. The resolution with this object becomes a simple search
962
+ * for the closest matching edition, followed by proto merges.
963
+ */
964
+ export interface FeatureSetDefaults {
965
+ defaults: FeatureSetDefaults_FeatureSetEditionDefault[];
966
+ /**
967
+ * The minimum supported edition (inclusive) when this was constructed.
968
+ * Editions before this will not have defaults.
969
+ */
970
+ minimumEdition: Edition;
971
+ /**
972
+ * The maximum known edition (inclusive) when this was constructed. Editions
973
+ * after this will not have reliable defaults.
974
+ */
975
+ maximumEdition: Edition;
976
+ }
977
+ /**
978
+ * A map from every known edition with a unique set of defaults to its
979
+ * defaults. Not all editions may be contained here. For a given edition,
980
+ * the defaults at the closest matching edition ordered at or before it should
981
+ * be used. This field must be in strict ascending order by edition.
982
+ */
983
+ export interface FeatureSetDefaults_FeatureSetEditionDefault {
984
+ edition: Edition;
985
+ /** Defaults of features that can be overridden in this edition. */
986
+ overridableFeatures?: FeatureSet;
987
+ /** Defaults of features that can't be overridden in this edition. */
988
+ fixedFeatures?: FeatureSet;
989
+ }
990
+ /**
991
+ * Encapsulates information about the original source file from which a
992
+ * FileDescriptorProto was generated.
993
+ */
994
+ export interface SourceCodeInfo {
995
+ /**
996
+ * A Location identifies a piece of source code in a .proto file which
997
+ * corresponds to a particular definition. This information is intended
998
+ * to be useful to IDEs, code indexers, documentation generators, and similar
999
+ * tools.
1000
+ *
1001
+ * For example, say we have a file like:
1002
+ * message Foo {
1003
+ * optional string foo = 1;
1004
+ * }
1005
+ * Let's look at just the field definition:
1006
+ * optional string foo = 1;
1007
+ * ^ ^^ ^^ ^ ^^^
1008
+ * a bc de f ghi
1009
+ * We have the following locations:
1010
+ * span path represents
1011
+ * [a,i) [ 4, 0, 2, 0 ] The whole field definition.
1012
+ * [a,b) [ 4, 0, 2, 0, 4 ] The label (optional).
1013
+ * [c,d) [ 4, 0, 2, 0, 5 ] The type (string).
1014
+ * [e,f) [ 4, 0, 2, 0, 1 ] The name (foo).
1015
+ * [g,h) [ 4, 0, 2, 0, 3 ] The number (1).
1016
+ *
1017
+ * Notes:
1018
+ * - A location may refer to a repeated field itself (i.e. not to any
1019
+ * particular index within it). This is used whenever a set of elements are
1020
+ * logically enclosed in a single code segment. For example, an entire
1021
+ * extend block (possibly containing multiple extension definitions) will
1022
+ * have an outer location whose path refers to the "extensions" repeated
1023
+ * field without an index.
1024
+ * - Multiple locations may have the same path. This happens when a single
1025
+ * logical declaration is spread out across multiple places. The most
1026
+ * obvious example is the "extend" block again -- there may be multiple
1027
+ * extend blocks in the same scope, each of which will have the same path.
1028
+ * - A location's span is not always a subset of its parent's span. For
1029
+ * example, the "extendee" of an extension declaration appears at the
1030
+ * beginning of the "extend" block and is shared by all extensions within
1031
+ * the block.
1032
+ * - Just because a location's span is a subset of some other location's span
1033
+ * does not mean that it is a descendant. For example, a "group" defines
1034
+ * both a type and a field in a single declaration. Thus, the locations
1035
+ * corresponding to the type and field and their components will overlap.
1036
+ * - Code which tries to interpret locations should probably be designed to
1037
+ * ignore those that it doesn't understand, as more types of locations could
1038
+ * be recorded in the future.
1039
+ */
1040
+ location: SourceCodeInfo_Location[];
1041
+ }
1042
+ export interface SourceCodeInfo_Location {
1043
+ /**
1044
+ * Identifies which part of the FileDescriptorProto was defined at this
1045
+ * location.
1046
+ *
1047
+ * Each element is a field number or an index. They form a path from
1048
+ * the root FileDescriptorProto to the place where the definition appears.
1049
+ * For example, this path:
1050
+ * [ 4, 3, 2, 7, 1 ]
1051
+ * refers to:
1052
+ * file.message_type(3) // 4, 3
1053
+ * .field(7) // 2, 7
1054
+ * .name() // 1
1055
+ * This is because FileDescriptorProto.message_type has field number 4:
1056
+ * repeated DescriptorProto message_type = 4;
1057
+ * and DescriptorProto.field has field number 2:
1058
+ * repeated FieldDescriptorProto field = 2;
1059
+ * and FieldDescriptorProto.name has field number 1:
1060
+ * optional string name = 1;
1061
+ *
1062
+ * Thus, the above path gives the location of a field name. If we removed
1063
+ * the last element:
1064
+ * [ 4, 3, 2, 7 ]
1065
+ * this path refers to the whole field declaration (from the beginning
1066
+ * of the label to the terminating semicolon).
1067
+ */
1068
+ path: number[];
1069
+ /**
1070
+ * Always has exactly three or four elements: start line, start column,
1071
+ * end line (optional, otherwise assumed same as start line), end column.
1072
+ * These are packed into a single field for efficiency. Note that line
1073
+ * and column numbers are zero-based -- typically you will want to add
1074
+ * 1 to each before displaying to a user.
1075
+ */
1076
+ span: number[];
1077
+ /**
1078
+ * If this SourceCodeInfo represents a complete declaration, these are any
1079
+ * comments appearing before and after the declaration which appear to be
1080
+ * attached to the declaration.
1081
+ *
1082
+ * A series of line comments appearing on consecutive lines, with no other
1083
+ * tokens appearing on those lines, will be treated as a single comment.
1084
+ *
1085
+ * leading_detached_comments will keep paragraphs of comments that appear
1086
+ * before (but not connected to) the current element. Each paragraph,
1087
+ * separated by empty lines, will be one comment element in the repeated
1088
+ * field.
1089
+ *
1090
+ * Only the comment content is provided; comment markers (e.g. //) are
1091
+ * stripped out. For block comments, leading whitespace and an asterisk
1092
+ * will be stripped from the beginning of each line other than the first.
1093
+ * Newlines are included in the output.
1094
+ *
1095
+ * Examples:
1096
+ *
1097
+ * optional int32 foo = 1; // Comment attached to foo.
1098
+ * // Comment attached to bar.
1099
+ * optional int32 bar = 2;
1100
+ *
1101
+ * optional string baz = 3;
1102
+ * // Comment attached to baz.
1103
+ * // Another line attached to baz.
1104
+ *
1105
+ * // Comment attached to moo.
1106
+ * //
1107
+ * // Another line attached to moo.
1108
+ * optional double moo = 4;
1109
+ *
1110
+ * // Detached comment for corge. This is not leading or trailing comments
1111
+ * // to moo or corge because there are blank lines separating it from
1112
+ * // both.
1113
+ *
1114
+ * // Detached comment for corge paragraph 2.
1115
+ *
1116
+ * optional string corge = 5;
1117
+ * /* Block comment attached
1118
+ * * to corge. Leading asterisks
1119
+ * * will be removed. * /
1120
+ * /* Block comment attached to
1121
+ * * grault. * /
1122
+ * optional int32 grault = 6;
1123
+ *
1124
+ * // ignored detached comments.
1125
+ */
1126
+ leadingComments: string;
1127
+ trailingComments: string;
1128
+ leadingDetachedComments: string[];
1129
+ }
1130
+ /**
1131
+ * Describes the relationship between generated code and its original source
1132
+ * file. A GeneratedCodeInfo message is associated with only one generated
1133
+ * source file, but may contain references to different source .proto files.
1134
+ */
1135
+ export interface GeneratedCodeInfo {
1136
+ /**
1137
+ * An Annotation connects some span of text in generated code to an element
1138
+ * of its generating .proto file.
1139
+ */
1140
+ annotation: GeneratedCodeInfo_Annotation[];
1141
+ }
1142
+ export interface GeneratedCodeInfo_Annotation {
1143
+ /**
1144
+ * Identifies the element in the original source .proto file. This field
1145
+ * is formatted the same as SourceCodeInfo.Location.path.
1146
+ */
1147
+ path: number[];
1148
+ /** Identifies the filesystem path to the original source .proto. */
1149
+ sourceFile: string;
1150
+ /**
1151
+ * Identifies the starting offset in bytes in the generated code
1152
+ * that relates to the identified object.
1153
+ */
1154
+ begin: number;
1155
+ /**
1156
+ * Identifies the ending offset in bytes in the generated code that
1157
+ * relates to the identified object. The end offset should be one past
1158
+ * the last relevant byte (so the length of the text = end - begin).
1159
+ */
1160
+ end: number;
1161
+ semantic: GeneratedCodeInfo_Annotation_Semantic;
1162
+ }
1163
+ /**
1164
+ * Represents the identified object's effect on the element in the original
1165
+ * .proto file.
1166
+ */
1167
+ export declare enum GeneratedCodeInfo_Annotation_Semantic {
1168
+ /** NONE - There is no effect or the effect is indescribable. */
1169
+ NONE = 0,
1170
+ /** SET - The element is set or otherwise mutated. */
1171
+ SET = 1,
1172
+ /** ALIAS - An alias to the element is returned. */
1173
+ ALIAS = 2,
1174
+ UNRECOGNIZED = -1
1175
+ }
1176
+ export declare function generatedCodeInfo_Annotation_SemanticFromJSON(object: any): GeneratedCodeInfo_Annotation_Semantic;
1177
+ export declare function generatedCodeInfo_Annotation_SemanticToJSON(object: GeneratedCodeInfo_Annotation_Semantic): string;
1178
+ export declare const FileDescriptorSet: {
1179
+ encode(message: FileDescriptorSet, writer?: _m0.Writer): _m0.Writer;
1180
+ decode(input: _m0.Reader | Uint8Array, length?: number): FileDescriptorSet;
1181
+ fromJSON(object: any): FileDescriptorSet;
1182
+ toJSON(message: FileDescriptorSet): unknown;
1183
+ create(base?: DeepPartial<FileDescriptorSet>): FileDescriptorSet;
1184
+ fromPartial(object: DeepPartial<FileDescriptorSet>): FileDescriptorSet;
1185
+ };
1186
+ export declare const FileDescriptorProto: {
1187
+ encode(message: FileDescriptorProto, writer?: _m0.Writer): _m0.Writer;
1188
+ decode(input: _m0.Reader | Uint8Array, length?: number): FileDescriptorProto;
1189
+ fromJSON(object: any): FileDescriptorProto;
1190
+ toJSON(message: FileDescriptorProto): unknown;
1191
+ create(base?: DeepPartial<FileDescriptorProto>): FileDescriptorProto;
1192
+ fromPartial(object: DeepPartial<FileDescriptorProto>): FileDescriptorProto;
1193
+ };
1194
+ export declare const DescriptorProto: {
1195
+ encode(message: DescriptorProto, writer?: _m0.Writer): _m0.Writer;
1196
+ decode(input: _m0.Reader | Uint8Array, length?: number): DescriptorProto;
1197
+ fromJSON(object: any): DescriptorProto;
1198
+ toJSON(message: DescriptorProto): unknown;
1199
+ create(base?: DeepPartial<DescriptorProto>): DescriptorProto;
1200
+ fromPartial(object: DeepPartial<DescriptorProto>): DescriptorProto;
1201
+ };
1202
+ export declare const DescriptorProto_ExtensionRange: {
1203
+ encode(message: DescriptorProto_ExtensionRange, writer?: _m0.Writer): _m0.Writer;
1204
+ decode(input: _m0.Reader | Uint8Array, length?: number): DescriptorProto_ExtensionRange;
1205
+ fromJSON(object: any): DescriptorProto_ExtensionRange;
1206
+ toJSON(message: DescriptorProto_ExtensionRange): unknown;
1207
+ create(base?: DeepPartial<DescriptorProto_ExtensionRange>): DescriptorProto_ExtensionRange;
1208
+ fromPartial(object: DeepPartial<DescriptorProto_ExtensionRange>): DescriptorProto_ExtensionRange;
1209
+ };
1210
+ export declare const DescriptorProto_ReservedRange: {
1211
+ encode(message: DescriptorProto_ReservedRange, writer?: _m0.Writer): _m0.Writer;
1212
+ decode(input: _m0.Reader | Uint8Array, length?: number): DescriptorProto_ReservedRange;
1213
+ fromJSON(object: any): DescriptorProto_ReservedRange;
1214
+ toJSON(message: DescriptorProto_ReservedRange): unknown;
1215
+ create(base?: DeepPartial<DescriptorProto_ReservedRange>): DescriptorProto_ReservedRange;
1216
+ fromPartial(object: DeepPartial<DescriptorProto_ReservedRange>): DescriptorProto_ReservedRange;
1217
+ };
1218
+ export declare const ExtensionRangeOptions: {
1219
+ encode(message: ExtensionRangeOptions, writer?: _m0.Writer): _m0.Writer;
1220
+ decode(input: _m0.Reader | Uint8Array, length?: number): ExtensionRangeOptions;
1221
+ fromJSON(object: any): ExtensionRangeOptions;
1222
+ toJSON(message: ExtensionRangeOptions): unknown;
1223
+ create(base?: DeepPartial<ExtensionRangeOptions>): ExtensionRangeOptions;
1224
+ fromPartial(object: DeepPartial<ExtensionRangeOptions>): ExtensionRangeOptions;
1225
+ };
1226
+ export declare const ExtensionRangeOptions_Declaration: {
1227
+ encode(message: ExtensionRangeOptions_Declaration, writer?: _m0.Writer): _m0.Writer;
1228
+ decode(input: _m0.Reader | Uint8Array, length?: number): ExtensionRangeOptions_Declaration;
1229
+ fromJSON(object: any): ExtensionRangeOptions_Declaration;
1230
+ toJSON(message: ExtensionRangeOptions_Declaration): unknown;
1231
+ create(base?: DeepPartial<ExtensionRangeOptions_Declaration>): ExtensionRangeOptions_Declaration;
1232
+ fromPartial(object: DeepPartial<ExtensionRangeOptions_Declaration>): ExtensionRangeOptions_Declaration;
1233
+ };
1234
+ export declare const FieldDescriptorProto: {
1235
+ encode(message: FieldDescriptorProto, writer?: _m0.Writer): _m0.Writer;
1236
+ decode(input: _m0.Reader | Uint8Array, length?: number): FieldDescriptorProto;
1237
+ fromJSON(object: any): FieldDescriptorProto;
1238
+ toJSON(message: FieldDescriptorProto): unknown;
1239
+ create(base?: DeepPartial<FieldDescriptorProto>): FieldDescriptorProto;
1240
+ fromPartial(object: DeepPartial<FieldDescriptorProto>): FieldDescriptorProto;
1241
+ };
1242
+ export declare const OneofDescriptorProto: {
1243
+ encode(message: OneofDescriptorProto, writer?: _m0.Writer): _m0.Writer;
1244
+ decode(input: _m0.Reader | Uint8Array, length?: number): OneofDescriptorProto;
1245
+ fromJSON(object: any): OneofDescriptorProto;
1246
+ toJSON(message: OneofDescriptorProto): unknown;
1247
+ create(base?: DeepPartial<OneofDescriptorProto>): OneofDescriptorProto;
1248
+ fromPartial(object: DeepPartial<OneofDescriptorProto>): OneofDescriptorProto;
1249
+ };
1250
+ export declare const EnumDescriptorProto: {
1251
+ encode(message: EnumDescriptorProto, writer?: _m0.Writer): _m0.Writer;
1252
+ decode(input: _m0.Reader | Uint8Array, length?: number): EnumDescriptorProto;
1253
+ fromJSON(object: any): EnumDescriptorProto;
1254
+ toJSON(message: EnumDescriptorProto): unknown;
1255
+ create(base?: DeepPartial<EnumDescriptorProto>): EnumDescriptorProto;
1256
+ fromPartial(object: DeepPartial<EnumDescriptorProto>): EnumDescriptorProto;
1257
+ };
1258
+ export declare const EnumDescriptorProto_EnumReservedRange: {
1259
+ encode(message: EnumDescriptorProto_EnumReservedRange, writer?: _m0.Writer): _m0.Writer;
1260
+ decode(input: _m0.Reader | Uint8Array, length?: number): EnumDescriptorProto_EnumReservedRange;
1261
+ fromJSON(object: any): EnumDescriptorProto_EnumReservedRange;
1262
+ toJSON(message: EnumDescriptorProto_EnumReservedRange): unknown;
1263
+ create(base?: DeepPartial<EnumDescriptorProto_EnumReservedRange>): EnumDescriptorProto_EnumReservedRange;
1264
+ fromPartial(object: DeepPartial<EnumDescriptorProto_EnumReservedRange>): EnumDescriptorProto_EnumReservedRange;
1265
+ };
1266
+ export declare const EnumValueDescriptorProto: {
1267
+ encode(message: EnumValueDescriptorProto, writer?: _m0.Writer): _m0.Writer;
1268
+ decode(input: _m0.Reader | Uint8Array, length?: number): EnumValueDescriptorProto;
1269
+ fromJSON(object: any): EnumValueDescriptorProto;
1270
+ toJSON(message: EnumValueDescriptorProto): unknown;
1271
+ create(base?: DeepPartial<EnumValueDescriptorProto>): EnumValueDescriptorProto;
1272
+ fromPartial(object: DeepPartial<EnumValueDescriptorProto>): EnumValueDescriptorProto;
1273
+ };
1274
+ export declare const ServiceDescriptorProto: {
1275
+ encode(message: ServiceDescriptorProto, writer?: _m0.Writer): _m0.Writer;
1276
+ decode(input: _m0.Reader | Uint8Array, length?: number): ServiceDescriptorProto;
1277
+ fromJSON(object: any): ServiceDescriptorProto;
1278
+ toJSON(message: ServiceDescriptorProto): unknown;
1279
+ create(base?: DeepPartial<ServiceDescriptorProto>): ServiceDescriptorProto;
1280
+ fromPartial(object: DeepPartial<ServiceDescriptorProto>): ServiceDescriptorProto;
1281
+ };
1282
+ export declare const MethodDescriptorProto: {
1283
+ encode(message: MethodDescriptorProto, writer?: _m0.Writer): _m0.Writer;
1284
+ decode(input: _m0.Reader | Uint8Array, length?: number): MethodDescriptorProto;
1285
+ fromJSON(object: any): MethodDescriptorProto;
1286
+ toJSON(message: MethodDescriptorProto): unknown;
1287
+ create(base?: DeepPartial<MethodDescriptorProto>): MethodDescriptorProto;
1288
+ fromPartial(object: DeepPartial<MethodDescriptorProto>): MethodDescriptorProto;
1289
+ };
1290
+ export declare const FileOptions: {
1291
+ encode(message: FileOptions, writer?: _m0.Writer): _m0.Writer;
1292
+ decode(input: _m0.Reader | Uint8Array, length?: number): FileOptions;
1293
+ fromJSON(object: any): FileOptions;
1294
+ toJSON(message: FileOptions): unknown;
1295
+ create(base?: DeepPartial<FileOptions>): FileOptions;
1296
+ fromPartial(object: DeepPartial<FileOptions>): FileOptions;
1297
+ };
1298
+ export declare const MessageOptions: {
1299
+ encode(message: MessageOptions, writer?: _m0.Writer): _m0.Writer;
1300
+ decode(input: _m0.Reader | Uint8Array, length?: number): MessageOptions;
1301
+ fromJSON(object: any): MessageOptions;
1302
+ toJSON(message: MessageOptions): unknown;
1303
+ create(base?: DeepPartial<MessageOptions>): MessageOptions;
1304
+ fromPartial(object: DeepPartial<MessageOptions>): MessageOptions;
1305
+ };
1306
+ export declare const FieldOptions: {
1307
+ encode(message: FieldOptions, writer?: _m0.Writer): _m0.Writer;
1308
+ decode(input: _m0.Reader | Uint8Array, length?: number): FieldOptions;
1309
+ fromJSON(object: any): FieldOptions;
1310
+ toJSON(message: FieldOptions): unknown;
1311
+ create(base?: DeepPartial<FieldOptions>): FieldOptions;
1312
+ fromPartial(object: DeepPartial<FieldOptions>): FieldOptions;
1313
+ };
1314
+ export declare const FieldOptions_EditionDefault: {
1315
+ encode(message: FieldOptions_EditionDefault, writer?: _m0.Writer): _m0.Writer;
1316
+ decode(input: _m0.Reader | Uint8Array, length?: number): FieldOptions_EditionDefault;
1317
+ fromJSON(object: any): FieldOptions_EditionDefault;
1318
+ toJSON(message: FieldOptions_EditionDefault): unknown;
1319
+ create(base?: DeepPartial<FieldOptions_EditionDefault>): FieldOptions_EditionDefault;
1320
+ fromPartial(object: DeepPartial<FieldOptions_EditionDefault>): FieldOptions_EditionDefault;
1321
+ };
1322
+ export declare const FieldOptions_FeatureSupport: {
1323
+ encode(message: FieldOptions_FeatureSupport, writer?: _m0.Writer): _m0.Writer;
1324
+ decode(input: _m0.Reader | Uint8Array, length?: number): FieldOptions_FeatureSupport;
1325
+ fromJSON(object: any): FieldOptions_FeatureSupport;
1326
+ toJSON(message: FieldOptions_FeatureSupport): unknown;
1327
+ create(base?: DeepPartial<FieldOptions_FeatureSupport>): FieldOptions_FeatureSupport;
1328
+ fromPartial(object: DeepPartial<FieldOptions_FeatureSupport>): FieldOptions_FeatureSupport;
1329
+ };
1330
+ export declare const OneofOptions: {
1331
+ encode(message: OneofOptions, writer?: _m0.Writer): _m0.Writer;
1332
+ decode(input: _m0.Reader | Uint8Array, length?: number): OneofOptions;
1333
+ fromJSON(object: any): OneofOptions;
1334
+ toJSON(message: OneofOptions): unknown;
1335
+ create(base?: DeepPartial<OneofOptions>): OneofOptions;
1336
+ fromPartial(object: DeepPartial<OneofOptions>): OneofOptions;
1337
+ };
1338
+ export declare const EnumOptions: {
1339
+ encode(message: EnumOptions, writer?: _m0.Writer): _m0.Writer;
1340
+ decode(input: _m0.Reader | Uint8Array, length?: number): EnumOptions;
1341
+ fromJSON(object: any): EnumOptions;
1342
+ toJSON(message: EnumOptions): unknown;
1343
+ create(base?: DeepPartial<EnumOptions>): EnumOptions;
1344
+ fromPartial(object: DeepPartial<EnumOptions>): EnumOptions;
1345
+ };
1346
+ export declare const EnumValueOptions: {
1347
+ encode(message: EnumValueOptions, writer?: _m0.Writer): _m0.Writer;
1348
+ decode(input: _m0.Reader | Uint8Array, length?: number): EnumValueOptions;
1349
+ fromJSON(object: any): EnumValueOptions;
1350
+ toJSON(message: EnumValueOptions): unknown;
1351
+ create(base?: DeepPartial<EnumValueOptions>): EnumValueOptions;
1352
+ fromPartial(object: DeepPartial<EnumValueOptions>): EnumValueOptions;
1353
+ };
1354
+ export declare const ServiceOptions: {
1355
+ encode(message: ServiceOptions, writer?: _m0.Writer): _m0.Writer;
1356
+ decode(input: _m0.Reader | Uint8Array, length?: number): ServiceOptions;
1357
+ fromJSON(object: any): ServiceOptions;
1358
+ toJSON(message: ServiceOptions): unknown;
1359
+ create(base?: DeepPartial<ServiceOptions>): ServiceOptions;
1360
+ fromPartial(object: DeepPartial<ServiceOptions>): ServiceOptions;
1361
+ };
1362
+ export declare const MethodOptions: {
1363
+ encode(message: MethodOptions, writer?: _m0.Writer): _m0.Writer;
1364
+ decode(input: _m0.Reader | Uint8Array, length?: number): MethodOptions;
1365
+ fromJSON(object: any): MethodOptions;
1366
+ toJSON(message: MethodOptions): unknown;
1367
+ create(base?: DeepPartial<MethodOptions>): MethodOptions;
1368
+ fromPartial(object: DeepPartial<MethodOptions>): MethodOptions;
1369
+ };
1370
+ export declare const UninterpretedOption: {
1371
+ encode(message: UninterpretedOption, writer?: _m0.Writer): _m0.Writer;
1372
+ decode(input: _m0.Reader | Uint8Array, length?: number): UninterpretedOption;
1373
+ fromJSON(object: any): UninterpretedOption;
1374
+ toJSON(message: UninterpretedOption): unknown;
1375
+ create(base?: DeepPartial<UninterpretedOption>): UninterpretedOption;
1376
+ fromPartial(object: DeepPartial<UninterpretedOption>): UninterpretedOption;
1377
+ };
1378
+ export declare const UninterpretedOption_NamePart: {
1379
+ encode(message: UninterpretedOption_NamePart, writer?: _m0.Writer): _m0.Writer;
1380
+ decode(input: _m0.Reader | Uint8Array, length?: number): UninterpretedOption_NamePart;
1381
+ fromJSON(object: any): UninterpretedOption_NamePart;
1382
+ toJSON(message: UninterpretedOption_NamePart): unknown;
1383
+ create(base?: DeepPartial<UninterpretedOption_NamePart>): UninterpretedOption_NamePart;
1384
+ fromPartial(object: DeepPartial<UninterpretedOption_NamePart>): UninterpretedOption_NamePart;
1385
+ };
1386
+ export declare const FeatureSet: {
1387
+ encode(message: FeatureSet, writer?: _m0.Writer): _m0.Writer;
1388
+ decode(input: _m0.Reader | Uint8Array, length?: number): FeatureSet;
1389
+ fromJSON(object: any): FeatureSet;
1390
+ toJSON(message: FeatureSet): unknown;
1391
+ create(base?: DeepPartial<FeatureSet>): FeatureSet;
1392
+ fromPartial(object: DeepPartial<FeatureSet>): FeatureSet;
1393
+ };
1394
+ export declare const FeatureSetDefaults: {
1395
+ encode(message: FeatureSetDefaults, writer?: _m0.Writer): _m0.Writer;
1396
+ decode(input: _m0.Reader | Uint8Array, length?: number): FeatureSetDefaults;
1397
+ fromJSON(object: any): FeatureSetDefaults;
1398
+ toJSON(message: FeatureSetDefaults): unknown;
1399
+ create(base?: DeepPartial<FeatureSetDefaults>): FeatureSetDefaults;
1400
+ fromPartial(object: DeepPartial<FeatureSetDefaults>): FeatureSetDefaults;
1401
+ };
1402
+ export declare const FeatureSetDefaults_FeatureSetEditionDefault: {
1403
+ encode(message: FeatureSetDefaults_FeatureSetEditionDefault, writer?: _m0.Writer): _m0.Writer;
1404
+ decode(input: _m0.Reader | Uint8Array, length?: number): FeatureSetDefaults_FeatureSetEditionDefault;
1405
+ fromJSON(object: any): FeatureSetDefaults_FeatureSetEditionDefault;
1406
+ toJSON(message: FeatureSetDefaults_FeatureSetEditionDefault): unknown;
1407
+ create(base?: DeepPartial<FeatureSetDefaults_FeatureSetEditionDefault>): FeatureSetDefaults_FeatureSetEditionDefault;
1408
+ fromPartial(object: DeepPartial<FeatureSetDefaults_FeatureSetEditionDefault>): FeatureSetDefaults_FeatureSetEditionDefault;
1409
+ };
1410
+ export declare const SourceCodeInfo: {
1411
+ encode(message: SourceCodeInfo, writer?: _m0.Writer): _m0.Writer;
1412
+ decode(input: _m0.Reader | Uint8Array, length?: number): SourceCodeInfo;
1413
+ fromJSON(object: any): SourceCodeInfo;
1414
+ toJSON(message: SourceCodeInfo): unknown;
1415
+ create(base?: DeepPartial<SourceCodeInfo>): SourceCodeInfo;
1416
+ fromPartial(object: DeepPartial<SourceCodeInfo>): SourceCodeInfo;
1417
+ };
1418
+ export declare const SourceCodeInfo_Location: {
1419
+ encode(message: SourceCodeInfo_Location, writer?: _m0.Writer): _m0.Writer;
1420
+ decode(input: _m0.Reader | Uint8Array, length?: number): SourceCodeInfo_Location;
1421
+ fromJSON(object: any): SourceCodeInfo_Location;
1422
+ toJSON(message: SourceCodeInfo_Location): unknown;
1423
+ create(base?: DeepPartial<SourceCodeInfo_Location>): SourceCodeInfo_Location;
1424
+ fromPartial(object: DeepPartial<SourceCodeInfo_Location>): SourceCodeInfo_Location;
1425
+ };
1426
+ export declare const GeneratedCodeInfo: {
1427
+ encode(message: GeneratedCodeInfo, writer?: _m0.Writer): _m0.Writer;
1428
+ decode(input: _m0.Reader | Uint8Array, length?: number): GeneratedCodeInfo;
1429
+ fromJSON(object: any): GeneratedCodeInfo;
1430
+ toJSON(message: GeneratedCodeInfo): unknown;
1431
+ create(base?: DeepPartial<GeneratedCodeInfo>): GeneratedCodeInfo;
1432
+ fromPartial(object: DeepPartial<GeneratedCodeInfo>): GeneratedCodeInfo;
1433
+ };
1434
+ export declare const GeneratedCodeInfo_Annotation: {
1435
+ encode(message: GeneratedCodeInfo_Annotation, writer?: _m0.Writer): _m0.Writer;
1436
+ decode(input: _m0.Reader | Uint8Array, length?: number): GeneratedCodeInfo_Annotation;
1437
+ fromJSON(object: any): GeneratedCodeInfo_Annotation;
1438
+ toJSON(message: GeneratedCodeInfo_Annotation): unknown;
1439
+ create(base?: DeepPartial<GeneratedCodeInfo_Annotation>): GeneratedCodeInfo_Annotation;
1440
+ fromPartial(object: DeepPartial<GeneratedCodeInfo_Annotation>): GeneratedCodeInfo_Annotation;
1441
+ };
1442
+ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
1443
+ export type DeepPartial<T> = T extends Builtin ? T : T extends Long ? string | number | Long : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
1444
+ [K in keyof T]?: DeepPartial<T[K]>;
1445
+ } : Partial<T>;
1446
+ export {};