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
|
@@ -60,6 +60,13 @@ function createBaseMsgChannelOpenInit() {
|
|
|
60
60
|
signer: ""
|
|
61
61
|
};
|
|
62
62
|
}
|
|
63
|
+
/**
|
|
64
|
+
* MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It
|
|
65
|
+
* is called by a relayer on Chain A.
|
|
66
|
+
* @name MsgChannelOpenInit
|
|
67
|
+
* @package ibc.core.channel.v1
|
|
68
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInit
|
|
69
|
+
*/
|
|
63
70
|
export const MsgChannelOpenInit = {
|
|
64
71
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenInit",
|
|
65
72
|
aminoType: "cosmos-sdk/MsgChannelOpenInit",
|
|
@@ -165,6 +172,12 @@ function createBaseMsgChannelOpenInitResponse() {
|
|
|
165
172
|
version: ""
|
|
166
173
|
};
|
|
167
174
|
}
|
|
175
|
+
/**
|
|
176
|
+
* MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type.
|
|
177
|
+
* @name MsgChannelOpenInitResponse
|
|
178
|
+
* @package ibc.core.channel.v1
|
|
179
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInitResponse
|
|
180
|
+
*/
|
|
168
181
|
export const MsgChannelOpenInitResponse = {
|
|
169
182
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenInitResponse",
|
|
170
183
|
aminoType: "cosmos-sdk/MsgChannelOpenInitResponse",
|
|
@@ -259,6 +272,14 @@ function createBaseMsgChannelOpenTry() {
|
|
|
259
272
|
signer: ""
|
|
260
273
|
};
|
|
261
274
|
}
|
|
275
|
+
/**
|
|
276
|
+
* MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel
|
|
277
|
+
* on Chain B. The version field within the Channel field has been deprecated. Its
|
|
278
|
+
* value will be ignored by core IBC.
|
|
279
|
+
* @name MsgChannelOpenTry
|
|
280
|
+
* @package ibc.core.channel.v1
|
|
281
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTry
|
|
282
|
+
*/
|
|
262
283
|
export const MsgChannelOpenTry = {
|
|
263
284
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenTry",
|
|
264
285
|
aminoType: "cosmos-sdk/MsgChannelOpenTry",
|
|
@@ -409,6 +430,12 @@ function createBaseMsgChannelOpenTryResponse() {
|
|
|
409
430
|
channelId: ""
|
|
410
431
|
};
|
|
411
432
|
}
|
|
433
|
+
/**
|
|
434
|
+
* MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type.
|
|
435
|
+
* @name MsgChannelOpenTryResponse
|
|
436
|
+
* @package ibc.core.channel.v1
|
|
437
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTryResponse
|
|
438
|
+
*/
|
|
412
439
|
export const MsgChannelOpenTryResponse = {
|
|
413
440
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenTryResponse",
|
|
414
441
|
aminoType: "cosmos-sdk/MsgChannelOpenTryResponse",
|
|
@@ -503,6 +530,16 @@ function createBaseMsgChannelOpenAck() {
|
|
|
503
530
|
signer: ""
|
|
504
531
|
};
|
|
505
532
|
}
|
|
533
|
+
/**
|
|
534
|
+
* MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge
|
|
535
|
+
* the change of channel state to TRYOPEN on Chain B.
|
|
536
|
+
* WARNING: a channel upgrade MUST NOT initialize an upgrade for this channel
|
|
537
|
+
* in the same block as executing this message otherwise the counterparty will
|
|
538
|
+
* be incapable of opening.
|
|
539
|
+
* @name MsgChannelOpenAck
|
|
540
|
+
* @package ibc.core.channel.v1
|
|
541
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAck
|
|
542
|
+
*/
|
|
506
543
|
export const MsgChannelOpenAck = {
|
|
507
544
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenAck",
|
|
508
545
|
aminoType: "cosmos-sdk/MsgChannelOpenAck",
|
|
@@ -649,6 +686,12 @@ export const MsgChannelOpenAck = {
|
|
|
649
686
|
function createBaseMsgChannelOpenAckResponse() {
|
|
650
687
|
return {};
|
|
651
688
|
}
|
|
689
|
+
/**
|
|
690
|
+
* MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type.
|
|
691
|
+
* @name MsgChannelOpenAckResponse
|
|
692
|
+
* @package ibc.core.channel.v1
|
|
693
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAckResponse
|
|
694
|
+
*/
|
|
652
695
|
export const MsgChannelOpenAckResponse = {
|
|
653
696
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenAckResponse",
|
|
654
697
|
aminoType: "cosmos-sdk/MsgChannelOpenAckResponse",
|
|
@@ -719,6 +762,13 @@ function createBaseMsgChannelOpenConfirm() {
|
|
|
719
762
|
signer: ""
|
|
720
763
|
};
|
|
721
764
|
}
|
|
765
|
+
/**
|
|
766
|
+
* MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to
|
|
767
|
+
* acknowledge the change of channel state to OPEN on Chain A.
|
|
768
|
+
* @name MsgChannelOpenConfirm
|
|
769
|
+
* @package ibc.core.channel.v1
|
|
770
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirm
|
|
771
|
+
*/
|
|
722
772
|
export const MsgChannelOpenConfirm = {
|
|
723
773
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenConfirm",
|
|
724
774
|
aminoType: "cosmos-sdk/MsgChannelOpenConfirm",
|
|
@@ -843,6 +893,13 @@ export const MsgChannelOpenConfirm = {
|
|
|
843
893
|
function createBaseMsgChannelOpenConfirmResponse() {
|
|
844
894
|
return {};
|
|
845
895
|
}
|
|
896
|
+
/**
|
|
897
|
+
* MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response
|
|
898
|
+
* type.
|
|
899
|
+
* @name MsgChannelOpenConfirmResponse
|
|
900
|
+
* @package ibc.core.channel.v1
|
|
901
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirmResponse
|
|
902
|
+
*/
|
|
846
903
|
export const MsgChannelOpenConfirmResponse = {
|
|
847
904
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenConfirmResponse",
|
|
848
905
|
aminoType: "cosmos-sdk/MsgChannelOpenConfirmResponse",
|
|
@@ -911,6 +968,13 @@ function createBaseMsgChannelCloseInit() {
|
|
|
911
968
|
signer: ""
|
|
912
969
|
};
|
|
913
970
|
}
|
|
971
|
+
/**
|
|
972
|
+
* MsgChannelCloseInit defines a msg sent by a Relayer to Chain A
|
|
973
|
+
* to close a channel with Chain B.
|
|
974
|
+
* @name MsgChannelCloseInit
|
|
975
|
+
* @package ibc.core.channel.v1
|
|
976
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInit
|
|
977
|
+
*/
|
|
914
978
|
export const MsgChannelCloseInit = {
|
|
915
979
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseInit",
|
|
916
980
|
aminoType: "cosmos-sdk/MsgChannelCloseInit",
|
|
@@ -1008,6 +1072,12 @@ export const MsgChannelCloseInit = {
|
|
|
1008
1072
|
function createBaseMsgChannelCloseInitResponse() {
|
|
1009
1073
|
return {};
|
|
1010
1074
|
}
|
|
1075
|
+
/**
|
|
1076
|
+
* MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type.
|
|
1077
|
+
* @name MsgChannelCloseInitResponse
|
|
1078
|
+
* @package ibc.core.channel.v1
|
|
1079
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInitResponse
|
|
1080
|
+
*/
|
|
1011
1081
|
export const MsgChannelCloseInitResponse = {
|
|
1012
1082
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseInitResponse",
|
|
1013
1083
|
aminoType: "cosmos-sdk/MsgChannelCloseInitResponse",
|
|
@@ -1079,6 +1149,13 @@ function createBaseMsgChannelCloseConfirm() {
|
|
|
1079
1149
|
counterpartyUpgradeSequence: BigInt(0)
|
|
1080
1150
|
};
|
|
1081
1151
|
}
|
|
1152
|
+
/**
|
|
1153
|
+
* MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B
|
|
1154
|
+
* to acknowledge the change of channel state to CLOSED on Chain A.
|
|
1155
|
+
* @name MsgChannelCloseConfirm
|
|
1156
|
+
* @package ibc.core.channel.v1
|
|
1157
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirm
|
|
1158
|
+
*/
|
|
1082
1159
|
export const MsgChannelCloseConfirm = {
|
|
1083
1160
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseConfirm",
|
|
1084
1161
|
aminoType: "cosmos-sdk/MsgChannelCloseConfirm",
|
|
@@ -1214,6 +1291,13 @@ export const MsgChannelCloseConfirm = {
|
|
|
1214
1291
|
function createBaseMsgChannelCloseConfirmResponse() {
|
|
1215
1292
|
return {};
|
|
1216
1293
|
}
|
|
1294
|
+
/**
|
|
1295
|
+
* MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response
|
|
1296
|
+
* type.
|
|
1297
|
+
* @name MsgChannelCloseConfirmResponse
|
|
1298
|
+
* @package ibc.core.channel.v1
|
|
1299
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirmResponse
|
|
1300
|
+
*/
|
|
1217
1301
|
export const MsgChannelCloseConfirmResponse = {
|
|
1218
1302
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseConfirmResponse",
|
|
1219
1303
|
aminoType: "cosmos-sdk/MsgChannelCloseConfirmResponse",
|
|
@@ -1283,6 +1367,12 @@ function createBaseMsgRecvPacket() {
|
|
|
1283
1367
|
signer: ""
|
|
1284
1368
|
};
|
|
1285
1369
|
}
|
|
1370
|
+
/**
|
|
1371
|
+
* MsgRecvPacket receives incoming IBC packet
|
|
1372
|
+
* @name MsgRecvPacket
|
|
1373
|
+
* @package ibc.core.channel.v1
|
|
1374
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacket
|
|
1375
|
+
*/
|
|
1286
1376
|
export const MsgRecvPacket = {
|
|
1287
1377
|
typeUrl: "/ibc.core.channel.v1.MsgRecvPacket",
|
|
1288
1378
|
aminoType: "cosmos-sdk/MsgRecvPacket",
|
|
@@ -1399,6 +1489,12 @@ function createBaseMsgRecvPacketResponse() {
|
|
|
1399
1489
|
result: 0
|
|
1400
1490
|
};
|
|
1401
1491
|
}
|
|
1492
|
+
/**
|
|
1493
|
+
* MsgRecvPacketResponse defines the Msg/RecvPacket response type.
|
|
1494
|
+
* @name MsgRecvPacketResponse
|
|
1495
|
+
* @package ibc.core.channel.v1
|
|
1496
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacketResponse
|
|
1497
|
+
*/
|
|
1402
1498
|
export const MsgRecvPacketResponse = {
|
|
1403
1499
|
typeUrl: "/ibc.core.channel.v1.MsgRecvPacketResponse",
|
|
1404
1500
|
aminoType: "cosmos-sdk/MsgRecvPacketResponse",
|
|
@@ -1480,6 +1576,12 @@ function createBaseMsgTimeout() {
|
|
|
1480
1576
|
signer: ""
|
|
1481
1577
|
};
|
|
1482
1578
|
}
|
|
1579
|
+
/**
|
|
1580
|
+
* MsgTimeout receives timed-out packet
|
|
1581
|
+
* @name MsgTimeout
|
|
1582
|
+
* @package ibc.core.channel.v1
|
|
1583
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeout
|
|
1584
|
+
*/
|
|
1483
1585
|
export const MsgTimeout = {
|
|
1484
1586
|
typeUrl: "/ibc.core.channel.v1.MsgTimeout",
|
|
1485
1587
|
aminoType: "cosmos-sdk/MsgTimeout",
|
|
@@ -1607,6 +1709,12 @@ function createBaseMsgTimeoutResponse() {
|
|
|
1607
1709
|
result: 0
|
|
1608
1710
|
};
|
|
1609
1711
|
}
|
|
1712
|
+
/**
|
|
1713
|
+
* MsgTimeoutResponse defines the Msg/Timeout response type.
|
|
1714
|
+
* @name MsgTimeoutResponse
|
|
1715
|
+
* @package ibc.core.channel.v1
|
|
1716
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutResponse
|
|
1717
|
+
*/
|
|
1610
1718
|
export const MsgTimeoutResponse = {
|
|
1611
1719
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutResponse",
|
|
1612
1720
|
aminoType: "cosmos-sdk/MsgTimeoutResponse",
|
|
@@ -1690,6 +1798,12 @@ function createBaseMsgTimeoutOnClose() {
|
|
|
1690
1798
|
counterpartyUpgradeSequence: BigInt(0)
|
|
1691
1799
|
};
|
|
1692
1800
|
}
|
|
1801
|
+
/**
|
|
1802
|
+
* MsgTimeoutOnClose timed-out packet upon counterparty channel closure.
|
|
1803
|
+
* @name MsgTimeoutOnClose
|
|
1804
|
+
* @package ibc.core.channel.v1
|
|
1805
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnClose
|
|
1806
|
+
*/
|
|
1693
1807
|
export const MsgTimeoutOnClose = {
|
|
1694
1808
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnClose",
|
|
1695
1809
|
aminoType: "cosmos-sdk/MsgTimeoutOnClose",
|
|
@@ -1839,6 +1953,12 @@ function createBaseMsgTimeoutOnCloseResponse() {
|
|
|
1839
1953
|
result: 0
|
|
1840
1954
|
};
|
|
1841
1955
|
}
|
|
1956
|
+
/**
|
|
1957
|
+
* MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type.
|
|
1958
|
+
* @name MsgTimeoutOnCloseResponse
|
|
1959
|
+
* @package ibc.core.channel.v1
|
|
1960
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnCloseResponse
|
|
1961
|
+
*/
|
|
1842
1962
|
export const MsgTimeoutOnCloseResponse = {
|
|
1843
1963
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnCloseResponse",
|
|
1844
1964
|
aminoType: "cosmos-sdk/MsgTimeoutOnCloseResponse",
|
|
@@ -1920,6 +2040,12 @@ function createBaseMsgAcknowledgement() {
|
|
|
1920
2040
|
signer: ""
|
|
1921
2041
|
};
|
|
1922
2042
|
}
|
|
2043
|
+
/**
|
|
2044
|
+
* MsgAcknowledgement receives incoming IBC acknowledgement
|
|
2045
|
+
* @name MsgAcknowledgement
|
|
2046
|
+
* @package ibc.core.channel.v1
|
|
2047
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgement
|
|
2048
|
+
*/
|
|
1923
2049
|
export const MsgAcknowledgement = {
|
|
1924
2050
|
typeUrl: "/ibc.core.channel.v1.MsgAcknowledgement",
|
|
1925
2051
|
aminoType: "cosmos-sdk/MsgAcknowledgement",
|
|
@@ -2047,6 +2173,12 @@ function createBaseMsgAcknowledgementResponse() {
|
|
|
2047
2173
|
result: 0
|
|
2048
2174
|
};
|
|
2049
2175
|
}
|
|
2176
|
+
/**
|
|
2177
|
+
* MsgAcknowledgementResponse defines the Msg/Acknowledgement response type.
|
|
2178
|
+
* @name MsgAcknowledgementResponse
|
|
2179
|
+
* @package ibc.core.channel.v1
|
|
2180
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgementResponse
|
|
2181
|
+
*/
|
|
2050
2182
|
export const MsgAcknowledgementResponse = {
|
|
2051
2183
|
typeUrl: "/ibc.core.channel.v1.MsgAcknowledgementResponse",
|
|
2052
2184
|
aminoType: "cosmos-sdk/MsgAcknowledgementResponse",
|
|
@@ -2127,6 +2259,14 @@ function createBaseMsgChannelUpgradeInit() {
|
|
|
2127
2259
|
signer: ""
|
|
2128
2260
|
};
|
|
2129
2261
|
}
|
|
2262
|
+
/**
|
|
2263
|
+
* MsgChannelUpgradeInit defines the request type for the ChannelUpgradeInit rpc
|
|
2264
|
+
* WARNING: Initializing a channel upgrade in the same block as opening the channel
|
|
2265
|
+
* may result in the counterparty being incapable of opening.
|
|
2266
|
+
* @name MsgChannelUpgradeInit
|
|
2267
|
+
* @package ibc.core.channel.v1
|
|
2268
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeInit
|
|
2269
|
+
*/
|
|
2130
2270
|
export const MsgChannelUpgradeInit = {
|
|
2131
2271
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeInit",
|
|
2132
2272
|
aminoType: "cosmos-sdk/MsgChannelUpgradeInit",
|
|
@@ -2243,6 +2383,12 @@ function createBaseMsgChannelUpgradeInitResponse() {
|
|
|
2243
2383
|
upgradeSequence: BigInt(0)
|
|
2244
2384
|
};
|
|
2245
2385
|
}
|
|
2386
|
+
/**
|
|
2387
|
+
* MsgChannelUpgradeInitResponse defines the MsgChannelUpgradeInit response type
|
|
2388
|
+
* @name MsgChannelUpgradeInitResponse
|
|
2389
|
+
* @package ibc.core.channel.v1
|
|
2390
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeInitResponse
|
|
2391
|
+
*/
|
|
2246
2392
|
export const MsgChannelUpgradeInitResponse = {
|
|
2247
2393
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeInitResponse",
|
|
2248
2394
|
aminoType: "cosmos-sdk/MsgChannelUpgradeInitResponse",
|
|
@@ -2344,6 +2490,12 @@ function createBaseMsgChannelUpgradeTry() {
|
|
|
2344
2490
|
signer: ""
|
|
2345
2491
|
};
|
|
2346
2492
|
}
|
|
2493
|
+
/**
|
|
2494
|
+
* MsgChannelUpgradeTry defines the request type for the ChannelUpgradeTry rpc
|
|
2495
|
+
* @name MsgChannelUpgradeTry
|
|
2496
|
+
* @package ibc.core.channel.v1
|
|
2497
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTry
|
|
2498
|
+
*/
|
|
2347
2499
|
export const MsgChannelUpgradeTry = {
|
|
2348
2500
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTry",
|
|
2349
2501
|
aminoType: "cosmos-sdk/MsgChannelUpgradeTry",
|
|
@@ -2520,6 +2672,12 @@ function createBaseMsgChannelUpgradeTryResponse() {
|
|
|
2520
2672
|
result: 0
|
|
2521
2673
|
};
|
|
2522
2674
|
}
|
|
2675
|
+
/**
|
|
2676
|
+
* MsgChannelUpgradeTryResponse defines the MsgChannelUpgradeTry response type
|
|
2677
|
+
* @name MsgChannelUpgradeTryResponse
|
|
2678
|
+
* @package ibc.core.channel.v1
|
|
2679
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTryResponse
|
|
2680
|
+
*/
|
|
2523
2681
|
export const MsgChannelUpgradeTryResponse = {
|
|
2524
2682
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTryResponse",
|
|
2525
2683
|
aminoType: "cosmos-sdk/MsgChannelUpgradeTryResponse",
|
|
@@ -2630,6 +2788,12 @@ function createBaseMsgChannelUpgradeAck() {
|
|
|
2630
2788
|
signer: ""
|
|
2631
2789
|
};
|
|
2632
2790
|
}
|
|
2791
|
+
/**
|
|
2792
|
+
* MsgChannelUpgradeAck defines the request type for the ChannelUpgradeAck rpc
|
|
2793
|
+
* @name MsgChannelUpgradeAck
|
|
2794
|
+
* @package ibc.core.channel.v1
|
|
2795
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeAck
|
|
2796
|
+
*/
|
|
2633
2797
|
export const MsgChannelUpgradeAck = {
|
|
2634
2798
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeAck",
|
|
2635
2799
|
aminoType: "cosmos-sdk/MsgChannelUpgradeAck",
|
|
@@ -2779,6 +2943,12 @@ function createBaseMsgChannelUpgradeAckResponse() {
|
|
|
2779
2943
|
result: 0
|
|
2780
2944
|
};
|
|
2781
2945
|
}
|
|
2946
|
+
/**
|
|
2947
|
+
* MsgChannelUpgradeAckResponse defines MsgChannelUpgradeAck response type
|
|
2948
|
+
* @name MsgChannelUpgradeAckResponse
|
|
2949
|
+
* @package ibc.core.channel.v1
|
|
2950
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeAckResponse
|
|
2951
|
+
*/
|
|
2782
2952
|
export const MsgChannelUpgradeAckResponse = {
|
|
2783
2953
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeAckResponse",
|
|
2784
2954
|
aminoType: "cosmos-sdk/MsgChannelUpgradeAckResponse",
|
|
@@ -2863,6 +3033,12 @@ function createBaseMsgChannelUpgradeConfirm() {
|
|
|
2863
3033
|
signer: ""
|
|
2864
3034
|
};
|
|
2865
3035
|
}
|
|
3036
|
+
/**
|
|
3037
|
+
* MsgChannelUpgradeConfirm defines the request type for the ChannelUpgradeConfirm rpc
|
|
3038
|
+
* @name MsgChannelUpgradeConfirm
|
|
3039
|
+
* @package ibc.core.channel.v1
|
|
3040
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeConfirm
|
|
3041
|
+
*/
|
|
2866
3042
|
export const MsgChannelUpgradeConfirm = {
|
|
2867
3043
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeConfirm",
|
|
2868
3044
|
aminoType: "cosmos-sdk/MsgChannelUpgradeConfirm",
|
|
@@ -3023,6 +3199,12 @@ function createBaseMsgChannelUpgradeConfirmResponse() {
|
|
|
3023
3199
|
result: 0
|
|
3024
3200
|
};
|
|
3025
3201
|
}
|
|
3202
|
+
/**
|
|
3203
|
+
* MsgChannelUpgradeConfirmResponse defines MsgChannelUpgradeConfirm response type
|
|
3204
|
+
* @name MsgChannelUpgradeConfirmResponse
|
|
3205
|
+
* @package ibc.core.channel.v1
|
|
3206
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeConfirmResponse
|
|
3207
|
+
*/
|
|
3026
3208
|
export const MsgChannelUpgradeConfirmResponse = {
|
|
3027
3209
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeConfirmResponse",
|
|
3028
3210
|
aminoType: "cosmos-sdk/MsgChannelUpgradeConfirmResponse",
|
|
@@ -3106,6 +3288,12 @@ function createBaseMsgChannelUpgradeOpen() {
|
|
|
3106
3288
|
signer: ""
|
|
3107
3289
|
};
|
|
3108
3290
|
}
|
|
3291
|
+
/**
|
|
3292
|
+
* MsgChannelUpgradeOpen defines the request type for the ChannelUpgradeOpen rpc
|
|
3293
|
+
* @name MsgChannelUpgradeOpen
|
|
3294
|
+
* @package ibc.core.channel.v1
|
|
3295
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeOpen
|
|
3296
|
+
*/
|
|
3109
3297
|
export const MsgChannelUpgradeOpen = {
|
|
3110
3298
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeOpen",
|
|
3111
3299
|
aminoType: "cosmos-sdk/MsgChannelUpgradeOpen",
|
|
@@ -3252,6 +3440,12 @@ export const MsgChannelUpgradeOpen = {
|
|
|
3252
3440
|
function createBaseMsgChannelUpgradeOpenResponse() {
|
|
3253
3441
|
return {};
|
|
3254
3442
|
}
|
|
3443
|
+
/**
|
|
3444
|
+
* MsgChannelUpgradeOpenResponse defines the MsgChannelUpgradeOpen response type
|
|
3445
|
+
* @name MsgChannelUpgradeOpenResponse
|
|
3446
|
+
* @package ibc.core.channel.v1
|
|
3447
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeOpenResponse
|
|
3448
|
+
*/
|
|
3255
3449
|
export const MsgChannelUpgradeOpenResponse = {
|
|
3256
3450
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeOpenResponse",
|
|
3257
3451
|
aminoType: "cosmos-sdk/MsgChannelUpgradeOpenResponse",
|
|
@@ -3323,6 +3517,12 @@ function createBaseMsgChannelUpgradeTimeout() {
|
|
|
3323
3517
|
signer: ""
|
|
3324
3518
|
};
|
|
3325
3519
|
}
|
|
3520
|
+
/**
|
|
3521
|
+
* MsgChannelUpgradeTimeout defines the request type for the ChannelUpgradeTimeout rpc
|
|
3522
|
+
* @name MsgChannelUpgradeTimeout
|
|
3523
|
+
* @package ibc.core.channel.v1
|
|
3524
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTimeout
|
|
3525
|
+
*/
|
|
3326
3526
|
export const MsgChannelUpgradeTimeout = {
|
|
3327
3527
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTimeout",
|
|
3328
3528
|
aminoType: "cosmos-sdk/MsgChannelUpgradeTimeout",
|
|
@@ -3459,6 +3659,12 @@ export const MsgChannelUpgradeTimeout = {
|
|
|
3459
3659
|
function createBaseMsgChannelUpgradeTimeoutResponse() {
|
|
3460
3660
|
return {};
|
|
3461
3661
|
}
|
|
3662
|
+
/**
|
|
3663
|
+
* MsgChannelUpgradeTimeoutResponse defines the MsgChannelUpgradeTimeout response type
|
|
3664
|
+
* @name MsgChannelUpgradeTimeoutResponse
|
|
3665
|
+
* @package ibc.core.channel.v1
|
|
3666
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTimeoutResponse
|
|
3667
|
+
*/
|
|
3462
3668
|
export const MsgChannelUpgradeTimeoutResponse = {
|
|
3463
3669
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTimeoutResponse",
|
|
3464
3670
|
aminoType: "cosmos-sdk/MsgChannelUpgradeTimeoutResponse",
|
|
@@ -3530,6 +3736,12 @@ function createBaseMsgChannelUpgradeCancel() {
|
|
|
3530
3736
|
signer: ""
|
|
3531
3737
|
};
|
|
3532
3738
|
}
|
|
3739
|
+
/**
|
|
3740
|
+
* MsgChannelUpgradeCancel defines the request type for the ChannelUpgradeCancel rpc
|
|
3741
|
+
* @name MsgChannelUpgradeCancel
|
|
3742
|
+
* @package ibc.core.channel.v1
|
|
3743
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeCancel
|
|
3744
|
+
*/
|
|
3533
3745
|
export const MsgChannelUpgradeCancel = {
|
|
3534
3746
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeCancel",
|
|
3535
3747
|
aminoType: "cosmos-sdk/MsgChannelUpgradeCancel",
|
|
@@ -3666,6 +3878,12 @@ export const MsgChannelUpgradeCancel = {
|
|
|
3666
3878
|
function createBaseMsgChannelUpgradeCancelResponse() {
|
|
3667
3879
|
return {};
|
|
3668
3880
|
}
|
|
3881
|
+
/**
|
|
3882
|
+
* MsgChannelUpgradeCancelResponse defines the MsgChannelUpgradeCancel response type
|
|
3883
|
+
* @name MsgChannelUpgradeCancelResponse
|
|
3884
|
+
* @package ibc.core.channel.v1
|
|
3885
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeCancelResponse
|
|
3886
|
+
*/
|
|
3669
3887
|
export const MsgChannelUpgradeCancelResponse = {
|
|
3670
3888
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeCancelResponse",
|
|
3671
3889
|
aminoType: "cosmos-sdk/MsgChannelUpgradeCancelResponse",
|
|
@@ -3733,6 +3951,12 @@ function createBaseMsgUpdateParams() {
|
|
|
3733
3951
|
params: Params.fromPartial({})
|
|
3734
3952
|
};
|
|
3735
3953
|
}
|
|
3954
|
+
/**
|
|
3955
|
+
* MsgUpdateParams is the MsgUpdateParams request type.
|
|
3956
|
+
* @name MsgUpdateParams
|
|
3957
|
+
* @package ibc.core.channel.v1
|
|
3958
|
+
* @see proto type: ibc.core.channel.v1.MsgUpdateParams
|
|
3959
|
+
*/
|
|
3736
3960
|
export const MsgUpdateParams = {
|
|
3737
3961
|
typeUrl: "/ibc.core.channel.v1.MsgUpdateParams",
|
|
3738
3962
|
aminoType: "cosmos-sdk/MsgUpdateParams",
|
|
@@ -3824,6 +4048,12 @@ export const MsgUpdateParams = {
|
|
|
3824
4048
|
function createBaseMsgUpdateParamsResponse() {
|
|
3825
4049
|
return {};
|
|
3826
4050
|
}
|
|
4051
|
+
/**
|
|
4052
|
+
* MsgUpdateParamsResponse defines the MsgUpdateParams response type.
|
|
4053
|
+
* @name MsgUpdateParamsResponse
|
|
4054
|
+
* @package ibc.core.channel.v1
|
|
4055
|
+
* @see proto type: ibc.core.channel.v1.MsgUpdateParamsResponse
|
|
4056
|
+
*/
|
|
3827
4057
|
export const MsgUpdateParamsResponse = {
|
|
3828
4058
|
typeUrl: "/ibc.core.channel.v1.MsgUpdateParamsResponse",
|
|
3829
4059
|
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|
|
@@ -3893,6 +4123,12 @@ function createBaseMsgPruneAcknowledgements() {
|
|
|
3893
4123
|
signer: ""
|
|
3894
4124
|
};
|
|
3895
4125
|
}
|
|
4126
|
+
/**
|
|
4127
|
+
* MsgPruneAcknowledgements defines the request type for the PruneAcknowledgements rpc.
|
|
4128
|
+
* @name MsgPruneAcknowledgements
|
|
4129
|
+
* @package ibc.core.channel.v1
|
|
4130
|
+
* @see proto type: ibc.core.channel.v1.MsgPruneAcknowledgements
|
|
4131
|
+
*/
|
|
3896
4132
|
export const MsgPruneAcknowledgements = {
|
|
3897
4133
|
typeUrl: "/ibc.core.channel.v1.MsgPruneAcknowledgements",
|
|
3898
4134
|
aminoType: "cosmos-sdk/MsgPruneAcknowledgements",
|
|
@@ -4004,6 +4240,12 @@ function createBaseMsgPruneAcknowledgementsResponse() {
|
|
|
4004
4240
|
totalRemainingSequences: BigInt(0)
|
|
4005
4241
|
};
|
|
4006
4242
|
}
|
|
4243
|
+
/**
|
|
4244
|
+
* MsgPruneAcknowledgementsResponse defines the response type for the PruneAcknowledgements rpc.
|
|
4245
|
+
* @name MsgPruneAcknowledgementsResponse
|
|
4246
|
+
* @package ibc.core.channel.v1
|
|
4247
|
+
* @see proto type: ibc.core.channel.v1.MsgPruneAcknowledgementsResponse
|
|
4248
|
+
*/
|
|
4007
4249
|
export const MsgPruneAcknowledgementsResponse = {
|
|
4008
4250
|
typeUrl: "/ibc.core.channel.v1.MsgPruneAcknowledgementsResponse",
|
|
4009
4251
|
aminoType: "cosmos-sdk/MsgPruneAcknowledgementsResponse",
|
|
@@ -1,79 +1,174 @@
|
|
|
1
1
|
import { buildTx } from "../../../../helper-func-types";
|
|
2
2
|
import { MsgChannelOpenInit, MsgChannelOpenTry, MsgChannelOpenAck, MsgChannelOpenConfirm, MsgChannelCloseInit, MsgChannelCloseConfirm, MsgRecvPacket, MsgTimeout, MsgTimeoutOnClose, MsgAcknowledgement, MsgChannelUpgradeInit, MsgChannelUpgradeTry, MsgChannelUpgradeAck, MsgChannelUpgradeConfirm, MsgChannelUpgradeOpen, MsgChannelUpgradeTimeout, MsgChannelUpgradeCancel, MsgUpdateParams, MsgPruneAcknowledgements } from "./tx";
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* ChannelOpenInit defines a rpc handler method for MsgChannelOpenInit.
|
|
5
|
+
* @name channelOpenInit
|
|
6
|
+
* @package ibc.core.channel.v1
|
|
7
|
+
* @see proto service: ibc.core.channel.v1.ChannelOpenInit
|
|
8
|
+
*/
|
|
4
9
|
export const channelOpenInit = buildTx({
|
|
5
10
|
msg: MsgChannelOpenInit
|
|
6
11
|
});
|
|
7
|
-
|
|
12
|
+
/**
|
|
13
|
+
* ChannelOpenTry defines a rpc handler method for MsgChannelOpenTry.
|
|
14
|
+
* @name channelOpenTry
|
|
15
|
+
* @package ibc.core.channel.v1
|
|
16
|
+
* @see proto service: ibc.core.channel.v1.ChannelOpenTry
|
|
17
|
+
*/
|
|
8
18
|
export const channelOpenTry = buildTx({
|
|
9
19
|
msg: MsgChannelOpenTry
|
|
10
20
|
});
|
|
11
|
-
|
|
21
|
+
/**
|
|
22
|
+
* ChannelOpenAck defines a rpc handler method for MsgChannelOpenAck.
|
|
23
|
+
* @name channelOpenAck
|
|
24
|
+
* @package ibc.core.channel.v1
|
|
25
|
+
* @see proto service: ibc.core.channel.v1.ChannelOpenAck
|
|
26
|
+
*/
|
|
12
27
|
export const channelOpenAck = buildTx({
|
|
13
28
|
msg: MsgChannelOpenAck
|
|
14
29
|
});
|
|
15
|
-
|
|
30
|
+
/**
|
|
31
|
+
* ChannelOpenConfirm defines a rpc handler method for MsgChannelOpenConfirm.
|
|
32
|
+
* @name channelOpenConfirm
|
|
33
|
+
* @package ibc.core.channel.v1
|
|
34
|
+
* @see proto service: ibc.core.channel.v1.ChannelOpenConfirm
|
|
35
|
+
*/
|
|
16
36
|
export const channelOpenConfirm = buildTx({
|
|
17
37
|
msg: MsgChannelOpenConfirm
|
|
18
38
|
});
|
|
19
|
-
|
|
39
|
+
/**
|
|
40
|
+
* ChannelCloseInit defines a rpc handler method for MsgChannelCloseInit.
|
|
41
|
+
* @name channelCloseInit
|
|
42
|
+
* @package ibc.core.channel.v1
|
|
43
|
+
* @see proto service: ibc.core.channel.v1.ChannelCloseInit
|
|
44
|
+
*/
|
|
20
45
|
export const channelCloseInit = buildTx({
|
|
21
46
|
msg: MsgChannelCloseInit
|
|
22
47
|
});
|
|
23
|
-
|
|
24
|
-
|
|
48
|
+
/**
|
|
49
|
+
* ChannelCloseConfirm defines a rpc handler method for
|
|
50
|
+
* MsgChannelCloseConfirm.
|
|
51
|
+
* @name channelCloseConfirm
|
|
52
|
+
* @package ibc.core.channel.v1
|
|
53
|
+
* @see proto service: ibc.core.channel.v1.ChannelCloseConfirm
|
|
54
|
+
*/
|
|
25
55
|
export const channelCloseConfirm = buildTx({
|
|
26
56
|
msg: MsgChannelCloseConfirm
|
|
27
57
|
});
|
|
28
|
-
|
|
58
|
+
/**
|
|
59
|
+
* RecvPacket defines a rpc handler method for MsgRecvPacket.
|
|
60
|
+
* @name recvPacket
|
|
61
|
+
* @package ibc.core.channel.v1
|
|
62
|
+
* @see proto service: ibc.core.channel.v1.RecvPacket
|
|
63
|
+
*/
|
|
29
64
|
export const recvPacket = buildTx({
|
|
30
65
|
msg: MsgRecvPacket
|
|
31
66
|
});
|
|
32
|
-
|
|
67
|
+
/**
|
|
68
|
+
* Timeout defines a rpc handler method for MsgTimeout.
|
|
69
|
+
* @name timeout
|
|
70
|
+
* @package ibc.core.channel.v1
|
|
71
|
+
* @see proto service: ibc.core.channel.v1.Timeout
|
|
72
|
+
*/
|
|
33
73
|
export const timeout = buildTx({
|
|
34
74
|
msg: MsgTimeout
|
|
35
75
|
});
|
|
36
|
-
|
|
76
|
+
/**
|
|
77
|
+
* TimeoutOnClose defines a rpc handler method for MsgTimeoutOnClose.
|
|
78
|
+
* @name timeoutOnClose
|
|
79
|
+
* @package ibc.core.channel.v1
|
|
80
|
+
* @see proto service: ibc.core.channel.v1.TimeoutOnClose
|
|
81
|
+
*/
|
|
37
82
|
export const timeoutOnClose = buildTx({
|
|
38
83
|
msg: MsgTimeoutOnClose
|
|
39
84
|
});
|
|
40
|
-
|
|
85
|
+
/**
|
|
86
|
+
* Acknowledgement defines a rpc handler method for MsgAcknowledgement.
|
|
87
|
+
* @name acknowledgement
|
|
88
|
+
* @package ibc.core.channel.v1
|
|
89
|
+
* @see proto service: ibc.core.channel.v1.Acknowledgement
|
|
90
|
+
*/
|
|
41
91
|
export const acknowledgement = buildTx({
|
|
42
92
|
msg: MsgAcknowledgement
|
|
43
93
|
});
|
|
44
|
-
|
|
94
|
+
/**
|
|
95
|
+
* ChannelUpgradeInit defines a rpc handler method for MsgChannelUpgradeInit.
|
|
96
|
+
* @name channelUpgradeInit
|
|
97
|
+
* @package ibc.core.channel.v1
|
|
98
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeInit
|
|
99
|
+
*/
|
|
45
100
|
export const channelUpgradeInit = buildTx({
|
|
46
101
|
msg: MsgChannelUpgradeInit
|
|
47
102
|
});
|
|
48
|
-
|
|
103
|
+
/**
|
|
104
|
+
* ChannelUpgradeTry defines a rpc handler method for MsgChannelUpgradeTry.
|
|
105
|
+
* @name channelUpgradeTry
|
|
106
|
+
* @package ibc.core.channel.v1
|
|
107
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeTry
|
|
108
|
+
*/
|
|
49
109
|
export const channelUpgradeTry = buildTx({
|
|
50
110
|
msg: MsgChannelUpgradeTry
|
|
51
111
|
});
|
|
52
|
-
|
|
112
|
+
/**
|
|
113
|
+
* ChannelUpgradeAck defines a rpc handler method for MsgChannelUpgradeAck.
|
|
114
|
+
* @name channelUpgradeAck
|
|
115
|
+
* @package ibc.core.channel.v1
|
|
116
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeAck
|
|
117
|
+
*/
|
|
53
118
|
export const channelUpgradeAck = buildTx({
|
|
54
119
|
msg: MsgChannelUpgradeAck
|
|
55
120
|
});
|
|
56
|
-
|
|
121
|
+
/**
|
|
122
|
+
* ChannelUpgradeConfirm defines a rpc handler method for MsgChannelUpgradeConfirm.
|
|
123
|
+
* @name channelUpgradeConfirm
|
|
124
|
+
* @package ibc.core.channel.v1
|
|
125
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeConfirm
|
|
126
|
+
*/
|
|
57
127
|
export const channelUpgradeConfirm = buildTx({
|
|
58
128
|
msg: MsgChannelUpgradeConfirm
|
|
59
129
|
});
|
|
60
|
-
|
|
130
|
+
/**
|
|
131
|
+
* ChannelUpgradeOpen defines a rpc handler method for MsgChannelUpgradeOpen.
|
|
132
|
+
* @name channelUpgradeOpen
|
|
133
|
+
* @package ibc.core.channel.v1
|
|
134
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeOpen
|
|
135
|
+
*/
|
|
61
136
|
export const channelUpgradeOpen = buildTx({
|
|
62
137
|
msg: MsgChannelUpgradeOpen
|
|
63
138
|
});
|
|
64
|
-
|
|
139
|
+
/**
|
|
140
|
+
* ChannelUpgradeTimeout defines a rpc handler method for MsgChannelUpgradeTimeout.
|
|
141
|
+
* @name channelUpgradeTimeout
|
|
142
|
+
* @package ibc.core.channel.v1
|
|
143
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeTimeout
|
|
144
|
+
*/
|
|
65
145
|
export const channelUpgradeTimeout = buildTx({
|
|
66
146
|
msg: MsgChannelUpgradeTimeout
|
|
67
147
|
});
|
|
68
|
-
|
|
148
|
+
/**
|
|
149
|
+
* ChannelUpgradeCancel defines a rpc handler method for MsgChannelUpgradeCancel.
|
|
150
|
+
* @name channelUpgradeCancel
|
|
151
|
+
* @package ibc.core.channel.v1
|
|
152
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeCancel
|
|
153
|
+
*/
|
|
69
154
|
export const channelUpgradeCancel = buildTx({
|
|
70
155
|
msg: MsgChannelUpgradeCancel
|
|
71
156
|
});
|
|
72
|
-
|
|
157
|
+
/**
|
|
158
|
+
* UpdateChannelParams defines a rpc handler method for MsgUpdateParams.
|
|
159
|
+
* @name updateChannelParams
|
|
160
|
+
* @package ibc.core.channel.v1
|
|
161
|
+
* @see proto service: ibc.core.channel.v1.UpdateChannelParams
|
|
162
|
+
*/
|
|
73
163
|
export const updateChannelParams = buildTx({
|
|
74
164
|
msg: MsgUpdateParams
|
|
75
165
|
});
|
|
76
|
-
|
|
166
|
+
/**
|
|
167
|
+
* PruneAcknowledgements defines a rpc handler method for MsgPruneAcknowledgements.
|
|
168
|
+
* @name pruneAcknowledgements
|
|
169
|
+
* @package ibc.core.channel.v1
|
|
170
|
+
* @see proto service: ibc.core.channel.v1.PruneAcknowledgements
|
|
171
|
+
*/
|
|
77
172
|
export const pruneAcknowledgements = buildTx({
|
|
78
173
|
msg: MsgPruneAcknowledgements
|
|
79
174
|
});
|