@dydxprotocol/v4-client-js 1.0.30 → 1.0.31

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.

Potentially problematic release.


This version of @dydxprotocol/v4-client-js might be problematic. Click here for more details.

Files changed (840) hide show
  1. package/.env +0 -0
  2. package/.eslintignore +0 -0
  3. package/.eslintrc.js +0 -0
  4. package/.gitleaks.toml +0 -0
  5. package/.gitleaksignore +0 -0
  6. package/.nvmrc +0 -0
  7. package/.telescope.json +0 -0
  8. package/.vscode/launch.json +0 -0
  9. package/LICENSE +0 -0
  10. package/README.md +0 -0
  11. package/__native__/__ios__/v4-native-client.js +0 -0
  12. package/__tests__/helpers/baseClients.ts +0 -0
  13. package/__tests__/helpers/constants.ts +0 -0
  14. package/__tests__/lib/helpers.test.ts +0 -0
  15. package/__tests__/lib/util.test.ts +0 -0
  16. package/__tests__/lib/validation.test.ts +0 -0
  17. package/__tests__/modules/client/AccountEndpoints.test.ts +0 -0
  18. package/__tests__/modules/client/FaucetEndpoint.test.ts +0 -0
  19. package/__tests__/modules/client/MarketsEndpoints.test.ts +0 -0
  20. package/__tests__/modules/client/Transfers.test.ts +0 -0
  21. package/__tests__/modules/client/UtilityEndpoints.test.ts +0 -0
  22. package/__tests__/modules/client/ValidatorGetEndpoints.test.ts +0 -0
  23. package/__tests__/modules/client/ValidatorPostEndpoints.test.ts +0 -0
  24. package/__tests__/modules/client/constants.ts +0 -0
  25. package/__tests__/modules/onboarding.test.ts +0 -0
  26. package/build/src/clients/lib/registry.d.ts +1 -0
  27. package/build/src/clients/lib/registry.js +73 -2
  28. package/build/src/clients/modules/local-wallet.js +2 -1
  29. package/build/src/lib/constants.d.ts +1 -0
  30. package/build/src/lib/constants.js +3 -2
  31. package/build/src/lib/helpers.js +23 -2
  32. package/build/src/lib/utils.d.ts +1 -0
  33. package/build/src/lib/utils.js +53 -2
  34. package/examples/account_endpoints.ts +0 -0
  35. package/examples/composite_example.ts +0 -0
  36. package/examples/constants.ts +0 -0
  37. package/examples/faucet_endpoint.ts +0 -0
  38. package/examples/gov_add_new_market.json +0 -0
  39. package/examples/gov_add_new_market.ts +0 -0
  40. package/examples/human_readable_orders.json +0 -0
  41. package/examples/human_readable_short_term_orders.json +0 -0
  42. package/examples/json-encoding.ts +0 -0
  43. package/examples/long_term_order_cancel_example.ts +0 -0
  44. package/examples/markets_endpoints.ts +0 -0
  45. package/examples/native_examples.ts +0 -0
  46. package/examples/noble_example.ts +0 -0
  47. package/examples/optimal_node.ts +0 -0
  48. package/examples/raw_orders.json +0 -0
  49. package/examples/short_term_order_cancel_example.ts +0 -0
  50. package/examples/short_term_order_composite_example.ts +0 -0
  51. package/examples/test.ts +0 -0
  52. package/examples/transfer_example_deposit.ts +0 -0
  53. package/examples/transfer_example_send.ts +0 -0
  54. package/examples/transfer_example_subaccount_transfer.ts +0 -0
  55. package/examples/transfer_example_withdraw.ts +0 -0
  56. package/examples/transfer_example_withdraw_other.ts +0 -0
  57. package/examples/utility_endpoints.ts +0 -0
  58. package/examples/validator_get_example.ts +0 -0
  59. package/examples/validator_post_example.ts +0 -0
  60. package/examples/wallet_address.ts +0 -0
  61. package/examples/websocket_example.ts +0 -0
  62. package/jest.config.js +0 -0
  63. package/jest.globalSetup.js +0 -0
  64. package/jest.setup.js +0 -0
  65. package/package.json +2 -1
  66. package/src/clients/composite-client.ts +0 -0
  67. package/src/clients/constants.ts +0 -0
  68. package/src/clients/faucet-client.ts +0 -0
  69. package/src/clients/helpers/chain-helpers.ts +0 -0
  70. package/src/clients/helpers/request-helpers.ts +0 -0
  71. package/src/clients/indexer-client.ts +0 -0
  72. package/src/clients/lib/axios/axiosRequest.ts +0 -0
  73. package/src/clients/lib/axios/errors.ts +0 -0
  74. package/src/clients/lib/axios/index.ts +0 -0
  75. package/src/clients/lib/axios/types.ts +0 -0
  76. package/src/clients/lib/cctpProto.ts +0 -0
  77. package/src/clients/lib/errors.ts +0 -0
  78. package/src/clients/lib/registry.ts +78 -0
  79. package/src/clients/modules/account.ts +0 -0
  80. package/src/clients/modules/composer.ts +0 -0
  81. package/src/clients/modules/get.ts +0 -0
  82. package/src/clients/modules/local-wallet.ts +2 -1
  83. package/src/clients/modules/markets.ts +0 -0
  84. package/src/clients/modules/post.ts +0 -0
  85. package/src/clients/modules/proto-includes.ts +0 -0
  86. package/src/clients/modules/rest.ts +0 -0
  87. package/src/clients/modules/signer.ts +0 -0
  88. package/src/clients/modules/tendermintClient.ts +0 -0
  89. package/src/clients/modules/utility.ts +0 -0
  90. package/src/clients/native.ts +0 -0
  91. package/src/clients/noble-client.ts +0 -0
  92. package/src/clients/socket-client.ts +0 -0
  93. package/src/clients/subaccount.ts +0 -0
  94. package/src/clients/types.ts +0 -0
  95. package/src/clients/validator-client.ts +0 -0
  96. package/src/codegen/helpers.ts +0 -0
  97. package/src/codegen/index.ts +0 -0
  98. package/src/index.ts +0 -0
  99. package/src/lib/constants.ts +2 -0
  100. package/src/lib/errors.ts +0 -0
  101. package/src/lib/helpers.ts +17 -2
  102. package/src/lib/onboarding.ts +0 -0
  103. package/src/lib/utils.ts +28 -0
  104. package/src/lib/validation.ts +0 -0
  105. package/src/network_optimizer.ts +0 -0
  106. package/src/types.ts +0 -0
  107. package/tasks.json +0 -0
  108. package/tsconfig.eslint.json +0 -0
  109. package/tsconfig.json +2 -2
  110. package/webpack.config.js +0 -0
  111. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/amino/amino.d.ts +0 -1
  112. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/amino/amino.js +0 -3
  113. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/amino/bundle.d.ts +0 -1
  114. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/amino/bundle.js +0 -30
  115. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/app/runtime/v1alpha1/module.d.ts +0 -94
  116. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/app/runtime/v1alpha1/module.js +0 -172
  117. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/app/v1alpha1/config.d.ts +0 -95
  118. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/app/v1alpha1/config.js +0 -169
  119. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/app/v1alpha1/module.d.ts +0 -115
  120. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/app/v1alpha1/module.js +0 -160
  121. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/app/v1alpha1/query.d.ts +0 -28
  122. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/app/v1alpha1/query.js +0 -90
  123. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/app/v1alpha1/query.rpc.Query.d.ts +0 -16
  124. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/app/v1alpha1/query.rpc.Query.js +0 -52
  125. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/auth/module/v1/module.d.ts +0 -42
  126. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/auth/module/v1/module.js +0 -124
  127. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/auth/v1beta1/auth.d.ts +0 -97
  128. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/auth/v1beta1/auth.js +0 -253
  129. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/auth/v1beta1/genesis.d.ts +0 -21
  130. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/auth/v1beta1/genesis.js +0 -74
  131. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/auth/v1beta1/query.d.ts +0 -398
  132. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/auth/v1beta1/query.js +0 -732
  133. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/auth/v1beta1/query.lcd.d.ts +0 -18
  134. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/auth/v1beta1/query.lcd.js +0 -102
  135. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/auth/v1beta1/query.rpc.Query.d.ts +0 -83
  136. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/auth/v1beta1/query.rpc.Query.js +0 -135
  137. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/auth/v1beta1/tx.d.ts +0 -53
  138. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/auth/v1beta1/tx.js +0 -99
  139. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -17
  140. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/auth/v1beta1/tx.rpc.msg.js +0 -41
  141. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/module/v1/module.d.ts +0 -13
  142. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/module/v1/module.js +0 -54
  143. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/v1beta1/authz.d.ts +0 -88
  144. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/v1beta1/authz.js +0 -207
  145. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/v1beta1/event.d.ts +0 -42
  146. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/v1beta1/event.js +0 -132
  147. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/v1beta1/genesis.d.ts +0 -16
  148. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/v1beta1/genesis.js +0 -65
  149. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/v1beta1/query.d.ts +0 -108
  150. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/v1beta1/query.js +0 -310
  151. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/v1beta1/query.lcd.d.ts +0 -11
  152. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/v1beta1/query.lcd.js +0 -60
  153. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/v1beta1/query.rpc.Query.d.ts +0 -32
  154. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/v1beta1/query.rpc.Query.js +0 -70
  155. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/v1beta1/tx.d.ts +0 -113
  156. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/v1beta1/tx.js +0 -266
  157. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/v1beta1/tx.rpc.msg.d.ts +0 -30
  158. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/authz/v1beta1/tx.rpc.msg.js +0 -53
  159. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/module/v1/module.d.ts +0 -23
  160. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/module/v1/module.js +0 -72
  161. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/v1beta1/authz.d.ts +0 -34
  162. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/v1beta1/authz.js +0 -73
  163. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/v1beta1/bank.d.ts +0 -194
  164. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/v1beta1/bank.js +0 -385
  165. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/v1beta1/genesis.d.ts +0 -60
  166. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/v1beta1/genesis.js +0 -142
  167. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/v1beta1/query.d.ts +0 -536
  168. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/v1beta1/query.js +0 -1025
  169. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/v1beta1/query.lcd.d.ts +0 -20
  170. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/v1beta1/query.lcd.js +0 -187
  171. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/v1beta1/query.rpc.Query.d.ts +0 -110
  172. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/v1beta1/query.rpc.Query.js +0 -155
  173. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/v1beta1/tx.d.ts +0 -172
  174. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/v1beta1/tx.js +0 -326
  175. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -33
  176. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bank/v1beta1/tx.rpc.msg.js +0 -59
  177. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/abci/v1beta1/abci.d.ts +0 -324
  178. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/abci/v1beta1/abci.js +0 -690
  179. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/node/v1beta1/query.d.ts +0 -69
  180. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/node/v1beta1/query.js +0 -202
  181. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/node/v1beta1/query.lcd.d.ts +0 -10
  182. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/node/v1beta1/query.lcd.js +0 -22
  183. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/node/v1beta1/query.rpc.Service.d.ts +0 -20
  184. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/node/v1beta1/query.rpc.Service.js +0 -61
  185. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/query/v1beta1/pagination.d.ts +0 -105
  186. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/query/v1beta1/pagination.js +0 -141
  187. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/reflection/v1beta1/reflection.d.ts +0 -66
  188. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/reflection/v1beta1/reflection.js +0 -162
  189. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/reflection/v2alpha1/reflection.d.ts +0 -451
  190. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/reflection/v2alpha1/reflection.js +0 -1017
  191. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/tendermint/v1beta1/query.d.ts +0 -366
  192. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/tendermint/v1beta1/query.js +0 -963
  193. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/tendermint/v1beta1/query.lcd.d.ts +0 -15
  194. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/tendermint/v1beta1/query.lcd.js +0 -86
  195. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/tendermint/v1beta1/query.rpc.Service.d.ts +0 -46
  196. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/tendermint/v1beta1/query.rpc.Service.js +0 -108
  197. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/tendermint/v1beta1/types.d.ts +0 -83
  198. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/tendermint/v1beta1/types.js +0 -232
  199. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/v1beta1/coin.d.ts +0 -90
  200. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/base/v1beta1/coin.js +0 -188
  201. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bundle.d.ts +0 -12018
  202. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/bundle.js +0 -670
  203. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/circuit/module/v1/module.d.ts +0 -16
  204. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/circuit/module/v1/module.js +0 -64
  205. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/circuit/v1/query.d.ts +0 -84
  206. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/circuit/v1/query.js +0 -242
  207. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/circuit/v1/query.lcd.d.ts +0 -11
  208. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/circuit/v1/query.lcd.js +0 -37
  209. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/circuit/v1/query.rpc.Query.d.ts +0 -24
  210. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/circuit/v1/query.rpc.Query.js +0 -72
  211. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/circuit/v1/tx.d.ts +0 -113
  212. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/circuit/v1/tx.js +0 -277
  213. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/circuit/v1/tx.rpc.msg.d.ts +0 -24
  214. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/circuit/v1/tx.rpc.msg.js +0 -53
  215. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/circuit/v1/types.d.ts +0 -88
  216. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/circuit/v1/types.js +0 -225
  217. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/consensus/module/v1/module.d.ts +0 -16
  218. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/consensus/module/v1/module.js +0 -64
  219. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/consensus/v1/query.d.ts +0 -32
  220. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/consensus/v1/query.js +0 -90
  221. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/consensus/v1/query.lcd.d.ts +0 -9
  222. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/consensus/v1/query.lcd.js +0 -16
  223. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/consensus/v1/query.rpc.Query.d.ts +0 -16
  224. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/consensus/v1/query.rpc.Query.js +0 -52
  225. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/consensus/v1/tx.d.ts +0 -50
  226. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/consensus/v1/tx.js +0 -123
  227. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -17
  228. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/consensus/v1/tx.rpc.msg.js +0 -41
  229. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crisis/module/v1/module.d.ts +0 -19
  230. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crisis/module/v1/module.js +0 -72
  231. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crisis/v1beta1/genesis.d.ts +0 -20
  232. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crisis/v1beta1/genesis.js +0 -64
  233. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crisis/v1beta1/tx.d.ts +0 -80
  234. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crisis/v1beta1/tx.js +0 -177
  235. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crisis/v1beta1/tx.rpc.msg.d.ts +0 -20
  236. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crisis/v1beta1/tx.rpc.msg.js +0 -47
  237. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crypto/ed25519/keys.d.ts +0 -46
  238. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crypto/ed25519/keys.js +0 -100
  239. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crypto/hd/v1/hd.d.ts +0 -31
  240. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crypto/hd/v1/hd.js +0 -96
  241. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crypto/keyring/v1/record.d.ts +0 -87
  242. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crypto/keyring/v1/record.js +0 -228
  243. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crypto/multisig/keys.d.ts +0 -26
  244. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crypto/multisig/keys.js +0 -73
  245. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crypto/multisig/v1beta1/multisig.d.ts +0 -48
  246. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crypto/multisig/v1beta1/multisig.js +0 -108
  247. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crypto/secp256k1/keys.d.ts +0 -40
  248. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crypto/secp256k1/keys.js +0 -100
  249. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crypto/secp256r1/keys.d.ts +0 -33
  250. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/crypto/secp256r1/keys.js +0 -100
  251. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/distribution/module/v1/module.d.ts +0 -18
  252. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/distribution/module/v1/module.js +0 -72
  253. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/distribution/v1beta1/distribution.d.ts +0 -306
  254. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/distribution/v1beta1/distribution.js +0 -590
  255. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/distribution/v1beta1/genesis.d.ts +0 -197
  256. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/distribution/v1beta1/genesis.js +0 -479
  257. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/distribution/v1beta1/query.d.ts +0 -399
  258. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/distribution/v1beta1/query.js +0 -793
  259. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/distribution/v1beta1/query.lcd.d.ts +0 -18
  260. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/distribution/v1beta1/query.lcd.js +0 -84
  261. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +0 -55
  262. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/distribution/v1beta1/query.rpc.Query.js +0 -133
  263. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/distribution/v1beta1/tx.d.ts +0 -303
  264. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/distribution/v1beta1/tx.js +0 -548
  265. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +0 -59
  266. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/distribution/v1beta1/tx.rpc.msg.js +0 -77
  267. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/evidence/module/v1/module.d.ts +0 -13
  268. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/evidence/module/v1/module.js +0 -54
  269. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/evidence/v1beta1/evidence.d.ts +0 -32
  270. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/evidence/v1beta1/evidence.js +0 -90
  271. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/evidence/v1beta1/genesis.d.ts +0 -17
  272. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/evidence/v1beta1/genesis.js +0 -65
  273. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/evidence/v1beta1/query.d.ts +0 -87
  274. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/evidence/v1beta1/query.js +0 -188
  275. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/evidence/v1beta1/query.lcd.d.ts +0 -10
  276. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/evidence/v1beta1/query.lcd.js +0 -37
  277. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/evidence/v1beta1/query.rpc.Query.d.ts +0 -20
  278. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/evidence/v1beta1/query.rpc.Query.js +0 -63
  279. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/evidence/v1beta1/tx.d.ts +0 -40
  280. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/evidence/v1beta1/tx.js +0 -109
  281. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/evidence/v1beta1/tx.rpc.msg.d.ts +0 -15
  282. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/evidence/v1beta1/tx.rpc.msg.js +0 -41
  283. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/feegrant/module/v1/module.d.ts +0 -13
  284. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/feegrant/module/v1/module.js +0 -54
  285. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/feegrant/v1beta1/feegrant.d.ts +0 -111
  286. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/feegrant/v1beta1/feegrant.js +0 -241
  287. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/feegrant/v1beta1/genesis.d.ts +0 -16
  288. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/feegrant/v1beta1/genesis.js +0 -65
  289. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/feegrant/v1beta1/query.d.ts +0 -117
  290. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/feegrant/v1beta1/query.js +0 -285
  291. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/feegrant/v1beta1/query.lcd.d.ts +0 -11
  292. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/feegrant/v1beta1/query.lcd.js +0 -43
  293. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +0 -28
  294. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/feegrant/v1beta1/query.rpc.Query.js +0 -70
  295. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/feegrant/v1beta1/tx.d.ts +0 -109
  296. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/feegrant/v1beta1/tx.js +0 -239
  297. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +0 -28
  298. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/feegrant/v1beta1/tx.rpc.msg.js +0 -53
  299. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/genutil/module/v1/module.d.ts +0 -13
  300. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/genutil/module/v1/module.js +0 -54
  301. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/genutil/v1beta1/genesis.d.ts +0 -16
  302. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/genutil/v1beta1/genesis.js +0 -64
  303. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/module/v1/module.d.ts +0 -23
  304. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/module/v1/module.js +0 -73
  305. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1/genesis.d.ts +0 -68
  306. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1/genesis.js +0 -130
  307. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1/gov.d.ts +0 -404
  308. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1/gov.js +0 -822
  309. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1/query.d.ts +0 -320
  310. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1/query.js +0 -764
  311. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1/query.lcd.d.ts +0 -17
  312. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1/query.lcd.js +0 -92
  313. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1/query.rpc.Query.d.ts +0 -48
  314. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1/query.rpc.Query.js +0 -124
  315. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1/tx.d.ts +0 -308
  316. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1/tx.js +0 -638
  317. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1/tx.rpc.msg.d.ts +0 -42
  318. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1/tx.rpc.msg.js +0 -77
  319. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1beta1/genesis.d.ts +0 -36
  320. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1beta1/genesis.js +0 -114
  321. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1beta1/gov.d.ts +0 -295
  322. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1beta1/gov.js +0 -662
  323. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1beta1/query.d.ts +0 -273
  324. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1beta1/query.js +0 -694
  325. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1beta1/query.lcd.d.ts +0 -16
  326. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1beta1/query.lcd.js +0 -86
  327. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1beta1/query.rpc.Query.d.ts +0 -44
  328. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1beta1/query.rpc.Query.js +0 -115
  329. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1beta1/tx.d.ts +0 -155
  330. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1beta1/tx.js +0 -353
  331. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +0 -25
  332. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/gov/v1beta1/tx.rpc.msg.js +0 -59
  333. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/module/v1/module.d.ts +0 -27
  334. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/module/v1/module.js +0 -73
  335. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/v1/events.d.ts +0 -159
  336. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/v1/events.js +0 -425
  337. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/v1/genesis.d.ts +0 -48
  338. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/v1/genesis.js +0 -122
  339. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/v1/query.d.ts +0 -467
  340. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/v1/query.js +0 -1171
  341. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/v1/query.lcd.d.ts +0 -22
  342. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/v1/query.lcd.js +0 -157
  343. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/v1/query.rpc.Query.d.ts +0 -78
  344. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/v1/query.rpc.Query.js +0 -171
  345. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/v1/tx.d.ts +0 -521
  346. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/v1/tx.js +0 -1280
  347. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/v1/tx.rpc.msg.d.ts +0 -51
  348. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/v1/tx.rpc.msg.js +0 -119
  349. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/v1/types.d.ts +0 -467
  350. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/group/v1/types.js +0 -935
  351. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/lcd.d.ts +0 -66
  352. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/lcd.js +0 -138
  353. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/mint/module/v1/module.d.ts +0 -18
  354. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/mint/module/v1/module.js +0 -72
  355. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/mint/v1beta1/genesis.d.ts +0 -20
  356. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/mint/v1beta1/genesis.js +0 -72
  357. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/mint/v1beta1/mint.d.ts +0 -49
  358. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/mint/v1beta1/mint.js +0 -149
  359. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/mint/v1beta1/query.d.ts +0 -96
  360. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/mint/v1beta1/query.js +0 -214
  361. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/mint/v1beta1/query.lcd.d.ts +0 -11
  362. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/mint/v1beta1/query.lcd.js +0 -28
  363. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/mint/v1beta1/query.rpc.Query.d.ts +0 -24
  364. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/mint/v1beta1/query.rpc.Query.js +0 -70
  365. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/mint/v1beta1/tx.d.ts +0 -53
  366. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/mint/v1beta1/tx.js +0 -99
  367. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -17
  368. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/mint/v1beta1/tx.rpc.msg.js +0 -41
  369. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/msg/textual/v1/textual.d.ts +0 -1
  370. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/msg/textual/v1/textual.js +0 -3
  371. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/msg/v1/msg.d.ts +0 -1
  372. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/msg/v1/msg.js +0 -3
  373. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/module/v1/module.d.ts +0 -13
  374. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/module/v1/module.js +0 -54
  375. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/v1beta1/event.d.ts +0 -65
  376. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/v1beta1/event.js +0 -192
  377. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/v1beta1/genesis.d.ts +0 -37
  378. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/v1beta1/genesis.js +0 -117
  379. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/v1beta1/nft.d.ts +0 -61
  380. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/v1beta1/nft.js +0 -181
  381. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/v1beta1/query.d.ts +0 -222
  382. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/v1beta1/query.js +0 -586
  383. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/v1beta1/query.lcd.d.ts +0 -15
  384. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/v1beta1/query.lcd.js +0 -74
  385. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/v1beta1/query.rpc.Query.d.ts +0 -43
  386. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/v1beta1/query.rpc.Query.js +0 -108
  387. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/v1beta1/tx.d.ts +0 -36
  388. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/v1beta1/tx.js +0 -114
  389. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/v1beta1/tx.rpc.msg.d.ts +0 -12
  390. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/nft/v1beta1/tx.rpc.msg.js +0 -41
  391. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/orm/module/v1alpha1/module.d.ts +0 -21
  392. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/orm/module/v1alpha1/module.js +0 -54
  393. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/orm/query/v1alpha1/query.d.ts +0 -181
  394. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/orm/query/v1alpha1/query.js +0 -404
  395. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
  396. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -61
  397. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/orm/v1/orm.d.ts +0 -133
  398. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/orm/v1/orm.js +0 -212
  399. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/orm/v1alpha1/schema.d.ts +0 -78
  400. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/orm/v1alpha1/schema.js +0 -181
  401. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/params/module/v1/module.d.ts +0 -13
  402. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/params/module/v1/module.js +0 -54
  403. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/params/v1beta1/params.d.ts +0 -42
  404. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/params/v1beta1/params.js +0 -132
  405. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/params/v1beta1/query.d.ts +0 -103
  406. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/params/v1beta1/query.js +0 -214
  407. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/params/v1beta1/query.lcd.d.ts +0 -10
  408. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/params/v1beta1/query.lcd.js +0 -34
  409. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/params/v1beta1/query.rpc.Query.d.ts +0 -27
  410. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/params/v1beta1/query.rpc.Query.js +0 -61
  411. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/query/v1/query.d.ts +0 -1
  412. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/query/v1/query.js +0 -3
  413. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/reflection/v1/reflection.d.ts +0 -28
  414. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/reflection/v1/reflection.js +0 -91
  415. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/rpc.query.d.ts +0 -227
  416. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/rpc.query.js +0 -106
  417. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/rpc.tx.d.ts +0 -59
  418. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/rpc.tx.js +0 -84
  419. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/slashing/module/v1/module.d.ts +0 -16
  420. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/slashing/module/v1/module.js +0 -64
  421. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/slashing/v1beta1/genesis.d.ts +0 -87
  422. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/slashing/v1beta1/genesis.js +0 -214
  423. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/slashing/v1beta1/query.d.ts +0 -109
  424. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/slashing/v1beta1/query.js +0 -241
  425. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/slashing/v1beta1/query.lcd.d.ts +0 -11
  426. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/slashing/v1beta1/query.lcd.js +0 -37
  427. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/slashing/v1beta1/query.rpc.Query.d.ts +0 -24
  428. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/slashing/v1beta1/query.rpc.Query.js +0 -72
  429. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/slashing/v1beta1/slashing.d.ts +0 -70
  430. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/slashing/v1beta1/slashing.js +0 -175
  431. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/slashing/v1beta1/tx.d.ts +0 -77
  432. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/slashing/v1beta1/tx.js +0 -161
  433. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/slashing/v1beta1/tx.rpc.msg.d.ts +0 -24
  434. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/slashing/v1beta1/tx.rpc.msg.js +0 -47
  435. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/module/v1/module.d.ts +0 -29
  436. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/module/v1/module.js +0 -88
  437. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/v1beta1/authz.d.ts +0 -74
  438. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/v1beta1/authz.js +0 -187
  439. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/v1beta1/genesis.d.ts +0 -62
  440. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/v1beta1/genesis.js +0 -166
  441. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/v1beta1/query.d.ts +0 -552
  442. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/v1beta1/query.js +0 -1163
  443. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/v1beta1/query.lcd.d.ts +0 -22
  444. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/v1beta1/query.lcd.js +0 -171
  445. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/v1beta1/query.rpc.Query.d.ts +0 -111
  446. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/v1beta1/query.rpc.Query.js +0 -169
  447. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/v1beta1/staking.d.ts +0 -568
  448. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/v1beta1/staking.js +0 -1287
  449. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/v1beta1/tx.d.ts +0 -298
  450. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/v1beta1/tx.js +0 -655
  451. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -48
  452. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/staking/v1beta1/tx.rpc.msg.js +0 -77
  453. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/store/internal/kv/v1beta1/kv.d.ts +0 -30
  454. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/store/internal/kv/v1beta1/kv.js +0 -108
  455. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/store/snapshots/v1/snapshot.d.ts +0 -159
  456. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/store/snapshots/v1/snapshot.js +0 -368
  457. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/store/streaming/abci/grpc.d.ts +0 -60
  458. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/store/streaming/abci/grpc.js +0 -178
  459. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/store/v1beta1/commit_info.d.ts +0 -68
  460. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/store/v1beta1/commit_info.js +0 -170
  461. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/store/v1beta1/listening.d.ts +0 -60
  462. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/store/v1beta1/listening.js +0 -140
  463. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/tx/config/v1/config.d.ts +0 -25
  464. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/tx/config/v1/config.js +0 -72
  465. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/tx/signing/v1beta1/signing.d.ts +0 -163
  466. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/tx/signing/v1beta1/signing.js +0 -355
  467. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/tx/v1beta1/service.d.ts +0 -521
  468. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/tx/v1beta1/service.js +0 -914
  469. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/tx/v1beta1/service.lcd.d.ts +0 -11
  470. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/tx/v1beta1/service.lcd.js +0 -58
  471. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/tx/v1beta1/service.rpc.Service.d.ts +0 -68
  472. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/tx/v1beta1/service.rpc.Service.js +0 -124
  473. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/tx/v1beta1/tx.d.ts +0 -461
  474. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/tx/v1beta1/tx.js +0 -730
  475. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/upgrade/module/v1/module.d.ts +0 -16
  476. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/upgrade/module/v1/module.js +0 -64
  477. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/upgrade/v1beta1/query.d.ts +0 -220
  478. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/upgrade/v1beta1/query.js +0 -367
  479. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/upgrade/v1beta1/query.lcd.d.ts +0 -13
  480. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/upgrade/v1beta1/query.lcd.js +0 -55
  481. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +0 -47
  482. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/upgrade/v1beta1/query.rpc.Query.js +0 -88
  483. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/upgrade/v1beta1/tx.d.ts +0 -88
  484. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/upgrade/v1beta1/tx.js +0 -161
  485. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +0 -24
  486. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/upgrade/v1beta1/tx.rpc.msg.js +0 -47
  487. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/upgrade/v1beta1/upgrade.d.ts +0 -139
  488. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/upgrade/v1beta1/upgrade.js +0 -239
  489. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/vesting/module/v1/module.d.ts +0 -13
  490. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/vesting/module/v1/module.js +0 -54
  491. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/vesting/v1beta1/tx.d.ts +0 -141
  492. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/vesting/v1beta1/tx.js +0 -289
  493. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -31
  494. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/vesting/v1beta1/tx.rpc.msg.js +0 -53
  495. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/vesting/v1beta1/vesting.d.ts +0 -140
  496. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos/vesting/v1beta1/vesting.js +0 -308
  497. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos_proto/bundle.d.ts +0 -24
  498. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos_proto/bundle.js +0 -30
  499. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos_proto/cosmos.d.ts +0 -92
  500. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/cosmos_proto/cosmos.js +0 -174
  501. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/assets/asset.d.ts +0 -59
  502. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/assets/asset.js +0 -112
  503. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/assets/genesis.d.ts +0 -16
  504. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/assets/genesis.js +0 -65
  505. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/assets/query.d.ts +0 -60
  506. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/assets/query.js +0 -180
  507. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/assets/query.lcd.d.ts +0 -10
  508. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/assets/query.lcd.js +0 -31
  509. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/assets/query.rpc.Query.d.ts +0 -20
  510. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/assets/query.rpc.Query.js +0 -63
  511. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/assets/tx.d.ts +0 -1
  512. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/assets/tx.js +0 -3
  513. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/blocktime/blocktime.d.ts +0 -56
  514. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/blocktime/blocktime.js +0 -154
  515. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/blocktime/genesis.d.ts +0 -16
  516. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/blocktime/genesis.js +0 -64
  517. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/blocktime/params.d.ts +0 -20
  518. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/blocktime/params.js +0 -65
  519. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/blocktime/query.d.ts +0 -120
  520. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/blocktime/query.js +0 -213
  521. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/blocktime/query.lcd.d.ts +0 -10
  522. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/blocktime/query.lcd.js +0 -22
  523. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/blocktime/query.rpc.Query.d.ts +0 -24
  524. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/blocktime/query.rpc.Query.js +0 -70
  525. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/blocktime/tx.d.ts +0 -36
  526. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/blocktime/tx.js +0 -99
  527. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/blocktime/tx.rpc.msg.d.ts +0 -12
  528. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/blocktime/tx.rpc.msg.js +0 -41
  529. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/bridge_event.d.ts +0 -27
  530. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/bridge_event.js +0 -90
  531. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/bridge_event_info.d.ts +0 -29
  532. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/bridge_event_info.js +0 -73
  533. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/genesis.d.ts +0 -29
  534. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/genesis.js +0 -89
  535. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/params.d.ts +0 -89
  536. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/params.js +0 -186
  537. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/query.d.ts +0 -220
  538. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/query.js +0 -452
  539. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/query.lcd.d.ts +0 -14
  540. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/query.lcd.js +0 -57
  541. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/query.rpc.Query.d.ts +0 -47
  542. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/query.rpc.Query.js +0 -97
  543. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/tx.d.ts +0 -143
  544. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/tx.js +0 -372
  545. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/tx.rpc.msg.d.ts +0 -27
  546. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bridge/tx.rpc.msg.js +0 -65
  547. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bundle.d.ts +0 -5751
  548. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/bundle.js +0 -359
  549. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/block_rate_limit_config.d.ts +0 -66
  550. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/block_rate_limit_config.js +0 -132
  551. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/clob_pair.d.ts +0 -128
  552. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/clob_pair.js +0 -283
  553. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/equity_tier_limit_config.d.ts +0 -48
  554. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/equity_tier_limit_config.js +0 -116
  555. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/genesis.d.ts +0 -25
  556. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/genesis.js +0 -92
  557. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/liquidations.d.ts +0 -93
  558. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/liquidations.js +0 -188
  559. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/liquidations_config.d.ts +0 -125
  560. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/liquidations_config.js +0 -220
  561. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/matches.d.ts +0 -160
  562. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/matches.js +0 -348
  563. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/mev.d.ts +0 -126
  564. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/mev.js +0 -362
  565. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/operation.d.ts +0 -56
  566. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/operation.js +0 -150
  567. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/order.d.ts +0 -407
  568. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/order.js +0 -670
  569. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/order_removals.d.ts +0 -74
  570. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/order_removals.js +0 -185
  571. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/process_proposer_matches_events.d.ts +0 -54
  572. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/process_proposer_matches_events.js +0 -121
  573. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/query.d.ts +0 -285
  574. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/query.js +0 -590
  575. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/query.lcd.d.ts +0 -13
  576. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/query.lcd.js +0 -49
  577. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/query.rpc.Query.d.ts +0 -40
  578. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/query.rpc.Query.js +0 -108
  579. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/tx.d.ts +0 -397
  580. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/tx.js +0 -789
  581. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/tx.rpc.msg.d.ts +0 -50
  582. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/clob/tx.rpc.msg.js +0 -89
  583. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/daemons/bridge/bridge.d.ts +0 -33
  584. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/daemons/bridge/bridge.js +0 -91
  585. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/daemons/liquidation/liquidation.d.ts +0 -53
  586. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/daemons/liquidation/liquidation.js +0 -116
  587. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/daemons/pricefeed/price_feed.d.ts +0 -59
  588. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/daemons/pricefeed/price_feed.js +0 -188
  589. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/delaymsg/block_message_ids.d.ts +0 -25
  590. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/delaymsg/block_message_ids.js +0 -74
  591. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/delaymsg/delayed_message.d.ts +0 -23
  592. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/delaymsg/delayed_message.js +0 -81
  593. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/delaymsg/genesis.d.ts +0 -20
  594. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/delaymsg/genesis.js +0 -73
  595. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/delaymsg/query.d.ts +0 -113
  596. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/delaymsg/query.js +0 -244
  597. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/delaymsg/query.lcd.d.ts +0 -11
  598. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/delaymsg/query.lcd.js +0 -28
  599. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/delaymsg/query.rpc.Query.d.ts +0 -24
  600. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/delaymsg/query.rpc.Query.js +0 -70
  601. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/delaymsg/tx.d.ts +0 -37
  602. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/delaymsg/tx.js +0 -117
  603. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/delaymsg/tx.rpc.msg.d.ts +0 -15
  604. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/delaymsg/tx.rpc.msg.js +0 -41
  605. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/epochs/epoch_info.d.ts +0 -59
  606. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/epochs/epoch_info.js +0 -112
  607. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/epochs/genesis.d.ts +0 -16
  608. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/epochs/genesis.js +0 -65
  609. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/epochs/query.d.ts +0 -59
  610. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/epochs/query.js +0 -180
  611. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/epochs/query.lcd.d.ts +0 -10
  612. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/epochs/query.lcd.js +0 -31
  613. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/epochs/query.rpc.Query.d.ts +0 -20
  614. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/epochs/query.rpc.Query.js +0 -63
  615. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/feetiers/genesis.d.ts +0 -17
  616. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/feetiers/genesis.js +0 -64
  617. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/feetiers/params.d.ts +0 -46
  618. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/feetiers/params.js +0 -141
  619. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/feetiers/query.d.ts +0 -68
  620. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/feetiers/query.js +0 -170
  621. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/feetiers/query.lcd.d.ts +0 -10
  622. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/feetiers/query.lcd.js +0 -28
  623. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/feetiers/query.rpc.Query.d.ts +0 -20
  624. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/feetiers/query.rpc.Query.js +0 -61
  625. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/feetiers/tx.d.ts +0 -36
  626. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/feetiers/tx.js +0 -99
  627. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/feetiers/tx.rpc.msg.d.ts +0 -12
  628. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/feetiers/tx.rpc.msg.js +0 -41
  629. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/govplus/genesis.d.ts +0 -13
  630. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/govplus/genesis.js +0 -54
  631. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/govplus/query.d.ts +0 -1
  632. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/govplus/query.js +0 -3
  633. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/govplus/query.rpc.Query.d.ts +0 -10
  634. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/govplus/query.rpc.Query.js +0 -17
  635. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/govplus/tx.d.ts +0 -58
  636. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/govplus/tx.js +0 -122
  637. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/govplus/tx.rpc.msg.d.ts +0 -15
  638. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/govplus/tx.rpc.msg.js +0 -41
  639. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/events/events.d.ts +0 -884
  640. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/events/events.js +0 -1547
  641. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/indexer_manager/event.d.ts +0 -129
  642. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/indexer_manager/event.js +0 -296
  643. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/off_chain_updates/off_chain_updates.d.ts +0 -153
  644. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/off_chain_updates/off_chain_updates.js +0 -353
  645. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/protocol/v1/clob.d.ts +0 -256
  646. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/protocol/v1/clob.js +0 -477
  647. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/protocol/v1/perpetual.d.ts +0 -16
  648. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/protocol/v1/perpetual.js +0 -51
  649. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/protocol/v1/subaccount.d.ts +0 -90
  650. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/protocol/v1/subaccount.js +0 -185
  651. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/redis/redis_order.d.ts +0 -56
  652. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/redis/redis_order.js +0 -152
  653. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/shared/removal_reason.d.ts +0 -71
  654. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/shared/removal_reason.js +0 -166
  655. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/socks/messages.d.ts +0 -139
  656. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/indexer/socks/messages.js +0 -396
  657. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/lcd.d.ts +0 -82
  658. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/lcd.js +0 -182
  659. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/perpetuals/genesis.d.ts +0 -21
  660. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/perpetuals/genesis.js +0 -82
  661. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/perpetuals/params.d.ts +0 -33
  662. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/perpetuals/params.js +0 -80
  663. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/perpetuals/perpetual.d.ts +0 -214
  664. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/perpetuals/perpetual.js +0 -398
  665. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/perpetuals/query.d.ts +0 -184
  666. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/perpetuals/query.js +0 -443
  667. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/perpetuals/query.lcd.d.ts +0 -14
  668. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/perpetuals/query.lcd.js +0 -63
  669. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/perpetuals/query.rpc.Query.d.ts +0 -36
  670. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/perpetuals/query.rpc.Query.js +0 -101
  671. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/perpetuals/tx.d.ts +0 -197
  672. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/perpetuals/tx.js +0 -416
  673. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/perpetuals/tx.rpc.msg.d.ts +0 -30
  674. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/perpetuals/tx.rpc.msg.js +0 -65
  675. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/prices/genesis.d.ts +0 -19
  676. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/prices/genesis.js +0 -74
  677. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/prices/market_param.d.ts +0 -55
  678. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/prices/market_param.js +0 -104
  679. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/prices/market_price.d.ts +0 -29
  680. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/prices/market_price.js +0 -81
  681. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/prices/query.d.ts +0 -169
  682. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/prices/query.js +0 -331
  683. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/prices/query.lcd.d.ts +0 -12
  684. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/prices/query.lcd.js +0 -51
  685. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/prices/query.rpc.Query.d.ts +0 -28
  686. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/prices/query.rpc.Query.js +0 -83
  687. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/prices/tx.d.ts +0 -118
  688. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/prices/tx.js +0 -276
  689. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/prices/tx.rpc.msg.d.ts +0 -24
  690. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/prices/tx.rpc.msg.js +0 -53
  691. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/ratelimit/capacity.d.ts +0 -42
  692. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/ratelimit/capacity.js +0 -117
  693. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/ratelimit/genesis.d.ts +0 -17
  694. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/ratelimit/genesis.js +0 -65
  695. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/ratelimit/limit_params.d.ts +0 -57
  696. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/ratelimit/limit_params.js +0 -125
  697. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/ratelimit/query.d.ts +0 -70
  698. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/ratelimit/query.js +0 -164
  699. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/ratelimit/query.lcd.d.ts +0 -10
  700. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/ratelimit/query.lcd.js +0 -28
  701. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/ratelimit/query.rpc.Query.d.ts +0 -20
  702. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/ratelimit/query.rpc.Query.js +0 -61
  703. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/ratelimit/tx.d.ts +0 -30
  704. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/ratelimit/tx.js +0 -99
  705. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/ratelimit/tx.rpc.msg.d.ts +0 -12
  706. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/ratelimit/tx.rpc.msg.js +0 -41
  707. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rewards/genesis.d.ts +0 -17
  708. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rewards/genesis.js +0 -64
  709. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rewards/params.d.ts +0 -36
  710. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rewards/params.js +0 -96
  711. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rewards/query.d.ts +0 -27
  712. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rewards/query.js +0 -90
  713. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rewards/query.lcd.d.ts +0 -9
  714. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rewards/query.lcd.js +0 -16
  715. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rewards/query.rpc.Query.d.ts +0 -16
  716. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rewards/query.rpc.Query.js +0 -52
  717. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rewards/reward_share.d.ts +0 -23
  718. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rewards/reward_share.js +0 -72
  719. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rewards/tx.d.ts +0 -30
  720. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rewards/tx.js +0 -99
  721. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rewards/tx.rpc.msg.d.ts +0 -12
  722. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rewards/tx.rpc.msg.js +0 -41
  723. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rpc.query.d.ts +0 -306
  724. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rpc.query.js +0 -125
  725. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rpc.tx.d.ts +0 -75
  726. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/rpc.tx.js +0 -100
  727. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/sending/genesis.d.ts +0 -13
  728. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/sending/genesis.js +0 -54
  729. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/sending/query.d.ts +0 -1
  730. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/sending/query.js +0 -3
  731. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/sending/query.rpc.Query.d.ts +0 -10
  732. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/sending/query.rpc.Query.js +0 -17
  733. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/sending/transfer.d.ts +0 -121
  734. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/sending/transfer.js +0 -271
  735. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/sending/tx.d.ts +0 -79
  736. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/sending/tx.js +0 -168
  737. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/sending/tx.rpc.msg.d.ts +0 -31
  738. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/sending/tx.rpc.msg.js +0 -60
  739. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/stats/genesis.d.ts +0 -17
  740. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/stats/genesis.js +0 -64
  741. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/stats/params.d.ts +0 -17
  742. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/stats/params.js +0 -64
  743. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/stats/query.d.ts +0 -115
  744. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/stats/query.js +0 -284
  745. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/stats/query.lcd.d.ts +0 -12
  746. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/stats/query.lcd.js +0 -40
  747. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/stats/query.rpc.Query.d.ts +0 -28
  748. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/stats/query.rpc.Query.js +0 -79
  749. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/stats/stats.d.ts +0 -117
  750. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/stats/stats.js +0 -320
  751. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/stats/tx.d.ts +0 -30
  752. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/stats/tx.js +0 -99
  753. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/stats/tx.rpc.msg.d.ts +0 -12
  754. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/stats/tx.rpc.msg.js +0 -41
  755. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/subaccounts/asset_position.d.ts +0 -33
  756. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/subaccounts/asset_position.js +0 -81
  757. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/subaccounts/genesis.d.ts +0 -16
  758. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/subaccounts/genesis.js +0 -65
  759. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/subaccounts/perpetual_position.d.ts +0 -31
  760. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/subaccounts/perpetual_position.js +0 -80
  761. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/subaccounts/query.d.ts +0 -100
  762. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/subaccounts/query.js +0 -266
  763. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/subaccounts/query.lcd.d.ts +0 -11
  764. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/subaccounts/query.lcd.js +0 -38
  765. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/subaccounts/query.rpc.Query.d.ts +0 -27
  766. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/subaccounts/query.rpc.Query.js +0 -72
  767. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/subaccounts/subaccount.d.ts +0 -62
  768. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/subaccounts/subaccount.js +0 -134
  769. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vault/genesis.d.ts +0 -13
  770. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vault/genesis.js +0 -54
  771. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vault/query.d.ts +0 -1
  772. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vault/query.js +0 -3
  773. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vault/query.rpc.Query.d.ts +0 -10
  774. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vault/query.rpc.Query.js +0 -17
  775. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vault/tx.d.ts +0 -35
  776. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vault/tx.js +0 -108
  777. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vault/tx.rpc.msg.d.ts +0 -12
  778. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vault/tx.rpc.msg.js +0 -41
  779. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vault/vault.d.ts +0 -44
  780. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vault/vault.js +0 -145
  781. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vest/genesis.d.ts +0 -17
  782. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vest/genesis.js +0 -65
  783. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vest/query.d.ts +0 -30
  784. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vest/query.js +0 -100
  785. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vest/query.lcd.d.ts +0 -9
  786. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vest/query.lcd.js +0 -22
  787. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vest/query.rpc.Query.d.ts +0 -16
  788. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vest/query.rpc.Query.js +0 -52
  789. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vest/tx.d.ts +0 -59
  790. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vest/tx.js +0 -169
  791. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vest/tx.rpc.msg.d.ts +0 -15
  792. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vest/tx.rpc.msg.js +0 -47
  793. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vest/vest_entry.d.ts +0 -40
  794. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/dydxprotocol/vest/vest_entry.js +0 -98
  795. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/gogoproto/bundle.d.ts +0 -1
  796. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/gogoproto/bundle.js +0 -30
  797. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/gogoproto/gogo.d.ts +0 -1
  798. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/gogoproto/gogo.js +0 -3
  799. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/google/api/annotations.d.ts +0 -1
  800. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/google/api/annotations.js +0 -3
  801. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/google/api/http.d.ts +0 -673
  802. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/google/api/http.js +0 -224
  803. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/google/bundle.d.ts +0 -1460
  804. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/google/bundle.js +0 -44
  805. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/google/protobuf/any.d.ts +0 -207
  806. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/google/protobuf/any.js +0 -72
  807. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/google/protobuf/descriptor.d.ts +0 -1172
  808. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/google/protobuf/descriptor.js +0 -2198
  809. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/google/protobuf/duration.d.ts +0 -149
  810. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/google/protobuf/duration.js +0 -73
  811. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/google/protobuf/timestamp.d.ts +0 -195
  812. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/google/protobuf/timestamp.js +0 -73
  813. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/helpers.d.ts +0 -82
  814. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/helpers.js +0 -184
  815. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/index.d.ts +0 -12
  816. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/index.js +0 -29
  817. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/abci/types.d.ts +0 -985
  818. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/abci/types.js +0 -3060
  819. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/bundle.d.ts +0 -2284
  820. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/bundle.js +0 -61
  821. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/crypto/keys.d.ts +0 -17
  822. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/crypto/keys.js +0 -72
  823. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/crypto/proof.d.ts +0 -88
  824. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/crypto/proof.js +0 -273
  825. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/libs/bits/types.d.ts +0 -16
  826. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/libs/bits/types.js +0 -83
  827. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/p2p/types.d.ts +0 -71
  828. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/p2p/types.js +0 -268
  829. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/types/block.d.ts +0 -21
  830. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/types/block.js +0 -89
  831. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/types/evidence.d.ts +0 -71
  832. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/types/evidence.js +0 -247
  833. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/types/params.d.ts +0 -168
  834. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/types/params.js +0 -340
  835. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/types/types.d.ts +0 -352
  836. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/types/types.js +0 -1043
  837. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/types/validator.d.ts +0 -63
  838. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/types/validator.js +0 -235
  839. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/version/types.d.ts +0 -49
  840. package/build/node_modules/@dydxprotocol/v4-proto/src/codegen/tendermint/version/types.js +0 -116
