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
|
@@ -3,80 +3,175 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.pruneAcknowledgements = exports.updateChannelParams = exports.channelUpgradeCancel = exports.channelUpgradeTimeout = exports.channelUpgradeOpen = exports.channelUpgradeConfirm = exports.channelUpgradeAck = exports.channelUpgradeTry = exports.channelUpgradeInit = exports.acknowledgement = exports.timeoutOnClose = exports.timeout = exports.recvPacket = exports.channelCloseConfirm = exports.channelCloseInit = exports.channelOpenConfirm = exports.channelOpenAck = exports.channelOpenTry = exports.channelOpenInit = void 0;
|
|
4
4
|
const helper_func_types_1 = require("../../../../helper-func-types");
|
|
5
5
|
const tx_1 = require("./tx");
|
|
6
|
-
|
|
6
|
+
/**
|
|
7
|
+
* ChannelOpenInit defines a rpc handler method for MsgChannelOpenInit.
|
|
8
|
+
* @name channelOpenInit
|
|
9
|
+
* @package ibc.core.channel.v1
|
|
10
|
+
* @see proto service: ibc.core.channel.v1.ChannelOpenInit
|
|
11
|
+
*/
|
|
7
12
|
exports.channelOpenInit = (0, helper_func_types_1.buildTx)({
|
|
8
13
|
msg: tx_1.MsgChannelOpenInit
|
|
9
14
|
});
|
|
10
|
-
|
|
15
|
+
/**
|
|
16
|
+
* ChannelOpenTry defines a rpc handler method for MsgChannelOpenTry.
|
|
17
|
+
* @name channelOpenTry
|
|
18
|
+
* @package ibc.core.channel.v1
|
|
19
|
+
* @see proto service: ibc.core.channel.v1.ChannelOpenTry
|
|
20
|
+
*/
|
|
11
21
|
exports.channelOpenTry = (0, helper_func_types_1.buildTx)({
|
|
12
22
|
msg: tx_1.MsgChannelOpenTry
|
|
13
23
|
});
|
|
14
|
-
|
|
24
|
+
/**
|
|
25
|
+
* ChannelOpenAck defines a rpc handler method for MsgChannelOpenAck.
|
|
26
|
+
* @name channelOpenAck
|
|
27
|
+
* @package ibc.core.channel.v1
|
|
28
|
+
* @see proto service: ibc.core.channel.v1.ChannelOpenAck
|
|
29
|
+
*/
|
|
15
30
|
exports.channelOpenAck = (0, helper_func_types_1.buildTx)({
|
|
16
31
|
msg: tx_1.MsgChannelOpenAck
|
|
17
32
|
});
|
|
18
|
-
|
|
33
|
+
/**
|
|
34
|
+
* ChannelOpenConfirm defines a rpc handler method for MsgChannelOpenConfirm.
|
|
35
|
+
* @name channelOpenConfirm
|
|
36
|
+
* @package ibc.core.channel.v1
|
|
37
|
+
* @see proto service: ibc.core.channel.v1.ChannelOpenConfirm
|
|
38
|
+
*/
|
|
19
39
|
exports.channelOpenConfirm = (0, helper_func_types_1.buildTx)({
|
|
20
40
|
msg: tx_1.MsgChannelOpenConfirm
|
|
21
41
|
});
|
|
22
|
-
|
|
42
|
+
/**
|
|
43
|
+
* ChannelCloseInit defines a rpc handler method for MsgChannelCloseInit.
|
|
44
|
+
* @name channelCloseInit
|
|
45
|
+
* @package ibc.core.channel.v1
|
|
46
|
+
* @see proto service: ibc.core.channel.v1.ChannelCloseInit
|
|
47
|
+
*/
|
|
23
48
|
exports.channelCloseInit = (0, helper_func_types_1.buildTx)({
|
|
24
49
|
msg: tx_1.MsgChannelCloseInit
|
|
25
50
|
});
|
|
26
|
-
|
|
27
|
-
|
|
51
|
+
/**
|
|
52
|
+
* ChannelCloseConfirm defines a rpc handler method for
|
|
53
|
+
* MsgChannelCloseConfirm.
|
|
54
|
+
* @name channelCloseConfirm
|
|
55
|
+
* @package ibc.core.channel.v1
|
|
56
|
+
* @see proto service: ibc.core.channel.v1.ChannelCloseConfirm
|
|
57
|
+
*/
|
|
28
58
|
exports.channelCloseConfirm = (0, helper_func_types_1.buildTx)({
|
|
29
59
|
msg: tx_1.MsgChannelCloseConfirm
|
|
30
60
|
});
|
|
31
|
-
|
|
61
|
+
/**
|
|
62
|
+
* RecvPacket defines a rpc handler method for MsgRecvPacket.
|
|
63
|
+
* @name recvPacket
|
|
64
|
+
* @package ibc.core.channel.v1
|
|
65
|
+
* @see proto service: ibc.core.channel.v1.RecvPacket
|
|
66
|
+
*/
|
|
32
67
|
exports.recvPacket = (0, helper_func_types_1.buildTx)({
|
|
33
68
|
msg: tx_1.MsgRecvPacket
|
|
34
69
|
});
|
|
35
|
-
|
|
70
|
+
/**
|
|
71
|
+
* Timeout defines a rpc handler method for MsgTimeout.
|
|
72
|
+
* @name timeout
|
|
73
|
+
* @package ibc.core.channel.v1
|
|
74
|
+
* @see proto service: ibc.core.channel.v1.Timeout
|
|
75
|
+
*/
|
|
36
76
|
exports.timeout = (0, helper_func_types_1.buildTx)({
|
|
37
77
|
msg: tx_1.MsgTimeout
|
|
38
78
|
});
|
|
39
|
-
|
|
79
|
+
/**
|
|
80
|
+
* TimeoutOnClose defines a rpc handler method for MsgTimeoutOnClose.
|
|
81
|
+
* @name timeoutOnClose
|
|
82
|
+
* @package ibc.core.channel.v1
|
|
83
|
+
* @see proto service: ibc.core.channel.v1.TimeoutOnClose
|
|
84
|
+
*/
|
|
40
85
|
exports.timeoutOnClose = (0, helper_func_types_1.buildTx)({
|
|
41
86
|
msg: tx_1.MsgTimeoutOnClose
|
|
42
87
|
});
|
|
43
|
-
|
|
88
|
+
/**
|
|
89
|
+
* Acknowledgement defines a rpc handler method for MsgAcknowledgement.
|
|
90
|
+
* @name acknowledgement
|
|
91
|
+
* @package ibc.core.channel.v1
|
|
92
|
+
* @see proto service: ibc.core.channel.v1.Acknowledgement
|
|
93
|
+
*/
|
|
44
94
|
exports.acknowledgement = (0, helper_func_types_1.buildTx)({
|
|
45
95
|
msg: tx_1.MsgAcknowledgement
|
|
46
96
|
});
|
|
47
|
-
|
|
97
|
+
/**
|
|
98
|
+
* ChannelUpgradeInit defines a rpc handler method for MsgChannelUpgradeInit.
|
|
99
|
+
* @name channelUpgradeInit
|
|
100
|
+
* @package ibc.core.channel.v1
|
|
101
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeInit
|
|
102
|
+
*/
|
|
48
103
|
exports.channelUpgradeInit = (0, helper_func_types_1.buildTx)({
|
|
49
104
|
msg: tx_1.MsgChannelUpgradeInit
|
|
50
105
|
});
|
|
51
|
-
|
|
106
|
+
/**
|
|
107
|
+
* ChannelUpgradeTry defines a rpc handler method for MsgChannelUpgradeTry.
|
|
108
|
+
* @name channelUpgradeTry
|
|
109
|
+
* @package ibc.core.channel.v1
|
|
110
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeTry
|
|
111
|
+
*/
|
|
52
112
|
exports.channelUpgradeTry = (0, helper_func_types_1.buildTx)({
|
|
53
113
|
msg: tx_1.MsgChannelUpgradeTry
|
|
54
114
|
});
|
|
55
|
-
|
|
115
|
+
/**
|
|
116
|
+
* ChannelUpgradeAck defines a rpc handler method for MsgChannelUpgradeAck.
|
|
117
|
+
* @name channelUpgradeAck
|
|
118
|
+
* @package ibc.core.channel.v1
|
|
119
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeAck
|
|
120
|
+
*/
|
|
56
121
|
exports.channelUpgradeAck = (0, helper_func_types_1.buildTx)({
|
|
57
122
|
msg: tx_1.MsgChannelUpgradeAck
|
|
58
123
|
});
|
|
59
|
-
|
|
124
|
+
/**
|
|
125
|
+
* ChannelUpgradeConfirm defines a rpc handler method for MsgChannelUpgradeConfirm.
|
|
126
|
+
* @name channelUpgradeConfirm
|
|
127
|
+
* @package ibc.core.channel.v1
|
|
128
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeConfirm
|
|
129
|
+
*/
|
|
60
130
|
exports.channelUpgradeConfirm = (0, helper_func_types_1.buildTx)({
|
|
61
131
|
msg: tx_1.MsgChannelUpgradeConfirm
|
|
62
132
|
});
|
|
63
|
-
|
|
133
|
+
/**
|
|
134
|
+
* ChannelUpgradeOpen defines a rpc handler method for MsgChannelUpgradeOpen.
|
|
135
|
+
* @name channelUpgradeOpen
|
|
136
|
+
* @package ibc.core.channel.v1
|
|
137
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeOpen
|
|
138
|
+
*/
|
|
64
139
|
exports.channelUpgradeOpen = (0, helper_func_types_1.buildTx)({
|
|
65
140
|
msg: tx_1.MsgChannelUpgradeOpen
|
|
66
141
|
});
|
|
67
|
-
|
|
142
|
+
/**
|
|
143
|
+
* ChannelUpgradeTimeout defines a rpc handler method for MsgChannelUpgradeTimeout.
|
|
144
|
+
* @name channelUpgradeTimeout
|
|
145
|
+
* @package ibc.core.channel.v1
|
|
146
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeTimeout
|
|
147
|
+
*/
|
|
68
148
|
exports.channelUpgradeTimeout = (0, helper_func_types_1.buildTx)({
|
|
69
149
|
msg: tx_1.MsgChannelUpgradeTimeout
|
|
70
150
|
});
|
|
71
|
-
|
|
151
|
+
/**
|
|
152
|
+
* ChannelUpgradeCancel defines a rpc handler method for MsgChannelUpgradeCancel.
|
|
153
|
+
* @name channelUpgradeCancel
|
|
154
|
+
* @package ibc.core.channel.v1
|
|
155
|
+
* @see proto service: ibc.core.channel.v1.ChannelUpgradeCancel
|
|
156
|
+
*/
|
|
72
157
|
exports.channelUpgradeCancel = (0, helper_func_types_1.buildTx)({
|
|
73
158
|
msg: tx_1.MsgChannelUpgradeCancel
|
|
74
159
|
});
|
|
75
|
-
|
|
160
|
+
/**
|
|
161
|
+
* UpdateChannelParams defines a rpc handler method for MsgUpdateParams.
|
|
162
|
+
* @name updateChannelParams
|
|
163
|
+
* @package ibc.core.channel.v1
|
|
164
|
+
* @see proto service: ibc.core.channel.v1.UpdateChannelParams
|
|
165
|
+
*/
|
|
76
166
|
exports.updateChannelParams = (0, helper_func_types_1.buildTx)({
|
|
77
167
|
msg: tx_1.MsgUpdateParams
|
|
78
168
|
});
|
|
79
|
-
|
|
169
|
+
/**
|
|
170
|
+
* PruneAcknowledgements defines a rpc handler method for MsgPruneAcknowledgements.
|
|
171
|
+
* @name pruneAcknowledgements
|
|
172
|
+
* @package ibc.core.channel.v1
|
|
173
|
+
* @see proto service: ibc.core.channel.v1.PruneAcknowledgements
|
|
174
|
+
*/
|
|
80
175
|
exports.pruneAcknowledgements = (0, helper_func_types_1.buildTx)({
|
|
81
176
|
msg: tx_1.MsgPruneAcknowledgements
|
|
82
177
|
});
|
|
@@ -7,6 +7,9 @@ import { DeepPartial } from "../../../../helpers";
|
|
|
7
7
|
* end, the timeout for this upgrade attempt and the next packet sequence
|
|
8
8
|
* which allows the counterparty to efficiently know the highest sequence it has received.
|
|
9
9
|
* The next sequence send is used for pruning and upgrading from unordered to ordered channels.
|
|
10
|
+
* @name Upgrade
|
|
11
|
+
* @package ibc.core.channel.v1
|
|
12
|
+
* @see proto type: ibc.core.channel.v1.Upgrade
|
|
10
13
|
*/
|
|
11
14
|
export interface Upgrade {
|
|
12
15
|
fields: UpgradeFields;
|
|
@@ -23,6 +26,9 @@ export interface UpgradeProtoMsg {
|
|
|
23
26
|
* end, the timeout for this upgrade attempt and the next packet sequence
|
|
24
27
|
* which allows the counterparty to efficiently know the highest sequence it has received.
|
|
25
28
|
* The next sequence send is used for pruning and upgrading from unordered to ordered channels.
|
|
29
|
+
* @name UpgradeAmino
|
|
30
|
+
* @package ibc.core.channel.v1
|
|
31
|
+
* @see proto type: ibc.core.channel.v1.Upgrade
|
|
26
32
|
*/
|
|
27
33
|
export interface UpgradeAmino {
|
|
28
34
|
fields: UpgradeFieldsAmino;
|
|
@@ -36,6 +42,9 @@ export interface UpgradeAminoMsg {
|
|
|
36
42
|
/**
|
|
37
43
|
* UpgradeFields are the fields in a channel end which may be changed
|
|
38
44
|
* during a channel upgrade.
|
|
45
|
+
* @name UpgradeFields
|
|
46
|
+
* @package ibc.core.channel.v1
|
|
47
|
+
* @see proto type: ibc.core.channel.v1.UpgradeFields
|
|
39
48
|
*/
|
|
40
49
|
export interface UpgradeFields {
|
|
41
50
|
ordering: Order;
|
|
@@ -49,6 +58,9 @@ export interface UpgradeFieldsProtoMsg {
|
|
|
49
58
|
/**
|
|
50
59
|
* UpgradeFields are the fields in a channel end which may be changed
|
|
51
60
|
* during a channel upgrade.
|
|
61
|
+
* @name UpgradeFieldsAmino
|
|
62
|
+
* @package ibc.core.channel.v1
|
|
63
|
+
* @see proto type: ibc.core.channel.v1.UpgradeFields
|
|
52
64
|
*/
|
|
53
65
|
export interface UpgradeFieldsAmino {
|
|
54
66
|
ordering: Order;
|
|
@@ -63,11 +75,18 @@ export interface UpgradeFieldsAminoMsg {
|
|
|
63
75
|
* ErrorReceipt defines a type which encapsulates the upgrade sequence and error associated with the
|
|
64
76
|
* upgrade handshake failure. When a channel upgrade handshake is aborted both chains are expected to increment to the
|
|
65
77
|
* next sequence.
|
|
78
|
+
* @name ErrorReceipt
|
|
79
|
+
* @package ibc.core.channel.v1
|
|
80
|
+
* @see proto type: ibc.core.channel.v1.ErrorReceipt
|
|
66
81
|
*/
|
|
67
82
|
export interface ErrorReceipt {
|
|
68
|
-
/**
|
|
83
|
+
/**
|
|
84
|
+
* the channel upgrade sequence
|
|
85
|
+
*/
|
|
69
86
|
sequence: bigint;
|
|
70
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* the error message detailing the cause of failure
|
|
89
|
+
*/
|
|
71
90
|
message: string;
|
|
72
91
|
}
|
|
73
92
|
export interface ErrorReceiptProtoMsg {
|
|
@@ -78,17 +97,34 @@ export interface ErrorReceiptProtoMsg {
|
|
|
78
97
|
* ErrorReceipt defines a type which encapsulates the upgrade sequence and error associated with the
|
|
79
98
|
* upgrade handshake failure. When a channel upgrade handshake is aborted both chains are expected to increment to the
|
|
80
99
|
* next sequence.
|
|
100
|
+
* @name ErrorReceiptAmino
|
|
101
|
+
* @package ibc.core.channel.v1
|
|
102
|
+
* @see proto type: ibc.core.channel.v1.ErrorReceipt
|
|
81
103
|
*/
|
|
82
104
|
export interface ErrorReceiptAmino {
|
|
83
|
-
/**
|
|
105
|
+
/**
|
|
106
|
+
* the channel upgrade sequence
|
|
107
|
+
*/
|
|
84
108
|
sequence: string;
|
|
85
|
-
/**
|
|
109
|
+
/**
|
|
110
|
+
* the error message detailing the cause of failure
|
|
111
|
+
*/
|
|
86
112
|
message: string;
|
|
87
113
|
}
|
|
88
114
|
export interface ErrorReceiptAminoMsg {
|
|
89
115
|
type: "cosmos-sdk/ErrorReceipt";
|
|
90
116
|
value: ErrorReceiptAmino;
|
|
91
117
|
}
|
|
118
|
+
/**
|
|
119
|
+
* Upgrade is a verifiable type which contains the relevant information
|
|
120
|
+
* for an attempted upgrade. It provides the proposed changes to the channel
|
|
121
|
+
* end, the timeout for this upgrade attempt and the next packet sequence
|
|
122
|
+
* which allows the counterparty to efficiently know the highest sequence it has received.
|
|
123
|
+
* The next sequence send is used for pruning and upgrading from unordered to ordered channels.
|
|
124
|
+
* @name Upgrade
|
|
125
|
+
* @package ibc.core.channel.v1
|
|
126
|
+
* @see proto type: ibc.core.channel.v1.Upgrade
|
|
127
|
+
*/
|
|
92
128
|
export declare const Upgrade: {
|
|
93
129
|
typeUrl: string;
|
|
94
130
|
aminoType: string;
|
|
@@ -106,6 +142,13 @@ export declare const Upgrade: {
|
|
|
106
142
|
toProtoMsg(message: Upgrade): UpgradeProtoMsg;
|
|
107
143
|
registerTypeUrl(): void;
|
|
108
144
|
};
|
|
145
|
+
/**
|
|
146
|
+
* UpgradeFields are the fields in a channel end which may be changed
|
|
147
|
+
* during a channel upgrade.
|
|
148
|
+
* @name UpgradeFields
|
|
149
|
+
* @package ibc.core.channel.v1
|
|
150
|
+
* @see proto type: ibc.core.channel.v1.UpgradeFields
|
|
151
|
+
*/
|
|
109
152
|
export declare const UpgradeFields: {
|
|
110
153
|
typeUrl: string;
|
|
111
154
|
aminoType: string;
|
|
@@ -123,6 +166,14 @@ export declare const UpgradeFields: {
|
|
|
123
166
|
toProtoMsg(message: UpgradeFields): UpgradeFieldsProtoMsg;
|
|
124
167
|
registerTypeUrl(): void;
|
|
125
168
|
};
|
|
169
|
+
/**
|
|
170
|
+
* ErrorReceipt defines a type which encapsulates the upgrade sequence and error associated with the
|
|
171
|
+
* upgrade handshake failure. When a channel upgrade handshake is aborted both chains are expected to increment to the
|
|
172
|
+
* next sequence.
|
|
173
|
+
* @name ErrorReceipt
|
|
174
|
+
* @package ibc.core.channel.v1
|
|
175
|
+
* @see proto type: ibc.core.channel.v1.ErrorReceipt
|
|
176
|
+
*/
|
|
126
177
|
export declare const ErrorReceipt: {
|
|
127
178
|
typeUrl: string;
|
|
128
179
|
aminoType: string;
|
|
@@ -12,6 +12,16 @@ function createBaseUpgrade() {
|
|
|
12
12
|
nextSequenceSend: BigInt(0)
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* Upgrade is a verifiable type which contains the relevant information
|
|
17
|
+
* for an attempted upgrade. It provides the proposed changes to the channel
|
|
18
|
+
* end, the timeout for this upgrade attempt and the next packet sequence
|
|
19
|
+
* which allows the counterparty to efficiently know the highest sequence it has received.
|
|
20
|
+
* The next sequence send is used for pruning and upgrading from unordered to ordered channels.
|
|
21
|
+
* @name Upgrade
|
|
22
|
+
* @package ibc.core.channel.v1
|
|
23
|
+
* @see proto type: ibc.core.channel.v1.Upgrade
|
|
24
|
+
*/
|
|
15
25
|
exports.Upgrade = {
|
|
16
26
|
typeUrl: "/ibc.core.channel.v1.Upgrade",
|
|
17
27
|
aminoType: "cosmos-sdk/Upgrade",
|
|
@@ -119,6 +129,13 @@ function createBaseUpgradeFields() {
|
|
|
119
129
|
version: ""
|
|
120
130
|
};
|
|
121
131
|
}
|
|
132
|
+
/**
|
|
133
|
+
* UpgradeFields are the fields in a channel end which may be changed
|
|
134
|
+
* during a channel upgrade.
|
|
135
|
+
* @name UpgradeFields
|
|
136
|
+
* @package ibc.core.channel.v1
|
|
137
|
+
* @see proto type: ibc.core.channel.v1.UpgradeFields
|
|
138
|
+
*/
|
|
122
139
|
exports.UpgradeFields = {
|
|
123
140
|
typeUrl: "/ibc.core.channel.v1.UpgradeFields",
|
|
124
141
|
aminoType: "cosmos-sdk/UpgradeFields",
|
|
@@ -222,6 +239,14 @@ function createBaseErrorReceipt() {
|
|
|
222
239
|
message: ""
|
|
223
240
|
};
|
|
224
241
|
}
|
|
242
|
+
/**
|
|
243
|
+
* ErrorReceipt defines a type which encapsulates the upgrade sequence and error associated with the
|
|
244
|
+
* upgrade handshake failure. When a channel upgrade handshake is aborted both chains are expected to increment to the
|
|
245
|
+
* next sequence.
|
|
246
|
+
* @name ErrorReceipt
|
|
247
|
+
* @package ibc.core.channel.v1
|
|
248
|
+
* @see proto type: ibc.core.channel.v1.ErrorReceipt
|
|
249
|
+
*/
|
|
225
250
|
exports.ErrorReceipt = {
|
|
226
251
|
typeUrl: "/ibc.core.channel.v1.ErrorReceipt",
|
|
227
252
|
aminoType: "cosmos-sdk/ErrorReceipt",
|
|
@@ -4,11 +4,18 @@ import { DeepPartial } from "../../../../helpers";
|
|
|
4
4
|
/**
|
|
5
5
|
* IdentifiedClientState defines a client state with an additional client
|
|
6
6
|
* identifier field.
|
|
7
|
+
* @name IdentifiedClientState
|
|
8
|
+
* @package ibc.core.client.v1
|
|
9
|
+
* @see proto type: ibc.core.client.v1.IdentifiedClientState
|
|
7
10
|
*/
|
|
8
11
|
export interface IdentifiedClientState {
|
|
9
|
-
/**
|
|
12
|
+
/**
|
|
13
|
+
* client identifier
|
|
14
|
+
*/
|
|
10
15
|
clientId: string;
|
|
11
|
-
/**
|
|
16
|
+
/**
|
|
17
|
+
* client state
|
|
18
|
+
*/
|
|
12
19
|
clientState?: Any;
|
|
13
20
|
}
|
|
14
21
|
export interface IdentifiedClientStateProtoMsg {
|
|
@@ -18,11 +25,18 @@ export interface IdentifiedClientStateProtoMsg {
|
|
|
18
25
|
/**
|
|
19
26
|
* IdentifiedClientState defines a client state with an additional client
|
|
20
27
|
* identifier field.
|
|
28
|
+
* @name IdentifiedClientStateAmino
|
|
29
|
+
* @package ibc.core.client.v1
|
|
30
|
+
* @see proto type: ibc.core.client.v1.IdentifiedClientState
|
|
21
31
|
*/
|
|
22
32
|
export interface IdentifiedClientStateAmino {
|
|
23
|
-
/**
|
|
33
|
+
/**
|
|
34
|
+
* client identifier
|
|
35
|
+
*/
|
|
24
36
|
client_id: string;
|
|
25
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* client state
|
|
39
|
+
*/
|
|
26
40
|
client_state?: AnyAmino;
|
|
27
41
|
}
|
|
28
42
|
export interface IdentifiedClientStateAminoMsg {
|
|
@@ -32,11 +46,18 @@ export interface IdentifiedClientStateAminoMsg {
|
|
|
32
46
|
/**
|
|
33
47
|
* ConsensusStateWithHeight defines a consensus state with an additional height
|
|
34
48
|
* field.
|
|
49
|
+
* @name ConsensusStateWithHeight
|
|
50
|
+
* @package ibc.core.client.v1
|
|
51
|
+
* @see proto type: ibc.core.client.v1.ConsensusStateWithHeight
|
|
35
52
|
*/
|
|
36
53
|
export interface ConsensusStateWithHeight {
|
|
37
|
-
/**
|
|
54
|
+
/**
|
|
55
|
+
* consensus state height
|
|
56
|
+
*/
|
|
38
57
|
height: Height;
|
|
39
|
-
/**
|
|
58
|
+
/**
|
|
59
|
+
* consensus state
|
|
60
|
+
*/
|
|
40
61
|
consensusState?: Any;
|
|
41
62
|
}
|
|
42
63
|
export interface ConsensusStateWithHeightProtoMsg {
|
|
@@ -46,11 +67,18 @@ export interface ConsensusStateWithHeightProtoMsg {
|
|
|
46
67
|
/**
|
|
47
68
|
* ConsensusStateWithHeight defines a consensus state with an additional height
|
|
48
69
|
* field.
|
|
70
|
+
* @name ConsensusStateWithHeightAmino
|
|
71
|
+
* @package ibc.core.client.v1
|
|
72
|
+
* @see proto type: ibc.core.client.v1.ConsensusStateWithHeight
|
|
49
73
|
*/
|
|
50
74
|
export interface ConsensusStateWithHeightAmino {
|
|
51
|
-
/**
|
|
75
|
+
/**
|
|
76
|
+
* consensus state height
|
|
77
|
+
*/
|
|
52
78
|
height: HeightAmino;
|
|
53
|
-
/**
|
|
79
|
+
/**
|
|
80
|
+
* consensus state
|
|
81
|
+
*/
|
|
54
82
|
consensus_state?: AnyAmino;
|
|
55
83
|
}
|
|
56
84
|
export interface ConsensusStateWithHeightAminoMsg {
|
|
@@ -60,11 +88,18 @@ export interface ConsensusStateWithHeightAminoMsg {
|
|
|
60
88
|
/**
|
|
61
89
|
* ClientConsensusStates defines all the stored consensus states for a given
|
|
62
90
|
* client.
|
|
91
|
+
* @name ClientConsensusStates
|
|
92
|
+
* @package ibc.core.client.v1
|
|
93
|
+
* @see proto type: ibc.core.client.v1.ClientConsensusStates
|
|
63
94
|
*/
|
|
64
95
|
export interface ClientConsensusStates {
|
|
65
|
-
/**
|
|
96
|
+
/**
|
|
97
|
+
* client identifier
|
|
98
|
+
*/
|
|
66
99
|
clientId: string;
|
|
67
|
-
/**
|
|
100
|
+
/**
|
|
101
|
+
* consensus states and their heights associated with the client
|
|
102
|
+
*/
|
|
68
103
|
consensusStates: ConsensusStateWithHeight[];
|
|
69
104
|
}
|
|
70
105
|
export interface ClientConsensusStatesProtoMsg {
|
|
@@ -74,11 +109,18 @@ export interface ClientConsensusStatesProtoMsg {
|
|
|
74
109
|
/**
|
|
75
110
|
* ClientConsensusStates defines all the stored consensus states for a given
|
|
76
111
|
* client.
|
|
112
|
+
* @name ClientConsensusStatesAmino
|
|
113
|
+
* @package ibc.core.client.v1
|
|
114
|
+
* @see proto type: ibc.core.client.v1.ClientConsensusStates
|
|
77
115
|
*/
|
|
78
116
|
export interface ClientConsensusStatesAmino {
|
|
79
|
-
/**
|
|
117
|
+
/**
|
|
118
|
+
* client identifier
|
|
119
|
+
*/
|
|
80
120
|
client_id: string;
|
|
81
|
-
/**
|
|
121
|
+
/**
|
|
122
|
+
* consensus states and their heights associated with the client
|
|
123
|
+
*/
|
|
82
124
|
consensus_states: ConsensusStateWithHeightAmino[];
|
|
83
125
|
}
|
|
84
126
|
export interface ClientConsensusStatesAminoMsg {
|
|
@@ -99,11 +141,18 @@ export interface ClientConsensusStatesAminoMsg {
|
|
|
99
141
|
*
|
|
100
142
|
* Please note that json tags for generated Go code are overridden to explicitly exclude the omitempty jsontag.
|
|
101
143
|
* This enforces the Go json marshaller to always emit zero values for both revision_number and revision_height.
|
|
144
|
+
* @name Height
|
|
145
|
+
* @package ibc.core.client.v1
|
|
146
|
+
* @see proto type: ibc.core.client.v1.Height
|
|
102
147
|
*/
|
|
103
148
|
export interface Height {
|
|
104
|
-
/**
|
|
149
|
+
/**
|
|
150
|
+
* the revision that the client is currently on
|
|
151
|
+
*/
|
|
105
152
|
revisionNumber: bigint;
|
|
106
|
-
/**
|
|
153
|
+
/**
|
|
154
|
+
* the height within the given revision
|
|
155
|
+
*/
|
|
107
156
|
revisionHeight: bigint;
|
|
108
157
|
}
|
|
109
158
|
export interface HeightProtoMsg {
|
|
@@ -124,18 +173,30 @@ export interface HeightProtoMsg {
|
|
|
124
173
|
*
|
|
125
174
|
* Please note that json tags for generated Go code are overridden to explicitly exclude the omitempty jsontag.
|
|
126
175
|
* This enforces the Go json marshaller to always emit zero values for both revision_number and revision_height.
|
|
176
|
+
* @name HeightAmino
|
|
177
|
+
* @package ibc.core.client.v1
|
|
178
|
+
* @see proto type: ibc.core.client.v1.Height
|
|
127
179
|
*/
|
|
128
180
|
export interface HeightAmino {
|
|
129
|
-
/**
|
|
181
|
+
/**
|
|
182
|
+
* the revision that the client is currently on
|
|
183
|
+
*/
|
|
130
184
|
revision_number: string;
|
|
131
|
-
/**
|
|
185
|
+
/**
|
|
186
|
+
* the height within the given revision
|
|
187
|
+
*/
|
|
132
188
|
revision_height: string;
|
|
133
189
|
}
|
|
134
190
|
export interface HeightAminoMsg {
|
|
135
191
|
type: "cosmos-sdk/Height";
|
|
136
192
|
value: HeightAmino;
|
|
137
193
|
}
|
|
138
|
-
/**
|
|
194
|
+
/**
|
|
195
|
+
* Params defines the set of IBC light client parameters.
|
|
196
|
+
* @name Params
|
|
197
|
+
* @package ibc.core.client.v1
|
|
198
|
+
* @see proto type: ibc.core.client.v1.Params
|
|
199
|
+
*/
|
|
139
200
|
export interface Params {
|
|
140
201
|
/**
|
|
141
202
|
* allowed_clients defines the list of allowed client state types which can be created
|
|
@@ -148,7 +209,12 @@ export interface ParamsProtoMsg {
|
|
|
148
209
|
typeUrl: "/ibc.core.client.v1.Params";
|
|
149
210
|
value: Uint8Array;
|
|
150
211
|
}
|
|
151
|
-
/**
|
|
212
|
+
/**
|
|
213
|
+
* Params defines the set of IBC light client parameters.
|
|
214
|
+
* @name ParamsAmino
|
|
215
|
+
* @package ibc.core.client.v1
|
|
216
|
+
* @see proto type: ibc.core.client.v1.Params
|
|
217
|
+
*/
|
|
152
218
|
export interface ParamsAmino {
|
|
153
219
|
/**
|
|
154
220
|
* allowed_clients defines the list of allowed client state types which can be created
|
|
@@ -161,6 +227,13 @@ export interface ParamsAminoMsg {
|
|
|
161
227
|
type: "cosmos-sdk/Params";
|
|
162
228
|
value: ParamsAmino;
|
|
163
229
|
}
|
|
230
|
+
/**
|
|
231
|
+
* IdentifiedClientState defines a client state with an additional client
|
|
232
|
+
* identifier field.
|
|
233
|
+
* @name IdentifiedClientState
|
|
234
|
+
* @package ibc.core.client.v1
|
|
235
|
+
* @see proto type: ibc.core.client.v1.IdentifiedClientState
|
|
236
|
+
*/
|
|
164
237
|
export declare const IdentifiedClientState: {
|
|
165
238
|
typeUrl: string;
|
|
166
239
|
aminoType: string;
|
|
@@ -178,6 +251,13 @@ export declare const IdentifiedClientState: {
|
|
|
178
251
|
toProtoMsg(message: IdentifiedClientState): IdentifiedClientStateProtoMsg;
|
|
179
252
|
registerTypeUrl(): void;
|
|
180
253
|
};
|
|
254
|
+
/**
|
|
255
|
+
* ConsensusStateWithHeight defines a consensus state with an additional height
|
|
256
|
+
* field.
|
|
257
|
+
* @name ConsensusStateWithHeight
|
|
258
|
+
* @package ibc.core.client.v1
|
|
259
|
+
* @see proto type: ibc.core.client.v1.ConsensusStateWithHeight
|
|
260
|
+
*/
|
|
181
261
|
export declare const ConsensusStateWithHeight: {
|
|
182
262
|
typeUrl: string;
|
|
183
263
|
aminoType: string;
|
|
@@ -195,6 +275,13 @@ export declare const ConsensusStateWithHeight: {
|
|
|
195
275
|
toProtoMsg(message: ConsensusStateWithHeight): ConsensusStateWithHeightProtoMsg;
|
|
196
276
|
registerTypeUrl(): void;
|
|
197
277
|
};
|
|
278
|
+
/**
|
|
279
|
+
* ClientConsensusStates defines all the stored consensus states for a given
|
|
280
|
+
* client.
|
|
281
|
+
* @name ClientConsensusStates
|
|
282
|
+
* @package ibc.core.client.v1
|
|
283
|
+
* @see proto type: ibc.core.client.v1.ClientConsensusStates
|
|
284
|
+
*/
|
|
198
285
|
export declare const ClientConsensusStates: {
|
|
199
286
|
typeUrl: string;
|
|
200
287
|
aminoType: string;
|
|
@@ -212,6 +299,24 @@ export declare const ClientConsensusStates: {
|
|
|
212
299
|
toProtoMsg(message: ClientConsensusStates): ClientConsensusStatesProtoMsg;
|
|
213
300
|
registerTypeUrl(): void;
|
|
214
301
|
};
|
|
302
|
+
/**
|
|
303
|
+
* Height is a monotonically increasing data type
|
|
304
|
+
* that can be compared against another Height for the purposes of updating and
|
|
305
|
+
* freezing clients
|
|
306
|
+
*
|
|
307
|
+
* Normally the RevisionHeight is incremented at each height while keeping
|
|
308
|
+
* RevisionNumber the same. However some consensus algorithms may choose to
|
|
309
|
+
* reset the height in certain conditions e.g. hard forks, state-machine
|
|
310
|
+
* breaking changes In these cases, the RevisionNumber is incremented so that
|
|
311
|
+
* height continues to be monitonically increasing even as the RevisionHeight
|
|
312
|
+
* gets reset
|
|
313
|
+
*
|
|
314
|
+
* Please note that json tags for generated Go code are overridden to explicitly exclude the omitempty jsontag.
|
|
315
|
+
* This enforces the Go json marshaller to always emit zero values for both revision_number and revision_height.
|
|
316
|
+
* @name Height
|
|
317
|
+
* @package ibc.core.client.v1
|
|
318
|
+
* @see proto type: ibc.core.client.v1.Height
|
|
319
|
+
*/
|
|
215
320
|
export declare const Height: {
|
|
216
321
|
typeUrl: string;
|
|
217
322
|
aminoType: string;
|
|
@@ -229,6 +334,12 @@ export declare const Height: {
|
|
|
229
334
|
toProtoMsg(message: Height): HeightProtoMsg;
|
|
230
335
|
registerTypeUrl(): void;
|
|
231
336
|
};
|
|
337
|
+
/**
|
|
338
|
+
* Params defines the set of IBC light client parameters.
|
|
339
|
+
* @name Params
|
|
340
|
+
* @package ibc.core.client.v1
|
|
341
|
+
* @see proto type: ibc.core.client.v1.Params
|
|
342
|
+
*/
|
|
232
343
|
export declare const Params: {
|
|
233
344
|
typeUrl: string;
|
|
234
345
|
aminoType: string;
|