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
|
@@ -65,6 +65,13 @@ function createBaseMsgChannelOpenInit() {
|
|
|
65
65
|
signer: ""
|
|
66
66
|
};
|
|
67
67
|
}
|
|
68
|
+
/**
|
|
69
|
+
* MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It
|
|
70
|
+
* is called by a relayer on Chain A.
|
|
71
|
+
* @name MsgChannelOpenInit
|
|
72
|
+
* @package ibc.core.channel.v1
|
|
73
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInit
|
|
74
|
+
*/
|
|
68
75
|
exports.MsgChannelOpenInit = {
|
|
69
76
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenInit",
|
|
70
77
|
aminoType: "cosmos-sdk/MsgChannelOpenInit",
|
|
@@ -170,6 +177,12 @@ function createBaseMsgChannelOpenInitResponse() {
|
|
|
170
177
|
version: ""
|
|
171
178
|
};
|
|
172
179
|
}
|
|
180
|
+
/**
|
|
181
|
+
* MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type.
|
|
182
|
+
* @name MsgChannelOpenInitResponse
|
|
183
|
+
* @package ibc.core.channel.v1
|
|
184
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInitResponse
|
|
185
|
+
*/
|
|
173
186
|
exports.MsgChannelOpenInitResponse = {
|
|
174
187
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenInitResponse",
|
|
175
188
|
aminoType: "cosmos-sdk/MsgChannelOpenInitResponse",
|
|
@@ -264,6 +277,14 @@ function createBaseMsgChannelOpenTry() {
|
|
|
264
277
|
signer: ""
|
|
265
278
|
};
|
|
266
279
|
}
|
|
280
|
+
/**
|
|
281
|
+
* MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel
|
|
282
|
+
* on Chain B. The version field within the Channel field has been deprecated. Its
|
|
283
|
+
* value will be ignored by core IBC.
|
|
284
|
+
* @name MsgChannelOpenTry
|
|
285
|
+
* @package ibc.core.channel.v1
|
|
286
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTry
|
|
287
|
+
*/
|
|
267
288
|
exports.MsgChannelOpenTry = {
|
|
268
289
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenTry",
|
|
269
290
|
aminoType: "cosmos-sdk/MsgChannelOpenTry",
|
|
@@ -414,6 +435,12 @@ function createBaseMsgChannelOpenTryResponse() {
|
|
|
414
435
|
channelId: ""
|
|
415
436
|
};
|
|
416
437
|
}
|
|
438
|
+
/**
|
|
439
|
+
* MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type.
|
|
440
|
+
* @name MsgChannelOpenTryResponse
|
|
441
|
+
* @package ibc.core.channel.v1
|
|
442
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTryResponse
|
|
443
|
+
*/
|
|
417
444
|
exports.MsgChannelOpenTryResponse = {
|
|
418
445
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenTryResponse",
|
|
419
446
|
aminoType: "cosmos-sdk/MsgChannelOpenTryResponse",
|
|
@@ -508,6 +535,16 @@ function createBaseMsgChannelOpenAck() {
|
|
|
508
535
|
signer: ""
|
|
509
536
|
};
|
|
510
537
|
}
|
|
538
|
+
/**
|
|
539
|
+
* MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge
|
|
540
|
+
* the change of channel state to TRYOPEN on Chain B.
|
|
541
|
+
* WARNING: a channel upgrade MUST NOT initialize an upgrade for this channel
|
|
542
|
+
* in the same block as executing this message otherwise the counterparty will
|
|
543
|
+
* be incapable of opening.
|
|
544
|
+
* @name MsgChannelOpenAck
|
|
545
|
+
* @package ibc.core.channel.v1
|
|
546
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAck
|
|
547
|
+
*/
|
|
511
548
|
exports.MsgChannelOpenAck = {
|
|
512
549
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenAck",
|
|
513
550
|
aminoType: "cosmos-sdk/MsgChannelOpenAck",
|
|
@@ -654,6 +691,12 @@ exports.MsgChannelOpenAck = {
|
|
|
654
691
|
function createBaseMsgChannelOpenAckResponse() {
|
|
655
692
|
return {};
|
|
656
693
|
}
|
|
694
|
+
/**
|
|
695
|
+
* MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type.
|
|
696
|
+
* @name MsgChannelOpenAckResponse
|
|
697
|
+
* @package ibc.core.channel.v1
|
|
698
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAckResponse
|
|
699
|
+
*/
|
|
657
700
|
exports.MsgChannelOpenAckResponse = {
|
|
658
701
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenAckResponse",
|
|
659
702
|
aminoType: "cosmos-sdk/MsgChannelOpenAckResponse",
|
|
@@ -724,6 +767,13 @@ function createBaseMsgChannelOpenConfirm() {
|
|
|
724
767
|
signer: ""
|
|
725
768
|
};
|
|
726
769
|
}
|
|
770
|
+
/**
|
|
771
|
+
* MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to
|
|
772
|
+
* acknowledge the change of channel state to OPEN on Chain A.
|
|
773
|
+
* @name MsgChannelOpenConfirm
|
|
774
|
+
* @package ibc.core.channel.v1
|
|
775
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirm
|
|
776
|
+
*/
|
|
727
777
|
exports.MsgChannelOpenConfirm = {
|
|
728
778
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenConfirm",
|
|
729
779
|
aminoType: "cosmos-sdk/MsgChannelOpenConfirm",
|
|
@@ -848,6 +898,13 @@ exports.MsgChannelOpenConfirm = {
|
|
|
848
898
|
function createBaseMsgChannelOpenConfirmResponse() {
|
|
849
899
|
return {};
|
|
850
900
|
}
|
|
901
|
+
/**
|
|
902
|
+
* MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response
|
|
903
|
+
* type.
|
|
904
|
+
* @name MsgChannelOpenConfirmResponse
|
|
905
|
+
* @package ibc.core.channel.v1
|
|
906
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirmResponse
|
|
907
|
+
*/
|
|
851
908
|
exports.MsgChannelOpenConfirmResponse = {
|
|
852
909
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenConfirmResponse",
|
|
853
910
|
aminoType: "cosmos-sdk/MsgChannelOpenConfirmResponse",
|
|
@@ -916,6 +973,13 @@ function createBaseMsgChannelCloseInit() {
|
|
|
916
973
|
signer: ""
|
|
917
974
|
};
|
|
918
975
|
}
|
|
976
|
+
/**
|
|
977
|
+
* MsgChannelCloseInit defines a msg sent by a Relayer to Chain A
|
|
978
|
+
* to close a channel with Chain B.
|
|
979
|
+
* @name MsgChannelCloseInit
|
|
980
|
+
* @package ibc.core.channel.v1
|
|
981
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInit
|
|
982
|
+
*/
|
|
919
983
|
exports.MsgChannelCloseInit = {
|
|
920
984
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseInit",
|
|
921
985
|
aminoType: "cosmos-sdk/MsgChannelCloseInit",
|
|
@@ -1013,6 +1077,12 @@ exports.MsgChannelCloseInit = {
|
|
|
1013
1077
|
function createBaseMsgChannelCloseInitResponse() {
|
|
1014
1078
|
return {};
|
|
1015
1079
|
}
|
|
1080
|
+
/**
|
|
1081
|
+
* MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type.
|
|
1082
|
+
* @name MsgChannelCloseInitResponse
|
|
1083
|
+
* @package ibc.core.channel.v1
|
|
1084
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInitResponse
|
|
1085
|
+
*/
|
|
1016
1086
|
exports.MsgChannelCloseInitResponse = {
|
|
1017
1087
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseInitResponse",
|
|
1018
1088
|
aminoType: "cosmos-sdk/MsgChannelCloseInitResponse",
|
|
@@ -1084,6 +1154,13 @@ function createBaseMsgChannelCloseConfirm() {
|
|
|
1084
1154
|
counterpartyUpgradeSequence: BigInt(0)
|
|
1085
1155
|
};
|
|
1086
1156
|
}
|
|
1157
|
+
/**
|
|
1158
|
+
* MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B
|
|
1159
|
+
* to acknowledge the change of channel state to CLOSED on Chain A.
|
|
1160
|
+
* @name MsgChannelCloseConfirm
|
|
1161
|
+
* @package ibc.core.channel.v1
|
|
1162
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirm
|
|
1163
|
+
*/
|
|
1087
1164
|
exports.MsgChannelCloseConfirm = {
|
|
1088
1165
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseConfirm",
|
|
1089
1166
|
aminoType: "cosmos-sdk/MsgChannelCloseConfirm",
|
|
@@ -1219,6 +1296,13 @@ exports.MsgChannelCloseConfirm = {
|
|
|
1219
1296
|
function createBaseMsgChannelCloseConfirmResponse() {
|
|
1220
1297
|
return {};
|
|
1221
1298
|
}
|
|
1299
|
+
/**
|
|
1300
|
+
* MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response
|
|
1301
|
+
* type.
|
|
1302
|
+
* @name MsgChannelCloseConfirmResponse
|
|
1303
|
+
* @package ibc.core.channel.v1
|
|
1304
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirmResponse
|
|
1305
|
+
*/
|
|
1222
1306
|
exports.MsgChannelCloseConfirmResponse = {
|
|
1223
1307
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseConfirmResponse",
|
|
1224
1308
|
aminoType: "cosmos-sdk/MsgChannelCloseConfirmResponse",
|
|
@@ -1288,6 +1372,12 @@ function createBaseMsgRecvPacket() {
|
|
|
1288
1372
|
signer: ""
|
|
1289
1373
|
};
|
|
1290
1374
|
}
|
|
1375
|
+
/**
|
|
1376
|
+
* MsgRecvPacket receives incoming IBC packet
|
|
1377
|
+
* @name MsgRecvPacket
|
|
1378
|
+
* @package ibc.core.channel.v1
|
|
1379
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacket
|
|
1380
|
+
*/
|
|
1291
1381
|
exports.MsgRecvPacket = {
|
|
1292
1382
|
typeUrl: "/ibc.core.channel.v1.MsgRecvPacket",
|
|
1293
1383
|
aminoType: "cosmos-sdk/MsgRecvPacket",
|
|
@@ -1404,6 +1494,12 @@ function createBaseMsgRecvPacketResponse() {
|
|
|
1404
1494
|
result: 0
|
|
1405
1495
|
};
|
|
1406
1496
|
}
|
|
1497
|
+
/**
|
|
1498
|
+
* MsgRecvPacketResponse defines the Msg/RecvPacket response type.
|
|
1499
|
+
* @name MsgRecvPacketResponse
|
|
1500
|
+
* @package ibc.core.channel.v1
|
|
1501
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacketResponse
|
|
1502
|
+
*/
|
|
1407
1503
|
exports.MsgRecvPacketResponse = {
|
|
1408
1504
|
typeUrl: "/ibc.core.channel.v1.MsgRecvPacketResponse",
|
|
1409
1505
|
aminoType: "cosmos-sdk/MsgRecvPacketResponse",
|
|
@@ -1485,6 +1581,12 @@ function createBaseMsgTimeout() {
|
|
|
1485
1581
|
signer: ""
|
|
1486
1582
|
};
|
|
1487
1583
|
}
|
|
1584
|
+
/**
|
|
1585
|
+
* MsgTimeout receives timed-out packet
|
|
1586
|
+
* @name MsgTimeout
|
|
1587
|
+
* @package ibc.core.channel.v1
|
|
1588
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeout
|
|
1589
|
+
*/
|
|
1488
1590
|
exports.MsgTimeout = {
|
|
1489
1591
|
typeUrl: "/ibc.core.channel.v1.MsgTimeout",
|
|
1490
1592
|
aminoType: "cosmos-sdk/MsgTimeout",
|
|
@@ -1612,6 +1714,12 @@ function createBaseMsgTimeoutResponse() {
|
|
|
1612
1714
|
result: 0
|
|
1613
1715
|
};
|
|
1614
1716
|
}
|
|
1717
|
+
/**
|
|
1718
|
+
* MsgTimeoutResponse defines the Msg/Timeout response type.
|
|
1719
|
+
* @name MsgTimeoutResponse
|
|
1720
|
+
* @package ibc.core.channel.v1
|
|
1721
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutResponse
|
|
1722
|
+
*/
|
|
1615
1723
|
exports.MsgTimeoutResponse = {
|
|
1616
1724
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutResponse",
|
|
1617
1725
|
aminoType: "cosmos-sdk/MsgTimeoutResponse",
|
|
@@ -1695,6 +1803,12 @@ function createBaseMsgTimeoutOnClose() {
|
|
|
1695
1803
|
counterpartyUpgradeSequence: BigInt(0)
|
|
1696
1804
|
};
|
|
1697
1805
|
}
|
|
1806
|
+
/**
|
|
1807
|
+
* MsgTimeoutOnClose timed-out packet upon counterparty channel closure.
|
|
1808
|
+
* @name MsgTimeoutOnClose
|
|
1809
|
+
* @package ibc.core.channel.v1
|
|
1810
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnClose
|
|
1811
|
+
*/
|
|
1698
1812
|
exports.MsgTimeoutOnClose = {
|
|
1699
1813
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnClose",
|
|
1700
1814
|
aminoType: "cosmos-sdk/MsgTimeoutOnClose",
|
|
@@ -1844,6 +1958,12 @@ function createBaseMsgTimeoutOnCloseResponse() {
|
|
|
1844
1958
|
result: 0
|
|
1845
1959
|
};
|
|
1846
1960
|
}
|
|
1961
|
+
/**
|
|
1962
|
+
* MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type.
|
|
1963
|
+
* @name MsgTimeoutOnCloseResponse
|
|
1964
|
+
* @package ibc.core.channel.v1
|
|
1965
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnCloseResponse
|
|
1966
|
+
*/
|
|
1847
1967
|
exports.MsgTimeoutOnCloseResponse = {
|
|
1848
1968
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnCloseResponse",
|
|
1849
1969
|
aminoType: "cosmos-sdk/MsgTimeoutOnCloseResponse",
|
|
@@ -1925,6 +2045,12 @@ function createBaseMsgAcknowledgement() {
|
|
|
1925
2045
|
signer: ""
|
|
1926
2046
|
};
|
|
1927
2047
|
}
|
|
2048
|
+
/**
|
|
2049
|
+
* MsgAcknowledgement receives incoming IBC acknowledgement
|
|
2050
|
+
* @name MsgAcknowledgement
|
|
2051
|
+
* @package ibc.core.channel.v1
|
|
2052
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgement
|
|
2053
|
+
*/
|
|
1928
2054
|
exports.MsgAcknowledgement = {
|
|
1929
2055
|
typeUrl: "/ibc.core.channel.v1.MsgAcknowledgement",
|
|
1930
2056
|
aminoType: "cosmos-sdk/MsgAcknowledgement",
|
|
@@ -2052,6 +2178,12 @@ function createBaseMsgAcknowledgementResponse() {
|
|
|
2052
2178
|
result: 0
|
|
2053
2179
|
};
|
|
2054
2180
|
}
|
|
2181
|
+
/**
|
|
2182
|
+
* MsgAcknowledgementResponse defines the Msg/Acknowledgement response type.
|
|
2183
|
+
* @name MsgAcknowledgementResponse
|
|
2184
|
+
* @package ibc.core.channel.v1
|
|
2185
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgementResponse
|
|
2186
|
+
*/
|
|
2055
2187
|
exports.MsgAcknowledgementResponse = {
|
|
2056
2188
|
typeUrl: "/ibc.core.channel.v1.MsgAcknowledgementResponse",
|
|
2057
2189
|
aminoType: "cosmos-sdk/MsgAcknowledgementResponse",
|
|
@@ -2132,6 +2264,14 @@ function createBaseMsgChannelUpgradeInit() {
|
|
|
2132
2264
|
signer: ""
|
|
2133
2265
|
};
|
|
2134
2266
|
}
|
|
2267
|
+
/**
|
|
2268
|
+
* MsgChannelUpgradeInit defines the request type for the ChannelUpgradeInit rpc
|
|
2269
|
+
* WARNING: Initializing a channel upgrade in the same block as opening the channel
|
|
2270
|
+
* may result in the counterparty being incapable of opening.
|
|
2271
|
+
* @name MsgChannelUpgradeInit
|
|
2272
|
+
* @package ibc.core.channel.v1
|
|
2273
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeInit
|
|
2274
|
+
*/
|
|
2135
2275
|
exports.MsgChannelUpgradeInit = {
|
|
2136
2276
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeInit",
|
|
2137
2277
|
aminoType: "cosmos-sdk/MsgChannelUpgradeInit",
|
|
@@ -2248,6 +2388,12 @@ function createBaseMsgChannelUpgradeInitResponse() {
|
|
|
2248
2388
|
upgradeSequence: BigInt(0)
|
|
2249
2389
|
};
|
|
2250
2390
|
}
|
|
2391
|
+
/**
|
|
2392
|
+
* MsgChannelUpgradeInitResponse defines the MsgChannelUpgradeInit response type
|
|
2393
|
+
* @name MsgChannelUpgradeInitResponse
|
|
2394
|
+
* @package ibc.core.channel.v1
|
|
2395
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeInitResponse
|
|
2396
|
+
*/
|
|
2251
2397
|
exports.MsgChannelUpgradeInitResponse = {
|
|
2252
2398
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeInitResponse",
|
|
2253
2399
|
aminoType: "cosmos-sdk/MsgChannelUpgradeInitResponse",
|
|
@@ -2349,6 +2495,12 @@ function createBaseMsgChannelUpgradeTry() {
|
|
|
2349
2495
|
signer: ""
|
|
2350
2496
|
};
|
|
2351
2497
|
}
|
|
2498
|
+
/**
|
|
2499
|
+
* MsgChannelUpgradeTry defines the request type for the ChannelUpgradeTry rpc
|
|
2500
|
+
* @name MsgChannelUpgradeTry
|
|
2501
|
+
* @package ibc.core.channel.v1
|
|
2502
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTry
|
|
2503
|
+
*/
|
|
2352
2504
|
exports.MsgChannelUpgradeTry = {
|
|
2353
2505
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTry",
|
|
2354
2506
|
aminoType: "cosmos-sdk/MsgChannelUpgradeTry",
|
|
@@ -2525,6 +2677,12 @@ function createBaseMsgChannelUpgradeTryResponse() {
|
|
|
2525
2677
|
result: 0
|
|
2526
2678
|
};
|
|
2527
2679
|
}
|
|
2680
|
+
/**
|
|
2681
|
+
* MsgChannelUpgradeTryResponse defines the MsgChannelUpgradeTry response type
|
|
2682
|
+
* @name MsgChannelUpgradeTryResponse
|
|
2683
|
+
* @package ibc.core.channel.v1
|
|
2684
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTryResponse
|
|
2685
|
+
*/
|
|
2528
2686
|
exports.MsgChannelUpgradeTryResponse = {
|
|
2529
2687
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTryResponse",
|
|
2530
2688
|
aminoType: "cosmos-sdk/MsgChannelUpgradeTryResponse",
|
|
@@ -2635,6 +2793,12 @@ function createBaseMsgChannelUpgradeAck() {
|
|
|
2635
2793
|
signer: ""
|
|
2636
2794
|
};
|
|
2637
2795
|
}
|
|
2796
|
+
/**
|
|
2797
|
+
* MsgChannelUpgradeAck defines the request type for the ChannelUpgradeAck rpc
|
|
2798
|
+
* @name MsgChannelUpgradeAck
|
|
2799
|
+
* @package ibc.core.channel.v1
|
|
2800
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeAck
|
|
2801
|
+
*/
|
|
2638
2802
|
exports.MsgChannelUpgradeAck = {
|
|
2639
2803
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeAck",
|
|
2640
2804
|
aminoType: "cosmos-sdk/MsgChannelUpgradeAck",
|
|
@@ -2784,6 +2948,12 @@ function createBaseMsgChannelUpgradeAckResponse() {
|
|
|
2784
2948
|
result: 0
|
|
2785
2949
|
};
|
|
2786
2950
|
}
|
|
2951
|
+
/**
|
|
2952
|
+
* MsgChannelUpgradeAckResponse defines MsgChannelUpgradeAck response type
|
|
2953
|
+
* @name MsgChannelUpgradeAckResponse
|
|
2954
|
+
* @package ibc.core.channel.v1
|
|
2955
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeAckResponse
|
|
2956
|
+
*/
|
|
2787
2957
|
exports.MsgChannelUpgradeAckResponse = {
|
|
2788
2958
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeAckResponse",
|
|
2789
2959
|
aminoType: "cosmos-sdk/MsgChannelUpgradeAckResponse",
|
|
@@ -2868,6 +3038,12 @@ function createBaseMsgChannelUpgradeConfirm() {
|
|
|
2868
3038
|
signer: ""
|
|
2869
3039
|
};
|
|
2870
3040
|
}
|
|
3041
|
+
/**
|
|
3042
|
+
* MsgChannelUpgradeConfirm defines the request type for the ChannelUpgradeConfirm rpc
|
|
3043
|
+
* @name MsgChannelUpgradeConfirm
|
|
3044
|
+
* @package ibc.core.channel.v1
|
|
3045
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeConfirm
|
|
3046
|
+
*/
|
|
2871
3047
|
exports.MsgChannelUpgradeConfirm = {
|
|
2872
3048
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeConfirm",
|
|
2873
3049
|
aminoType: "cosmos-sdk/MsgChannelUpgradeConfirm",
|
|
@@ -3028,6 +3204,12 @@ function createBaseMsgChannelUpgradeConfirmResponse() {
|
|
|
3028
3204
|
result: 0
|
|
3029
3205
|
};
|
|
3030
3206
|
}
|
|
3207
|
+
/**
|
|
3208
|
+
* MsgChannelUpgradeConfirmResponse defines MsgChannelUpgradeConfirm response type
|
|
3209
|
+
* @name MsgChannelUpgradeConfirmResponse
|
|
3210
|
+
* @package ibc.core.channel.v1
|
|
3211
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeConfirmResponse
|
|
3212
|
+
*/
|
|
3031
3213
|
exports.MsgChannelUpgradeConfirmResponse = {
|
|
3032
3214
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeConfirmResponse",
|
|
3033
3215
|
aminoType: "cosmos-sdk/MsgChannelUpgradeConfirmResponse",
|
|
@@ -3111,6 +3293,12 @@ function createBaseMsgChannelUpgradeOpen() {
|
|
|
3111
3293
|
signer: ""
|
|
3112
3294
|
};
|
|
3113
3295
|
}
|
|
3296
|
+
/**
|
|
3297
|
+
* MsgChannelUpgradeOpen defines the request type for the ChannelUpgradeOpen rpc
|
|
3298
|
+
* @name MsgChannelUpgradeOpen
|
|
3299
|
+
* @package ibc.core.channel.v1
|
|
3300
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeOpen
|
|
3301
|
+
*/
|
|
3114
3302
|
exports.MsgChannelUpgradeOpen = {
|
|
3115
3303
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeOpen",
|
|
3116
3304
|
aminoType: "cosmos-sdk/MsgChannelUpgradeOpen",
|
|
@@ -3257,6 +3445,12 @@ exports.MsgChannelUpgradeOpen = {
|
|
|
3257
3445
|
function createBaseMsgChannelUpgradeOpenResponse() {
|
|
3258
3446
|
return {};
|
|
3259
3447
|
}
|
|
3448
|
+
/**
|
|
3449
|
+
* MsgChannelUpgradeOpenResponse defines the MsgChannelUpgradeOpen response type
|
|
3450
|
+
* @name MsgChannelUpgradeOpenResponse
|
|
3451
|
+
* @package ibc.core.channel.v1
|
|
3452
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeOpenResponse
|
|
3453
|
+
*/
|
|
3260
3454
|
exports.MsgChannelUpgradeOpenResponse = {
|
|
3261
3455
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeOpenResponse",
|
|
3262
3456
|
aminoType: "cosmos-sdk/MsgChannelUpgradeOpenResponse",
|
|
@@ -3328,6 +3522,12 @@ function createBaseMsgChannelUpgradeTimeout() {
|
|
|
3328
3522
|
signer: ""
|
|
3329
3523
|
};
|
|
3330
3524
|
}
|
|
3525
|
+
/**
|
|
3526
|
+
* MsgChannelUpgradeTimeout defines the request type for the ChannelUpgradeTimeout rpc
|
|
3527
|
+
* @name MsgChannelUpgradeTimeout
|
|
3528
|
+
* @package ibc.core.channel.v1
|
|
3529
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTimeout
|
|
3530
|
+
*/
|
|
3331
3531
|
exports.MsgChannelUpgradeTimeout = {
|
|
3332
3532
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTimeout",
|
|
3333
3533
|
aminoType: "cosmos-sdk/MsgChannelUpgradeTimeout",
|
|
@@ -3464,6 +3664,12 @@ exports.MsgChannelUpgradeTimeout = {
|
|
|
3464
3664
|
function createBaseMsgChannelUpgradeTimeoutResponse() {
|
|
3465
3665
|
return {};
|
|
3466
3666
|
}
|
|
3667
|
+
/**
|
|
3668
|
+
* MsgChannelUpgradeTimeoutResponse defines the MsgChannelUpgradeTimeout response type
|
|
3669
|
+
* @name MsgChannelUpgradeTimeoutResponse
|
|
3670
|
+
* @package ibc.core.channel.v1
|
|
3671
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTimeoutResponse
|
|
3672
|
+
*/
|
|
3467
3673
|
exports.MsgChannelUpgradeTimeoutResponse = {
|
|
3468
3674
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTimeoutResponse",
|
|
3469
3675
|
aminoType: "cosmos-sdk/MsgChannelUpgradeTimeoutResponse",
|
|
@@ -3535,6 +3741,12 @@ function createBaseMsgChannelUpgradeCancel() {
|
|
|
3535
3741
|
signer: ""
|
|
3536
3742
|
};
|
|
3537
3743
|
}
|
|
3744
|
+
/**
|
|
3745
|
+
* MsgChannelUpgradeCancel defines the request type for the ChannelUpgradeCancel rpc
|
|
3746
|
+
* @name MsgChannelUpgradeCancel
|
|
3747
|
+
* @package ibc.core.channel.v1
|
|
3748
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeCancel
|
|
3749
|
+
*/
|
|
3538
3750
|
exports.MsgChannelUpgradeCancel = {
|
|
3539
3751
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeCancel",
|
|
3540
3752
|
aminoType: "cosmos-sdk/MsgChannelUpgradeCancel",
|
|
@@ -3671,6 +3883,12 @@ exports.MsgChannelUpgradeCancel = {
|
|
|
3671
3883
|
function createBaseMsgChannelUpgradeCancelResponse() {
|
|
3672
3884
|
return {};
|
|
3673
3885
|
}
|
|
3886
|
+
/**
|
|
3887
|
+
* MsgChannelUpgradeCancelResponse defines the MsgChannelUpgradeCancel response type
|
|
3888
|
+
* @name MsgChannelUpgradeCancelResponse
|
|
3889
|
+
* @package ibc.core.channel.v1
|
|
3890
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelUpgradeCancelResponse
|
|
3891
|
+
*/
|
|
3674
3892
|
exports.MsgChannelUpgradeCancelResponse = {
|
|
3675
3893
|
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeCancelResponse",
|
|
3676
3894
|
aminoType: "cosmos-sdk/MsgChannelUpgradeCancelResponse",
|
|
@@ -3738,6 +3956,12 @@ function createBaseMsgUpdateParams() {
|
|
|
3738
3956
|
params: client_1.Params.fromPartial({})
|
|
3739
3957
|
};
|
|
3740
3958
|
}
|
|
3959
|
+
/**
|
|
3960
|
+
* MsgUpdateParams is the MsgUpdateParams request type.
|
|
3961
|
+
* @name MsgUpdateParams
|
|
3962
|
+
* @package ibc.core.channel.v1
|
|
3963
|
+
* @see proto type: ibc.core.channel.v1.MsgUpdateParams
|
|
3964
|
+
*/
|
|
3741
3965
|
exports.MsgUpdateParams = {
|
|
3742
3966
|
typeUrl: "/ibc.core.channel.v1.MsgUpdateParams",
|
|
3743
3967
|
aminoType: "cosmos-sdk/MsgUpdateParams",
|
|
@@ -3829,6 +4053,12 @@ exports.MsgUpdateParams = {
|
|
|
3829
4053
|
function createBaseMsgUpdateParamsResponse() {
|
|
3830
4054
|
return {};
|
|
3831
4055
|
}
|
|
4056
|
+
/**
|
|
4057
|
+
* MsgUpdateParamsResponse defines the MsgUpdateParams response type.
|
|
4058
|
+
* @name MsgUpdateParamsResponse
|
|
4059
|
+
* @package ibc.core.channel.v1
|
|
4060
|
+
* @see proto type: ibc.core.channel.v1.MsgUpdateParamsResponse
|
|
4061
|
+
*/
|
|
3832
4062
|
exports.MsgUpdateParamsResponse = {
|
|
3833
4063
|
typeUrl: "/ibc.core.channel.v1.MsgUpdateParamsResponse",
|
|
3834
4064
|
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|
|
@@ -3898,6 +4128,12 @@ function createBaseMsgPruneAcknowledgements() {
|
|
|
3898
4128
|
signer: ""
|
|
3899
4129
|
};
|
|
3900
4130
|
}
|
|
4131
|
+
/**
|
|
4132
|
+
* MsgPruneAcknowledgements defines the request type for the PruneAcknowledgements rpc.
|
|
4133
|
+
* @name MsgPruneAcknowledgements
|
|
4134
|
+
* @package ibc.core.channel.v1
|
|
4135
|
+
* @see proto type: ibc.core.channel.v1.MsgPruneAcknowledgements
|
|
4136
|
+
*/
|
|
3901
4137
|
exports.MsgPruneAcknowledgements = {
|
|
3902
4138
|
typeUrl: "/ibc.core.channel.v1.MsgPruneAcknowledgements",
|
|
3903
4139
|
aminoType: "cosmos-sdk/MsgPruneAcknowledgements",
|
|
@@ -4009,6 +4245,12 @@ function createBaseMsgPruneAcknowledgementsResponse() {
|
|
|
4009
4245
|
totalRemainingSequences: BigInt(0)
|
|
4010
4246
|
};
|
|
4011
4247
|
}
|
|
4248
|
+
/**
|
|
4249
|
+
* MsgPruneAcknowledgementsResponse defines the response type for the PruneAcknowledgements rpc.
|
|
4250
|
+
* @name MsgPruneAcknowledgementsResponse
|
|
4251
|
+
* @package ibc.core.channel.v1
|
|
4252
|
+
* @see proto type: ibc.core.channel.v1.MsgPruneAcknowledgementsResponse
|
|
4253
|
+
*/
|
|
4012
4254
|
exports.MsgPruneAcknowledgementsResponse = {
|
|
4013
4255
|
typeUrl: "/ibc.core.channel.v1.MsgPruneAcknowledgementsResponse",
|
|
4014
4256
|
aminoType: "cosmos-sdk/MsgPruneAcknowledgementsResponse",
|
|
@@ -1,20 +1,135 @@
|
|
|
1
1
|
import { MsgChannelOpenInit, MsgChannelOpenTry, MsgChannelOpenAck, MsgChannelOpenConfirm, MsgChannelCloseInit, MsgChannelCloseConfirm, MsgRecvPacket, MsgTimeout, MsgTimeoutOnClose, MsgAcknowledgement, MsgChannelUpgradeInit, MsgChannelUpgradeTry, MsgChannelUpgradeAck, MsgChannelUpgradeConfirm, MsgChannelUpgradeOpen, MsgChannelUpgradeTimeout, MsgChannelUpgradeCancel, MsgUpdateParams, MsgPruneAcknowledgements } from "./tx";
|
|
2
|
+
/**
|
|
3
|
+
* ChannelOpenInit defines a rpc handler method for MsgChannelOpenInit.
|
|
4
|
+
* @name channelOpenInit
|
|
5
|
+
* @package ibc.core.channel.v1
|
|
6
|
+
* @see proto service: ibc.core.channel.v1.ChannelOpenInit
|
|
7
|
+
*/
|
|
2
8
|
export declare const channelOpenInit: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelOpenInit | MsgChannelOpenInit[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
9
|
+
/**
|
|
10
|
+
* ChannelOpenTry defines a rpc handler method for MsgChannelOpenTry.
|
|
11
|
+
* @name channelOpenTry
|
|
12
|
+
* @package ibc.core.channel.v1
|
|
13
|
+
* @see proto service: ibc.core.channel.v1.ChannelOpenTry
|
|
14
|
+
*/
|
|
3
15
|
export declare const channelOpenTry: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelOpenTry | MsgChannelOpenTry[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* ChannelOpenAck defines a rpc handler method for MsgChannelOpenAck.
|
|
18
|
+
* @name channelOpenAck
|
|
19
|
+
* @package ibc.core.channel.v1
|
|
20
|
+
* @see proto service: ibc.core.channel.v1.ChannelOpenAck
|
|
21
|
+
*/
|
|
4
22
|
export declare const channelOpenAck: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelOpenAck | MsgChannelOpenAck[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
23
|
+
/**
|
|
24
|
+
* ChannelOpenConfirm defines a rpc handler method for MsgChannelOpenConfirm.
|
|
25
|
+
* @name channelOpenConfirm
|
|
26
|
+
* @package ibc.core.channel.v1
|
|
27
|
+
* @see proto service: ibc.core.channel.v1.ChannelOpenConfirm
|
|
28
|
+
*/
|
|
5
29
|
export declare const channelOpenConfirm: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelOpenConfirm | MsgChannelOpenConfirm[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
30
|
+
/**
|
|
31
|
+
* ChannelCloseInit defines a rpc handler method for MsgChannelCloseInit.
|
|
32
|
+
* @name channelCloseInit
|
|
33
|
+
* @package ibc.core.channel.v1
|
|
34
|
+
* @see proto service: ibc.core.channel.v1.ChannelCloseInit
|
|
35
|
+
*/
|
|
6
36
|
export declare const channelCloseInit: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelCloseInit | MsgChannelCloseInit[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
37
|
+
/**
|
|
38
|
+
* ChannelCloseConfirm defines a rpc handler method for
|
|
39
|
+
* MsgChannelCloseConfirm.
|
|
40
|
+
* @name channelCloseConfirm
|
|
41
|
+
* @package ibc.core.channel.v1
|
|
42
|
+
* @see proto service: ibc.core.channel.v1.ChannelCloseConfirm
|
|
43
|
+
*/
|
|
7
44
|
export declare const channelCloseConfirm: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelCloseConfirm | MsgChannelCloseConfirm[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
45
|
+
/**
|
|
46
|
+
* RecvPacket defines a rpc handler method for MsgRecvPacket.
|
|
47
|
+
* @name recvPacket
|
|
48
|
+
* @package ibc.core.channel.v1
|
|
49
|
+
* @see proto service: ibc.core.channel.v1.RecvPacket
|
|
50
|
+
*/
|
|
8
51
|
export declare const recvPacket: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRecvPacket | MsgRecvPacket[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
52
|
+
/**
|
|
53
|
+
* Timeout defines a rpc handler method for MsgTimeout.
|
|
54
|
+
* @name timeout
|
|
55
|
+
* @package ibc.core.channel.v1
|
|
56
|
+
* @see proto service: ibc.core.channel.v1.Timeout
|
|
57
|
+
*/
|
|
9
58
|
export declare const timeout: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgTimeout | MsgTimeout[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
59
|
+
/**
|
|
60
|
+
* TimeoutOnClose defines a rpc handler method for MsgTimeoutOnClose.
|
|
61
|
+
* @name timeoutOnClose
|
|
62
|
+
* @package ibc.core.channel.v1
|
|
63
|
+
* @see proto service: ibc.core.channel.v1.TimeoutOnClose
|
|
64
|
+
*/
|
|
10
65
|
export declare const timeoutOnClose: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgTimeoutOnClose | MsgTimeoutOnClose[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
66
|
+
/**
|
|
67
|
+
* Acknowledgement defines a rpc handler method for MsgAcknowledgement.
|
|
68
|
+
* @name acknowledgement
|
|
69
|
+
* @package ibc.core.channel.v1
|
|
70
|
+
* @see proto service: ibc.core.channel.v1.Acknowledgement
|
|
71
|
+
*/
|
|
11
72
|
export declare const acknowledgement: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgAcknowledgement | MsgAcknowledgement[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
73
|
+
/**
|
|
74
|
+
* ChannelUpgradeInit defines a rpc handler method for MsgChannelUpgradeInit.
|
|
75
|
+
* @name channelUpgradeInit
|
|
76
|
+
* @package ibc.core.channel.v1
|
|
77
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeInit
|
|
78
|
+
*/
|
|
12
79
|
export declare const channelUpgradeInit: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelUpgradeInit | MsgChannelUpgradeInit[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
80
|
+
/**
|
|
81
|
+
* ChannelUpgradeTry defines a rpc handler method for MsgChannelUpgradeTry.
|
|
82
|
+
* @name channelUpgradeTry
|
|
83
|
+
* @package ibc.core.channel.v1
|
|
84
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeTry
|
|
85
|
+
*/
|
|
13
86
|
export declare const channelUpgradeTry: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelUpgradeTry | MsgChannelUpgradeTry[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
87
|
+
/**
|
|
88
|
+
* ChannelUpgradeAck defines a rpc handler method for MsgChannelUpgradeAck.
|
|
89
|
+
* @name channelUpgradeAck
|
|
90
|
+
* @package ibc.core.channel.v1
|
|
91
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeAck
|
|
92
|
+
*/
|
|
14
93
|
export declare const channelUpgradeAck: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelUpgradeAck | MsgChannelUpgradeAck[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
94
|
+
/**
|
|
95
|
+
* ChannelUpgradeConfirm defines a rpc handler method for MsgChannelUpgradeConfirm.
|
|
96
|
+
* @name channelUpgradeConfirm
|
|
97
|
+
* @package ibc.core.channel.v1
|
|
98
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeConfirm
|
|
99
|
+
*/
|
|
15
100
|
export declare const channelUpgradeConfirm: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelUpgradeConfirm | MsgChannelUpgradeConfirm[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
101
|
+
/**
|
|
102
|
+
* ChannelUpgradeOpen defines a rpc handler method for MsgChannelUpgradeOpen.
|
|
103
|
+
* @name channelUpgradeOpen
|
|
104
|
+
* @package ibc.core.channel.v1
|
|
105
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeOpen
|
|
106
|
+
*/
|
|
16
107
|
export declare const channelUpgradeOpen: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelUpgradeOpen | MsgChannelUpgradeOpen[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
108
|
+
/**
|
|
109
|
+
* ChannelUpgradeTimeout defines a rpc handler method for MsgChannelUpgradeTimeout.
|
|
110
|
+
* @name channelUpgradeTimeout
|
|
111
|
+
* @package ibc.core.channel.v1
|
|
112
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeTimeout
|
|
113
|
+
*/
|
|
17
114
|
export declare const channelUpgradeTimeout: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelUpgradeTimeout | MsgChannelUpgradeTimeout[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
115
|
+
/**
|
|
116
|
+
* ChannelUpgradeCancel defines a rpc handler method for MsgChannelUpgradeCancel.
|
|
117
|
+
* @name channelUpgradeCancel
|
|
118
|
+
* @package ibc.core.channel.v1
|
|
119
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeCancel
|
|
120
|
+
*/
|
|
18
121
|
export declare const channelUpgradeCancel: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelUpgradeCancel | MsgChannelUpgradeCancel[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
122
|
+
/**
|
|
123
|
+
* UpdateChannelParams defines a rpc handler method for MsgUpdateParams.
|
|
124
|
+
* @name updateChannelParams
|
|
125
|
+
* @package ibc.core.channel.v1
|
|
126
|
+
* @see proto service: ibc.core.channel.v1.UpdateChannelParams
|
|
127
|
+
*/
|
|
19
128
|
export declare const updateChannelParams: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
129
|
+
/**
|
|
130
|
+
* PruneAcknowledgements defines a rpc handler method for MsgPruneAcknowledgements.
|
|
131
|
+
* @name pruneAcknowledgements
|
|
132
|
+
* @package ibc.core.channel.v1
|
|
133
|
+
* @see proto service: ibc.core.channel.v1.PruneAcknowledgements
|
|
134
|
+
*/
|
|
20
135
|
export declare const pruneAcknowledgements: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgPruneAcknowledgements | MsgPruneAcknowledgements[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|