@@ -1,2284 +0,0 @@
1
- /// <reference types="long" />
2
- import * as _233 from "./abci/types";
3
- import * as _234 from "./crypto/keys";
4
- import * as _235 from "./crypto/proof";
5
- import * as _236 from "./libs/bits/types";
6
- import * as _237 from "./p2p/types";
7
- import * as _238 from "./types/block";
8
- import * as _239 from "./types/evidence";
9
- import * as _240 from "./types/params";
10
- import * as _241 from "./types/types";
11
- import * as _242 from "./types/validator";
12
- import * as _243 from "./version/types";
13
- export declare namespace tendermint {
14
- const abci: {
15
- checkTxTypeFromJSON(object: any): _233.CheckTxType;
16
- checkTxTypeToJSON(object: _233.CheckTxType): string;
17
- responseOfferSnapshot_ResultFromJSON(object: any): _233.ResponseOfferSnapshot_Result;
18
- responseOfferSnapshot_ResultToJSON(object: _233.ResponseOfferSnapshot_Result): string;
19
- responseApplySnapshotChunk_ResultFromJSON(object: any): _233.ResponseApplySnapshotChunk_Result;
20
- responseApplySnapshotChunk_ResultToJSON(object: _233.ResponseApplySnapshotChunk_Result): string;
21
- responseProcessProposal_ProposalStatusFromJSON(object: any): _233.ResponseProcessProposal_ProposalStatus;
22
- responseProcessProposal_ProposalStatusToJSON(object: _233.ResponseProcessProposal_ProposalStatus): string;
23
- responseVerifyVoteExtension_VerifyStatusFromJSON(object: any): _233.ResponseVerifyVoteExtension_VerifyStatus;
24
- responseVerifyVoteExtension_VerifyStatusToJSON(object: _233.ResponseVerifyVoteExtension_VerifyStatus): string;
25
- misbehaviorTypeFromJSON(object: any): _233.MisbehaviorType;
26
- misbehaviorTypeToJSON(object: _233.MisbehaviorType): string;
27
- CheckTxType: typeof _233.CheckTxType;
28
- CheckTxTypeSDKType: typeof _233.CheckTxType;
29
- ResponseOfferSnapshot_Result: typeof _233.ResponseOfferSnapshot_Result;
30
- ResponseOfferSnapshot_ResultSDKType: typeof _233.ResponseOfferSnapshot_Result;
31
- ResponseApplySnapshotChunk_Result: typeof _233.ResponseApplySnapshotChunk_Result;
32
- ResponseApplySnapshotChunk_ResultSDKType: typeof _233.ResponseApplySnapshotChunk_Result;
33
- ResponseProcessProposal_ProposalStatus: typeof _233.ResponseProcessProposal_ProposalStatus;
34
- ResponseProcessProposal_ProposalStatusSDKType: typeof _233.ResponseProcessProposal_ProposalStatus;
35
- ResponseVerifyVoteExtension_VerifyStatus: typeof _233.ResponseVerifyVoteExtension_VerifyStatus;
36
- ResponseVerifyVoteExtension_VerifyStatusSDKType: typeof _233.ResponseVerifyVoteExtension_VerifyStatus;
37
- MisbehaviorType: typeof _233.MisbehaviorType;
38
- MisbehaviorTypeSDKType: typeof _233.MisbehaviorType;
39
- Request: {
40
- encode(message: _233.Request, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
41
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.Request;
42
- fromPartial(object: {
43
- echo?: {
44
- message?: string | undefined;
45
- } | undefined;
46
- flush?: {} | undefined;
47
- info?: {
48
- version?: string | undefined;
49
- blockVersion?: string | number | import("long").Long | undefined;
50
- p2pVersion?: string | number | import("long").Long | undefined;
51
- abciVersion?: string | undefined;
52
- } | undefined;
53
- initChain?: {
54
- time?: Date | undefined;
55
- chainId?: string | undefined;
56
- consensusParams?: {
57
- block?: {
58
- maxBytes?: string | number | import("long").Long | undefined;
59
- maxGas?: string | number | import("long").Long | undefined;
60
- } | undefined;
61
- evidence?: {
62
- maxAgeNumBlocks?: string | number | import("long").Long | undefined;
63
- maxAgeDuration?: {
64
- seconds?: string | number | import("long").Long | undefined;
65
- nanos?: number | undefined;
66
- } | undefined;
67
- maxBytes?: string | number | import("long").Long | undefined;
68
- } | undefined;
69
- validator?: {
70
- pubKeyTypes?: string[] | undefined;
71
- } | undefined;
72
- version?: {
73
- app?: string | number | import("long").Long | undefined;
74
- } | undefined;
75
- abci?: {
76
- voteExtensionsEnableHeight?: string | number | import("long").Long | undefined;
77
- } | undefined;
78
- } | undefined;
79
- validators?: {
80
- pubKey?: {
81
- ed25519?: Uint8Array | undefined;
82
- secp256k1?: Uint8Array | undefined;
83
- } | undefined;
84
- power?: string | number | import("long").Long | undefined;
85
- }[] | undefined;
86
- appStateBytes?: Uint8Array | undefined;
87
- initialHeight?: string | number | import("long").Long | undefined;
88
- } | undefined;
89
- query?: {
90
- data?: Uint8Array | undefined;
91
- path?: string | undefined;
92
- height?: string | number | import("long").Long | undefined;
93
- prove?: boolean | undefined;
94
- } | undefined;
95
- checkTx?: {
96
- tx?: Uint8Array | undefined;
97
- type?: _233.CheckTxType | undefined;
98
- } | undefined;
99
- commit?: {} | undefined;
100
- listSnapshots?: {} | undefined;
101
- offerSnapshot?: {
102
- snapshot?: {
103
- height?: string | number | import("long").Long | undefined;
104
- format?: number | undefined;
105
- chunks?: number | undefined;
106
- hash?: Uint8Array | undefined;
107
- metadata?: Uint8Array | undefined;
108
- } | undefined;
109
- appHash?: Uint8Array | undefined;
110
- } | undefined;
111
- loadSnapshotChunk?: {
112
- height?: string | number | import("long").Long | undefined;
113
- format?: number | undefined;
114
- chunk?: number | undefined;
115
- } | undefined;
116
- applySnapshotChunk?: {
117
- index?: number | undefined;
118
- chunk?: Uint8Array | undefined;
119
- sender?: string | undefined;
120
- } | undefined;
121
- prepareProposal?: {
122
- maxTxBytes?: string | number | import("long").Long | undefined;
123
- txs?: Uint8Array[] | undefined;
124
- localLastCommit?: {
125
- round?: number | undefined;
126
- votes?: {
127
- validator?: {
128
- address?: Uint8Array | undefined;
129
- power?: string | number | import("long").Long | undefined;
130
- } | undefined;
131
- voteExtension?: Uint8Array | undefined;
132
- extensionSignature?: Uint8Array | undefined;
133
- blockIdFlag?: _242.BlockIDFlag | undefined;
134
- }[] | undefined;
135
- } | undefined;
136
- misbehavior?: {
137
- type?: _233.MisbehaviorType | undefined;
138
- validator?: {
139
- address?: Uint8Array | undefined;
140
- power?: string | number | import("long").Long | undefined;
141
- } | undefined;
142
- height?: string | number | import("long").Long | undefined;
143
- time?: Date | undefined;
144
- totalVotingPower?: string | number | import("long").Long | undefined;
145
- }[] | undefined;
146
- height?: string | number | import("long").Long | undefined;
147
- time?: Date | undefined;
148
- nextValidatorsHash?: Uint8Array | undefined;
149
- proposerAddress?: Uint8Array | undefined;
150
- } | undefined;
151
- processProposal?: {
152
- txs?: Uint8Array[] | undefined;
153
- proposedLastCommit?: {
154
- round?: number | undefined;
155
- votes?: {
156
- validator?: {
157
- address?: Uint8Array | undefined;
158
- power?: string | number | import("long").Long | undefined;
159
- } | undefined;
160
- blockIdFlag?: _242.BlockIDFlag | undefined;
161
- }[] | undefined;
162
- } | undefined;
163
- misbehavior?: {
164
- type?: _233.MisbehaviorType | undefined;
165
- validator?: {
166
- address?: Uint8Array | undefined;
167
- power?: string | number | import("long").Long | undefined;
168
- } | undefined;
169
- height?: string | number | import("long").Long | undefined;
170
- time?: Date | undefined;
171
- totalVotingPower?: string | number | import("long").Long | undefined;
172
- }[] | undefined;
173
- hash?: Uint8Array | undefined;
174
- height?: string | number | import("long").Long | undefined;
175
- time?: Date | undefined;
176
- nextValidatorsHash?: Uint8Array | undefined;
177
- proposerAddress?: Uint8Array | undefined;
178
- } | undefined;
179
- extendVote?: {
180
- hash?: Uint8Array | undefined;
181
- height?: string | number | import("long").Long | undefined;
182
- time?: Date | undefined;
183
- txs?: Uint8Array[] | undefined;
184
- proposedLastCommit?: {
185
- round?: number | undefined;
186
- votes?: {
187
- validator?: {
188
- address?: Uint8Array | undefined;
189
- power?: string | number | import("long").Long | undefined;
190
- } | undefined;
191
- blockIdFlag?: _242.BlockIDFlag | undefined;
192
- }[] | undefined;
193
- } | undefined;
194
- misbehavior?: {
195
- type?: _233.MisbehaviorType | undefined;
196
- validator?: {
197
- address?: Uint8Array | undefined;
198
- power?: string | number | import("long").Long | undefined;
199
- } | undefined;
200
- height?: string | number | import("long").Long | undefined;
201
- time?: Date | undefined;
202
- totalVotingPower?: string | number | import("long").Long | undefined;
203
- }[] | undefined;
204
- nextValidatorsHash?: Uint8Array | undefined;
205
- proposerAddress?: Uint8Array | undefined;
206
- } | undefined;
207
- verifyVoteExtension?: {
208
- hash?: Uint8Array | undefined;
209
- validatorAddress?: Uint8Array | undefined;
210
- height?: string | number | import("long").Long | undefined;
211
- voteExtension?: Uint8Array | undefined;
212
- } | undefined;
213
- finalizeBlock?: {
214
- txs?: Uint8Array[] | undefined;
215
- decidedLastCommit?: {
216
- round?: number | undefined;
217
- votes?: {
218
- validator?: {
219
- address?: Uint8Array | undefined;
220
- power?: string | number | import("long").Long | undefined;
221
- } | undefined;
222
- blockIdFlag?: _242.BlockIDFlag | undefined;
223
- }[] | undefined;
224
- } | undefined;
225
- misbehavior?: {
226
- type?: _233.MisbehaviorType | undefined;
227
- validator?: {
228
- address?: Uint8Array | undefined;
229
- power?: string | number | import("long").Long | undefined;
230
- } | undefined;
231
- height?: string | number | import("long").Long | undefined;
232
- time?: Date | undefined;
233
- totalVotingPower?: string | number | import("long").Long | undefined;
234
- }[] | undefined;
235
- hash?: Uint8Array | undefined;
236
- height?: string | number | import("long").Long | undefined;
237
- time?: Date | undefined;
238
- nextValidatorsHash?: Uint8Array | undefined;
239
- proposerAddress?: Uint8Array | undefined;
240
- } | undefined;
241
- }): _233.Request;
242
- };
243
- RequestEcho: {
244
- encode(message: _233.RequestEcho, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
245
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.RequestEcho;
246
- fromPartial(object: {
247
- message?: string | undefined;
248
- }): _233.RequestEcho;
249
- };
250
- RequestFlush: {
251
- encode(_: _233.RequestFlush, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
252
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.RequestFlush;
253
- fromPartial(_: {}): _233.RequestFlush;
254
- };
255
- RequestInfo: {
256
- encode(message: _233.RequestInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
257
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.RequestInfo;
258
- fromPartial(object: {
259
- version?: string | undefined;
260
- blockVersion?: string | number | import("long").Long | undefined;
261
- p2pVersion?: string | number | import("long").Long | undefined;
262
- abciVersion?: string | undefined;
263
- }): _233.RequestInfo;
264
- };
265
- RequestInitChain: {
266
- encode(message: _233.RequestInitChain, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
267
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.RequestInitChain;
268
- fromPartial(object: {
269
- time?: Date | undefined;
270
- chainId?: string | undefined;
271
- consensusParams?: {
272
- block?: {
273
- maxBytes?: string | number | import("long").Long | undefined;
274
- maxGas?: string | number | import("long").Long | undefined;
275
- } | undefined;
276
- evidence?: {
277
- maxAgeNumBlocks?: string | number | import("long").Long | undefined;
278
- maxAgeDuration?: {
279
- seconds?: string | number | import("long").Long | undefined;
280
- nanos?: number | undefined;
281
- } | undefined;
282
- maxBytes?: string | number | import("long").Long | undefined;
283
- } | undefined;
284
- validator?: {
285
- pubKeyTypes?: string[] | undefined;
286
- } | undefined;
287
- version?: {
288
- app?: string | number | import("long").Long | undefined;
289
- } | undefined;
290
- abci?: {
291
- voteExtensionsEnableHeight?: string | number | import("long").Long | undefined;
292
- } | undefined;
293
- } | undefined;
294
- validators?: {
295
- pubKey?: {
296
- ed25519?: Uint8Array | undefined;
297
- secp256k1?: Uint8Array | undefined;
298
- } | undefined;
299
- power?: string | number | import("long").Long | undefined;
300
- }[] | undefined;
301
- appStateBytes?: Uint8Array | undefined;
302
- initialHeight?: string | number | import("long").Long | undefined;
303
- }): _233.RequestInitChain;
304
- };
305
- RequestQuery: {
306
- encode(message: _233.RequestQuery, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
307
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.RequestQuery;
308
- fromPartial(object: {
309
- data?: Uint8Array | undefined;
310
- path?: string | undefined;
311
- height?: string | number | import("long").Long | undefined;
312
- prove?: boolean | undefined;
313
- }): _233.RequestQuery;
314
- };
315
- RequestCheckTx: {
316
- encode(message: _233.RequestCheckTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
317
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.RequestCheckTx;
318
- fromPartial(object: {
319
- tx?: Uint8Array | undefined;
320
- type?: _233.CheckTxType | undefined;
321
- }): _233.RequestCheckTx;
322
- };
323
- RequestCommit: {
324
- encode(_: _233.RequestCommit, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
325
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.RequestCommit;
326
- fromPartial(_: {}): _233.RequestCommit;
327
- };
328
- RequestListSnapshots: {
329
- encode(_: _233.RequestListSnapshots, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
330
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.RequestListSnapshots;
331
- fromPartial(_: {}): _233.RequestListSnapshots;
332
- };
333
- RequestOfferSnapshot: {
334
- encode(message: _233.RequestOfferSnapshot, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
335
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.RequestOfferSnapshot;
336
- fromPartial(object: {
337
- snapshot?: {
338
- height?: string | number | import("long").Long | undefined;
339
- format?: number | undefined;
340
- chunks?: number | undefined;
341
- hash?: Uint8Array | undefined;
342
- metadata?: Uint8Array | undefined;
343
- } | undefined;
344
- appHash?: Uint8Array | undefined;
345
- }): _233.RequestOfferSnapshot;
346
- };
347
- RequestLoadSnapshotChunk: {
348
- encode(message: _233.RequestLoadSnapshotChunk, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
349
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.RequestLoadSnapshotChunk;
350
- fromPartial(object: {
351
- height?: string | number | import("long").Long | undefined;
352
- format?: number | undefined;
353
- chunk?: number | undefined;
354
- }): _233.RequestLoadSnapshotChunk;
355
- };
356
- RequestApplySnapshotChunk: {
357
- encode(message: _233.RequestApplySnapshotChunk, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
358
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.RequestApplySnapshotChunk;
359
- fromPartial(object: {
360
- index?: number | undefined;
361
- chunk?: Uint8Array | undefined;
362
- sender?: string | undefined;
363
- }): _233.RequestApplySnapshotChunk;
364
- };
365
- RequestPrepareProposal: {
366
- encode(message: _233.RequestPrepareProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
367
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.RequestPrepareProposal;
368
- fromPartial(object: {
369
- maxTxBytes?: string | number | import("long").Long | undefined;
370
- txs?: Uint8Array[] | undefined;
371
- localLastCommit?: {
372
- round?: number | undefined;
373
- votes?: {
374
- validator?: {
375
- address?: Uint8Array | undefined;
376
- power?: string | number | import("long").Long | undefined;
377
- } | undefined;
378
- voteExtension?: Uint8Array | undefined;
379
- extensionSignature?: Uint8Array | undefined;
380
- blockIdFlag?: _242.BlockIDFlag | undefined;
381
- }[] | undefined;
382
- } | undefined;
383
- misbehavior?: {
384
- type?: _233.MisbehaviorType | undefined;
385
- validator?: {
386
- address?: Uint8Array | undefined;
387
- power?: string | number | import("long").Long | undefined;
388
- } | undefined;
389
- height?: string | number | import("long").Long | undefined;
390
- time?: Date | undefined;
391
- totalVotingPower?: string | number | import("long").Long | undefined;
392
- }[] | undefined;
393
- height?: string | number | import("long").Long | undefined;
394
- time?: Date | undefined;
395
- nextValidatorsHash?: Uint8Array | undefined;
396
- proposerAddress?: Uint8Array | undefined;
397
- }): _233.RequestPrepareProposal;
398
- };
399
- RequestProcessProposal: {
400
- encode(message: _233.RequestProcessProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
401
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.RequestProcessProposal;
402
- fromPartial(object: {
403
- txs?: Uint8Array[] | undefined;
404
- proposedLastCommit?: {
405
- round?: number | undefined;
406
- votes?: {
407
- validator?: {
408
- address?: Uint8Array | undefined;
409
- power?: string | number | import("long").Long | undefined;
410
- } | undefined;
411
- blockIdFlag?: _242.BlockIDFlag | undefined;
412
- }[] | undefined;
413
- } | undefined;
414
- misbehavior?: {
415
- type?: _233.MisbehaviorType | undefined;
416
- validator?: {
417
- address?: Uint8Array | undefined;
418
- power?: string | number | import("long").Long | undefined;
419
- } | undefined;
420
- height?: string | number | import("long").Long | undefined;
421
- time?: Date | undefined;
422
- totalVotingPower?: string | number | import("long").Long | undefined;
423
- }[] | undefined;
424
- hash?: Uint8Array | undefined;
425
- height?: string | number | import("long").Long | undefined;
426
- time?: Date | undefined;
427
- nextValidatorsHash?: Uint8Array | undefined;
428
- proposerAddress?: Uint8Array | undefined;
429
- }): _233.RequestProcessProposal;
430
- };
431
- RequestExtendVote: {
432
- encode(message: _233.RequestExtendVote, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
433
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.RequestExtendVote;
434
- fromPartial(object: {
435
- hash?: Uint8Array | undefined;
436
- height?: string | number | import("long").Long | undefined;
437
- time?: Date | undefined;
438
- txs?: Uint8Array[] | undefined;
439
- proposedLastCommit?: {
440
- round?: number | undefined;
441
- votes?: {
442
- validator?: {
443
- address?: Uint8Array | undefined;
444
- power?: string | number | import("long").Long | undefined;
445
- } | undefined;
446
- blockIdFlag?: _242.BlockIDFlag | undefined;
447
- }[] | undefined;
448
- } | undefined;
449
- misbehavior?: {
450
- type?: _233.MisbehaviorType | undefined;
451
- validator?: {
452
- address?: Uint8Array | undefined;
453
- power?: string | number | import("long").Long | undefined;
454
- } | undefined;
455
- height?: string | number | import("long").Long | undefined;
456
- time?: Date | undefined;
457
- totalVotingPower?: string | number | import("long").Long | undefined;
458
- }[] | undefined;
459
- nextValidatorsHash?: Uint8Array | undefined;
460
- proposerAddress?: Uint8Array | undefined;
461
- }): _233.RequestExtendVote;
462
- };
463
- RequestVerifyVoteExtension: {
464
- encode(message: _233.RequestVerifyVoteExtension, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
465
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.RequestVerifyVoteExtension;
466
- fromPartial(object: {
467
- hash?: Uint8Array | undefined;
468
- validatorAddress?: Uint8Array | undefined;
469
- height?: string | number | import("long").Long | undefined;
470
- voteExtension?: Uint8Array | undefined;
471
- }): _233.RequestVerifyVoteExtension;
472
- };
473
- RequestFinalizeBlock: {
474
- encode(message: _233.RequestFinalizeBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
475
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.RequestFinalizeBlock;
476
- fromPartial(object: {
477
- txs?: Uint8Array[] | undefined;
478
- decidedLastCommit?: {
479
- round?: number | undefined;
480
- votes?: {
481
- validator?: {
482
- address?: Uint8Array | undefined;
483
- power?: string | number | import("long").Long | undefined;
484
- } | undefined;
485
- blockIdFlag?: _242.BlockIDFlag | undefined;
486
- }[] | undefined;
487
- } | undefined;
488
- misbehavior?: {
489
- type?: _233.MisbehaviorType | undefined;
490
- validator?: {
491
- address?: Uint8Array | undefined;
492
- power?: string | number | import("long").Long | undefined;
493
- } | undefined;
494
- height?: string | number | import("long").Long | undefined;
495
- time?: Date | undefined;
496
- totalVotingPower?: string | number | import("long").Long | undefined;
497
- }[] | undefined;
498
- hash?: Uint8Array | undefined;
499
- height?: string | number | import("long").Long | undefined;
500
- time?: Date | undefined;
501
- nextValidatorsHash?: Uint8Array | undefined;
502
- proposerAddress?: Uint8Array | undefined;
503
- }): _233.RequestFinalizeBlock;
504
- };
505
- Response: {
506
- encode(message: _233.Response, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
507
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.Response;
508
- fromPartial(object: {
509
- exception?: {
510
- error?: string | undefined;
511
- } | undefined;
512
- echo?: {
513
- message?: string | undefined;
514
- } | undefined;
515
- flush?: {} | undefined;
516
- info?: {
517
- data?: string | undefined;
518
- version?: string | undefined;
519
- appVersion?: string | number | import("long").Long | undefined;
520
- lastBlockHeight?: string | number | import("long").Long | undefined;
521
- lastBlockAppHash?: Uint8Array | undefined;
522
- } | undefined;
523
- initChain?: {
524
- consensusParams?: {
525
- block?: {
526
- maxBytes?: string | number | import("long").Long | undefined;
527
- maxGas?: string | number | import("long").Long | undefined;
528
- } | undefined;
529
- evidence?: {
530
- maxAgeNumBlocks?: string | number | import("long").Long | undefined;
531
- maxAgeDuration?: {
532
- seconds?: string | number | import("long").Long | undefined;
533
- nanos?: number | undefined;
534
- } | undefined;
535
- maxBytes?: string | number | import("long").Long | undefined;
536
- } | undefined;
537
- validator?: {
538
- pubKeyTypes?: string[] | undefined;
539
- } | undefined;
540
- version?: {
541
- app?: string | number | import("long").Long | undefined;
542
- } | undefined;
543
- abci?: {
544
- voteExtensionsEnableHeight?: string | number | import("long").Long | undefined;
545
- } | undefined;
546
- } | undefined;
547
- validators?: {
548
- pubKey?: {
549
- ed25519?: Uint8Array | undefined;
550
- secp256k1?: Uint8Array | undefined;
551
- } | undefined;
552
- power?: string | number | import("long").Long | undefined;
553
- }[] | undefined;
554
- appHash?: Uint8Array | undefined;
555
- } | undefined;
556
- query?: {
557
- code?: number | undefined;
558
- log?: string | undefined;
559
- info?: string | undefined;
560
- index?: string | number | import("long").Long | undefined;
561
- key?: Uint8Array | undefined;
562
- value?: Uint8Array | undefined;
563
- proofOps?: {
564
- ops?: {
565
- type?: string | undefined;
566
- key?: Uint8Array | undefined;
567
- data?: Uint8Array | undefined;
568
- }[] | undefined;
569
- } | undefined;
570
- height?: string | number | import("long").Long | undefined;
571
- codespace?: string | undefined;
572
- } | undefined;
573
- checkTx?: {
574
- code?: number | undefined;
575
- data?: Uint8Array | undefined;
576
- log?: string | undefined;
577
- info?: string | undefined;
578
- gasWanted?: string | number | import("long").Long | undefined;
579
- gasUsed?: string | number | import("long").Long | undefined;
580
- events?: {
581
- type?: string | undefined;
582
- attributes?: {
583
- key?: string | undefined;
584
- value?: string | undefined;
585
- index?: boolean | undefined;
586
- }[] | undefined;
587
- }[] | undefined;
588
- codespace?: string | undefined;
589
- } | undefined;
590
- commit?: {
591
- retainHeight?: string | number | import("long").Long | undefined;
592
- } | undefined;
593
- listSnapshots?: {
594
- snapshots?: {
595
- height?: string | number | import("long").Long | undefined;
596
- format?: number | undefined;
597
- chunks?: number | undefined;
598
- hash?: Uint8Array | undefined;
599
- metadata?: Uint8Array | undefined;
600
- }[] | undefined;
601
- } | undefined;
602
- offerSnapshot?: {
603
- result?: _233.ResponseOfferSnapshot_Result | undefined;
604
- } | undefined;
605
- loadSnapshotChunk?: {
606
- chunk?: Uint8Array | undefined;
607
- } | undefined;
608
- applySnapshotChunk?: {
609
- result?: _233.ResponseApplySnapshotChunk_Result | undefined;
610
- refetchChunks?: number[] | undefined;
611
- rejectSenders?: string[] | undefined;
612
- } | undefined;
613
- prepareProposal?: {
614
- txs?: Uint8Array[] | undefined;
615
- } | undefined;
616
- processProposal?: {
617
- status?: _233.ResponseProcessProposal_ProposalStatus | undefined;
618
- } | undefined;
619
- extendVote?: {
620
- voteExtension?: Uint8Array | undefined;
621
- } | undefined;
622
- verifyVoteExtension?: {
623
- status?: _233.ResponseVerifyVoteExtension_VerifyStatus | undefined;
624
- } | undefined;
625
- finalizeBlock?: {
626
- events?: {
627
- type?: string | undefined;
628
- attributes?: {
629
- key?: string | undefined;
630
- value?: string | undefined;
631
- index?: boolean | undefined;
632
- }[] | undefined;
633
- }[] | undefined;
634
- txResults?: {
635
- code?: number | undefined;
636
- data?: Uint8Array | undefined;
637
- log?: string | undefined;
638
- info?: string | undefined;
639
- gasWanted?: string | number | import("long").Long | undefined;
640
- gasUsed?: string | number | import("long").Long | undefined;
641
- events?: {
642
- type?: string | undefined;
643
- attributes?: {
644
- key?: string | undefined;
645
- value?: string | undefined;
646
- index?: boolean | undefined;
647
- }[] | undefined;
648
- }[] | undefined;
649
- codespace?: string | undefined;
650
- }[] | undefined;
651
- validatorUpdates?: {
652
- pubKey?: {
653
- ed25519?: Uint8Array | undefined;
654
- secp256k1?: Uint8Array | undefined;
655
- } | undefined;
656
- power?: string | number | import("long").Long | undefined;
657
- }[] | undefined;
658
- consensusParamUpdates?: {
659
- block?: {
660
- maxBytes?: string | number | import("long").Long | undefined;
661
- maxGas?: string | number | import("long").Long | undefined;
662
- } | undefined;
663
- evidence?: {
664
- maxAgeNumBlocks?: string | number | import("long").Long | undefined;
665
- maxAgeDuration?: {
666
- seconds?: string | number | import("long").Long | undefined;
667
- nanos?: number | undefined;
668
- } | undefined;
669
- maxBytes?: string | number | import("long").Long | undefined;
670
- } | undefined;
671
- validator?: {
672
- pubKeyTypes?: string[] | undefined;
673
- } | undefined;
674
- version?: {
675
- app?: string | number | import("long").Long | undefined;
676
- } | undefined;
677
- abci?: {
678
- voteExtensionsEnableHeight?: string | number | import("long").Long | undefined;
679
- } | undefined;
680
- } | undefined;
681
- appHash?: Uint8Array | undefined;
682
- } | undefined;
683
- }): _233.Response;
684
- };
685
- ResponseException: {
686
- encode(message: _233.ResponseException, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
687
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponseException;
688
- fromPartial(object: {
689
- error?: string | undefined;
690
- }): _233.ResponseException;
691
- };
692
- ResponseEcho: {
693
- encode(message: _233.ResponseEcho, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
694
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponseEcho;
695
- fromPartial(object: {
696
- message?: string | undefined;
697
- }): _233.ResponseEcho;
698
- };
699
- ResponseFlush: {
700
- encode(_: _233.ResponseFlush, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
701
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponseFlush;
702
- fromPartial(_: {}): _233.ResponseFlush;
703
- };
704
- ResponseInfo: {
705
- encode(message: _233.ResponseInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
706
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponseInfo;
707
- fromPartial(object: {
708
- data?: string | undefined;
709
- version?: string | undefined;
710
- appVersion?: string | number | import("long").Long | undefined;
711
- lastBlockHeight?: string | number | import("long").Long | undefined;
712
- lastBlockAppHash?: Uint8Array | undefined;
713
- }): _233.ResponseInfo;
714
- };
715
- ResponseInitChain: {
716
- encode(message: _233.ResponseInitChain, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
717
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponseInitChain;
718
- fromPartial(object: {
719
- consensusParams?: {
720
- block?: {
721
- maxBytes?: string | number | import("long").Long | undefined;
722
- maxGas?: string | number | import("long").Long | undefined;
723
- } | undefined;
724
- evidence?: {
725
- maxAgeNumBlocks?: string | number | import("long").Long | undefined;
726
- maxAgeDuration?: {
727
- seconds?: string | number | import("long").Long | undefined;
728
- nanos?: number | undefined;
729
- } | undefined;
730
- maxBytes?: string | number | import("long").Long | undefined;
731
- } | undefined;
732
- validator?: {
733
- pubKeyTypes?: string[] | undefined;
734
- } | undefined;
735
- version?: {
736
- app?: string | number | import("long").Long | undefined;
737
- } | undefined;
738
- abci?: {
739
- voteExtensionsEnableHeight?: string | number | import("long").Long | undefined;
740
- } | undefined;
741
- } | undefined;
742
- validators?: {
743
- pubKey?: {
744
- ed25519?: Uint8Array | undefined;
745
- secp256k1?: Uint8Array | undefined;
746
- } | undefined;
747
- power?: string | number | import("long").Long | undefined;
748
- }[] | undefined;
749
- appHash?: Uint8Array | undefined;
750
- }): _233.ResponseInitChain;
751
- };
752
- ResponseQuery: {
753
- encode(message: _233.ResponseQuery, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
754
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponseQuery;
755
- fromPartial(object: {
756
- code?: number | undefined;
757
- log?: string | undefined;
758
- info?: string | undefined;
759
- index?: string | number | import("long").Long | undefined;
760
- key?: Uint8Array | undefined;
761
- value?: Uint8Array | undefined;
762
- proofOps?: {
763
- ops?: {
764
- type?: string | undefined;
765
- key?: Uint8Array | undefined;
766
- data?: Uint8Array | undefined;
767
- }[] | undefined;
768
- } | undefined;
769
- height?: string | number | import("long").Long | undefined;
770
- codespace?: string | undefined;
771
- }): _233.ResponseQuery;
772
- };
773
- ResponseCheckTx: {
774
- encode(message: _233.ResponseCheckTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
775
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponseCheckTx;
776
- fromPartial(object: {
777
- code?: number | undefined;
778
- data?: Uint8Array | undefined;
779
- log?: string | undefined;
780
- info?: string | undefined;
781
- gasWanted?: string | number | import("long").Long | undefined;
782
- gasUsed?: string | number | import("long").Long | undefined;
783
- events?: {
784
- type?: string | undefined;
785
- attributes?: {
786
- key?: string | undefined;
787
- value?: string | undefined;
788
- index?: boolean | undefined;
789
- }[] | undefined;
790
- }[] | undefined;
791
- codespace?: string | undefined;
792
- }): _233.ResponseCheckTx;
793
- };
794
- ResponseCommit: {
795
- encode(message: _233.ResponseCommit, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
796
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponseCommit;
797
- fromPartial(object: {
798
- retainHeight?: string | number | import("long").Long | undefined;
799
- }): _233.ResponseCommit;
800
- };
801
- ResponseListSnapshots: {
802
- encode(message: _233.ResponseListSnapshots, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
803
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponseListSnapshots;
804
- fromPartial(object: {
805
- snapshots?: {
806
- height?: string | number | import("long").Long | undefined;
807
- format?: number | undefined;
808
- chunks?: number | undefined;
809
- hash?: Uint8Array | undefined;
810
- metadata?: Uint8Array | undefined;
811
- }[] | undefined;
812
- }): _233.ResponseListSnapshots;
813
- };
814
- ResponseOfferSnapshot: {
815
- encode(message: _233.ResponseOfferSnapshot, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
816
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponseOfferSnapshot;
817
- fromPartial(object: {
818
- result?: _233.ResponseOfferSnapshot_Result | undefined;
819
- }): _233.ResponseOfferSnapshot;
820
- };
821
- ResponseLoadSnapshotChunk: {
822
- encode(message: _233.ResponseLoadSnapshotChunk, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
823
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponseLoadSnapshotChunk;
824
- fromPartial(object: {
825
- chunk?: Uint8Array | undefined;
826
- }): _233.ResponseLoadSnapshotChunk;
827
- };
828
- ResponseApplySnapshotChunk: {
829
- encode(message: _233.ResponseApplySnapshotChunk, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
830
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponseApplySnapshotChunk;
831
- fromPartial(object: {
832
- result?: _233.ResponseApplySnapshotChunk_Result | undefined;
833
- refetchChunks?: number[] | undefined;
834
- rejectSenders?: string[] | undefined;
835
- }): _233.ResponseApplySnapshotChunk;
836
- };
837
- ResponsePrepareProposal: {
838
- encode(message: _233.ResponsePrepareProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
839
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponsePrepareProposal;
840
- fromPartial(object: {
841
- txs?: Uint8Array[] | undefined;
842
- }): _233.ResponsePrepareProposal;
843
- };
844
- ResponseProcessProposal: {
845
- encode(message: _233.ResponseProcessProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
846
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponseProcessProposal;
847
- fromPartial(object: {
848
- status?: _233.ResponseProcessProposal_ProposalStatus | undefined;
849
- }): _233.ResponseProcessProposal;
850
- };
851
- ResponseExtendVote: {
852
- encode(message: _233.ResponseExtendVote, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
853
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponseExtendVote;
854
- fromPartial(object: {
855
- voteExtension?: Uint8Array | undefined;
856
- }): _233.ResponseExtendVote;
857
- };
858
- ResponseVerifyVoteExtension: {
859
- encode(message: _233.ResponseVerifyVoteExtension, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
860
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponseVerifyVoteExtension;
861
- fromPartial(object: {
862
- status?: _233.ResponseVerifyVoteExtension_VerifyStatus | undefined;
863
- }): _233.ResponseVerifyVoteExtension;
864
- };
865
- ResponseFinalizeBlock: {
866
- encode(message: _233.ResponseFinalizeBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
867
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ResponseFinalizeBlock;
868
- fromPartial(object: {
869
- events?: {
870
- type?: string | undefined;
871
- attributes?: {
872
- key?: string | undefined;
873
- value?: string | undefined;
874
- index?: boolean | undefined;
875
- }[] | undefined;
876
- }[] | undefined;
877
- txResults?: {
878
- code?: number | undefined;
879
- data?: Uint8Array | undefined;
880
- log?: string | undefined;
881
- info?: string | undefined;
882
- gasWanted?: string | number | import("long").Long | undefined;
883
- gasUsed?: string | number | import("long").Long | undefined;
884
- events?: {
885
- type?: string | undefined;
886
- attributes?: {
887
- key?: string | undefined;
888
- value?: string | undefined;
889
- index?: boolean | undefined;
890
- }[] | undefined;
891
- }[] | undefined;
892
- codespace?: string | undefined;
893
- }[] | undefined;
894
- validatorUpdates?: {
895
- pubKey?: {
896
- ed25519?: Uint8Array | undefined;
897
- secp256k1?: Uint8Array | undefined;
898
- } | undefined;
899
- power?: string | number | import("long").Long | undefined;
900
- }[] | undefined;
901
- consensusParamUpdates?: {
902
- block?: {
903
- maxBytes?: string | number | import("long").Long | undefined;
904
- maxGas?: string | number | import("long").Long | undefined;
905
- } | undefined;
906
- evidence?: {
907
- maxAgeNumBlocks?: string | number | import("long").Long | undefined;
908
- maxAgeDuration?: {
909
- seconds?: string | number | import("long").Long | undefined;
910
- nanos?: number | undefined;
911
- } | undefined;
912
- maxBytes?: string | number | import("long").Long | undefined;
913
- } | undefined;
914
- validator?: {
915
- pubKeyTypes?: string[] | undefined;
916
- } | undefined;
917
- version?: {
918
- app?: string | number | import("long").Long | undefined;
919
- } | undefined;
920
- abci?: {
921
- voteExtensionsEnableHeight?: string | number | import("long").Long | undefined;
922
- } | undefined;
923
- } | undefined;
924
- appHash?: Uint8Array | undefined;
925
- }): _233.ResponseFinalizeBlock;
926
- };
927
- CommitInfo: {
928
- encode(message: _233.CommitInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
929
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.CommitInfo;
930
- fromPartial(object: {
931
- round?: number | undefined;
932
- votes?: {
933
- validator?: {
934
- address?: Uint8Array | undefined;
935
- power?: string | number | import("long").Long | undefined;
936
- } | undefined;
937
- blockIdFlag?: _242.BlockIDFlag | undefined;
938
- }[] | undefined;
939
- }): _233.CommitInfo;
940
- };
941
- ExtendedCommitInfo: {
942
- encode(message: _233.ExtendedCommitInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
943
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ExtendedCommitInfo;
944
- fromPartial(object: {
945
- round?: number | undefined;
946
- votes?: {
947
- validator?: {
948
- address?: Uint8Array | undefined;
949
- power?: string | number | import("long").Long | undefined;
950
- } | undefined;
951
- voteExtension?: Uint8Array | undefined;
952
- extensionSignature?: Uint8Array | undefined;
953
- blockIdFlag?: _242.BlockIDFlag | undefined;
954
- }[] | undefined;
955
- }): _233.ExtendedCommitInfo;
956
- };
957
- Event: {
958
- encode(message: _233.Event, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
959
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.Event;
960
- fromPartial(object: {
961
- type?: string | undefined;
962
- attributes?: {
963
- key?: string | undefined;
964
- value?: string | undefined;
965
- index?: boolean | undefined;
966
- }[] | undefined;
967
- }): _233.Event;
968
- };
969
- EventAttribute: {
970
- encode(message: _233.EventAttribute, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
971
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.EventAttribute;
972
- fromPartial(object: {
973
- key?: string | undefined;
974
- value?: string | undefined;
975
- index?: boolean | undefined;
976
- }): _233.EventAttribute;
977
- };
978
- ExecTxResult: {
979
- encode(message: _233.ExecTxResult, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
980
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ExecTxResult;
981
- fromPartial(object: {
982
- code?: number | undefined;
983
- data?: Uint8Array | undefined;
984
- log?: string | undefined;
985
- info?: string | undefined;
986
- gasWanted?: string | number | import("long").Long | undefined;
987
- gasUsed?: string | number | import("long").Long | undefined;
988
- events?: {
989
- type?: string | undefined;
990
- attributes?: {
991
- key?: string | undefined;
992
- value?: string | undefined;
993
- index?: boolean | undefined;
994
- }[] | undefined;
995
- }[] | undefined;
996
- codespace?: string | undefined;
997
- }): _233.ExecTxResult;
998
- };
999
- TxResult: {
1000
- encode(message: _233.TxResult, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1001
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.TxResult;
1002
- fromPartial(object: {
1003
- height?: string | number | import("long").Long | undefined;
1004
- index?: number | undefined;
1005
- tx?: Uint8Array | undefined;
1006
- result?: {
1007
- code?: number | undefined;
1008
- data?: Uint8Array | undefined;
1009
- log?: string | undefined;
1010
- info?: string | undefined;
1011
- gasWanted?: string | number | import("long").Long | undefined;
1012
- gasUsed?: string | number | import("long").Long | undefined;
1013
- events?: {
1014
- type?: string | undefined;
1015
- attributes?: {
1016
- key?: string | undefined;
1017
- value?: string | undefined;
1018
- index?: boolean | undefined;
1019
- }[] | undefined;
1020
- }[] | undefined;
1021
- codespace?: string | undefined;
1022
- } | undefined;
1023
- }): _233.TxResult;
1024
- };
1025
- Validator: {
1026
- encode(message: _233.Validator, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1027
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.Validator;
1028
- fromPartial(object: {
1029
- address?: Uint8Array | undefined;
1030
- power?: string | number | import("long").Long | undefined;
1031
- }): _233.Validator;
1032
- };
1033
- ValidatorUpdate: {
1034
- encode(message: _233.ValidatorUpdate, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1035
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ValidatorUpdate;
1036
- fromPartial(object: {
1037
- pubKey?: {
1038
- ed25519?: Uint8Array | undefined;
1039
- secp256k1?: Uint8Array | undefined;
1040
- } | undefined;
1041
- power?: string | number | import("long").Long | undefined;
1042
- }): _233.ValidatorUpdate;
1043
- };
1044
- VoteInfo: {
1045
- encode(message: _233.VoteInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1046
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.VoteInfo;
1047
- fromPartial(object: {
1048
- validator?: {
1049
- address?: Uint8Array | undefined;
1050
- power?: string | number | import("long").Long | undefined;
1051
- } | undefined;
1052
- blockIdFlag?: _242.BlockIDFlag | undefined;
1053
- }): _233.VoteInfo;
1054
- };
1055
- ExtendedVoteInfo: {
1056
- encode(message: _233.ExtendedVoteInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1057
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.ExtendedVoteInfo;
1058
- fromPartial(object: {
1059
- validator?: {
1060
- address?: Uint8Array | undefined;
1061
- power?: string | number | import("long").Long | undefined;
1062
- } | undefined;
1063
- voteExtension?: Uint8Array | undefined;
1064
- extensionSignature?: Uint8Array | undefined;
1065
- blockIdFlag?: _242.BlockIDFlag | undefined;
1066
- }): _233.ExtendedVoteInfo;
1067
- };
1068
- Misbehavior: {
1069
- encode(message: _233.Misbehavior, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1070
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.Misbehavior;
1071
- fromPartial(object: {
1072
- type?: _233.MisbehaviorType | undefined;
1073
- validator?: {
1074
- address?: Uint8Array | undefined;
1075
- power?: string | number | import("long").Long | undefined;
1076
- } | undefined;
1077
- height?: string | number | import("long").Long | undefined;
1078
- time?: Date | undefined;
1079
- totalVotingPower?: string | number | import("long").Long | undefined;
1080
- }): _233.Misbehavior;
1081
- };
1082
- Snapshot: {
1083
- encode(message: _233.Snapshot, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1084
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _233.Snapshot;
1085
- fromPartial(object: {
1086
- height?: string | number | import("long").Long | undefined;
1087
- format?: number | undefined;
1088
- chunks?: number | undefined;
1089
- hash?: Uint8Array | undefined;
1090
- metadata?: Uint8Array | undefined;
1091
- }): _233.Snapshot;
1092
- };
1093
- };
1094
- const crypto: {
1095
- Proof: {
1096
- encode(message: _235.Proof, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1097
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _235.Proof;
1098
- fromPartial(object: {
1099
- total?: string | number | import("long").Long | undefined;
1100
- index?: string | number | import("long").Long | undefined;
1101
- leafHash?: Uint8Array | undefined;
1102
- aunts?: Uint8Array[] | undefined;
1103
- }): _235.Proof;
1104
- };
1105
- ValueOp: {
1106
- encode(message: _235.ValueOp, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1107
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _235.ValueOp;
1108
- fromPartial(object: {
1109
- key?: Uint8Array | undefined;
1110
- proof?: {
1111
- total?: string | number | import("long").Long | undefined;
1112
- index?: string | number | import("long").Long | undefined;
1113
- leafHash?: Uint8Array | undefined;
1114
- aunts?: Uint8Array[] | undefined;
1115
- } | undefined;
1116
- }): _235.ValueOp;
1117
- };
1118
- DominoOp: {
1119
- encode(message: _235.DominoOp, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1120
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _235.DominoOp;
1121
- fromPartial(object: {
1122
- key?: string | undefined;
1123
- input?: string | undefined;
1124
- output?: string | undefined;
1125
- }): _235.DominoOp;
1126
- };
1127
- ProofOp: {
1128
- encode(message: _235.ProofOp, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1129
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _235.ProofOp;
1130
- fromPartial(object: {
1131
- type?: string | undefined;
1132
- key?: Uint8Array | undefined;
1133
- data?: Uint8Array | undefined;
1134
- }): _235.ProofOp;
1135
- };
1136
- ProofOps: {
1137
- encode(message: _235.ProofOps, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1138
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _235.ProofOps;
1139
- fromPartial(object: {
1140
- ops?: {
1141
- type?: string | undefined;
1142
- key?: Uint8Array | undefined;
1143
- data?: Uint8Array | undefined;
1144
- }[] | undefined;
1145
- }): _235.ProofOps;
1146
- };
1147
- PublicKey: {
1148
- encode(message: _234.PublicKey, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1149
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _234.PublicKey;
1150
- fromPartial(object: {
1151
- ed25519?: Uint8Array | undefined;
1152
- secp256k1?: Uint8Array | undefined;
1153
- }): _234.PublicKey;
1154
- };
1155
- };
1156
- namespace libs {
1157
- const bits: {
1158
- BitArray: {
1159
- encode(message: _236.BitArray, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1160
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _236.BitArray;
1161
- fromPartial(object: {
1162
- bits?: string | number | import("long").Long | undefined;
1163
- elems?: (string | number | import("long").Long)[] | undefined;
1164
- }): _236.BitArray;
1165
- };
1166
- };
1167
- }
1168
- const p2p: {
1169
- NetAddress: {
1170
- encode(message: _237.NetAddress, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1171
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _237.NetAddress;
1172
- fromPartial(object: {
1173
- id?: string | undefined;
1174
- ip?: string | undefined;
1175
- port?: number | undefined;
1176
- }): _237.NetAddress;
1177
- };
1178
- ProtocolVersion: {
1179
- encode(message: _237.ProtocolVersion, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1180
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _237.ProtocolVersion;
1181
- fromPartial(object: {
1182
- p2p?: string | number | import("long").Long | undefined;
1183
- block?: string | number | import("long").Long | undefined;
1184
- app?: string | number | import("long").Long | undefined;
1185
- }): _237.ProtocolVersion;
1186
- };
1187
- DefaultNodeInfo: {
1188
- encode(message: _237.DefaultNodeInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1189
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _237.DefaultNodeInfo;
1190
- fromPartial(object: {
1191
- protocolVersion?: {
1192
- p2p?: string | number | import("long").Long | undefined;
1193
- block?: string | number | import("long").Long | undefined;
1194
- app?: string | number | import("long").Long | undefined;
1195
- } | undefined;
1196
- defaultNodeId?: string | undefined;
1197
- listenAddr?: string | undefined;
1198
- network?: string | undefined;
1199
- version?: string | undefined;
1200
- channels?: Uint8Array | undefined;
1201
- moniker?: string | undefined;
1202
- other?: {
1203
- txIndex?: string | undefined;
1204
- rpcAddress?: string | undefined;
1205
- } | undefined;
1206
- }): _237.DefaultNodeInfo;
1207
- };
1208
- DefaultNodeInfoOther: {
1209
- encode(message: _237.DefaultNodeInfoOther, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1210
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _237.DefaultNodeInfoOther;
1211
- fromPartial(object: {
1212
- txIndex?: string | undefined;
1213
- rpcAddress?: string | undefined;
1214
- }): _237.DefaultNodeInfoOther;
1215
- };
1216
- };
1217
- const types: {
1218
- blockIDFlagFromJSON(object: any): _242.BlockIDFlag;
1219
- blockIDFlagToJSON(object: _242.BlockIDFlag): string;
1220
- BlockIDFlag: typeof _242.BlockIDFlag;
1221
- BlockIDFlagSDKType: typeof _242.BlockIDFlag;
1222
- ValidatorSet: {
1223
- encode(message: _242.ValidatorSet, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1224
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _242.ValidatorSet;
1225
- fromPartial(object: {
1226
- validators?: {
1227
- address?: Uint8Array | undefined;
1228
- pubKey?: {
1229
- ed25519?: Uint8Array | undefined;
1230
- secp256k1?: Uint8Array | undefined;
1231
- } | undefined;
1232
- votingPower?: string | number | import("long").Long | undefined;
1233
- proposerPriority?: string | number | import("long").Long | undefined;
1234
- }[] | undefined;
1235
- proposer?: {
1236
- address?: Uint8Array | undefined;
1237
- pubKey?: {
1238
- ed25519?: Uint8Array | undefined;
1239
- secp256k1?: Uint8Array | undefined;
1240
- } | undefined;
1241
- votingPower?: string | number | import("long").Long | undefined;
1242
- proposerPriority?: string | number | import("long").Long | undefined;
1243
- } | undefined;
1244
- totalVotingPower?: string | number | import("long").Long | undefined;
1245
- }): _242.ValidatorSet;
1246
- };
1247
- Validator: {
1248
- encode(message: _242.Validator, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1249
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _242.Validator;
1250
- fromPartial(object: {
1251
- address?: Uint8Array | undefined;
1252
- pubKey?: {
1253
- ed25519?: Uint8Array | undefined;
1254
- secp256k1?: Uint8Array | undefined;
1255
- } | undefined;
1256
- votingPower?: string | number | import("long").Long | undefined;
1257
- proposerPriority?: string | number | import("long").Long | undefined;
1258
- }): _242.Validator;
1259
- };
1260
- SimpleValidator: {
1261
- encode(message: _242.SimpleValidator, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1262
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _242.SimpleValidator;
1263
- fromPartial(object: {
1264
- pubKey?: {
1265
- ed25519?: Uint8Array | undefined;
1266
- secp256k1?: Uint8Array | undefined;
1267
- } | undefined;
1268
- votingPower?: string | number | import("long").Long | undefined;
1269
- }): _242.SimpleValidator;
1270
- };
1271
- signedMsgTypeFromJSON(object: any): _241.SignedMsgType;
1272
- signedMsgTypeToJSON(object: _241.SignedMsgType): string;
1273
- SignedMsgType: typeof _241.SignedMsgType;
1274
- SignedMsgTypeSDKType: typeof _241.SignedMsgType;
1275
- PartSetHeader: {
1276
- encode(message: _241.PartSetHeader, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1277
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _241.PartSetHeader;
1278
- fromPartial(object: {
1279
- total?: number | undefined;
1280
- hash?: Uint8Array | undefined;
1281
- }): _241.PartSetHeader;
1282
- };
1283
- Part: {
1284
- encode(message: _241.Part, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1285
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _241.Part;
1286
- fromPartial(object: {
1287
- index?: number | undefined;
1288
- bytes?: Uint8Array | undefined;
1289
- proof?: {
1290
- total?: string | number | import("long").Long | undefined;
1291
- index?: string | number | import("long").Long | undefined;
1292
- leafHash?: Uint8Array | undefined;
1293
- aunts?: Uint8Array[] | undefined;
1294
- } | undefined;
1295
- }): _241.Part;
1296
- };
1297
- BlockID: {
1298
- encode(message: _241.BlockID, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1299
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _241.BlockID;
1300
- fromPartial(object: {
1301
- hash?: Uint8Array | undefined;
1302
- partSetHeader?: {
1303
- total?: number | undefined;
1304
- hash?: Uint8Array | undefined;
1305
- } | undefined;
1306
- }): _241.BlockID;
1307
- };
1308
- Header: {
1309
- encode(message: _241.Header, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1310
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _241.Header;
1311
- fromPartial(object: {
1312
- version?: {
1313
- block?: string | number | import("long").Long | undefined;
1314
- app?: string | number | import("long").Long | undefined;
1315
- } | undefined;
1316
- chainId?: string | undefined;
1317
- height?: string | number | import("long").Long | undefined;
1318
- time?: Date | undefined;
1319
- lastBlockId?: {
1320
- hash?: Uint8Array | undefined;
1321
- partSetHeader?: {
1322
- total?: number | undefined;
1323
- hash?: Uint8Array | undefined;
1324
- } | undefined;
1325
- } | undefined;
1326
- lastCommitHash?: Uint8Array | undefined;
1327
- dataHash?: Uint8Array | undefined;
1328
- validatorsHash?: Uint8Array | undefined;
1329
- nextValidatorsHash?: Uint8Array | undefined;
1330
- consensusHash?: Uint8Array | undefined;
1331
- appHash?: Uint8Array | undefined;
1332
- lastResultsHash?: Uint8Array | undefined;
1333
- evidenceHash?: Uint8Array | undefined;
1334
- proposerAddress?: Uint8Array | undefined;
1335
- }): _241.Header;
1336
- };
1337
- Data: {
1338
- encode(message: _241.Data, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1339
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _241.Data;
1340
- fromPartial(object: {
1341
- txs?: Uint8Array[] | undefined;
1342
- }): _241.Data;
1343
- };
1344
- Vote: {
1345
- encode(message: _241.Vote, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1346
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _241.Vote;
1347
- fromPartial(object: {
1348
- type?: _241.SignedMsgType | undefined;
1349
- height?: string | number | import("long").Long | undefined;
1350
- round?: number | undefined;
1351
- blockId?: {
1352
- hash?: Uint8Array | undefined;
1353
- partSetHeader?: {
1354
- total?: number | undefined;
1355
- hash?: Uint8Array | undefined;
1356
- } | undefined;
1357
- } | undefined;
1358
- timestamp?: Date | undefined;
1359
- validatorAddress?: Uint8Array | undefined;
1360
- validatorIndex?: number | undefined;
1361
- signature?: Uint8Array | undefined;
1362
- extension?: Uint8Array | undefined;
1363
- extensionSignature?: Uint8Array | undefined;
1364
- }): _241.Vote;
1365
- };
1366
- Commit: {
1367
- encode(message: _241.Commit, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1368
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _241.Commit;
1369
- fromPartial(object: {
1370
- height?: string | number | import("long").Long | undefined;
1371
- round?: number | undefined;
1372
- blockId?: {
1373
- hash?: Uint8Array | undefined;
1374
- partSetHeader?: {
1375
- total?: number | undefined;
1376
- hash?: Uint8Array | undefined;
1377
- } | undefined;
1378
- } | undefined;
1379
- signatures?: {
1380
- blockIdFlag?: _242.BlockIDFlag | undefined;
1381
- validatorAddress?: Uint8Array | undefined;
1382
- timestamp?: Date | undefined;
1383
- signature?: Uint8Array | undefined;
1384
- }[] | undefined;
1385
- }): _241.Commit;
1386
- };
1387
- CommitSig: {
1388
- encode(message: _241.CommitSig, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1389
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _241.CommitSig;
1390
- fromPartial(object: {
1391
- blockIdFlag?: _242.BlockIDFlag | undefined;
1392
- validatorAddress?: Uint8Array | undefined;
1393
- timestamp?: Date | undefined;
1394
- signature?: Uint8Array | undefined;
1395
- }): _241.CommitSig;
1396
- };
1397
- ExtendedCommit: {
1398
- encode(message: _241.ExtendedCommit, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1399
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _241.ExtendedCommit;
1400
- fromPartial(object: {
1401
- height?: string | number | import("long").Long | undefined;
1402
- round?: number | undefined;
1403
- blockId?: {
1404
- hash?: Uint8Array | undefined;
1405
- partSetHeader?: {
1406
- total?: number | undefined;
1407
- hash?: Uint8Array | undefined;
1408
- } | undefined;
1409
- } | undefined;
1410
- extendedSignatures?: {
1411
- blockIdFlag?: _242.BlockIDFlag | undefined;
1412
- validatorAddress?: Uint8Array | undefined;
1413
- timestamp?: Date | undefined;
1414
- signature?: Uint8Array | undefined;
1415
- extension?: Uint8Array | undefined;
1416
- extensionSignature?: Uint8Array | undefined;
1417
- }[] | undefined;
1418
- }): _241.ExtendedCommit;
1419
- };
1420
- ExtendedCommitSig: {
1421
- encode(message: _241.ExtendedCommitSig, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1422
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _241.ExtendedCommitSig;
1423
- fromPartial(object: {
1424
- blockIdFlag?: _242.BlockIDFlag | undefined;
1425
- validatorAddress?: Uint8Array | undefined;
1426
- timestamp?: Date | undefined;
1427
- signature?: Uint8Array | undefined;
1428
- extension?: Uint8Array | undefined;
1429
- extensionSignature?: Uint8Array | undefined;
1430
- }): _241.ExtendedCommitSig;
1431
- };
1432
- Proposal: {
1433
- encode(message: _241.Proposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1434
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _241.Proposal;
1435
- fromPartial(object: {
1436
- type?: _241.SignedMsgType | undefined;
1437
- height?: string | number | import("long").Long | undefined;
1438
- round?: number | undefined;
1439
- polRound?: number | undefined;
1440
- blockId?: {
1441
- hash?: Uint8Array | undefined;
1442
- partSetHeader?: {
1443
- total?: number | undefined;
1444
- hash?: Uint8Array | undefined;
1445
- } | undefined;
1446
- } | undefined;
1447
- timestamp?: Date | undefined;
1448
- signature?: Uint8Array | undefined;
1449
- }): _241.Proposal;
1450
- };
1451
- SignedHeader: {
1452
- encode(message: _241.SignedHeader, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1453
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _241.SignedHeader;
1454
- fromPartial(object: {
1455
- header?: {
1456
- version?: {
1457
- block?: string | number | import("long").Long | undefined;
1458
- app?: string | number | import("long").Long | undefined;
1459
- } | undefined;
1460
- chainId?: string | undefined;
1461
- height?: string | number | import("long").Long | undefined;
1462
- time?: Date | undefined;
1463
- lastBlockId?: {
1464
- hash?: Uint8Array | undefined;
1465
- partSetHeader?: {
1466
- total?: number | undefined;
1467
- hash?: Uint8Array | undefined;
1468
- } | undefined;
1469
- } | undefined;
1470
- lastCommitHash?: Uint8Array | undefined;
1471
- dataHash?: Uint8Array | undefined;
1472
- validatorsHash?: Uint8Array | undefined;
1473
- nextValidatorsHash?: Uint8Array | undefined;
1474
- consensusHash?: Uint8Array | undefined;
1475
- appHash?: Uint8Array | undefined;
1476
- lastResultsHash?: Uint8Array | undefined;
1477
- evidenceHash?: Uint8Array | undefined;
1478
- proposerAddress?: Uint8Array | undefined;
1479
- } | undefined;
1480
- commit?: {
1481
- height?: string | number | import("long").Long | undefined;
1482
- round?: number | undefined;
1483
- blockId?: {
1484
- hash?: Uint8Array | undefined;
1485
- partSetHeader?: {
1486
- total?: number | undefined;
1487
- hash?: Uint8Array | undefined;
1488
- } | undefined;
1489
- } | undefined;
1490
- signatures?: {
1491
- blockIdFlag?: _242.BlockIDFlag | undefined;
1492
- validatorAddress?: Uint8Array | undefined;
1493
- timestamp?: Date | undefined;
1494
- signature?: Uint8Array | undefined;
1495
- }[] | undefined;
1496
- } | undefined;
1497
- }): _241.SignedHeader;
1498
- };
1499
- LightBlock: {
1500
- encode(message: _241.LightBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1501
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _241.LightBlock;
1502
- fromPartial(object: {
1503
- signedHeader?: {
1504
- header?: {
1505
- version?: {
1506
- block?: string | number | import("long").Long | undefined;
1507
- app?: string | number | import("long").Long | undefined;
1508
- } | undefined;
1509
- chainId?: string | undefined;
1510
- height?: string | number | import("long").Long | undefined;
1511
- time?: Date | undefined;
1512
- lastBlockId?: {
1513
- hash?: Uint8Array | undefined;
1514
- partSetHeader?: {
1515
- total?: number | undefined;
1516
- hash?: Uint8Array | undefined;
1517
- } | undefined;
1518
- } | undefined;
1519
- lastCommitHash?: Uint8Array | undefined;
1520
- dataHash?: Uint8Array | undefined;
1521
- validatorsHash?: Uint8Array | undefined;
1522
- nextValidatorsHash?: Uint8Array | undefined;
1523
- consensusHash?: Uint8Array | undefined;
1524
- appHash?: Uint8Array | undefined;
1525
- lastResultsHash?: Uint8Array | undefined;
1526
- evidenceHash?: Uint8Array | undefined;
1527
- proposerAddress?: Uint8Array | undefined;
1528
- } | undefined;
1529
- commit?: {
1530
- height?: string | number | import("long").Long | undefined;
1531
- round?: number | undefined;
1532
- blockId?: {
1533
- hash?: Uint8Array | undefined;
1534
- partSetHeader?: {
1535
- total?: number | undefined;
1536
- hash?: Uint8Array | undefined;
1537
- } | undefined;
1538
- } | undefined;
1539
- signatures?: {
1540
- blockIdFlag?: _242.BlockIDFlag | undefined;
1541
- validatorAddress?: Uint8Array | undefined;
1542
- timestamp?: Date | undefined;
1543
- signature?: Uint8Array | undefined;
1544
- }[] | undefined;
1545
- } | undefined;
1546
- } | undefined;
1547
- validatorSet?: {
1548
- validators?: {
1549
- address?: Uint8Array | undefined;
1550
- pubKey?: {
1551
- ed25519?: Uint8Array | undefined;
1552
- secp256k1?: Uint8Array | undefined;
1553
- } | undefined;
1554
- votingPower?: string | number | import("long").Long | undefined;
1555
- proposerPriority?: string | number | import("long").Long | undefined;
1556
- }[] | undefined;
1557
- proposer?: {
1558
- address?: Uint8Array | undefined;
1559
- pubKey?: {
1560
- ed25519?: Uint8Array | undefined;
1561
- secp256k1?: Uint8Array | undefined;
1562
- } | undefined;
1563
- votingPower?: string | number | import("long").Long | undefined;
1564
- proposerPriority?: string | number | import("long").Long | undefined;
1565
- } | undefined;
1566
- totalVotingPower?: string | number | import("long").Long | undefined;
1567
- } | undefined;
1568
- }): _241.LightBlock;
1569
- };
1570
- BlockMeta: {
1571
- encode(message: _241.BlockMeta, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1572
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _241.BlockMeta;
1573
- fromPartial(object: {
1574
- blockId?: {
1575
- hash?: Uint8Array | undefined;
1576
- partSetHeader?: {
1577
- total?: number | undefined;
1578
- hash?: Uint8Array | undefined;
1579
- } | undefined;
1580
- } | undefined;
1581
- blockSize?: string | number | import("long").Long | undefined;
1582
- header?: {
1583
- version?: {
1584
- block?: string | number | import("long").Long | undefined;
1585
- app?: string | number | import("long").Long | undefined;
1586
- } | undefined;
1587
- chainId?: string | undefined;
1588
- height?: string | number | import("long").Long | undefined;
1589
- time?: Date | undefined;
1590
- lastBlockId?: {
1591
- hash?: Uint8Array | undefined;
1592
- partSetHeader?: {
1593
- total?: number | undefined;
1594
- hash?: Uint8Array | undefined;
1595
- } | undefined;
1596
- } | undefined;
1597
- lastCommitHash?: Uint8Array | undefined;
1598
- dataHash?: Uint8Array | undefined;
1599
- validatorsHash?: Uint8Array | undefined;
1600
- nextValidatorsHash?: Uint8Array | undefined;
1601
- consensusHash?: Uint8Array | undefined;
1602
- appHash?: Uint8Array | undefined;
1603
- lastResultsHash?: Uint8Array | undefined;
1604
- evidenceHash?: Uint8Array | undefined;
1605
- proposerAddress?: Uint8Array | undefined;
1606
- } | undefined;
1607
- numTxs?: string | number | import("long").Long | undefined;
1608
- }): _241.BlockMeta;
1609
- };
1610
- TxProof: {
1611
- encode(message: _241.TxProof, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1612
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _241.TxProof;
1613
- fromPartial(object: {
1614
- rootHash?: Uint8Array | undefined;
1615
- data?: Uint8Array | undefined;
1616
- proof?: {
1617
- total?: string | number | import("long").Long | undefined;
1618
- index?: string | number | import("long").Long | undefined;
1619
- leafHash?: Uint8Array | undefined;
1620
- aunts?: Uint8Array[] | undefined;
1621
- } | undefined;
1622
- }): _241.TxProof;
1623
- };
1624
- ConsensusParams: {
1625
- encode(message: _240.ConsensusParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1626
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _240.ConsensusParams;
1627
- fromPartial(object: {
1628
- block?: {
1629
- maxBytes?: string | number | import("long").Long | undefined;
1630
- maxGas?: string | number | import("long").Long | undefined;
1631
- } | undefined;
1632
- evidence?: {
1633
- maxAgeNumBlocks?: string | number | import("long").Long | undefined;
1634
- maxAgeDuration?: {
1635
- seconds?: string | number | import("long").Long | undefined;
1636
- nanos?: number | undefined;
1637
- } | undefined;
1638
- maxBytes?: string | number | import("long").Long | undefined;
1639
- } | undefined;
1640
- validator?: {
1641
- pubKeyTypes?: string[] | undefined;
1642
- } | undefined;
1643
- version?: {
1644
- app?: string | number | import("long").Long | undefined;
1645
- } | undefined;
1646
- abci?: {
1647
- voteExtensionsEnableHeight?: string | number | import("long").Long | undefined;
1648
- } | undefined;
1649
- }): _240.ConsensusParams;
1650
- };
1651
- BlockParams: {
1652
- encode(message: _240.BlockParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1653
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _240.BlockParams;
1654
- fromPartial(object: {
1655
- maxBytes?: string | number | import("long").Long | undefined;
1656
- maxGas?: string | number | import("long").Long | undefined;
1657
- }): _240.BlockParams;
1658
- };
1659
- EvidenceParams: {
1660
- encode(message: _240.EvidenceParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1661
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _240.EvidenceParams;
1662
- fromPartial(object: {
1663
- maxAgeNumBlocks?: string | number | import("long").Long | undefined;
1664
- maxAgeDuration?: {
1665
- seconds?: string | number | import("long").Long | undefined;
1666
- nanos?: number | undefined;
1667
- } | undefined;
1668
- maxBytes?: string | number | import("long").Long | undefined;
1669
- }): _240.EvidenceParams;
1670
- };
1671
- ValidatorParams: {
1672
- encode(message: _240.ValidatorParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1673
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _240.ValidatorParams;
1674
- fromPartial(object: {
1675
- pubKeyTypes?: string[] | undefined;
1676
- }): _240.ValidatorParams;
1677
- };
1678
- VersionParams: {
1679
- encode(message: _240.VersionParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1680
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _240.VersionParams;
1681
- fromPartial(object: {
1682
- app?: string | number | import("long").Long | undefined;
1683
- }): _240.VersionParams;
1684
- };
1685
- HashedParams: {
1686
- encode(message: _240.HashedParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1687
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _240.HashedParams;
1688
- fromPartial(object: {
1689
- blockMaxBytes?: string | number | import("long").Long | undefined;
1690
- blockMaxGas?: string | number | import("long").Long | undefined;
1691
- }): _240.HashedParams;
1692
- };
1693
- ABCIParams: {
1694
- encode(message: _240.ABCIParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1695
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _240.ABCIParams;
1696
- fromPartial(object: {
1697
- voteExtensionsEnableHeight?: string | number | import("long").Long | undefined;
1698
- }): _240.ABCIParams;
1699
- };
1700
- Evidence: {
1701
- encode(message: _239.Evidence, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1702
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _239.Evidence;
1703
- fromPartial(object: {
1704
- duplicateVoteEvidence?: {
1705
- voteA?: {
1706
- type?: _241.SignedMsgType | undefined;
1707
- height?: string | number | import("long").Long | undefined;
1708
- round?: number | undefined;
1709
- blockId?: {
1710
- hash?: Uint8Array | undefined;
1711
- partSetHeader?: {
1712
- total?: number | undefined;
1713
- hash?: Uint8Array | undefined;
1714
- } | undefined;
1715
- } | undefined;
1716
- timestamp?: Date | undefined;
1717
- validatorAddress?: Uint8Array | undefined;
1718
- validatorIndex?: number | undefined;
1719
- signature?: Uint8Array | undefined;
1720
- extension?: Uint8Array | undefined;
1721
- extensionSignature?: Uint8Array | undefined;
1722
- } | undefined;
1723
- voteB?: {
1724
- type?: _241.SignedMsgType | undefined;
1725
- height?: string | number | import("long").Long | undefined;
1726
- round?: number | undefined;
1727
- blockId?: {
1728
- hash?: Uint8Array | undefined;
1729
- partSetHeader?: {
1730
- total?: number | undefined;
1731
- hash?: Uint8Array | undefined;
1732
- } | undefined;
1733
- } | undefined;
1734
- timestamp?: Date | undefined;
1735
- validatorAddress?: Uint8Array | undefined;
1736
- validatorIndex?: number | undefined;
1737
- signature?: Uint8Array | undefined;
1738
- extension?: Uint8Array | undefined;
1739
- extensionSignature?: Uint8Array | undefined;
1740
- } | undefined;
1741
- totalVotingPower?: string | number | import("long").Long | undefined;
1742
- validatorPower?: string | number | import("long").Long | undefined;
1743
- timestamp?: Date | undefined;
1744
- } | undefined;
1745
- lightClientAttackEvidence?: {
1746
- conflictingBlock?: {
1747
- signedHeader?: {
1748
- header?: {
1749
- version?: {
1750
- block?: string | number | import("long").Long | undefined;
1751
- app?: string | number | import("long").Long | undefined;
1752
- } | undefined;
1753
- chainId?: string | undefined;
1754
- height?: string | number | import("long").Long | undefined;
1755
- time?: Date | undefined;
1756
- lastBlockId?: {
1757
- hash?: Uint8Array | undefined;
1758
- partSetHeader?: {
1759
- total?: number | undefined;
1760
- hash?: Uint8Array | undefined;
1761
- } | undefined;
1762
- } | undefined;
1763
- lastCommitHash?: Uint8Array | undefined;
1764
- dataHash?: Uint8Array | undefined;
1765
- validatorsHash?: Uint8Array | undefined;
1766
- nextValidatorsHash?: Uint8Array | undefined;
1767
- consensusHash?: Uint8Array | undefined;
1768
- appHash?: Uint8Array | undefined;
1769
- lastResultsHash?: Uint8Array | undefined;
1770
- evidenceHash?: Uint8Array | undefined;
1771
- proposerAddress?: Uint8Array | undefined;
1772
- } | undefined;
1773
- commit?: {
1774
- height?: string | number | import("long").Long | undefined;
1775
- round?: number | undefined;
1776
- blockId?: {
1777
- hash?: Uint8Array | undefined;
1778
- partSetHeader?: {
1779
- total?: number | undefined;
1780
- hash?: Uint8Array | undefined;
1781
- } | undefined;
1782
- } | undefined;
1783
- signatures?: {
1784
- blockIdFlag?: _242.BlockIDFlag | undefined;
1785
- validatorAddress?: Uint8Array | undefined;
1786
- timestamp?: Date | undefined;
1787
- signature?: Uint8Array | undefined;
1788
- }[] | undefined;
1789
- } | undefined;
1790
- } | undefined;
1791
- validatorSet?: {
1792
- validators?: {
1793
- address?: Uint8Array | undefined;
1794
- pubKey?: {
1795
- ed25519?: Uint8Array | undefined;
1796
- secp256k1?: Uint8Array | undefined;
1797
- } | undefined;
1798
- votingPower?: string | number | import("long").Long | undefined;
1799
- proposerPriority?: string | number | import("long").Long | undefined;
1800
- }[] | undefined;
1801
- proposer?: {
1802
- address?: Uint8Array | undefined;
1803
- pubKey?: {
1804
- ed25519?: Uint8Array | undefined;
1805
- secp256k1?: Uint8Array | undefined;
1806
- } | undefined;
1807
- votingPower?: string | number | import("long").Long | undefined;
1808
- proposerPriority?: string | number | import("long").Long | undefined;
1809
- } | undefined;
1810
- totalVotingPower?: string | number | import("long").Long | undefined;
1811
- } | undefined;
1812
- } | undefined;
1813
- commonHeight?: string | number | import("long").Long | undefined;
1814
- byzantineValidators?: {
1815
- address?: Uint8Array | undefined;
1816
- pubKey?: {
1817
- ed25519?: Uint8Array | undefined;
1818
- secp256k1?: Uint8Array | undefined;
1819
- } | undefined;
1820
- votingPower?: string | number | import("long").Long | undefined;
1821
- proposerPriority?: string | number | import("long").Long | undefined;
1822
- }[] | undefined;
1823
- totalVotingPower?: string | number | import("long").Long | undefined;
1824
- timestamp?: Date | undefined;
1825
- } | undefined;
1826
- }): _239.Evidence;
1827
- };
1828
- DuplicateVoteEvidence: {
1829
- encode(message: _239.DuplicateVoteEvidence, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1830
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _239.DuplicateVoteEvidence;
1831
- fromPartial(object: {
1832
- voteA?: {
1833
- type?: _241.SignedMsgType | undefined;
1834
- height?: string | number | import("long").Long | undefined;
1835
- round?: number | undefined;
1836
- blockId?: {
1837
- hash?: Uint8Array | undefined;
1838
- partSetHeader?: {
1839
- total?: number | undefined;
1840
- hash?: Uint8Array | undefined;
1841
- } | undefined;
1842
- } | undefined;
1843
- timestamp?: Date | undefined;
1844
- validatorAddress?: Uint8Array | undefined;
1845
- validatorIndex?: number | undefined;
1846
- signature?: Uint8Array | undefined;
1847
- extension?: Uint8Array | undefined;
1848
- extensionSignature?: Uint8Array | undefined;
1849
- } | undefined;
1850
- voteB?: {
1851
- type?: _241.SignedMsgType | undefined;
1852
- height?: string | number | import("long").Long | undefined;
1853
- round?: number | undefined;
1854
- blockId?: {
1855
- hash?: Uint8Array | undefined;
1856
- partSetHeader?: {
1857
- total?: number | undefined;
1858
- hash?: Uint8Array | undefined;
1859
- } | undefined;
1860
- } | undefined;
1861
- timestamp?: Date | undefined;
1862
- validatorAddress?: Uint8Array | undefined;
1863
- validatorIndex?: number | undefined;
1864
- signature?: Uint8Array | undefined;
1865
- extension?: Uint8Array | undefined;
1866
- extensionSignature?: Uint8Array | undefined;
1867
- } | undefined;
1868
- totalVotingPower?: string | number | import("long").Long | undefined;
1869
- validatorPower?: string | number | import("long").Long | undefined;
1870
- timestamp?: Date | undefined;
1871
- }): _239.DuplicateVoteEvidence;
1872
- };
1873
- LightClientAttackEvidence: {
1874
- encode(message: _239.LightClientAttackEvidence, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1875
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _239.LightClientAttackEvidence;
1876
- fromPartial(object: {
1877
- conflictingBlock?: {
1878
- signedHeader?: {
1879
- header?: {
1880
- version?: {
1881
- block?: string | number | import("long").Long | undefined;
1882
- app?: string | number | import("long").Long | undefined;
1883
- } | undefined;
1884
- chainId?: string | undefined;
1885
- height?: string | number | import("long").Long | undefined;
1886
- time?: Date | undefined;
1887
- lastBlockId?: {
1888
- hash?: Uint8Array | undefined;
1889
- partSetHeader?: {
1890
- total?: number | undefined;
1891
- hash?: Uint8Array | undefined;
1892
- } | undefined;
1893
- } | undefined;
1894
- lastCommitHash?: Uint8Array | undefined;
1895
- dataHash?: Uint8Array | undefined;
1896
- validatorsHash?: Uint8Array | undefined;
1897
- nextValidatorsHash?: Uint8Array | undefined;
1898
- consensusHash?: Uint8Array | undefined;
1899
- appHash?: Uint8Array | undefined;
1900
- lastResultsHash?: Uint8Array | undefined;
1901
- evidenceHash?: Uint8Array | undefined;
1902
- proposerAddress?: Uint8Array | undefined;
1903
- } | undefined;
1904
- commit?: {
1905
- height?: string | number | import("long").Long | undefined;
1906
- round?: number | undefined;
1907
- blockId?: {
1908
- hash?: Uint8Array | undefined;
1909
- partSetHeader?: {
1910
- total?: number | undefined;
1911
- hash?: Uint8Array | undefined;
1912
- } | undefined;
1913
- } | undefined;
1914
- signatures?: {
1915
- blockIdFlag?: _242.BlockIDFlag | undefined;
1916
- validatorAddress?: Uint8Array | undefined;
1917
- timestamp?: Date | undefined;
1918
- signature?: Uint8Array | undefined;
1919
- }[] | undefined;
1920
- } | undefined;
1921
- } | undefined;
1922
- validatorSet?: {
1923
- validators?: {
1924
- address?: Uint8Array | undefined;
1925
- pubKey?: {
1926
- ed25519?: Uint8Array | undefined;
1927
- secp256k1?: Uint8Array | undefined;
1928
- } | undefined;
1929
- votingPower?: string | number | import("long").Long | undefined;
1930
- proposerPriority?: string | number | import("long").Long | undefined;
1931
- }[] | undefined;
1932
- proposer?: {
1933
- address?: Uint8Array | undefined;
1934
- pubKey?: {
1935
- ed25519?: Uint8Array | undefined;
1936
- secp256k1?: Uint8Array | undefined;
1937
- } | undefined;
1938
- votingPower?: string | number | import("long").Long | undefined;
1939
- proposerPriority?: string | number | import("long").Long | undefined;
1940
- } | undefined;
1941
- totalVotingPower?: string | number | import("long").Long | undefined;
1942
- } | undefined;
1943
- } | undefined;
1944
- commonHeight?: string | number | import("long").Long | undefined;
1945
- byzantineValidators?: {
1946
- address?: Uint8Array | undefined;
1947
- pubKey?: {
1948
- ed25519?: Uint8Array | undefined;
1949
- secp256k1?: Uint8Array | undefined;
1950
- } | undefined;
1951
- votingPower?: string | number | import("long").Long | undefined;
1952
- proposerPriority?: string | number | import("long").Long | undefined;
1953
- }[] | undefined;
1954
- totalVotingPower?: string | number | import("long").Long | undefined;
1955
- timestamp?: Date | undefined;
1956
- }): _239.LightClientAttackEvidence;
1957
- };
1958
- EvidenceList: {
1959
- encode(message: _239.EvidenceList, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1960
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _239.EvidenceList;
1961
- fromPartial(object: {
1962
- evidence?: {
1963
- duplicateVoteEvidence?: {
1964
- voteA?: {
1965
- type?: _241.SignedMsgType | undefined;
1966
- height?: string | number | import("long").Long | undefined;
1967
- round?: number | undefined;
1968
- blockId?: {
1969
- hash?: Uint8Array | undefined;
1970
- partSetHeader?: {
1971
- total?: number | undefined;
1972
- hash?: Uint8Array | undefined;
1973
- } | undefined;
1974
- } | undefined;
1975
- timestamp?: Date | undefined;
1976
- validatorAddress?: Uint8Array | undefined;
1977
- validatorIndex?: number | undefined;
1978
- signature?: Uint8Array | undefined;
1979
- extension?: Uint8Array | undefined;
1980
- extensionSignature?: Uint8Array | undefined;
1981
- } | undefined;
1982
- voteB?: {
1983
- type?: _241.SignedMsgType | undefined;
1984
- height?: string | number | import("long").Long | undefined;
1985
- round?: number | undefined;
1986
- blockId?: {
1987
- hash?: Uint8Array | undefined;
1988
- partSetHeader?: {
1989
- total?: number | undefined;
1990
- hash?: Uint8Array | undefined;
1991
- } | undefined;
1992
- } | undefined;
1993
- timestamp?: Date | undefined;
1994
- validatorAddress?: Uint8Array | undefined;
1995
- validatorIndex?: number | undefined;
1996
- signature?: Uint8Array | undefined;
1997
- extension?: Uint8Array | undefined;
1998
- extensionSignature?: Uint8Array | undefined;
1999
- } | undefined;
2000
- totalVotingPower?: string | number | import("long").Long | undefined;
2001
- validatorPower?: string | number | import("long").Long | undefined;
2002
- timestamp?: Date | undefined;
2003
- } | undefined;
2004
- lightClientAttackEvidence?: {
2005
- conflictingBlock?: {
2006
- signedHeader?: {
2007
- header?: {
2008
- version?: {
2009
- block?: string | number | import("long").Long | undefined;
2010
- app?: string | number | import("long").Long | undefined;
2011
- } | undefined;
2012
- chainId?: string | undefined;
2013
- height?: string | number | import("long").Long | undefined;
2014
- time?: Date | undefined;
2015
- lastBlockId?: {
2016
- hash?: Uint8Array | undefined;
2017
- partSetHeader?: {
2018
- total?: number | undefined;
2019
- hash?: Uint8Array | undefined;
2020
- } | undefined;
2021
- } | undefined;
2022
- lastCommitHash?: Uint8Array | undefined;
2023
- dataHash?: Uint8Array | undefined;
2024
- validatorsHash?: Uint8Array | undefined;
2025
- nextValidatorsHash?: Uint8Array | undefined;
2026
- consensusHash?: Uint8Array | undefined;
2027
- appHash?: Uint8Array | undefined;
2028
- lastResultsHash?: Uint8Array | undefined;
2029
- evidenceHash?: Uint8Array | undefined;
2030
- proposerAddress?: Uint8Array | undefined;
2031
- } | undefined;
2032
- commit?: {
2033
- height?: string | number | import("long").Long | undefined;
2034
- round?: number | undefined;
2035
- blockId?: {
2036
- hash?: Uint8Array | undefined;
2037
- partSetHeader?: {
2038
- total?: number | undefined;
2039
- hash?: Uint8Array | undefined;
2040
- } | undefined;
2041
- } | undefined;
2042
- signatures?: {
2043
- blockIdFlag?: _242.BlockIDFlag | undefined;
2044
- validatorAddress?: Uint8Array | undefined;
2045
- timestamp?: Date | undefined;
2046
- signature?: Uint8Array | undefined;
2047
- }[] | undefined;
2048
- } | undefined;
2049
- } | undefined;
2050
- validatorSet?: {
2051
- validators?: {
2052
- address?: Uint8Array | undefined;
2053
- pubKey?: {
2054
- ed25519?: Uint8Array | undefined;
2055
- secp256k1?: Uint8Array | undefined;
2056
- } | undefined;
2057
- votingPower?: string | number | import("long").Long | undefined;
2058
- proposerPriority?: string | number | import("long").Long | undefined;
2059
- }[] | undefined;
2060
- proposer?: {
2061
- address?: Uint8Array | undefined;
2062
- pubKey?: {
2063
- ed25519?: Uint8Array | undefined;
2064
- secp256k1?: Uint8Array | undefined;
2065
- } | undefined;
2066
- votingPower?: string | number | import("long").Long | undefined;
2067
- proposerPriority?: string | number | import("long").Long | undefined;
2068
- } | undefined;
2069
- totalVotingPower?: string | number | import("long").Long | undefined;
2070
- } | undefined;
2071
- } | undefined;
2072
- commonHeight?: string | number | import("long").Long | undefined;
2073
- byzantineValidators?: {
2074
- address?: Uint8Array | undefined;
2075
- pubKey?: {
2076
- ed25519?: Uint8Array | undefined;
2077
- secp256k1?: Uint8Array | undefined;
2078
- } | undefined;
2079
- votingPower?: string | number | import("long").Long | undefined;
2080
- proposerPriority?: string | number | import("long").Long | undefined;
2081
- }[] | undefined;
2082
- totalVotingPower?: string | number | import("long").Long | undefined;
2083
- timestamp?: Date | undefined;
2084
- } | undefined;
2085
- }[] | undefined;
2086
- }): _239.EvidenceList;
2087
- };
2088
- Block: {
2089
- encode(message: _238.Block, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2090
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _238.Block;
2091
- fromPartial(object: {
2092
- header?: {
2093
- version?: {
2094
- block?: string | number | import("long").Long | undefined;
2095
- app?: string | number | import("long").Long | undefined;
2096
- } | undefined;
2097
- chainId?: string | undefined;
2098
- height?: string | number | import("long").Long | undefined;
2099
- time?: Date | undefined;
2100
- lastBlockId?: {
2101
- hash?: Uint8Array | undefined;
2102
- partSetHeader?: {
2103
- total?: number | undefined;
2104
- hash?: Uint8Array | undefined;
2105
- } | undefined;
2106
- } | undefined;
2107
- lastCommitHash?: Uint8Array | undefined;
2108
- dataHash?: Uint8Array | undefined;
2109
- validatorsHash?: Uint8Array | undefined;
2110
- nextValidatorsHash?: Uint8Array | undefined;
2111
- consensusHash?: Uint8Array | undefined;
2112
- appHash?: Uint8Array | undefined;
2113
- lastResultsHash?: Uint8Array | undefined;
2114
- evidenceHash?: Uint8Array | undefined;
2115
- proposerAddress?: Uint8Array | undefined;
2116
- } | undefined;
2117
- data?: {
2118
- txs?: Uint8Array[] | undefined;
2119
- } | undefined;
2120
- evidence?: {
2121
- evidence?: {
2122
- duplicateVoteEvidence?: {
2123
- voteA?: {
2124
- type?: _241.SignedMsgType | undefined;
2125
- height?: string | number | import("long").Long | undefined;
2126
- round?: number | undefined;
2127
- blockId?: {
2128
- hash?: Uint8Array | undefined;
2129
- partSetHeader?: {
2130
- total?: number | undefined;
2131
- hash?: Uint8Array | undefined;
2132
- } | undefined;
2133
- } | undefined;
2134
- timestamp?: Date | undefined;
2135
- validatorAddress?: Uint8Array | undefined;
2136
- validatorIndex?: number | undefined;
2137
- signature?: Uint8Array | undefined;
2138
- extension?: Uint8Array | undefined;
2139
- extensionSignature?: Uint8Array | undefined;
2140
- } | undefined;
2141
- voteB?: {
2142
- type?: _241.SignedMsgType | undefined;
2143
- height?: string | number | import("long").Long | undefined;
2144
- round?: number | undefined;
2145
- blockId?: {
2146
- hash?: Uint8Array | undefined;
2147
- partSetHeader?: {
2148
- total?: number | undefined;
2149
- hash?: Uint8Array | undefined;
2150
- } | undefined;
2151
- } | undefined;
2152
- timestamp?: Date | undefined;
2153
- validatorAddress?: Uint8Array | undefined;
2154
- validatorIndex?: number | undefined;
2155
- signature?: Uint8Array | undefined;
2156
- extension?: Uint8Array | undefined;
2157
- extensionSignature?: Uint8Array | undefined;
2158
- } | undefined;
2159
- totalVotingPower?: string | number | import("long").Long | undefined;
2160
- validatorPower?: string | number | import("long").Long | undefined;
2161
- timestamp?: Date | undefined;
2162
- } | undefined;
2163
- lightClientAttackEvidence?: {
2164
- conflictingBlock?: {
2165
- signedHeader?: {
2166
- header?: {
2167
- version?: {
2168
- block?: string | number | import("long").Long | undefined;
2169
- app?: string | number | import("long").Long | undefined;
2170
- } | undefined;
2171
- chainId?: string | undefined;
2172
- height?: string | number | import("long").Long | undefined;
2173
- time?: Date | undefined;
2174
- lastBlockId?: {
2175
- hash?: Uint8Array | undefined;
2176
- partSetHeader?: {
2177
- total?: number | undefined;
2178
- hash?: Uint8Array | undefined;
2179
- } | undefined;
2180
- } | undefined;
2181
- lastCommitHash?: Uint8Array | undefined;
2182
- dataHash?: Uint8Array | undefined;
2183
- validatorsHash?: Uint8Array | undefined;
2184
- nextValidatorsHash?: Uint8Array | undefined;
2185
- consensusHash?: Uint8Array | undefined;
2186
- appHash?: Uint8Array | undefined;
2187
- lastResultsHash?: Uint8Array | undefined;
2188
- evidenceHash?: Uint8Array | undefined;
2189
- proposerAddress?: Uint8Array | undefined;
2190
- } | undefined;
2191
- commit?: {
2192
- height?: string | number | import("long").Long | undefined;
2193
- round?: number | undefined;
2194
- blockId?: {
2195
- hash?: Uint8Array | undefined;
2196
- partSetHeader?: {
2197
- total?: number | undefined;
2198
- hash?: Uint8Array | undefined;
2199
- } | undefined;
2200
- } | undefined;
2201
- signatures?: {
2202
- blockIdFlag?: _242.BlockIDFlag | undefined;
2203
- validatorAddress?: Uint8Array | undefined;
2204
- timestamp?: Date | undefined;
2205
- signature?: Uint8Array | undefined;
2206
- }[] | undefined;
2207
- } | undefined;
2208
- } | undefined;
2209
- validatorSet?: {
2210
- validators?: {
2211
- address?: Uint8Array | undefined;
2212
- pubKey?: {
2213
- ed25519?: Uint8Array | undefined;
2214
- secp256k1?: Uint8Array | undefined;
2215
- } | undefined;
2216
- votingPower?: string | number | import("long").Long | undefined;
2217
- proposerPriority?: string | number | import("long").Long | undefined;
2218
- }[] | undefined;
2219
- proposer?: {
2220
- address?: Uint8Array | undefined;
2221
- pubKey?: {
2222
- ed25519?: Uint8Array | undefined;
2223
- secp256k1?: Uint8Array | undefined;
2224
- } | undefined;
2225
- votingPower?: string | number | import("long").Long | undefined;
2226
- proposerPriority?: string | number | import("long").Long | undefined;
2227
- } | undefined;
2228
- totalVotingPower?: string | number | import("long").Long | undefined;
2229
- } | undefined;
2230
- } | undefined;
2231
- commonHeight?: string | number | import("long").Long | undefined;
2232
- byzantineValidators?: {
2233
- address?: Uint8Array | undefined;
2234
- pubKey?: {
2235
- ed25519?: Uint8Array | undefined;
2236
- secp256k1?: Uint8Array | undefined;
2237
- } | undefined;
2238
- votingPower?: string | number | import("long").Long | undefined;
2239
- proposerPriority?: string | number | import("long").Long | undefined;
2240
- }[] | undefined;
2241
- totalVotingPower?: string | number | import("long").Long | undefined;
2242
- timestamp?: Date | undefined;
2243
- } | undefined;
2244
- }[] | undefined;
2245
- } | undefined;
2246
- lastCommit?: {
2247
- height?: string | number | import("long").Long | undefined;
2248
- round?: number | undefined;
2249
- blockId?: {
2250
- hash?: Uint8Array | undefined;
2251
- partSetHeader?: {
2252
- total?: number | undefined;
2253
- hash?: Uint8Array | undefined;
2254
- } | undefined;
2255
- } | undefined;
2256
- signatures?: {
2257
- blockIdFlag?: _242.BlockIDFlag | undefined;
2258
- validatorAddress?: Uint8Array | undefined;
2259
- timestamp?: Date | undefined;
2260
- signature?: Uint8Array | undefined;
2261
- }[] | undefined;
2262
- } | undefined;
2263
- }): _238.Block;
2264
- };
2265
- };
2266
- const version: {
2267
- App: {
2268
- encode(message: _243.App, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2269
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _243.App;
2270
- fromPartial(object: {
2271
- protocol?: string | number | import("long").Long | undefined;
2272
- software?: string | undefined;
2273
- }): _243.App;
2274
- };
2275
- Consensus: {
2276
- encode(message: _243.Consensus, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2277
- decode(input: Uint8Array | import("protobufjs").Reader, length?: number | undefined): _243.Consensus;
2278
- fromPartial(object: {
2279
- block?: string | number | import("long").Long | undefined;
2280
- app?: string | number | import("long").Long | undefined;
2281
- }): _243.Consensus;
2282
- };
2283
- };
2284
- }