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
package/tendermint/abci/types.js
CHANGED
|
@@ -317,6 +317,11 @@ function createBaseRequest() {
|
|
|
317
317
|
finalizeBlock: undefined
|
|
318
318
|
};
|
|
319
319
|
}
|
|
320
|
+
/**
|
|
321
|
+
* @name Request
|
|
322
|
+
* @package tendermint.abci
|
|
323
|
+
* @see proto type: tendermint.abci.Request
|
|
324
|
+
*/
|
|
320
325
|
exports.Request = {
|
|
321
326
|
typeUrl: "/tendermint.abci.Request",
|
|
322
327
|
is(o) {
|
|
@@ -572,6 +577,11 @@ function createBaseRequestEcho() {
|
|
|
572
577
|
message: ""
|
|
573
578
|
};
|
|
574
579
|
}
|
|
580
|
+
/**
|
|
581
|
+
* @name RequestEcho
|
|
582
|
+
* @package tendermint.abci
|
|
583
|
+
* @see proto type: tendermint.abci.RequestEcho
|
|
584
|
+
*/
|
|
575
585
|
exports.RequestEcho = {
|
|
576
586
|
typeUrl: "/tendermint.abci.RequestEcho",
|
|
577
587
|
is(o) {
|
|
@@ -640,6 +650,11 @@ exports.RequestEcho = {
|
|
|
640
650
|
function createBaseRequestFlush() {
|
|
641
651
|
return {};
|
|
642
652
|
}
|
|
653
|
+
/**
|
|
654
|
+
* @name RequestFlush
|
|
655
|
+
* @package tendermint.abci
|
|
656
|
+
* @see proto type: tendermint.abci.RequestFlush
|
|
657
|
+
*/
|
|
643
658
|
exports.RequestFlush = {
|
|
644
659
|
typeUrl: "/tendermint.abci.RequestFlush",
|
|
645
660
|
is(o) {
|
|
@@ -702,6 +717,11 @@ function createBaseRequestInfo() {
|
|
|
702
717
|
abciVersion: ""
|
|
703
718
|
};
|
|
704
719
|
}
|
|
720
|
+
/**
|
|
721
|
+
* @name RequestInfo
|
|
722
|
+
* @package tendermint.abci
|
|
723
|
+
* @see proto type: tendermint.abci.RequestInfo
|
|
724
|
+
*/
|
|
705
725
|
exports.RequestInfo = {
|
|
706
726
|
typeUrl: "/tendermint.abci.RequestInfo",
|
|
707
727
|
is(o) {
|
|
@@ -810,6 +830,11 @@ function createBaseRequestInitChain() {
|
|
|
810
830
|
initialHeight: BigInt(0)
|
|
811
831
|
};
|
|
812
832
|
}
|
|
833
|
+
/**
|
|
834
|
+
* @name RequestInitChain
|
|
835
|
+
* @package tendermint.abci
|
|
836
|
+
* @see proto type: tendermint.abci.RequestInitChain
|
|
837
|
+
*/
|
|
813
838
|
exports.RequestInitChain = {
|
|
814
839
|
typeUrl: "/tendermint.abci.RequestInitChain",
|
|
815
840
|
is(o) {
|
|
@@ -947,6 +972,11 @@ function createBaseRequestQuery() {
|
|
|
947
972
|
prove: false
|
|
948
973
|
};
|
|
949
974
|
}
|
|
975
|
+
/**
|
|
976
|
+
* @name RequestQuery
|
|
977
|
+
* @package tendermint.abci
|
|
978
|
+
* @see proto type: tendermint.abci.RequestQuery
|
|
979
|
+
*/
|
|
950
980
|
exports.RequestQuery = {
|
|
951
981
|
typeUrl: "/tendermint.abci.RequestQuery",
|
|
952
982
|
is(o) {
|
|
@@ -1051,6 +1081,11 @@ function createBaseRequestCheckTx() {
|
|
|
1051
1081
|
type: 0
|
|
1052
1082
|
};
|
|
1053
1083
|
}
|
|
1084
|
+
/**
|
|
1085
|
+
* @name RequestCheckTx
|
|
1086
|
+
* @package tendermint.abci
|
|
1087
|
+
* @see proto type: tendermint.abci.RequestCheckTx
|
|
1088
|
+
*/
|
|
1054
1089
|
exports.RequestCheckTx = {
|
|
1055
1090
|
typeUrl: "/tendermint.abci.RequestCheckTx",
|
|
1056
1091
|
is(o) {
|
|
@@ -1130,6 +1165,11 @@ exports.RequestCheckTx = {
|
|
|
1130
1165
|
function createBaseRequestCommit() {
|
|
1131
1166
|
return {};
|
|
1132
1167
|
}
|
|
1168
|
+
/**
|
|
1169
|
+
* @name RequestCommit
|
|
1170
|
+
* @package tendermint.abci
|
|
1171
|
+
* @see proto type: tendermint.abci.RequestCommit
|
|
1172
|
+
*/
|
|
1133
1173
|
exports.RequestCommit = {
|
|
1134
1174
|
typeUrl: "/tendermint.abci.RequestCommit",
|
|
1135
1175
|
is(o) {
|
|
@@ -1187,6 +1227,12 @@ exports.RequestCommit = {
|
|
|
1187
1227
|
function createBaseRequestListSnapshots() {
|
|
1188
1228
|
return {};
|
|
1189
1229
|
}
|
|
1230
|
+
/**
|
|
1231
|
+
* lists available snapshots
|
|
1232
|
+
* @name RequestListSnapshots
|
|
1233
|
+
* @package tendermint.abci
|
|
1234
|
+
* @see proto type: tendermint.abci.RequestListSnapshots
|
|
1235
|
+
*/
|
|
1190
1236
|
exports.RequestListSnapshots = {
|
|
1191
1237
|
typeUrl: "/tendermint.abci.RequestListSnapshots",
|
|
1192
1238
|
is(o) {
|
|
@@ -1247,6 +1293,12 @@ function createBaseRequestOfferSnapshot() {
|
|
|
1247
1293
|
appHash: new Uint8Array()
|
|
1248
1294
|
};
|
|
1249
1295
|
}
|
|
1296
|
+
/**
|
|
1297
|
+
* offers a snapshot to the application
|
|
1298
|
+
* @name RequestOfferSnapshot
|
|
1299
|
+
* @package tendermint.abci
|
|
1300
|
+
* @see proto type: tendermint.abci.RequestOfferSnapshot
|
|
1301
|
+
*/
|
|
1250
1302
|
exports.RequestOfferSnapshot = {
|
|
1251
1303
|
typeUrl: "/tendermint.abci.RequestOfferSnapshot",
|
|
1252
1304
|
is(o) {
|
|
@@ -1335,6 +1387,12 @@ function createBaseRequestLoadSnapshotChunk() {
|
|
|
1335
1387
|
chunk: 0
|
|
1336
1388
|
};
|
|
1337
1389
|
}
|
|
1390
|
+
/**
|
|
1391
|
+
* loads a snapshot chunk
|
|
1392
|
+
* @name RequestLoadSnapshotChunk
|
|
1393
|
+
* @package tendermint.abci
|
|
1394
|
+
* @see proto type: tendermint.abci.RequestLoadSnapshotChunk
|
|
1395
|
+
*/
|
|
1338
1396
|
exports.RequestLoadSnapshotChunk = {
|
|
1339
1397
|
typeUrl: "/tendermint.abci.RequestLoadSnapshotChunk",
|
|
1340
1398
|
is(o) {
|
|
@@ -1429,6 +1487,12 @@ function createBaseRequestApplySnapshotChunk() {
|
|
|
1429
1487
|
sender: ""
|
|
1430
1488
|
};
|
|
1431
1489
|
}
|
|
1490
|
+
/**
|
|
1491
|
+
* Applies a snapshot chunk
|
|
1492
|
+
* @name RequestApplySnapshotChunk
|
|
1493
|
+
* @package tendermint.abci
|
|
1494
|
+
* @see proto type: tendermint.abci.RequestApplySnapshotChunk
|
|
1495
|
+
*/
|
|
1432
1496
|
exports.RequestApplySnapshotChunk = {
|
|
1433
1497
|
typeUrl: "/tendermint.abci.RequestApplySnapshotChunk",
|
|
1434
1498
|
is(o) {
|
|
@@ -1528,6 +1592,11 @@ function createBaseRequestPrepareProposal() {
|
|
|
1528
1592
|
proposerAddress: new Uint8Array()
|
|
1529
1593
|
};
|
|
1530
1594
|
}
|
|
1595
|
+
/**
|
|
1596
|
+
* @name RequestPrepareProposal
|
|
1597
|
+
* @package tendermint.abci
|
|
1598
|
+
* @see proto type: tendermint.abci.RequestPrepareProposal
|
|
1599
|
+
*/
|
|
1531
1600
|
exports.RequestPrepareProposal = {
|
|
1532
1601
|
typeUrl: "/tendermint.abci.RequestPrepareProposal",
|
|
1533
1602
|
is(o) {
|
|
@@ -1694,6 +1763,11 @@ function createBaseRequestProcessProposal() {
|
|
|
1694
1763
|
proposerAddress: new Uint8Array()
|
|
1695
1764
|
};
|
|
1696
1765
|
}
|
|
1766
|
+
/**
|
|
1767
|
+
* @name RequestProcessProposal
|
|
1768
|
+
* @package tendermint.abci
|
|
1769
|
+
* @see proto type: tendermint.abci.RequestProcessProposal
|
|
1770
|
+
*/
|
|
1697
1771
|
exports.RequestProcessProposal = {
|
|
1698
1772
|
typeUrl: "/tendermint.abci.RequestProcessProposal",
|
|
1699
1773
|
is(o) {
|
|
@@ -1860,6 +1934,12 @@ function createBaseRequestExtendVote() {
|
|
|
1860
1934
|
proposerAddress: new Uint8Array()
|
|
1861
1935
|
};
|
|
1862
1936
|
}
|
|
1937
|
+
/**
|
|
1938
|
+
* Extends a vote with application-injected data
|
|
1939
|
+
* @name RequestExtendVote
|
|
1940
|
+
* @package tendermint.abci
|
|
1941
|
+
* @see proto type: tendermint.abci.RequestExtendVote
|
|
1942
|
+
*/
|
|
1863
1943
|
exports.RequestExtendVote = {
|
|
1864
1944
|
typeUrl: "/tendermint.abci.RequestExtendVote",
|
|
1865
1945
|
is(o) {
|
|
@@ -2022,6 +2102,12 @@ function createBaseRequestVerifyVoteExtension() {
|
|
|
2022
2102
|
voteExtension: new Uint8Array()
|
|
2023
2103
|
};
|
|
2024
2104
|
}
|
|
2105
|
+
/**
|
|
2106
|
+
* Verify the vote extension
|
|
2107
|
+
* @name RequestVerifyVoteExtension
|
|
2108
|
+
* @package tendermint.abci
|
|
2109
|
+
* @see proto type: tendermint.abci.RequestVerifyVoteExtension
|
|
2110
|
+
*/
|
|
2025
2111
|
exports.RequestVerifyVoteExtension = {
|
|
2026
2112
|
typeUrl: "/tendermint.abci.RequestVerifyVoteExtension",
|
|
2027
2113
|
is(o) {
|
|
@@ -2132,6 +2218,11 @@ function createBaseRequestFinalizeBlock() {
|
|
|
2132
2218
|
proposerAddress: new Uint8Array()
|
|
2133
2219
|
};
|
|
2134
2220
|
}
|
|
2221
|
+
/**
|
|
2222
|
+
* @name RequestFinalizeBlock
|
|
2223
|
+
* @package tendermint.abci
|
|
2224
|
+
* @see proto type: tendermint.abci.RequestFinalizeBlock
|
|
2225
|
+
*/
|
|
2135
2226
|
exports.RequestFinalizeBlock = {
|
|
2136
2227
|
typeUrl: "/tendermint.abci.RequestFinalizeBlock",
|
|
2137
2228
|
is(o) {
|
|
@@ -2307,6 +2398,11 @@ function createBaseResponse() {
|
|
|
2307
2398
|
finalizeBlock: undefined
|
|
2308
2399
|
};
|
|
2309
2400
|
}
|
|
2401
|
+
/**
|
|
2402
|
+
* @name Response
|
|
2403
|
+
* @package tendermint.abci
|
|
2404
|
+
* @see proto type: tendermint.abci.Response
|
|
2405
|
+
*/
|
|
2310
2406
|
exports.Response = {
|
|
2311
2407
|
typeUrl: "/tendermint.abci.Response",
|
|
2312
2408
|
is(o) {
|
|
@@ -2574,6 +2670,12 @@ function createBaseResponseException() {
|
|
|
2574
2670
|
error: ""
|
|
2575
2671
|
};
|
|
2576
2672
|
}
|
|
2673
|
+
/**
|
|
2674
|
+
* nondeterministic
|
|
2675
|
+
* @name ResponseException
|
|
2676
|
+
* @package tendermint.abci
|
|
2677
|
+
* @see proto type: tendermint.abci.ResponseException
|
|
2678
|
+
*/
|
|
2577
2679
|
exports.ResponseException = {
|
|
2578
2680
|
typeUrl: "/tendermint.abci.ResponseException",
|
|
2579
2681
|
is(o) {
|
|
@@ -2644,6 +2746,11 @@ function createBaseResponseEcho() {
|
|
|
2644
2746
|
message: ""
|
|
2645
2747
|
};
|
|
2646
2748
|
}
|
|
2749
|
+
/**
|
|
2750
|
+
* @name ResponseEcho
|
|
2751
|
+
* @package tendermint.abci
|
|
2752
|
+
* @see proto type: tendermint.abci.ResponseEcho
|
|
2753
|
+
*/
|
|
2647
2754
|
exports.ResponseEcho = {
|
|
2648
2755
|
typeUrl: "/tendermint.abci.ResponseEcho",
|
|
2649
2756
|
is(o) {
|
|
@@ -2712,6 +2819,11 @@ exports.ResponseEcho = {
|
|
|
2712
2819
|
function createBaseResponseFlush() {
|
|
2713
2820
|
return {};
|
|
2714
2821
|
}
|
|
2822
|
+
/**
|
|
2823
|
+
* @name ResponseFlush
|
|
2824
|
+
* @package tendermint.abci
|
|
2825
|
+
* @see proto type: tendermint.abci.ResponseFlush
|
|
2826
|
+
*/
|
|
2715
2827
|
exports.ResponseFlush = {
|
|
2716
2828
|
typeUrl: "/tendermint.abci.ResponseFlush",
|
|
2717
2829
|
is(o) {
|
|
@@ -2775,6 +2887,11 @@ function createBaseResponseInfo() {
|
|
|
2775
2887
|
lastBlockAppHash: new Uint8Array()
|
|
2776
2888
|
};
|
|
2777
2889
|
}
|
|
2890
|
+
/**
|
|
2891
|
+
* @name ResponseInfo
|
|
2892
|
+
* @package tendermint.abci
|
|
2893
|
+
* @see proto type: tendermint.abci.ResponseInfo
|
|
2894
|
+
*/
|
|
2778
2895
|
exports.ResponseInfo = {
|
|
2779
2896
|
typeUrl: "/tendermint.abci.ResponseInfo",
|
|
2780
2897
|
is(o) {
|
|
@@ -2891,6 +3008,11 @@ function createBaseResponseInitChain() {
|
|
|
2891
3008
|
appHash: new Uint8Array()
|
|
2892
3009
|
};
|
|
2893
3010
|
}
|
|
3011
|
+
/**
|
|
3012
|
+
* @name ResponseInitChain
|
|
3013
|
+
* @package tendermint.abci
|
|
3014
|
+
* @see proto type: tendermint.abci.ResponseInitChain
|
|
3015
|
+
*/
|
|
2894
3016
|
exports.ResponseInitChain = {
|
|
2895
3017
|
typeUrl: "/tendermint.abci.ResponseInitChain",
|
|
2896
3018
|
is(o) {
|
|
@@ -3000,6 +3122,11 @@ function createBaseResponseQuery() {
|
|
|
3000
3122
|
codespace: ""
|
|
3001
3123
|
};
|
|
3002
3124
|
}
|
|
3125
|
+
/**
|
|
3126
|
+
* @name ResponseQuery
|
|
3127
|
+
* @package tendermint.abci
|
|
3128
|
+
* @see proto type: tendermint.abci.ResponseQuery
|
|
3129
|
+
*/
|
|
3003
3130
|
exports.ResponseQuery = {
|
|
3004
3131
|
typeUrl: "/tendermint.abci.ResponseQuery",
|
|
3005
3132
|
is(o) {
|
|
@@ -3170,6 +3297,11 @@ function createBaseResponseCheckTx() {
|
|
|
3170
3297
|
codespace: ""
|
|
3171
3298
|
};
|
|
3172
3299
|
}
|
|
3300
|
+
/**
|
|
3301
|
+
* @name ResponseCheckTx
|
|
3302
|
+
* @package tendermint.abci
|
|
3303
|
+
* @see proto type: tendermint.abci.ResponseCheckTx
|
|
3304
|
+
*/
|
|
3173
3305
|
exports.ResponseCheckTx = {
|
|
3174
3306
|
typeUrl: "/tendermint.abci.ResponseCheckTx",
|
|
3175
3307
|
is(o) {
|
|
@@ -3325,6 +3457,11 @@ function createBaseResponseCommit() {
|
|
|
3325
3457
|
retainHeight: BigInt(0)
|
|
3326
3458
|
};
|
|
3327
3459
|
}
|
|
3460
|
+
/**
|
|
3461
|
+
* @name ResponseCommit
|
|
3462
|
+
* @package tendermint.abci
|
|
3463
|
+
* @see proto type: tendermint.abci.ResponseCommit
|
|
3464
|
+
*/
|
|
3328
3465
|
exports.ResponseCommit = {
|
|
3329
3466
|
typeUrl: "/tendermint.abci.ResponseCommit",
|
|
3330
3467
|
is(o) {
|
|
@@ -3395,6 +3532,11 @@ function createBaseResponseListSnapshots() {
|
|
|
3395
3532
|
snapshots: []
|
|
3396
3533
|
};
|
|
3397
3534
|
}
|
|
3535
|
+
/**
|
|
3536
|
+
* @name ResponseListSnapshots
|
|
3537
|
+
* @package tendermint.abci
|
|
3538
|
+
* @see proto type: tendermint.abci.ResponseListSnapshots
|
|
3539
|
+
*/
|
|
3398
3540
|
exports.ResponseListSnapshots = {
|
|
3399
3541
|
typeUrl: "/tendermint.abci.ResponseListSnapshots",
|
|
3400
3542
|
is(o) {
|
|
@@ -3473,6 +3615,11 @@ function createBaseResponseOfferSnapshot() {
|
|
|
3473
3615
|
result: 0
|
|
3474
3616
|
};
|
|
3475
3617
|
}
|
|
3618
|
+
/**
|
|
3619
|
+
* @name ResponseOfferSnapshot
|
|
3620
|
+
* @package tendermint.abci
|
|
3621
|
+
* @see proto type: tendermint.abci.ResponseOfferSnapshot
|
|
3622
|
+
*/
|
|
3476
3623
|
exports.ResponseOfferSnapshot = {
|
|
3477
3624
|
typeUrl: "/tendermint.abci.ResponseOfferSnapshot",
|
|
3478
3625
|
is(o) {
|
|
@@ -3543,6 +3690,11 @@ function createBaseResponseLoadSnapshotChunk() {
|
|
|
3543
3690
|
chunk: new Uint8Array()
|
|
3544
3691
|
};
|
|
3545
3692
|
}
|
|
3693
|
+
/**
|
|
3694
|
+
* @name ResponseLoadSnapshotChunk
|
|
3695
|
+
* @package tendermint.abci
|
|
3696
|
+
* @see proto type: tendermint.abci.ResponseLoadSnapshotChunk
|
|
3697
|
+
*/
|
|
3546
3698
|
exports.ResponseLoadSnapshotChunk = {
|
|
3547
3699
|
typeUrl: "/tendermint.abci.ResponseLoadSnapshotChunk",
|
|
3548
3700
|
is(o) {
|
|
@@ -3615,6 +3767,11 @@ function createBaseResponseApplySnapshotChunk() {
|
|
|
3615
3767
|
rejectSenders: []
|
|
3616
3768
|
};
|
|
3617
3769
|
}
|
|
3770
|
+
/**
|
|
3771
|
+
* @name ResponseApplySnapshotChunk
|
|
3772
|
+
* @package tendermint.abci
|
|
3773
|
+
* @see proto type: tendermint.abci.ResponseApplySnapshotChunk
|
|
3774
|
+
*/
|
|
3618
3775
|
exports.ResponseApplySnapshotChunk = {
|
|
3619
3776
|
typeUrl: "/tendermint.abci.ResponseApplySnapshotChunk",
|
|
3620
3777
|
is(o) {
|
|
@@ -3723,6 +3880,11 @@ function createBaseResponsePrepareProposal() {
|
|
|
3723
3880
|
txs: []
|
|
3724
3881
|
};
|
|
3725
3882
|
}
|
|
3883
|
+
/**
|
|
3884
|
+
* @name ResponsePrepareProposal
|
|
3885
|
+
* @package tendermint.abci
|
|
3886
|
+
* @see proto type: tendermint.abci.ResponsePrepareProposal
|
|
3887
|
+
*/
|
|
3726
3888
|
exports.ResponsePrepareProposal = {
|
|
3727
3889
|
typeUrl: "/tendermint.abci.ResponsePrepareProposal",
|
|
3728
3890
|
is(o) {
|
|
@@ -3796,6 +3958,11 @@ function createBaseResponseProcessProposal() {
|
|
|
3796
3958
|
status: 0
|
|
3797
3959
|
};
|
|
3798
3960
|
}
|
|
3961
|
+
/**
|
|
3962
|
+
* @name ResponseProcessProposal
|
|
3963
|
+
* @package tendermint.abci
|
|
3964
|
+
* @see proto type: tendermint.abci.ResponseProcessProposal
|
|
3965
|
+
*/
|
|
3799
3966
|
exports.ResponseProcessProposal = {
|
|
3800
3967
|
typeUrl: "/tendermint.abci.ResponseProcessProposal",
|
|
3801
3968
|
is(o) {
|
|
@@ -3866,6 +4033,11 @@ function createBaseResponseExtendVote() {
|
|
|
3866
4033
|
voteExtension: new Uint8Array()
|
|
3867
4034
|
};
|
|
3868
4035
|
}
|
|
4036
|
+
/**
|
|
4037
|
+
* @name ResponseExtendVote
|
|
4038
|
+
* @package tendermint.abci
|
|
4039
|
+
* @see proto type: tendermint.abci.ResponseExtendVote
|
|
4040
|
+
*/
|
|
3869
4041
|
exports.ResponseExtendVote = {
|
|
3870
4042
|
typeUrl: "/tendermint.abci.ResponseExtendVote",
|
|
3871
4043
|
is(o) {
|
|
@@ -3936,6 +4108,11 @@ function createBaseResponseVerifyVoteExtension() {
|
|
|
3936
4108
|
status: 0
|
|
3937
4109
|
};
|
|
3938
4110
|
}
|
|
4111
|
+
/**
|
|
4112
|
+
* @name ResponseVerifyVoteExtension
|
|
4113
|
+
* @package tendermint.abci
|
|
4114
|
+
* @see proto type: tendermint.abci.ResponseVerifyVoteExtension
|
|
4115
|
+
*/
|
|
3939
4116
|
exports.ResponseVerifyVoteExtension = {
|
|
3940
4117
|
typeUrl: "/tendermint.abci.ResponseVerifyVoteExtension",
|
|
3941
4118
|
is(o) {
|
|
@@ -4010,6 +4187,11 @@ function createBaseResponseFinalizeBlock() {
|
|
|
4010
4187
|
appHash: new Uint8Array()
|
|
4011
4188
|
};
|
|
4012
4189
|
}
|
|
4190
|
+
/**
|
|
4191
|
+
* @name ResponseFinalizeBlock
|
|
4192
|
+
* @package tendermint.abci
|
|
4193
|
+
* @see proto type: tendermint.abci.ResponseFinalizeBlock
|
|
4194
|
+
*/
|
|
4013
4195
|
exports.ResponseFinalizeBlock = {
|
|
4014
4196
|
typeUrl: "/tendermint.abci.ResponseFinalizeBlock",
|
|
4015
4197
|
is(o) {
|
|
@@ -4142,6 +4324,11 @@ function createBaseCommitInfo() {
|
|
|
4142
4324
|
votes: []
|
|
4143
4325
|
};
|
|
4144
4326
|
}
|
|
4327
|
+
/**
|
|
4328
|
+
* @name CommitInfo
|
|
4329
|
+
* @package tendermint.abci
|
|
4330
|
+
* @see proto type: tendermint.abci.CommitInfo
|
|
4331
|
+
*/
|
|
4145
4332
|
exports.CommitInfo = {
|
|
4146
4333
|
typeUrl: "/tendermint.abci.CommitInfo",
|
|
4147
4334
|
is(o) {
|
|
@@ -4232,6 +4419,14 @@ function createBaseExtendedCommitInfo() {
|
|
|
4232
4419
|
votes: []
|
|
4233
4420
|
};
|
|
4234
4421
|
}
|
|
4422
|
+
/**
|
|
4423
|
+
* ExtendedCommitInfo is similar to CommitInfo except that it is only used in
|
|
4424
|
+
* the PrepareProposal request such that CometBFT can provide vote extensions
|
|
4425
|
+
* to the application.
|
|
4426
|
+
* @name ExtendedCommitInfo
|
|
4427
|
+
* @package tendermint.abci
|
|
4428
|
+
* @see proto type: tendermint.abci.ExtendedCommitInfo
|
|
4429
|
+
*/
|
|
4235
4430
|
exports.ExtendedCommitInfo = {
|
|
4236
4431
|
typeUrl: "/tendermint.abci.ExtendedCommitInfo",
|
|
4237
4432
|
is(o) {
|
|
@@ -4322,6 +4517,14 @@ function createBaseEvent() {
|
|
|
4322
4517
|
attributes: []
|
|
4323
4518
|
};
|
|
4324
4519
|
}
|
|
4520
|
+
/**
|
|
4521
|
+
* Event allows application developers to attach additional information to
|
|
4522
|
+
* ResponseFinalizeBlock and ResponseCheckTx.
|
|
4523
|
+
* Later, transactions may be queried using these events.
|
|
4524
|
+
* @name Event
|
|
4525
|
+
* @package tendermint.abci
|
|
4526
|
+
* @see proto type: tendermint.abci.Event
|
|
4527
|
+
*/
|
|
4325
4528
|
exports.Event = {
|
|
4326
4529
|
typeUrl: "/tendermint.abci.Event",
|
|
4327
4530
|
is(o) {
|
|
@@ -4413,6 +4616,12 @@ function createBaseEventAttribute() {
|
|
|
4413
4616
|
index: false
|
|
4414
4617
|
};
|
|
4415
4618
|
}
|
|
4619
|
+
/**
|
|
4620
|
+
* EventAttribute is a single key-value pair, associated with an event.
|
|
4621
|
+
* @name EventAttribute
|
|
4622
|
+
* @package tendermint.abci
|
|
4623
|
+
* @see proto type: tendermint.abci.EventAttribute
|
|
4624
|
+
*/
|
|
4416
4625
|
exports.EventAttribute = {
|
|
4417
4626
|
typeUrl: "/tendermint.abci.EventAttribute",
|
|
4418
4627
|
is(o) {
|
|
@@ -4512,6 +4721,14 @@ function createBaseExecTxResult() {
|
|
|
4512
4721
|
codespace: ""
|
|
4513
4722
|
};
|
|
4514
4723
|
}
|
|
4724
|
+
/**
|
|
4725
|
+
* ExecTxResult contains results of executing one individual transaction.
|
|
4726
|
+
*
|
|
4727
|
+
* * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted
|
|
4728
|
+
* @name ExecTxResult
|
|
4729
|
+
* @package tendermint.abci
|
|
4730
|
+
* @see proto type: tendermint.abci.ExecTxResult
|
|
4731
|
+
*/
|
|
4515
4732
|
exports.ExecTxResult = {
|
|
4516
4733
|
typeUrl: "/tendermint.abci.ExecTxResult",
|
|
4517
4734
|
is(o) {
|
|
@@ -4670,6 +4887,14 @@ function createBaseTxResult() {
|
|
|
4670
4887
|
result: exports.ExecTxResult.fromPartial({})
|
|
4671
4888
|
};
|
|
4672
4889
|
}
|
|
4890
|
+
/**
|
|
4891
|
+
* TxResult contains results of executing the transaction.
|
|
4892
|
+
*
|
|
4893
|
+
* One usage is indexing transaction results.
|
|
4894
|
+
* @name TxResult
|
|
4895
|
+
* @package tendermint.abci
|
|
4896
|
+
* @see proto type: tendermint.abci.TxResult
|
|
4897
|
+
*/
|
|
4673
4898
|
exports.TxResult = {
|
|
4674
4899
|
typeUrl: "/tendermint.abci.TxResult",
|
|
4675
4900
|
is(o) {
|
|
@@ -4779,6 +5004,11 @@ function createBaseValidator() {
|
|
|
4779
5004
|
power: BigInt(0)
|
|
4780
5005
|
};
|
|
4781
5006
|
}
|
|
5007
|
+
/**
|
|
5008
|
+
* @name Validator
|
|
5009
|
+
* @package tendermint.abci
|
|
5010
|
+
* @see proto type: tendermint.abci.Validator
|
|
5011
|
+
*/
|
|
4782
5012
|
exports.Validator = {
|
|
4783
5013
|
typeUrl: "/tendermint.abci.Validator",
|
|
4784
5014
|
is(o) {
|
|
@@ -4861,6 +5091,11 @@ function createBaseValidatorUpdate() {
|
|
|
4861
5091
|
power: BigInt(0)
|
|
4862
5092
|
};
|
|
4863
5093
|
}
|
|
5094
|
+
/**
|
|
5095
|
+
* @name ValidatorUpdate
|
|
5096
|
+
* @package tendermint.abci
|
|
5097
|
+
* @see proto type: tendermint.abci.ValidatorUpdate
|
|
5098
|
+
*/
|
|
4864
5099
|
exports.ValidatorUpdate = {
|
|
4865
5100
|
typeUrl: "/tendermint.abci.ValidatorUpdate",
|
|
4866
5101
|
is(o) {
|
|
@@ -4948,6 +5183,11 @@ function createBaseVoteInfo() {
|
|
|
4948
5183
|
blockIdFlag: 0
|
|
4949
5184
|
};
|
|
4950
5185
|
}
|
|
5186
|
+
/**
|
|
5187
|
+
* @name VoteInfo
|
|
5188
|
+
* @package tendermint.abci
|
|
5189
|
+
* @see proto type: tendermint.abci.VoteInfo
|
|
5190
|
+
*/
|
|
4951
5191
|
exports.VoteInfo = {
|
|
4952
5192
|
typeUrl: "/tendermint.abci.VoteInfo",
|
|
4953
5193
|
is(o) {
|
|
@@ -5037,6 +5277,11 @@ function createBaseExtendedVoteInfo() {
|
|
|
5037
5277
|
blockIdFlag: 0
|
|
5038
5278
|
};
|
|
5039
5279
|
}
|
|
5280
|
+
/**
|
|
5281
|
+
* @name ExtendedVoteInfo
|
|
5282
|
+
* @package tendermint.abci
|
|
5283
|
+
* @see proto type: tendermint.abci.ExtendedVoteInfo
|
|
5284
|
+
*/
|
|
5040
5285
|
exports.ExtendedVoteInfo = {
|
|
5041
5286
|
typeUrl: "/tendermint.abci.ExtendedVoteInfo",
|
|
5042
5287
|
is(o) {
|
|
@@ -5149,6 +5394,11 @@ function createBaseMisbehavior() {
|
|
|
5149
5394
|
totalVotingPower: BigInt(0)
|
|
5150
5395
|
};
|
|
5151
5396
|
}
|
|
5397
|
+
/**
|
|
5398
|
+
* @name Misbehavior
|
|
5399
|
+
* @package tendermint.abci
|
|
5400
|
+
* @see proto type: tendermint.abci.Misbehavior
|
|
5401
|
+
*/
|
|
5152
5402
|
exports.Misbehavior = {
|
|
5153
5403
|
typeUrl: "/tendermint.abci.Misbehavior",
|
|
5154
5404
|
is(o) {
|
|
@@ -5272,6 +5522,11 @@ function createBaseSnapshot() {
|
|
|
5272
5522
|
metadata: new Uint8Array()
|
|
5273
5523
|
};
|
|
5274
5524
|
}
|
|
5525
|
+
/**
|
|
5526
|
+
* @name Snapshot
|
|
5527
|
+
* @package tendermint.abci
|
|
5528
|
+
* @see proto type: tendermint.abci.Snapshot
|
|
5529
|
+
*/
|
|
5275
5530
|
exports.Snapshot = {
|
|
5276
5531
|
typeUrl: "/tendermint.abci.Snapshot",
|
|
5277
5532
|
is(o) {
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "../../binary";
|
|
2
2
|
import { DeepPartial } from "../../helpers";
|
|
3
|
-
/**
|
|
3
|
+
/**
|
|
4
|
+
* PublicKey defines the keys available for use with Validators
|
|
5
|
+
* @name PublicKey
|
|
6
|
+
* @package tendermint.crypto
|
|
7
|
+
* @see proto type: tendermint.crypto.PublicKey
|
|
8
|
+
*/
|
|
4
9
|
export interface PublicKey {
|
|
5
10
|
ed25519?: Uint8Array;
|
|
6
11
|
secp256k1?: Uint8Array;
|
|
@@ -9,7 +14,12 @@ export interface PublicKeyProtoMsg {
|
|
|
9
14
|
typeUrl: "/tendermint.crypto.PublicKey";
|
|
10
15
|
value: Uint8Array;
|
|
11
16
|
}
|
|
12
|
-
/**
|
|
17
|
+
/**
|
|
18
|
+
* PublicKey defines the keys available for use with Validators
|
|
19
|
+
* @name PublicKeyAmino
|
|
20
|
+
* @package tendermint.crypto
|
|
21
|
+
* @see proto type: tendermint.crypto.PublicKey
|
|
22
|
+
*/
|
|
13
23
|
export interface PublicKeyAmino {
|
|
14
24
|
ed25519?: string;
|
|
15
25
|
secp256k1?: string;
|
|
@@ -18,6 +28,12 @@ export interface PublicKeyAminoMsg {
|
|
|
18
28
|
type: "/tendermint.crypto.PublicKey";
|
|
19
29
|
value: PublicKeyAmino;
|
|
20
30
|
}
|
|
31
|
+
/**
|
|
32
|
+
* PublicKey defines the keys available for use with Validators
|
|
33
|
+
* @name PublicKey
|
|
34
|
+
* @package tendermint.crypto
|
|
35
|
+
* @see proto type: tendermint.crypto.PublicKey
|
|
36
|
+
*/
|
|
21
37
|
export declare const PublicKey: {
|
|
22
38
|
typeUrl: string;
|
|
23
39
|
is(o: any): o is PublicKey;
|
|
@@ -9,6 +9,12 @@ function createBasePublicKey() {
|
|
|
9
9
|
secp256k1: undefined
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* PublicKey defines the keys available for use with Validators
|
|
14
|
+
* @name PublicKey
|
|
15
|
+
* @package tendermint.crypto
|
|
16
|
+
* @see proto type: tendermint.crypto.PublicKey
|
|
17
|
+
*/
|
|
12
18
|
exports.PublicKey = {
|
|
13
19
|
typeUrl: "/tendermint.crypto.PublicKey",
|
|
14
20
|
is(o) {
|