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
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "../../binary";
|
|
2
2
|
import { DeepPartial } from "../../helpers";
|
|
3
|
+
/**
|
|
4
|
+
* @name Proof
|
|
5
|
+
* @package tendermint.crypto
|
|
6
|
+
* @see proto type: tendermint.crypto.Proof
|
|
7
|
+
*/
|
|
3
8
|
export interface Proof {
|
|
4
9
|
total: bigint;
|
|
5
10
|
index: bigint;
|
|
@@ -10,6 +15,11 @@ export interface ProofProtoMsg {
|
|
|
10
15
|
typeUrl: "/tendermint.crypto.Proof";
|
|
11
16
|
value: Uint8Array;
|
|
12
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* @name ProofAmino
|
|
20
|
+
* @package tendermint.crypto
|
|
21
|
+
* @see proto type: tendermint.crypto.Proof
|
|
22
|
+
*/
|
|
13
23
|
export interface ProofAmino {
|
|
14
24
|
total: string;
|
|
15
25
|
index: string;
|
|
@@ -20,26 +30,49 @@ export interface ProofAminoMsg {
|
|
|
20
30
|
type: "/tendermint.crypto.Proof";
|
|
21
31
|
value: ProofAmino;
|
|
22
32
|
}
|
|
33
|
+
/**
|
|
34
|
+
* @name ValueOp
|
|
35
|
+
* @package tendermint.crypto
|
|
36
|
+
* @see proto type: tendermint.crypto.ValueOp
|
|
37
|
+
*/
|
|
23
38
|
export interface ValueOp {
|
|
24
|
-
/**
|
|
39
|
+
/**
|
|
40
|
+
* Encoded in ProofOp.Key.
|
|
41
|
+
*/
|
|
25
42
|
key: Uint8Array;
|
|
26
|
-
/**
|
|
43
|
+
/**
|
|
44
|
+
* To encode in ProofOp.Data
|
|
45
|
+
*/
|
|
27
46
|
proof?: Proof;
|
|
28
47
|
}
|
|
29
48
|
export interface ValueOpProtoMsg {
|
|
30
49
|
typeUrl: "/tendermint.crypto.ValueOp";
|
|
31
50
|
value: Uint8Array;
|
|
32
51
|
}
|
|
52
|
+
/**
|
|
53
|
+
* @name ValueOpAmino
|
|
54
|
+
* @package tendermint.crypto
|
|
55
|
+
* @see proto type: tendermint.crypto.ValueOp
|
|
56
|
+
*/
|
|
33
57
|
export interface ValueOpAmino {
|
|
34
|
-
/**
|
|
58
|
+
/**
|
|
59
|
+
* Encoded in ProofOp.Key.
|
|
60
|
+
*/
|
|
35
61
|
key: string;
|
|
36
|
-
/**
|
|
62
|
+
/**
|
|
63
|
+
* To encode in ProofOp.Data
|
|
64
|
+
*/
|
|
37
65
|
proof?: ProofAmino;
|
|
38
66
|
}
|
|
39
67
|
export interface ValueOpAminoMsg {
|
|
40
68
|
type: "/tendermint.crypto.ValueOp";
|
|
41
69
|
value: ValueOpAmino;
|
|
42
70
|
}
|
|
71
|
+
/**
|
|
72
|
+
* @name DominoOp
|
|
73
|
+
* @package tendermint.crypto
|
|
74
|
+
* @see proto type: tendermint.crypto.DominoOp
|
|
75
|
+
*/
|
|
43
76
|
export interface DominoOp {
|
|
44
77
|
key: string;
|
|
45
78
|
input: string;
|
|
@@ -49,6 +82,11 @@ export interface DominoOpProtoMsg {
|
|
|
49
82
|
typeUrl: "/tendermint.crypto.DominoOp";
|
|
50
83
|
value: Uint8Array;
|
|
51
84
|
}
|
|
85
|
+
/**
|
|
86
|
+
* @name DominoOpAmino
|
|
87
|
+
* @package tendermint.crypto
|
|
88
|
+
* @see proto type: tendermint.crypto.DominoOp
|
|
89
|
+
*/
|
|
52
90
|
export interface DominoOpAmino {
|
|
53
91
|
key: string;
|
|
54
92
|
input: string;
|
|
@@ -62,6 +100,9 @@ export interface DominoOpAminoMsg {
|
|
|
62
100
|
* ProofOp defines an operation used for calculating Merkle root
|
|
63
101
|
* The data could be arbitrary format, providing nessecary data
|
|
64
102
|
* for example neighbouring node hash
|
|
103
|
+
* @name ProofOp
|
|
104
|
+
* @package tendermint.crypto
|
|
105
|
+
* @see proto type: tendermint.crypto.ProofOp
|
|
65
106
|
*/
|
|
66
107
|
export interface ProofOp {
|
|
67
108
|
type: string;
|
|
@@ -76,6 +117,9 @@ export interface ProofOpProtoMsg {
|
|
|
76
117
|
* ProofOp defines an operation used for calculating Merkle root
|
|
77
118
|
* The data could be arbitrary format, providing nessecary data
|
|
78
119
|
* for example neighbouring node hash
|
|
120
|
+
* @name ProofOpAmino
|
|
121
|
+
* @package tendermint.crypto
|
|
122
|
+
* @see proto type: tendermint.crypto.ProofOp
|
|
79
123
|
*/
|
|
80
124
|
export interface ProofOpAmino {
|
|
81
125
|
type: string;
|
|
@@ -86,7 +130,12 @@ export interface ProofOpAminoMsg {
|
|
|
86
130
|
type: "/tendermint.crypto.ProofOp";
|
|
87
131
|
value: ProofOpAmino;
|
|
88
132
|
}
|
|
89
|
-
/**
|
|
133
|
+
/**
|
|
134
|
+
* ProofOps is Merkle proof defined by the list of ProofOps
|
|
135
|
+
* @name ProofOps
|
|
136
|
+
* @package tendermint.crypto
|
|
137
|
+
* @see proto type: tendermint.crypto.ProofOps
|
|
138
|
+
*/
|
|
90
139
|
export interface ProofOps {
|
|
91
140
|
ops: ProofOp[];
|
|
92
141
|
}
|
|
@@ -94,7 +143,12 @@ export interface ProofOpsProtoMsg {
|
|
|
94
143
|
typeUrl: "/tendermint.crypto.ProofOps";
|
|
95
144
|
value: Uint8Array;
|
|
96
145
|
}
|
|
97
|
-
/**
|
|
146
|
+
/**
|
|
147
|
+
* ProofOps is Merkle proof defined by the list of ProofOps
|
|
148
|
+
* @name ProofOpsAmino
|
|
149
|
+
* @package tendermint.crypto
|
|
150
|
+
* @see proto type: tendermint.crypto.ProofOps
|
|
151
|
+
*/
|
|
98
152
|
export interface ProofOpsAmino {
|
|
99
153
|
ops: ProofOpAmino[];
|
|
100
154
|
}
|
|
@@ -102,6 +156,11 @@ export interface ProofOpsAminoMsg {
|
|
|
102
156
|
type: "/tendermint.crypto.ProofOps";
|
|
103
157
|
value: ProofOpsAmino;
|
|
104
158
|
}
|
|
159
|
+
/**
|
|
160
|
+
* @name Proof
|
|
161
|
+
* @package tendermint.crypto
|
|
162
|
+
* @see proto type: tendermint.crypto.Proof
|
|
163
|
+
*/
|
|
105
164
|
export declare const Proof: {
|
|
106
165
|
typeUrl: string;
|
|
107
166
|
is(o: any): o is Proof;
|
|
@@ -117,6 +176,11 @@ export declare const Proof: {
|
|
|
117
176
|
toProtoMsg(message: Proof): ProofProtoMsg;
|
|
118
177
|
registerTypeUrl(): void;
|
|
119
178
|
};
|
|
179
|
+
/**
|
|
180
|
+
* @name ValueOp
|
|
181
|
+
* @package tendermint.crypto
|
|
182
|
+
* @see proto type: tendermint.crypto.ValueOp
|
|
183
|
+
*/
|
|
120
184
|
export declare const ValueOp: {
|
|
121
185
|
typeUrl: string;
|
|
122
186
|
is(o: any): o is ValueOp;
|
|
@@ -132,6 +196,11 @@ export declare const ValueOp: {
|
|
|
132
196
|
toProtoMsg(message: ValueOp): ValueOpProtoMsg;
|
|
133
197
|
registerTypeUrl(): void;
|
|
134
198
|
};
|
|
199
|
+
/**
|
|
200
|
+
* @name DominoOp
|
|
201
|
+
* @package tendermint.crypto
|
|
202
|
+
* @see proto type: tendermint.crypto.DominoOp
|
|
203
|
+
*/
|
|
135
204
|
export declare const DominoOp: {
|
|
136
205
|
typeUrl: string;
|
|
137
206
|
is(o: any): o is DominoOp;
|
|
@@ -147,6 +216,14 @@ export declare const DominoOp: {
|
|
|
147
216
|
toProtoMsg(message: DominoOp): DominoOpProtoMsg;
|
|
148
217
|
registerTypeUrl(): void;
|
|
149
218
|
};
|
|
219
|
+
/**
|
|
220
|
+
* ProofOp defines an operation used for calculating Merkle root
|
|
221
|
+
* The data could be arbitrary format, providing nessecary data
|
|
222
|
+
* for example neighbouring node hash
|
|
223
|
+
* @name ProofOp
|
|
224
|
+
* @package tendermint.crypto
|
|
225
|
+
* @see proto type: tendermint.crypto.ProofOp
|
|
226
|
+
*/
|
|
150
227
|
export declare const ProofOp: {
|
|
151
228
|
typeUrl: string;
|
|
152
229
|
is(o: any): o is ProofOp;
|
|
@@ -162,6 +239,12 @@ export declare const ProofOp: {
|
|
|
162
239
|
toProtoMsg(message: ProofOp): ProofOpProtoMsg;
|
|
163
240
|
registerTypeUrl(): void;
|
|
164
241
|
};
|
|
242
|
+
/**
|
|
243
|
+
* ProofOps is Merkle proof defined by the list of ProofOps
|
|
244
|
+
* @name ProofOps
|
|
245
|
+
* @package tendermint.crypto
|
|
246
|
+
* @see proto type: tendermint.crypto.ProofOps
|
|
247
|
+
*/
|
|
165
248
|
export declare const ProofOps: {
|
|
166
249
|
typeUrl: string;
|
|
167
250
|
is(o: any): o is ProofOps;
|
|
@@ -12,6 +12,11 @@ function createBaseProof() {
|
|
|
12
12
|
aunts: []
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* @name Proof
|
|
17
|
+
* @package tendermint.crypto
|
|
18
|
+
* @see proto type: tendermint.crypto.Proof
|
|
19
|
+
*/
|
|
15
20
|
exports.Proof = {
|
|
16
21
|
typeUrl: "/tendermint.crypto.Proof",
|
|
17
22
|
is(o) {
|
|
@@ -119,6 +124,11 @@ function createBaseValueOp() {
|
|
|
119
124
|
proof: undefined
|
|
120
125
|
};
|
|
121
126
|
}
|
|
127
|
+
/**
|
|
128
|
+
* @name ValueOp
|
|
129
|
+
* @package tendermint.crypto
|
|
130
|
+
* @see proto type: tendermint.crypto.ValueOp
|
|
131
|
+
*/
|
|
122
132
|
exports.ValueOp = {
|
|
123
133
|
typeUrl: "/tendermint.crypto.ValueOp",
|
|
124
134
|
is(o) {
|
|
@@ -207,6 +217,11 @@ function createBaseDominoOp() {
|
|
|
207
217
|
output: ""
|
|
208
218
|
};
|
|
209
219
|
}
|
|
220
|
+
/**
|
|
221
|
+
* @name DominoOp
|
|
222
|
+
* @package tendermint.crypto
|
|
223
|
+
* @see proto type: tendermint.crypto.DominoOp
|
|
224
|
+
*/
|
|
210
225
|
exports.DominoOp = {
|
|
211
226
|
typeUrl: "/tendermint.crypto.DominoOp",
|
|
212
227
|
is(o) {
|
|
@@ -301,6 +316,14 @@ function createBaseProofOp() {
|
|
|
301
316
|
data: new Uint8Array()
|
|
302
317
|
};
|
|
303
318
|
}
|
|
319
|
+
/**
|
|
320
|
+
* ProofOp defines an operation used for calculating Merkle root
|
|
321
|
+
* The data could be arbitrary format, providing nessecary data
|
|
322
|
+
* for example neighbouring node hash
|
|
323
|
+
* @name ProofOp
|
|
324
|
+
* @package tendermint.crypto
|
|
325
|
+
* @see proto type: tendermint.crypto.ProofOp
|
|
326
|
+
*/
|
|
304
327
|
exports.ProofOp = {
|
|
305
328
|
typeUrl: "/tendermint.crypto.ProofOp",
|
|
306
329
|
is(o) {
|
|
@@ -393,6 +416,12 @@ function createBaseProofOps() {
|
|
|
393
416
|
ops: []
|
|
394
417
|
};
|
|
395
418
|
}
|
|
419
|
+
/**
|
|
420
|
+
* ProofOps is Merkle proof defined by the list of ProofOps
|
|
421
|
+
* @name ProofOps
|
|
422
|
+
* @package tendermint.crypto
|
|
423
|
+
* @see proto type: tendermint.crypto.ProofOps
|
|
424
|
+
*/
|
|
396
425
|
exports.ProofOps = {
|
|
397
426
|
typeUrl: "/tendermint.crypto.ProofOps",
|
|
398
427
|
is(o) {
|
|
@@ -2,6 +2,11 @@ import { Header, HeaderAmino, Data, DataAmino, Commit, CommitAmino } from "./typ
|
|
|
2
2
|
import { EvidenceList, EvidenceListAmino } from "./evidence";
|
|
3
3
|
import { BinaryReader, BinaryWriter } from "../../binary";
|
|
4
4
|
import { DeepPartial } from "../../helpers";
|
|
5
|
+
/**
|
|
6
|
+
* @name Block
|
|
7
|
+
* @package tendermint.types
|
|
8
|
+
* @see proto type: tendermint.types.Block
|
|
9
|
+
*/
|
|
5
10
|
export interface Block {
|
|
6
11
|
header: Header;
|
|
7
12
|
data: Data;
|
|
@@ -12,6 +17,11 @@ export interface BlockProtoMsg {
|
|
|
12
17
|
typeUrl: "/tendermint.types.Block";
|
|
13
18
|
value: Uint8Array;
|
|
14
19
|
}
|
|
20
|
+
/**
|
|
21
|
+
* @name BlockAmino
|
|
22
|
+
* @package tendermint.types
|
|
23
|
+
* @see proto type: tendermint.types.Block
|
|
24
|
+
*/
|
|
15
25
|
export interface BlockAmino {
|
|
16
26
|
header: HeaderAmino;
|
|
17
27
|
data: DataAmino;
|
|
@@ -22,6 +32,11 @@ export interface BlockAminoMsg {
|
|
|
22
32
|
type: "/tendermint.types.Block";
|
|
23
33
|
value: BlockAmino;
|
|
24
34
|
}
|
|
35
|
+
/**
|
|
36
|
+
* @name Block
|
|
37
|
+
* @package tendermint.types
|
|
38
|
+
* @see proto type: tendermint.types.Block
|
|
39
|
+
*/
|
|
25
40
|
export declare const Block: {
|
|
26
41
|
typeUrl: string;
|
|
27
42
|
is(o: any): o is Block;
|
|
@@ -2,6 +2,11 @@ import { Vote, VoteAmino, LightBlock, LightBlockAmino } from "./types";
|
|
|
2
2
|
import { Validator, ValidatorAmino } from "./validator";
|
|
3
3
|
import { BinaryReader, BinaryWriter } from "../../binary";
|
|
4
4
|
import { DeepPartial } from "../../helpers";
|
|
5
|
+
/**
|
|
6
|
+
* @name Evidence
|
|
7
|
+
* @package tendermint.types
|
|
8
|
+
* @see proto type: tendermint.types.Evidence
|
|
9
|
+
*/
|
|
5
10
|
export interface Evidence {
|
|
6
11
|
duplicateVoteEvidence?: DuplicateVoteEvidence;
|
|
7
12
|
lightClientAttackEvidence?: LightClientAttackEvidence;
|
|
@@ -10,6 +15,11 @@ export interface EvidenceProtoMsg {
|
|
|
10
15
|
typeUrl: "/tendermint.types.Evidence";
|
|
11
16
|
value: Uint8Array;
|
|
12
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* @name EvidenceAmino
|
|
20
|
+
* @package tendermint.types
|
|
21
|
+
* @see proto type: tendermint.types.Evidence
|
|
22
|
+
*/
|
|
13
23
|
export interface EvidenceAmino {
|
|
14
24
|
duplicate_vote_evidence?: DuplicateVoteEvidenceAmino;
|
|
15
25
|
light_client_attack_evidence?: LightClientAttackEvidenceAmino;
|
|
@@ -18,7 +28,12 @@ export interface EvidenceAminoMsg {
|
|
|
18
28
|
type: "/tendermint.types.Evidence";
|
|
19
29
|
value: EvidenceAmino;
|
|
20
30
|
}
|
|
21
|
-
/**
|
|
31
|
+
/**
|
|
32
|
+
* DuplicateVoteEvidence contains evidence of a validator signed two conflicting votes.
|
|
33
|
+
* @name DuplicateVoteEvidence
|
|
34
|
+
* @package tendermint.types
|
|
35
|
+
* @see proto type: tendermint.types.DuplicateVoteEvidence
|
|
36
|
+
*/
|
|
22
37
|
export interface DuplicateVoteEvidence {
|
|
23
38
|
voteA?: Vote;
|
|
24
39
|
voteB?: Vote;
|
|
@@ -30,7 +45,12 @@ export interface DuplicateVoteEvidenceProtoMsg {
|
|
|
30
45
|
typeUrl: "/tendermint.types.DuplicateVoteEvidence";
|
|
31
46
|
value: Uint8Array;
|
|
32
47
|
}
|
|
33
|
-
/**
|
|
48
|
+
/**
|
|
49
|
+
* DuplicateVoteEvidence contains evidence of a validator signed two conflicting votes.
|
|
50
|
+
* @name DuplicateVoteEvidenceAmino
|
|
51
|
+
* @package tendermint.types
|
|
52
|
+
* @see proto type: tendermint.types.DuplicateVoteEvidence
|
|
53
|
+
*/
|
|
34
54
|
export interface DuplicateVoteEvidenceAmino {
|
|
35
55
|
vote_a?: VoteAmino;
|
|
36
56
|
vote_b?: VoteAmino;
|
|
@@ -42,7 +62,12 @@ export interface DuplicateVoteEvidenceAminoMsg {
|
|
|
42
62
|
type: "/tendermint.types.DuplicateVoteEvidence";
|
|
43
63
|
value: DuplicateVoteEvidenceAmino;
|
|
44
64
|
}
|
|
45
|
-
/**
|
|
65
|
+
/**
|
|
66
|
+
* LightClientAttackEvidence contains evidence of a set of validators attempting to mislead a light client.
|
|
67
|
+
* @name LightClientAttackEvidence
|
|
68
|
+
* @package tendermint.types
|
|
69
|
+
* @see proto type: tendermint.types.LightClientAttackEvidence
|
|
70
|
+
*/
|
|
46
71
|
export interface LightClientAttackEvidence {
|
|
47
72
|
conflictingBlock?: LightBlock;
|
|
48
73
|
commonHeight: bigint;
|
|
@@ -54,7 +79,12 @@ export interface LightClientAttackEvidenceProtoMsg {
|
|
|
54
79
|
typeUrl: "/tendermint.types.LightClientAttackEvidence";
|
|
55
80
|
value: Uint8Array;
|
|
56
81
|
}
|
|
57
|
-
/**
|
|
82
|
+
/**
|
|
83
|
+
* LightClientAttackEvidence contains evidence of a set of validators attempting to mislead a light client.
|
|
84
|
+
* @name LightClientAttackEvidenceAmino
|
|
85
|
+
* @package tendermint.types
|
|
86
|
+
* @see proto type: tendermint.types.LightClientAttackEvidence
|
|
87
|
+
*/
|
|
58
88
|
export interface LightClientAttackEvidenceAmino {
|
|
59
89
|
conflicting_block?: LightBlockAmino;
|
|
60
90
|
common_height: string;
|
|
@@ -66,6 +96,11 @@ export interface LightClientAttackEvidenceAminoMsg {
|
|
|
66
96
|
type: "/tendermint.types.LightClientAttackEvidence";
|
|
67
97
|
value: LightClientAttackEvidenceAmino;
|
|
68
98
|
}
|
|
99
|
+
/**
|
|
100
|
+
* @name EvidenceList
|
|
101
|
+
* @package tendermint.types
|
|
102
|
+
* @see proto type: tendermint.types.EvidenceList
|
|
103
|
+
*/
|
|
69
104
|
export interface EvidenceList {
|
|
70
105
|
evidence: Evidence[];
|
|
71
106
|
}
|
|
@@ -73,6 +108,11 @@ export interface EvidenceListProtoMsg {
|
|
|
73
108
|
typeUrl: "/tendermint.types.EvidenceList";
|
|
74
109
|
value: Uint8Array;
|
|
75
110
|
}
|
|
111
|
+
/**
|
|
112
|
+
* @name EvidenceListAmino
|
|
113
|
+
* @package tendermint.types
|
|
114
|
+
* @see proto type: tendermint.types.EvidenceList
|
|
115
|
+
*/
|
|
76
116
|
export interface EvidenceListAmino {
|
|
77
117
|
evidence: EvidenceAmino[];
|
|
78
118
|
}
|
|
@@ -80,6 +120,11 @@ export interface EvidenceListAminoMsg {
|
|
|
80
120
|
type: "/tendermint.types.EvidenceList";
|
|
81
121
|
value: EvidenceListAmino;
|
|
82
122
|
}
|
|
123
|
+
/**
|
|
124
|
+
* @name Evidence
|
|
125
|
+
* @package tendermint.types
|
|
126
|
+
* @see proto type: tendermint.types.Evidence
|
|
127
|
+
*/
|
|
83
128
|
export declare const Evidence: {
|
|
84
129
|
typeUrl: string;
|
|
85
130
|
is(o: any): o is Evidence;
|
|
@@ -95,6 +140,12 @@ export declare const Evidence: {
|
|
|
95
140
|
toProtoMsg(message: Evidence): EvidenceProtoMsg;
|
|
96
141
|
registerTypeUrl(): void;
|
|
97
142
|
};
|
|
143
|
+
/**
|
|
144
|
+
* DuplicateVoteEvidence contains evidence of a validator signed two conflicting votes.
|
|
145
|
+
* @name DuplicateVoteEvidence
|
|
146
|
+
* @package tendermint.types
|
|
147
|
+
* @see proto type: tendermint.types.DuplicateVoteEvidence
|
|
148
|
+
*/
|
|
98
149
|
export declare const DuplicateVoteEvidence: {
|
|
99
150
|
typeUrl: string;
|
|
100
151
|
is(o: any): o is DuplicateVoteEvidence;
|
|
@@ -110,6 +161,12 @@ export declare const DuplicateVoteEvidence: {
|
|
|
110
161
|
toProtoMsg(message: DuplicateVoteEvidence): DuplicateVoteEvidenceProtoMsg;
|
|
111
162
|
registerTypeUrl(): void;
|
|
112
163
|
};
|
|
164
|
+
/**
|
|
165
|
+
* LightClientAttackEvidence contains evidence of a set of validators attempting to mislead a light client.
|
|
166
|
+
* @name LightClientAttackEvidence
|
|
167
|
+
* @package tendermint.types
|
|
168
|
+
* @see proto type: tendermint.types.LightClientAttackEvidence
|
|
169
|
+
*/
|
|
113
170
|
export declare const LightClientAttackEvidence: {
|
|
114
171
|
typeUrl: string;
|
|
115
172
|
is(o: any): o is LightClientAttackEvidence;
|
|
@@ -125,6 +182,11 @@ export declare const LightClientAttackEvidence: {
|
|
|
125
182
|
toProtoMsg(message: LightClientAttackEvidence): LightClientAttackEvidenceProtoMsg;
|
|
126
183
|
registerTypeUrl(): void;
|
|
127
184
|
};
|
|
185
|
+
/**
|
|
186
|
+
* @name EvidenceList
|
|
187
|
+
* @package tendermint.types
|
|
188
|
+
* @see proto type: tendermint.types.EvidenceList
|
|
189
|
+
*/
|
|
128
190
|
export declare const EvidenceList: {
|
|
129
191
|
typeUrl: string;
|
|
130
192
|
is(o: any): o is EvidenceList;
|
|
@@ -13,6 +13,11 @@ function createBaseEvidence() {
|
|
|
13
13
|
lightClientAttackEvidence: undefined
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* @name Evidence
|
|
18
|
+
* @package tendermint.types
|
|
19
|
+
* @see proto type: tendermint.types.Evidence
|
|
20
|
+
*/
|
|
16
21
|
exports.Evidence = {
|
|
17
22
|
typeUrl: "/tendermint.types.Evidence",
|
|
18
23
|
is(o) {
|
|
@@ -104,6 +109,12 @@ function createBaseDuplicateVoteEvidence() {
|
|
|
104
109
|
timestamp: new Date()
|
|
105
110
|
};
|
|
106
111
|
}
|
|
112
|
+
/**
|
|
113
|
+
* DuplicateVoteEvidence contains evidence of a validator signed two conflicting votes.
|
|
114
|
+
* @name DuplicateVoteEvidence
|
|
115
|
+
* @package tendermint.types
|
|
116
|
+
* @see proto type: tendermint.types.DuplicateVoteEvidence
|
|
117
|
+
*/
|
|
107
118
|
exports.DuplicateVoteEvidence = {
|
|
108
119
|
typeUrl: "/tendermint.types.DuplicateVoteEvidence",
|
|
109
120
|
is(o) {
|
|
@@ -227,6 +238,12 @@ function createBaseLightClientAttackEvidence() {
|
|
|
227
238
|
timestamp: new Date()
|
|
228
239
|
};
|
|
229
240
|
}
|
|
241
|
+
/**
|
|
242
|
+
* LightClientAttackEvidence contains evidence of a set of validators attempting to mislead a light client.
|
|
243
|
+
* @name LightClientAttackEvidence
|
|
244
|
+
* @package tendermint.types
|
|
245
|
+
* @see proto type: tendermint.types.LightClientAttackEvidence
|
|
246
|
+
*/
|
|
230
247
|
exports.LightClientAttackEvidence = {
|
|
231
248
|
typeUrl: "/tendermint.types.LightClientAttackEvidence",
|
|
232
249
|
is(o) {
|
|
@@ -350,6 +367,11 @@ function createBaseEvidenceList() {
|
|
|
350
367
|
evidence: []
|
|
351
368
|
};
|
|
352
369
|
}
|
|
370
|
+
/**
|
|
371
|
+
* @name EvidenceList
|
|
372
|
+
* @package tendermint.types
|
|
373
|
+
* @see proto type: tendermint.types.EvidenceList
|
|
374
|
+
*/
|
|
353
375
|
exports.EvidenceList = {
|
|
354
376
|
typeUrl: "/tendermint.types.EvidenceList",
|
|
355
377
|
is(o) {
|