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
|
@@ -10,6 +10,13 @@ function createBaseConsensusParams() {
|
|
|
10
10
|
abci: undefined
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* ConsensusParams contains consensus critical parameters that determine the
|
|
15
|
+
* validity of blocks.
|
|
16
|
+
* @name ConsensusParams
|
|
17
|
+
* @package tendermint.types
|
|
18
|
+
* @see proto type: tendermint.types.ConsensusParams
|
|
19
|
+
*/
|
|
13
20
|
export const ConsensusParams = {
|
|
14
21
|
typeUrl: "/tendermint.types.ConsensusParams",
|
|
15
22
|
is(o) {
|
|
@@ -134,6 +141,12 @@ function createBaseBlockParams() {
|
|
|
134
141
|
maxGas: BigInt(0)
|
|
135
142
|
};
|
|
136
143
|
}
|
|
144
|
+
/**
|
|
145
|
+
* BlockParams contains limits on the block size.
|
|
146
|
+
* @name BlockParams
|
|
147
|
+
* @package tendermint.types
|
|
148
|
+
* @see proto type: tendermint.types.BlockParams
|
|
149
|
+
*/
|
|
137
150
|
export const BlockParams = {
|
|
138
151
|
typeUrl: "/tendermint.types.BlockParams",
|
|
139
152
|
is(o) {
|
|
@@ -217,6 +230,12 @@ function createBaseEvidenceParams() {
|
|
|
217
230
|
maxBytes: BigInt(0)
|
|
218
231
|
};
|
|
219
232
|
}
|
|
233
|
+
/**
|
|
234
|
+
* EvidenceParams determine how we handle evidence of malfeasance.
|
|
235
|
+
* @name EvidenceParams
|
|
236
|
+
* @package tendermint.types
|
|
237
|
+
* @see proto type: tendermint.types.EvidenceParams
|
|
238
|
+
*/
|
|
220
239
|
export const EvidenceParams = {
|
|
221
240
|
typeUrl: "/tendermint.types.EvidenceParams",
|
|
222
241
|
is(o) {
|
|
@@ -309,6 +328,13 @@ function createBaseValidatorParams() {
|
|
|
309
328
|
pubKeyTypes: []
|
|
310
329
|
};
|
|
311
330
|
}
|
|
331
|
+
/**
|
|
332
|
+
* ValidatorParams restrict the public key types validators can use.
|
|
333
|
+
* NOTE: uses ABCI pubkey naming, not Amino names.
|
|
334
|
+
* @name ValidatorParams
|
|
335
|
+
* @package tendermint.types
|
|
336
|
+
* @see proto type: tendermint.types.ValidatorParams
|
|
337
|
+
*/
|
|
312
338
|
export const ValidatorParams = {
|
|
313
339
|
typeUrl: "/tendermint.types.ValidatorParams",
|
|
314
340
|
is(o) {
|
|
@@ -382,6 +408,12 @@ function createBaseVersionParams() {
|
|
|
382
408
|
app: BigInt(0)
|
|
383
409
|
};
|
|
384
410
|
}
|
|
411
|
+
/**
|
|
412
|
+
* VersionParams contains the ABCI application version.
|
|
413
|
+
* @name VersionParams
|
|
414
|
+
* @package tendermint.types
|
|
415
|
+
* @see proto type: tendermint.types.VersionParams
|
|
416
|
+
*/
|
|
385
417
|
export const VersionParams = {
|
|
386
418
|
typeUrl: "/tendermint.types.VersionParams",
|
|
387
419
|
is(o) {
|
|
@@ -453,6 +485,14 @@ function createBaseHashedParams() {
|
|
|
453
485
|
blockMaxGas: BigInt(0)
|
|
454
486
|
};
|
|
455
487
|
}
|
|
488
|
+
/**
|
|
489
|
+
* HashedParams is a subset of ConsensusParams.
|
|
490
|
+
*
|
|
491
|
+
* It is hashed into the Header.ConsensusHash.
|
|
492
|
+
* @name HashedParams
|
|
493
|
+
* @package tendermint.types
|
|
494
|
+
* @see proto type: tendermint.types.HashedParams
|
|
495
|
+
*/
|
|
456
496
|
export const HashedParams = {
|
|
457
497
|
typeUrl: "/tendermint.types.HashedParams",
|
|
458
498
|
is(o) {
|
|
@@ -534,6 +574,12 @@ function createBaseABCIParams() {
|
|
|
534
574
|
voteExtensionsEnableHeight: BigInt(0)
|
|
535
575
|
};
|
|
536
576
|
}
|
|
577
|
+
/**
|
|
578
|
+
* ABCIParams configure functionality specific to the Application Blockchain Interface.
|
|
579
|
+
* @name ABCIParams
|
|
580
|
+
* @package tendermint.types
|
|
581
|
+
* @see proto type: tendermint.types.ABCIParams
|
|
582
|
+
*/
|
|
537
583
|
export const ABCIParams = {
|
|
538
584
|
typeUrl: "/tendermint.types.ABCIParams",
|
|
539
585
|
is(o) {
|
|
@@ -58,6 +58,12 @@ function createBasePartSetHeader() {
|
|
|
58
58
|
hash: new Uint8Array()
|
|
59
59
|
};
|
|
60
60
|
}
|
|
61
|
+
/**
|
|
62
|
+
* PartsetHeader
|
|
63
|
+
* @name PartSetHeader
|
|
64
|
+
* @package tendermint.types
|
|
65
|
+
* @see proto type: tendermint.types.PartSetHeader
|
|
66
|
+
*/
|
|
61
67
|
export const PartSetHeader = {
|
|
62
68
|
typeUrl: "/tendermint.types.PartSetHeader",
|
|
63
69
|
is(o) {
|
|
@@ -141,6 +147,11 @@ function createBasePart() {
|
|
|
141
147
|
proof: Proof.fromPartial({})
|
|
142
148
|
};
|
|
143
149
|
}
|
|
150
|
+
/**
|
|
151
|
+
* @name Part
|
|
152
|
+
* @package tendermint.types
|
|
153
|
+
* @see proto type: tendermint.types.Part
|
|
154
|
+
*/
|
|
144
155
|
export const Part = {
|
|
145
156
|
typeUrl: "/tendermint.types.Part",
|
|
146
157
|
is(o) {
|
|
@@ -239,6 +250,12 @@ function createBaseBlockID() {
|
|
|
239
250
|
partSetHeader: PartSetHeader.fromPartial({})
|
|
240
251
|
};
|
|
241
252
|
}
|
|
253
|
+
/**
|
|
254
|
+
* BlockID
|
|
255
|
+
* @name BlockID
|
|
256
|
+
* @package tendermint.types
|
|
257
|
+
* @see proto type: tendermint.types.BlockID
|
|
258
|
+
*/
|
|
242
259
|
export const BlockID = {
|
|
243
260
|
typeUrl: "/tendermint.types.BlockID",
|
|
244
261
|
is(o) {
|
|
@@ -338,6 +355,12 @@ function createBaseHeader() {
|
|
|
338
355
|
proposerAddress: new Uint8Array()
|
|
339
356
|
};
|
|
340
357
|
}
|
|
358
|
+
/**
|
|
359
|
+
* Header defines the structure of a block header.
|
|
360
|
+
* @name Header
|
|
361
|
+
* @package tendermint.types
|
|
362
|
+
* @see proto type: tendermint.types.Header
|
|
363
|
+
*/
|
|
341
364
|
export const Header = {
|
|
342
365
|
typeUrl: "/tendermint.types.Header",
|
|
343
366
|
is(o) {
|
|
@@ -557,6 +580,12 @@ function createBaseData() {
|
|
|
557
580
|
txs: []
|
|
558
581
|
};
|
|
559
582
|
}
|
|
583
|
+
/**
|
|
584
|
+
* Data contains the set of transactions included in the block
|
|
585
|
+
* @name Data
|
|
586
|
+
* @package tendermint.types
|
|
587
|
+
* @see proto type: tendermint.types.Data
|
|
588
|
+
*/
|
|
560
589
|
export const Data = {
|
|
561
590
|
typeUrl: "/tendermint.types.Data",
|
|
562
591
|
is(o) {
|
|
@@ -639,6 +668,13 @@ function createBaseVote() {
|
|
|
639
668
|
extensionSignature: new Uint8Array()
|
|
640
669
|
};
|
|
641
670
|
}
|
|
671
|
+
/**
|
|
672
|
+
* Vote represents a prevote or precommit vote from validators for
|
|
673
|
+
* consensus.
|
|
674
|
+
* @name Vote
|
|
675
|
+
* @package tendermint.types
|
|
676
|
+
* @see proto type: tendermint.types.Vote
|
|
677
|
+
*/
|
|
642
678
|
export const Vote = {
|
|
643
679
|
typeUrl: "/tendermint.types.Vote",
|
|
644
680
|
is(o) {
|
|
@@ -816,6 +852,12 @@ function createBaseCommit() {
|
|
|
816
852
|
signatures: []
|
|
817
853
|
};
|
|
818
854
|
}
|
|
855
|
+
/**
|
|
856
|
+
* Commit contains the evidence that a block was committed by a set of validators.
|
|
857
|
+
* @name Commit
|
|
858
|
+
* @package tendermint.types
|
|
859
|
+
* @see proto type: tendermint.types.Commit
|
|
860
|
+
*/
|
|
819
861
|
export const Commit = {
|
|
820
862
|
typeUrl: "/tendermint.types.Commit",
|
|
821
863
|
is(o) {
|
|
@@ -931,6 +973,12 @@ function createBaseCommitSig() {
|
|
|
931
973
|
signature: new Uint8Array()
|
|
932
974
|
};
|
|
933
975
|
}
|
|
976
|
+
/**
|
|
977
|
+
* CommitSig is a part of the Vote included in a Commit.
|
|
978
|
+
* @name CommitSig
|
|
979
|
+
* @package tendermint.types
|
|
980
|
+
* @see proto type: tendermint.types.CommitSig
|
|
981
|
+
*/
|
|
934
982
|
export const CommitSig = {
|
|
935
983
|
typeUrl: "/tendermint.types.CommitSig",
|
|
936
984
|
is(o) {
|
|
@@ -1037,6 +1085,11 @@ function createBaseExtendedCommit() {
|
|
|
1037
1085
|
extendedSignatures: []
|
|
1038
1086
|
};
|
|
1039
1087
|
}
|
|
1088
|
+
/**
|
|
1089
|
+
* @name ExtendedCommit
|
|
1090
|
+
* @package tendermint.types
|
|
1091
|
+
* @see proto type: tendermint.types.ExtendedCommit
|
|
1092
|
+
*/
|
|
1040
1093
|
export const ExtendedCommit = {
|
|
1041
1094
|
typeUrl: "/tendermint.types.ExtendedCommit",
|
|
1042
1095
|
is(o) {
|
|
@@ -1154,6 +1207,14 @@ function createBaseExtendedCommitSig() {
|
|
|
1154
1207
|
extensionSignature: new Uint8Array()
|
|
1155
1208
|
};
|
|
1156
1209
|
}
|
|
1210
|
+
/**
|
|
1211
|
+
* ExtendedCommitSig retains all the same fields as CommitSig but adds vote
|
|
1212
|
+
* extension-related fields. We use two signatures to ensure backwards compatibility.
|
|
1213
|
+
* That is the digest of the original signature is still the same in prior versions
|
|
1214
|
+
* @name ExtendedCommitSig
|
|
1215
|
+
* @package tendermint.types
|
|
1216
|
+
* @see proto type: tendermint.types.ExtendedCommitSig
|
|
1217
|
+
*/
|
|
1157
1218
|
export const ExtendedCommitSig = {
|
|
1158
1219
|
typeUrl: "/tendermint.types.ExtendedCommitSig",
|
|
1159
1220
|
is(o) {
|
|
@@ -1285,6 +1346,11 @@ function createBaseProposal() {
|
|
|
1285
1346
|
signature: new Uint8Array()
|
|
1286
1347
|
};
|
|
1287
1348
|
}
|
|
1349
|
+
/**
|
|
1350
|
+
* @name Proposal
|
|
1351
|
+
* @package tendermint.types
|
|
1352
|
+
* @see proto type: tendermint.types.Proposal
|
|
1353
|
+
*/
|
|
1288
1354
|
export const Proposal = {
|
|
1289
1355
|
typeUrl: "/tendermint.types.Proposal",
|
|
1290
1356
|
is(o) {
|
|
@@ -1427,6 +1493,11 @@ function createBaseSignedHeader() {
|
|
|
1427
1493
|
commit: undefined
|
|
1428
1494
|
};
|
|
1429
1495
|
}
|
|
1496
|
+
/**
|
|
1497
|
+
* @name SignedHeader
|
|
1498
|
+
* @package tendermint.types
|
|
1499
|
+
* @see proto type: tendermint.types.SignedHeader
|
|
1500
|
+
*/
|
|
1430
1501
|
export const SignedHeader = {
|
|
1431
1502
|
typeUrl: "/tendermint.types.SignedHeader",
|
|
1432
1503
|
is(o) {
|
|
@@ -1515,6 +1586,11 @@ function createBaseLightBlock() {
|
|
|
1515
1586
|
validatorSet: undefined
|
|
1516
1587
|
};
|
|
1517
1588
|
}
|
|
1589
|
+
/**
|
|
1590
|
+
* @name LightBlock
|
|
1591
|
+
* @package tendermint.types
|
|
1592
|
+
* @see proto type: tendermint.types.LightBlock
|
|
1593
|
+
*/
|
|
1518
1594
|
export const LightBlock = {
|
|
1519
1595
|
typeUrl: "/tendermint.types.LightBlock",
|
|
1520
1596
|
is(o) {
|
|
@@ -1605,6 +1681,11 @@ function createBaseBlockMeta() {
|
|
|
1605
1681
|
numTxs: BigInt(0)
|
|
1606
1682
|
};
|
|
1607
1683
|
}
|
|
1684
|
+
/**
|
|
1685
|
+
* @name BlockMeta
|
|
1686
|
+
* @package tendermint.types
|
|
1687
|
+
* @see proto type: tendermint.types.BlockMeta
|
|
1688
|
+
*/
|
|
1608
1689
|
export const BlockMeta = {
|
|
1609
1690
|
typeUrl: "/tendermint.types.BlockMeta",
|
|
1610
1691
|
is(o) {
|
|
@@ -1716,6 +1797,12 @@ function createBaseTxProof() {
|
|
|
1716
1797
|
proof: undefined
|
|
1717
1798
|
};
|
|
1718
1799
|
}
|
|
1800
|
+
/**
|
|
1801
|
+
* TxProof represents a Merkle proof of the presence of a transaction in the Merkle tree.
|
|
1802
|
+
* @name TxProof
|
|
1803
|
+
* @package tendermint.types
|
|
1804
|
+
* @see proto type: tendermint.types.TxProof
|
|
1805
|
+
*/
|
|
1719
1806
|
export const TxProof = {
|
|
1720
1807
|
typeUrl: "/tendermint.types.TxProof",
|
|
1721
1808
|
is(o) {
|
|
@@ -57,6 +57,11 @@ function createBaseValidatorSet() {
|
|
|
57
57
|
totalVotingPower: BigInt(0)
|
|
58
58
|
};
|
|
59
59
|
}
|
|
60
|
+
/**
|
|
61
|
+
* @name ValidatorSet
|
|
62
|
+
* @package tendermint.types
|
|
63
|
+
* @see proto type: tendermint.types.ValidatorSet
|
|
64
|
+
*/
|
|
60
65
|
export const ValidatorSet = {
|
|
61
66
|
typeUrl: "/tendermint.types.ValidatorSet",
|
|
62
67
|
is(o) {
|
|
@@ -160,6 +165,11 @@ function createBaseValidator() {
|
|
|
160
165
|
proposerPriority: BigInt(0)
|
|
161
166
|
};
|
|
162
167
|
}
|
|
168
|
+
/**
|
|
169
|
+
* @name Validator
|
|
170
|
+
* @package tendermint.types
|
|
171
|
+
* @see proto type: tendermint.types.Validator
|
|
172
|
+
*/
|
|
163
173
|
export const Validator = {
|
|
164
174
|
typeUrl: "/tendermint.types.Validator",
|
|
165
175
|
is(o) {
|
|
@@ -269,6 +279,11 @@ function createBaseSimpleValidator() {
|
|
|
269
279
|
votingPower: BigInt(0)
|
|
270
280
|
};
|
|
271
281
|
}
|
|
282
|
+
/**
|
|
283
|
+
* @name SimpleValidator
|
|
284
|
+
* @package tendermint.types
|
|
285
|
+
* @see proto type: tendermint.types.SimpleValidator
|
|
286
|
+
*/
|
|
272
287
|
export const SimpleValidator = {
|
|
273
288
|
typeUrl: "/tendermint.types.SimpleValidator",
|
|
274
289
|
is(o) {
|
|
@@ -5,6 +5,14 @@ function createBaseApp() {
|
|
|
5
5
|
software: ""
|
|
6
6
|
};
|
|
7
7
|
}
|
|
8
|
+
/**
|
|
9
|
+
* App includes the protocol and software version for the application.
|
|
10
|
+
* This information is included in ResponseInfo. The App.Protocol can be
|
|
11
|
+
* updated in ResponseEndBlock.
|
|
12
|
+
* @name App
|
|
13
|
+
* @package tendermint.version
|
|
14
|
+
* @see proto type: tendermint.version.App
|
|
15
|
+
*/
|
|
8
16
|
export const App = {
|
|
9
17
|
typeUrl: "/tendermint.version.App",
|
|
10
18
|
is(o) {
|
|
@@ -87,6 +95,14 @@ function createBaseConsensus() {
|
|
|
87
95
|
app: BigInt(0)
|
|
88
96
|
};
|
|
89
97
|
}
|
|
98
|
+
/**
|
|
99
|
+
* Consensus captures the consensus rules for processing a block in the blockchain,
|
|
100
|
+
* including all blockchain data structures and the rules of the application's
|
|
101
|
+
* state transition machine.
|
|
102
|
+
* @name Consensus
|
|
103
|
+
* @package tendermint.version
|
|
104
|
+
* @see proto type: tendermint.version.Consensus
|
|
105
|
+
*/
|
|
90
106
|
export const Consensus = {
|
|
91
107
|
typeUrl: "/tendermint.version.Consensus",
|
|
92
108
|
is(o) {
|
package/esm/types.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
2
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.19
|
|
3
3
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
4
4
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
5
5
|
*/
|
package/esm/utf8.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
2
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.19
|
|
3
3
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
4
4
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
5
5
|
*/
|
package/esm/varint.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
2
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.19
|
|
3
3
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
4
4
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
5
5
|
*/
|
package/extern.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
2
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.19
|
|
3
3
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
4
4
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
5
5
|
*/
|
package/extern.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
3
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.19
|
|
4
4
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
5
5
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
6
6
|
*/
|