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
|
@@ -9,6 +9,16 @@ function createBaseUpgrade() {
|
|
|
9
9
|
nextSequenceSend: BigInt(0)
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* Upgrade is a verifiable type which contains the relevant information
|
|
14
|
+
* for an attempted upgrade. It provides the proposed changes to the channel
|
|
15
|
+
* end, the timeout for this upgrade attempt and the next packet sequence
|
|
16
|
+
* which allows the counterparty to efficiently know the highest sequence it has received.
|
|
17
|
+
* The next sequence send is used for pruning and upgrading from unordered to ordered channels.
|
|
18
|
+
* @name Upgrade
|
|
19
|
+
* @package ibc.core.channel.v1
|
|
20
|
+
* @see proto type: ibc.core.channel.v1.Upgrade
|
|
21
|
+
*/
|
|
12
22
|
export const Upgrade = {
|
|
13
23
|
typeUrl: "/ibc.core.channel.v1.Upgrade",
|
|
14
24
|
aminoType: "cosmos-sdk/Upgrade",
|
|
@@ -116,6 +126,13 @@ function createBaseUpgradeFields() {
|
|
|
116
126
|
version: ""
|
|
117
127
|
};
|
|
118
128
|
}
|
|
129
|
+
/**
|
|
130
|
+
* UpgradeFields are the fields in a channel end which may be changed
|
|
131
|
+
* during a channel upgrade.
|
|
132
|
+
* @name UpgradeFields
|
|
133
|
+
* @package ibc.core.channel.v1
|
|
134
|
+
* @see proto type: ibc.core.channel.v1.UpgradeFields
|
|
135
|
+
*/
|
|
119
136
|
export const UpgradeFields = {
|
|
120
137
|
typeUrl: "/ibc.core.channel.v1.UpgradeFields",
|
|
121
138
|
aminoType: "cosmos-sdk/UpgradeFields",
|
|
@@ -219,6 +236,14 @@ function createBaseErrorReceipt() {
|
|
|
219
236
|
message: ""
|
|
220
237
|
};
|
|
221
238
|
}
|
|
239
|
+
/**
|
|
240
|
+
* ErrorReceipt defines a type which encapsulates the upgrade sequence and error associated with the
|
|
241
|
+
* upgrade handshake failure. When a channel upgrade handshake is aborted both chains are expected to increment to the
|
|
242
|
+
* next sequence.
|
|
243
|
+
* @name ErrorReceipt
|
|
244
|
+
* @package ibc.core.channel.v1
|
|
245
|
+
* @see proto type: ibc.core.channel.v1.ErrorReceipt
|
|
246
|
+
*/
|
|
222
247
|
export const ErrorReceipt = {
|
|
223
248
|
typeUrl: "/ibc.core.channel.v1.ErrorReceipt",
|
|
224
249
|
aminoType: "cosmos-sdk/ErrorReceipt",
|
|
@@ -7,6 +7,13 @@ function createBaseIdentifiedClientState() {
|
|
|
7
7
|
clientState: undefined
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* IdentifiedClientState defines a client state with an additional client
|
|
12
|
+
* identifier field.
|
|
13
|
+
* @name IdentifiedClientState
|
|
14
|
+
* @package ibc.core.client.v1
|
|
15
|
+
* @see proto type: ibc.core.client.v1.IdentifiedClientState
|
|
16
|
+
*/
|
|
10
17
|
export const IdentifiedClientState = {
|
|
11
18
|
typeUrl: "/ibc.core.client.v1.IdentifiedClientState",
|
|
12
19
|
aminoType: "cosmos-sdk/IdentifiedClientState",
|
|
@@ -96,6 +103,13 @@ function createBaseConsensusStateWithHeight() {
|
|
|
96
103
|
consensusState: undefined
|
|
97
104
|
};
|
|
98
105
|
}
|
|
106
|
+
/**
|
|
107
|
+
* ConsensusStateWithHeight defines a consensus state with an additional height
|
|
108
|
+
* field.
|
|
109
|
+
* @name ConsensusStateWithHeight
|
|
110
|
+
* @package ibc.core.client.v1
|
|
111
|
+
* @see proto type: ibc.core.client.v1.ConsensusStateWithHeight
|
|
112
|
+
*/
|
|
99
113
|
export const ConsensusStateWithHeight = {
|
|
100
114
|
typeUrl: "/ibc.core.client.v1.ConsensusStateWithHeight",
|
|
101
115
|
aminoType: "cosmos-sdk/ConsensusStateWithHeight",
|
|
@@ -185,6 +199,13 @@ function createBaseClientConsensusStates() {
|
|
|
185
199
|
consensusStates: []
|
|
186
200
|
};
|
|
187
201
|
}
|
|
202
|
+
/**
|
|
203
|
+
* ClientConsensusStates defines all the stored consensus states for a given
|
|
204
|
+
* client.
|
|
205
|
+
* @name ClientConsensusStates
|
|
206
|
+
* @package ibc.core.client.v1
|
|
207
|
+
* @see proto type: ibc.core.client.v1.ClientConsensusStates
|
|
208
|
+
*/
|
|
188
209
|
export const ClientConsensusStates = {
|
|
189
210
|
typeUrl: "/ibc.core.client.v1.ClientConsensusStates",
|
|
190
211
|
aminoType: "cosmos-sdk/ClientConsensusStates",
|
|
@@ -282,6 +303,24 @@ function createBaseHeight() {
|
|
|
282
303
|
revisionHeight: BigInt(0)
|
|
283
304
|
};
|
|
284
305
|
}
|
|
306
|
+
/**
|
|
307
|
+
* Height is a monotonically increasing data type
|
|
308
|
+
* that can be compared against another Height for the purposes of updating and
|
|
309
|
+
* freezing clients
|
|
310
|
+
*
|
|
311
|
+
* Normally the RevisionHeight is incremented at each height while keeping
|
|
312
|
+
* RevisionNumber the same. However some consensus algorithms may choose to
|
|
313
|
+
* reset the height in certain conditions e.g. hard forks, state-machine
|
|
314
|
+
* breaking changes In these cases, the RevisionNumber is incremented so that
|
|
315
|
+
* height continues to be monitonically increasing even as the RevisionHeight
|
|
316
|
+
* gets reset
|
|
317
|
+
*
|
|
318
|
+
* Please note that json tags for generated Go code are overridden to explicitly exclude the omitempty jsontag.
|
|
319
|
+
* This enforces the Go json marshaller to always emit zero values for both revision_number and revision_height.
|
|
320
|
+
* @name Height
|
|
321
|
+
* @package ibc.core.client.v1
|
|
322
|
+
* @see proto type: ibc.core.client.v1.Height
|
|
323
|
+
*/
|
|
285
324
|
export const Height = {
|
|
286
325
|
typeUrl: "/ibc.core.client.v1.Height",
|
|
287
326
|
aminoType: "cosmos-sdk/Height",
|
|
@@ -366,6 +405,12 @@ function createBaseParams() {
|
|
|
366
405
|
allowedClients: []
|
|
367
406
|
};
|
|
368
407
|
}
|
|
408
|
+
/**
|
|
409
|
+
* Params defines the set of IBC light client parameters.
|
|
410
|
+
* @name Params
|
|
411
|
+
* @package ibc.core.client.v1
|
|
412
|
+
* @see proto type: ibc.core.client.v1.Params
|
|
413
|
+
*/
|
|
369
414
|
export const Params = {
|
|
370
415
|
typeUrl: "/ibc.core.client.v1.Params",
|
|
371
416
|
aminoType: "cosmos-sdk/Params",
|
|
@@ -11,6 +11,12 @@ function createBaseMsgCreateClient() {
|
|
|
11
11
|
signer: ""
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* MsgCreateClient defines a message to create an IBC client
|
|
16
|
+
* @name MsgCreateClient
|
|
17
|
+
* @package ibc.core.client.v1
|
|
18
|
+
* @see proto type: ibc.core.client.v1.MsgCreateClient
|
|
19
|
+
*/
|
|
14
20
|
export const MsgCreateClient = {
|
|
15
21
|
typeUrl: "/ibc.core.client.v1.MsgCreateClient",
|
|
16
22
|
aminoType: "cosmos-sdk/MsgCreateClient",
|
|
@@ -110,6 +116,12 @@ function createBaseMsgCreateClientResponse() {
|
|
|
110
116
|
clientId: ""
|
|
111
117
|
};
|
|
112
118
|
}
|
|
119
|
+
/**
|
|
120
|
+
* MsgCreateClientResponse defines the Msg/CreateClient response type.
|
|
121
|
+
* @name MsgCreateClientResponse
|
|
122
|
+
* @package ibc.core.client.v1
|
|
123
|
+
* @see proto type: ibc.core.client.v1.MsgCreateClientResponse
|
|
124
|
+
*/
|
|
113
125
|
export const MsgCreateClientResponse = {
|
|
114
126
|
typeUrl: "/ibc.core.client.v1.MsgCreateClientResponse",
|
|
115
127
|
aminoType: "cosmos-sdk/MsgCreateClientResponse",
|
|
@@ -189,6 +201,13 @@ function createBaseMsgUpdateClient() {
|
|
|
189
201
|
signer: ""
|
|
190
202
|
};
|
|
191
203
|
}
|
|
204
|
+
/**
|
|
205
|
+
* MsgUpdateClient defines an sdk.Msg to update a IBC client state using
|
|
206
|
+
* the given client message.
|
|
207
|
+
* @name MsgUpdateClient
|
|
208
|
+
* @package ibc.core.client.v1
|
|
209
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateClient
|
|
210
|
+
*/
|
|
192
211
|
export const MsgUpdateClient = {
|
|
193
212
|
typeUrl: "/ibc.core.client.v1.MsgUpdateClient",
|
|
194
213
|
aminoType: "cosmos-sdk/MsgUpdateClient",
|
|
@@ -286,6 +305,12 @@ export const MsgUpdateClient = {
|
|
|
286
305
|
function createBaseMsgUpdateClientResponse() {
|
|
287
306
|
return {};
|
|
288
307
|
}
|
|
308
|
+
/**
|
|
309
|
+
* MsgUpdateClientResponse defines the Msg/UpdateClient response type.
|
|
310
|
+
* @name MsgUpdateClientResponse
|
|
311
|
+
* @package ibc.core.client.v1
|
|
312
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateClientResponse
|
|
313
|
+
*/
|
|
289
314
|
export const MsgUpdateClientResponse = {
|
|
290
315
|
typeUrl: "/ibc.core.client.v1.MsgUpdateClientResponse",
|
|
291
316
|
aminoType: "cosmos-sdk/MsgUpdateClientResponse",
|
|
@@ -357,6 +382,13 @@ function createBaseMsgUpgradeClient() {
|
|
|
357
382
|
signer: ""
|
|
358
383
|
};
|
|
359
384
|
}
|
|
385
|
+
/**
|
|
386
|
+
* MsgUpgradeClient defines an sdk.Msg to upgrade an IBC client to a new client
|
|
387
|
+
* state
|
|
388
|
+
* @name MsgUpgradeClient
|
|
389
|
+
* @package ibc.core.client.v1
|
|
390
|
+
* @see proto type: ibc.core.client.v1.MsgUpgradeClient
|
|
391
|
+
*/
|
|
360
392
|
export const MsgUpgradeClient = {
|
|
361
393
|
typeUrl: "/ibc.core.client.v1.MsgUpgradeClient",
|
|
362
394
|
aminoType: "cosmos-sdk/MsgUpgradeClient",
|
|
@@ -487,6 +519,12 @@ export const MsgUpgradeClient = {
|
|
|
487
519
|
function createBaseMsgUpgradeClientResponse() {
|
|
488
520
|
return {};
|
|
489
521
|
}
|
|
522
|
+
/**
|
|
523
|
+
* MsgUpgradeClientResponse defines the Msg/UpgradeClient response type.
|
|
524
|
+
* @name MsgUpgradeClientResponse
|
|
525
|
+
* @package ibc.core.client.v1
|
|
526
|
+
* @see proto type: ibc.core.client.v1.MsgUpgradeClientResponse
|
|
527
|
+
*/
|
|
490
528
|
export const MsgUpgradeClientResponse = {
|
|
491
529
|
typeUrl: "/ibc.core.client.v1.MsgUpgradeClientResponse",
|
|
492
530
|
aminoType: "cosmos-sdk/MsgUpgradeClientResponse",
|
|
@@ -555,6 +593,15 @@ function createBaseMsgSubmitMisbehaviour() {
|
|
|
555
593
|
signer: ""
|
|
556
594
|
};
|
|
557
595
|
}
|
|
596
|
+
/**
|
|
597
|
+
* MsgSubmitMisbehaviour defines an sdk.Msg type that submits Evidence for
|
|
598
|
+
* light client misbehaviour.
|
|
599
|
+
* This message has been deprecated. Use MsgUpdateClient instead.
|
|
600
|
+
* @name MsgSubmitMisbehaviour
|
|
601
|
+
* @package ibc.core.client.v1
|
|
602
|
+
* @see proto type: ibc.core.client.v1.MsgSubmitMisbehaviour
|
|
603
|
+
* @deprecated
|
|
604
|
+
*/
|
|
558
605
|
export const MsgSubmitMisbehaviour = {
|
|
559
606
|
typeUrl: "/ibc.core.client.v1.MsgSubmitMisbehaviour",
|
|
560
607
|
aminoType: "cosmos-sdk/MsgSubmitMisbehaviour",
|
|
@@ -652,6 +699,13 @@ export const MsgSubmitMisbehaviour = {
|
|
|
652
699
|
function createBaseMsgSubmitMisbehaviourResponse() {
|
|
653
700
|
return {};
|
|
654
701
|
}
|
|
702
|
+
/**
|
|
703
|
+
* MsgSubmitMisbehaviourResponse defines the Msg/SubmitMisbehaviour response
|
|
704
|
+
* type.
|
|
705
|
+
* @name MsgSubmitMisbehaviourResponse
|
|
706
|
+
* @package ibc.core.client.v1
|
|
707
|
+
* @see proto type: ibc.core.client.v1.MsgSubmitMisbehaviourResponse
|
|
708
|
+
*/
|
|
655
709
|
export const MsgSubmitMisbehaviourResponse = {
|
|
656
710
|
typeUrl: "/ibc.core.client.v1.MsgSubmitMisbehaviourResponse",
|
|
657
711
|
aminoType: "cosmos-sdk/MsgSubmitMisbehaviourResponse",
|
|
@@ -720,6 +774,12 @@ function createBaseMsgRecoverClient() {
|
|
|
720
774
|
signer: ""
|
|
721
775
|
};
|
|
722
776
|
}
|
|
777
|
+
/**
|
|
778
|
+
* MsgRecoverClient defines the message used to recover a frozen or expired client.
|
|
779
|
+
* @name MsgRecoverClient
|
|
780
|
+
* @package ibc.core.client.v1
|
|
781
|
+
* @see proto type: ibc.core.client.v1.MsgRecoverClient
|
|
782
|
+
*/
|
|
723
783
|
export const MsgRecoverClient = {
|
|
724
784
|
typeUrl: "/ibc.core.client.v1.MsgRecoverClient",
|
|
725
785
|
aminoType: "cosmos-sdk/MsgRecoverClient",
|
|
@@ -817,6 +877,12 @@ export const MsgRecoverClient = {
|
|
|
817
877
|
function createBaseMsgRecoverClientResponse() {
|
|
818
878
|
return {};
|
|
819
879
|
}
|
|
880
|
+
/**
|
|
881
|
+
* MsgRecoverClientResponse defines the Msg/RecoverClient response type.
|
|
882
|
+
* @name MsgRecoverClientResponse
|
|
883
|
+
* @package ibc.core.client.v1
|
|
884
|
+
* @see proto type: ibc.core.client.v1.MsgRecoverClientResponse
|
|
885
|
+
*/
|
|
820
886
|
export const MsgRecoverClientResponse = {
|
|
821
887
|
typeUrl: "/ibc.core.client.v1.MsgRecoverClientResponse",
|
|
822
888
|
aminoType: "cosmos-sdk/MsgRecoverClientResponse",
|
|
@@ -885,6 +951,12 @@ function createBaseMsgIBCSoftwareUpgrade() {
|
|
|
885
951
|
signer: ""
|
|
886
952
|
};
|
|
887
953
|
}
|
|
954
|
+
/**
|
|
955
|
+
* MsgIBCSoftwareUpgrade defines the message used to schedule an upgrade of an IBC client using a v1 governance proposal
|
|
956
|
+
* @name MsgIBCSoftwareUpgrade
|
|
957
|
+
* @package ibc.core.client.v1
|
|
958
|
+
* @see proto type: ibc.core.client.v1.MsgIBCSoftwareUpgrade
|
|
959
|
+
*/
|
|
888
960
|
export const MsgIBCSoftwareUpgrade = {
|
|
889
961
|
typeUrl: "/ibc.core.client.v1.MsgIBCSoftwareUpgrade",
|
|
890
962
|
aminoType: "cosmos-sdk/MsgIBCSoftwareUpgrade",
|
|
@@ -982,6 +1054,12 @@ export const MsgIBCSoftwareUpgrade = {
|
|
|
982
1054
|
function createBaseMsgIBCSoftwareUpgradeResponse() {
|
|
983
1055
|
return {};
|
|
984
1056
|
}
|
|
1057
|
+
/**
|
|
1058
|
+
* MsgIBCSoftwareUpgradeResponse defines the Msg/IBCSoftwareUpgrade response type.
|
|
1059
|
+
* @name MsgIBCSoftwareUpgradeResponse
|
|
1060
|
+
* @package ibc.core.client.v1
|
|
1061
|
+
* @see proto type: ibc.core.client.v1.MsgIBCSoftwareUpgradeResponse
|
|
1062
|
+
*/
|
|
985
1063
|
export const MsgIBCSoftwareUpgradeResponse = {
|
|
986
1064
|
typeUrl: "/ibc.core.client.v1.MsgIBCSoftwareUpgradeResponse",
|
|
987
1065
|
aminoType: "cosmos-sdk/MsgIBCSoftwareUpgradeResponse",
|
|
@@ -1049,6 +1127,12 @@ function createBaseMsgUpdateParams() {
|
|
|
1049
1127
|
params: Params.fromPartial({})
|
|
1050
1128
|
};
|
|
1051
1129
|
}
|
|
1130
|
+
/**
|
|
1131
|
+
* MsgUpdateParams defines the sdk.Msg type to update the client parameters.
|
|
1132
|
+
* @name MsgUpdateParams
|
|
1133
|
+
* @package ibc.core.client.v1
|
|
1134
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateParams
|
|
1135
|
+
*/
|
|
1052
1136
|
export const MsgUpdateParams = {
|
|
1053
1137
|
typeUrl: "/ibc.core.client.v1.MsgUpdateParams",
|
|
1054
1138
|
aminoType: "cosmos-sdk/MsgUpdateParams",
|
|
@@ -1140,6 +1224,12 @@ export const MsgUpdateParams = {
|
|
|
1140
1224
|
function createBaseMsgUpdateParamsResponse() {
|
|
1141
1225
|
return {};
|
|
1142
1226
|
}
|
|
1227
|
+
/**
|
|
1228
|
+
* MsgUpdateParamsResponse defines the MsgUpdateParams response type.
|
|
1229
|
+
* @name MsgUpdateParamsResponse
|
|
1230
|
+
* @package ibc.core.client.v1
|
|
1231
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateParamsResponse
|
|
1232
|
+
*/
|
|
1143
1233
|
export const MsgUpdateParamsResponse = {
|
|
1144
1234
|
typeUrl: "/ibc.core.client.v1.MsgUpdateParamsResponse",
|
|
1145
1235
|
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|
|
@@ -1,30 +1,65 @@
|
|
|
1
1
|
import { buildTx } from "../../../../helper-func-types";
|
|
2
2
|
import { MsgCreateClient, MsgUpdateClient, MsgUpgradeClient, MsgSubmitMisbehaviour, MsgRecoverClient, MsgIBCSoftwareUpgrade, MsgUpdateParams } from "./tx";
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* CreateClient defines a rpc handler method for MsgCreateClient.
|
|
5
|
+
* @name createClient
|
|
6
|
+
* @package ibc.core.client.v1
|
|
7
|
+
* @see proto service: ibc.core.client.v1.CreateClient
|
|
8
|
+
*/
|
|
4
9
|
export const createClient = buildTx({
|
|
5
10
|
msg: MsgCreateClient
|
|
6
11
|
});
|
|
7
|
-
|
|
12
|
+
/**
|
|
13
|
+
* UpdateClient defines a rpc handler method for MsgUpdateClient.
|
|
14
|
+
* @name updateClient
|
|
15
|
+
* @package ibc.core.client.v1
|
|
16
|
+
* @see proto service: ibc.core.client.v1.UpdateClient
|
|
17
|
+
*/
|
|
8
18
|
export const updateClient = buildTx({
|
|
9
19
|
msg: MsgUpdateClient
|
|
10
20
|
});
|
|
11
|
-
|
|
21
|
+
/**
|
|
22
|
+
* UpgradeClient defines a rpc handler method for MsgUpgradeClient.
|
|
23
|
+
* @name upgradeClient
|
|
24
|
+
* @package ibc.core.client.v1
|
|
25
|
+
* @see proto service: ibc.core.client.v1.UpgradeClient
|
|
26
|
+
*/
|
|
12
27
|
export const upgradeClient = buildTx({
|
|
13
28
|
msg: MsgUpgradeClient
|
|
14
29
|
});
|
|
15
|
-
|
|
30
|
+
/**
|
|
31
|
+
* SubmitMisbehaviour defines a rpc handler method for MsgSubmitMisbehaviour.
|
|
32
|
+
* @name submitMisbehaviour
|
|
33
|
+
* @package ibc.core.client.v1
|
|
34
|
+
* @see proto service: ibc.core.client.v1.SubmitMisbehaviour
|
|
35
|
+
*/
|
|
16
36
|
export const submitMisbehaviour = buildTx({
|
|
17
37
|
msg: MsgSubmitMisbehaviour
|
|
18
38
|
});
|
|
19
|
-
|
|
39
|
+
/**
|
|
40
|
+
* RecoverClient defines a rpc handler method for MsgRecoverClient.
|
|
41
|
+
* @name recoverClient
|
|
42
|
+
* @package ibc.core.client.v1
|
|
43
|
+
* @see proto service: ibc.core.client.v1.RecoverClient
|
|
44
|
+
*/
|
|
20
45
|
export const recoverClient = buildTx({
|
|
21
46
|
msg: MsgRecoverClient
|
|
22
47
|
});
|
|
23
|
-
|
|
48
|
+
/**
|
|
49
|
+
* IBCSoftwareUpgrade defines a rpc handler method for MsgIBCSoftwareUpgrade.
|
|
50
|
+
* @name iBCSoftwareUpgrade
|
|
51
|
+
* @package ibc.core.client.v1
|
|
52
|
+
* @see proto service: ibc.core.client.v1.IBCSoftwareUpgrade
|
|
53
|
+
*/
|
|
24
54
|
export const iBCSoftwareUpgrade = buildTx({
|
|
25
55
|
msg: MsgIBCSoftwareUpgrade
|
|
26
56
|
});
|
|
27
|
-
|
|
57
|
+
/**
|
|
58
|
+
* UpdateClientParams defines a rpc handler method for MsgUpdateParams.
|
|
59
|
+
* @name updateClientParams
|
|
60
|
+
* @package ibc.core.client.v1
|
|
61
|
+
* @see proto service: ibc.core.client.v1.UpdateClientParams
|
|
62
|
+
*/
|
|
28
63
|
export const updateClientParams = buildTx({
|
|
29
64
|
msg: MsgUpdateParams
|
|
30
65
|
});
|
|
@@ -7,6 +7,13 @@ function createBaseMerkleRoot() {
|
|
|
7
7
|
hash: new Uint8Array()
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* MerkleRoot defines a merkle root hash.
|
|
12
|
+
* In the Cosmos SDK, the AppHash of a block header becomes the root.
|
|
13
|
+
* @name MerkleRoot
|
|
14
|
+
* @package ibc.core.commitment.v1
|
|
15
|
+
* @see proto type: ibc.core.commitment.v1.MerkleRoot
|
|
16
|
+
*/
|
|
10
17
|
export const MerkleRoot = {
|
|
11
18
|
typeUrl: "/ibc.core.commitment.v1.MerkleRoot",
|
|
12
19
|
aminoType: "cosmos-sdk/MerkleRoot",
|
|
@@ -84,6 +91,14 @@ function createBaseMerklePrefix() {
|
|
|
84
91
|
keyPrefix: new Uint8Array()
|
|
85
92
|
};
|
|
86
93
|
}
|
|
94
|
+
/**
|
|
95
|
+
* MerklePrefix is merkle path prefixed to the key.
|
|
96
|
+
* The constructed key from the Path and the key will be append(Path.KeyPath,
|
|
97
|
+
* append(Path.KeyPrefix, key...))
|
|
98
|
+
* @name MerklePrefix
|
|
99
|
+
* @package ibc.core.commitment.v1
|
|
100
|
+
* @see proto type: ibc.core.commitment.v1.MerklePrefix
|
|
101
|
+
*/
|
|
87
102
|
export const MerklePrefix = {
|
|
88
103
|
typeUrl: "/ibc.core.commitment.v1.MerklePrefix",
|
|
89
104
|
aminoType: "cosmos-sdk/MerklePrefix",
|
|
@@ -161,6 +176,16 @@ function createBaseMerkleProof() {
|
|
|
161
176
|
proofs: []
|
|
162
177
|
};
|
|
163
178
|
}
|
|
179
|
+
/**
|
|
180
|
+
* MerkleProof is a wrapper type over a chain of CommitmentProofs.
|
|
181
|
+
* It demonstrates membership or non-membership for an element or set of
|
|
182
|
+
* elements, verifiable in conjunction with a known commitment root. Proofs
|
|
183
|
+
* should be succinct.
|
|
184
|
+
* MerkleProofs are ordered from leaf-to-root
|
|
185
|
+
* @name MerkleProof
|
|
186
|
+
* @package ibc.core.commitment.v1
|
|
187
|
+
* @see proto type: ibc.core.commitment.v1.MerkleProof
|
|
188
|
+
*/
|
|
164
189
|
export const MerkleProof = {
|
|
165
190
|
typeUrl: "/ibc.core.commitment.v1.MerkleProof",
|
|
166
191
|
aminoType: "cosmos-sdk/MerkleProof",
|
|
@@ -66,6 +66,15 @@ function createBaseConnectionEnd() {
|
|
|
66
66
|
delayPeriod: BigInt(0)
|
|
67
67
|
};
|
|
68
68
|
}
|
|
69
|
+
/**
|
|
70
|
+
* ConnectionEnd defines a stateful object on a chain connected to another
|
|
71
|
+
* separate one.
|
|
72
|
+
* NOTE: there must only be 2 defined ConnectionEnds to establish
|
|
73
|
+
* a connection between two chains.
|
|
74
|
+
* @name ConnectionEnd
|
|
75
|
+
* @package ibc.core.connection.v1
|
|
76
|
+
* @see proto type: ibc.core.connection.v1.ConnectionEnd
|
|
77
|
+
*/
|
|
69
78
|
export const ConnectionEnd = {
|
|
70
79
|
typeUrl: "/ibc.core.connection.v1.ConnectionEnd",
|
|
71
80
|
aminoType: "cosmos-sdk/ConnectionEnd",
|
|
@@ -201,6 +210,13 @@ function createBaseIdentifiedConnection() {
|
|
|
201
210
|
delayPeriod: BigInt(0)
|
|
202
211
|
};
|
|
203
212
|
}
|
|
213
|
+
/**
|
|
214
|
+
* IdentifiedConnection defines a connection with additional connection
|
|
215
|
+
* identifier field.
|
|
216
|
+
* @name IdentifiedConnection
|
|
217
|
+
* @package ibc.core.connection.v1
|
|
218
|
+
* @see proto type: ibc.core.connection.v1.IdentifiedConnection
|
|
219
|
+
*/
|
|
204
220
|
export const IdentifiedConnection = {
|
|
205
221
|
typeUrl: "/ibc.core.connection.v1.IdentifiedConnection",
|
|
206
222
|
aminoType: "cosmos-sdk/IdentifiedConnection",
|
|
@@ -344,6 +360,12 @@ function createBaseCounterparty() {
|
|
|
344
360
|
prefix: MerklePrefix.fromPartial({})
|
|
345
361
|
};
|
|
346
362
|
}
|
|
363
|
+
/**
|
|
364
|
+
* Counterparty defines the counterparty chain associated with a connection end.
|
|
365
|
+
* @name Counterparty
|
|
366
|
+
* @package ibc.core.connection.v1
|
|
367
|
+
* @see proto type: ibc.core.connection.v1.Counterparty
|
|
368
|
+
*/
|
|
347
369
|
export const Counterparty = {
|
|
348
370
|
typeUrl: "/ibc.core.connection.v1.Counterparty",
|
|
349
371
|
aminoType: "cosmos-sdk/Counterparty",
|
|
@@ -448,6 +470,12 @@ function createBaseClientPaths() {
|
|
|
448
470
|
paths: []
|
|
449
471
|
};
|
|
450
472
|
}
|
|
473
|
+
/**
|
|
474
|
+
* ClientPaths define all the connection paths for a client state.
|
|
475
|
+
* @name ClientPaths
|
|
476
|
+
* @package ibc.core.connection.v1
|
|
477
|
+
* @see proto type: ibc.core.connection.v1.ClientPaths
|
|
478
|
+
*/
|
|
451
479
|
export const ClientPaths = {
|
|
452
480
|
typeUrl: "/ibc.core.connection.v1.ClientPaths",
|
|
453
481
|
aminoType: "cosmos-sdk/ClientPaths",
|
|
@@ -529,6 +557,12 @@ function createBaseConnectionPaths() {
|
|
|
529
557
|
paths: []
|
|
530
558
|
};
|
|
531
559
|
}
|
|
560
|
+
/**
|
|
561
|
+
* ConnectionPaths define all the connection paths for a given client state.
|
|
562
|
+
* @name ConnectionPaths
|
|
563
|
+
* @package ibc.core.connection.v1
|
|
564
|
+
* @see proto type: ibc.core.connection.v1.ConnectionPaths
|
|
565
|
+
*/
|
|
532
566
|
export const ConnectionPaths = {
|
|
533
567
|
typeUrl: "/ibc.core.connection.v1.ConnectionPaths",
|
|
534
568
|
aminoType: "cosmos-sdk/ConnectionPaths",
|
|
@@ -621,6 +655,13 @@ function createBaseVersion() {
|
|
|
621
655
|
features: []
|
|
622
656
|
};
|
|
623
657
|
}
|
|
658
|
+
/**
|
|
659
|
+
* Version defines the versioning scheme used to negotiate the IBC version in
|
|
660
|
+
* the connection handshake.
|
|
661
|
+
* @name Version
|
|
662
|
+
* @package ibc.core.connection.v1
|
|
663
|
+
* @see proto type: ibc.core.connection.v1.Version
|
|
664
|
+
*/
|
|
624
665
|
export const Version = {
|
|
625
666
|
typeUrl: "/ibc.core.connection.v1.Version",
|
|
626
667
|
aminoType: "cosmos-sdk/Version",
|
|
@@ -712,6 +753,12 @@ function createBaseParams() {
|
|
|
712
753
|
maxExpectedTimePerBlock: BigInt(0)
|
|
713
754
|
};
|
|
714
755
|
}
|
|
756
|
+
/**
|
|
757
|
+
* Params defines the set of Connection parameters.
|
|
758
|
+
* @name Params
|
|
759
|
+
* @package ibc.core.connection.v1
|
|
760
|
+
* @see proto type: ibc.core.connection.v1.Params
|
|
761
|
+
*/
|
|
715
762
|
export const Params = {
|
|
716
763
|
typeUrl: "/ibc.core.connection.v1.Params",
|
|
717
764
|
aminoType: "cosmos-sdk/Params",
|
|
@@ -13,6 +13,13 @@ function createBaseMsgConnectionOpenInit() {
|
|
|
13
13
|
signer: ""
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* MsgConnectionOpenInit defines the msg sent by an account on Chain A to
|
|
18
|
+
* initialize a connection with Chain B.
|
|
19
|
+
* @name MsgConnectionOpenInit
|
|
20
|
+
* @package ibc.core.connection.v1
|
|
21
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenInit
|
|
22
|
+
*/
|
|
16
23
|
export const MsgConnectionOpenInit = {
|
|
17
24
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenInit",
|
|
18
25
|
aminoType: "cosmos-sdk/MsgConnectionOpenInit",
|
|
@@ -138,6 +145,13 @@ export const MsgConnectionOpenInit = {
|
|
|
138
145
|
function createBaseMsgConnectionOpenInitResponse() {
|
|
139
146
|
return {};
|
|
140
147
|
}
|
|
148
|
+
/**
|
|
149
|
+
* MsgConnectionOpenInitResponse defines the Msg/ConnectionOpenInit response
|
|
150
|
+
* type.
|
|
151
|
+
* @name MsgConnectionOpenInitResponse
|
|
152
|
+
* @package ibc.core.connection.v1
|
|
153
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenInitResponse
|
|
154
|
+
*/
|
|
141
155
|
export const MsgConnectionOpenInitResponse = {
|
|
142
156
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenInitResponse",
|
|
143
157
|
aminoType: "cosmos-sdk/MsgConnectionOpenInitResponse",
|
|
@@ -216,6 +230,13 @@ function createBaseMsgConnectionOpenTry() {
|
|
|
216
230
|
hostConsensusStateProof: new Uint8Array()
|
|
217
231
|
};
|
|
218
232
|
}
|
|
233
|
+
/**
|
|
234
|
+
* MsgConnectionOpenTry defines a msg sent by a Relayer to try to open a
|
|
235
|
+
* connection on Chain B.
|
|
236
|
+
* @name MsgConnectionOpenTry
|
|
237
|
+
* @package ibc.core.connection.v1
|
|
238
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenTry
|
|
239
|
+
*/
|
|
219
240
|
export const MsgConnectionOpenTry = {
|
|
220
241
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenTry",
|
|
221
242
|
aminoType: "cosmos-sdk/MsgConnectionOpenTry",
|
|
@@ -433,6 +454,12 @@ export const MsgConnectionOpenTry = {
|
|
|
433
454
|
function createBaseMsgConnectionOpenTryResponse() {
|
|
434
455
|
return {};
|
|
435
456
|
}
|
|
457
|
+
/**
|
|
458
|
+
* MsgConnectionOpenTryResponse defines the Msg/ConnectionOpenTry response type.
|
|
459
|
+
* @name MsgConnectionOpenTryResponse
|
|
460
|
+
* @package ibc.core.connection.v1
|
|
461
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenTryResponse
|
|
462
|
+
*/
|
|
436
463
|
export const MsgConnectionOpenTryResponse = {
|
|
437
464
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenTryResponse",
|
|
438
465
|
aminoType: "cosmos-sdk/MsgConnectionOpenTryResponse",
|
|
@@ -509,6 +536,13 @@ function createBaseMsgConnectionOpenAck() {
|
|
|
509
536
|
hostConsensusStateProof: new Uint8Array()
|
|
510
537
|
};
|
|
511
538
|
}
|
|
539
|
+
/**
|
|
540
|
+
* MsgConnectionOpenAck defines a msg sent by a Relayer to Chain A to
|
|
541
|
+
* acknowledge the change of connection state to TRYOPEN on Chain B.
|
|
542
|
+
* @name MsgConnectionOpenAck
|
|
543
|
+
* @package ibc.core.connection.v1
|
|
544
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenAck
|
|
545
|
+
*/
|
|
512
546
|
export const MsgConnectionOpenAck = {
|
|
513
547
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenAck",
|
|
514
548
|
aminoType: "cosmos-sdk/MsgConnectionOpenAck",
|
|
@@ -699,6 +733,12 @@ export const MsgConnectionOpenAck = {
|
|
|
699
733
|
function createBaseMsgConnectionOpenAckResponse() {
|
|
700
734
|
return {};
|
|
701
735
|
}
|
|
736
|
+
/**
|
|
737
|
+
* MsgConnectionOpenAckResponse defines the Msg/ConnectionOpenAck response type.
|
|
738
|
+
* @name MsgConnectionOpenAckResponse
|
|
739
|
+
* @package ibc.core.connection.v1
|
|
740
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenAckResponse
|
|
741
|
+
*/
|
|
702
742
|
export const MsgConnectionOpenAckResponse = {
|
|
703
743
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenAckResponse",
|
|
704
744
|
aminoType: "cosmos-sdk/MsgConnectionOpenAckResponse",
|
|
@@ -768,6 +808,13 @@ function createBaseMsgConnectionOpenConfirm() {
|
|
|
768
808
|
signer: ""
|
|
769
809
|
};
|
|
770
810
|
}
|
|
811
|
+
/**
|
|
812
|
+
* MsgConnectionOpenConfirm defines a msg sent by a Relayer to Chain B to
|
|
813
|
+
* acknowledge the change of connection state to OPEN on Chain A.
|
|
814
|
+
* @name MsgConnectionOpenConfirm
|
|
815
|
+
* @package ibc.core.connection.v1
|
|
816
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenConfirm
|
|
817
|
+
*/
|
|
771
818
|
export const MsgConnectionOpenConfirm = {
|
|
772
819
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenConfirm",
|
|
773
820
|
aminoType: "cosmos-sdk/MsgConnectionOpenConfirm",
|
|
@@ -881,6 +928,13 @@ export const MsgConnectionOpenConfirm = {
|
|
|
881
928
|
function createBaseMsgConnectionOpenConfirmResponse() {
|
|
882
929
|
return {};
|
|
883
930
|
}
|
|
931
|
+
/**
|
|
932
|
+
* MsgConnectionOpenConfirmResponse defines the Msg/ConnectionOpenConfirm
|
|
933
|
+
* response type.
|
|
934
|
+
* @name MsgConnectionOpenConfirmResponse
|
|
935
|
+
* @package ibc.core.connection.v1
|
|
936
|
+
* @see proto type: ibc.core.connection.v1.MsgConnectionOpenConfirmResponse
|
|
937
|
+
*/
|
|
884
938
|
export const MsgConnectionOpenConfirmResponse = {
|
|
885
939
|
typeUrl: "/ibc.core.connection.v1.MsgConnectionOpenConfirmResponse",
|
|
886
940
|
aminoType: "cosmos-sdk/MsgConnectionOpenConfirmResponse",
|
|
@@ -948,6 +1002,12 @@ function createBaseMsgUpdateParams() {
|
|
|
948
1002
|
params: Params.fromPartial({})
|
|
949
1003
|
};
|
|
950
1004
|
}
|
|
1005
|
+
/**
|
|
1006
|
+
* MsgUpdateParams defines the sdk.Msg type to update the connection parameters.
|
|
1007
|
+
* @name MsgUpdateParams
|
|
1008
|
+
* @package ibc.core.connection.v1
|
|
1009
|
+
* @see proto type: ibc.core.connection.v1.MsgUpdateParams
|
|
1010
|
+
*/
|
|
951
1011
|
export const MsgUpdateParams = {
|
|
952
1012
|
typeUrl: "/ibc.core.connection.v1.MsgUpdateParams",
|
|
953
1013
|
aminoType: "cosmos-sdk/MsgUpdateParams",
|
|
@@ -1039,6 +1099,12 @@ export const MsgUpdateParams = {
|
|
|
1039
1099
|
function createBaseMsgUpdateParamsResponse() {
|
|
1040
1100
|
return {};
|
|
1041
1101
|
}
|
|
1102
|
+
/**
|
|
1103
|
+
* MsgUpdateParamsResponse defines the MsgUpdateParams response type.
|
|
1104
|
+
* @name MsgUpdateParamsResponse
|
|
1105
|
+
* @package ibc.core.connection.v1
|
|
1106
|
+
* @see proto type: ibc.core.connection.v1.MsgUpdateParamsResponse
|
|
1107
|
+
*/
|
|
1042
1108
|
export const MsgUpdateParamsResponse = {
|
|
1043
1109
|
typeUrl: "/ibc.core.connection.v1.MsgUpdateParamsResponse",
|
|
1044
1110
|
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|