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
|
@@ -51,20 +51,31 @@ export declare function orderToJSON(object: Order): string;
|
|
|
51
51
|
* Channel defines pipeline for exactly-once packet delivery between specific
|
|
52
52
|
* modules on separate blockchains, which has at least one end capable of
|
|
53
53
|
* sending packets and one end capable of receiving packets.
|
|
54
|
+
* @name Channel
|
|
55
|
+
* @package ibc.core.channel.v1
|
|
56
|
+
* @see proto type: ibc.core.channel.v1.Channel
|
|
54
57
|
*/
|
|
55
58
|
export interface Channel {
|
|
56
|
-
/**
|
|
59
|
+
/**
|
|
60
|
+
* current state of the channel end
|
|
61
|
+
*/
|
|
57
62
|
state: State;
|
|
58
|
-
/**
|
|
63
|
+
/**
|
|
64
|
+
* whether the channel is ordered or unordered
|
|
65
|
+
*/
|
|
59
66
|
ordering: Order;
|
|
60
|
-
/**
|
|
67
|
+
/**
|
|
68
|
+
* counterparty channel end
|
|
69
|
+
*/
|
|
61
70
|
counterparty: Counterparty;
|
|
62
71
|
/**
|
|
63
72
|
* list of connection identifiers, in order, along which packets sent on
|
|
64
73
|
* this channel will travel
|
|
65
74
|
*/
|
|
66
75
|
connectionHops: string[];
|
|
67
|
-
/**
|
|
76
|
+
/**
|
|
77
|
+
* opaque channel version, which is agreed upon during the handshake
|
|
78
|
+
*/
|
|
68
79
|
version: string;
|
|
69
80
|
/**
|
|
70
81
|
* upgrade sequence indicates the latest upgrade attempt performed by this channel
|
|
@@ -80,20 +91,31 @@ export interface ChannelProtoMsg {
|
|
|
80
91
|
* Channel defines pipeline for exactly-once packet delivery between specific
|
|
81
92
|
* modules on separate blockchains, which has at least one end capable of
|
|
82
93
|
* sending packets and one end capable of receiving packets.
|
|
94
|
+
* @name ChannelAmino
|
|
95
|
+
* @package ibc.core.channel.v1
|
|
96
|
+
* @see proto type: ibc.core.channel.v1.Channel
|
|
83
97
|
*/
|
|
84
98
|
export interface ChannelAmino {
|
|
85
|
-
/**
|
|
99
|
+
/**
|
|
100
|
+
* current state of the channel end
|
|
101
|
+
*/
|
|
86
102
|
state: State;
|
|
87
|
-
/**
|
|
103
|
+
/**
|
|
104
|
+
* whether the channel is ordered or unordered
|
|
105
|
+
*/
|
|
88
106
|
ordering: Order;
|
|
89
|
-
/**
|
|
107
|
+
/**
|
|
108
|
+
* counterparty channel end
|
|
109
|
+
*/
|
|
90
110
|
counterparty: CounterpartyAmino;
|
|
91
111
|
/**
|
|
92
112
|
* list of connection identifiers, in order, along which packets sent on
|
|
93
113
|
* this channel will travel
|
|
94
114
|
*/
|
|
95
115
|
connection_hops: string[];
|
|
96
|
-
/**
|
|
116
|
+
/**
|
|
117
|
+
* opaque channel version, which is agreed upon during the handshake
|
|
118
|
+
*/
|
|
97
119
|
version: string;
|
|
98
120
|
/**
|
|
99
121
|
* upgrade sequence indicates the latest upgrade attempt performed by this channel
|
|
@@ -108,24 +130,39 @@ export interface ChannelAminoMsg {
|
|
|
108
130
|
/**
|
|
109
131
|
* IdentifiedChannel defines a channel with additional port and channel
|
|
110
132
|
* identifier fields.
|
|
133
|
+
* @name IdentifiedChannel
|
|
134
|
+
* @package ibc.core.channel.v1
|
|
135
|
+
* @see proto type: ibc.core.channel.v1.IdentifiedChannel
|
|
111
136
|
*/
|
|
112
137
|
export interface IdentifiedChannel {
|
|
113
|
-
/**
|
|
138
|
+
/**
|
|
139
|
+
* current state of the channel end
|
|
140
|
+
*/
|
|
114
141
|
state: State;
|
|
115
|
-
/**
|
|
142
|
+
/**
|
|
143
|
+
* whether the channel is ordered or unordered
|
|
144
|
+
*/
|
|
116
145
|
ordering: Order;
|
|
117
|
-
/**
|
|
146
|
+
/**
|
|
147
|
+
* counterparty channel end
|
|
148
|
+
*/
|
|
118
149
|
counterparty: Counterparty;
|
|
119
150
|
/**
|
|
120
151
|
* list of connection identifiers, in order, along which packets sent on
|
|
121
152
|
* this channel will travel
|
|
122
153
|
*/
|
|
123
154
|
connectionHops: string[];
|
|
124
|
-
/**
|
|
155
|
+
/**
|
|
156
|
+
* opaque channel version, which is agreed upon during the handshake
|
|
157
|
+
*/
|
|
125
158
|
version: string;
|
|
126
|
-
/**
|
|
159
|
+
/**
|
|
160
|
+
* port identifier
|
|
161
|
+
*/
|
|
127
162
|
portId: string;
|
|
128
|
-
/**
|
|
163
|
+
/**
|
|
164
|
+
* channel identifier
|
|
165
|
+
*/
|
|
129
166
|
channelId: string;
|
|
130
167
|
/**
|
|
131
168
|
* upgrade sequence indicates the latest upgrade attempt performed by this channel
|
|
@@ -140,24 +177,39 @@ export interface IdentifiedChannelProtoMsg {
|
|
|
140
177
|
/**
|
|
141
178
|
* IdentifiedChannel defines a channel with additional port and channel
|
|
142
179
|
* identifier fields.
|
|
180
|
+
* @name IdentifiedChannelAmino
|
|
181
|
+
* @package ibc.core.channel.v1
|
|
182
|
+
* @see proto type: ibc.core.channel.v1.IdentifiedChannel
|
|
143
183
|
*/
|
|
144
184
|
export interface IdentifiedChannelAmino {
|
|
145
|
-
/**
|
|
185
|
+
/**
|
|
186
|
+
* current state of the channel end
|
|
187
|
+
*/
|
|
146
188
|
state: State;
|
|
147
|
-
/**
|
|
189
|
+
/**
|
|
190
|
+
* whether the channel is ordered or unordered
|
|
191
|
+
*/
|
|
148
192
|
ordering: Order;
|
|
149
|
-
/**
|
|
193
|
+
/**
|
|
194
|
+
* counterparty channel end
|
|
195
|
+
*/
|
|
150
196
|
counterparty: CounterpartyAmino;
|
|
151
197
|
/**
|
|
152
198
|
* list of connection identifiers, in order, along which packets sent on
|
|
153
199
|
* this channel will travel
|
|
154
200
|
*/
|
|
155
201
|
connection_hops: string[];
|
|
156
|
-
/**
|
|
202
|
+
/**
|
|
203
|
+
* opaque channel version, which is agreed upon during the handshake
|
|
204
|
+
*/
|
|
157
205
|
version: string;
|
|
158
|
-
/**
|
|
206
|
+
/**
|
|
207
|
+
* port identifier
|
|
208
|
+
*/
|
|
159
209
|
port_id: string;
|
|
160
|
-
/**
|
|
210
|
+
/**
|
|
211
|
+
* channel identifier
|
|
212
|
+
*/
|
|
161
213
|
channel_id: string;
|
|
162
214
|
/**
|
|
163
215
|
* upgrade sequence indicates the latest upgrade attempt performed by this channel
|
|
@@ -169,29 +221,52 @@ export interface IdentifiedChannelAminoMsg {
|
|
|
169
221
|
type: "cosmos-sdk/IdentifiedChannel";
|
|
170
222
|
value: IdentifiedChannelAmino;
|
|
171
223
|
}
|
|
172
|
-
/**
|
|
224
|
+
/**
|
|
225
|
+
* Counterparty defines a channel end counterparty
|
|
226
|
+
* @name Counterparty
|
|
227
|
+
* @package ibc.core.channel.v1
|
|
228
|
+
* @see proto type: ibc.core.channel.v1.Counterparty
|
|
229
|
+
*/
|
|
173
230
|
export interface Counterparty {
|
|
174
|
-
/**
|
|
231
|
+
/**
|
|
232
|
+
* port on the counterparty chain which owns the other end of the channel.
|
|
233
|
+
*/
|
|
175
234
|
portId: string;
|
|
176
|
-
/**
|
|
235
|
+
/**
|
|
236
|
+
* channel end on the counterparty chain
|
|
237
|
+
*/
|
|
177
238
|
channelId: string;
|
|
178
239
|
}
|
|
179
240
|
export interface CounterpartyProtoMsg {
|
|
180
241
|
typeUrl: "/ibc.core.channel.v1.Counterparty";
|
|
181
242
|
value: Uint8Array;
|
|
182
243
|
}
|
|
183
|
-
/**
|
|
244
|
+
/**
|
|
245
|
+
* Counterparty defines a channel end counterparty
|
|
246
|
+
* @name CounterpartyAmino
|
|
247
|
+
* @package ibc.core.channel.v1
|
|
248
|
+
* @see proto type: ibc.core.channel.v1.Counterparty
|
|
249
|
+
*/
|
|
184
250
|
export interface CounterpartyAmino {
|
|
185
|
-
/**
|
|
251
|
+
/**
|
|
252
|
+
* port on the counterparty chain which owns the other end of the channel.
|
|
253
|
+
*/
|
|
186
254
|
port_id: string;
|
|
187
|
-
/**
|
|
255
|
+
/**
|
|
256
|
+
* channel end on the counterparty chain
|
|
257
|
+
*/
|
|
188
258
|
channel_id: string;
|
|
189
259
|
}
|
|
190
260
|
export interface CounterpartyAminoMsg {
|
|
191
261
|
type: "cosmos-sdk/Counterparty";
|
|
192
262
|
value: CounterpartyAmino;
|
|
193
263
|
}
|
|
194
|
-
/**
|
|
264
|
+
/**
|
|
265
|
+
* Packet defines a type that carries data across different chains through IBC
|
|
266
|
+
* @name Packet
|
|
267
|
+
* @package ibc.core.channel.v1
|
|
268
|
+
* @see proto type: ibc.core.channel.v1.Packet
|
|
269
|
+
*/
|
|
195
270
|
export interface Packet {
|
|
196
271
|
/**
|
|
197
272
|
* number corresponds to the order of sends and receives, where a Packet
|
|
@@ -199,26 +274,45 @@ export interface Packet {
|
|
|
199
274
|
* with a later sequence number.
|
|
200
275
|
*/
|
|
201
276
|
sequence: bigint;
|
|
202
|
-
/**
|
|
277
|
+
/**
|
|
278
|
+
* identifies the port on the sending chain.
|
|
279
|
+
*/
|
|
203
280
|
sourcePort: string;
|
|
204
|
-
/**
|
|
281
|
+
/**
|
|
282
|
+
* identifies the channel end on the sending chain.
|
|
283
|
+
*/
|
|
205
284
|
sourceChannel: string;
|
|
206
|
-
/**
|
|
285
|
+
/**
|
|
286
|
+
* identifies the port on the receiving chain.
|
|
287
|
+
*/
|
|
207
288
|
destinationPort: string;
|
|
208
|
-
/**
|
|
289
|
+
/**
|
|
290
|
+
* identifies the channel end on the receiving chain.
|
|
291
|
+
*/
|
|
209
292
|
destinationChannel: string;
|
|
210
|
-
/**
|
|
293
|
+
/**
|
|
294
|
+
* actual opaque bytes transferred directly to the application module
|
|
295
|
+
*/
|
|
211
296
|
data: Uint8Array;
|
|
212
|
-
/**
|
|
297
|
+
/**
|
|
298
|
+
* block height after which the packet times out
|
|
299
|
+
*/
|
|
213
300
|
timeoutHeight: Height;
|
|
214
|
-
/**
|
|
301
|
+
/**
|
|
302
|
+
* block timestamp (in nanoseconds) after which the packet times out
|
|
303
|
+
*/
|
|
215
304
|
timeoutTimestamp: bigint;
|
|
216
305
|
}
|
|
217
306
|
export interface PacketProtoMsg {
|
|
218
307
|
typeUrl: "/ibc.core.channel.v1.Packet";
|
|
219
308
|
value: Uint8Array;
|
|
220
309
|
}
|
|
221
|
-
/**
|
|
310
|
+
/**
|
|
311
|
+
* Packet defines a type that carries data across different chains through IBC
|
|
312
|
+
* @name PacketAmino
|
|
313
|
+
* @package ibc.core.channel.v1
|
|
314
|
+
* @see proto type: ibc.core.channel.v1.Packet
|
|
315
|
+
*/
|
|
222
316
|
export interface PacketAmino {
|
|
223
317
|
/**
|
|
224
318
|
* number corresponds to the order of sends and receives, where a Packet
|
|
@@ -226,19 +320,33 @@ export interface PacketAmino {
|
|
|
226
320
|
* with a later sequence number.
|
|
227
321
|
*/
|
|
228
322
|
sequence: string;
|
|
229
|
-
/**
|
|
323
|
+
/**
|
|
324
|
+
* identifies the port on the sending chain.
|
|
325
|
+
*/
|
|
230
326
|
source_port: string;
|
|
231
|
-
/**
|
|
327
|
+
/**
|
|
328
|
+
* identifies the channel end on the sending chain.
|
|
329
|
+
*/
|
|
232
330
|
source_channel: string;
|
|
233
|
-
/**
|
|
331
|
+
/**
|
|
332
|
+
* identifies the port on the receiving chain.
|
|
333
|
+
*/
|
|
234
334
|
destination_port: string;
|
|
235
|
-
/**
|
|
335
|
+
/**
|
|
336
|
+
* identifies the channel end on the receiving chain.
|
|
337
|
+
*/
|
|
236
338
|
destination_channel: string;
|
|
237
|
-
/**
|
|
339
|
+
/**
|
|
340
|
+
* actual opaque bytes transferred directly to the application module
|
|
341
|
+
*/
|
|
238
342
|
data: string;
|
|
239
|
-
/**
|
|
343
|
+
/**
|
|
344
|
+
* block height after which the packet times out
|
|
345
|
+
*/
|
|
240
346
|
timeout_height: HeightAmino;
|
|
241
|
-
/**
|
|
347
|
+
/**
|
|
348
|
+
* block timestamp (in nanoseconds) after which the packet times out
|
|
349
|
+
*/
|
|
242
350
|
timeout_timestamp: string;
|
|
243
351
|
}
|
|
244
352
|
export interface PacketAminoMsg {
|
|
@@ -250,15 +358,26 @@ export interface PacketAminoMsg {
|
|
|
250
358
|
* packet commitments, acknowledgements, and receipts.
|
|
251
359
|
* Caller is responsible for knowing the context necessary to interpret this
|
|
252
360
|
* state as a commitment, acknowledgement, or a receipt.
|
|
361
|
+
* @name PacketState
|
|
362
|
+
* @package ibc.core.channel.v1
|
|
363
|
+
* @see proto type: ibc.core.channel.v1.PacketState
|
|
253
364
|
*/
|
|
254
365
|
export interface PacketState {
|
|
255
|
-
/**
|
|
366
|
+
/**
|
|
367
|
+
* channel port identifier.
|
|
368
|
+
*/
|
|
256
369
|
portId: string;
|
|
257
|
-
/**
|
|
370
|
+
/**
|
|
371
|
+
* channel unique identifier.
|
|
372
|
+
*/
|
|
258
373
|
channelId: string;
|
|
259
|
-
/**
|
|
374
|
+
/**
|
|
375
|
+
* packet sequence.
|
|
376
|
+
*/
|
|
260
377
|
sequence: bigint;
|
|
261
|
-
/**
|
|
378
|
+
/**
|
|
379
|
+
* embedded data that represents packet state.
|
|
380
|
+
*/
|
|
262
381
|
data: Uint8Array;
|
|
263
382
|
}
|
|
264
383
|
export interface PacketStateProtoMsg {
|
|
@@ -270,15 +389,26 @@ export interface PacketStateProtoMsg {
|
|
|
270
389
|
* packet commitments, acknowledgements, and receipts.
|
|
271
390
|
* Caller is responsible for knowing the context necessary to interpret this
|
|
272
391
|
* state as a commitment, acknowledgement, or a receipt.
|
|
392
|
+
* @name PacketStateAmino
|
|
393
|
+
* @package ibc.core.channel.v1
|
|
394
|
+
* @see proto type: ibc.core.channel.v1.PacketState
|
|
273
395
|
*/
|
|
274
396
|
export interface PacketStateAmino {
|
|
275
|
-
/**
|
|
397
|
+
/**
|
|
398
|
+
* channel port identifier.
|
|
399
|
+
*/
|
|
276
400
|
port_id: string;
|
|
277
|
-
/**
|
|
401
|
+
/**
|
|
402
|
+
* channel unique identifier.
|
|
403
|
+
*/
|
|
278
404
|
channel_id: string;
|
|
279
|
-
/**
|
|
405
|
+
/**
|
|
406
|
+
* packet sequence.
|
|
407
|
+
*/
|
|
280
408
|
sequence: string;
|
|
281
|
-
/**
|
|
409
|
+
/**
|
|
410
|
+
* embedded data that represents packet state.
|
|
411
|
+
*/
|
|
282
412
|
data: string;
|
|
283
413
|
}
|
|
284
414
|
export interface PacketStateAminoMsg {
|
|
@@ -289,13 +419,22 @@ export interface PacketStateAminoMsg {
|
|
|
289
419
|
* PacketId is an identifier for a unique Packet
|
|
290
420
|
* Source chains refer to packets by source port/channel
|
|
291
421
|
* Destination chains refer to packets by destination port/channel
|
|
422
|
+
* @name PacketId
|
|
423
|
+
* @package ibc.core.channel.v1
|
|
424
|
+
* @see proto type: ibc.core.channel.v1.PacketId
|
|
292
425
|
*/
|
|
293
426
|
export interface PacketId {
|
|
294
|
-
/**
|
|
427
|
+
/**
|
|
428
|
+
* channel port identifier
|
|
429
|
+
*/
|
|
295
430
|
portId: string;
|
|
296
|
-
/**
|
|
431
|
+
/**
|
|
432
|
+
* channel unique identifier
|
|
433
|
+
*/
|
|
297
434
|
channelId: string;
|
|
298
|
-
/**
|
|
435
|
+
/**
|
|
436
|
+
* packet sequence
|
|
437
|
+
*/
|
|
299
438
|
sequence: bigint;
|
|
300
439
|
}
|
|
301
440
|
export interface PacketIdProtoMsg {
|
|
@@ -306,13 +445,22 @@ export interface PacketIdProtoMsg {
|
|
|
306
445
|
* PacketId is an identifier for a unique Packet
|
|
307
446
|
* Source chains refer to packets by source port/channel
|
|
308
447
|
* Destination chains refer to packets by destination port/channel
|
|
448
|
+
* @name PacketIdAmino
|
|
449
|
+
* @package ibc.core.channel.v1
|
|
450
|
+
* @see proto type: ibc.core.channel.v1.PacketId
|
|
309
451
|
*/
|
|
310
452
|
export interface PacketIdAmino {
|
|
311
|
-
/**
|
|
453
|
+
/**
|
|
454
|
+
* channel port identifier
|
|
455
|
+
*/
|
|
312
456
|
port_id: string;
|
|
313
|
-
/**
|
|
457
|
+
/**
|
|
458
|
+
* channel unique identifier
|
|
459
|
+
*/
|
|
314
460
|
channel_id: string;
|
|
315
|
-
/**
|
|
461
|
+
/**
|
|
462
|
+
* packet sequence
|
|
463
|
+
*/
|
|
316
464
|
sequence: string;
|
|
317
465
|
}
|
|
318
466
|
export interface PacketIdAminoMsg {
|
|
@@ -327,6 +475,9 @@ export interface PacketIdAminoMsg {
|
|
|
327
475
|
* The first byte of any message with this format will be the non-ASCII values
|
|
328
476
|
* `0xaa` (result) or `0xb2` (error). Implemented as defined by ICS:
|
|
329
477
|
* https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#acknowledgement-envelope
|
|
478
|
+
* @name Acknowledgement
|
|
479
|
+
* @package ibc.core.channel.v1
|
|
480
|
+
* @see proto type: ibc.core.channel.v1.Acknowledgement
|
|
330
481
|
*/
|
|
331
482
|
export interface Acknowledgement {
|
|
332
483
|
result?: Uint8Array;
|
|
@@ -344,6 +495,9 @@ export interface AcknowledgementProtoMsg {
|
|
|
344
495
|
* The first byte of any message with this format will be the non-ASCII values
|
|
345
496
|
* `0xaa` (result) or `0xb2` (error). Implemented as defined by ICS:
|
|
346
497
|
* https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#acknowledgement-envelope
|
|
498
|
+
* @name AcknowledgementAmino
|
|
499
|
+
* @package ibc.core.channel.v1
|
|
500
|
+
* @see proto type: ibc.core.channel.v1.Acknowledgement
|
|
347
501
|
*/
|
|
348
502
|
export interface AcknowledgementAmino {
|
|
349
503
|
result?: string;
|
|
@@ -357,11 +511,18 @@ export interface AcknowledgementAminoMsg {
|
|
|
357
511
|
* Timeout defines an execution deadline structure for 04-channel handlers.
|
|
358
512
|
* This includes packet lifecycle handlers as well as the upgrade handshake handlers.
|
|
359
513
|
* A valid Timeout contains either one or both of a timestamp and block height (sequence).
|
|
514
|
+
* @name Timeout
|
|
515
|
+
* @package ibc.core.channel.v1
|
|
516
|
+
* @see proto type: ibc.core.channel.v1.Timeout
|
|
360
517
|
*/
|
|
361
518
|
export interface Timeout {
|
|
362
|
-
/**
|
|
519
|
+
/**
|
|
520
|
+
* block height after which the packet or upgrade times out
|
|
521
|
+
*/
|
|
363
522
|
height: Height;
|
|
364
|
-
/**
|
|
523
|
+
/**
|
|
524
|
+
* block timestamp (in nanoseconds) after which the packet or upgrade times out
|
|
525
|
+
*/
|
|
365
526
|
timestamp: bigint;
|
|
366
527
|
}
|
|
367
528
|
export interface TimeoutProtoMsg {
|
|
@@ -372,35 +533,64 @@ export interface TimeoutProtoMsg {
|
|
|
372
533
|
* Timeout defines an execution deadline structure for 04-channel handlers.
|
|
373
534
|
* This includes packet lifecycle handlers as well as the upgrade handshake handlers.
|
|
374
535
|
* A valid Timeout contains either one or both of a timestamp and block height (sequence).
|
|
536
|
+
* @name TimeoutAmino
|
|
537
|
+
* @package ibc.core.channel.v1
|
|
538
|
+
* @see proto type: ibc.core.channel.v1.Timeout
|
|
375
539
|
*/
|
|
376
540
|
export interface TimeoutAmino {
|
|
377
|
-
/**
|
|
541
|
+
/**
|
|
542
|
+
* block height after which the packet or upgrade times out
|
|
543
|
+
*/
|
|
378
544
|
height: HeightAmino;
|
|
379
|
-
/**
|
|
545
|
+
/**
|
|
546
|
+
* block timestamp (in nanoseconds) after which the packet or upgrade times out
|
|
547
|
+
*/
|
|
380
548
|
timestamp: string;
|
|
381
549
|
}
|
|
382
550
|
export interface TimeoutAminoMsg {
|
|
383
551
|
type: "cosmos-sdk/Timeout";
|
|
384
552
|
value: TimeoutAmino;
|
|
385
553
|
}
|
|
386
|
-
/**
|
|
554
|
+
/**
|
|
555
|
+
* Params defines the set of IBC channel parameters.
|
|
556
|
+
* @name Params
|
|
557
|
+
* @package ibc.core.channel.v1
|
|
558
|
+
* @see proto type: ibc.core.channel.v1.Params
|
|
559
|
+
*/
|
|
387
560
|
export interface Params {
|
|
388
|
-
/**
|
|
561
|
+
/**
|
|
562
|
+
* the relative timeout after which channel upgrades will time out.
|
|
563
|
+
*/
|
|
389
564
|
upgradeTimeout: Timeout;
|
|
390
565
|
}
|
|
391
566
|
export interface ParamsProtoMsg {
|
|
392
567
|
typeUrl: "/ibc.core.channel.v1.Params";
|
|
393
568
|
value: Uint8Array;
|
|
394
569
|
}
|
|
395
|
-
/**
|
|
570
|
+
/**
|
|
571
|
+
* Params defines the set of IBC channel parameters.
|
|
572
|
+
* @name ParamsAmino
|
|
573
|
+
* @package ibc.core.channel.v1
|
|
574
|
+
* @see proto type: ibc.core.channel.v1.Params
|
|
575
|
+
*/
|
|
396
576
|
export interface ParamsAmino {
|
|
397
|
-
/**
|
|
577
|
+
/**
|
|
578
|
+
* the relative timeout after which channel upgrades will time out.
|
|
579
|
+
*/
|
|
398
580
|
upgrade_timeout: TimeoutAmino;
|
|
399
581
|
}
|
|
400
582
|
export interface ParamsAminoMsg {
|
|
401
583
|
type: "cosmos-sdk/Params";
|
|
402
584
|
value: ParamsAmino;
|
|
403
585
|
}
|
|
586
|
+
/**
|
|
587
|
+
* Channel defines pipeline for exactly-once packet delivery between specific
|
|
588
|
+
* modules on separate blockchains, which has at least one end capable of
|
|
589
|
+
* sending packets and one end capable of receiving packets.
|
|
590
|
+
* @name Channel
|
|
591
|
+
* @package ibc.core.channel.v1
|
|
592
|
+
* @see proto type: ibc.core.channel.v1.Channel
|
|
593
|
+
*/
|
|
404
594
|
export declare const Channel: {
|
|
405
595
|
typeUrl: string;
|
|
406
596
|
aminoType: string;
|
|
@@ -418,6 +608,13 @@ export declare const Channel: {
|
|
|
418
608
|
toProtoMsg(message: Channel): ChannelProtoMsg;
|
|
419
609
|
registerTypeUrl(): void;
|
|
420
610
|
};
|
|
611
|
+
/**
|
|
612
|
+
* IdentifiedChannel defines a channel with additional port and channel
|
|
613
|
+
* identifier fields.
|
|
614
|
+
* @name IdentifiedChannel
|
|
615
|
+
* @package ibc.core.channel.v1
|
|
616
|
+
* @see proto type: ibc.core.channel.v1.IdentifiedChannel
|
|
617
|
+
*/
|
|
421
618
|
export declare const IdentifiedChannel: {
|
|
422
619
|
typeUrl: string;
|
|
423
620
|
aminoType: string;
|
|
@@ -435,6 +632,12 @@ export declare const IdentifiedChannel: {
|
|
|
435
632
|
toProtoMsg(message: IdentifiedChannel): IdentifiedChannelProtoMsg;
|
|
436
633
|
registerTypeUrl(): void;
|
|
437
634
|
};
|
|
635
|
+
/**
|
|
636
|
+
* Counterparty defines a channel end counterparty
|
|
637
|
+
* @name Counterparty
|
|
638
|
+
* @package ibc.core.channel.v1
|
|
639
|
+
* @see proto type: ibc.core.channel.v1.Counterparty
|
|
640
|
+
*/
|
|
438
641
|
export declare const Counterparty: {
|
|
439
642
|
typeUrl: string;
|
|
440
643
|
aminoType: string;
|
|
@@ -452,6 +655,12 @@ export declare const Counterparty: {
|
|
|
452
655
|
toProtoMsg(message: Counterparty): CounterpartyProtoMsg;
|
|
453
656
|
registerTypeUrl(): void;
|
|
454
657
|
};
|
|
658
|
+
/**
|
|
659
|
+
* Packet defines a type that carries data across different chains through IBC
|
|
660
|
+
* @name Packet
|
|
661
|
+
* @package ibc.core.channel.v1
|
|
662
|
+
* @see proto type: ibc.core.channel.v1.Packet
|
|
663
|
+
*/
|
|
455
664
|
export declare const Packet: {
|
|
456
665
|
typeUrl: string;
|
|
457
666
|
aminoType: string;
|
|
@@ -469,6 +678,15 @@ export declare const Packet: {
|
|
|
469
678
|
toProtoMsg(message: Packet): PacketProtoMsg;
|
|
470
679
|
registerTypeUrl(): void;
|
|
471
680
|
};
|
|
681
|
+
/**
|
|
682
|
+
* PacketState defines the generic type necessary to retrieve and store
|
|
683
|
+
* packet commitments, acknowledgements, and receipts.
|
|
684
|
+
* Caller is responsible for knowing the context necessary to interpret this
|
|
685
|
+
* state as a commitment, acknowledgement, or a receipt.
|
|
686
|
+
* @name PacketState
|
|
687
|
+
* @package ibc.core.channel.v1
|
|
688
|
+
* @see proto type: ibc.core.channel.v1.PacketState
|
|
689
|
+
*/
|
|
472
690
|
export declare const PacketState: {
|
|
473
691
|
typeUrl: string;
|
|
474
692
|
aminoType: string;
|
|
@@ -486,6 +704,14 @@ export declare const PacketState: {
|
|
|
486
704
|
toProtoMsg(message: PacketState): PacketStateProtoMsg;
|
|
487
705
|
registerTypeUrl(): void;
|
|
488
706
|
};
|
|
707
|
+
/**
|
|
708
|
+
* PacketId is an identifier for a unique Packet
|
|
709
|
+
* Source chains refer to packets by source port/channel
|
|
710
|
+
* Destination chains refer to packets by destination port/channel
|
|
711
|
+
* @name PacketId
|
|
712
|
+
* @package ibc.core.channel.v1
|
|
713
|
+
* @see proto type: ibc.core.channel.v1.PacketId
|
|
714
|
+
*/
|
|
489
715
|
export declare const PacketId: {
|
|
490
716
|
typeUrl: string;
|
|
491
717
|
aminoType: string;
|
|
@@ -503,6 +729,18 @@ export declare const PacketId: {
|
|
|
503
729
|
toProtoMsg(message: PacketId): PacketIdProtoMsg;
|
|
504
730
|
registerTypeUrl(): void;
|
|
505
731
|
};
|
|
732
|
+
/**
|
|
733
|
+
* Acknowledgement is the recommended acknowledgement format to be used by
|
|
734
|
+
* app-specific protocols.
|
|
735
|
+
* NOTE: The field numbers 21 and 22 were explicitly chosen to avoid accidental
|
|
736
|
+
* conflicts with other protobuf message formats used for acknowledgements.
|
|
737
|
+
* The first byte of any message with this format will be the non-ASCII values
|
|
738
|
+
* `0xaa` (result) or `0xb2` (error). Implemented as defined by ICS:
|
|
739
|
+
* https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#acknowledgement-envelope
|
|
740
|
+
* @name Acknowledgement
|
|
741
|
+
* @package ibc.core.channel.v1
|
|
742
|
+
* @see proto type: ibc.core.channel.v1.Acknowledgement
|
|
743
|
+
*/
|
|
506
744
|
export declare const Acknowledgement: {
|
|
507
745
|
typeUrl: string;
|
|
508
746
|
aminoType: string;
|
|
@@ -520,6 +758,14 @@ export declare const Acknowledgement: {
|
|
|
520
758
|
toProtoMsg(message: Acknowledgement): AcknowledgementProtoMsg;
|
|
521
759
|
registerTypeUrl(): void;
|
|
522
760
|
};
|
|
761
|
+
/**
|
|
762
|
+
* Timeout defines an execution deadline structure for 04-channel handlers.
|
|
763
|
+
* This includes packet lifecycle handlers as well as the upgrade handshake handlers.
|
|
764
|
+
* A valid Timeout contains either one or both of a timestamp and block height (sequence).
|
|
765
|
+
* @name Timeout
|
|
766
|
+
* @package ibc.core.channel.v1
|
|
767
|
+
* @see proto type: ibc.core.channel.v1.Timeout
|
|
768
|
+
*/
|
|
523
769
|
export declare const Timeout: {
|
|
524
770
|
typeUrl: string;
|
|
525
771
|
aminoType: string;
|
|
@@ -537,6 +783,12 @@ export declare const Timeout: {
|
|
|
537
783
|
toProtoMsg(message: Timeout): TimeoutProtoMsg;
|
|
538
784
|
registerTypeUrl(): void;
|
|
539
785
|
};
|
|
786
|
+
/**
|
|
787
|
+
* Params defines the set of IBC channel parameters.
|
|
788
|
+
* @name Params
|
|
789
|
+
* @package ibc.core.channel.v1
|
|
790
|
+
* @see proto type: ibc.core.channel.v1.Params
|
|
791
|
+
*/
|
|
540
792
|
export declare const Params: {
|
|
541
793
|
typeUrl: string;
|
|
542
794
|
aminoType: string;
|