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
package/ibc/core/client/v1/tx.js
CHANGED
|
@@ -14,6 +14,12 @@ function createBaseMsgCreateClient() {
|
|
|
14
14
|
signer: ""
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* MsgCreateClient defines a message to create an IBC client
|
|
19
|
+
* @name MsgCreateClient
|
|
20
|
+
* @package ibc.core.client.v1
|
|
21
|
+
* @see proto type: ibc.core.client.v1.MsgCreateClient
|
|
22
|
+
*/
|
|
17
23
|
exports.MsgCreateClient = {
|
|
18
24
|
typeUrl: "/ibc.core.client.v1.MsgCreateClient",
|
|
19
25
|
aminoType: "cosmos-sdk/MsgCreateClient",
|
|
@@ -113,6 +119,12 @@ function createBaseMsgCreateClientResponse() {
|
|
|
113
119
|
clientId: ""
|
|
114
120
|
};
|
|
115
121
|
}
|
|
122
|
+
/**
|
|
123
|
+
* MsgCreateClientResponse defines the Msg/CreateClient response type.
|
|
124
|
+
* @name MsgCreateClientResponse
|
|
125
|
+
* @package ibc.core.client.v1
|
|
126
|
+
* @see proto type: ibc.core.client.v1.MsgCreateClientResponse
|
|
127
|
+
*/
|
|
116
128
|
exports.MsgCreateClientResponse = {
|
|
117
129
|
typeUrl: "/ibc.core.client.v1.MsgCreateClientResponse",
|
|
118
130
|
aminoType: "cosmos-sdk/MsgCreateClientResponse",
|
|
@@ -192,6 +204,13 @@ function createBaseMsgUpdateClient() {
|
|
|
192
204
|
signer: ""
|
|
193
205
|
};
|
|
194
206
|
}
|
|
207
|
+
/**
|
|
208
|
+
* MsgUpdateClient defines an sdk.Msg to update a IBC client state using
|
|
209
|
+
* the given client message.
|
|
210
|
+
* @name MsgUpdateClient
|
|
211
|
+
* @package ibc.core.client.v1
|
|
212
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateClient
|
|
213
|
+
*/
|
|
195
214
|
exports.MsgUpdateClient = {
|
|
196
215
|
typeUrl: "/ibc.core.client.v1.MsgUpdateClient",
|
|
197
216
|
aminoType: "cosmos-sdk/MsgUpdateClient",
|
|
@@ -289,6 +308,12 @@ exports.MsgUpdateClient = {
|
|
|
289
308
|
function createBaseMsgUpdateClientResponse() {
|
|
290
309
|
return {};
|
|
291
310
|
}
|
|
311
|
+
/**
|
|
312
|
+
* MsgUpdateClientResponse defines the Msg/UpdateClient response type.
|
|
313
|
+
* @name MsgUpdateClientResponse
|
|
314
|
+
* @package ibc.core.client.v1
|
|
315
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateClientResponse
|
|
316
|
+
*/
|
|
292
317
|
exports.MsgUpdateClientResponse = {
|
|
293
318
|
typeUrl: "/ibc.core.client.v1.MsgUpdateClientResponse",
|
|
294
319
|
aminoType: "cosmos-sdk/MsgUpdateClientResponse",
|
|
@@ -360,6 +385,13 @@ function createBaseMsgUpgradeClient() {
|
|
|
360
385
|
signer: ""
|
|
361
386
|
};
|
|
362
387
|
}
|
|
388
|
+
/**
|
|
389
|
+
* MsgUpgradeClient defines an sdk.Msg to upgrade an IBC client to a new client
|
|
390
|
+
* state
|
|
391
|
+
* @name MsgUpgradeClient
|
|
392
|
+
* @package ibc.core.client.v1
|
|
393
|
+
* @see proto type: ibc.core.client.v1.MsgUpgradeClient
|
|
394
|
+
*/
|
|
363
395
|
exports.MsgUpgradeClient = {
|
|
364
396
|
typeUrl: "/ibc.core.client.v1.MsgUpgradeClient",
|
|
365
397
|
aminoType: "cosmos-sdk/MsgUpgradeClient",
|
|
@@ -490,6 +522,12 @@ exports.MsgUpgradeClient = {
|
|
|
490
522
|
function createBaseMsgUpgradeClientResponse() {
|
|
491
523
|
return {};
|
|
492
524
|
}
|
|
525
|
+
/**
|
|
526
|
+
* MsgUpgradeClientResponse defines the Msg/UpgradeClient response type.
|
|
527
|
+
* @name MsgUpgradeClientResponse
|
|
528
|
+
* @package ibc.core.client.v1
|
|
529
|
+
* @see proto type: ibc.core.client.v1.MsgUpgradeClientResponse
|
|
530
|
+
*/
|
|
493
531
|
exports.MsgUpgradeClientResponse = {
|
|
494
532
|
typeUrl: "/ibc.core.client.v1.MsgUpgradeClientResponse",
|
|
495
533
|
aminoType: "cosmos-sdk/MsgUpgradeClientResponse",
|
|
@@ -558,6 +596,15 @@ function createBaseMsgSubmitMisbehaviour() {
|
|
|
558
596
|
signer: ""
|
|
559
597
|
};
|
|
560
598
|
}
|
|
599
|
+
/**
|
|
600
|
+
* MsgSubmitMisbehaviour defines an sdk.Msg type that submits Evidence for
|
|
601
|
+
* light client misbehaviour.
|
|
602
|
+
* This message has been deprecated. Use MsgUpdateClient instead.
|
|
603
|
+
* @name MsgSubmitMisbehaviour
|
|
604
|
+
* @package ibc.core.client.v1
|
|
605
|
+
* @see proto type: ibc.core.client.v1.MsgSubmitMisbehaviour
|
|
606
|
+
* @deprecated
|
|
607
|
+
*/
|
|
561
608
|
exports.MsgSubmitMisbehaviour = {
|
|
562
609
|
typeUrl: "/ibc.core.client.v1.MsgSubmitMisbehaviour",
|
|
563
610
|
aminoType: "cosmos-sdk/MsgSubmitMisbehaviour",
|
|
@@ -655,6 +702,13 @@ exports.MsgSubmitMisbehaviour = {
|
|
|
655
702
|
function createBaseMsgSubmitMisbehaviourResponse() {
|
|
656
703
|
return {};
|
|
657
704
|
}
|
|
705
|
+
/**
|
|
706
|
+
* MsgSubmitMisbehaviourResponse defines the Msg/SubmitMisbehaviour response
|
|
707
|
+
* type.
|
|
708
|
+
* @name MsgSubmitMisbehaviourResponse
|
|
709
|
+
* @package ibc.core.client.v1
|
|
710
|
+
* @see proto type: ibc.core.client.v1.MsgSubmitMisbehaviourResponse
|
|
711
|
+
*/
|
|
658
712
|
exports.MsgSubmitMisbehaviourResponse = {
|
|
659
713
|
typeUrl: "/ibc.core.client.v1.MsgSubmitMisbehaviourResponse",
|
|
660
714
|
aminoType: "cosmos-sdk/MsgSubmitMisbehaviourResponse",
|
|
@@ -723,6 +777,12 @@ function createBaseMsgRecoverClient() {
|
|
|
723
777
|
signer: ""
|
|
724
778
|
};
|
|
725
779
|
}
|
|
780
|
+
/**
|
|
781
|
+
* MsgRecoverClient defines the message used to recover a frozen or expired client.
|
|
782
|
+
* @name MsgRecoverClient
|
|
783
|
+
* @package ibc.core.client.v1
|
|
784
|
+
* @see proto type: ibc.core.client.v1.MsgRecoverClient
|
|
785
|
+
*/
|
|
726
786
|
exports.MsgRecoverClient = {
|
|
727
787
|
typeUrl: "/ibc.core.client.v1.MsgRecoverClient",
|
|
728
788
|
aminoType: "cosmos-sdk/MsgRecoverClient",
|
|
@@ -820,6 +880,12 @@ exports.MsgRecoverClient = {
|
|
|
820
880
|
function createBaseMsgRecoverClientResponse() {
|
|
821
881
|
return {};
|
|
822
882
|
}
|
|
883
|
+
/**
|
|
884
|
+
* MsgRecoverClientResponse defines the Msg/RecoverClient response type.
|
|
885
|
+
* @name MsgRecoverClientResponse
|
|
886
|
+
* @package ibc.core.client.v1
|
|
887
|
+
* @see proto type: ibc.core.client.v1.MsgRecoverClientResponse
|
|
888
|
+
*/
|
|
823
889
|
exports.MsgRecoverClientResponse = {
|
|
824
890
|
typeUrl: "/ibc.core.client.v1.MsgRecoverClientResponse",
|
|
825
891
|
aminoType: "cosmos-sdk/MsgRecoverClientResponse",
|
|
@@ -888,6 +954,12 @@ function createBaseMsgIBCSoftwareUpgrade() {
|
|
|
888
954
|
signer: ""
|
|
889
955
|
};
|
|
890
956
|
}
|
|
957
|
+
/**
|
|
958
|
+
* MsgIBCSoftwareUpgrade defines the message used to schedule an upgrade of an IBC client using a v1 governance proposal
|
|
959
|
+
* @name MsgIBCSoftwareUpgrade
|
|
960
|
+
* @package ibc.core.client.v1
|
|
961
|
+
* @see proto type: ibc.core.client.v1.MsgIBCSoftwareUpgrade
|
|
962
|
+
*/
|
|
891
963
|
exports.MsgIBCSoftwareUpgrade = {
|
|
892
964
|
typeUrl: "/ibc.core.client.v1.MsgIBCSoftwareUpgrade",
|
|
893
965
|
aminoType: "cosmos-sdk/MsgIBCSoftwareUpgrade",
|
|
@@ -985,6 +1057,12 @@ exports.MsgIBCSoftwareUpgrade = {
|
|
|
985
1057
|
function createBaseMsgIBCSoftwareUpgradeResponse() {
|
|
986
1058
|
return {};
|
|
987
1059
|
}
|
|
1060
|
+
/**
|
|
1061
|
+
* MsgIBCSoftwareUpgradeResponse defines the Msg/IBCSoftwareUpgrade response type.
|
|
1062
|
+
* @name MsgIBCSoftwareUpgradeResponse
|
|
1063
|
+
* @package ibc.core.client.v1
|
|
1064
|
+
* @see proto type: ibc.core.client.v1.MsgIBCSoftwareUpgradeResponse
|
|
1065
|
+
*/
|
|
988
1066
|
exports.MsgIBCSoftwareUpgradeResponse = {
|
|
989
1067
|
typeUrl: "/ibc.core.client.v1.MsgIBCSoftwareUpgradeResponse",
|
|
990
1068
|
aminoType: "cosmos-sdk/MsgIBCSoftwareUpgradeResponse",
|
|
@@ -1052,6 +1130,12 @@ function createBaseMsgUpdateParams() {
|
|
|
1052
1130
|
params: client_1.Params.fromPartial({})
|
|
1053
1131
|
};
|
|
1054
1132
|
}
|
|
1133
|
+
/**
|
|
1134
|
+
* MsgUpdateParams defines the sdk.Msg type to update the client parameters.
|
|
1135
|
+
* @name MsgUpdateParams
|
|
1136
|
+
* @package ibc.core.client.v1
|
|
1137
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateParams
|
|
1138
|
+
*/
|
|
1055
1139
|
exports.MsgUpdateParams = {
|
|
1056
1140
|
typeUrl: "/ibc.core.client.v1.MsgUpdateParams",
|
|
1057
1141
|
aminoType: "cosmos-sdk/MsgUpdateParams",
|
|
@@ -1143,6 +1227,12 @@ exports.MsgUpdateParams = {
|
|
|
1143
1227
|
function createBaseMsgUpdateParamsResponse() {
|
|
1144
1228
|
return {};
|
|
1145
1229
|
}
|
|
1230
|
+
/**
|
|
1231
|
+
* MsgUpdateParamsResponse defines the MsgUpdateParams response type.
|
|
1232
|
+
* @name MsgUpdateParamsResponse
|
|
1233
|
+
* @package ibc.core.client.v1
|
|
1234
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateParamsResponse
|
|
1235
|
+
*/
|
|
1146
1236
|
exports.MsgUpdateParamsResponse = {
|
|
1147
1237
|
typeUrl: "/ibc.core.client.v1.MsgUpdateParamsResponse",
|
|
1148
1238
|
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|
|
@@ -1,8 +1,50 @@
|
|
|
1
1
|
import { MsgCreateClient, MsgUpdateClient, MsgUpgradeClient, MsgSubmitMisbehaviour, MsgRecoverClient, MsgIBCSoftwareUpgrade, MsgUpdateParams } from "./tx";
|
|
2
|
+
/**
|
|
3
|
+
* CreateClient defines a rpc handler method for MsgCreateClient.
|
|
4
|
+
* @name createClient
|
|
5
|
+
* @package ibc.core.client.v1
|
|
6
|
+
* @see proto service: ibc.core.client.v1.CreateClient
|
|
7
|
+
*/
|
|
2
8
|
export declare const createClient: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreateClient | MsgCreateClient[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
9
|
+
/**
|
|
10
|
+
* UpdateClient defines a rpc handler method for MsgUpdateClient.
|
|
11
|
+
* @name updateClient
|
|
12
|
+
* @package ibc.core.client.v1
|
|
13
|
+
* @see proto service: ibc.core.client.v1.UpdateClient
|
|
14
|
+
*/
|
|
3
15
|
export declare const updateClient: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateClient | MsgUpdateClient[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* UpgradeClient defines a rpc handler method for MsgUpgradeClient.
|
|
18
|
+
* @name upgradeClient
|
|
19
|
+
* @package ibc.core.client.v1
|
|
20
|
+
* @see proto service: ibc.core.client.v1.UpgradeClient
|
|
21
|
+
*/
|
|
4
22
|
export declare const upgradeClient: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpgradeClient | MsgUpgradeClient[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
23
|
+
/**
|
|
24
|
+
* SubmitMisbehaviour defines a rpc handler method for MsgSubmitMisbehaviour.
|
|
25
|
+
* @name submitMisbehaviour
|
|
26
|
+
* @package ibc.core.client.v1
|
|
27
|
+
* @see proto service: ibc.core.client.v1.SubmitMisbehaviour
|
|
28
|
+
*/
|
|
5
29
|
export declare const submitMisbehaviour: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgSubmitMisbehaviour | MsgSubmitMisbehaviour[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
30
|
+
/**
|
|
31
|
+
* RecoverClient defines a rpc handler method for MsgRecoverClient.
|
|
32
|
+
* @name recoverClient
|
|
33
|
+
* @package ibc.core.client.v1
|
|
34
|
+
* @see proto service: ibc.core.client.v1.RecoverClient
|
|
35
|
+
*/
|
|
6
36
|
export declare const recoverClient: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRecoverClient | MsgRecoverClient[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
37
|
+
/**
|
|
38
|
+
* IBCSoftwareUpgrade defines a rpc handler method for MsgIBCSoftwareUpgrade.
|
|
39
|
+
* @name iBCSoftwareUpgrade
|
|
40
|
+
* @package ibc.core.client.v1
|
|
41
|
+
* @see proto service: ibc.core.client.v1.IBCSoftwareUpgrade
|
|
42
|
+
*/
|
|
7
43
|
export declare const iBCSoftwareUpgrade: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgIBCSoftwareUpgrade | MsgIBCSoftwareUpgrade[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
44
|
+
/**
|
|
45
|
+
* UpdateClientParams defines a rpc handler method for MsgUpdateParams.
|
|
46
|
+
* @name updateClientParams
|
|
47
|
+
* @package ibc.core.client.v1
|
|
48
|
+
* @see proto service: ibc.core.client.v1.UpdateClientParams
|
|
49
|
+
*/
|
|
8
50
|
export declare const updateClientParams: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
@@ -3,31 +3,66 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.updateClientParams = exports.iBCSoftwareUpgrade = exports.recoverClient = exports.submitMisbehaviour = exports.upgradeClient = exports.updateClient = exports.createClient = void 0;
|
|
4
4
|
const helper_func_types_1 = require("../../../../helper-func-types");
|
|
5
5
|
const tx_1 = require("./tx");
|
|
6
|
-
|
|
6
|
+
/**
|
|
7
|
+
* CreateClient defines a rpc handler method for MsgCreateClient.
|
|
8
|
+
* @name createClient
|
|
9
|
+
* @package ibc.core.client.v1
|
|
10
|
+
* @see proto service: ibc.core.client.v1.CreateClient
|
|
11
|
+
*/
|
|
7
12
|
exports.createClient = (0, helper_func_types_1.buildTx)({
|
|
8
13
|
msg: tx_1.MsgCreateClient
|
|
9
14
|
});
|
|
10
|
-
|
|
15
|
+
/**
|
|
16
|
+
* UpdateClient defines a rpc handler method for MsgUpdateClient.
|
|
17
|
+
* @name updateClient
|
|
18
|
+
* @package ibc.core.client.v1
|
|
19
|
+
* @see proto service: ibc.core.client.v1.UpdateClient
|
|
20
|
+
*/
|
|
11
21
|
exports.updateClient = (0, helper_func_types_1.buildTx)({
|
|
12
22
|
msg: tx_1.MsgUpdateClient
|
|
13
23
|
});
|
|
14
|
-
|
|
24
|
+
/**
|
|
25
|
+
* UpgradeClient defines a rpc handler method for MsgUpgradeClient.
|
|
26
|
+
* @name upgradeClient
|
|
27
|
+
* @package ibc.core.client.v1
|
|
28
|
+
* @see proto service: ibc.core.client.v1.UpgradeClient
|
|
29
|
+
*/
|
|
15
30
|
exports.upgradeClient = (0, helper_func_types_1.buildTx)({
|
|
16
31
|
msg: tx_1.MsgUpgradeClient
|
|
17
32
|
});
|
|
18
|
-
|
|
33
|
+
/**
|
|
34
|
+
* SubmitMisbehaviour defines a rpc handler method for MsgSubmitMisbehaviour.
|
|
35
|
+
* @name submitMisbehaviour
|
|
36
|
+
* @package ibc.core.client.v1
|
|
37
|
+
* @see proto service: ibc.core.client.v1.SubmitMisbehaviour
|
|
38
|
+
*/
|
|
19
39
|
exports.submitMisbehaviour = (0, helper_func_types_1.buildTx)({
|
|
20
40
|
msg: tx_1.MsgSubmitMisbehaviour
|
|
21
41
|
});
|
|
22
|
-
|
|
42
|
+
/**
|
|
43
|
+
* RecoverClient defines a rpc handler method for MsgRecoverClient.
|
|
44
|
+
* @name recoverClient
|
|
45
|
+
* @package ibc.core.client.v1
|
|
46
|
+
* @see proto service: ibc.core.client.v1.RecoverClient
|
|
47
|
+
*/
|
|
23
48
|
exports.recoverClient = (0, helper_func_types_1.buildTx)({
|
|
24
49
|
msg: tx_1.MsgRecoverClient
|
|
25
50
|
});
|
|
26
|
-
|
|
51
|
+
/**
|
|
52
|
+
* IBCSoftwareUpgrade defines a rpc handler method for MsgIBCSoftwareUpgrade.
|
|
53
|
+
* @name iBCSoftwareUpgrade
|
|
54
|
+
* @package ibc.core.client.v1
|
|
55
|
+
* @see proto service: ibc.core.client.v1.IBCSoftwareUpgrade
|
|
56
|
+
*/
|
|
27
57
|
exports.iBCSoftwareUpgrade = (0, helper_func_types_1.buildTx)({
|
|
28
58
|
msg: tx_1.MsgIBCSoftwareUpgrade
|
|
29
59
|
});
|
|
30
|
-
|
|
60
|
+
/**
|
|
61
|
+
* UpdateClientParams defines a rpc handler method for MsgUpdateParams.
|
|
62
|
+
* @name updateClientParams
|
|
63
|
+
* @package ibc.core.client.v1
|
|
64
|
+
* @see proto service: ibc.core.client.v1.UpdateClientParams
|
|
65
|
+
*/
|
|
31
66
|
exports.updateClientParams = (0, helper_func_types_1.buildTx)({
|
|
32
67
|
msg: tx_1.MsgUpdateParams
|
|
33
68
|
});
|
|
@@ -4,6 +4,9 @@ import { DeepPartial } from "../../../../helpers";
|
|
|
4
4
|
/**
|
|
5
5
|
* MerkleRoot defines a merkle root hash.
|
|
6
6
|
* In the Cosmos SDK, the AppHash of a block header becomes the root.
|
|
7
|
+
* @name MerkleRoot
|
|
8
|
+
* @package ibc.core.commitment.v1
|
|
9
|
+
* @see proto type: ibc.core.commitment.v1.MerkleRoot
|
|
7
10
|
*/
|
|
8
11
|
export interface MerkleRoot {
|
|
9
12
|
hash: Uint8Array;
|
|
@@ -15,6 +18,9 @@ export interface MerkleRootProtoMsg {
|
|
|
15
18
|
/**
|
|
16
19
|
* MerkleRoot defines a merkle root hash.
|
|
17
20
|
* In the Cosmos SDK, the AppHash of a block header becomes the root.
|
|
21
|
+
* @name MerkleRootAmino
|
|
22
|
+
* @package ibc.core.commitment.v1
|
|
23
|
+
* @see proto type: ibc.core.commitment.v1.MerkleRoot
|
|
18
24
|
*/
|
|
19
25
|
export interface MerkleRootAmino {
|
|
20
26
|
hash: string;
|
|
@@ -27,6 +33,9 @@ export interface MerkleRootAminoMsg {
|
|
|
27
33
|
* MerklePrefix is merkle path prefixed to the key.
|
|
28
34
|
* The constructed key from the Path and the key will be append(Path.KeyPath,
|
|
29
35
|
* append(Path.KeyPrefix, key...))
|
|
36
|
+
* @name MerklePrefix
|
|
37
|
+
* @package ibc.core.commitment.v1
|
|
38
|
+
* @see proto type: ibc.core.commitment.v1.MerklePrefix
|
|
30
39
|
*/
|
|
31
40
|
export interface MerklePrefix {
|
|
32
41
|
keyPrefix: Uint8Array;
|
|
@@ -39,6 +48,9 @@ export interface MerklePrefixProtoMsg {
|
|
|
39
48
|
* MerklePrefix is merkle path prefixed to the key.
|
|
40
49
|
* The constructed key from the Path and the key will be append(Path.KeyPath,
|
|
41
50
|
* append(Path.KeyPrefix, key...))
|
|
51
|
+
* @name MerklePrefixAmino
|
|
52
|
+
* @package ibc.core.commitment.v1
|
|
53
|
+
* @see proto type: ibc.core.commitment.v1.MerklePrefix
|
|
42
54
|
*/
|
|
43
55
|
export interface MerklePrefixAmino {
|
|
44
56
|
key_prefix: string;
|
|
@@ -53,6 +65,9 @@ export interface MerklePrefixAminoMsg {
|
|
|
53
65
|
* elements, verifiable in conjunction with a known commitment root. Proofs
|
|
54
66
|
* should be succinct.
|
|
55
67
|
* MerkleProofs are ordered from leaf-to-root
|
|
68
|
+
* @name MerkleProof
|
|
69
|
+
* @package ibc.core.commitment.v1
|
|
70
|
+
* @see proto type: ibc.core.commitment.v1.MerkleProof
|
|
56
71
|
*/
|
|
57
72
|
export interface MerkleProof {
|
|
58
73
|
proofs: CommitmentProof[];
|
|
@@ -67,6 +82,9 @@ export interface MerkleProofProtoMsg {
|
|
|
67
82
|
* elements, verifiable in conjunction with a known commitment root. Proofs
|
|
68
83
|
* should be succinct.
|
|
69
84
|
* MerkleProofs are ordered from leaf-to-root
|
|
85
|
+
* @name MerkleProofAmino
|
|
86
|
+
* @package ibc.core.commitment.v1
|
|
87
|
+
* @see proto type: ibc.core.commitment.v1.MerkleProof
|
|
70
88
|
*/
|
|
71
89
|
export interface MerkleProofAmino {
|
|
72
90
|
proofs: CommitmentProofAmino[];
|
|
@@ -75,6 +93,13 @@ export interface MerkleProofAminoMsg {
|
|
|
75
93
|
type: "cosmos-sdk/MerkleProof";
|
|
76
94
|
value: MerkleProofAmino;
|
|
77
95
|
}
|
|
96
|
+
/**
|
|
97
|
+
* MerkleRoot defines a merkle root hash.
|
|
98
|
+
* In the Cosmos SDK, the AppHash of a block header becomes the root.
|
|
99
|
+
* @name MerkleRoot
|
|
100
|
+
* @package ibc.core.commitment.v1
|
|
101
|
+
* @see proto type: ibc.core.commitment.v1.MerkleRoot
|
|
102
|
+
*/
|
|
78
103
|
export declare const MerkleRoot: {
|
|
79
104
|
typeUrl: string;
|
|
80
105
|
aminoType: string;
|
|
@@ -92,6 +117,14 @@ export declare const MerkleRoot: {
|
|
|
92
117
|
toProtoMsg(message: MerkleRoot): MerkleRootProtoMsg;
|
|
93
118
|
registerTypeUrl(): void;
|
|
94
119
|
};
|
|
120
|
+
/**
|
|
121
|
+
* MerklePrefix is merkle path prefixed to the key.
|
|
122
|
+
* The constructed key from the Path and the key will be append(Path.KeyPath,
|
|
123
|
+
* append(Path.KeyPrefix, key...))
|
|
124
|
+
* @name MerklePrefix
|
|
125
|
+
* @package ibc.core.commitment.v1
|
|
126
|
+
* @see proto type: ibc.core.commitment.v1.MerklePrefix
|
|
127
|
+
*/
|
|
95
128
|
export declare const MerklePrefix: {
|
|
96
129
|
typeUrl: string;
|
|
97
130
|
aminoType: string;
|
|
@@ -109,6 +142,16 @@ export declare const MerklePrefix: {
|
|
|
109
142
|
toProtoMsg(message: MerklePrefix): MerklePrefixProtoMsg;
|
|
110
143
|
registerTypeUrl(): void;
|
|
111
144
|
};
|
|
145
|
+
/**
|
|
146
|
+
* MerkleProof is a wrapper type over a chain of CommitmentProofs.
|
|
147
|
+
* It demonstrates membership or non-membership for an element or set of
|
|
148
|
+
* elements, verifiable in conjunction with a known commitment root. Proofs
|
|
149
|
+
* should be succinct.
|
|
150
|
+
* MerkleProofs are ordered from leaf-to-root
|
|
151
|
+
* @name MerkleProof
|
|
152
|
+
* @package ibc.core.commitment.v1
|
|
153
|
+
* @see proto type: ibc.core.commitment.v1.MerkleProof
|
|
154
|
+
*/
|
|
112
155
|
export declare const MerkleProof: {
|
|
113
156
|
typeUrl: string;
|
|
114
157
|
aminoType: string;
|
|
@@ -10,6 +10,13 @@ function createBaseMerkleRoot() {
|
|
|
10
10
|
hash: new Uint8Array()
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* MerkleRoot defines a merkle root hash.
|
|
15
|
+
* In the Cosmos SDK, the AppHash of a block header becomes the root.
|
|
16
|
+
* @name MerkleRoot
|
|
17
|
+
* @package ibc.core.commitment.v1
|
|
18
|
+
* @see proto type: ibc.core.commitment.v1.MerkleRoot
|
|
19
|
+
*/
|
|
13
20
|
exports.MerkleRoot = {
|
|
14
21
|
typeUrl: "/ibc.core.commitment.v1.MerkleRoot",
|
|
15
22
|
aminoType: "cosmos-sdk/MerkleRoot",
|
|
@@ -87,6 +94,14 @@ function createBaseMerklePrefix() {
|
|
|
87
94
|
keyPrefix: new Uint8Array()
|
|
88
95
|
};
|
|
89
96
|
}
|
|
97
|
+
/**
|
|
98
|
+
* MerklePrefix is merkle path prefixed to the key.
|
|
99
|
+
* The constructed key from the Path and the key will be append(Path.KeyPath,
|
|
100
|
+
* append(Path.KeyPrefix, key...))
|
|
101
|
+
* @name MerklePrefix
|
|
102
|
+
* @package ibc.core.commitment.v1
|
|
103
|
+
* @see proto type: ibc.core.commitment.v1.MerklePrefix
|
|
104
|
+
*/
|
|
90
105
|
exports.MerklePrefix = {
|
|
91
106
|
typeUrl: "/ibc.core.commitment.v1.MerklePrefix",
|
|
92
107
|
aminoType: "cosmos-sdk/MerklePrefix",
|
|
@@ -164,6 +179,16 @@ function createBaseMerkleProof() {
|
|
|
164
179
|
proofs: []
|
|
165
180
|
};
|
|
166
181
|
}
|
|
182
|
+
/**
|
|
183
|
+
* MerkleProof is a wrapper type over a chain of CommitmentProofs.
|
|
184
|
+
* It demonstrates membership or non-membership for an element or set of
|
|
185
|
+
* elements, verifiable in conjunction with a known commitment root. Proofs
|
|
186
|
+
* should be succinct.
|
|
187
|
+
* MerkleProofs are ordered from leaf-to-root
|
|
188
|
+
* @name MerkleProof
|
|
189
|
+
* @package ibc.core.commitment.v1
|
|
190
|
+
* @see proto type: ibc.core.commitment.v1.MerkleProof
|
|
191
|
+
*/
|
|
167
192
|
exports.MerkleProof = {
|
|
168
193
|
typeUrl: "/ibc.core.commitment.v1.MerkleProof",
|
|
169
194
|
aminoType: "cosmos-sdk/MerkleProof",
|