injectivejs 1.11.13 → 1.11.15
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.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +28 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +148 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +199 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +61 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +8 -8
- package/cosmos/bundle.js +15 -15
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +109 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +61 -0
- package/cosmos/gov/v1/tx.d.ts +376 -65
- package/cosmos/gov/v1/tx.js +96 -0
- package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/cosmos/gov/v1beta1/gov.d.ts +293 -61
- package/cosmos/gov/v1beta1/gov.js +59 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/cosmos/gov/v1beta1/tx.d.ts +213 -37
- package/cosmos/gov/v1beta1/tx.js +53 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/cosmos/group/v1/tx.d.ts +804 -155
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
- package/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/cosmos/group/v1/types.d.ts +398 -83
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +96 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +145 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
- package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +99 -0
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
- package/cosmos/vesting/v1beta1/tx.js +48 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
- package/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +2 -2
- package/cosmwasm/bundle.js +3 -3
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/cosmwasm/wasm/v1/query.d.ts +615 -82
- package/cosmwasm/wasm/v1/query.js +195 -0
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
- package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +242 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/auth/v1beta1/auth.js +28 -0
- package/esm/cosmos/auth/v1beta1/query.js +148 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/query.js +199 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/esm/cosmos/bank/v1beta1/tx.js +61 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +8 -8
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/esm/cosmos/gov/v1/gov.js +61 -0
- package/esm/cosmos/gov/v1/tx.js +96 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/esm/cosmos/gov/v1beta1/gov.js +59 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/esm/cosmos/gov/v1beta1/tx.js +53 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +96 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +145 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/esm/cosmos/tx/v1beta1/tx.js +99 -0
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +2 -2
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/esm/cosmwasm/wasm/v1/query.js +195 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/esm/cosmwasm/wasm/v1/tx.js +242 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/esm/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/extern.js +1 -1
- package/esm/google/api/http.js +283 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +215 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +1 -1
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
- package/esm/ibc/applications/transfer/v1/tx.js +27 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/esm/ibc/bundle.js +1 -1
- package/esm/ibc/core/channel/v1/channel.js +70 -0
- package/esm/ibc/core/channel/v1/tx.js +242 -0
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/esm/ibc/core/channel/v1/upgrade.js +25 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/tx.js +90 -0
- package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/esm/index.js +1 -1
- package/esm/injective/auction/v1beta1/auction.js +30 -0
- package/esm/injective/auction/v1beta1/genesis.js +6 -0
- package/esm/injective/auction/v1beta1/query.js +52 -0
- package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/esm/injective/auction/v1beta1/tx.js +21 -0
- package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/esm/injective/bundle.js +14 -14
- package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/esm/injective/exchange/v1beta1/authz.js +58 -0
- package/esm/injective/exchange/v1beta1/events.js +180 -0
- package/esm/injective/exchange/v1beta1/exchange.js +263 -0
- package/esm/injective/exchange/v1beta1/genesis.js +89 -0
- package/esm/injective/exchange/v1beta1/proposal.js +113 -0
- package/esm/injective/exchange/v1beta1/query.js +864 -0
- package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/esm/injective/exchange/v1beta1/tx.js +487 -0
- package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/esm/injective/insurance/v1beta1/events.js +25 -0
- package/esm/injective/insurance/v1beta1/genesis.js +6 -0
- package/esm/injective/insurance/v1beta1/insurance.js +15 -0
- package/esm/injective/insurance/v1beta1/query.js +84 -0
- package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/esm/injective/insurance/v1beta1/tx.js +46 -0
- package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/esm/injective/ocr/v1beta1/genesis.js +41 -0
- package/esm/injective/ocr/v1beta1/ocr.js +108 -0
- package/esm/injective/ocr/v1beta1/query.js +70 -0
- package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/esm/injective/ocr/v1beta1/tx.js +90 -0
- package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/esm/injective/oracle/v1beta1/events.js +56 -0
- package/esm/injective/oracle/v1beta1/genesis.js +11 -0
- package/esm/injective/oracle/v1beta1/oracle.js +122 -0
- package/esm/injective/oracle/v1beta1/proposal.js +55 -0
- package/esm/injective/oracle/v1beta1/query.js +240 -0
- package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/esm/injective/oracle/v1beta1/tx.js +93 -0
- package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/esm/injective/peggy/v1/attestation.js +31 -0
- package/esm/injective/peggy/v1/batch.js +12 -0
- package/esm/injective/peggy/v1/events.js +85 -0
- package/esm/injective/peggy/v1/genesis.js +6 -0
- package/esm/injective/peggy/v1/msgs.js +223 -0
- package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/esm/injective/peggy/v1/params.js +5 -0
- package/esm/injective/peggy/v1/pool.js +11 -0
- package/esm/injective/peggy/v1/proposal.js +10 -0
- package/esm/injective/peggy/v1/query.js +214 -0
- package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
- package/esm/injective/peggy/v1/types.js +37 -0
- package/esm/injective/permissions/v1beta1/events.js +5 -0
- package/esm/injective/permissions/v1beta1/genesis.js +6 -0
- package/esm/injective/permissions/v1beta1/params.js +6 -0
- package/esm/injective/permissions/v1beta1/permissions.js +33 -0
- package/esm/injective/permissions/v1beta1/query.js +74 -0
- package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/esm/injective/permissions/v1beta1/tx.js +90 -0
- package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/esm/injective/stream/v1beta1/query.js +110 -0
- package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
- package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
- package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
- package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/esm/injective/types/v1beta1/account.js +7 -0
- package/esm/injective/types/v1beta1/tx_ext.js +5 -0
- package/esm/injective/types/v1beta1/tx_response.js +13 -0
- package/esm/injective/wasmx/v1/events.js +15 -0
- package/esm/injective/wasmx/v1/genesis.js +11 -0
- package/esm/injective/wasmx/v1/proposal.js +25 -0
- package/esm/injective/wasmx/v1/query.js +39 -0
- package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/esm/injective/wasmx/v1/tx.js +63 -0
- package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/esm/injective/wasmx/v1/wasmx.js +10 -0
- package/esm/registry.js +1 -1
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/extern.d.ts +1 -1
- package/extern.js +1 -1
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +715 -86
- package/google/protobuf/descriptor.js +215 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helper-func-types.d.ts +1 -1
- package/helper-func-types.js +1 -1
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
- package/ibc/applications/transfer/v1/transfer.js +24 -0
- package/ibc/applications/transfer/v1/tx.d.ts +125 -26
- package/ibc/applications/transfer/v1/tx.js +27 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/ibc/bundle.d.ts +1 -1
- package/ibc/bundle.js +2 -2
- package/ibc/core/channel/v1/channel.d.ts +316 -64
- package/ibc/core/channel/v1/channel.js +70 -0
- package/ibc/core/channel/v1/tx.d.ts +676 -70
- package/ibc/core/channel/v1/tx.js +242 -0
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
- package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/ibc/core/channel/v1/upgrade.d.ts +55 -4
- package/ibc/core/channel/v1/upgrade.js +25 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/tx.d.ts +338 -56
- package/ibc/core/client/v1/tx.js +90 -0
- package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
- package/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
- package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/injective/auction/v1beta1/auction.d.ts +168 -26
- package/injective/auction/v1beta1/auction.js +30 -0
- package/injective/auction/v1beta1/genesis.d.ts +48 -12
- package/injective/auction/v1beta1/genesis.js +6 -0
- package/injective/auction/v1beta1/query.d.ts +138 -10
- package/injective/auction/v1beta1/query.js +52 -0
- package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
- package/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/injective/auction/v1beta1/tx.d.ts +81 -8
- package/injective/auction/v1beta1/tx.js +21 -0
- package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
- package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/injective/bundle.d.ts +14 -14
- package/injective/bundle.js +18 -18
- package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
- package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/injective/exchange/v1beta1/authz.d.ts +174 -6
- package/injective/exchange/v1beta1/authz.js +58 -0
- package/injective/exchange/v1beta1/events.d.ts +546 -2
- package/injective/exchange/v1beta1/events.js +180 -0
- package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
- package/injective/exchange/v1beta1/exchange.js +263 -0
- package/injective/exchange/v1beta1/genesis.d.ts +357 -38
- package/injective/exchange/v1beta1/genesis.js +89 -0
- package/injective/exchange/v1beta1/proposal.d.ts +589 -94
- package/injective/exchange/v1beta1/proposal.js +113 -0
- package/injective/exchange/v1beta1/query.d.ts +2162 -136
- package/injective/exchange/v1beta1/query.js +864 -0
- package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
- package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/injective/exchange/v1beta1/tx.d.ts +1503 -170
- package/injective/exchange/v1beta1/tx.js +487 -0
- package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
- package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/injective/insurance/v1beta1/events.d.ts +111 -12
- package/injective/insurance/v1beta1/events.js +25 -0
- package/injective/insurance/v1beta1/genesis.d.ts +30 -6
- package/injective/insurance/v1beta1/genesis.js +6 -0
- package/injective/insurance/v1beta1/insurance.d.ts +117 -24
- package/injective/insurance/v1beta1/insurance.js +15 -0
- package/injective/insurance/v1beta1/query.d.ts +162 -2
- package/injective/insurance/v1beta1/query.js +84 -0
- package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
- package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/injective/insurance/v1beta1/tx.d.ts +186 -24
- package/injective/insurance/v1beta1/tx.js +46 -0
- package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
- package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/injective/ocr/v1beta1/genesis.d.ts +171 -18
- package/injective/ocr/v1beta1/genesis.js +41 -0
- package/injective/ocr/v1beta1/ocr.d.ts +514 -68
- package/injective/ocr/v1beta1/ocr.js +108 -0
- package/injective/ocr/v1beta1/query.d.ts +210 -0
- package/injective/ocr/v1beta1/query.js +70 -0
- package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
- package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/injective/ocr/v1beta1/tx.d.ts +360 -30
- package/injective/ocr/v1beta1/tx.js +90 -0
- package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
- package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/injective/oracle/v1beta1/events.d.ts +174 -4
- package/injective/oracle/v1beta1/events.js +56 -0
- package/injective/oracle/v1beta1/genesis.d.ts +39 -4
- package/injective/oracle/v1beta1/genesis.js +11 -0
- package/injective/oracle/v1beta1/oracle.d.ts +514 -52
- package/injective/oracle/v1beta1/oracle.js +122 -0
- package/injective/oracle/v1beta1/proposal.d.ts +165 -0
- package/injective/oracle/v1beta1/proposal.js +55 -0
- package/injective/oracle/v1beta1/query.d.ts +502 -0
- package/injective/oracle/v1beta1/query.js +240 -0
- package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
- package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/injective/oracle/v1beta1/tx.d.ts +251 -10
- package/injective/oracle/v1beta1/tx.js +93 -0
- package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
- package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/injective/peggy/v1/attestation.d.ts +43 -0
- package/injective/peggy/v1/attestation.js +31 -0
- package/injective/peggy/v1/batch.d.ts +36 -4
- package/injective/peggy/v1/batch.js +12 -0
- package/injective/peggy/v1/events.d.ts +255 -0
- package/injective/peggy/v1/events.js +85 -0
- package/injective/peggy/v1/genesis.d.ts +18 -2
- package/injective/peggy/v1/genesis.js +6 -0
- package/injective/peggy/v1/msgs.d.ts +473 -10
- package/injective/peggy/v1/msgs.js +223 -0
- package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
- package/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/injective/peggy/v1/params.d.ts +15 -0
- package/injective/peggy/v1/params.js +5 -0
- package/injective/peggy/v1/pool.d.ts +33 -2
- package/injective/peggy/v1/pool.js +11 -0
- package/injective/peggy/v1/proposal.d.ts +30 -0
- package/injective/peggy/v1/proposal.js +10 -0
- package/injective/peggy/v1/query.d.ts +626 -0
- package/injective/peggy/v1/query.js +214 -0
- package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
- package/injective/peggy/v1/query.rpc.func.js +110 -5
- package/injective/peggy/v1/types.d.ts +85 -6
- package/injective/peggy/v1/types.js +37 -0
- package/injective/permissions/v1beta1/events.d.ts +15 -0
- package/injective/permissions/v1beta1/events.js +5 -0
- package/injective/permissions/v1beta1/genesis.d.ts +24 -4
- package/injective/permissions/v1beta1/genesis.js +6 -0
- package/injective/permissions/v1beta1/params.d.ts +18 -2
- package/injective/permissions/v1beta1/params.js +6 -0
- package/injective/permissions/v1beta1/permissions.d.ts +117 -12
- package/injective/permissions/v1beta1/permissions.js +33 -0
- package/injective/permissions/v1beta1/query.d.ts +180 -6
- package/injective/permissions/v1beta1/query.js +74 -0
- package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
- package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/injective/permissions/v1beta1/tx.d.ts +318 -16
- package/injective/permissions/v1beta1/tx.js +90 -0
- package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
- package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/injective/stream/v1beta1/query.d.ts +336 -2
- package/injective/stream/v1beta1/query.js +110 -0
- package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
- package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
- package/injective/tokenfactory/v1beta1/events.js +25 -0
- package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
- package/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
- package/injective/tokenfactory/v1beta1/params.js +6 -0
- package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
- package/injective/tokenfactory/v1beta1/query.js +54 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
- package/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/injective/types/v1beta1/account.d.ts +13 -0
- package/injective/types/v1beta1/account.js +7 -0
- package/injective/types/v1beta1/tx_ext.d.ts +15 -0
- package/injective/types/v1beta1/tx_ext.js +5 -0
- package/injective/types/v1beta1/tx_response.d.ts +31 -2
- package/injective/types/v1beta1/tx_response.js +13 -0
- package/injective/wasmx/v1/events.d.ts +45 -0
- package/injective/wasmx/v1/events.js +15 -0
- package/injective/wasmx/v1/genesis.d.ts +39 -4
- package/injective/wasmx/v1/genesis.js +11 -0
- package/injective/wasmx/v1/proposal.d.ts +99 -8
- package/injective/wasmx/v1/proposal.js +25 -0
- package/injective/wasmx/v1/query.d.ts +85 -2
- package/injective/wasmx/v1/query.js +39 -0
- package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
- package/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/injective/wasmx/v1/tx.d.ts +253 -26
- package/injective/wasmx/v1/tx.js +63 -0
- package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
- package/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/injective/wasmx/v1/wasmx.d.ts +60 -10
- package/injective/wasmx/v1/wasmx.js +10 -0
- package/package.json +9 -9
- package/registry.d.ts +1 -1
- package/registry.js +1 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
|
@@ -301,6 +301,11 @@ function createBaseRequest() {
|
|
|
301
301
|
finalizeBlock: undefined
|
|
302
302
|
};
|
|
303
303
|
}
|
|
304
|
+
/**
|
|
305
|
+
* @name Request
|
|
306
|
+
* @package tendermint.abci
|
|
307
|
+
* @see proto type: tendermint.abci.Request
|
|
308
|
+
*/
|
|
304
309
|
export const Request = {
|
|
305
310
|
typeUrl: "/tendermint.abci.Request",
|
|
306
311
|
is(o) {
|
|
@@ -556,6 +561,11 @@ function createBaseRequestEcho() {
|
|
|
556
561
|
message: ""
|
|
557
562
|
};
|
|
558
563
|
}
|
|
564
|
+
/**
|
|
565
|
+
* @name RequestEcho
|
|
566
|
+
* @package tendermint.abci
|
|
567
|
+
* @see proto type: tendermint.abci.RequestEcho
|
|
568
|
+
*/
|
|
559
569
|
export const RequestEcho = {
|
|
560
570
|
typeUrl: "/tendermint.abci.RequestEcho",
|
|
561
571
|
is(o) {
|
|
@@ -624,6 +634,11 @@ export const RequestEcho = {
|
|
|
624
634
|
function createBaseRequestFlush() {
|
|
625
635
|
return {};
|
|
626
636
|
}
|
|
637
|
+
/**
|
|
638
|
+
* @name RequestFlush
|
|
639
|
+
* @package tendermint.abci
|
|
640
|
+
* @see proto type: tendermint.abci.RequestFlush
|
|
641
|
+
*/
|
|
627
642
|
export const RequestFlush = {
|
|
628
643
|
typeUrl: "/tendermint.abci.RequestFlush",
|
|
629
644
|
is(o) {
|
|
@@ -686,6 +701,11 @@ function createBaseRequestInfo() {
|
|
|
686
701
|
abciVersion: ""
|
|
687
702
|
};
|
|
688
703
|
}
|
|
704
|
+
/**
|
|
705
|
+
* @name RequestInfo
|
|
706
|
+
* @package tendermint.abci
|
|
707
|
+
* @see proto type: tendermint.abci.RequestInfo
|
|
708
|
+
*/
|
|
689
709
|
export const RequestInfo = {
|
|
690
710
|
typeUrl: "/tendermint.abci.RequestInfo",
|
|
691
711
|
is(o) {
|
|
@@ -794,6 +814,11 @@ function createBaseRequestInitChain() {
|
|
|
794
814
|
initialHeight: BigInt(0)
|
|
795
815
|
};
|
|
796
816
|
}
|
|
817
|
+
/**
|
|
818
|
+
* @name RequestInitChain
|
|
819
|
+
* @package tendermint.abci
|
|
820
|
+
* @see proto type: tendermint.abci.RequestInitChain
|
|
821
|
+
*/
|
|
797
822
|
export const RequestInitChain = {
|
|
798
823
|
typeUrl: "/tendermint.abci.RequestInitChain",
|
|
799
824
|
is(o) {
|
|
@@ -931,6 +956,11 @@ function createBaseRequestQuery() {
|
|
|
931
956
|
prove: false
|
|
932
957
|
};
|
|
933
958
|
}
|
|
959
|
+
/**
|
|
960
|
+
* @name RequestQuery
|
|
961
|
+
* @package tendermint.abci
|
|
962
|
+
* @see proto type: tendermint.abci.RequestQuery
|
|
963
|
+
*/
|
|
934
964
|
export const RequestQuery = {
|
|
935
965
|
typeUrl: "/tendermint.abci.RequestQuery",
|
|
936
966
|
is(o) {
|
|
@@ -1035,6 +1065,11 @@ function createBaseRequestCheckTx() {
|
|
|
1035
1065
|
type: 0
|
|
1036
1066
|
};
|
|
1037
1067
|
}
|
|
1068
|
+
/**
|
|
1069
|
+
* @name RequestCheckTx
|
|
1070
|
+
* @package tendermint.abci
|
|
1071
|
+
* @see proto type: tendermint.abci.RequestCheckTx
|
|
1072
|
+
*/
|
|
1038
1073
|
export const RequestCheckTx = {
|
|
1039
1074
|
typeUrl: "/tendermint.abci.RequestCheckTx",
|
|
1040
1075
|
is(o) {
|
|
@@ -1114,6 +1149,11 @@ export const RequestCheckTx = {
|
|
|
1114
1149
|
function createBaseRequestCommit() {
|
|
1115
1150
|
return {};
|
|
1116
1151
|
}
|
|
1152
|
+
/**
|
|
1153
|
+
* @name RequestCommit
|
|
1154
|
+
* @package tendermint.abci
|
|
1155
|
+
* @see proto type: tendermint.abci.RequestCommit
|
|
1156
|
+
*/
|
|
1117
1157
|
export const RequestCommit = {
|
|
1118
1158
|
typeUrl: "/tendermint.abci.RequestCommit",
|
|
1119
1159
|
is(o) {
|
|
@@ -1171,6 +1211,12 @@ export const RequestCommit = {
|
|
|
1171
1211
|
function createBaseRequestListSnapshots() {
|
|
1172
1212
|
return {};
|
|
1173
1213
|
}
|
|
1214
|
+
/**
|
|
1215
|
+
* lists available snapshots
|
|
1216
|
+
* @name RequestListSnapshots
|
|
1217
|
+
* @package tendermint.abci
|
|
1218
|
+
* @see proto type: tendermint.abci.RequestListSnapshots
|
|
1219
|
+
*/
|
|
1174
1220
|
export const RequestListSnapshots = {
|
|
1175
1221
|
typeUrl: "/tendermint.abci.RequestListSnapshots",
|
|
1176
1222
|
is(o) {
|
|
@@ -1231,6 +1277,12 @@ function createBaseRequestOfferSnapshot() {
|
|
|
1231
1277
|
appHash: new Uint8Array()
|
|
1232
1278
|
};
|
|
1233
1279
|
}
|
|
1280
|
+
/**
|
|
1281
|
+
* offers a snapshot to the application
|
|
1282
|
+
* @name RequestOfferSnapshot
|
|
1283
|
+
* @package tendermint.abci
|
|
1284
|
+
* @see proto type: tendermint.abci.RequestOfferSnapshot
|
|
1285
|
+
*/
|
|
1234
1286
|
export const RequestOfferSnapshot = {
|
|
1235
1287
|
typeUrl: "/tendermint.abci.RequestOfferSnapshot",
|
|
1236
1288
|
is(o) {
|
|
@@ -1319,6 +1371,12 @@ function createBaseRequestLoadSnapshotChunk() {
|
|
|
1319
1371
|
chunk: 0
|
|
1320
1372
|
};
|
|
1321
1373
|
}
|
|
1374
|
+
/**
|
|
1375
|
+
* loads a snapshot chunk
|
|
1376
|
+
* @name RequestLoadSnapshotChunk
|
|
1377
|
+
* @package tendermint.abci
|
|
1378
|
+
* @see proto type: tendermint.abci.RequestLoadSnapshotChunk
|
|
1379
|
+
*/
|
|
1322
1380
|
export const RequestLoadSnapshotChunk = {
|
|
1323
1381
|
typeUrl: "/tendermint.abci.RequestLoadSnapshotChunk",
|
|
1324
1382
|
is(o) {
|
|
@@ -1413,6 +1471,12 @@ function createBaseRequestApplySnapshotChunk() {
|
|
|
1413
1471
|
sender: ""
|
|
1414
1472
|
};
|
|
1415
1473
|
}
|
|
1474
|
+
/**
|
|
1475
|
+
* Applies a snapshot chunk
|
|
1476
|
+
* @name RequestApplySnapshotChunk
|
|
1477
|
+
* @package tendermint.abci
|
|
1478
|
+
* @see proto type: tendermint.abci.RequestApplySnapshotChunk
|
|
1479
|
+
*/
|
|
1416
1480
|
export const RequestApplySnapshotChunk = {
|
|
1417
1481
|
typeUrl: "/tendermint.abci.RequestApplySnapshotChunk",
|
|
1418
1482
|
is(o) {
|
|
@@ -1512,6 +1576,11 @@ function createBaseRequestPrepareProposal() {
|
|
|
1512
1576
|
proposerAddress: new Uint8Array()
|
|
1513
1577
|
};
|
|
1514
1578
|
}
|
|
1579
|
+
/**
|
|
1580
|
+
* @name RequestPrepareProposal
|
|
1581
|
+
* @package tendermint.abci
|
|
1582
|
+
* @see proto type: tendermint.abci.RequestPrepareProposal
|
|
1583
|
+
*/
|
|
1515
1584
|
export const RequestPrepareProposal = {
|
|
1516
1585
|
typeUrl: "/tendermint.abci.RequestPrepareProposal",
|
|
1517
1586
|
is(o) {
|
|
@@ -1678,6 +1747,11 @@ function createBaseRequestProcessProposal() {
|
|
|
1678
1747
|
proposerAddress: new Uint8Array()
|
|
1679
1748
|
};
|
|
1680
1749
|
}
|
|
1750
|
+
/**
|
|
1751
|
+
* @name RequestProcessProposal
|
|
1752
|
+
* @package tendermint.abci
|
|
1753
|
+
* @see proto type: tendermint.abci.RequestProcessProposal
|
|
1754
|
+
*/
|
|
1681
1755
|
export const RequestProcessProposal = {
|
|
1682
1756
|
typeUrl: "/tendermint.abci.RequestProcessProposal",
|
|
1683
1757
|
is(o) {
|
|
@@ -1844,6 +1918,12 @@ function createBaseRequestExtendVote() {
|
|
|
1844
1918
|
proposerAddress: new Uint8Array()
|
|
1845
1919
|
};
|
|
1846
1920
|
}
|
|
1921
|
+
/**
|
|
1922
|
+
* Extends a vote with application-injected data
|
|
1923
|
+
* @name RequestExtendVote
|
|
1924
|
+
* @package tendermint.abci
|
|
1925
|
+
* @see proto type: tendermint.abci.RequestExtendVote
|
|
1926
|
+
*/
|
|
1847
1927
|
export const RequestExtendVote = {
|
|
1848
1928
|
typeUrl: "/tendermint.abci.RequestExtendVote",
|
|
1849
1929
|
is(o) {
|
|
@@ -2006,6 +2086,12 @@ function createBaseRequestVerifyVoteExtension() {
|
|
|
2006
2086
|
voteExtension: new Uint8Array()
|
|
2007
2087
|
};
|
|
2008
2088
|
}
|
|
2089
|
+
/**
|
|
2090
|
+
* Verify the vote extension
|
|
2091
|
+
* @name RequestVerifyVoteExtension
|
|
2092
|
+
* @package tendermint.abci
|
|
2093
|
+
* @see proto type: tendermint.abci.RequestVerifyVoteExtension
|
|
2094
|
+
*/
|
|
2009
2095
|
export const RequestVerifyVoteExtension = {
|
|
2010
2096
|
typeUrl: "/tendermint.abci.RequestVerifyVoteExtension",
|
|
2011
2097
|
is(o) {
|
|
@@ -2116,6 +2202,11 @@ function createBaseRequestFinalizeBlock() {
|
|
|
2116
2202
|
proposerAddress: new Uint8Array()
|
|
2117
2203
|
};
|
|
2118
2204
|
}
|
|
2205
|
+
/**
|
|
2206
|
+
* @name RequestFinalizeBlock
|
|
2207
|
+
* @package tendermint.abci
|
|
2208
|
+
* @see proto type: tendermint.abci.RequestFinalizeBlock
|
|
2209
|
+
*/
|
|
2119
2210
|
export const RequestFinalizeBlock = {
|
|
2120
2211
|
typeUrl: "/tendermint.abci.RequestFinalizeBlock",
|
|
2121
2212
|
is(o) {
|
|
@@ -2291,6 +2382,11 @@ function createBaseResponse() {
|
|
|
2291
2382
|
finalizeBlock: undefined
|
|
2292
2383
|
};
|
|
2293
2384
|
}
|
|
2385
|
+
/**
|
|
2386
|
+
* @name Response
|
|
2387
|
+
* @package tendermint.abci
|
|
2388
|
+
* @see proto type: tendermint.abci.Response
|
|
2389
|
+
*/
|
|
2294
2390
|
export const Response = {
|
|
2295
2391
|
typeUrl: "/tendermint.abci.Response",
|
|
2296
2392
|
is(o) {
|
|
@@ -2558,6 +2654,12 @@ function createBaseResponseException() {
|
|
|
2558
2654
|
error: ""
|
|
2559
2655
|
};
|
|
2560
2656
|
}
|
|
2657
|
+
/**
|
|
2658
|
+
* nondeterministic
|
|
2659
|
+
* @name ResponseException
|
|
2660
|
+
* @package tendermint.abci
|
|
2661
|
+
* @see proto type: tendermint.abci.ResponseException
|
|
2662
|
+
*/
|
|
2561
2663
|
export const ResponseException = {
|
|
2562
2664
|
typeUrl: "/tendermint.abci.ResponseException",
|
|
2563
2665
|
is(o) {
|
|
@@ -2628,6 +2730,11 @@ function createBaseResponseEcho() {
|
|
|
2628
2730
|
message: ""
|
|
2629
2731
|
};
|
|
2630
2732
|
}
|
|
2733
|
+
/**
|
|
2734
|
+
* @name ResponseEcho
|
|
2735
|
+
* @package tendermint.abci
|
|
2736
|
+
* @see proto type: tendermint.abci.ResponseEcho
|
|
2737
|
+
*/
|
|
2631
2738
|
export const ResponseEcho = {
|
|
2632
2739
|
typeUrl: "/tendermint.abci.ResponseEcho",
|
|
2633
2740
|
is(o) {
|
|
@@ -2696,6 +2803,11 @@ export const ResponseEcho = {
|
|
|
2696
2803
|
function createBaseResponseFlush() {
|
|
2697
2804
|
return {};
|
|
2698
2805
|
}
|
|
2806
|
+
/**
|
|
2807
|
+
* @name ResponseFlush
|
|
2808
|
+
* @package tendermint.abci
|
|
2809
|
+
* @see proto type: tendermint.abci.ResponseFlush
|
|
2810
|
+
*/
|
|
2699
2811
|
export const ResponseFlush = {
|
|
2700
2812
|
typeUrl: "/tendermint.abci.ResponseFlush",
|
|
2701
2813
|
is(o) {
|
|
@@ -2759,6 +2871,11 @@ function createBaseResponseInfo() {
|
|
|
2759
2871
|
lastBlockAppHash: new Uint8Array()
|
|
2760
2872
|
};
|
|
2761
2873
|
}
|
|
2874
|
+
/**
|
|
2875
|
+
* @name ResponseInfo
|
|
2876
|
+
* @package tendermint.abci
|
|
2877
|
+
* @see proto type: tendermint.abci.ResponseInfo
|
|
2878
|
+
*/
|
|
2762
2879
|
export const ResponseInfo = {
|
|
2763
2880
|
typeUrl: "/tendermint.abci.ResponseInfo",
|
|
2764
2881
|
is(o) {
|
|
@@ -2875,6 +2992,11 @@ function createBaseResponseInitChain() {
|
|
|
2875
2992
|
appHash: new Uint8Array()
|
|
2876
2993
|
};
|
|
2877
2994
|
}
|
|
2995
|
+
/**
|
|
2996
|
+
* @name ResponseInitChain
|
|
2997
|
+
* @package tendermint.abci
|
|
2998
|
+
* @see proto type: tendermint.abci.ResponseInitChain
|
|
2999
|
+
*/
|
|
2878
3000
|
export const ResponseInitChain = {
|
|
2879
3001
|
typeUrl: "/tendermint.abci.ResponseInitChain",
|
|
2880
3002
|
is(o) {
|
|
@@ -2984,6 +3106,11 @@ function createBaseResponseQuery() {
|
|
|
2984
3106
|
codespace: ""
|
|
2985
3107
|
};
|
|
2986
3108
|
}
|
|
3109
|
+
/**
|
|
3110
|
+
* @name ResponseQuery
|
|
3111
|
+
* @package tendermint.abci
|
|
3112
|
+
* @see proto type: tendermint.abci.ResponseQuery
|
|
3113
|
+
*/
|
|
2987
3114
|
export const ResponseQuery = {
|
|
2988
3115
|
typeUrl: "/tendermint.abci.ResponseQuery",
|
|
2989
3116
|
is(o) {
|
|
@@ -3154,6 +3281,11 @@ function createBaseResponseCheckTx() {
|
|
|
3154
3281
|
codespace: ""
|
|
3155
3282
|
};
|
|
3156
3283
|
}
|
|
3284
|
+
/**
|
|
3285
|
+
* @name ResponseCheckTx
|
|
3286
|
+
* @package tendermint.abci
|
|
3287
|
+
* @see proto type: tendermint.abci.ResponseCheckTx
|
|
3288
|
+
*/
|
|
3157
3289
|
export const ResponseCheckTx = {
|
|
3158
3290
|
typeUrl: "/tendermint.abci.ResponseCheckTx",
|
|
3159
3291
|
is(o) {
|
|
@@ -3309,6 +3441,11 @@ function createBaseResponseCommit() {
|
|
|
3309
3441
|
retainHeight: BigInt(0)
|
|
3310
3442
|
};
|
|
3311
3443
|
}
|
|
3444
|
+
/**
|
|
3445
|
+
* @name ResponseCommit
|
|
3446
|
+
* @package tendermint.abci
|
|
3447
|
+
* @see proto type: tendermint.abci.ResponseCommit
|
|
3448
|
+
*/
|
|
3312
3449
|
export const ResponseCommit = {
|
|
3313
3450
|
typeUrl: "/tendermint.abci.ResponseCommit",
|
|
3314
3451
|
is(o) {
|
|
@@ -3379,6 +3516,11 @@ function createBaseResponseListSnapshots() {
|
|
|
3379
3516
|
snapshots: []
|
|
3380
3517
|
};
|
|
3381
3518
|
}
|
|
3519
|
+
/**
|
|
3520
|
+
* @name ResponseListSnapshots
|
|
3521
|
+
* @package tendermint.abci
|
|
3522
|
+
* @see proto type: tendermint.abci.ResponseListSnapshots
|
|
3523
|
+
*/
|
|
3382
3524
|
export const ResponseListSnapshots = {
|
|
3383
3525
|
typeUrl: "/tendermint.abci.ResponseListSnapshots",
|
|
3384
3526
|
is(o) {
|
|
@@ -3457,6 +3599,11 @@ function createBaseResponseOfferSnapshot() {
|
|
|
3457
3599
|
result: 0
|
|
3458
3600
|
};
|
|
3459
3601
|
}
|
|
3602
|
+
/**
|
|
3603
|
+
* @name ResponseOfferSnapshot
|
|
3604
|
+
* @package tendermint.abci
|
|
3605
|
+
* @see proto type: tendermint.abci.ResponseOfferSnapshot
|
|
3606
|
+
*/
|
|
3460
3607
|
export const ResponseOfferSnapshot = {
|
|
3461
3608
|
typeUrl: "/tendermint.abci.ResponseOfferSnapshot",
|
|
3462
3609
|
is(o) {
|
|
@@ -3527,6 +3674,11 @@ function createBaseResponseLoadSnapshotChunk() {
|
|
|
3527
3674
|
chunk: new Uint8Array()
|
|
3528
3675
|
};
|
|
3529
3676
|
}
|
|
3677
|
+
/**
|
|
3678
|
+
* @name ResponseLoadSnapshotChunk
|
|
3679
|
+
* @package tendermint.abci
|
|
3680
|
+
* @see proto type: tendermint.abci.ResponseLoadSnapshotChunk
|
|
3681
|
+
*/
|
|
3530
3682
|
export const ResponseLoadSnapshotChunk = {
|
|
3531
3683
|
typeUrl: "/tendermint.abci.ResponseLoadSnapshotChunk",
|
|
3532
3684
|
is(o) {
|
|
@@ -3599,6 +3751,11 @@ function createBaseResponseApplySnapshotChunk() {
|
|
|
3599
3751
|
rejectSenders: []
|
|
3600
3752
|
};
|
|
3601
3753
|
}
|
|
3754
|
+
/**
|
|
3755
|
+
* @name ResponseApplySnapshotChunk
|
|
3756
|
+
* @package tendermint.abci
|
|
3757
|
+
* @see proto type: tendermint.abci.ResponseApplySnapshotChunk
|
|
3758
|
+
*/
|
|
3602
3759
|
export const ResponseApplySnapshotChunk = {
|
|
3603
3760
|
typeUrl: "/tendermint.abci.ResponseApplySnapshotChunk",
|
|
3604
3761
|
is(o) {
|
|
@@ -3707,6 +3864,11 @@ function createBaseResponsePrepareProposal() {
|
|
|
3707
3864
|
txs: []
|
|
3708
3865
|
};
|
|
3709
3866
|
}
|
|
3867
|
+
/**
|
|
3868
|
+
* @name ResponsePrepareProposal
|
|
3869
|
+
* @package tendermint.abci
|
|
3870
|
+
* @see proto type: tendermint.abci.ResponsePrepareProposal
|
|
3871
|
+
*/
|
|
3710
3872
|
export const ResponsePrepareProposal = {
|
|
3711
3873
|
typeUrl: "/tendermint.abci.ResponsePrepareProposal",
|
|
3712
3874
|
is(o) {
|
|
@@ -3780,6 +3942,11 @@ function createBaseResponseProcessProposal() {
|
|
|
3780
3942
|
status: 0
|
|
3781
3943
|
};
|
|
3782
3944
|
}
|
|
3945
|
+
/**
|
|
3946
|
+
* @name ResponseProcessProposal
|
|
3947
|
+
* @package tendermint.abci
|
|
3948
|
+
* @see proto type: tendermint.abci.ResponseProcessProposal
|
|
3949
|
+
*/
|
|
3783
3950
|
export const ResponseProcessProposal = {
|
|
3784
3951
|
typeUrl: "/tendermint.abci.ResponseProcessProposal",
|
|
3785
3952
|
is(o) {
|
|
@@ -3850,6 +4017,11 @@ function createBaseResponseExtendVote() {
|
|
|
3850
4017
|
voteExtension: new Uint8Array()
|
|
3851
4018
|
};
|
|
3852
4019
|
}
|
|
4020
|
+
/**
|
|
4021
|
+
* @name ResponseExtendVote
|
|
4022
|
+
* @package tendermint.abci
|
|
4023
|
+
* @see proto type: tendermint.abci.ResponseExtendVote
|
|
4024
|
+
*/
|
|
3853
4025
|
export const ResponseExtendVote = {
|
|
3854
4026
|
typeUrl: "/tendermint.abci.ResponseExtendVote",
|
|
3855
4027
|
is(o) {
|
|
@@ -3920,6 +4092,11 @@ function createBaseResponseVerifyVoteExtension() {
|
|
|
3920
4092
|
status: 0
|
|
3921
4093
|
};
|
|
3922
4094
|
}
|
|
4095
|
+
/**
|
|
4096
|
+
* @name ResponseVerifyVoteExtension
|
|
4097
|
+
* @package tendermint.abci
|
|
4098
|
+
* @see proto type: tendermint.abci.ResponseVerifyVoteExtension
|
|
4099
|
+
*/
|
|
3923
4100
|
export const ResponseVerifyVoteExtension = {
|
|
3924
4101
|
typeUrl: "/tendermint.abci.ResponseVerifyVoteExtension",
|
|
3925
4102
|
is(o) {
|
|
@@ -3994,6 +4171,11 @@ function createBaseResponseFinalizeBlock() {
|
|
|
3994
4171
|
appHash: new Uint8Array()
|
|
3995
4172
|
};
|
|
3996
4173
|
}
|
|
4174
|
+
/**
|
|
4175
|
+
* @name ResponseFinalizeBlock
|
|
4176
|
+
* @package tendermint.abci
|
|
4177
|
+
* @see proto type: tendermint.abci.ResponseFinalizeBlock
|
|
4178
|
+
*/
|
|
3997
4179
|
export const ResponseFinalizeBlock = {
|
|
3998
4180
|
typeUrl: "/tendermint.abci.ResponseFinalizeBlock",
|
|
3999
4181
|
is(o) {
|
|
@@ -4126,6 +4308,11 @@ function createBaseCommitInfo() {
|
|
|
4126
4308
|
votes: []
|
|
4127
4309
|
};
|
|
4128
4310
|
}
|
|
4311
|
+
/**
|
|
4312
|
+
* @name CommitInfo
|
|
4313
|
+
* @package tendermint.abci
|
|
4314
|
+
* @see proto type: tendermint.abci.CommitInfo
|
|
4315
|
+
*/
|
|
4129
4316
|
export const CommitInfo = {
|
|
4130
4317
|
typeUrl: "/tendermint.abci.CommitInfo",
|
|
4131
4318
|
is(o) {
|
|
@@ -4216,6 +4403,14 @@ function createBaseExtendedCommitInfo() {
|
|
|
4216
4403
|
votes: []
|
|
4217
4404
|
};
|
|
4218
4405
|
}
|
|
4406
|
+
/**
|
|
4407
|
+
* ExtendedCommitInfo is similar to CommitInfo except that it is only used in
|
|
4408
|
+
* the PrepareProposal request such that CometBFT can provide vote extensions
|
|
4409
|
+
* to the application.
|
|
4410
|
+
* @name ExtendedCommitInfo
|
|
4411
|
+
* @package tendermint.abci
|
|
4412
|
+
* @see proto type: tendermint.abci.ExtendedCommitInfo
|
|
4413
|
+
*/
|
|
4219
4414
|
export const ExtendedCommitInfo = {
|
|
4220
4415
|
typeUrl: "/tendermint.abci.ExtendedCommitInfo",
|
|
4221
4416
|
is(o) {
|
|
@@ -4306,6 +4501,14 @@ function createBaseEvent() {
|
|
|
4306
4501
|
attributes: []
|
|
4307
4502
|
};
|
|
4308
4503
|
}
|
|
4504
|
+
/**
|
|
4505
|
+
* Event allows application developers to attach additional information to
|
|
4506
|
+
* ResponseFinalizeBlock and ResponseCheckTx.
|
|
4507
|
+
* Later, transactions may be queried using these events.
|
|
4508
|
+
* @name Event
|
|
4509
|
+
* @package tendermint.abci
|
|
4510
|
+
* @see proto type: tendermint.abci.Event
|
|
4511
|
+
*/
|
|
4309
4512
|
export const Event = {
|
|
4310
4513
|
typeUrl: "/tendermint.abci.Event",
|
|
4311
4514
|
is(o) {
|
|
@@ -4397,6 +4600,12 @@ function createBaseEventAttribute() {
|
|
|
4397
4600
|
index: false
|
|
4398
4601
|
};
|
|
4399
4602
|
}
|
|
4603
|
+
/**
|
|
4604
|
+
* EventAttribute is a single key-value pair, associated with an event.
|
|
4605
|
+
* @name EventAttribute
|
|
4606
|
+
* @package tendermint.abci
|
|
4607
|
+
* @see proto type: tendermint.abci.EventAttribute
|
|
4608
|
+
*/
|
|
4400
4609
|
export const EventAttribute = {
|
|
4401
4610
|
typeUrl: "/tendermint.abci.EventAttribute",
|
|
4402
4611
|
is(o) {
|
|
@@ -4496,6 +4705,14 @@ function createBaseExecTxResult() {
|
|
|
4496
4705
|
codespace: ""
|
|
4497
4706
|
};
|
|
4498
4707
|
}
|
|
4708
|
+
/**
|
|
4709
|
+
* ExecTxResult contains results of executing one individual transaction.
|
|
4710
|
+
*
|
|
4711
|
+
* * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted
|
|
4712
|
+
* @name ExecTxResult
|
|
4713
|
+
* @package tendermint.abci
|
|
4714
|
+
* @see proto type: tendermint.abci.ExecTxResult
|
|
4715
|
+
*/
|
|
4499
4716
|
export const ExecTxResult = {
|
|
4500
4717
|
typeUrl: "/tendermint.abci.ExecTxResult",
|
|
4501
4718
|
is(o) {
|
|
@@ -4654,6 +4871,14 @@ function createBaseTxResult() {
|
|
|
4654
4871
|
result: ExecTxResult.fromPartial({})
|
|
4655
4872
|
};
|
|
4656
4873
|
}
|
|
4874
|
+
/**
|
|
4875
|
+
* TxResult contains results of executing the transaction.
|
|
4876
|
+
*
|
|
4877
|
+
* One usage is indexing transaction results.
|
|
4878
|
+
* @name TxResult
|
|
4879
|
+
* @package tendermint.abci
|
|
4880
|
+
* @see proto type: tendermint.abci.TxResult
|
|
4881
|
+
*/
|
|
4657
4882
|
export const TxResult = {
|
|
4658
4883
|
typeUrl: "/tendermint.abci.TxResult",
|
|
4659
4884
|
is(o) {
|
|
@@ -4763,6 +4988,11 @@ function createBaseValidator() {
|
|
|
4763
4988
|
power: BigInt(0)
|
|
4764
4989
|
};
|
|
4765
4990
|
}
|
|
4991
|
+
/**
|
|
4992
|
+
* @name Validator
|
|
4993
|
+
* @package tendermint.abci
|
|
4994
|
+
* @see proto type: tendermint.abci.Validator
|
|
4995
|
+
*/
|
|
4766
4996
|
export const Validator = {
|
|
4767
4997
|
typeUrl: "/tendermint.abci.Validator",
|
|
4768
4998
|
is(o) {
|
|
@@ -4845,6 +5075,11 @@ function createBaseValidatorUpdate() {
|
|
|
4845
5075
|
power: BigInt(0)
|
|
4846
5076
|
};
|
|
4847
5077
|
}
|
|
5078
|
+
/**
|
|
5079
|
+
* @name ValidatorUpdate
|
|
5080
|
+
* @package tendermint.abci
|
|
5081
|
+
* @see proto type: tendermint.abci.ValidatorUpdate
|
|
5082
|
+
*/
|
|
4848
5083
|
export const ValidatorUpdate = {
|
|
4849
5084
|
typeUrl: "/tendermint.abci.ValidatorUpdate",
|
|
4850
5085
|
is(o) {
|
|
@@ -4932,6 +5167,11 @@ function createBaseVoteInfo() {
|
|
|
4932
5167
|
blockIdFlag: 0
|
|
4933
5168
|
};
|
|
4934
5169
|
}
|
|
5170
|
+
/**
|
|
5171
|
+
* @name VoteInfo
|
|
5172
|
+
* @package tendermint.abci
|
|
5173
|
+
* @see proto type: tendermint.abci.VoteInfo
|
|
5174
|
+
*/
|
|
4935
5175
|
export const VoteInfo = {
|
|
4936
5176
|
typeUrl: "/tendermint.abci.VoteInfo",
|
|
4937
5177
|
is(o) {
|
|
@@ -5021,6 +5261,11 @@ function createBaseExtendedVoteInfo() {
|
|
|
5021
5261
|
blockIdFlag: 0
|
|
5022
5262
|
};
|
|
5023
5263
|
}
|
|
5264
|
+
/**
|
|
5265
|
+
* @name ExtendedVoteInfo
|
|
5266
|
+
* @package tendermint.abci
|
|
5267
|
+
* @see proto type: tendermint.abci.ExtendedVoteInfo
|
|
5268
|
+
*/
|
|
5024
5269
|
export const ExtendedVoteInfo = {
|
|
5025
5270
|
typeUrl: "/tendermint.abci.ExtendedVoteInfo",
|
|
5026
5271
|
is(o) {
|
|
@@ -5133,6 +5378,11 @@ function createBaseMisbehavior() {
|
|
|
5133
5378
|
totalVotingPower: BigInt(0)
|
|
5134
5379
|
};
|
|
5135
5380
|
}
|
|
5381
|
+
/**
|
|
5382
|
+
* @name Misbehavior
|
|
5383
|
+
* @package tendermint.abci
|
|
5384
|
+
* @see proto type: tendermint.abci.Misbehavior
|
|
5385
|
+
*/
|
|
5136
5386
|
export const Misbehavior = {
|
|
5137
5387
|
typeUrl: "/tendermint.abci.Misbehavior",
|
|
5138
5388
|
is(o) {
|
|
@@ -5256,6 +5506,11 @@ function createBaseSnapshot() {
|
|
|
5256
5506
|
metadata: new Uint8Array()
|
|
5257
5507
|
};
|
|
5258
5508
|
}
|
|
5509
|
+
/**
|
|
5510
|
+
* @name Snapshot
|
|
5511
|
+
* @package tendermint.abci
|
|
5512
|
+
* @see proto type: tendermint.abci.Snapshot
|
|
5513
|
+
*/
|
|
5259
5514
|
export const Snapshot = {
|
|
5260
5515
|
typeUrl: "/tendermint.abci.Snapshot",
|
|
5261
5516
|
is(o) {
|
|
@@ -6,6 +6,12 @@ function createBasePublicKey() {
|
|
|
6
6
|
secp256k1: undefined
|
|
7
7
|
};
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* PublicKey defines the keys available for use with Validators
|
|
11
|
+
* @name PublicKey
|
|
12
|
+
* @package tendermint.crypto
|
|
13
|
+
* @see proto type: tendermint.crypto.PublicKey
|
|
14
|
+
*/
|
|
9
15
|
export const PublicKey = {
|
|
10
16
|
typeUrl: "/tendermint.crypto.PublicKey",
|
|
11
17
|
is(o) {
|
|
@@ -9,6 +9,11 @@ function createBaseProof() {
|
|
|
9
9
|
aunts: []
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* @name Proof
|
|
14
|
+
* @package tendermint.crypto
|
|
15
|
+
* @see proto type: tendermint.crypto.Proof
|
|
16
|
+
*/
|
|
12
17
|
export const Proof = {
|
|
13
18
|
typeUrl: "/tendermint.crypto.Proof",
|
|
14
19
|
is(o) {
|
|
@@ -116,6 +121,11 @@ function createBaseValueOp() {
|
|
|
116
121
|
proof: undefined
|
|
117
122
|
};
|
|
118
123
|
}
|
|
124
|
+
/**
|
|
125
|
+
* @name ValueOp
|
|
126
|
+
* @package tendermint.crypto
|
|
127
|
+
* @see proto type: tendermint.crypto.ValueOp
|
|
128
|
+
*/
|
|
119
129
|
export const ValueOp = {
|
|
120
130
|
typeUrl: "/tendermint.crypto.ValueOp",
|
|
121
131
|
is(o) {
|
|
@@ -204,6 +214,11 @@ function createBaseDominoOp() {
|
|
|
204
214
|
output: ""
|
|
205
215
|
};
|
|
206
216
|
}
|
|
217
|
+
/**
|
|
218
|
+
* @name DominoOp
|
|
219
|
+
* @package tendermint.crypto
|
|
220
|
+
* @see proto type: tendermint.crypto.DominoOp
|
|
221
|
+
*/
|
|
207
222
|
export const DominoOp = {
|
|
208
223
|
typeUrl: "/tendermint.crypto.DominoOp",
|
|
209
224
|
is(o) {
|
|
@@ -298,6 +313,14 @@ function createBaseProofOp() {
|
|
|
298
313
|
data: new Uint8Array()
|
|
299
314
|
};
|
|
300
315
|
}
|
|
316
|
+
/**
|
|
317
|
+
* ProofOp defines an operation used for calculating Merkle root
|
|
318
|
+
* The data could be arbitrary format, providing nessecary data
|
|
319
|
+
* for example neighbouring node hash
|
|
320
|
+
* @name ProofOp
|
|
321
|
+
* @package tendermint.crypto
|
|
322
|
+
* @see proto type: tendermint.crypto.ProofOp
|
|
323
|
+
*/
|
|
301
324
|
export const ProofOp = {
|
|
302
325
|
typeUrl: "/tendermint.crypto.ProofOp",
|
|
303
326
|
is(o) {
|
|
@@ -390,6 +413,12 @@ function createBaseProofOps() {
|
|
|
390
413
|
ops: []
|
|
391
414
|
};
|
|
392
415
|
}
|
|
416
|
+
/**
|
|
417
|
+
* ProofOps is Merkle proof defined by the list of ProofOps
|
|
418
|
+
* @name ProofOps
|
|
419
|
+
* @package tendermint.crypto
|
|
420
|
+
* @see proto type: tendermint.crypto.ProofOps
|
|
421
|
+
*/
|
|
393
422
|
export const ProofOps = {
|
|
394
423
|
typeUrl: "/tendermint.crypto.ProofOps",
|
|
395
424
|
is(o) {
|
|
@@ -10,6 +10,11 @@ function createBaseEvidence() {
|
|
|
10
10
|
lightClientAttackEvidence: undefined
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* @name Evidence
|
|
15
|
+
* @package tendermint.types
|
|
16
|
+
* @see proto type: tendermint.types.Evidence
|
|
17
|
+
*/
|
|
13
18
|
export const Evidence = {
|
|
14
19
|
typeUrl: "/tendermint.types.Evidence",
|
|
15
20
|
is(o) {
|
|
@@ -101,6 +106,12 @@ function createBaseDuplicateVoteEvidence() {
|
|
|
101
106
|
timestamp: new Date()
|
|
102
107
|
};
|
|
103
108
|
}
|
|
109
|
+
/**
|
|
110
|
+
* DuplicateVoteEvidence contains evidence of a validator signed two conflicting votes.
|
|
111
|
+
* @name DuplicateVoteEvidence
|
|
112
|
+
* @package tendermint.types
|
|
113
|
+
* @see proto type: tendermint.types.DuplicateVoteEvidence
|
|
114
|
+
*/
|
|
104
115
|
export const DuplicateVoteEvidence = {
|
|
105
116
|
typeUrl: "/tendermint.types.DuplicateVoteEvidence",
|
|
106
117
|
is(o) {
|
|
@@ -224,6 +235,12 @@ function createBaseLightClientAttackEvidence() {
|
|
|
224
235
|
timestamp: new Date()
|
|
225
236
|
};
|
|
226
237
|
}
|
|
238
|
+
/**
|
|
239
|
+
* LightClientAttackEvidence contains evidence of a set of validators attempting to mislead a light client.
|
|
240
|
+
* @name LightClientAttackEvidence
|
|
241
|
+
* @package tendermint.types
|
|
242
|
+
* @see proto type: tendermint.types.LightClientAttackEvidence
|
|
243
|
+
*/
|
|
227
244
|
export const LightClientAttackEvidence = {
|
|
228
245
|
typeUrl: "/tendermint.types.LightClientAttackEvidence",
|
|
229
246
|
is(o) {
|
|
@@ -347,6 +364,11 @@ function createBaseEvidenceList() {
|
|
|
347
364
|
evidence: []
|
|
348
365
|
};
|
|
349
366
|
}
|
|
367
|
+
/**
|
|
368
|
+
* @name EvidenceList
|
|
369
|
+
* @package tendermint.types
|
|
370
|
+
* @see proto type: tendermint.types.EvidenceList
|
|
371
|
+
*/
|
|
350
372
|
export const EvidenceList = {
|
|
351
373
|
typeUrl: "/tendermint.types.EvidenceList",
|
|
352
374
|
is(o) {
|