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
|
@@ -27,18 +27,27 @@ export declare function stateToJSON(object: State): string;
|
|
|
27
27
|
* separate one.
|
|
28
28
|
* NOTE: there must only be 2 defined ConnectionEnds to establish
|
|
29
29
|
* a connection between two chains.
|
|
30
|
+
* @name ConnectionEnd
|
|
31
|
+
* @package ibc.core.connection.v1
|
|
32
|
+
* @see proto type: ibc.core.connection.v1.ConnectionEnd
|
|
30
33
|
*/
|
|
31
34
|
export interface ConnectionEnd {
|
|
32
|
-
/**
|
|
35
|
+
/**
|
|
36
|
+
* client associated with this connection.
|
|
37
|
+
*/
|
|
33
38
|
clientId: string;
|
|
34
39
|
/**
|
|
35
40
|
* IBC version which can be utilised to determine encodings or protocols for
|
|
36
41
|
* channels or packets utilising this connection.
|
|
37
42
|
*/
|
|
38
43
|
versions: Version[];
|
|
39
|
-
/**
|
|
44
|
+
/**
|
|
45
|
+
* current state of the connection end.
|
|
46
|
+
*/
|
|
40
47
|
state: State;
|
|
41
|
-
/**
|
|
48
|
+
/**
|
|
49
|
+
* counterparty chain associated with this connection.
|
|
50
|
+
*/
|
|
42
51
|
counterparty: Counterparty;
|
|
43
52
|
/**
|
|
44
53
|
* delay period that must pass before a consensus state can be used for
|
|
@@ -56,18 +65,27 @@ export interface ConnectionEndProtoMsg {
|
|
|
56
65
|
* separate one.
|
|
57
66
|
* NOTE: there must only be 2 defined ConnectionEnds to establish
|
|
58
67
|
* a connection between two chains.
|
|
68
|
+
* @name ConnectionEndAmino
|
|
69
|
+
* @package ibc.core.connection.v1
|
|
70
|
+
* @see proto type: ibc.core.connection.v1.ConnectionEnd
|
|
59
71
|
*/
|
|
60
72
|
export interface ConnectionEndAmino {
|
|
61
|
-
/**
|
|
73
|
+
/**
|
|
74
|
+
* client associated with this connection.
|
|
75
|
+
*/
|
|
62
76
|
client_id: string;
|
|
63
77
|
/**
|
|
64
78
|
* IBC version which can be utilised to determine encodings or protocols for
|
|
65
79
|
* channels or packets utilising this connection.
|
|
66
80
|
*/
|
|
67
81
|
versions: VersionAmino[];
|
|
68
|
-
/**
|
|
82
|
+
/**
|
|
83
|
+
* current state of the connection end.
|
|
84
|
+
*/
|
|
69
85
|
state: State;
|
|
70
|
-
/**
|
|
86
|
+
/**
|
|
87
|
+
* counterparty chain associated with this connection.
|
|
88
|
+
*/
|
|
71
89
|
counterparty: CounterpartyAmino;
|
|
72
90
|
/**
|
|
73
91
|
* delay period that must pass before a consensus state can be used for
|
|
@@ -83,22 +101,35 @@ export interface ConnectionEndAminoMsg {
|
|
|
83
101
|
/**
|
|
84
102
|
* IdentifiedConnection defines a connection with additional connection
|
|
85
103
|
* identifier field.
|
|
104
|
+
* @name IdentifiedConnection
|
|
105
|
+
* @package ibc.core.connection.v1
|
|
106
|
+
* @see proto type: ibc.core.connection.v1.IdentifiedConnection
|
|
86
107
|
*/
|
|
87
108
|
export interface IdentifiedConnection {
|
|
88
|
-
/**
|
|
109
|
+
/**
|
|
110
|
+
* connection identifier.
|
|
111
|
+
*/
|
|
89
112
|
id: string;
|
|
90
|
-
/**
|
|
113
|
+
/**
|
|
114
|
+
* client associated with this connection.
|
|
115
|
+
*/
|
|
91
116
|
clientId: string;
|
|
92
117
|
/**
|
|
93
118
|
* IBC version which can be utilised to determine encodings or protocols for
|
|
94
119
|
* channels or packets utilising this connection
|
|
95
120
|
*/
|
|
96
121
|
versions: Version[];
|
|
97
|
-
/**
|
|
122
|
+
/**
|
|
123
|
+
* current state of the connection end.
|
|
124
|
+
*/
|
|
98
125
|
state: State;
|
|
99
|
-
/**
|
|
126
|
+
/**
|
|
127
|
+
* counterparty chain associated with this connection.
|
|
128
|
+
*/
|
|
100
129
|
counterparty: Counterparty;
|
|
101
|
-
/**
|
|
130
|
+
/**
|
|
131
|
+
* delay period associated with this connection.
|
|
132
|
+
*/
|
|
102
133
|
delayPeriod: bigint;
|
|
103
134
|
}
|
|
104
135
|
export interface IdentifiedConnectionProtoMsg {
|
|
@@ -108,29 +139,47 @@ export interface IdentifiedConnectionProtoMsg {
|
|
|
108
139
|
/**
|
|
109
140
|
* IdentifiedConnection defines a connection with additional connection
|
|
110
141
|
* identifier field.
|
|
142
|
+
* @name IdentifiedConnectionAmino
|
|
143
|
+
* @package ibc.core.connection.v1
|
|
144
|
+
* @see proto type: ibc.core.connection.v1.IdentifiedConnection
|
|
111
145
|
*/
|
|
112
146
|
export interface IdentifiedConnectionAmino {
|
|
113
|
-
/**
|
|
147
|
+
/**
|
|
148
|
+
* connection identifier.
|
|
149
|
+
*/
|
|
114
150
|
id: string;
|
|
115
|
-
/**
|
|
151
|
+
/**
|
|
152
|
+
* client associated with this connection.
|
|
153
|
+
*/
|
|
116
154
|
client_id: string;
|
|
117
155
|
/**
|
|
118
156
|
* IBC version which can be utilised to determine encodings or protocols for
|
|
119
157
|
* channels or packets utilising this connection
|
|
120
158
|
*/
|
|
121
159
|
versions: VersionAmino[];
|
|
122
|
-
/**
|
|
160
|
+
/**
|
|
161
|
+
* current state of the connection end.
|
|
162
|
+
*/
|
|
123
163
|
state: State;
|
|
124
|
-
/**
|
|
164
|
+
/**
|
|
165
|
+
* counterparty chain associated with this connection.
|
|
166
|
+
*/
|
|
125
167
|
counterparty: CounterpartyAmino;
|
|
126
|
-
/**
|
|
168
|
+
/**
|
|
169
|
+
* delay period associated with this connection.
|
|
170
|
+
*/
|
|
127
171
|
delay_period: string;
|
|
128
172
|
}
|
|
129
173
|
export interface IdentifiedConnectionAminoMsg {
|
|
130
174
|
type: "cosmos-sdk/IdentifiedConnection";
|
|
131
175
|
value: IdentifiedConnectionAmino;
|
|
132
176
|
}
|
|
133
|
-
/**
|
|
177
|
+
/**
|
|
178
|
+
* Counterparty defines the counterparty chain associated with a connection end.
|
|
179
|
+
* @name Counterparty
|
|
180
|
+
* @package ibc.core.connection.v1
|
|
181
|
+
* @see proto type: ibc.core.connection.v1.Counterparty
|
|
182
|
+
*/
|
|
134
183
|
export interface Counterparty {
|
|
135
184
|
/**
|
|
136
185
|
* identifies the client on the counterparty chain associated with a given
|
|
@@ -142,14 +191,21 @@ export interface Counterparty {
|
|
|
142
191
|
* given connection.
|
|
143
192
|
*/
|
|
144
193
|
connectionId: string;
|
|
145
|
-
/**
|
|
194
|
+
/**
|
|
195
|
+
* commitment merkle prefix of the counterparty chain.
|
|
196
|
+
*/
|
|
146
197
|
prefix: MerklePrefix;
|
|
147
198
|
}
|
|
148
199
|
export interface CounterpartyProtoMsg {
|
|
149
200
|
typeUrl: "/ibc.core.connection.v1.Counterparty";
|
|
150
201
|
value: Uint8Array;
|
|
151
202
|
}
|
|
152
|
-
/**
|
|
203
|
+
/**
|
|
204
|
+
* Counterparty defines the counterparty chain associated with a connection end.
|
|
205
|
+
* @name CounterpartyAmino
|
|
206
|
+
* @package ibc.core.connection.v1
|
|
207
|
+
* @see proto type: ibc.core.connection.v1.Counterparty
|
|
208
|
+
*/
|
|
153
209
|
export interface CounterpartyAmino {
|
|
154
210
|
/**
|
|
155
211
|
* identifies the client on the counterparty chain associated with a given
|
|
@@ -161,47 +217,81 @@ export interface CounterpartyAmino {
|
|
|
161
217
|
* given connection.
|
|
162
218
|
*/
|
|
163
219
|
connection_id: string;
|
|
164
|
-
/**
|
|
220
|
+
/**
|
|
221
|
+
* commitment merkle prefix of the counterparty chain.
|
|
222
|
+
*/
|
|
165
223
|
prefix: MerklePrefixAmino;
|
|
166
224
|
}
|
|
167
225
|
export interface CounterpartyAminoMsg {
|
|
168
226
|
type: "cosmos-sdk/Counterparty";
|
|
169
227
|
value: CounterpartyAmino;
|
|
170
228
|
}
|
|
171
|
-
/**
|
|
229
|
+
/**
|
|
230
|
+
* ClientPaths define all the connection paths for a client state.
|
|
231
|
+
* @name ClientPaths
|
|
232
|
+
* @package ibc.core.connection.v1
|
|
233
|
+
* @see proto type: ibc.core.connection.v1.ClientPaths
|
|
234
|
+
*/
|
|
172
235
|
export interface ClientPaths {
|
|
173
|
-
/**
|
|
236
|
+
/**
|
|
237
|
+
* list of connection paths
|
|
238
|
+
*/
|
|
174
239
|
paths: string[];
|
|
175
240
|
}
|
|
176
241
|
export interface ClientPathsProtoMsg {
|
|
177
242
|
typeUrl: "/ibc.core.connection.v1.ClientPaths";
|
|
178
243
|
value: Uint8Array;
|
|
179
244
|
}
|
|
180
|
-
/**
|
|
245
|
+
/**
|
|
246
|
+
* ClientPaths define all the connection paths for a client state.
|
|
247
|
+
* @name ClientPathsAmino
|
|
248
|
+
* @package ibc.core.connection.v1
|
|
249
|
+
* @see proto type: ibc.core.connection.v1.ClientPaths
|
|
250
|
+
*/
|
|
181
251
|
export interface ClientPathsAmino {
|
|
182
|
-
/**
|
|
252
|
+
/**
|
|
253
|
+
* list of connection paths
|
|
254
|
+
*/
|
|
183
255
|
paths: string[];
|
|
184
256
|
}
|
|
185
257
|
export interface ClientPathsAminoMsg {
|
|
186
258
|
type: "cosmos-sdk/ClientPaths";
|
|
187
259
|
value: ClientPathsAmino;
|
|
188
260
|
}
|
|
189
|
-
/**
|
|
261
|
+
/**
|
|
262
|
+
* ConnectionPaths define all the connection paths for a given client state.
|
|
263
|
+
* @name ConnectionPaths
|
|
264
|
+
* @package ibc.core.connection.v1
|
|
265
|
+
* @see proto type: ibc.core.connection.v1.ConnectionPaths
|
|
266
|
+
*/
|
|
190
267
|
export interface ConnectionPaths {
|
|
191
|
-
/**
|
|
268
|
+
/**
|
|
269
|
+
* client state unique identifier
|
|
270
|
+
*/
|
|
192
271
|
clientId: string;
|
|
193
|
-
/**
|
|
272
|
+
/**
|
|
273
|
+
* list of connection paths
|
|
274
|
+
*/
|
|
194
275
|
paths: string[];
|
|
195
276
|
}
|
|
196
277
|
export interface ConnectionPathsProtoMsg {
|
|
197
278
|
typeUrl: "/ibc.core.connection.v1.ConnectionPaths";
|
|
198
279
|
value: Uint8Array;
|
|
199
280
|
}
|
|
200
|
-
/**
|
|
281
|
+
/**
|
|
282
|
+
* ConnectionPaths define all the connection paths for a given client state.
|
|
283
|
+
* @name ConnectionPathsAmino
|
|
284
|
+
* @package ibc.core.connection.v1
|
|
285
|
+
* @see proto type: ibc.core.connection.v1.ConnectionPaths
|
|
286
|
+
*/
|
|
201
287
|
export interface ConnectionPathsAmino {
|
|
202
|
-
/**
|
|
288
|
+
/**
|
|
289
|
+
* client state unique identifier
|
|
290
|
+
*/
|
|
203
291
|
client_id: string;
|
|
204
|
-
/**
|
|
292
|
+
/**
|
|
293
|
+
* list of connection paths
|
|
294
|
+
*/
|
|
205
295
|
paths: string[];
|
|
206
296
|
}
|
|
207
297
|
export interface ConnectionPathsAminoMsg {
|
|
@@ -211,11 +301,18 @@ export interface ConnectionPathsAminoMsg {
|
|
|
211
301
|
/**
|
|
212
302
|
* Version defines the versioning scheme used to negotiate the IBC version in
|
|
213
303
|
* the connection handshake.
|
|
304
|
+
* @name Version
|
|
305
|
+
* @package ibc.core.connection.v1
|
|
306
|
+
* @see proto type: ibc.core.connection.v1.Version
|
|
214
307
|
*/
|
|
215
308
|
export interface Version {
|
|
216
|
-
/**
|
|
309
|
+
/**
|
|
310
|
+
* unique version identifier
|
|
311
|
+
*/
|
|
217
312
|
identifier: string;
|
|
218
|
-
/**
|
|
313
|
+
/**
|
|
314
|
+
* list of features compatible with the specified identifier
|
|
315
|
+
*/
|
|
219
316
|
features: string[];
|
|
220
317
|
}
|
|
221
318
|
export interface VersionProtoMsg {
|
|
@@ -225,18 +322,30 @@ export interface VersionProtoMsg {
|
|
|
225
322
|
/**
|
|
226
323
|
* Version defines the versioning scheme used to negotiate the IBC version in
|
|
227
324
|
* the connection handshake.
|
|
325
|
+
* @name VersionAmino
|
|
326
|
+
* @package ibc.core.connection.v1
|
|
327
|
+
* @see proto type: ibc.core.connection.v1.Version
|
|
228
328
|
*/
|
|
229
329
|
export interface VersionAmino {
|
|
230
|
-
/**
|
|
330
|
+
/**
|
|
331
|
+
* unique version identifier
|
|
332
|
+
*/
|
|
231
333
|
identifier: string;
|
|
232
|
-
/**
|
|
334
|
+
/**
|
|
335
|
+
* list of features compatible with the specified identifier
|
|
336
|
+
*/
|
|
233
337
|
features: string[];
|
|
234
338
|
}
|
|
235
339
|
export interface VersionAminoMsg {
|
|
236
340
|
type: "cosmos-sdk/Version";
|
|
237
341
|
value: VersionAmino;
|
|
238
342
|
}
|
|
239
|
-
/**
|
|
343
|
+
/**
|
|
344
|
+
* Params defines the set of Connection parameters.
|
|
345
|
+
* @name Params
|
|
346
|
+
* @package ibc.core.connection.v1
|
|
347
|
+
* @see proto type: ibc.core.connection.v1.Params
|
|
348
|
+
*/
|
|
240
349
|
export interface Params {
|
|
241
350
|
/**
|
|
242
351
|
* maximum expected time per block (in nanoseconds), used to enforce block delay. This parameter should reflect the
|
|
@@ -249,7 +358,12 @@ export interface ParamsProtoMsg {
|
|
|
249
358
|
typeUrl: "/ibc.core.connection.v1.Params";
|
|
250
359
|
value: Uint8Array;
|
|
251
360
|
}
|
|
252
|
-
/**
|
|
361
|
+
/**
|
|
362
|
+
* Params defines the set of Connection parameters.
|
|
363
|
+
* @name ParamsAmino
|
|
364
|
+
* @package ibc.core.connection.v1
|
|
365
|
+
* @see proto type: ibc.core.connection.v1.Params
|
|
366
|
+
*/
|
|
253
367
|
export interface ParamsAmino {
|
|
254
368
|
/**
|
|
255
369
|
* maximum expected time per block (in nanoseconds), used to enforce block delay. This parameter should reflect the
|
|
@@ -262,6 +376,15 @@ export interface ParamsAminoMsg {
|
|
|
262
376
|
type: "cosmos-sdk/Params";
|
|
263
377
|
value: ParamsAmino;
|
|
264
378
|
}
|
|
379
|
+
/**
|
|
380
|
+
* ConnectionEnd defines a stateful object on a chain connected to another
|
|
381
|
+
* separate one.
|
|
382
|
+
* NOTE: there must only be 2 defined ConnectionEnds to establish
|
|
383
|
+
* a connection between two chains.
|
|
384
|
+
* @name ConnectionEnd
|
|
385
|
+
* @package ibc.core.connection.v1
|
|
386
|
+
* @see proto type: ibc.core.connection.v1.ConnectionEnd
|
|
387
|
+
*/
|
|
265
388
|
export declare const ConnectionEnd: {
|
|
266
389
|
typeUrl: string;
|
|
267
390
|
aminoType: string;
|
|
@@ -279,6 +402,13 @@ export declare const ConnectionEnd: {
|
|
|
279
402
|
toProtoMsg(message: ConnectionEnd): ConnectionEndProtoMsg;
|
|
280
403
|
registerTypeUrl(): void;
|
|
281
404
|
};
|
|
405
|
+
/**
|
|
406
|
+
* IdentifiedConnection defines a connection with additional connection
|
|
407
|
+
* identifier field.
|
|
408
|
+
* @name IdentifiedConnection
|
|
409
|
+
* @package ibc.core.connection.v1
|
|
410
|
+
* @see proto type: ibc.core.connection.v1.IdentifiedConnection
|
|
411
|
+
*/
|
|
282
412
|
export declare const IdentifiedConnection: {
|
|
283
413
|
typeUrl: string;
|
|
284
414
|
aminoType: string;
|
|
@@ -296,6 +426,12 @@ export declare const IdentifiedConnection: {
|
|
|
296
426
|
toProtoMsg(message: IdentifiedConnection): IdentifiedConnectionProtoMsg;
|
|
297
427
|
registerTypeUrl(): void;
|
|
298
428
|
};
|
|
429
|
+
/**
|
|
430
|
+
* Counterparty defines the counterparty chain associated with a connection end.
|
|
431
|
+
* @name Counterparty
|
|
432
|
+
* @package ibc.core.connection.v1
|
|
433
|
+
* @see proto type: ibc.core.connection.v1.Counterparty
|
|
434
|
+
*/
|
|
299
435
|
export declare const Counterparty: {
|
|
300
436
|
typeUrl: string;
|
|
301
437
|
aminoType: string;
|
|
@@ -313,6 +449,12 @@ export declare const Counterparty: {
|
|
|
313
449
|
toProtoMsg(message: Counterparty): CounterpartyProtoMsg;
|
|
314
450
|
registerTypeUrl(): void;
|
|
315
451
|
};
|
|
452
|
+
/**
|
|
453
|
+
* ClientPaths define all the connection paths for a client state.
|
|
454
|
+
* @name ClientPaths
|
|
455
|
+
* @package ibc.core.connection.v1
|
|
456
|
+
* @see proto type: ibc.core.connection.v1.ClientPaths
|
|
457
|
+
*/
|
|
316
458
|
export declare const ClientPaths: {
|
|
317
459
|
typeUrl: string;
|
|
318
460
|
aminoType: string;
|
|
@@ -330,6 +472,12 @@ export declare const ClientPaths: {
|
|
|
330
472
|
toProtoMsg(message: ClientPaths): ClientPathsProtoMsg;
|
|
331
473
|
registerTypeUrl(): void;
|
|
332
474
|
};
|
|
475
|
+
/**
|
|
476
|
+
* ConnectionPaths define all the connection paths for a given client state.
|
|
477
|
+
* @name ConnectionPaths
|
|
478
|
+
* @package ibc.core.connection.v1
|
|
479
|
+
* @see proto type: ibc.core.connection.v1.ConnectionPaths
|
|
480
|
+
*/
|
|
333
481
|
export declare const ConnectionPaths: {
|
|
334
482
|
typeUrl: string;
|
|
335
483
|
aminoType: string;
|
|
@@ -347,6 +495,13 @@ export declare const ConnectionPaths: {
|
|
|
347
495
|
toProtoMsg(message: ConnectionPaths): ConnectionPathsProtoMsg;
|
|
348
496
|
registerTypeUrl(): void;
|
|
349
497
|
};
|
|
498
|
+
/**
|
|
499
|
+
* Version defines the versioning scheme used to negotiate the IBC version in
|
|
500
|
+
* the connection handshake.
|
|
501
|
+
* @name Version
|
|
502
|
+
* @package ibc.core.connection.v1
|
|
503
|
+
* @see proto type: ibc.core.connection.v1.Version
|
|
504
|
+
*/
|
|
350
505
|
export declare const Version: {
|
|
351
506
|
typeUrl: string;
|
|
352
507
|
aminoType: string;
|
|
@@ -364,6 +519,12 @@ export declare const Version: {
|
|
|
364
519
|
toProtoMsg(message: Version): VersionProtoMsg;
|
|
365
520
|
registerTypeUrl(): void;
|
|
366
521
|
};
|
|
522
|
+
/**
|
|
523
|
+
* Params defines the set of Connection parameters.
|
|
524
|
+
* @name Params
|
|
525
|
+
* @package ibc.core.connection.v1
|
|
526
|
+
* @see proto type: ibc.core.connection.v1.Params
|
|
527
|
+
*/
|
|
367
528
|
export declare const Params: {
|
|
368
529
|
typeUrl: string;
|
|
369
530
|
aminoType: string;
|
|
@@ -71,6 +71,15 @@ function createBaseConnectionEnd() {
|
|
|
71
71
|
delayPeriod: BigInt(0)
|
|
72
72
|
};
|
|
73
73
|
}
|
|
74
|
+
/**
|
|
75
|
+
* ConnectionEnd defines a stateful object on a chain connected to another
|
|
76
|
+
* separate one.
|
|
77
|
+
* NOTE: there must only be 2 defined ConnectionEnds to establish
|
|
78
|
+
* a connection between two chains.
|
|
79
|
+
* @name ConnectionEnd
|
|
80
|
+
* @package ibc.core.connection.v1
|
|
81
|
+
* @see proto type: ibc.core.connection.v1.ConnectionEnd
|
|
82
|
+
*/
|
|
74
83
|
exports.ConnectionEnd = {
|
|
75
84
|
typeUrl: "/ibc.core.connection.v1.ConnectionEnd",
|
|
76
85
|
aminoType: "cosmos-sdk/ConnectionEnd",
|
|
@@ -206,6 +215,13 @@ function createBaseIdentifiedConnection() {
|
|
|
206
215
|
delayPeriod: BigInt(0)
|
|
207
216
|
};
|
|
208
217
|
}
|
|
218
|
+
/**
|
|
219
|
+
* IdentifiedConnection defines a connection with additional connection
|
|
220
|
+
* identifier field.
|
|
221
|
+
* @name IdentifiedConnection
|
|
222
|
+
* @package ibc.core.connection.v1
|
|
223
|
+
* @see proto type: ibc.core.connection.v1.IdentifiedConnection
|
|
224
|
+
*/
|
|
209
225
|
exports.IdentifiedConnection = {
|
|
210
226
|
typeUrl: "/ibc.core.connection.v1.IdentifiedConnection",
|
|
211
227
|
aminoType: "cosmos-sdk/IdentifiedConnection",
|
|
@@ -349,6 +365,12 @@ function createBaseCounterparty() {
|
|
|
349
365
|
prefix: commitment_1.MerklePrefix.fromPartial({})
|
|
350
366
|
};
|
|
351
367
|
}
|
|
368
|
+
/**
|
|
369
|
+
* Counterparty defines the counterparty chain associated with a connection end.
|
|
370
|
+
* @name Counterparty
|
|
371
|
+
* @package ibc.core.connection.v1
|
|
372
|
+
* @see proto type: ibc.core.connection.v1.Counterparty
|
|
373
|
+
*/
|
|
352
374
|
exports.Counterparty = {
|
|
353
375
|
typeUrl: "/ibc.core.connection.v1.Counterparty",
|
|
354
376
|
aminoType: "cosmos-sdk/Counterparty",
|
|
@@ -453,6 +475,12 @@ function createBaseClientPaths() {
|
|
|
453
475
|
paths: []
|
|
454
476
|
};
|
|
455
477
|
}
|
|
478
|
+
/**
|
|
479
|
+
* ClientPaths define all the connection paths for a client state.
|
|
480
|
+
* @name ClientPaths
|
|
481
|
+
* @package ibc.core.connection.v1
|
|
482
|
+
* @see proto type: ibc.core.connection.v1.ClientPaths
|
|
483
|
+
*/
|
|
456
484
|
exports.ClientPaths = {
|
|
457
485
|
typeUrl: "/ibc.core.connection.v1.ClientPaths",
|
|
458
486
|
aminoType: "cosmos-sdk/ClientPaths",
|
|
@@ -534,6 +562,12 @@ function createBaseConnectionPaths() {
|
|
|
534
562
|
paths: []
|
|
535
563
|
};
|
|
536
564
|
}
|
|
565
|
+
/**
|
|
566
|
+
* ConnectionPaths define all the connection paths for a given client state.
|
|
567
|
+
* @name ConnectionPaths
|
|
568
|
+
* @package ibc.core.connection.v1
|
|
569
|
+
* @see proto type: ibc.core.connection.v1.ConnectionPaths
|
|
570
|
+
*/
|
|
537
571
|
exports.ConnectionPaths = {
|
|
538
572
|
typeUrl: "/ibc.core.connection.v1.ConnectionPaths",
|
|
539
573
|
aminoType: "cosmos-sdk/ConnectionPaths",
|
|
@@ -626,6 +660,13 @@ function createBaseVersion() {
|
|
|
626
660
|
features: []
|
|
627
661
|
};
|
|
628
662
|
}
|
|
663
|
+
/**
|
|
664
|
+
* Version defines the versioning scheme used to negotiate the IBC version in
|
|
665
|
+
* the connection handshake.
|
|
666
|
+
* @name Version
|
|
667
|
+
* @package ibc.core.connection.v1
|
|
668
|
+
* @see proto type: ibc.core.connection.v1.Version
|
|
669
|
+
*/
|
|
629
670
|
exports.Version = {
|
|
630
671
|
typeUrl: "/ibc.core.connection.v1.Version",
|
|
631
672
|
aminoType: "cosmos-sdk/Version",
|
|
@@ -717,6 +758,12 @@ function createBaseParams() {
|
|
|
717
758
|
maxExpectedTimePerBlock: BigInt(0)
|
|
718
759
|
};
|
|
719
760
|
}
|
|
761
|
+
/**
|
|
762
|
+
* Params defines the set of Connection parameters.
|
|
763
|
+
* @name Params
|
|
764
|
+
* @package ibc.core.connection.v1
|
|
765
|
+
* @see proto type: ibc.core.connection.v1.Params
|
|
766
|
+
*/
|
|
720
767
|
exports.Params = {
|
|
721
768
|
typeUrl: "/ibc.core.connection.v1.Params",
|
|
722
769
|
aminoType: "cosmos-sdk/Params",
|