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
|
@@ -6,6 +6,9 @@ import { DeepPartial } from "../../../../helpers";
|
|
|
6
6
|
/**
|
|
7
7
|
* MsgConnectionOpenInit defines the msg sent by an account on Chain A to
|
|
8
8
|
* initialize a connection with Chain B.
|
|
9
|
+
* @name MsgConnectionOpenInit
|
|
10
|
+
* @package ibc.core.connection.v1
|
|
11
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenInit
|
|
9
12
|
*/
|
|
10
13
|
export interface MsgConnectionOpenInit {
|
|
11
14
|
clientId: string;
|
|
@@ -21,6 +24,9 @@ export interface MsgConnectionOpenInitProtoMsg {
|
|
|
21
24
|
/**
|
|
22
25
|
* MsgConnectionOpenInit defines the msg sent by an account on Chain A to
|
|
23
26
|
* initialize a connection with Chain B.
|
|
27
|
+
* @name MsgConnectionOpenInitAmino
|
|
28
|
+
* @package ibc.core.connection.v1
|
|
29
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenInit
|
|
24
30
|
*/
|
|
25
31
|
export interface MsgConnectionOpenInitAmino {
|
|
26
32
|
client_id: string;
|
|
@@ -36,6 +42,9 @@ export interface MsgConnectionOpenInitAminoMsg {
|
|
|
36
42
|
/**
|
|
37
43
|
* MsgConnectionOpenInitResponse defines the Msg/ConnectionOpenInit response
|
|
38
44
|
* type.
|
|
45
|
+
* @name MsgConnectionOpenInitResponse
|
|
46
|
+
* @package ibc.core.connection.v1
|
|
47
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenInitResponse
|
|
39
48
|
*/
|
|
40
49
|
export interface MsgConnectionOpenInitResponse {
|
|
41
50
|
}
|
|
@@ -46,6 +55,9 @@ export interface MsgConnectionOpenInitResponseProtoMsg {
|
|
|
46
55
|
/**
|
|
47
56
|
* MsgConnectionOpenInitResponse defines the Msg/ConnectionOpenInit response
|
|
48
57
|
* type.
|
|
58
|
+
* @name MsgConnectionOpenInitResponseAmino
|
|
59
|
+
* @package ibc.core.connection.v1
|
|
60
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenInitResponse
|
|
49
61
|
*/
|
|
50
62
|
export interface MsgConnectionOpenInitResponseAmino {
|
|
51
63
|
}
|
|
@@ -56,14 +68,21 @@ export interface MsgConnectionOpenInitResponseAminoMsg {
|
|
|
56
68
|
/**
|
|
57
69
|
* MsgConnectionOpenTry defines a msg sent by a Relayer to try to open a
|
|
58
70
|
* connection on Chain B.
|
|
71
|
+
* @name MsgConnectionOpenTry
|
|
72
|
+
* @package ibc.core.connection.v1
|
|
73
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenTry
|
|
59
74
|
*/
|
|
60
75
|
export interface MsgConnectionOpenTry {
|
|
61
76
|
clientId: string;
|
|
62
|
-
/**
|
|
63
|
-
|
|
77
|
+
/**
|
|
78
|
+
* Deprecated: this field is unused. Crossing hellos are no longer supported in core IBC.
|
|
79
|
+
* @deprecated
|
|
80
|
+
*/
|
|
64
81
|
previousConnectionId: string;
|
|
65
|
-
/**
|
|
66
|
-
|
|
82
|
+
/**
|
|
83
|
+
* Deprecated: this field is unused.
|
|
84
|
+
* @deprecated
|
|
85
|
+
*/
|
|
67
86
|
clientState?: Any;
|
|
68
87
|
counterparty: Counterparty;
|
|
69
88
|
delayPeriod: bigint;
|
|
@@ -74,18 +93,26 @@ export interface MsgConnectionOpenTry {
|
|
|
74
93
|
* INIT`
|
|
75
94
|
*/
|
|
76
95
|
proofInit: Uint8Array;
|
|
77
|
-
/**
|
|
78
|
-
|
|
96
|
+
/**
|
|
97
|
+
* Deprecated: this field is unused.
|
|
98
|
+
* @deprecated
|
|
99
|
+
*/
|
|
79
100
|
proofClient: Uint8Array;
|
|
80
|
-
/**
|
|
81
|
-
|
|
101
|
+
/**
|
|
102
|
+
* Deprecated: this field is unused.
|
|
103
|
+
* @deprecated
|
|
104
|
+
*/
|
|
82
105
|
proofConsensus: Uint8Array;
|
|
83
|
-
/**
|
|
84
|
-
|
|
106
|
+
/**
|
|
107
|
+
* Deprecated: this field is unused.
|
|
108
|
+
* @deprecated
|
|
109
|
+
*/
|
|
85
110
|
consensusHeight: Height;
|
|
86
111
|
signer: string;
|
|
87
|
-
/**
|
|
88
|
-
|
|
112
|
+
/**
|
|
113
|
+
* Deprecated: this field is unused.
|
|
114
|
+
* @deprecated
|
|
115
|
+
*/
|
|
89
116
|
hostConsensusStateProof: Uint8Array;
|
|
90
117
|
}
|
|
91
118
|
export interface MsgConnectionOpenTryProtoMsg {
|
|
@@ -95,14 +122,21 @@ export interface MsgConnectionOpenTryProtoMsg {
|
|
|
95
122
|
/**
|
|
96
123
|
* MsgConnectionOpenTry defines a msg sent by a Relayer to try to open a
|
|
97
124
|
* connection on Chain B.
|
|
125
|
+
* @name MsgConnectionOpenTryAmino
|
|
126
|
+
* @package ibc.core.connection.v1
|
|
127
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenTry
|
|
98
128
|
*/
|
|
99
129
|
export interface MsgConnectionOpenTryAmino {
|
|
100
130
|
client_id: string;
|
|
101
|
-
/**
|
|
102
|
-
|
|
131
|
+
/**
|
|
132
|
+
* Deprecated: this field is unused. Crossing hellos are no longer supported in core IBC.
|
|
133
|
+
* @deprecated
|
|
134
|
+
*/
|
|
103
135
|
previous_connection_id: string;
|
|
104
|
-
/**
|
|
105
|
-
|
|
136
|
+
/**
|
|
137
|
+
* Deprecated: this field is unused.
|
|
138
|
+
* @deprecated
|
|
139
|
+
*/
|
|
106
140
|
client_state?: AnyAmino;
|
|
107
141
|
counterparty: CounterpartyAmino;
|
|
108
142
|
delay_period: string;
|
|
@@ -113,32 +147,50 @@ export interface MsgConnectionOpenTryAmino {
|
|
|
113
147
|
* INIT`
|
|
114
148
|
*/
|
|
115
149
|
proof_init: string;
|
|
116
|
-
/**
|
|
117
|
-
|
|
150
|
+
/**
|
|
151
|
+
* Deprecated: this field is unused.
|
|
152
|
+
* @deprecated
|
|
153
|
+
*/
|
|
118
154
|
proof_client: string;
|
|
119
|
-
/**
|
|
120
|
-
|
|
155
|
+
/**
|
|
156
|
+
* Deprecated: this field is unused.
|
|
157
|
+
* @deprecated
|
|
158
|
+
*/
|
|
121
159
|
proof_consensus: string;
|
|
122
|
-
/**
|
|
123
|
-
|
|
160
|
+
/**
|
|
161
|
+
* Deprecated: this field is unused.
|
|
162
|
+
* @deprecated
|
|
163
|
+
*/
|
|
124
164
|
consensus_height: HeightAmino;
|
|
125
165
|
signer: string;
|
|
126
|
-
/**
|
|
127
|
-
|
|
166
|
+
/**
|
|
167
|
+
* Deprecated: this field is unused.
|
|
168
|
+
* @deprecated
|
|
169
|
+
*/
|
|
128
170
|
host_consensus_state_proof: string;
|
|
129
171
|
}
|
|
130
172
|
export interface MsgConnectionOpenTryAminoMsg {
|
|
131
173
|
type: "cosmos-sdk/MsgConnectionOpenTry";
|
|
132
174
|
value: MsgConnectionOpenTryAmino;
|
|
133
175
|
}
|
|
134
|
-
/**
|
|
176
|
+
/**
|
|
177
|
+
* MsgConnectionOpenTryResponse defines the Msg/ConnectionOpenTry response type.
|
|
178
|
+
* @name MsgConnectionOpenTryResponse
|
|
179
|
+
* @package ibc.core.connection.v1
|
|
180
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenTryResponse
|
|
181
|
+
*/
|
|
135
182
|
export interface MsgConnectionOpenTryResponse {
|
|
136
183
|
}
|
|
137
184
|
export interface MsgConnectionOpenTryResponseProtoMsg {
|
|
138
185
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenTryResponse";
|
|
139
186
|
value: Uint8Array;
|
|
140
187
|
}
|
|
141
|
-
/**
|
|
188
|
+
/**
|
|
189
|
+
* MsgConnectionOpenTryResponse defines the Msg/ConnectionOpenTry response type.
|
|
190
|
+
* @name MsgConnectionOpenTryResponseAmino
|
|
191
|
+
* @package ibc.core.connection.v1
|
|
192
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenTryResponse
|
|
193
|
+
*/
|
|
142
194
|
export interface MsgConnectionOpenTryResponseAmino {
|
|
143
195
|
}
|
|
144
196
|
export interface MsgConnectionOpenTryResponseAminoMsg {
|
|
@@ -148,13 +200,18 @@ export interface MsgConnectionOpenTryResponseAminoMsg {
|
|
|
148
200
|
/**
|
|
149
201
|
* MsgConnectionOpenAck defines a msg sent by a Relayer to Chain A to
|
|
150
202
|
* acknowledge the change of connection state to TRYOPEN on Chain B.
|
|
203
|
+
* @name MsgConnectionOpenAck
|
|
204
|
+
* @package ibc.core.connection.v1
|
|
205
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenAck
|
|
151
206
|
*/
|
|
152
207
|
export interface MsgConnectionOpenAck {
|
|
153
208
|
connectionId: string;
|
|
154
209
|
counterpartyConnectionId: string;
|
|
155
210
|
version?: Version;
|
|
156
|
-
/**
|
|
157
|
-
|
|
211
|
+
/**
|
|
212
|
+
* Deprecated: this field is unused.
|
|
213
|
+
* @deprecated
|
|
214
|
+
*/
|
|
158
215
|
clientState?: Any;
|
|
159
216
|
proofHeight: Height;
|
|
160
217
|
/**
|
|
@@ -162,18 +219,26 @@ export interface MsgConnectionOpenAck {
|
|
|
162
219
|
* TRYOPEN`
|
|
163
220
|
*/
|
|
164
221
|
proofTry: Uint8Array;
|
|
165
|
-
/**
|
|
166
|
-
|
|
222
|
+
/**
|
|
223
|
+
* Deprecated: this field is unused.
|
|
224
|
+
* @deprecated
|
|
225
|
+
*/
|
|
167
226
|
proofClient: Uint8Array;
|
|
168
|
-
/**
|
|
169
|
-
|
|
227
|
+
/**
|
|
228
|
+
* Deprecated: this field is unused.
|
|
229
|
+
* @deprecated
|
|
230
|
+
*/
|
|
170
231
|
proofConsensus: Uint8Array;
|
|
171
|
-
/**
|
|
172
|
-
|
|
232
|
+
/**
|
|
233
|
+
* Deprecated: this field is unused.
|
|
234
|
+
* @deprecated
|
|
235
|
+
*/
|
|
173
236
|
consensusHeight: Height;
|
|
174
237
|
signer: string;
|
|
175
|
-
/**
|
|
176
|
-
|
|
238
|
+
/**
|
|
239
|
+
* Deprecated: this field is unused.
|
|
240
|
+
* @deprecated
|
|
241
|
+
*/
|
|
177
242
|
hostConsensusStateProof: Uint8Array;
|
|
178
243
|
}
|
|
179
244
|
export interface MsgConnectionOpenAckProtoMsg {
|
|
@@ -183,13 +248,18 @@ export interface MsgConnectionOpenAckProtoMsg {
|
|
|
183
248
|
/**
|
|
184
249
|
* MsgConnectionOpenAck defines a msg sent by a Relayer to Chain A to
|
|
185
250
|
* acknowledge the change of connection state to TRYOPEN on Chain B.
|
|
251
|
+
* @name MsgConnectionOpenAckAmino
|
|
252
|
+
* @package ibc.core.connection.v1
|
|
253
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenAck
|
|
186
254
|
*/
|
|
187
255
|
export interface MsgConnectionOpenAckAmino {
|
|
188
256
|
connection_id: string;
|
|
189
257
|
counterparty_connection_id: string;
|
|
190
258
|
version?: VersionAmino;
|
|
191
|
-
/**
|
|
192
|
-
|
|
259
|
+
/**
|
|
260
|
+
* Deprecated: this field is unused.
|
|
261
|
+
* @deprecated
|
|
262
|
+
*/
|
|
193
263
|
client_state?: AnyAmino;
|
|
194
264
|
proof_height: HeightAmino;
|
|
195
265
|
/**
|
|
@@ -197,32 +267,50 @@ export interface MsgConnectionOpenAckAmino {
|
|
|
197
267
|
* TRYOPEN`
|
|
198
268
|
*/
|
|
199
269
|
proof_try: string;
|
|
200
|
-
/**
|
|
201
|
-
|
|
270
|
+
/**
|
|
271
|
+
* Deprecated: this field is unused.
|
|
272
|
+
* @deprecated
|
|
273
|
+
*/
|
|
202
274
|
proof_client: string;
|
|
203
|
-
/**
|
|
204
|
-
|
|
275
|
+
/**
|
|
276
|
+
* Deprecated: this field is unused.
|
|
277
|
+
* @deprecated
|
|
278
|
+
*/
|
|
205
279
|
proof_consensus: string;
|
|
206
|
-
/**
|
|
207
|
-
|
|
280
|
+
/**
|
|
281
|
+
* Deprecated: this field is unused.
|
|
282
|
+
* @deprecated
|
|
283
|
+
*/
|
|
208
284
|
consensus_height: HeightAmino;
|
|
209
285
|
signer: string;
|
|
210
|
-
/**
|
|
211
|
-
|
|
286
|
+
/**
|
|
287
|
+
* Deprecated: this field is unused.
|
|
288
|
+
* @deprecated
|
|
289
|
+
*/
|
|
212
290
|
host_consensus_state_proof: string;
|
|
213
291
|
}
|
|
214
292
|
export interface MsgConnectionOpenAckAminoMsg {
|
|
215
293
|
type: "cosmos-sdk/MsgConnectionOpenAck";
|
|
216
294
|
value: MsgConnectionOpenAckAmino;
|
|
217
295
|
}
|
|
218
|
-
/**
|
|
296
|
+
/**
|
|
297
|
+
* MsgConnectionOpenAckResponse defines the Msg/ConnectionOpenAck response type.
|
|
298
|
+
* @name MsgConnectionOpenAckResponse
|
|
299
|
+
* @package ibc.core.connection.v1
|
|
300
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenAckResponse
|
|
301
|
+
*/
|
|
219
302
|
export interface MsgConnectionOpenAckResponse {
|
|
220
303
|
}
|
|
221
304
|
export interface MsgConnectionOpenAckResponseProtoMsg {
|
|
222
305
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenAckResponse";
|
|
223
306
|
value: Uint8Array;
|
|
224
307
|
}
|
|
225
|
-
/**
|
|
308
|
+
/**
|
|
309
|
+
* MsgConnectionOpenAckResponse defines the Msg/ConnectionOpenAck response type.
|
|
310
|
+
* @name MsgConnectionOpenAckResponseAmino
|
|
311
|
+
* @package ibc.core.connection.v1
|
|
312
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenAckResponse
|
|
313
|
+
*/
|
|
226
314
|
export interface MsgConnectionOpenAckResponseAmino {
|
|
227
315
|
}
|
|
228
316
|
export interface MsgConnectionOpenAckResponseAminoMsg {
|
|
@@ -232,10 +320,15 @@ export interface MsgConnectionOpenAckResponseAminoMsg {
|
|
|
232
320
|
/**
|
|
233
321
|
* MsgConnectionOpenConfirm defines a msg sent by a Relayer to Chain B to
|
|
234
322
|
* acknowledge the change of connection state to OPEN on Chain A.
|
|
323
|
+
* @name MsgConnectionOpenConfirm
|
|
324
|
+
* @package ibc.core.connection.v1
|
|
325
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenConfirm
|
|
235
326
|
*/
|
|
236
327
|
export interface MsgConnectionOpenConfirm {
|
|
237
328
|
connectionId: string;
|
|
238
|
-
/**
|
|
329
|
+
/**
|
|
330
|
+
* proof for the change of the connection state on Chain A: `INIT -> OPEN`
|
|
331
|
+
*/
|
|
239
332
|
proofAck: Uint8Array;
|
|
240
333
|
proofHeight: Height;
|
|
241
334
|
signer: string;
|
|
@@ -247,10 +340,15 @@ export interface MsgConnectionOpenConfirmProtoMsg {
|
|
|
247
340
|
/**
|
|
248
341
|
* MsgConnectionOpenConfirm defines a msg sent by a Relayer to Chain B to
|
|
249
342
|
* acknowledge the change of connection state to OPEN on Chain A.
|
|
343
|
+
* @name MsgConnectionOpenConfirmAmino
|
|
344
|
+
* @package ibc.core.connection.v1
|
|
345
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenConfirm
|
|
250
346
|
*/
|
|
251
347
|
export interface MsgConnectionOpenConfirmAmino {
|
|
252
348
|
connection_id: string;
|
|
253
|
-
/**
|
|
349
|
+
/**
|
|
350
|
+
* proof for the change of the connection state on Chain A: `INIT -> OPEN`
|
|
351
|
+
*/
|
|
254
352
|
proof_ack: string;
|
|
255
353
|
proof_height: HeightAmino;
|
|
256
354
|
signer: string;
|
|
@@ -262,6 +360,9 @@ export interface MsgConnectionOpenConfirmAminoMsg {
|
|
|
262
360
|
/**
|
|
263
361
|
* MsgConnectionOpenConfirmResponse defines the Msg/ConnectionOpenConfirm
|
|
264
362
|
* response type.
|
|
363
|
+
* @name MsgConnectionOpenConfirmResponse
|
|
364
|
+
* @package ibc.core.connection.v1
|
|
365
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenConfirmResponse
|
|
265
366
|
*/
|
|
266
367
|
export interface MsgConnectionOpenConfirmResponse {
|
|
267
368
|
}
|
|
@@ -272,6 +373,9 @@ export interface MsgConnectionOpenConfirmResponseProtoMsg {
|
|
|
272
373
|
/**
|
|
273
374
|
* MsgConnectionOpenConfirmResponse defines the Msg/ConnectionOpenConfirm
|
|
274
375
|
* response type.
|
|
376
|
+
* @name MsgConnectionOpenConfirmResponseAmino
|
|
377
|
+
* @package ibc.core.connection.v1
|
|
378
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenConfirmResponse
|
|
275
379
|
*/
|
|
276
380
|
export interface MsgConnectionOpenConfirmResponseAmino {
|
|
277
381
|
}
|
|
@@ -279,9 +383,16 @@ export interface MsgConnectionOpenConfirmResponseAminoMsg {
|
|
|
279
383
|
type: "cosmos-sdk/MsgConnectionOpenConfirmResponse";
|
|
280
384
|
value: MsgConnectionOpenConfirmResponseAmino;
|
|
281
385
|
}
|
|
282
|
-
/**
|
|
386
|
+
/**
|
|
387
|
+
* MsgUpdateParams defines the sdk.Msg type to update the connection parameters.
|
|
388
|
+
* @name MsgUpdateParams
|
|
389
|
+
* @package ibc.core.connection.v1
|
|
390
|
+
* @see proto type: ibc.core.connection.v1.MsgUpdateParams
|
|
391
|
+
*/
|
|
283
392
|
export interface MsgUpdateParams {
|
|
284
|
-
/**
|
|
393
|
+
/**
|
|
394
|
+
* signer address
|
|
395
|
+
*/
|
|
285
396
|
signer: string;
|
|
286
397
|
/**
|
|
287
398
|
* params defines the connection parameters to update.
|
|
@@ -294,9 +405,16 @@ export interface MsgUpdateParamsProtoMsg {
|
|
|
294
405
|
typeUrl: "/ibc.core.connection.v1.MsgUpdateParams";
|
|
295
406
|
value: Uint8Array;
|
|
296
407
|
}
|
|
297
|
-
/**
|
|
408
|
+
/**
|
|
409
|
+
* MsgUpdateParams defines the sdk.Msg type to update the connection parameters.
|
|
410
|
+
* @name MsgUpdateParamsAmino
|
|
411
|
+
* @package ibc.core.connection.v1
|
|
412
|
+
* @see proto type: ibc.core.connection.v1.MsgUpdateParams
|
|
413
|
+
*/
|
|
298
414
|
export interface MsgUpdateParamsAmino {
|
|
299
|
-
/**
|
|
415
|
+
/**
|
|
416
|
+
* signer address
|
|
417
|
+
*/
|
|
300
418
|
signer: string;
|
|
301
419
|
/**
|
|
302
420
|
* params defines the connection parameters to update.
|
|
@@ -309,20 +427,37 @@ export interface MsgUpdateParamsAminoMsg {
|
|
|
309
427
|
type: "cosmos-sdk/MsgUpdateParams";
|
|
310
428
|
value: MsgUpdateParamsAmino;
|
|
311
429
|
}
|
|
312
|
-
/**
|
|
430
|
+
/**
|
|
431
|
+
* MsgUpdateParamsResponse defines the MsgUpdateParams response type.
|
|
432
|
+
* @name MsgUpdateParamsResponse
|
|
433
|
+
* @package ibc.core.connection.v1
|
|
434
|
+
* @see proto type: ibc.core.connection.v1.MsgUpdateParamsResponse
|
|
435
|
+
*/
|
|
313
436
|
export interface MsgUpdateParamsResponse {
|
|
314
437
|
}
|
|
315
438
|
export interface MsgUpdateParamsResponseProtoMsg {
|
|
316
439
|
typeUrl: "/ibc.core.connection.v1.MsgUpdateParamsResponse";
|
|
317
440
|
value: Uint8Array;
|
|
318
441
|
}
|
|
319
|
-
/**
|
|
442
|
+
/**
|
|
443
|
+
* MsgUpdateParamsResponse defines the MsgUpdateParams response type.
|
|
444
|
+
* @name MsgUpdateParamsResponseAmino
|
|
445
|
+
* @package ibc.core.connection.v1
|
|
446
|
+
* @see proto type: ibc.core.connection.v1.MsgUpdateParamsResponse
|
|
447
|
+
*/
|
|
320
448
|
export interface MsgUpdateParamsResponseAmino {
|
|
321
449
|
}
|
|
322
450
|
export interface MsgUpdateParamsResponseAminoMsg {
|
|
323
451
|
type: "cosmos-sdk/MsgUpdateParamsResponse";
|
|
324
452
|
value: MsgUpdateParamsResponseAmino;
|
|
325
453
|
}
|
|
454
|
+
/**
|
|
455
|
+
* MsgConnectionOpenInit defines the msg sent by an account on Chain A to
|
|
456
|
+
* initialize a connection with Chain B.
|
|
457
|
+
* @name MsgConnectionOpenInit
|
|
458
|
+
* @package ibc.core.connection.v1
|
|
459
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenInit
|
|
460
|
+
*/
|
|
326
461
|
export declare const MsgConnectionOpenInit: {
|
|
327
462
|
typeUrl: string;
|
|
328
463
|
aminoType: string;
|
|
@@ -340,6 +475,13 @@ export declare const MsgConnectionOpenInit: {
|
|
|
340
475
|
toProtoMsg(message: MsgConnectionOpenInit): MsgConnectionOpenInitProtoMsg;
|
|
341
476
|
registerTypeUrl(): void;
|
|
342
477
|
};
|
|
478
|
+
/**
|
|
479
|
+
* MsgConnectionOpenInitResponse defines the Msg/ConnectionOpenInit response
|
|
480
|
+
* type.
|
|
481
|
+
* @name MsgConnectionOpenInitResponse
|
|
482
|
+
* @package ibc.core.connection.v1
|
|
483
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenInitResponse
|
|
484
|
+
*/
|
|
343
485
|
export declare const MsgConnectionOpenInitResponse: {
|
|
344
486
|
typeUrl: string;
|
|
345
487
|
aminoType: string;
|
|
@@ -357,6 +499,13 @@ export declare const MsgConnectionOpenInitResponse: {
|
|
|
357
499
|
toProtoMsg(message: MsgConnectionOpenInitResponse): MsgConnectionOpenInitResponseProtoMsg;
|
|
358
500
|
registerTypeUrl(): void;
|
|
359
501
|
};
|
|
502
|
+
/**
|
|
503
|
+
* MsgConnectionOpenTry defines a msg sent by a Relayer to try to open a
|
|
504
|
+
* connection on Chain B.
|
|
505
|
+
* @name MsgConnectionOpenTry
|
|
506
|
+
* @package ibc.core.connection.v1
|
|
507
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenTry
|
|
508
|
+
*/
|
|
360
509
|
export declare const MsgConnectionOpenTry: {
|
|
361
510
|
typeUrl: string;
|
|
362
511
|
aminoType: string;
|
|
@@ -374,6 +523,12 @@ export declare const MsgConnectionOpenTry: {
|
|
|
374
523
|
toProtoMsg(message: MsgConnectionOpenTry): MsgConnectionOpenTryProtoMsg;
|
|
375
524
|
registerTypeUrl(): void;
|
|
376
525
|
};
|
|
526
|
+
/**
|
|
527
|
+
* MsgConnectionOpenTryResponse defines the Msg/ConnectionOpenTry response type.
|
|
528
|
+
* @name MsgConnectionOpenTryResponse
|
|
529
|
+
* @package ibc.core.connection.v1
|
|
530
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenTryResponse
|
|
531
|
+
*/
|
|
377
532
|
export declare const MsgConnectionOpenTryResponse: {
|
|
378
533
|
typeUrl: string;
|
|
379
534
|
aminoType: string;
|
|
@@ -391,6 +546,13 @@ export declare const MsgConnectionOpenTryResponse: {
|
|
|
391
546
|
toProtoMsg(message: MsgConnectionOpenTryResponse): MsgConnectionOpenTryResponseProtoMsg;
|
|
392
547
|
registerTypeUrl(): void;
|
|
393
548
|
};
|
|
549
|
+
/**
|
|
550
|
+
* MsgConnectionOpenAck defines a msg sent by a Relayer to Chain A to
|
|
551
|
+
* acknowledge the change of connection state to TRYOPEN on Chain B.
|
|
552
|
+
* @name MsgConnectionOpenAck
|
|
553
|
+
* @package ibc.core.connection.v1
|
|
554
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenAck
|
|
555
|
+
*/
|
|
394
556
|
export declare const MsgConnectionOpenAck: {
|
|
395
557
|
typeUrl: string;
|
|
396
558
|
aminoType: string;
|
|
@@ -408,6 +570,12 @@ export declare const MsgConnectionOpenAck: {
|
|
|
408
570
|
toProtoMsg(message: MsgConnectionOpenAck): MsgConnectionOpenAckProtoMsg;
|
|
409
571
|
registerTypeUrl(): void;
|
|
410
572
|
};
|
|
573
|
+
/**
|
|
574
|
+
* MsgConnectionOpenAckResponse defines the Msg/ConnectionOpenAck response type.
|
|
575
|
+
* @name MsgConnectionOpenAckResponse
|
|
576
|
+
* @package ibc.core.connection.v1
|
|
577
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenAckResponse
|
|
578
|
+
*/
|
|
411
579
|
export declare const MsgConnectionOpenAckResponse: {
|
|
412
580
|
typeUrl: string;
|
|
413
581
|
aminoType: string;
|
|
@@ -425,6 +593,13 @@ export declare const MsgConnectionOpenAckResponse: {
|
|
|
425
593
|
toProtoMsg(message: MsgConnectionOpenAckResponse): MsgConnectionOpenAckResponseProtoMsg;
|
|
426
594
|
registerTypeUrl(): void;
|
|
427
595
|
};
|
|
596
|
+
/**
|
|
597
|
+
* MsgConnectionOpenConfirm defines a msg sent by a Relayer to Chain B to
|
|
598
|
+
* acknowledge the change of connection state to OPEN on Chain A.
|
|
599
|
+
* @name MsgConnectionOpenConfirm
|
|
600
|
+
* @package ibc.core.connection.v1
|
|
601
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenConfirm
|
|
602
|
+
*/
|
|
428
603
|
export declare const MsgConnectionOpenConfirm: {
|
|
429
604
|
typeUrl: string;
|
|
430
605
|
aminoType: string;
|
|
@@ -442,6 +617,13 @@ export declare const MsgConnectionOpenConfirm: {
|
|
|
442
617
|
toProtoMsg(message: MsgConnectionOpenConfirm): MsgConnectionOpenConfirmProtoMsg;
|
|
443
618
|
registerTypeUrl(): void;
|
|
444
619
|
};
|
|
620
|
+
/**
|
|
621
|
+
* MsgConnectionOpenConfirmResponse defines the Msg/ConnectionOpenConfirm
|
|
622
|
+
* response type.
|
|
623
|
+
* @name MsgConnectionOpenConfirmResponse
|
|
624
|
+
* @package ibc.core.connection.v1
|
|
625
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenConfirmResponse
|
|
626
|
+
*/
|
|
445
627
|
export declare const MsgConnectionOpenConfirmResponse: {
|
|
446
628
|
typeUrl: string;
|
|
447
629
|
aminoType: string;
|
|
@@ -459,6 +641,12 @@ export declare const MsgConnectionOpenConfirmResponse: {
|
|
|
459
641
|
toProtoMsg(message: MsgConnectionOpenConfirmResponse): MsgConnectionOpenConfirmResponseProtoMsg;
|
|
460
642
|
registerTypeUrl(): void;
|
|
461
643
|
};
|
|
644
|
+
/**
|
|
645
|
+
* MsgUpdateParams defines the sdk.Msg type to update the connection parameters.
|
|
646
|
+
* @name MsgUpdateParams
|
|
647
|
+
* @package ibc.core.connection.v1
|
|
648
|
+
* @see proto type: ibc.core.connection.v1.MsgUpdateParams
|
|
649
|
+
*/
|
|
462
650
|
export declare const MsgUpdateParams: {
|
|
463
651
|
typeUrl: string;
|
|
464
652
|
aminoType: string;
|
|
@@ -476,6 +664,12 @@ export declare const MsgUpdateParams: {
|
|
|
476
664
|
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
477
665
|
registerTypeUrl(): void;
|
|
478
666
|
};
|
|
667
|
+
/**
|
|
668
|
+
* MsgUpdateParamsResponse defines the MsgUpdateParams response type.
|
|
669
|
+
* @name MsgUpdateParamsResponse
|
|
670
|
+
* @package ibc.core.connection.v1
|
|
671
|
+
* @see proto type: ibc.core.connection.v1.MsgUpdateParamsResponse
|
|
672
|
+
*/
|
|
479
673
|
export declare const MsgUpdateParamsResponse: {
|
|
480
674
|
typeUrl: string;
|
|
481
675
|
aminoType: string;
|