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
|
@@ -63,6 +63,12 @@ function createBasePartSetHeader() {
|
|
|
63
63
|
hash: new Uint8Array()
|
|
64
64
|
};
|
|
65
65
|
}
|
|
66
|
+
/**
|
|
67
|
+
* PartsetHeader
|
|
68
|
+
* @name PartSetHeader
|
|
69
|
+
* @package tendermint.types
|
|
70
|
+
* @see proto type: tendermint.types.PartSetHeader
|
|
71
|
+
*/
|
|
66
72
|
exports.PartSetHeader = {
|
|
67
73
|
typeUrl: "/tendermint.types.PartSetHeader",
|
|
68
74
|
is(o) {
|
|
@@ -146,6 +152,11 @@ function createBasePart() {
|
|
|
146
152
|
proof: proof_1.Proof.fromPartial({})
|
|
147
153
|
};
|
|
148
154
|
}
|
|
155
|
+
/**
|
|
156
|
+
* @name Part
|
|
157
|
+
* @package tendermint.types
|
|
158
|
+
* @see proto type: tendermint.types.Part
|
|
159
|
+
*/
|
|
149
160
|
exports.Part = {
|
|
150
161
|
typeUrl: "/tendermint.types.Part",
|
|
151
162
|
is(o) {
|
|
@@ -244,6 +255,12 @@ function createBaseBlockID() {
|
|
|
244
255
|
partSetHeader: exports.PartSetHeader.fromPartial({})
|
|
245
256
|
};
|
|
246
257
|
}
|
|
258
|
+
/**
|
|
259
|
+
* BlockID
|
|
260
|
+
* @name BlockID
|
|
261
|
+
* @package tendermint.types
|
|
262
|
+
* @see proto type: tendermint.types.BlockID
|
|
263
|
+
*/
|
|
247
264
|
exports.BlockID = {
|
|
248
265
|
typeUrl: "/tendermint.types.BlockID",
|
|
249
266
|
is(o) {
|
|
@@ -343,6 +360,12 @@ function createBaseHeader() {
|
|
|
343
360
|
proposerAddress: new Uint8Array()
|
|
344
361
|
};
|
|
345
362
|
}
|
|
363
|
+
/**
|
|
364
|
+
* Header defines the structure of a block header.
|
|
365
|
+
* @name Header
|
|
366
|
+
* @package tendermint.types
|
|
367
|
+
* @see proto type: tendermint.types.Header
|
|
368
|
+
*/
|
|
346
369
|
exports.Header = {
|
|
347
370
|
typeUrl: "/tendermint.types.Header",
|
|
348
371
|
is(o) {
|
|
@@ -562,6 +585,12 @@ function createBaseData() {
|
|
|
562
585
|
txs: []
|
|
563
586
|
};
|
|
564
587
|
}
|
|
588
|
+
/**
|
|
589
|
+
* Data contains the set of transactions included in the block
|
|
590
|
+
* @name Data
|
|
591
|
+
* @package tendermint.types
|
|
592
|
+
* @see proto type: tendermint.types.Data
|
|
593
|
+
*/
|
|
565
594
|
exports.Data = {
|
|
566
595
|
typeUrl: "/tendermint.types.Data",
|
|
567
596
|
is(o) {
|
|
@@ -644,6 +673,13 @@ function createBaseVote() {
|
|
|
644
673
|
extensionSignature: new Uint8Array()
|
|
645
674
|
};
|
|
646
675
|
}
|
|
676
|
+
/**
|
|
677
|
+
* Vote represents a prevote or precommit vote from validators for
|
|
678
|
+
* consensus.
|
|
679
|
+
* @name Vote
|
|
680
|
+
* @package tendermint.types
|
|
681
|
+
* @see proto type: tendermint.types.Vote
|
|
682
|
+
*/
|
|
647
683
|
exports.Vote = {
|
|
648
684
|
typeUrl: "/tendermint.types.Vote",
|
|
649
685
|
is(o) {
|
|
@@ -821,6 +857,12 @@ function createBaseCommit() {
|
|
|
821
857
|
signatures: []
|
|
822
858
|
};
|
|
823
859
|
}
|
|
860
|
+
/**
|
|
861
|
+
* Commit contains the evidence that a block was committed by a set of validators.
|
|
862
|
+
* @name Commit
|
|
863
|
+
* @package tendermint.types
|
|
864
|
+
* @see proto type: tendermint.types.Commit
|
|
865
|
+
*/
|
|
824
866
|
exports.Commit = {
|
|
825
867
|
typeUrl: "/tendermint.types.Commit",
|
|
826
868
|
is(o) {
|
|
@@ -936,6 +978,12 @@ function createBaseCommitSig() {
|
|
|
936
978
|
signature: new Uint8Array()
|
|
937
979
|
};
|
|
938
980
|
}
|
|
981
|
+
/**
|
|
982
|
+
* CommitSig is a part of the Vote included in a Commit.
|
|
983
|
+
* @name CommitSig
|
|
984
|
+
* @package tendermint.types
|
|
985
|
+
* @see proto type: tendermint.types.CommitSig
|
|
986
|
+
*/
|
|
939
987
|
exports.CommitSig = {
|
|
940
988
|
typeUrl: "/tendermint.types.CommitSig",
|
|
941
989
|
is(o) {
|
|
@@ -1042,6 +1090,11 @@ function createBaseExtendedCommit() {
|
|
|
1042
1090
|
extendedSignatures: []
|
|
1043
1091
|
};
|
|
1044
1092
|
}
|
|
1093
|
+
/**
|
|
1094
|
+
* @name ExtendedCommit
|
|
1095
|
+
* @package tendermint.types
|
|
1096
|
+
* @see proto type: tendermint.types.ExtendedCommit
|
|
1097
|
+
*/
|
|
1045
1098
|
exports.ExtendedCommit = {
|
|
1046
1099
|
typeUrl: "/tendermint.types.ExtendedCommit",
|
|
1047
1100
|
is(o) {
|
|
@@ -1159,6 +1212,14 @@ function createBaseExtendedCommitSig() {
|
|
|
1159
1212
|
extensionSignature: new Uint8Array()
|
|
1160
1213
|
};
|
|
1161
1214
|
}
|
|
1215
|
+
/**
|
|
1216
|
+
* ExtendedCommitSig retains all the same fields as CommitSig but adds vote
|
|
1217
|
+
* extension-related fields. We use two signatures to ensure backwards compatibility.
|
|
1218
|
+
* That is the digest of the original signature is still the same in prior versions
|
|
1219
|
+
* @name ExtendedCommitSig
|
|
1220
|
+
* @package tendermint.types
|
|
1221
|
+
* @see proto type: tendermint.types.ExtendedCommitSig
|
|
1222
|
+
*/
|
|
1162
1223
|
exports.ExtendedCommitSig = {
|
|
1163
1224
|
typeUrl: "/tendermint.types.ExtendedCommitSig",
|
|
1164
1225
|
is(o) {
|
|
@@ -1290,6 +1351,11 @@ function createBaseProposal() {
|
|
|
1290
1351
|
signature: new Uint8Array()
|
|
1291
1352
|
};
|
|
1292
1353
|
}
|
|
1354
|
+
/**
|
|
1355
|
+
* @name Proposal
|
|
1356
|
+
* @package tendermint.types
|
|
1357
|
+
* @see proto type: tendermint.types.Proposal
|
|
1358
|
+
*/
|
|
1293
1359
|
exports.Proposal = {
|
|
1294
1360
|
typeUrl: "/tendermint.types.Proposal",
|
|
1295
1361
|
is(o) {
|
|
@@ -1432,6 +1498,11 @@ function createBaseSignedHeader() {
|
|
|
1432
1498
|
commit: undefined
|
|
1433
1499
|
};
|
|
1434
1500
|
}
|
|
1501
|
+
/**
|
|
1502
|
+
* @name SignedHeader
|
|
1503
|
+
* @package tendermint.types
|
|
1504
|
+
* @see proto type: tendermint.types.SignedHeader
|
|
1505
|
+
*/
|
|
1435
1506
|
exports.SignedHeader = {
|
|
1436
1507
|
typeUrl: "/tendermint.types.SignedHeader",
|
|
1437
1508
|
is(o) {
|
|
@@ -1520,6 +1591,11 @@ function createBaseLightBlock() {
|
|
|
1520
1591
|
validatorSet: undefined
|
|
1521
1592
|
};
|
|
1522
1593
|
}
|
|
1594
|
+
/**
|
|
1595
|
+
* @name LightBlock
|
|
1596
|
+
* @package tendermint.types
|
|
1597
|
+
* @see proto type: tendermint.types.LightBlock
|
|
1598
|
+
*/
|
|
1523
1599
|
exports.LightBlock = {
|
|
1524
1600
|
typeUrl: "/tendermint.types.LightBlock",
|
|
1525
1601
|
is(o) {
|
|
@@ -1610,6 +1686,11 @@ function createBaseBlockMeta() {
|
|
|
1610
1686
|
numTxs: BigInt(0)
|
|
1611
1687
|
};
|
|
1612
1688
|
}
|
|
1689
|
+
/**
|
|
1690
|
+
* @name BlockMeta
|
|
1691
|
+
* @package tendermint.types
|
|
1692
|
+
* @see proto type: tendermint.types.BlockMeta
|
|
1693
|
+
*/
|
|
1613
1694
|
exports.BlockMeta = {
|
|
1614
1695
|
typeUrl: "/tendermint.types.BlockMeta",
|
|
1615
1696
|
is(o) {
|
|
@@ -1721,6 +1802,12 @@ function createBaseTxProof() {
|
|
|
1721
1802
|
proof: undefined
|
|
1722
1803
|
};
|
|
1723
1804
|
}
|
|
1805
|
+
/**
|
|
1806
|
+
* TxProof represents a Merkle proof of the presence of a transaction in the Merkle tree.
|
|
1807
|
+
* @name TxProof
|
|
1808
|
+
* @package tendermint.types
|
|
1809
|
+
* @see proto type: tendermint.types.TxProof
|
|
1810
|
+
*/
|
|
1724
1811
|
exports.TxProof = {
|
|
1725
1812
|
typeUrl: "/tendermint.types.TxProof",
|
|
1726
1813
|
is(o) {
|
|
@@ -15,6 +15,11 @@ export declare enum BlockIDFlag {
|
|
|
15
15
|
export declare const BlockIDFlagAmino: typeof BlockIDFlag;
|
|
16
16
|
export declare function blockIDFlagFromJSON(object: any): BlockIDFlag;
|
|
17
17
|
export declare function blockIDFlagToJSON(object: BlockIDFlag): string;
|
|
18
|
+
/**
|
|
19
|
+
* @name ValidatorSet
|
|
20
|
+
* @package tendermint.types
|
|
21
|
+
* @see proto type: tendermint.types.ValidatorSet
|
|
22
|
+
*/
|
|
18
23
|
export interface ValidatorSet {
|
|
19
24
|
validators: Validator[];
|
|
20
25
|
proposer?: Validator;
|
|
@@ -24,6 +29,11 @@ export interface ValidatorSetProtoMsg {
|
|
|
24
29
|
typeUrl: "/tendermint.types.ValidatorSet";
|
|
25
30
|
value: Uint8Array;
|
|
26
31
|
}
|
|
32
|
+
/**
|
|
33
|
+
* @name ValidatorSetAmino
|
|
34
|
+
* @package tendermint.types
|
|
35
|
+
* @see proto type: tendermint.types.ValidatorSet
|
|
36
|
+
*/
|
|
27
37
|
export interface ValidatorSetAmino {
|
|
28
38
|
validators: ValidatorAmino[];
|
|
29
39
|
proposer?: ValidatorAmino;
|
|
@@ -33,6 +43,11 @@ export interface ValidatorSetAminoMsg {
|
|
|
33
43
|
type: "/tendermint.types.ValidatorSet";
|
|
34
44
|
value: ValidatorSetAmino;
|
|
35
45
|
}
|
|
46
|
+
/**
|
|
47
|
+
* @name Validator
|
|
48
|
+
* @package tendermint.types
|
|
49
|
+
* @see proto type: tendermint.types.Validator
|
|
50
|
+
*/
|
|
36
51
|
export interface Validator {
|
|
37
52
|
address: Uint8Array;
|
|
38
53
|
pubKey: PublicKey;
|
|
@@ -43,6 +58,11 @@ export interface ValidatorProtoMsg {
|
|
|
43
58
|
typeUrl: "/tendermint.types.Validator";
|
|
44
59
|
value: Uint8Array;
|
|
45
60
|
}
|
|
61
|
+
/**
|
|
62
|
+
* @name ValidatorAmino
|
|
63
|
+
* @package tendermint.types
|
|
64
|
+
* @see proto type: tendermint.types.Validator
|
|
65
|
+
*/
|
|
46
66
|
export interface ValidatorAmino {
|
|
47
67
|
address: string;
|
|
48
68
|
pub_key: PublicKeyAmino;
|
|
@@ -53,6 +73,11 @@ export interface ValidatorAminoMsg {
|
|
|
53
73
|
type: "/tendermint.types.Validator";
|
|
54
74
|
value: ValidatorAmino;
|
|
55
75
|
}
|
|
76
|
+
/**
|
|
77
|
+
* @name SimpleValidator
|
|
78
|
+
* @package tendermint.types
|
|
79
|
+
* @see proto type: tendermint.types.SimpleValidator
|
|
80
|
+
*/
|
|
56
81
|
export interface SimpleValidator {
|
|
57
82
|
pubKey?: PublicKey;
|
|
58
83
|
votingPower: bigint;
|
|
@@ -61,6 +86,11 @@ export interface SimpleValidatorProtoMsg {
|
|
|
61
86
|
typeUrl: "/tendermint.types.SimpleValidator";
|
|
62
87
|
value: Uint8Array;
|
|
63
88
|
}
|
|
89
|
+
/**
|
|
90
|
+
* @name SimpleValidatorAmino
|
|
91
|
+
* @package tendermint.types
|
|
92
|
+
* @see proto type: tendermint.types.SimpleValidator
|
|
93
|
+
*/
|
|
64
94
|
export interface SimpleValidatorAmino {
|
|
65
95
|
pub_key?: PublicKeyAmino;
|
|
66
96
|
voting_power: string;
|
|
@@ -69,6 +99,11 @@ export interface SimpleValidatorAminoMsg {
|
|
|
69
99
|
type: "/tendermint.types.SimpleValidator";
|
|
70
100
|
value: SimpleValidatorAmino;
|
|
71
101
|
}
|
|
102
|
+
/**
|
|
103
|
+
* @name ValidatorSet
|
|
104
|
+
* @package tendermint.types
|
|
105
|
+
* @see proto type: tendermint.types.ValidatorSet
|
|
106
|
+
*/
|
|
72
107
|
export declare const ValidatorSet: {
|
|
73
108
|
typeUrl: string;
|
|
74
109
|
is(o: any): o is ValidatorSet;
|
|
@@ -84,6 +119,11 @@ export declare const ValidatorSet: {
|
|
|
84
119
|
toProtoMsg(message: ValidatorSet): ValidatorSetProtoMsg;
|
|
85
120
|
registerTypeUrl(): void;
|
|
86
121
|
};
|
|
122
|
+
/**
|
|
123
|
+
* @name Validator
|
|
124
|
+
* @package tendermint.types
|
|
125
|
+
* @see proto type: tendermint.types.Validator
|
|
126
|
+
*/
|
|
87
127
|
export declare const Validator: {
|
|
88
128
|
typeUrl: string;
|
|
89
129
|
is(o: any): o is Validator;
|
|
@@ -99,6 +139,11 @@ export declare const Validator: {
|
|
|
99
139
|
toProtoMsg(message: Validator): ValidatorProtoMsg;
|
|
100
140
|
registerTypeUrl(): void;
|
|
101
141
|
};
|
|
142
|
+
/**
|
|
143
|
+
* @name SimpleValidator
|
|
144
|
+
* @package tendermint.types
|
|
145
|
+
* @see proto type: tendermint.types.SimpleValidator
|
|
146
|
+
*/
|
|
102
147
|
export declare const SimpleValidator: {
|
|
103
148
|
typeUrl: string;
|
|
104
149
|
is(o: any): o is SimpleValidator;
|
|
@@ -62,6 +62,11 @@ function createBaseValidatorSet() {
|
|
|
62
62
|
totalVotingPower: BigInt(0)
|
|
63
63
|
};
|
|
64
64
|
}
|
|
65
|
+
/**
|
|
66
|
+
* @name ValidatorSet
|
|
67
|
+
* @package tendermint.types
|
|
68
|
+
* @see proto type: tendermint.types.ValidatorSet
|
|
69
|
+
*/
|
|
65
70
|
exports.ValidatorSet = {
|
|
66
71
|
typeUrl: "/tendermint.types.ValidatorSet",
|
|
67
72
|
is(o) {
|
|
@@ -165,6 +170,11 @@ function createBaseValidator() {
|
|
|
165
170
|
proposerPriority: BigInt(0)
|
|
166
171
|
};
|
|
167
172
|
}
|
|
173
|
+
/**
|
|
174
|
+
* @name Validator
|
|
175
|
+
* @package tendermint.types
|
|
176
|
+
* @see proto type: tendermint.types.Validator
|
|
177
|
+
*/
|
|
168
178
|
exports.Validator = {
|
|
169
179
|
typeUrl: "/tendermint.types.Validator",
|
|
170
180
|
is(o) {
|
|
@@ -274,6 +284,11 @@ function createBaseSimpleValidator() {
|
|
|
274
284
|
votingPower: BigInt(0)
|
|
275
285
|
};
|
|
276
286
|
}
|
|
287
|
+
/**
|
|
288
|
+
* @name SimpleValidator
|
|
289
|
+
* @package tendermint.types
|
|
290
|
+
* @see proto type: tendermint.types.SimpleValidator
|
|
291
|
+
*/
|
|
277
292
|
exports.SimpleValidator = {
|
|
278
293
|
typeUrl: "/tendermint.types.SimpleValidator",
|
|
279
294
|
is(o) {
|
|
@@ -4,6 +4,9 @@ import { DeepPartial } from "../../helpers";
|
|
|
4
4
|
* App includes the protocol and software version for the application.
|
|
5
5
|
* This information is included in ResponseInfo. The App.Protocol can be
|
|
6
6
|
* updated in ResponseEndBlock.
|
|
7
|
+
* @name App
|
|
8
|
+
* @package tendermint.version
|
|
9
|
+
* @see proto type: tendermint.version.App
|
|
7
10
|
*/
|
|
8
11
|
export interface App {
|
|
9
12
|
protocol: bigint;
|
|
@@ -17,6 +20,9 @@ export interface AppProtoMsg {
|
|
|
17
20
|
* App includes the protocol and software version for the application.
|
|
18
21
|
* This information is included in ResponseInfo. The App.Protocol can be
|
|
19
22
|
* updated in ResponseEndBlock.
|
|
23
|
+
* @name AppAmino
|
|
24
|
+
* @package tendermint.version
|
|
25
|
+
* @see proto type: tendermint.version.App
|
|
20
26
|
*/
|
|
21
27
|
export interface AppAmino {
|
|
22
28
|
protocol: string;
|
|
@@ -30,6 +36,9 @@ export interface AppAminoMsg {
|
|
|
30
36
|
* Consensus captures the consensus rules for processing a block in the blockchain,
|
|
31
37
|
* including all blockchain data structures and the rules of the application's
|
|
32
38
|
* state transition machine.
|
|
39
|
+
* @name Consensus
|
|
40
|
+
* @package tendermint.version
|
|
41
|
+
* @see proto type: tendermint.version.Consensus
|
|
33
42
|
*/
|
|
34
43
|
export interface Consensus {
|
|
35
44
|
block: bigint;
|
|
@@ -43,6 +52,9 @@ export interface ConsensusProtoMsg {
|
|
|
43
52
|
* Consensus captures the consensus rules for processing a block in the blockchain,
|
|
44
53
|
* including all blockchain data structures and the rules of the application's
|
|
45
54
|
* state transition machine.
|
|
55
|
+
* @name ConsensusAmino
|
|
56
|
+
* @package tendermint.version
|
|
57
|
+
* @see proto type: tendermint.version.Consensus
|
|
46
58
|
*/
|
|
47
59
|
export interface ConsensusAmino {
|
|
48
60
|
block: string;
|
|
@@ -52,6 +64,14 @@ export interface ConsensusAminoMsg {
|
|
|
52
64
|
type: "/tendermint.version.Consensus";
|
|
53
65
|
value: ConsensusAmino;
|
|
54
66
|
}
|
|
67
|
+
/**
|
|
68
|
+
* App includes the protocol and software version for the application.
|
|
69
|
+
* This information is included in ResponseInfo. The App.Protocol can be
|
|
70
|
+
* updated in ResponseEndBlock.
|
|
71
|
+
* @name App
|
|
72
|
+
* @package tendermint.version
|
|
73
|
+
* @see proto type: tendermint.version.App
|
|
74
|
+
*/
|
|
55
75
|
export declare const App: {
|
|
56
76
|
typeUrl: string;
|
|
57
77
|
is(o: any): o is App;
|
|
@@ -67,6 +87,14 @@ export declare const App: {
|
|
|
67
87
|
toProtoMsg(message: App): AppProtoMsg;
|
|
68
88
|
registerTypeUrl(): void;
|
|
69
89
|
};
|
|
90
|
+
/**
|
|
91
|
+
* Consensus captures the consensus rules for processing a block in the blockchain,
|
|
92
|
+
* including all blockchain data structures and the rules of the application's
|
|
93
|
+
* state transition machine.
|
|
94
|
+
* @name Consensus
|
|
95
|
+
* @package tendermint.version
|
|
96
|
+
* @see proto type: tendermint.version.Consensus
|
|
97
|
+
*/
|
|
70
98
|
export declare const Consensus: {
|
|
71
99
|
typeUrl: string;
|
|
72
100
|
is(o: any): o is Consensus;
|
|
@@ -8,6 +8,14 @@ function createBaseApp() {
|
|
|
8
8
|
software: ""
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* App includes the protocol and software version for the application.
|
|
13
|
+
* This information is included in ResponseInfo. The App.Protocol can be
|
|
14
|
+
* updated in ResponseEndBlock.
|
|
15
|
+
* @name App
|
|
16
|
+
* @package tendermint.version
|
|
17
|
+
* @see proto type: tendermint.version.App
|
|
18
|
+
*/
|
|
11
19
|
exports.App = {
|
|
12
20
|
typeUrl: "/tendermint.version.App",
|
|
13
21
|
is(o) {
|
|
@@ -90,6 +98,14 @@ function createBaseConsensus() {
|
|
|
90
98
|
app: BigInt(0)
|
|
91
99
|
};
|
|
92
100
|
}
|
|
101
|
+
/**
|
|
102
|
+
* Consensus captures the consensus rules for processing a block in the blockchain,
|
|
103
|
+
* including all blockchain data structures and the rules of the application's
|
|
104
|
+
* state transition machine.
|
|
105
|
+
* @name Consensus
|
|
106
|
+
* @package tendermint.version
|
|
107
|
+
* @see proto type: tendermint.version.Consensus
|
|
108
|
+
*/
|
|
93
109
|
exports.Consensus = {
|
|
94
110
|
typeUrl: "/tendermint.version.Consensus",
|
|
95
111
|
is(o) {
|
package/types.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/types.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
|
*/
|
package/utf8.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/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/varint.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/varint.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
|
*/
|