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
|
@@ -4,6 +4,9 @@ import { DeepPartial } from "../../helpers";
|
|
|
4
4
|
/**
|
|
5
5
|
* ConsensusParams contains consensus critical parameters that determine the
|
|
6
6
|
* validity of blocks.
|
|
7
|
+
* @name ConsensusParams
|
|
8
|
+
* @package tendermint.types
|
|
9
|
+
* @see proto type: tendermint.types.ConsensusParams
|
|
7
10
|
*/
|
|
8
11
|
export interface ConsensusParams {
|
|
9
12
|
block?: BlockParams;
|
|
@@ -19,6 +22,9 @@ export interface ConsensusParamsProtoMsg {
|
|
|
19
22
|
/**
|
|
20
23
|
* ConsensusParams contains consensus critical parameters that determine the
|
|
21
24
|
* validity of blocks.
|
|
25
|
+
* @name ConsensusParamsAmino
|
|
26
|
+
* @package tendermint.types
|
|
27
|
+
* @see proto type: tendermint.types.ConsensusParams
|
|
22
28
|
*/
|
|
23
29
|
export interface ConsensusParamsAmino {
|
|
24
30
|
block?: BlockParamsAmino;
|
|
@@ -31,7 +37,12 @@ export interface ConsensusParamsAminoMsg {
|
|
|
31
37
|
type: "/tendermint.types.ConsensusParams";
|
|
32
38
|
value: ConsensusParamsAmino;
|
|
33
39
|
}
|
|
34
|
-
/**
|
|
40
|
+
/**
|
|
41
|
+
* BlockParams contains limits on the block size.
|
|
42
|
+
* @name BlockParams
|
|
43
|
+
* @package tendermint.types
|
|
44
|
+
* @see proto type: tendermint.types.BlockParams
|
|
45
|
+
*/
|
|
35
46
|
export interface BlockParams {
|
|
36
47
|
/**
|
|
37
48
|
* Max block size, in bytes.
|
|
@@ -48,7 +59,12 @@ export interface BlockParamsProtoMsg {
|
|
|
48
59
|
typeUrl: "/tendermint.types.BlockParams";
|
|
49
60
|
value: Uint8Array;
|
|
50
61
|
}
|
|
51
|
-
/**
|
|
62
|
+
/**
|
|
63
|
+
* BlockParams contains limits on the block size.
|
|
64
|
+
* @name BlockParamsAmino
|
|
65
|
+
* @package tendermint.types
|
|
66
|
+
* @see proto type: tendermint.types.BlockParams
|
|
67
|
+
*/
|
|
52
68
|
export interface BlockParamsAmino {
|
|
53
69
|
/**
|
|
54
70
|
* Max block size, in bytes.
|
|
@@ -65,7 +81,12 @@ export interface BlockParamsAminoMsg {
|
|
|
65
81
|
type: "/tendermint.types.BlockParams";
|
|
66
82
|
value: BlockParamsAmino;
|
|
67
83
|
}
|
|
68
|
-
/**
|
|
84
|
+
/**
|
|
85
|
+
* EvidenceParams determine how we handle evidence of malfeasance.
|
|
86
|
+
* @name EvidenceParams
|
|
87
|
+
* @package tendermint.types
|
|
88
|
+
* @see proto type: tendermint.types.EvidenceParams
|
|
89
|
+
*/
|
|
69
90
|
export interface EvidenceParams {
|
|
70
91
|
/**
|
|
71
92
|
* Max age of evidence, in blocks.
|
|
@@ -93,7 +114,12 @@ export interface EvidenceParamsProtoMsg {
|
|
|
93
114
|
typeUrl: "/tendermint.types.EvidenceParams";
|
|
94
115
|
value: Uint8Array;
|
|
95
116
|
}
|
|
96
|
-
/**
|
|
117
|
+
/**
|
|
118
|
+
* EvidenceParams determine how we handle evidence of malfeasance.
|
|
119
|
+
* @name EvidenceParamsAmino
|
|
120
|
+
* @package tendermint.types
|
|
121
|
+
* @see proto type: tendermint.types.EvidenceParams
|
|
122
|
+
*/
|
|
97
123
|
export interface EvidenceParamsAmino {
|
|
98
124
|
/**
|
|
99
125
|
* Max age of evidence, in blocks.
|
|
@@ -124,6 +150,9 @@ export interface EvidenceParamsAminoMsg {
|
|
|
124
150
|
/**
|
|
125
151
|
* ValidatorParams restrict the public key types validators can use.
|
|
126
152
|
* NOTE: uses ABCI pubkey naming, not Amino names.
|
|
153
|
+
* @name ValidatorParams
|
|
154
|
+
* @package tendermint.types
|
|
155
|
+
* @see proto type: tendermint.types.ValidatorParams
|
|
127
156
|
*/
|
|
128
157
|
export interface ValidatorParams {
|
|
129
158
|
pubKeyTypes: string[];
|
|
@@ -135,6 +164,9 @@ export interface ValidatorParamsProtoMsg {
|
|
|
135
164
|
/**
|
|
136
165
|
* ValidatorParams restrict the public key types validators can use.
|
|
137
166
|
* NOTE: uses ABCI pubkey naming, not Amino names.
|
|
167
|
+
* @name ValidatorParamsAmino
|
|
168
|
+
* @package tendermint.types
|
|
169
|
+
* @see proto type: tendermint.types.ValidatorParams
|
|
138
170
|
*/
|
|
139
171
|
export interface ValidatorParamsAmino {
|
|
140
172
|
pub_key_types: string[];
|
|
@@ -143,7 +175,12 @@ export interface ValidatorParamsAminoMsg {
|
|
|
143
175
|
type: "/tendermint.types.ValidatorParams";
|
|
144
176
|
value: ValidatorParamsAmino;
|
|
145
177
|
}
|
|
146
|
-
/**
|
|
178
|
+
/**
|
|
179
|
+
* VersionParams contains the ABCI application version.
|
|
180
|
+
* @name VersionParams
|
|
181
|
+
* @package tendermint.types
|
|
182
|
+
* @see proto type: tendermint.types.VersionParams
|
|
183
|
+
*/
|
|
147
184
|
export interface VersionParams {
|
|
148
185
|
app: bigint;
|
|
149
186
|
}
|
|
@@ -151,7 +188,12 @@ export interface VersionParamsProtoMsg {
|
|
|
151
188
|
typeUrl: "/tendermint.types.VersionParams";
|
|
152
189
|
value: Uint8Array;
|
|
153
190
|
}
|
|
154
|
-
/**
|
|
191
|
+
/**
|
|
192
|
+
* VersionParams contains the ABCI application version.
|
|
193
|
+
* @name VersionParamsAmino
|
|
194
|
+
* @package tendermint.types
|
|
195
|
+
* @see proto type: tendermint.types.VersionParams
|
|
196
|
+
*/
|
|
155
197
|
export interface VersionParamsAmino {
|
|
156
198
|
app: string;
|
|
157
199
|
}
|
|
@@ -163,6 +205,9 @@ export interface VersionParamsAminoMsg {
|
|
|
163
205
|
* HashedParams is a subset of ConsensusParams.
|
|
164
206
|
*
|
|
165
207
|
* It is hashed into the Header.ConsensusHash.
|
|
208
|
+
* @name HashedParams
|
|
209
|
+
* @package tendermint.types
|
|
210
|
+
* @see proto type: tendermint.types.HashedParams
|
|
166
211
|
*/
|
|
167
212
|
export interface HashedParams {
|
|
168
213
|
blockMaxBytes: bigint;
|
|
@@ -176,6 +221,9 @@ export interface HashedParamsProtoMsg {
|
|
|
176
221
|
* HashedParams is a subset of ConsensusParams.
|
|
177
222
|
*
|
|
178
223
|
* It is hashed into the Header.ConsensusHash.
|
|
224
|
+
* @name HashedParamsAmino
|
|
225
|
+
* @package tendermint.types
|
|
226
|
+
* @see proto type: tendermint.types.HashedParams
|
|
179
227
|
*/
|
|
180
228
|
export interface HashedParamsAmino {
|
|
181
229
|
block_max_bytes: string;
|
|
@@ -185,7 +233,12 @@ export interface HashedParamsAminoMsg {
|
|
|
185
233
|
type: "/tendermint.types.HashedParams";
|
|
186
234
|
value: HashedParamsAmino;
|
|
187
235
|
}
|
|
188
|
-
/**
|
|
236
|
+
/**
|
|
237
|
+
* ABCIParams configure functionality specific to the Application Blockchain Interface.
|
|
238
|
+
* @name ABCIParams
|
|
239
|
+
* @package tendermint.types
|
|
240
|
+
* @see proto type: tendermint.types.ABCIParams
|
|
241
|
+
*/
|
|
189
242
|
export interface ABCIParams {
|
|
190
243
|
/**
|
|
191
244
|
* vote_extensions_enable_height configures the first height during which
|
|
@@ -204,7 +257,12 @@ export interface ABCIParamsProtoMsg {
|
|
|
204
257
|
typeUrl: "/tendermint.types.ABCIParams";
|
|
205
258
|
value: Uint8Array;
|
|
206
259
|
}
|
|
207
|
-
/**
|
|
260
|
+
/**
|
|
261
|
+
* ABCIParams configure functionality specific to the Application Blockchain Interface.
|
|
262
|
+
* @name ABCIParamsAmino
|
|
263
|
+
* @package tendermint.types
|
|
264
|
+
* @see proto type: tendermint.types.ABCIParams
|
|
265
|
+
*/
|
|
208
266
|
export interface ABCIParamsAmino {
|
|
209
267
|
/**
|
|
210
268
|
* vote_extensions_enable_height configures the first height during which
|
|
@@ -223,6 +281,13 @@ export interface ABCIParamsAminoMsg {
|
|
|
223
281
|
type: "/tendermint.types.ABCIParams";
|
|
224
282
|
value: ABCIParamsAmino;
|
|
225
283
|
}
|
|
284
|
+
/**
|
|
285
|
+
* ConsensusParams contains consensus critical parameters that determine the
|
|
286
|
+
* validity of blocks.
|
|
287
|
+
* @name ConsensusParams
|
|
288
|
+
* @package tendermint.types
|
|
289
|
+
* @see proto type: tendermint.types.ConsensusParams
|
|
290
|
+
*/
|
|
226
291
|
export declare const ConsensusParams: {
|
|
227
292
|
typeUrl: string;
|
|
228
293
|
is(o: any): o is ConsensusParams;
|
|
@@ -238,6 +303,12 @@ export declare const ConsensusParams: {
|
|
|
238
303
|
toProtoMsg(message: ConsensusParams): ConsensusParamsProtoMsg;
|
|
239
304
|
registerTypeUrl(): void;
|
|
240
305
|
};
|
|
306
|
+
/**
|
|
307
|
+
* BlockParams contains limits on the block size.
|
|
308
|
+
* @name BlockParams
|
|
309
|
+
* @package tendermint.types
|
|
310
|
+
* @see proto type: tendermint.types.BlockParams
|
|
311
|
+
*/
|
|
241
312
|
export declare const BlockParams: {
|
|
242
313
|
typeUrl: string;
|
|
243
314
|
is(o: any): o is BlockParams;
|
|
@@ -253,6 +324,12 @@ export declare const BlockParams: {
|
|
|
253
324
|
toProtoMsg(message: BlockParams): BlockParamsProtoMsg;
|
|
254
325
|
registerTypeUrl(): void;
|
|
255
326
|
};
|
|
327
|
+
/**
|
|
328
|
+
* EvidenceParams determine how we handle evidence of malfeasance.
|
|
329
|
+
* @name EvidenceParams
|
|
330
|
+
* @package tendermint.types
|
|
331
|
+
* @see proto type: tendermint.types.EvidenceParams
|
|
332
|
+
*/
|
|
256
333
|
export declare const EvidenceParams: {
|
|
257
334
|
typeUrl: string;
|
|
258
335
|
is(o: any): o is EvidenceParams;
|
|
@@ -268,6 +345,13 @@ export declare const EvidenceParams: {
|
|
|
268
345
|
toProtoMsg(message: EvidenceParams): EvidenceParamsProtoMsg;
|
|
269
346
|
registerTypeUrl(): void;
|
|
270
347
|
};
|
|
348
|
+
/**
|
|
349
|
+
* ValidatorParams restrict the public key types validators can use.
|
|
350
|
+
* NOTE: uses ABCI pubkey naming, not Amino names.
|
|
351
|
+
* @name ValidatorParams
|
|
352
|
+
* @package tendermint.types
|
|
353
|
+
* @see proto type: tendermint.types.ValidatorParams
|
|
354
|
+
*/
|
|
271
355
|
export declare const ValidatorParams: {
|
|
272
356
|
typeUrl: string;
|
|
273
357
|
is(o: any): o is ValidatorParams;
|
|
@@ -283,6 +367,12 @@ export declare const ValidatorParams: {
|
|
|
283
367
|
toProtoMsg(message: ValidatorParams): ValidatorParamsProtoMsg;
|
|
284
368
|
registerTypeUrl(): void;
|
|
285
369
|
};
|
|
370
|
+
/**
|
|
371
|
+
* VersionParams contains the ABCI application version.
|
|
372
|
+
* @name VersionParams
|
|
373
|
+
* @package tendermint.types
|
|
374
|
+
* @see proto type: tendermint.types.VersionParams
|
|
375
|
+
*/
|
|
286
376
|
export declare const VersionParams: {
|
|
287
377
|
typeUrl: string;
|
|
288
378
|
is(o: any): o is VersionParams;
|
|
@@ -298,6 +388,14 @@ export declare const VersionParams: {
|
|
|
298
388
|
toProtoMsg(message: VersionParams): VersionParamsProtoMsg;
|
|
299
389
|
registerTypeUrl(): void;
|
|
300
390
|
};
|
|
391
|
+
/**
|
|
392
|
+
* HashedParams is a subset of ConsensusParams.
|
|
393
|
+
*
|
|
394
|
+
* It is hashed into the Header.ConsensusHash.
|
|
395
|
+
* @name HashedParams
|
|
396
|
+
* @package tendermint.types
|
|
397
|
+
* @see proto type: tendermint.types.HashedParams
|
|
398
|
+
*/
|
|
301
399
|
export declare const HashedParams: {
|
|
302
400
|
typeUrl: string;
|
|
303
401
|
is(o: any): o is HashedParams;
|
|
@@ -313,6 +411,12 @@ export declare const HashedParams: {
|
|
|
313
411
|
toProtoMsg(message: HashedParams): HashedParamsProtoMsg;
|
|
314
412
|
registerTypeUrl(): void;
|
|
315
413
|
};
|
|
414
|
+
/**
|
|
415
|
+
* ABCIParams configure functionality specific to the Application Blockchain Interface.
|
|
416
|
+
* @name ABCIParams
|
|
417
|
+
* @package tendermint.types
|
|
418
|
+
* @see proto type: tendermint.types.ABCIParams
|
|
419
|
+
*/
|
|
316
420
|
export declare const ABCIParams: {
|
|
317
421
|
typeUrl: string;
|
|
318
422
|
is(o: any): o is ABCIParams;
|
|
@@ -13,6 +13,13 @@ function createBaseConsensusParams() {
|
|
|
13
13
|
abci: undefined
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* ConsensusParams contains consensus critical parameters that determine the
|
|
18
|
+
* validity of blocks.
|
|
19
|
+
* @name ConsensusParams
|
|
20
|
+
* @package tendermint.types
|
|
21
|
+
* @see proto type: tendermint.types.ConsensusParams
|
|
22
|
+
*/
|
|
16
23
|
exports.ConsensusParams = {
|
|
17
24
|
typeUrl: "/tendermint.types.ConsensusParams",
|
|
18
25
|
is(o) {
|
|
@@ -137,6 +144,12 @@ function createBaseBlockParams() {
|
|
|
137
144
|
maxGas: BigInt(0)
|
|
138
145
|
};
|
|
139
146
|
}
|
|
147
|
+
/**
|
|
148
|
+
* BlockParams contains limits on the block size.
|
|
149
|
+
* @name BlockParams
|
|
150
|
+
* @package tendermint.types
|
|
151
|
+
* @see proto type: tendermint.types.BlockParams
|
|
152
|
+
*/
|
|
140
153
|
exports.BlockParams = {
|
|
141
154
|
typeUrl: "/tendermint.types.BlockParams",
|
|
142
155
|
is(o) {
|
|
@@ -220,6 +233,12 @@ function createBaseEvidenceParams() {
|
|
|
220
233
|
maxBytes: BigInt(0)
|
|
221
234
|
};
|
|
222
235
|
}
|
|
236
|
+
/**
|
|
237
|
+
* EvidenceParams determine how we handle evidence of malfeasance.
|
|
238
|
+
* @name EvidenceParams
|
|
239
|
+
* @package tendermint.types
|
|
240
|
+
* @see proto type: tendermint.types.EvidenceParams
|
|
241
|
+
*/
|
|
223
242
|
exports.EvidenceParams = {
|
|
224
243
|
typeUrl: "/tendermint.types.EvidenceParams",
|
|
225
244
|
is(o) {
|
|
@@ -312,6 +331,13 @@ function createBaseValidatorParams() {
|
|
|
312
331
|
pubKeyTypes: []
|
|
313
332
|
};
|
|
314
333
|
}
|
|
334
|
+
/**
|
|
335
|
+
* ValidatorParams restrict the public key types validators can use.
|
|
336
|
+
* NOTE: uses ABCI pubkey naming, not Amino names.
|
|
337
|
+
* @name ValidatorParams
|
|
338
|
+
* @package tendermint.types
|
|
339
|
+
* @see proto type: tendermint.types.ValidatorParams
|
|
340
|
+
*/
|
|
315
341
|
exports.ValidatorParams = {
|
|
316
342
|
typeUrl: "/tendermint.types.ValidatorParams",
|
|
317
343
|
is(o) {
|
|
@@ -385,6 +411,12 @@ function createBaseVersionParams() {
|
|
|
385
411
|
app: BigInt(0)
|
|
386
412
|
};
|
|
387
413
|
}
|
|
414
|
+
/**
|
|
415
|
+
* VersionParams contains the ABCI application version.
|
|
416
|
+
* @name VersionParams
|
|
417
|
+
* @package tendermint.types
|
|
418
|
+
* @see proto type: tendermint.types.VersionParams
|
|
419
|
+
*/
|
|
388
420
|
exports.VersionParams = {
|
|
389
421
|
typeUrl: "/tendermint.types.VersionParams",
|
|
390
422
|
is(o) {
|
|
@@ -456,6 +488,14 @@ function createBaseHashedParams() {
|
|
|
456
488
|
blockMaxGas: BigInt(0)
|
|
457
489
|
};
|
|
458
490
|
}
|
|
491
|
+
/**
|
|
492
|
+
* HashedParams is a subset of ConsensusParams.
|
|
493
|
+
*
|
|
494
|
+
* It is hashed into the Header.ConsensusHash.
|
|
495
|
+
* @name HashedParams
|
|
496
|
+
* @package tendermint.types
|
|
497
|
+
* @see proto type: tendermint.types.HashedParams
|
|
498
|
+
*/
|
|
459
499
|
exports.HashedParams = {
|
|
460
500
|
typeUrl: "/tendermint.types.HashedParams",
|
|
461
501
|
is(o) {
|
|
@@ -537,6 +577,12 @@ function createBaseABCIParams() {
|
|
|
537
577
|
voteExtensionsEnableHeight: BigInt(0)
|
|
538
578
|
};
|
|
539
579
|
}
|
|
580
|
+
/**
|
|
581
|
+
* ABCIParams configure functionality specific to the Application Blockchain Interface.
|
|
582
|
+
* @name ABCIParams
|
|
583
|
+
* @package tendermint.types
|
|
584
|
+
* @see proto type: tendermint.types.ABCIParams
|
|
585
|
+
*/
|
|
540
586
|
exports.ABCIParams = {
|
|
541
587
|
typeUrl: "/tendermint.types.ABCIParams",
|
|
542
588
|
is(o) {
|