juno-network 0.0.2
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/LICENSE +21 -0
- package/README.md +2 -0
- package/main/codegen/JunoSwap.client.js +434 -0
- package/main/codegen/JunoSwap.react-query.js +152 -0
- package/main/codegen/JunoSwap.types.js +1 -0
- package/main/codegen/confio/proofs.js +1471 -0
- package/main/codegen/contracts.js +33 -0
- package/main/codegen/cosmos/app/v1alpha1/config.js +172 -0
- package/main/codegen/cosmos/app/v1alpha1/module.js +272 -0
- package/main/codegen/cosmos/app/v1alpha1/query.js +113 -0
- package/main/codegen/cosmos/app/v1alpha1/query.rpc.query.js +48 -0
- package/main/codegen/cosmos/auth/v1beta1/auth.js +323 -0
- package/main/codegen/cosmos/auth/v1beta1/genesis.js +118 -0
- package/main/codegen/cosmos/auth/v1beta1/query.js +827 -0
- package/main/codegen/cosmos/auth/v1beta1/query.lcd.js +297 -0
- package/main/codegen/cosmos/auth/v1beta1/query.rpc.query.js +114 -0
- package/main/codegen/cosmos/authz/v1beta1/authz.js +324 -0
- package/main/codegen/cosmos/authz/v1beta1/event.js +178 -0
- package/main/codegen/cosmos/authz/v1beta1/genesis.js +102 -0
- package/main/codegen/cosmos/authz/v1beta1/query.js +533 -0
- package/main/codegen/cosmos/authz/v1beta1/query.lcd.js +183 -0
- package/main/codegen/cosmos/authz/v1beta1/query.rpc.query.js +70 -0
- package/main/codegen/cosmos/authz/v1beta1/tx.amino.js +96 -0
- package/main/codegen/cosmos/authz/v1beta1/tx.js +439 -0
- package/main/codegen/cosmos/authz/v1beta1/tx.registry.js +130 -0
- package/main/codegen/cosmos/authz/v1beta1/tx.rpc.msg.js +70 -0
- package/main/codegen/cosmos/bank/v1beta1/authz.js +102 -0
- package/main/codegen/cosmos/bank/v1beta1/bank.js +714 -0
- package/main/codegen/cosmos/bank/v1beta1/genesis.js +277 -0
- package/main/codegen/cosmos/bank/v1beta1/query.js +1316 -0
- package/main/codegen/cosmos/bank/v1beta1/query.lcd.js +394 -0
- package/main/codegen/cosmos/bank/v1beta1/query.rpc.query.js +136 -0
- package/main/codegen/cosmos/bank/v1beta1/tx.amino.js +101 -0
- package/main/codegen/cosmos/bank/v1beta1/tx.js +324 -0
- package/main/codegen/cosmos/bank/v1beta1/tx.registry.js +100 -0
- package/main/codegen/cosmos/bank/v1beta1/tx.rpc.msg.js +59 -0
- package/main/codegen/cosmos/base/abci/v1beta1/abci.js +1128 -0
- package/main/codegen/cosmos/base/kv/v1beta1/kv.js +170 -0
- package/main/codegen/cosmos/base/query/v1beta1/pagination.js +190 -0
- package/main/codegen/cosmos/base/reflection/v1beta1/reflection.js +277 -0
- package/main/codegen/cosmos/base/reflection/v2alpha1/reflection.js +1743 -0
- package/main/codegen/cosmos/base/snapshots/v1beta1/snapshot.js +745 -0
- package/main/codegen/cosmos/base/store/v1beta1/commit_info.js +251 -0
- package/main/codegen/cosmos/base/store/v1beta1/listening.js +109 -0
- package/main/codegen/cosmos/base/tendermint/v1beta1/query.js +1130 -0
- package/main/codegen/cosmos/base/tendermint/v1beta1/query.rpc.svc.js +103 -0
- package/main/codegen/cosmos/base/v1beta1/coin.js +268 -0
- package/main/codegen/cosmos/bundle.js +583 -0
- package/main/codegen/cosmos/capability/v1beta1/capability.js +225 -0
- package/main/codegen/cosmos/capability/v1beta1/genesis.js +182 -0
- package/main/codegen/cosmos/client.js +121 -0
- package/main/codegen/cosmos/crisis/v1beta1/genesis.js +73 -0
- package/main/codegen/cosmos/crisis/v1beta1/tx.amino.js +32 -0
- package/main/codegen/cosmos/crisis/v1beta1/tx.js +137 -0
- package/main/codegen/cosmos/crisis/v1beta1/tx.registry.js +70 -0
- package/main/codegen/cosmos/crisis/v1beta1/tx.rpc.msg.js +48 -0
- package/main/codegen/cosmos/crypto/ed25519/keys.js +130 -0
- package/main/codegen/cosmos/crypto/hd/v1/hd.js +121 -0
- package/main/codegen/cosmos/crypto/keyring/v1/record.js +341 -0
- package/main/codegen/cosmos/crypto/multisig/keys.js +116 -0
- package/main/codegen/cosmos/crypto/multisig/v1beta1/multisig.js +170 -0
- package/main/codegen/cosmos/crypto/secp256k1/keys.js +130 -0
- package/main/codegen/cosmos/crypto/secp256r1/keys.js +130 -0
- package/main/codegen/cosmos/distribution/v1beta1/distribution.js +1083 -0
- package/main/codegen/cosmos/distribution/v1beta1/genesis.js +894 -0
- package/main/codegen/cosmos/distribution/v1beta1/query.js +1222 -0
- package/main/codegen/cosmos/distribution/v1beta1/query.lcd.js +408 -0
- package/main/codegen/cosmos/distribution/v1beta1/query.rpc.query.js +136 -0
- package/main/codegen/cosmos/distribution/v1beta1/tx.amino.js +91 -0
- package/main/codegen/cosmos/distribution/v1beta1/tx.js +551 -0
- package/main/codegen/cosmos/distribution/v1beta1/tx.registry.js +160 -0
- package/main/codegen/cosmos/distribution/v1beta1/tx.rpc.msg.js +81 -0
- package/main/codegen/cosmos/evidence/v1beta1/evidence.js +111 -0
- package/main/codegen/cosmos/evidence/v1beta1/genesis.js +102 -0
- package/main/codegen/cosmos/evidence/v1beta1/query.js +285 -0
- package/main/codegen/cosmos/evidence/v1beta1/query.lcd.js +127 -0
- package/main/codegen/cosmos/evidence/v1beta1/query.rpc.query.js +59 -0
- package/main/codegen/cosmos/evidence/v1beta1/tx.amino.js +34 -0
- package/main/codegen/cosmos/evidence/v1beta1/tx.js +144 -0
- package/main/codegen/cosmos/evidence/v1beta1/tx.registry.js +70 -0
- package/main/codegen/cosmos/evidence/v1beta1/tx.rpc.msg.js +48 -0
- package/main/codegen/cosmos/feegrant/v1beta1/feegrant.js +444 -0
- package/main/codegen/cosmos/feegrant/v1beta1/genesis.js +102 -0
- package/main/codegen/cosmos/feegrant/v1beta1/query.js +472 -0
- package/main/codegen/cosmos/feegrant/v1beta1/query.lcd.js +160 -0
- package/main/codegen/cosmos/feegrant/v1beta1/query.rpc.query.js +70 -0
- package/main/codegen/cosmos/feegrant/v1beta1/tx.amino.js +57 -0
- package/main/codegen/cosmos/feegrant/v1beta1/tx.js +248 -0
- package/main/codegen/cosmos/feegrant/v1beta1/tx.registry.js +100 -0
- package/main/codegen/cosmos/feegrant/v1beta1/tx.rpc.msg.js +59 -0
- package/main/codegen/cosmos/genutil/v1beta1/genesis.js +101 -0
- package/main/codegen/cosmos/gov/v1/genesis.js +220 -0
- package/main/codegen/cosmos/gov/v1/gov.js +995 -0
- package/main/codegen/cosmos/gov/v1/query.js +1133 -0
- package/main/codegen/cosmos/gov/v1/query.lcd.js +387 -0
- package/main/codegen/cosmos/gov/v1/query.rpc.query.js +125 -0
- package/main/codegen/cosmos/gov/v1/tx.amino.js +183 -0
- package/main/codegen/cosmos/gov/v1/tx.js +763 -0
- package/main/codegen/cosmos/gov/v1/tx.registry.js +190 -0
- package/main/codegen/cosmos/gov/v1/tx.rpc.msg.js +92 -0
- package/main/codegen/cosmos/gov/v1beta1/genesis.js +220 -0
- package/main/codegen/cosmos/gov/v1beta1/gov.js +1033 -0
- package/main/codegen/cosmos/gov/v1beta1/query.js +1133 -0
- package/main/codegen/cosmos/gov/v1beta1/query.lcd.js +387 -0
- package/main/codegen/cosmos/gov/v1beta1/query.rpc.query.js +125 -0
- package/main/codegen/cosmos/gov/v1beta1/tx.amino.js +142 -0
- package/main/codegen/cosmos/gov/v1beta1/tx.js +596 -0
- package/main/codegen/cosmos/gov/v1beta1/tx.registry.js +160 -0
- package/main/codegen/cosmos/gov/v1beta1/tx.rpc.msg.js +81 -0
- package/main/codegen/cosmos/group/v1/events.js +545 -0
- package/main/codegen/cosmos/group/v1/genesis.js +278 -0
- package/main/codegen/cosmos/group/v1/query.js +1874 -0
- package/main/codegen/cosmos/group/v1/query.lcd.js +571 -0
- package/main/codegen/cosmos/group/v1/query.rpc.query.js +180 -0
- package/main/codegen/cosmos/group/v1/tx.amino.js +428 -0
- package/main/codegen/cosmos/group/v1/tx.js +2014 -0
- package/main/codegen/cosmos/group/v1/tx.registry.js +460 -0
- package/main/codegen/cosmos/group/v1/tx.rpc.msg.js +191 -0
- package/main/codegen/cosmos/group/v1/types.js +1420 -0
- package/main/codegen/cosmos/lcd.js +269 -0
- package/main/codegen/cosmos/mint/v1beta1/genesis.js +85 -0
- package/main/codegen/cosmos/mint/v1beta1/mint.js +202 -0
- package/main/codegen/cosmos/mint/v1beta1/query.js +307 -0
- package/main/codegen/cosmos/mint/v1beta1/query.lcd.js +143 -0
- package/main/codegen/cosmos/mint/v1beta1/query.rpc.query.js +70 -0
- package/main/codegen/cosmos/msg/v1/msg.js +5 -0
- package/main/codegen/cosmos/nft/v1beta1/event.js +271 -0
- package/main/codegen/cosmos/nft/v1beta1/genesis.js +229 -0
- package/main/codegen/cosmos/nft/v1beta1/nft.js +252 -0
- package/main/codegen/cosmos/nft/v1beta1/query.js +944 -0
- package/main/codegen/cosmos/nft/v1beta1/query.lcd.js +336 -0
- package/main/codegen/cosmos/nft/v1beta1/query.rpc.query.js +114 -0
- package/main/codegen/cosmos/nft/v1beta1/tx.amino.js +36 -0
- package/main/codegen/cosmos/nft/v1beta1/tx.js +149 -0
- package/main/codegen/cosmos/nft/v1beta1/tx.registry.js +70 -0
- package/main/codegen/cosmos/nft/v1beta1/tx.rpc.msg.js +48 -0
- package/main/codegen/cosmos/orm/v1/orm.js +332 -0
- package/main/codegen/cosmos/orm/v1alpha1/schema.js +262 -0
- package/main/codegen/cosmos/params/v1beta1/params.js +206 -0
- package/main/codegen/cosmos/params/v1beta1/query.js +358 -0
- package/main/codegen/cosmos/params/v1beta1/query.lcd.js +124 -0
- package/main/codegen/cosmos/params/v1beta1/query.rpc.query.js +59 -0
- package/main/codegen/cosmos/rpc.query.js +252 -0
- package/main/codegen/cosmos/rpc.tx.js +226 -0
- package/main/codegen/cosmos/slashing/v1beta1/genesis.js +377 -0
- package/main/codegen/cosmos/slashing/v1beta1/query.js +380 -0
- package/main/codegen/cosmos/slashing/v1beta1/query.lcd.js +159 -0
- package/main/codegen/cosmos/slashing/v1beta1/query.rpc.query.js +70 -0
- package/main/codegen/cosmos/slashing/v1beta1/slashing.js +242 -0
- package/main/codegen/cosmos/slashing/v1beta1/tx.amino.js +24 -0
- package/main/codegen/cosmos/slashing/v1beta1/tx.js +113 -0
- package/main/codegen/cosmos/slashing/v1beta1/tx.registry.js +70 -0
- package/main/codegen/cosmos/slashing/v1beta1/tx.rpc.msg.js +48 -0
- package/main/codegen/cosmos/staking/v1beta1/authz.js +264 -0
- package/main/codegen/cosmos/staking/v1beta1/genesis.js +344 -0
- package/main/codegen/cosmos/staking/v1beta1/query.js +1961 -0
- package/main/codegen/cosmos/staking/v1beta1/query.lcd.js +635 -0
- package/main/codegen/cosmos/staking/v1beta1/query.rpc.query.js +191 -0
- package/main/codegen/cosmos/staking/v1beta1/staking.js +1905 -0
- package/main/codegen/cosmos/staking/v1beta1/tx.amino.js +217 -0
- package/main/codegen/cosmos/staking/v1beta1/tx.js +735 -0
- package/main/codegen/cosmos/staking/v1beta1/tx.registry.js +190 -0
- package/main/codegen/cosmos/staking/v1beta1/tx.rpc.msg.js +92 -0
- package/main/codegen/cosmos/tx/signing/v1beta1/signing.js +488 -0
- package/main/codegen/cosmos/tx/v1beta1/service.js +942 -0
- package/main/codegen/cosmos/tx/v1beta1/service.rpc.svc.js +92 -0
- package/main/codegen/cosmos/tx/v1beta1/tx.js +1317 -0
- package/main/codegen/cosmos/upgrade/v1beta1/query.js +577 -0
- package/main/codegen/cosmos/upgrade/v1beta1/query.lcd.js +230 -0
- package/main/codegen/cosmos/upgrade/v1beta1/query.rpc.query.js +92 -0
- package/main/codegen/cosmos/upgrade/v1beta1/tx.amino.js +64 -0
- package/main/codegen/cosmos/upgrade/v1beta1/tx.js +224 -0
- package/main/codegen/cosmos/upgrade/v1beta1/tx.registry.js +100 -0
- package/main/codegen/cosmos/upgrade/v1beta1/tx.rpc.msg.js +59 -0
- package/main/codegen/cosmos/upgrade/v1beta1/upgrade.js +344 -0
- package/main/codegen/cosmos/vesting/v1beta1/tx.amino.js +133 -0
- package/main/codegen/cosmos/vesting/v1beta1/tx.js +494 -0
- package/main/codegen/cosmos/vesting/v1beta1/tx.registry.js +130 -0
- package/main/codegen/cosmos/vesting/v1beta1/tx.rpc.msg.js +70 -0
- package/main/codegen/cosmos/vesting/v1beta1/vesting.js +570 -0
- package/main/codegen/cosmos_proto/bundle.js +26 -0
- package/main/codegen/cosmos_proto/cosmos.js +260 -0
- package/main/codegen/cosmwasm/bundle.js +61 -0
- package/main/codegen/cosmwasm/client.js +70 -0
- package/main/codegen/cosmwasm/lcd.js +287 -0
- package/main/codegen/cosmwasm/rpc.query.js +268 -0
- package/main/codegen/cosmwasm/rpc.tx.js +242 -0
- package/main/codegen/cosmwasm/wasm/v1/genesis.js +561 -0
- package/main/codegen/cosmwasm/wasm/v1/ibc.js +166 -0
- package/main/codegen/cosmwasm/wasm/v1/proposal.js +1037 -0
- package/main/codegen/cosmwasm/wasm/v1/query.js +1393 -0
- package/main/codegen/cosmwasm/wasm/v1/query.lcd.js +403 -0
- package/main/codegen/cosmwasm/wasm/v1/query.rpc.query.js +136 -0
- package/main/codegen/cosmwasm/wasm/v1/tx.amino.js +196 -0
- package/main/codegen/cosmwasm/wasm/v1/tx.js +924 -0
- package/main/codegen/cosmwasm/wasm/v1/tx.registry.js +220 -0
- package/main/codegen/cosmwasm/wasm/v1/tx.rpc.msg.js +103 -0
- package/main/codegen/cosmwasm/wasm/v1/types.js +783 -0
- package/main/codegen/gogoproto/bundle.js +26 -0
- package/main/codegen/gogoproto/gogo.js +5 -0
- package/main/codegen/google/api/annotations.js +5 -0
- package/main/codegen/google/api/http.js +369 -0
- package/main/codegen/google/bundle.js +49 -0
- package/main/codegen/google/protobuf/any.js +85 -0
- package/main/codegen/google/protobuf/descriptor.js +3991 -0
- package/main/codegen/google/protobuf/duration.js +85 -0
- package/main/codegen/google/protobuf/empty.js +54 -0
- package/main/codegen/google/protobuf/field_mask.js +99 -0
- package/main/codegen/google/protobuf/struct.js +425 -0
- package/main/codegen/google/protobuf/timestamp.js +85 -0
- package/main/codegen/google/protobuf/wrappers.js +525 -0
- package/main/codegen/ibc/applications/transfer/v1/genesis.js +128 -0
- package/main/codegen/ibc/applications/transfer/v1/query.js +380 -0
- package/main/codegen/ibc/applications/transfer/v1/query.lcd.js +151 -0
- package/main/codegen/ibc/applications/transfer/v1/query.rpc.query.js +70 -0
- package/main/codegen/ibc/applications/transfer/v1/transfer.js +154 -0
- package/main/codegen/ibc/applications/transfer/v1/tx.amino.js +65 -0
- package/main/codegen/ibc/applications/transfer/v1/tx.js +189 -0
- package/main/codegen/ibc/applications/transfer/v1/tx.registry.js +70 -0
- package/main/codegen/ibc/applications/transfer/v1/tx.rpc.msg.js +48 -0
- package/main/codegen/ibc/applications/transfer/v2/packet.js +109 -0
- package/main/codegen/ibc/bundle.js +199 -0
- package/main/codegen/ibc/client.js +82 -0
- package/main/codegen/ibc/core/channel/v1/channel.js +800 -0
- package/main/codegen/ibc/core/channel/v1/genesis.js +398 -0
- package/main/codegen/ibc/core/channel/v1/query.js +2336 -0
- package/main/codegen/ibc/core/channel/v1/query.lcd.js +647 -0
- package/main/codegen/ibc/core/channel/v1/query.rpc.query.js +180 -0
- package/main/codegen/ibc/core/channel/v1/tx.amino.js +520 -0
- package/main/codegen/ibc/core/channel/v1/tx.js +1470 -0
- package/main/codegen/ibc/core/channel/v1/tx.registry.js +340 -0
- package/main/codegen/ibc/core/channel/v1/tx.rpc.msg.js +147 -0
- package/main/codegen/ibc/core/client/v1/client.js +585 -0
- package/main/codegen/ibc/core/client/v1/genesis.js +367 -0
- package/main/codegen/ibc/core/client/v1/query.js +1047 -0
- package/main/codegen/ibc/core/client/v1/query.lcd.js +361 -0
- package/main/codegen/ibc/core/client/v1/query.rpc.query.js +125 -0
- package/main/codegen/ibc/core/client/v1/tx.amino.js +149 -0
- package/main/codegen/ibc/core/client/v1/tx.js +538 -0
- package/main/codegen/ibc/core/client/v1/tx.registry.js +160 -0
- package/main/codegen/ibc/core/client/v1/tx.rpc.msg.js +81 -0
- package/main/codegen/ibc/core/commitment/v1/commitment.js +297 -0
- package/main/codegen/ibc/core/connection/v1/connection.js +755 -0
- package/main/codegen/ibc/core/connection/v1/genesis.js +162 -0
- package/main/codegen/ibc/core/connection/v1/query.js +799 -0
- package/main/codegen/ibc/core/connection/v1/query.lcd.js +258 -0
- package/main/codegen/ibc/core/connection/v1/query.rpc.query.js +92 -0
- package/main/codegen/ibc/core/connection/v1/tx.amino.js +274 -0
- package/main/codegen/ibc/core/connection/v1/tx.js +763 -0
- package/main/codegen/ibc/core/connection/v1/tx.registry.js +160 -0
- package/main/codegen/ibc/core/connection/v1/tx.rpc.msg.js +81 -0
- package/main/codegen/ibc/core/port/v1/query.js +192 -0
- package/main/codegen/ibc/core/port/v1/query.rpc.query.js +48 -0
- package/main/codegen/ibc/core/types/v1/genesis.js +101 -0
- package/main/codegen/ibc/lcd.js +338 -0
- package/main/codegen/ibc/lightclients/localhost/v1/localhost.js +87 -0
- package/main/codegen/ibc/lightclients/solomachine/v1/solomachine.js +1384 -0
- package/main/codegen/ibc/lightclients/solomachine/v2/solomachine.js +1384 -0
- package/main/codegen/ibc/lightclients/tendermint/v1/tendermint.js +577 -0
- package/main/codegen/ibc/rpc.query.js +326 -0
- package/main/codegen/ibc/rpc.tx.js +287 -0
- package/main/codegen/ics23/bundle.js +26 -0
- package/main/codegen/index.js +174 -0
- package/main/codegen/juno/bundle.js +43 -0
- package/main/codegen/juno/lcd.js +284 -0
- package/main/codegen/juno/mint/genesis.js +85 -0
- package/main/codegen/juno/mint/mint.js +178 -0
- package/main/codegen/juno/mint/query.js +307 -0
- package/main/codegen/juno/mint/query.lcd.js +143 -0
- package/main/codegen/juno/mint/query.rpc.query.js +70 -0
- package/main/codegen/juno/rpc.query.js +265 -0
- package/main/codegen/tendermint/abci/types.js +4266 -0
- package/main/codegen/tendermint/bundle.js +63 -0
- package/main/codegen/tendermint/crypto/keys.js +85 -0
- package/main/codegen/tendermint/crypto/proof.js +447 -0
- package/main/codegen/tendermint/libs/bits/types.js +125 -0
- package/main/codegen/tendermint/p2p/types.js +509 -0
- package/main/codegen/tendermint/types/block.js +111 -0
- package/main/codegen/tendermint/types/evidence.js +407 -0
- package/main/codegen/tendermint/types/params.js +476 -0
- package/main/codegen/tendermint/types/types.js +1444 -0
- package/main/codegen/tendermint/types/validator.js +287 -0
- package/main/codegen/tendermint/version/types.js +152 -0
- package/main/index.js +18 -0
- package/module/codegen/JunoSwap.client.js +178 -0
- package/module/codegen/JunoSwap.react-query.js +119 -0
- package/module/codegen/JunoSwap.types.js +1 -0
- package/module/codegen/confio/proofs.js +1371 -0
- package/module/codegen/contracts.js +19 -0
- package/module/codegen/cosmos/app/v1alpha1/config.js +148 -0
- package/module/codegen/cosmos/app/v1alpha1/module.js +227 -0
- package/module/codegen/cosmos/app/v1alpha1/query.js +104 -0
- package/module/codegen/cosmos/app/v1alpha1/query.rpc.query.js +20 -0
- package/module/codegen/cosmos/auth/v1beta1/auth.js +297 -0
- package/module/codegen/cosmos/auth/v1beta1/genesis.js +82 -0
- package/module/codegen/cosmos/auth/v1beta1/query.js +806 -0
- package/module/codegen/cosmos/auth/v1beta1/query.lcd.js +86 -0
- package/module/codegen/cosmos/auth/v1beta1/query.rpc.query.js +62 -0
- package/module/codegen/cosmos/authz/v1beta1/authz.js +298 -0
- package/module/codegen/cosmos/authz/v1beta1/event.js +169 -0
- package/module/codegen/cosmos/authz/v1beta1/genesis.js +67 -0
- package/module/codegen/cosmos/authz/v1beta1/query.js +473 -0
- package/module/codegen/cosmos/authz/v1beta1/query.lcd.js +72 -0
- package/module/codegen/cosmos/authz/v1beta1/query.rpc.query.js +34 -0
- package/module/codegen/cosmos/authz/v1beta1/tx.amino.js +91 -0
- package/module/codegen/cosmos/authz/v1beta1/tx.js +402 -0
- package/module/codegen/cosmos/authz/v1beta1/tx.registry.js +124 -0
- package/module/codegen/cosmos/authz/v1beta1/tx.rpc.msg.js +34 -0
- package/module/codegen/cosmos/bank/v1beta1/authz.js +67 -0
- package/module/codegen/cosmos/bank/v1beta1/bank.js +609 -0
- package/module/codegen/cosmos/bank/v1beta1/genesis.js +193 -0
- package/module/codegen/cosmos/bank/v1beta1/query.js +1249 -0
- package/module/codegen/cosmos/bank/v1beta1/query.lcd.js +133 -0
- package/module/codegen/cosmos/bank/v1beta1/query.rpc.query.js +76 -0
- package/module/codegen/cosmos/bank/v1beta1/tx.amino.js +78 -0
- package/module/codegen/cosmos/bank/v1beta1/tx.js +262 -0
- package/module/codegen/cosmos/bank/v1beta1/tx.registry.js +89 -0
- package/module/codegen/cosmos/bank/v1beta1/tx.rpc.msg.js +27 -0
- package/module/codegen/cosmos/base/abci/v1beta1/abci.js +982 -0
- package/module/codegen/cosmos/base/kv/v1beta1/kv.js +139 -0
- package/module/codegen/cosmos/base/query/v1beta1/pagination.js +189 -0
- package/module/codegen/cosmos/base/reflection/v1beta1/reflection.js +235 -0
- package/module/codegen/cosmos/base/reflection/v2alpha1/reflection.js +1654 -0
- package/module/codegen/cosmos/base/snapshots/v1beta1/snapshot.js +712 -0
- package/module/codegen/cosmos/base/store/v1beta1/commit_info.js +225 -0
- package/module/codegen/cosmos/base/store/v1beta1/listening.js +104 -0
- package/module/codegen/cosmos/base/tendermint/v1beta1/query.js +1091 -0
- package/module/codegen/cosmos/base/tendermint/v1beta1/query.rpc.svc.js +55 -0
- package/module/codegen/cosmos/base/v1beta1/coin.js +268 -0
- package/module/codegen/cosmos/bundle.js +397 -0
- package/module/codegen/cosmos/capability/v1beta1/capability.js +199 -0
- package/module/codegen/cosmos/capability/v1beta1/genesis.js +150 -0
- package/module/codegen/cosmos/client.js +48 -0
- package/module/codegen/cosmos/crisis/v1beta1/genesis.js +61 -0
- package/module/codegen/cosmos/crisis/v1beta1/tx.amino.js +27 -0
- package/module/codegen/cosmos/crisis/v1beta1/tx.js +129 -0
- package/module/codegen/cosmos/crisis/v1beta1/tx.registry.js +54 -0
- package/module/codegen/cosmos/crisis/v1beta1/tx.rpc.msg.js +20 -0
- package/module/codegen/cosmos/crypto/ed25519/keys.js +127 -0
- package/module/codegen/cosmos/crypto/hd/v1/hd.js +110 -0
- package/module/codegen/cosmos/crypto/keyring/v1/record.js +338 -0
- package/module/codegen/cosmos/crypto/multisig/keys.js +85 -0
- package/module/codegen/cosmos/crypto/multisig/v1beta1/multisig.js +143 -0
- package/module/codegen/cosmos/crypto/secp256k1/keys.js +127 -0
- package/module/codegen/cosmos/crypto/secp256r1/keys.js +121 -0
- package/module/codegen/cosmos/distribution/v1beta1/distribution.js +952 -0
- package/module/codegen/cosmos/distribution/v1beta1/genesis.js +764 -0
- package/module/codegen/cosmos/distribution/v1beta1/query.js +1137 -0
- package/module/codegen/cosmos/distribution/v1beta1/query.lcd.js +147 -0
- package/module/codegen/cosmos/distribution/v1beta1/query.rpc.query.js +76 -0
- package/module/codegen/cosmos/distribution/v1beta1/tx.amino.js +88 -0
- package/module/codegen/cosmos/distribution/v1beta1/tx.js +501 -0
- package/module/codegen/cosmos/distribution/v1beta1/tx.registry.js +159 -0
- package/module/codegen/cosmos/distribution/v1beta1/tx.rpc.msg.js +41 -0
- package/module/codegen/cosmos/evidence/v1beta1/evidence.js +102 -0
- package/module/codegen/cosmos/evidence/v1beta1/genesis.js +67 -0
- package/module/codegen/cosmos/evidence/v1beta1/query.js +255 -0
- package/module/codegen/cosmos/evidence/v1beta1/query.lcd.js +41 -0
- package/module/codegen/cosmos/evidence/v1beta1/query.rpc.query.js +27 -0
- package/module/codegen/cosmos/evidence/v1beta1/tx.amino.js +29 -0
- package/module/codegen/cosmos/evidence/v1beta1/tx.js +137 -0
- package/module/codegen/cosmos/evidence/v1beta1/tx.registry.js +54 -0
- package/module/codegen/cosmos/evidence/v1beta1/tx.rpc.msg.js +20 -0
- package/module/codegen/cosmos/feegrant/v1beta1/feegrant.js +365 -0
- package/module/codegen/cosmos/feegrant/v1beta1/genesis.js +67 -0
- package/module/codegen/cosmos/feegrant/v1beta1/query.js +429 -0
- package/module/codegen/cosmos/feegrant/v1beta1/query.lcd.js +49 -0
- package/module/codegen/cosmos/feegrant/v1beta1/query.rpc.query.js +34 -0
- package/module/codegen/cosmos/feegrant/v1beta1/tx.amino.js +54 -0
- package/module/codegen/cosmos/feegrant/v1beta1/tx.js +247 -0
- package/module/codegen/cosmos/feegrant/v1beta1/tx.registry.js +89 -0
- package/module/codegen/cosmos/feegrant/v1beta1/tx.rpc.msg.js +27 -0
- package/module/codegen/cosmos/genutil/v1beta1/genesis.js +68 -0
- package/module/codegen/cosmos/gov/v1/genesis.js +151 -0
- package/module/codegen/cosmos/gov/v1/gov.js +893 -0
- package/module/codegen/cosmos/gov/v1/query.js +1093 -0
- package/module/codegen/cosmos/gov/v1/query.lcd.js +151 -0
- package/module/codegen/cosmos/gov/v1/query.rpc.query.js +69 -0
- package/module/codegen/cosmos/gov/v1/tx.amino.js +167 -0
- package/module/codegen/cosmos/gov/v1/tx.js +700 -0
- package/module/codegen/cosmos/gov/v1/tx.registry.js +194 -0
- package/module/codegen/cosmos/gov/v1/tx.rpc.msg.js +48 -0
- package/module/codegen/cosmos/gov/v1beta1/genesis.js +151 -0
- package/module/codegen/cosmos/gov/v1beta1/gov.js +950 -0
- package/module/codegen/cosmos/gov/v1beta1/query.js +1093 -0
- package/module/codegen/cosmos/gov/v1beta1/query.lcd.js +151 -0
- package/module/codegen/cosmos/gov/v1beta1/query.rpc.query.js +69 -0
- package/module/codegen/cosmos/gov/v1beta1/tx.amino.js +128 -0
- package/module/codegen/cosmos/gov/v1beta1/tx.js +545 -0
- package/module/codegen/cosmos/gov/v1beta1/tx.registry.js +159 -0
- package/module/codegen/cosmos/gov/v1beta1/tx.rpc.msg.js +41 -0
- package/module/codegen/cosmos/group/v1/events.js +549 -0
- package/module/codegen/cosmos/group/v1/genesis.js +175 -0
- package/module/codegen/cosmos/group/v1/query.js +1769 -0
- package/module/codegen/cosmos/group/v1/query.lcd.js +210 -0
- package/module/codegen/cosmos/group/v1/query.rpc.query.js +104 -0
- package/module/codegen/cosmos/group/v1/tx.amino.js +429 -0
- package/module/codegen/cosmos/group/v1/tx.js +1969 -0
- package/module/codegen/cosmos/group/v1/tx.registry.js +509 -0
- package/module/codegen/cosmos/group/v1/tx.rpc.msg.js +111 -0
- package/module/codegen/cosmos/group/v1/types.js +1350 -0
- package/module/codegen/cosmos/lcd.js +79 -0
- package/module/codegen/cosmos/mint/v1beta1/genesis.js +73 -0
- package/module/codegen/cosmos/mint/v1beta1/mint.js +193 -0
- package/module/codegen/cosmos/mint/v1beta1/query.js +308 -0
- package/module/codegen/cosmos/mint/v1beta1/query.lcd.js +32 -0
- package/module/codegen/cosmos/mint/v1beta1/query.rpc.query.js +34 -0
- package/module/codegen/cosmos/msg/v1/msg.js +1 -0
- package/module/codegen/cosmos/nft/v1beta1/event.js +264 -0
- package/module/codegen/cosmos/nft/v1beta1/genesis.js +163 -0
- package/module/codegen/cosmos/nft/v1beta1/nft.js +242 -0
- package/module/codegen/cosmos/nft/v1beta1/query.js +917 -0
- package/module/codegen/cosmos/nft/v1beta1/query.lcd.js +125 -0
- package/module/codegen/cosmos/nft/v1beta1/query.rpc.query.js +62 -0
- package/module/codegen/cosmos/nft/v1beta1/tx.amino.js +31 -0
- package/module/codegen/cosmos/nft/v1beta1/tx.js +141 -0
- package/module/codegen/cosmos/nft/v1beta1/tx.registry.js +54 -0
- package/module/codegen/cosmos/nft/v1beta1/tx.rpc.msg.js +20 -0
- package/module/codegen/cosmos/orm/v1/orm.js +305 -0
- package/module/codegen/cosmos/orm/v1alpha1/schema.js +225 -0
- package/module/codegen/cosmos/params/v1beta1/params.js +175 -0
- package/module/codegen/cosmos/params/v1beta1/query.js +317 -0
- package/module/codegen/cosmos/params/v1beta1/query.lcd.js +38 -0
- package/module/codegen/cosmos/params/v1beta1/query.rpc.query.js +27 -0
- package/module/codegen/cosmos/rpc.query.js +52 -0
- package/module/codegen/cosmos/rpc.tx.js +46 -0
- package/module/codegen/cosmos/slashing/v1beta1/genesis.js +317 -0
- package/module/codegen/cosmos/slashing/v1beta1/query.js +355 -0
- package/module/codegen/cosmos/slashing/v1beta1/query.lcd.js +48 -0
- package/module/codegen/cosmos/slashing/v1beta1/query.rpc.query.js +34 -0
- package/module/codegen/cosmos/slashing/v1beta1/slashing.js +234 -0
- package/module/codegen/cosmos/slashing/v1beta1/tx.amino.js +19 -0
- package/module/codegen/cosmos/slashing/v1beta1/tx.js +105 -0
- package/module/codegen/cosmos/slashing/v1beta1/tx.registry.js +54 -0
- package/module/codegen/cosmos/slashing/v1beta1/tx.rpc.msg.js +20 -0
- package/module/codegen/cosmos/staking/v1beta1/authz.js +226 -0
- package/module/codegen/cosmos/staking/v1beta1/genesis.js +244 -0
- package/module/codegen/cosmos/staking/v1beta1/query.js +1879 -0
- package/module/codegen/cosmos/staking/v1beta1/query.lcd.js +249 -0
- package/module/codegen/cosmos/staking/v1beta1/query.rpc.query.js +111 -0
- package/module/codegen/cosmos/staking/v1beta1/staking.js +1803 -0
- package/module/codegen/cosmos/staking/v1beta1/tx.amino.js +216 -0
- package/module/codegen/cosmos/staking/v1beta1/tx.js +741 -0
- package/module/codegen/cosmos/staking/v1beta1/tx.registry.js +194 -0
- package/module/codegen/cosmos/staking/v1beta1/tx.rpc.msg.js +48 -0
- package/module/codegen/cosmos/tx/signing/v1beta1/signing.js +439 -0
- package/module/codegen/cosmos/tx/v1beta1/service.js +860 -0
- package/module/codegen/cosmos/tx/v1beta1/service.rpc.svc.js +48 -0
- package/module/codegen/cosmos/tx/v1beta1/tx.js +1171 -0
- package/module/codegen/cosmos/upgrade/v1beta1/query.js +565 -0
- package/module/codegen/cosmos/upgrade/v1beta1/query.lcd.js +69 -0
- package/module/codegen/cosmos/upgrade/v1beta1/query.rpc.query.js +48 -0
- package/module/codegen/cosmos/upgrade/v1beta1/tx.amino.js +59 -0
- package/module/codegen/cosmos/upgrade/v1beta1/tx.js +224 -0
- package/module/codegen/cosmos/upgrade/v1beta1/tx.registry.js +89 -0
- package/module/codegen/cosmos/upgrade/v1beta1/tx.rpc.msg.js +27 -0
- package/module/codegen/cosmos/upgrade/v1beta1/upgrade.js +337 -0
- package/module/codegen/cosmos/vesting/v1beta1/tx.amino.js +114 -0
- package/module/codegen/cosmos/vesting/v1beta1/tx.js +440 -0
- package/module/codegen/cosmos/vesting/v1beta1/tx.registry.js +124 -0
- package/module/codegen/cosmos/vesting/v1beta1/tx.rpc.msg.js +34 -0
- package/module/codegen/cosmos/vesting/v1beta1/vesting.js +480 -0
- package/module/codegen/cosmos_proto/bundle.js +8 -0
- package/module/codegen/cosmos_proto/cosmos.js +222 -0
- package/module/codegen/cosmwasm/bundle.js +31 -0
- package/module/codegen/cosmwasm/client.js +23 -0
- package/module/codegen/cosmwasm/lcd.js +86 -0
- package/module/codegen/cosmwasm/rpc.query.js +57 -0
- package/module/codegen/cosmwasm/rpc.tx.js +51 -0
- package/module/codegen/cosmwasm/wasm/v1/genesis.js +469 -0
- package/module/codegen/cosmwasm/wasm/v1/ibc.js +157 -0
- package/module/codegen/cosmwasm/wasm/v1/proposal.js +968 -0
- package/module/codegen/cosmwasm/wasm/v1/query.js +1332 -0
- package/module/codegen/cosmwasm/wasm/v1/query.lcd.js +142 -0
- package/module/codegen/cosmwasm/wasm/v1/query.rpc.query.js +76 -0
- package/module/codegen/cosmwasm/wasm/v1/tx.amino.js +189 -0
- package/module/codegen/cosmwasm/wasm/v1/tx.js +895 -0
- package/module/codegen/cosmwasm/wasm/v1/tx.registry.js +229 -0
- package/module/codegen/cosmwasm/wasm/v1/tx.rpc.msg.js +55 -0
- package/module/codegen/cosmwasm/wasm/v1/types.js +774 -0
- package/module/codegen/gogoproto/bundle.js +8 -0
- package/module/codegen/gogoproto/gogo.js +1 -0
- package/module/codegen/google/api/annotations.js +1 -0
- package/module/codegen/google/api/http.js +328 -0
- package/module/codegen/google/bundle.js +23 -0
- package/module/codegen/google/protobuf/any.js +154 -0
- package/module/codegen/google/protobuf/descriptor.js +3420 -0
- package/module/codegen/google/protobuf/duration.js +133 -0
- package/module/codegen/google/protobuf/empty.js +44 -0
- package/module/codegen/google/protobuf/field_mask.js +66 -0
- package/module/codegen/google/protobuf/struct.js +374 -0
- package/module/codegen/google/protobuf/timestamp.js +157 -0
- package/module/codegen/google/protobuf/wrappers.js +534 -0
- package/module/codegen/ibc/applications/transfer/v1/genesis.js +93 -0
- package/module/codegen/ibc/applications/transfer/v1/query.js +358 -0
- package/module/codegen/ibc/applications/transfer/v1/query.lcd.js +40 -0
- package/module/codegen/ibc/applications/transfer/v1/query.rpc.query.js +34 -0
- package/module/codegen/ibc/applications/transfer/v1/transfer.js +148 -0
- package/module/codegen/ibc/applications/transfer/v1/tx.amino.js +58 -0
- package/module/codegen/ibc/applications/transfer/v1/tx.js +183 -0
- package/module/codegen/ibc/applications/transfer/v1/tx.registry.js +54 -0
- package/module/codegen/ibc/applications/transfer/v1/tx.rpc.msg.js +20 -0
- package/module/codegen/ibc/applications/transfer/v2/packet.js +102 -0
- package/module/codegen/ibc/bundle.js +135 -0
- package/module/codegen/ibc/client.js +29 -0
- package/module/codegen/ibc/core/channel/v1/channel.js +749 -0
- package/module/codegen/ibc/core/channel/v1/genesis.js +266 -0
- package/module/codegen/ibc/core/channel/v1/query.js +2219 -0
- package/module/codegen/ibc/core/channel/v1/query.lcd.js +286 -0
- package/module/codegen/ibc/core/channel/v1/query.rpc.query.js +104 -0
- package/module/codegen/ibc/core/channel/v1/tx.amino.js +530 -0
- package/module/codegen/ibc/core/channel/v1/tx.js +1508 -0
- package/module/codegen/ibc/core/channel/v1/tx.registry.js +369 -0
- package/module/codegen/ibc/core/channel/v1/tx.rpc.msg.js +83 -0
- package/module/codegen/ibc/core/client/v1/client.js +549 -0
- package/module/codegen/ibc/core/client/v1/genesis.js +287 -0
- package/module/codegen/ibc/core/client/v1/query.js +1029 -0
- package/module/codegen/ibc/core/client/v1/query.lcd.js +125 -0
- package/module/codegen/ibc/core/client/v1/query.rpc.query.js +69 -0
- package/module/codegen/ibc/core/client/v1/tx.amino.js +150 -0
- package/module/codegen/ibc/core/client/v1/tx.js +544 -0
- package/module/codegen/ibc/core/client/v1/tx.registry.js +159 -0
- package/module/codegen/ibc/core/client/v1/tx.rpc.msg.js +41 -0
- package/module/codegen/ibc/core/commitment/v1/commitment.js +255 -0
- package/module/codegen/ibc/core/connection/v1/connection.js +663 -0
- package/module/codegen/ibc/core/connection/v1/genesis.js +110 -0
- package/module/codegen/ibc/core/connection/v1/query.js +766 -0
- package/module/codegen/ibc/core/connection/v1/query.lcd.js +97 -0
- package/module/codegen/ibc/core/connection/v1/query.rpc.query.js +48 -0
- package/module/codegen/ibc/core/connection/v1/tx.amino.js +269 -0
- package/module/codegen/ibc/core/connection/v1/tx.js +747 -0
- package/module/codegen/ibc/core/connection/v1/tx.registry.js +159 -0
- package/module/codegen/ibc/core/connection/v1/tx.rpc.msg.js +41 -0
- package/module/codegen/ibc/core/port/v1/query.js +182 -0
- package/module/codegen/ibc/core/port/v1/query.rpc.query.js +20 -0
- package/module/codegen/ibc/core/types/v1/genesis.js +87 -0
- package/module/codegen/ibc/lcd.js +105 -0
- package/module/codegen/ibc/lightclients/localhost/v1/localhost.js +78 -0
- package/module/codegen/ibc/lightclients/solomachine/v1/solomachine.js +1394 -0
- package/module/codegen/ibc/lightclients/solomachine/v2/solomachine.js +1394 -0
- package/module/codegen/ibc/lightclients/tendermint/v1/tendermint.js +531 -0
- package/module/codegen/ibc/rpc.query.js +73 -0
- package/module/codegen/ibc/rpc.tx.js +64 -0
- package/module/codegen/ics23/bundle.js +8 -0
- package/module/codegen/index.js +18 -0
- package/module/codegen/juno/bundle.js +20 -0
- package/module/codegen/juno/lcd.js +84 -0
- package/module/codegen/juno/mint/genesis.js +73 -0
- package/module/codegen/juno/mint/mint.js +169 -0
- package/module/codegen/juno/mint/query.js +308 -0
- package/module/codegen/juno/mint/query.lcd.js +32 -0
- package/module/codegen/juno/mint/query.rpc.query.js +34 -0
- package/module/codegen/juno/rpc.query.js +55 -0
- package/module/codegen/tendermint/abci/types.js +4105 -0
- package/module/codegen/tendermint/bundle.js +36 -0
- package/module/codegen/tendermint/crypto/keys.js +74 -0
- package/module/codegen/tendermint/crypto/proof.js +405 -0
- package/module/codegen/tendermint/libs/bits/types.js +91 -0
- package/module/codegen/tendermint/p2p/types.js +482 -0
- package/module/codegen/tendermint/types/block.js +97 -0
- package/module/codegen/tendermint/types/evidence.js +359 -0
- package/module/codegen/tendermint/types/params.js +455 -0
- package/module/codegen/tendermint/types/types.js +1404 -0
- package/module/codegen/tendermint/types/validator.js +256 -0
- package/module/codegen/tendermint/version/types.js +147 -0
- package/module/index.js +1 -0
- package/package.json +93 -0
- package/types/codegen/JunoSwap.client.d.ts +120 -0
- package/types/codegen/JunoSwap.react-query.d.ts +128 -0
- package/types/codegen/JunoSwap.types.d.ts +124 -0
- package/types/codegen/confio/proofs.d.ts +309 -0
- package/types/codegen/contracts.d.ts +23 -0
- package/types/codegen/cosmos/app/v1alpha1/config.d.ts +51 -0
- package/types/codegen/cosmos/app/v1alpha1/module.d.ts +105 -0
- package/types/codegen/cosmos/app/v1alpha1/query.d.ts +25 -0
- package/types/codegen/cosmos/app/v1alpha1/query.rpc.query.d.ts +11 -0
- package/types/codegen/cosmos/auth/v1beta1/auth.d.ts +49 -0
- package/types/codegen/cosmos/auth/v1beta1/genesis.d.ts +18 -0
- package/types/codegen/cosmos/auth/v1beta1/query.d.ts +171 -0
- package/types/codegen/cosmos/auth/v1beta1/query.lcd.d.ts +14 -0
- package/types/codegen/cosmos/auth/v1beta1/query.rpc.query.d.ts +23 -0
- package/types/codegen/cosmos/authz/v1beta1/authz.d.ts +67 -0
- package/types/codegen/cosmos/authz/v1beta1/event.d.ts +34 -0
- package/types/codegen/cosmos/authz/v1beta1/genesis.d.ts +14 -0
- package/types/codegen/cosmos/authz/v1beta1/query.d.ts +88 -0
- package/types/codegen/cosmos/authz/v1beta1/query.lcd.d.ts +10 -0
- package/types/codegen/cosmos/authz/v1beta1/query.rpc.query.d.ts +15 -0
- package/types/codegen/cosmos/authz/v1beta1/tx.amino.d.ts +54 -0
- package/types/codegen/cosmos/authz/v1beta1/tx.d.ts +88 -0
- package/types/codegen/cosmos/authz/v1beta1/tx.registry.d.ts +76 -0
- package/types/codegen/cosmos/authz/v1beta1/tx.rpc.msg.d.ts +15 -0
- package/types/codegen/cosmos/bank/v1beta1/authz.d.ts +19 -0
- package/types/codegen/cosmos/bank/v1beta1/bank.d.ts +144 -0
- package/types/codegen/cosmos/bank/v1beta1/genesis.d.ts +42 -0
- package/types/codegen/cosmos/bank/v1beta1/query.d.ts +286 -0
- package/types/codegen/cosmos/bank/v1beta1/query.lcd.d.ts +16 -0
- package/types/codegen/cosmos/bank/v1beta1/query.rpc.query.d.ts +27 -0
- package/types/codegen/cosmos/bank/v1beta1/tx.amino.d.ts +44 -0
- package/types/codegen/cosmos/bank/v1beta1/tx.d.ts +49 -0
- package/types/codegen/cosmos/bank/v1beta1/tx.registry.d.ts +56 -0
- package/types/codegen/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +13 -0
- package/types/codegen/cosmos/base/abci/v1beta1/abci.d.ts +224 -0
- package/types/codegen/cosmos/base/kv/v1beta1/kv.d.ts +25 -0
- package/types/codegen/cosmos/base/query/v1beta1/pagination.d.ts +79 -0
- package/types/codegen/cosmos/base/reflection/v1beta1/reflection.d.ts +53 -0
- package/types/codegen/cosmos/base/reflection/v2alpha1/reflection.d.ts +375 -0
- package/types/codegen/cosmos/base/snapshots/v1beta1/snapshot.d.ts +118 -0
- package/types/codegen/cosmos/base/store/v1beta1/commit_info.d.ts +47 -0
- package/types/codegen/cosmos/base/store/v1beta1/listening.d.ts +24 -0
- package/types/codegen/cosmos/base/tendermint/v1beta1/query.d.ts +197 -0
- package/types/codegen/cosmos/base/tendermint/v1beta1/query.rpc.svc.d.ts +21 -0
- package/types/codegen/cosmos/base/v1beta1/coin.d.ts +58 -0
- package/types/codegen/cosmos/bundle.d.ts +11945 -0
- package/types/codegen/cosmos/capability/v1beta1/capability.d.ts +45 -0
- package/types/codegen/cosmos/capability/v1beta1/genesis.d.ts +34 -0
- package/types/codegen/cosmos/client.d.ts +6 -0
- package/types/codegen/cosmos/crisis/v1beta1/genesis.d.ts +18 -0
- package/types/codegen/cosmos/crisis/v1beta1/tx.amino.d.ts +17 -0
- package/types/codegen/cosmos/crisis/v1beta1/tx.d.ts +25 -0
- package/types/codegen/cosmos/crisis/v1beta1/tx.registry.d.ts +36 -0
- package/types/codegen/cosmos/crisis/v1beta1/tx.rpc.msg.d.ts +11 -0
- package/types/codegen/cosmos/crypto/ed25519/keys.d.ts +33 -0
- package/types/codegen/cosmos/crypto/hd/v1/hd.d.ts +25 -0
- package/types/codegen/cosmos/crypto/keyring/v1/record.d.ts +72 -0
- package/types/codegen/cosmos/crypto/multisig/keys.d.ts +19 -0
- package/types/codegen/cosmos/crypto/multisig/v1beta1/multisig.d.ts +34 -0
- package/types/codegen/cosmos/crypto/secp256k1/keys.d.ts +30 -0
- package/types/codegen/cosmos/crypto/secp256r1/keys.d.ts +29 -0
- package/types/codegen/cosmos/distribution/v1beta1/distribution.d.ts +196 -0
- package/types/codegen/cosmos/distribution/v1beta1/genesis.d.ts +150 -0
- package/types/codegen/cosmos/distribution/v1beta1/query.d.ts +276 -0
- package/types/codegen/cosmos/distribution/v1beta1/query.lcd.d.ts +16 -0
- package/types/codegen/cosmos/distribution/v1beta1/query.rpc.query.d.ts +27 -0
- package/types/codegen/cosmos/distribution/v1beta1/tx.amino.d.ts +54 -0
- package/types/codegen/cosmos/distribution/v1beta1/tx.d.ts +104 -0
- package/types/codegen/cosmos/distribution/v1beta1/tx.registry.d.ts +96 -0
- package/types/codegen/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +17 -0
- package/types/codegen/cosmos/evidence/v1beta1/evidence.d.ts +19 -0
- package/types/codegen/cosmos/evidence/v1beta1/genesis.d.ts +15 -0
- package/types/codegen/cosmos/evidence/v1beta1/query.d.ts +60 -0
- package/types/codegen/cosmos/evidence/v1beta1/query.lcd.d.ts +9 -0
- package/types/codegen/cosmos/evidence/v1beta1/query.rpc.query.d.ts +13 -0
- package/types/codegen/cosmos/evidence/v1beta1/tx.amino.d.ts +19 -0
- package/types/codegen/cosmos/evidence/v1beta1/tx.d.ts +30 -0
- package/types/codegen/cosmos/evidence/v1beta1/tx.registry.d.ts +36 -0
- package/types/codegen/cosmos/evidence/v1beta1/tx.rpc.msg.d.ts +11 -0
- package/types/codegen/cosmos/feegrant/v1beta1/feegrant.d.ts +89 -0
- package/types/codegen/cosmos/feegrant/v1beta1/genesis.d.ts +14 -0
- package/types/codegen/cosmos/feegrant/v1beta1/query.d.ts +84 -0
- package/types/codegen/cosmos/feegrant/v1beta1/query.lcd.d.ts +10 -0
- package/types/codegen/cosmos/feegrant/v1beta1/query.rpc.query.d.ts +15 -0
- package/types/codegen/cosmos/feegrant/v1beta1/tx.amino.d.ts +32 -0
- package/types/codegen/cosmos/feegrant/v1beta1/tx.d.ts +56 -0
- package/types/codegen/cosmos/feegrant/v1beta1/tx.registry.d.ts +56 -0
- package/types/codegen/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +13 -0
- package/types/codegen/cosmos/genutil/v1beta1/genesis.d.ts +14 -0
- package/types/codegen/cosmos/gov/v1/genesis.d.ts +27 -0
- package/types/codegen/cosmos/gov/v1/gov.d.ts +191 -0
- package/types/codegen/cosmos/gov/v1/query.d.ts +223 -0
- package/types/codegen/cosmos/gov/v1/query.lcd.d.ts +15 -0
- package/types/codegen/cosmos/gov/v1/query.rpc.query.d.ts +25 -0
- package/types/codegen/cosmos/gov/v1/tx.amino.d.ts +86 -0
- package/types/codegen/cosmos/gov/v1/tx.d.ts +132 -0
- package/types/codegen/cosmos/gov/v1/tx.registry.d.ts +116 -0
- package/types/codegen/cosmos/gov/v1/tx.rpc.msg.d.ts +19 -0
- package/types/codegen/cosmos/gov/v1beta1/genesis.d.ts +27 -0
- package/types/codegen/cosmos/gov/v1beta1/gov.d.ts +214 -0
- package/types/codegen/cosmos/gov/v1beta1/query.d.ts +223 -0
- package/types/codegen/cosmos/gov/v1beta1/query.lcd.d.ts +15 -0
- package/types/codegen/cosmos/gov/v1beta1/query.rpc.query.d.ts +25 -0
- package/types/codegen/cosmos/gov/v1beta1/tx.amino.d.ts +68 -0
- package/types/codegen/cosmos/gov/v1beta1/tx.d.ts +109 -0
- package/types/codegen/cosmos/gov/v1beta1/tx.registry.d.ts +96 -0
- package/types/codegen/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +17 -0
- package/types/codegen/cosmos/group/v1/events.d.ts +115 -0
- package/types/codegen/cosmos/group/v1/genesis.d.ts +38 -0
- package/types/codegen/cosmos/group/v1/query.d.ts +350 -0
- package/types/codegen/cosmos/group/v1/query.lcd.d.ts +20 -0
- package/types/codegen/cosmos/group/v1/query.rpc.query.d.ts +35 -0
- package/types/codegen/cosmos/group/v1/tx.amino.d.ts +227 -0
- package/types/codegen/cosmos/group/v1/tx.d.ts +419 -0
- package/types/codegen/cosmos/group/v1/tx.registry.d.ts +296 -0
- package/types/codegen/cosmos/group/v1/tx.rpc.msg.d.ts +37 -0
- package/types/codegen/cosmos/group/v1/types.d.ts +324 -0
- package/types/codegen/cosmos/lcd.d.ts +49 -0
- package/types/codegen/cosmos/mint/v1beta1/genesis.d.ts +17 -0
- package/types/codegen/cosmos/mint/v1beta1/mint.d.ts +38 -0
- package/types/codegen/cosmos/mint/v1beta1/query.d.ts +78 -0
- package/types/codegen/cosmos/mint/v1beta1/query.lcd.d.ts +10 -0
- package/types/codegen/cosmos/mint/v1beta1/query.rpc.query.d.ts +15 -0
- package/types/codegen/cosmos/msg/v1/msg.d.ts +1 -0
- package/types/codegen/cosmos/nft/v1beta1/event.d.ts +42 -0
- package/types/codegen/cosmos/nft/v1beta1/genesis.d.ts +30 -0
- package/types/codegen/cosmos/nft/v1beta1/nft.d.ts +47 -0
- package/types/codegen/cosmos/nft/v1beta1/query.d.ts +166 -0
- package/types/codegen/cosmos/nft/v1beta1/query.lcd.d.ts +14 -0
- package/types/codegen/cosmos/nft/v1beta1/query.rpc.query.d.ts +23 -0
- package/types/codegen/cosmos/nft/v1beta1/tx.amino.d.ts +18 -0
- package/types/codegen/cosmos/nft/v1beta1/tx.d.ts +30 -0
- package/types/codegen/cosmos/nft/v1beta1/tx.registry.d.ts +36 -0
- package/types/codegen/cosmos/nft/v1beta1/tx.rpc.msg.d.ts +11 -0
- package/types/codegen/cosmos/orm/v1/orm.d.ts +117 -0
- package/types/codegen/cosmos/orm/v1alpha1/schema.d.ts +90 -0
- package/types/codegen/cosmos/params/v1beta1/params.d.ts +31 -0
- package/types/codegen/cosmos/params/v1beta1/query.d.ts +71 -0
- package/types/codegen/cosmos/params/v1beta1/query.lcd.d.ts +9 -0
- package/types/codegen/cosmos/params/v1beta1/query.rpc.query.d.ts +13 -0
- package/types/codegen/cosmos/rpc.query.d.ts +53 -0
- package/types/codegen/cosmos/rpc.tx.d.ts +47 -0
- package/types/codegen/cosmos/slashing/v1beta1/genesis.d.ts +70 -0
- package/types/codegen/cosmos/slashing/v1beta1/query.d.ts +85 -0
- package/types/codegen/cosmos/slashing/v1beta1/query.lcd.d.ts +10 -0
- package/types/codegen/cosmos/slashing/v1beta1/query.rpc.query.d.ts +15 -0
- package/types/codegen/cosmos/slashing/v1beta1/slashing.d.ts +52 -0
- package/types/codegen/cosmos/slashing/v1beta1/tx.amino.d.ts +15 -0
- package/types/codegen/cosmos/slashing/v1beta1/tx.d.ts +23 -0
- package/types/codegen/cosmos/slashing/v1beta1/tx.registry.d.ts +36 -0
- package/types/codegen/cosmos/slashing/v1beta1/tx.rpc.msg.d.ts +11 -0
- package/types/codegen/cosmos/staking/v1beta1/authz.d.ts +60 -0
- package/types/codegen/cosmos/staking/v1beta1/genesis.d.ts +48 -0
- package/types/codegen/cosmos/staking/v1beta1/query.d.ts +424 -0
- package/types/codegen/cosmos/staking/v1beta1/query.lcd.d.ts +21 -0
- package/types/codegen/cosmos/staking/v1beta1/query.rpc.query.d.ts +37 -0
- package/types/codegen/cosmos/staking/v1beta1/staking.d.ts +378 -0
- package/types/codegen/cosmos/staking/v1beta1/tx.amino.d.ts +106 -0
- package/types/codegen/cosmos/staking/v1beta1/tx.d.ts +143 -0
- package/types/codegen/cosmos/staking/v1beta1/tx.registry.d.ts +116 -0
- package/types/codegen/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +19 -0
- package/types/codegen/cosmos/tx/signing/v1beta1/signing.d.ts +127 -0
- package/types/codegen/cosmos/tx/v1beta1/service.d.ts +220 -0
- package/types/codegen/cosmos/tx/v1beta1/service.rpc.svc.d.ts +19 -0
- package/types/codegen/cosmos/tx/v1beta1/tx.d.ts +363 -0
- package/types/codegen/cosmos/upgrade/v1beta1/query.d.ts +163 -0
- package/types/codegen/cosmos/upgrade/v1beta1/query.lcd.d.ts +12 -0
- package/types/codegen/cosmos/upgrade/v1beta1/query.rpc.query.d.ts +19 -0
- package/types/codegen/cosmos/upgrade/v1beta1/tx.amino.d.ts +39 -0
- package/types/codegen/cosmos/upgrade/v1beta1/tx.d.ts +65 -0
- package/types/codegen/cosmos/upgrade/v1beta1/tx.registry.d.ts +56 -0
- package/types/codegen/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +13 -0
- package/types/codegen/cosmos/upgrade/v1beta1/upgrade.d.ts +102 -0
- package/types/codegen/cosmos/vesting/v1beta1/tx.amino.d.ts +58 -0
- package/types/codegen/cosmos/vesting/v1beta1/tx.d.ts +88 -0
- package/types/codegen/cosmos/vesting/v1beta1/tx.registry.d.ts +76 -0
- package/types/codegen/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +15 -0
- package/types/codegen/cosmos/vesting/v1beta1/vesting.d.ts +97 -0
- package/types/codegen/cosmos_proto/bundle.d.ts +27 -0
- package/types/codegen/cosmos_proto/cosmos.d.ts +73 -0
- package/types/codegen/cosmwasm/bundle.d.ts +1245 -0
- package/types/codegen/cosmwasm/client.d.ts +7 -0
- package/types/codegen/cosmwasm/lcd.d.ts +54 -0
- package/types/codegen/cosmwasm/rpc.query.d.ts +58 -0
- package/types/codegen/cosmwasm/rpc.tx.d.ts +52 -0
- package/types/codegen/cosmwasm/wasm/v1/genesis.d.ts +75 -0
- package/types/codegen/cosmwasm/wasm/v1/ibc.d.ts +40 -0
- package/types/codegen/cosmwasm/wasm/v1/proposal.d.ts +191 -0
- package/types/codegen/cosmwasm/wasm/v1/query.d.ts +293 -0
- package/types/codegen/cosmwasm/wasm/v1/query.lcd.d.ts +16 -0
- package/types/codegen/cosmwasm/wasm/v1/query.rpc.query.d.ts +27 -0
- package/types/codegen/cosmwasm/wasm/v1/tx.amino.d.ts +95 -0
- package/types/codegen/cosmwasm/wasm/v1/tx.d.ts +187 -0
- package/types/codegen/cosmwasm/wasm/v1/tx.registry.d.ts +136 -0
- package/types/codegen/cosmwasm/wasm/v1/tx.rpc.msg.d.ts +21 -0
- package/types/codegen/cosmwasm/wasm/v1/types.d.ts +163 -0
- package/types/codegen/gogoproto/bundle.d.ts +1 -0
- package/types/codegen/gogoproto/gogo.d.ts +1 -0
- package/types/codegen/google/api/annotations.d.ts +1 -0
- package/types/codegen/google/api/http.d.ts +375 -0
- package/types/codegen/google/bundle.d.ts +1686 -0
- package/types/codegen/google/protobuf/any.d.ts +124 -0
- package/types/codegen/google/protobuf/descriptor.d.ts +991 -0
- package/types/codegen/google/protobuf/duration.d.ts +86 -0
- package/types/codegen/google/protobuf/empty.d.ts +22 -0
- package/types/codegen/google/protobuf/field_mask.d.ts +214 -0
- package/types/codegen/google/protobuf/struct.d.ts +94 -0
- package/types/codegen/google/protobuf/timestamp.d.ts +108 -0
- package/types/codegen/google/protobuf/wrappers.d.ts +146 -0
- package/types/codegen/ibc/applications/transfer/v1/genesis.d.ts +16 -0
- package/types/codegen/ibc/applications/transfer/v1/query.d.ts +88 -0
- package/types/codegen/ibc/applications/transfer/v1/query.lcd.d.ts +10 -0
- package/types/codegen/ibc/applications/transfer/v1/query.rpc.query.d.ts +15 -0
- package/types/codegen/ibc/applications/transfer/v1/transfer.d.ts +47 -0
- package/types/codegen/ibc/applications/transfer/v1/tx.amino.d.ts +25 -0
- package/types/codegen/ibc/applications/transfer/v1/tx.d.ts +48 -0
- package/types/codegen/ibc/applications/transfer/v1/tx.registry.d.ts +36 -0
- package/types/codegen/ibc/applications/transfer/v1/tx.rpc.msg.d.ts +11 -0
- package/types/codegen/ibc/applications/transfer/v2/packet.d.ts +24 -0
- package/types/codegen/ibc/bundle.d.ts +4365 -0
- package/types/codegen/ibc/client.d.ts +7 -0
- package/types/codegen/ibc/core/channel/v1/channel.d.ts +187 -0
- package/types/codegen/ibc/core/channel/v1/genesis.d.ts +38 -0
- package/types/codegen/ibc/core/channel/v1/query.d.ts +483 -0
- package/types/codegen/ibc/core/channel/v1/query.lcd.d.ts +20 -0
- package/types/codegen/ibc/core/channel/v1/query.rpc.query.d.ts +35 -0
- package/types/codegen/ibc/core/channel/v1/tx.amino.d.ts +209 -0
- package/types/codegen/ibc/core/channel/v1/tx.d.ts +282 -0
- package/types/codegen/ibc/core/channel/v1/tx.registry.d.ts +216 -0
- package/types/codegen/ibc/core/channel/v1/tx.rpc.msg.d.ts +29 -0
- package/types/codegen/ibc/core/client/v1/client.d.ts +143 -0
- package/types/codegen/ibc/core/client/v1/genesis.d.ts +56 -0
- package/types/codegen/ibc/core/client/v1/query.d.ts +263 -0
- package/types/codegen/ibc/core/client/v1/query.lcd.d.ts +15 -0
- package/types/codegen/ibc/core/client/v1/query.rpc.query.d.ts +25 -0
- package/types/codegen/ibc/core/client/v1/tx.amino.d.ts +77 -0
- package/types/codegen/ibc/core/client/v1/tx.d.ts +131 -0
- package/types/codegen/ibc/core/client/v1/tx.registry.d.ts +96 -0
- package/types/codegen/ibc/core/client/v1/tx.rpc.msg.d.ts +17 -0
- package/types/codegen/ibc/core/commitment/v1/commitment.d.ts +64 -0
- package/types/codegen/ibc/core/connection/v1/connection.d.ts +164 -0
- package/types/codegen/ibc/core/connection/v1/genesis.d.ts +18 -0
- package/types/codegen/ibc/core/connection/v1/query.d.ts +180 -0
- package/types/codegen/ibc/core/connection/v1/query.lcd.d.ts +12 -0
- package/types/codegen/ibc/core/connection/v1/query.rpc.query.d.ts +19 -0
- package/types/codegen/ibc/core/connection/v1/tx.amino.d.ts +103 -0
- package/types/codegen/ibc/core/connection/v1/tx.d.ts +151 -0
- package/types/codegen/ibc/core/connection/v1/tx.registry.d.ts +96 -0
- package/types/codegen/ibc/core/connection/v1/tx.rpc.msg.d.ts +17 -0
- package/types/codegen/ibc/core/port/v1/query.d.ts +37 -0
- package/types/codegen/ibc/core/port/v1/query.rpc.query.d.ts +11 -0
- package/types/codegen/ibc/core/types/v1/genesis.d.ts +21 -0
- package/types/codegen/ibc/lcd.d.ts +67 -0
- package/types/codegen/ibc/lightclients/localhost/v1/localhost.d.ts +20 -0
- package/types/codegen/ibc/lightclients/solomachine/v1/solomachine.d.ts +292 -0
- package/types/codegen/ibc/lightclients/solomachine/v2/solomachine.d.ts +292 -0
- package/types/codegen/ibc/lightclients/tendermint/v1/tendermint.d.ts +134 -0
- package/types/codegen/ibc/rpc.query.d.ts +74 -0
- package/types/codegen/ibc/rpc.tx.d.ts +65 -0
- package/types/codegen/ics23/bundle.d.ts +569 -0
- package/types/codegen/index.d.ts +18 -0
- package/types/codegen/juno/bundle.d.ts +211 -0
- package/types/codegen/juno/lcd.d.ts +52 -0
- package/types/codegen/juno/mint/genesis.d.ts +17 -0
- package/types/codegen/juno/mint/mint.d.ts +32 -0
- package/types/codegen/juno/mint/query.d.ts +78 -0
- package/types/codegen/juno/mint/query.lcd.d.ts +10 -0
- package/types/codegen/juno/mint/query.rpc.query.d.ts +15 -0
- package/types/codegen/juno/rpc.query.d.ts +56 -0
- package/types/codegen/tendermint/abci/types.d.ts +656 -0
- package/types/codegen/tendermint/bundle.d.ts +2229 -0
- package/types/codegen/tendermint/crypto/keys.d.ts +14 -0
- package/types/codegen/tendermint/crypto/proof.d.ts +68 -0
- package/types/codegen/tendermint/libs/bits/types.d.ts +13 -0
- package/types/codegen/tendermint/p2p/types.d.ts +67 -0
- package/types/codegen/tendermint/types/block.d.ts +17 -0
- package/types/codegen/tendermint/types/evidence.d.ts +55 -0
- package/types/codegen/tendermint/types/params.d.ts +119 -0
- package/types/codegen/tendermint/types/types.d.ts +226 -0
- package/types/codegen/tendermint/types/validator.d.ts +39 -0
- package/types/codegen/tendermint/version/types.d.ts +34 -0
- package/types/index.d.ts +1 -0
@@ -0,0 +1,4365 @@
|
|
1
|
+
import * as _111 from "./applications/transfer/v1/genesis";
|
2
|
+
import * as _112 from "./applications/transfer/v1/query";
|
3
|
+
import * as _113 from "./applications/transfer/v1/transfer";
|
4
|
+
import * as _114 from "./applications/transfer/v1/tx";
|
5
|
+
import * as _115 from "./applications/transfer/v2/packet";
|
6
|
+
import * as _116 from "./core/channel/v1/channel";
|
7
|
+
import * as _117 from "./core/channel/v1/genesis";
|
8
|
+
import * as _118 from "./core/channel/v1/query";
|
9
|
+
import * as _119 from "./core/channel/v1/tx";
|
10
|
+
import * as _120 from "./core/client/v1/client";
|
11
|
+
import * as _121 from "./core/client/v1/genesis";
|
12
|
+
import * as _122 from "./core/client/v1/query";
|
13
|
+
import * as _123 from "./core/client/v1/tx";
|
14
|
+
import * as _124 from "./core/commitment/v1/commitment";
|
15
|
+
import * as _125 from "./core/connection/v1/connection";
|
16
|
+
import * as _126 from "./core/connection/v1/genesis";
|
17
|
+
import * as _127 from "./core/connection/v1/query";
|
18
|
+
import * as _128 from "./core/connection/v1/tx";
|
19
|
+
import * as _129 from "./core/port/v1/query";
|
20
|
+
import * as _130 from "./core/types/v1/genesis";
|
21
|
+
import * as _131 from "./lightclients/localhost/v1/localhost";
|
22
|
+
import * as _132 from "./lightclients/solomachine/v1/solomachine";
|
23
|
+
import * as _133 from "./lightclients/solomachine/v2/solomachine";
|
24
|
+
import * as _134 from "./lightclients/tendermint/v1/tendermint";
|
25
|
+
import * as _237 from "./applications/transfer/v1/query.lcd";
|
26
|
+
import * as _238 from "./core/channel/v1/query.lcd";
|
27
|
+
import * as _239 from "./core/client/v1/query.lcd";
|
28
|
+
import * as _240 from "./core/connection/v1/query.lcd";
|
29
|
+
import * as _241 from "./applications/transfer/v1/query.rpc.query";
|
30
|
+
import * as _242 from "./core/channel/v1/query.rpc.query";
|
31
|
+
import * as _243 from "./core/client/v1/query.rpc.query";
|
32
|
+
import * as _244 from "./core/connection/v1/query.rpc.query";
|
33
|
+
import * as _245 from "./core/port/v1/query.rpc.query";
|
34
|
+
import * as _246 from "./applications/transfer/v1/tx.rpc.msg";
|
35
|
+
import * as _247 from "./core/channel/v1/tx.rpc.msg";
|
36
|
+
import * as _248 from "./core/client/v1/tx.rpc.msg";
|
37
|
+
import * as _249 from "./core/connection/v1/tx.rpc.msg";
|
38
|
+
export declare namespace ibc {
|
39
|
+
namespace applications {
|
40
|
+
namespace transfer {
|
41
|
+
const v1: {
|
42
|
+
MsgClientImpl: typeof _246.MsgClientImpl;
|
43
|
+
QueryClientImpl: typeof _241.QueryClientImpl;
|
44
|
+
LCDQueryClient: typeof _237.LCDQueryClient;
|
45
|
+
registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][];
|
46
|
+
load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void;
|
47
|
+
MessageComposer: {
|
48
|
+
encoded: {
|
49
|
+
transfer(value: _114.MsgTransfer): {
|
50
|
+
typeUrl: string;
|
51
|
+
value: Uint8Array;
|
52
|
+
};
|
53
|
+
};
|
54
|
+
withTypeUrl: {
|
55
|
+
transfer(value: _114.MsgTransfer): {
|
56
|
+
typeUrl: string;
|
57
|
+
value: _114.MsgTransfer;
|
58
|
+
};
|
59
|
+
};
|
60
|
+
toJSON: {
|
61
|
+
transfer(value: _114.MsgTransfer): {
|
62
|
+
typeUrl: string;
|
63
|
+
value: unknown;
|
64
|
+
};
|
65
|
+
};
|
66
|
+
fromJSON: {
|
67
|
+
transfer(value: any): {
|
68
|
+
typeUrl: string;
|
69
|
+
value: _114.MsgTransfer;
|
70
|
+
};
|
71
|
+
};
|
72
|
+
fromPartial: {
|
73
|
+
transfer(value: _114.MsgTransfer): {
|
74
|
+
typeUrl: string;
|
75
|
+
value: _114.MsgTransfer;
|
76
|
+
};
|
77
|
+
};
|
78
|
+
};
|
79
|
+
AminoConverter: {
|
80
|
+
"/ibc.applications.transfer.v1.MsgTransfer": {
|
81
|
+
aminoType: string;
|
82
|
+
toAmino: ({ sourcePort, sourceChannel, token, sender, receiver, timeoutHeight, timeoutTimestamp }: _114.MsgTransfer) => {
|
83
|
+
source_port: string;
|
84
|
+
source_channel: string;
|
85
|
+
token: {
|
86
|
+
denom: string;
|
87
|
+
amount: string;
|
88
|
+
};
|
89
|
+
sender: string;
|
90
|
+
receiver: string;
|
91
|
+
timeout_height: import("@osmonauts/helpers").AminoHeight;
|
92
|
+
timeout_timestamp: string;
|
93
|
+
};
|
94
|
+
fromAmino: ({ source_port, source_channel, token, sender, receiver, timeout_height, timeout_timestamp }: {
|
95
|
+
source_port: string;
|
96
|
+
source_channel: string;
|
97
|
+
token: {
|
98
|
+
denom: string;
|
99
|
+
amount: string;
|
100
|
+
};
|
101
|
+
sender: string;
|
102
|
+
receiver: string;
|
103
|
+
timeout_height: import("@osmonauts/helpers").AminoHeight;
|
104
|
+
timeout_timestamp: string;
|
105
|
+
}) => _114.MsgTransfer;
|
106
|
+
};
|
107
|
+
};
|
108
|
+
MsgTransfer: {
|
109
|
+
encode(message: _114.MsgTransfer, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
110
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _114.MsgTransfer;
|
111
|
+
fromJSON(object: any): _114.MsgTransfer;
|
112
|
+
toJSON(message: _114.MsgTransfer): unknown;
|
113
|
+
fromPartial(object: {
|
114
|
+
sourcePort?: string;
|
115
|
+
sourceChannel?: string;
|
116
|
+
token?: {
|
117
|
+
denom?: string;
|
118
|
+
amount?: string;
|
119
|
+
};
|
120
|
+
sender?: string;
|
121
|
+
receiver?: string;
|
122
|
+
timeoutHeight?: {
|
123
|
+
revisionNumber?: any;
|
124
|
+
revisionHeight?: any;
|
125
|
+
};
|
126
|
+
timeoutTimestamp?: any;
|
127
|
+
}): _114.MsgTransfer;
|
128
|
+
};
|
129
|
+
MsgTransferResponse: {
|
130
|
+
encode(_: _114.MsgTransferResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
131
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _114.MsgTransferResponse;
|
132
|
+
fromJSON(_: any): _114.MsgTransferResponse;
|
133
|
+
toJSON(_: _114.MsgTransferResponse): unknown;
|
134
|
+
fromPartial(_: {}): _114.MsgTransferResponse;
|
135
|
+
};
|
136
|
+
DenomTrace: {
|
137
|
+
encode(message: _113.DenomTrace, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
138
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _113.DenomTrace;
|
139
|
+
fromJSON(object: any): _113.DenomTrace;
|
140
|
+
toJSON(message: _113.DenomTrace): unknown;
|
141
|
+
fromPartial(object: {
|
142
|
+
path?: string;
|
143
|
+
baseDenom?: string;
|
144
|
+
}): _113.DenomTrace;
|
145
|
+
};
|
146
|
+
Params: {
|
147
|
+
encode(message: _113.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
148
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _113.Params;
|
149
|
+
fromJSON(object: any): _113.Params;
|
150
|
+
toJSON(message: _113.Params): unknown;
|
151
|
+
fromPartial(object: {
|
152
|
+
sendEnabled?: boolean;
|
153
|
+
receiveEnabled?: boolean;
|
154
|
+
}): _113.Params;
|
155
|
+
};
|
156
|
+
QueryDenomTraceRequest: {
|
157
|
+
encode(message: _112.QueryDenomTraceRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
158
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _112.QueryDenomTraceRequest;
|
159
|
+
fromJSON(object: any): _112.QueryDenomTraceRequest;
|
160
|
+
toJSON(message: _112.QueryDenomTraceRequest): unknown;
|
161
|
+
fromPartial(object: {
|
162
|
+
hash?: string;
|
163
|
+
}): _112.QueryDenomTraceRequest;
|
164
|
+
};
|
165
|
+
QueryDenomTraceResponse: {
|
166
|
+
encode(message: _112.QueryDenomTraceResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
167
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _112.QueryDenomTraceResponse;
|
168
|
+
fromJSON(object: any): _112.QueryDenomTraceResponse;
|
169
|
+
toJSON(message: _112.QueryDenomTraceResponse): unknown;
|
170
|
+
fromPartial(object: {
|
171
|
+
denomTrace?: {
|
172
|
+
path?: string;
|
173
|
+
baseDenom?: string;
|
174
|
+
};
|
175
|
+
}): _112.QueryDenomTraceResponse;
|
176
|
+
};
|
177
|
+
QueryDenomTracesRequest: {
|
178
|
+
encode(message: _112.QueryDenomTracesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
179
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _112.QueryDenomTracesRequest;
|
180
|
+
fromJSON(object: any): _112.QueryDenomTracesRequest;
|
181
|
+
toJSON(message: _112.QueryDenomTracesRequest): unknown;
|
182
|
+
fromPartial(object: {
|
183
|
+
pagination?: {
|
184
|
+
key?: Uint8Array;
|
185
|
+
offset?: any;
|
186
|
+
limit?: any;
|
187
|
+
countTotal?: boolean;
|
188
|
+
reverse?: boolean;
|
189
|
+
};
|
190
|
+
}): _112.QueryDenomTracesRequest;
|
191
|
+
};
|
192
|
+
QueryDenomTracesResponse: {
|
193
|
+
encode(message: _112.QueryDenomTracesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
194
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _112.QueryDenomTracesResponse;
|
195
|
+
fromJSON(object: any): _112.QueryDenomTracesResponse;
|
196
|
+
toJSON(message: _112.QueryDenomTracesResponse): unknown;
|
197
|
+
fromPartial(object: {
|
198
|
+
denomTraces?: {
|
199
|
+
path?: string;
|
200
|
+
baseDenom?: string;
|
201
|
+
}[];
|
202
|
+
pagination?: {
|
203
|
+
nextKey?: Uint8Array;
|
204
|
+
total?: any;
|
205
|
+
};
|
206
|
+
}): _112.QueryDenomTracesResponse;
|
207
|
+
};
|
208
|
+
QueryParamsRequest: {
|
209
|
+
encode(_: _112.QueryParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
210
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _112.QueryParamsRequest;
|
211
|
+
fromJSON(_: any): _112.QueryParamsRequest;
|
212
|
+
toJSON(_: _112.QueryParamsRequest): unknown;
|
213
|
+
fromPartial(_: {}): _112.QueryParamsRequest;
|
214
|
+
};
|
215
|
+
QueryParamsResponse: {
|
216
|
+
encode(message: _112.QueryParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
217
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _112.QueryParamsResponse;
|
218
|
+
fromJSON(object: any): _112.QueryParamsResponse;
|
219
|
+
toJSON(message: _112.QueryParamsResponse): unknown;
|
220
|
+
fromPartial(object: {
|
221
|
+
params?: {
|
222
|
+
sendEnabled?: boolean;
|
223
|
+
receiveEnabled?: boolean;
|
224
|
+
};
|
225
|
+
}): _112.QueryParamsResponse;
|
226
|
+
};
|
227
|
+
GenesisState: {
|
228
|
+
encode(message: _111.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
229
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _111.GenesisState;
|
230
|
+
fromJSON(object: any): _111.GenesisState;
|
231
|
+
toJSON(message: _111.GenesisState): unknown;
|
232
|
+
fromPartial(object: {
|
233
|
+
portId?: string;
|
234
|
+
denomTraces?: {
|
235
|
+
path?: string;
|
236
|
+
baseDenom?: string;
|
237
|
+
}[];
|
238
|
+
params?: {
|
239
|
+
sendEnabled?: boolean;
|
240
|
+
receiveEnabled?: boolean;
|
241
|
+
};
|
242
|
+
}): _111.GenesisState;
|
243
|
+
};
|
244
|
+
};
|
245
|
+
const v2: {
|
246
|
+
FungibleTokenPacketData: {
|
247
|
+
encode(message: _115.FungibleTokenPacketData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
248
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _115.FungibleTokenPacketData;
|
249
|
+
fromJSON(object: any): _115.FungibleTokenPacketData;
|
250
|
+
toJSON(message: _115.FungibleTokenPacketData): unknown;
|
251
|
+
fromPartial(object: {
|
252
|
+
denom?: string;
|
253
|
+
amount?: string;
|
254
|
+
sender?: string;
|
255
|
+
receiver?: string;
|
256
|
+
}): _115.FungibleTokenPacketData;
|
257
|
+
};
|
258
|
+
};
|
259
|
+
}
|
260
|
+
}
|
261
|
+
namespace core {
|
262
|
+
namespace channel {
|
263
|
+
const v1: {
|
264
|
+
MsgClientImpl: typeof _247.MsgClientImpl;
|
265
|
+
QueryClientImpl: typeof _242.QueryClientImpl;
|
266
|
+
LCDQueryClient: typeof _238.LCDQueryClient;
|
267
|
+
registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][];
|
268
|
+
load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void;
|
269
|
+
MessageComposer: {
|
270
|
+
encoded: {
|
271
|
+
channelOpenInit(value: _119.MsgChannelOpenInit): {
|
272
|
+
typeUrl: string;
|
273
|
+
value: Uint8Array;
|
274
|
+
};
|
275
|
+
channelOpenTry(value: _119.MsgChannelOpenTry): {
|
276
|
+
typeUrl: string;
|
277
|
+
value: Uint8Array;
|
278
|
+
};
|
279
|
+
channelOpenAck(value: _119.MsgChannelOpenAck): {
|
280
|
+
typeUrl: string;
|
281
|
+
value: Uint8Array;
|
282
|
+
};
|
283
|
+
channelOpenConfirm(value: _119.MsgChannelOpenConfirm): {
|
284
|
+
typeUrl: string;
|
285
|
+
value: Uint8Array;
|
286
|
+
};
|
287
|
+
channelCloseInit(value: _119.MsgChannelCloseInit): {
|
288
|
+
typeUrl: string;
|
289
|
+
value: Uint8Array;
|
290
|
+
};
|
291
|
+
channelCloseConfirm(value: _119.MsgChannelCloseConfirm): {
|
292
|
+
typeUrl: string;
|
293
|
+
value: Uint8Array;
|
294
|
+
};
|
295
|
+
recvPacket(value: _119.MsgRecvPacket): {
|
296
|
+
typeUrl: string;
|
297
|
+
value: Uint8Array;
|
298
|
+
};
|
299
|
+
timeout(value: _119.MsgTimeout): {
|
300
|
+
typeUrl: string;
|
301
|
+
value: Uint8Array;
|
302
|
+
};
|
303
|
+
timeoutOnClose(value: _119.MsgTimeoutOnClose): {
|
304
|
+
typeUrl: string;
|
305
|
+
value: Uint8Array;
|
306
|
+
};
|
307
|
+
acknowledgement(value: _119.MsgAcknowledgement): {
|
308
|
+
typeUrl: string;
|
309
|
+
value: Uint8Array;
|
310
|
+
};
|
311
|
+
};
|
312
|
+
withTypeUrl: {
|
313
|
+
channelOpenInit(value: _119.MsgChannelOpenInit): {
|
314
|
+
typeUrl: string;
|
315
|
+
value: _119.MsgChannelOpenInit;
|
316
|
+
};
|
317
|
+
channelOpenTry(value: _119.MsgChannelOpenTry): {
|
318
|
+
typeUrl: string;
|
319
|
+
value: _119.MsgChannelOpenTry;
|
320
|
+
};
|
321
|
+
channelOpenAck(value: _119.MsgChannelOpenAck): {
|
322
|
+
typeUrl: string;
|
323
|
+
value: _119.MsgChannelOpenAck;
|
324
|
+
};
|
325
|
+
channelOpenConfirm(value: _119.MsgChannelOpenConfirm): {
|
326
|
+
typeUrl: string;
|
327
|
+
value: _119.MsgChannelOpenConfirm;
|
328
|
+
};
|
329
|
+
channelCloseInit(value: _119.MsgChannelCloseInit): {
|
330
|
+
typeUrl: string;
|
331
|
+
value: _119.MsgChannelCloseInit;
|
332
|
+
};
|
333
|
+
channelCloseConfirm(value: _119.MsgChannelCloseConfirm): {
|
334
|
+
typeUrl: string;
|
335
|
+
value: _119.MsgChannelCloseConfirm;
|
336
|
+
};
|
337
|
+
recvPacket(value: _119.MsgRecvPacket): {
|
338
|
+
typeUrl: string;
|
339
|
+
value: _119.MsgRecvPacket;
|
340
|
+
};
|
341
|
+
timeout(value: _119.MsgTimeout): {
|
342
|
+
typeUrl: string;
|
343
|
+
value: _119.MsgTimeout;
|
344
|
+
};
|
345
|
+
timeoutOnClose(value: _119.MsgTimeoutOnClose): {
|
346
|
+
typeUrl: string;
|
347
|
+
value: _119.MsgTimeoutOnClose;
|
348
|
+
};
|
349
|
+
acknowledgement(value: _119.MsgAcknowledgement): {
|
350
|
+
typeUrl: string;
|
351
|
+
value: _119.MsgAcknowledgement;
|
352
|
+
};
|
353
|
+
};
|
354
|
+
toJSON: {
|
355
|
+
channelOpenInit(value: _119.MsgChannelOpenInit): {
|
356
|
+
typeUrl: string;
|
357
|
+
value: unknown;
|
358
|
+
};
|
359
|
+
channelOpenTry(value: _119.MsgChannelOpenTry): {
|
360
|
+
typeUrl: string;
|
361
|
+
value: unknown;
|
362
|
+
};
|
363
|
+
channelOpenAck(value: _119.MsgChannelOpenAck): {
|
364
|
+
typeUrl: string;
|
365
|
+
value: unknown;
|
366
|
+
};
|
367
|
+
channelOpenConfirm(value: _119.MsgChannelOpenConfirm): {
|
368
|
+
typeUrl: string;
|
369
|
+
value: unknown;
|
370
|
+
};
|
371
|
+
channelCloseInit(value: _119.MsgChannelCloseInit): {
|
372
|
+
typeUrl: string;
|
373
|
+
value: unknown;
|
374
|
+
};
|
375
|
+
channelCloseConfirm(value: _119.MsgChannelCloseConfirm): {
|
376
|
+
typeUrl: string;
|
377
|
+
value: unknown;
|
378
|
+
};
|
379
|
+
recvPacket(value: _119.MsgRecvPacket): {
|
380
|
+
typeUrl: string;
|
381
|
+
value: unknown;
|
382
|
+
};
|
383
|
+
timeout(value: _119.MsgTimeout): {
|
384
|
+
typeUrl: string;
|
385
|
+
value: unknown;
|
386
|
+
};
|
387
|
+
timeoutOnClose(value: _119.MsgTimeoutOnClose): {
|
388
|
+
typeUrl: string;
|
389
|
+
value: unknown;
|
390
|
+
};
|
391
|
+
acknowledgement(value: _119.MsgAcknowledgement): {
|
392
|
+
typeUrl: string;
|
393
|
+
value: unknown;
|
394
|
+
};
|
395
|
+
};
|
396
|
+
fromJSON: {
|
397
|
+
channelOpenInit(value: any): {
|
398
|
+
typeUrl: string;
|
399
|
+
value: _119.MsgChannelOpenInit;
|
400
|
+
};
|
401
|
+
channelOpenTry(value: any): {
|
402
|
+
typeUrl: string;
|
403
|
+
value: _119.MsgChannelOpenTry;
|
404
|
+
};
|
405
|
+
channelOpenAck(value: any): {
|
406
|
+
typeUrl: string;
|
407
|
+
value: _119.MsgChannelOpenAck;
|
408
|
+
};
|
409
|
+
channelOpenConfirm(value: any): {
|
410
|
+
typeUrl: string;
|
411
|
+
value: _119.MsgChannelOpenConfirm;
|
412
|
+
};
|
413
|
+
channelCloseInit(value: any): {
|
414
|
+
typeUrl: string;
|
415
|
+
value: _119.MsgChannelCloseInit;
|
416
|
+
};
|
417
|
+
channelCloseConfirm(value: any): {
|
418
|
+
typeUrl: string;
|
419
|
+
value: _119.MsgChannelCloseConfirm;
|
420
|
+
};
|
421
|
+
recvPacket(value: any): {
|
422
|
+
typeUrl: string;
|
423
|
+
value: _119.MsgRecvPacket;
|
424
|
+
};
|
425
|
+
timeout(value: any): {
|
426
|
+
typeUrl: string;
|
427
|
+
value: _119.MsgTimeout;
|
428
|
+
};
|
429
|
+
timeoutOnClose(value: any): {
|
430
|
+
typeUrl: string;
|
431
|
+
value: _119.MsgTimeoutOnClose;
|
432
|
+
};
|
433
|
+
acknowledgement(value: any): {
|
434
|
+
typeUrl: string;
|
435
|
+
value: _119.MsgAcknowledgement;
|
436
|
+
};
|
437
|
+
};
|
438
|
+
fromPartial: {
|
439
|
+
channelOpenInit(value: _119.MsgChannelOpenInit): {
|
440
|
+
typeUrl: string;
|
441
|
+
value: _119.MsgChannelOpenInit;
|
442
|
+
};
|
443
|
+
channelOpenTry(value: _119.MsgChannelOpenTry): {
|
444
|
+
typeUrl: string;
|
445
|
+
value: _119.MsgChannelOpenTry;
|
446
|
+
};
|
447
|
+
channelOpenAck(value: _119.MsgChannelOpenAck): {
|
448
|
+
typeUrl: string;
|
449
|
+
value: _119.MsgChannelOpenAck;
|
450
|
+
};
|
451
|
+
channelOpenConfirm(value: _119.MsgChannelOpenConfirm): {
|
452
|
+
typeUrl: string;
|
453
|
+
value: _119.MsgChannelOpenConfirm;
|
454
|
+
};
|
455
|
+
channelCloseInit(value: _119.MsgChannelCloseInit): {
|
456
|
+
typeUrl: string;
|
457
|
+
value: _119.MsgChannelCloseInit;
|
458
|
+
};
|
459
|
+
channelCloseConfirm(value: _119.MsgChannelCloseConfirm): {
|
460
|
+
typeUrl: string;
|
461
|
+
value: _119.MsgChannelCloseConfirm;
|
462
|
+
};
|
463
|
+
recvPacket(value: _119.MsgRecvPacket): {
|
464
|
+
typeUrl: string;
|
465
|
+
value: _119.MsgRecvPacket;
|
466
|
+
};
|
467
|
+
timeout(value: _119.MsgTimeout): {
|
468
|
+
typeUrl: string;
|
469
|
+
value: _119.MsgTimeout;
|
470
|
+
};
|
471
|
+
timeoutOnClose(value: _119.MsgTimeoutOnClose): {
|
472
|
+
typeUrl: string;
|
473
|
+
value: _119.MsgTimeoutOnClose;
|
474
|
+
};
|
475
|
+
acknowledgement(value: _119.MsgAcknowledgement): {
|
476
|
+
typeUrl: string;
|
477
|
+
value: _119.MsgAcknowledgement;
|
478
|
+
};
|
479
|
+
};
|
480
|
+
};
|
481
|
+
AminoConverter: {
|
482
|
+
"/ibc.core.channel.v1.MsgChannelOpenInit": {
|
483
|
+
aminoType: string;
|
484
|
+
toAmino: ({ portId, channel, signer }: _119.MsgChannelOpenInit) => {
|
485
|
+
port_id: string;
|
486
|
+
channel: {
|
487
|
+
state: number;
|
488
|
+
ordering: number;
|
489
|
+
counterparty: {
|
490
|
+
port_id: string;
|
491
|
+
channel_id: string;
|
492
|
+
};
|
493
|
+
connection_hops: string[];
|
494
|
+
version: string;
|
495
|
+
};
|
496
|
+
signer: string;
|
497
|
+
};
|
498
|
+
fromAmino: ({ port_id, channel, signer }: {
|
499
|
+
port_id: string;
|
500
|
+
channel: {
|
501
|
+
state: number;
|
502
|
+
ordering: number;
|
503
|
+
counterparty: {
|
504
|
+
port_id: string;
|
505
|
+
channel_id: string;
|
506
|
+
};
|
507
|
+
connection_hops: string[];
|
508
|
+
version: string;
|
509
|
+
};
|
510
|
+
signer: string;
|
511
|
+
}) => _119.MsgChannelOpenInit;
|
512
|
+
};
|
513
|
+
"/ibc.core.channel.v1.MsgChannelOpenTry": {
|
514
|
+
aminoType: string;
|
515
|
+
toAmino: ({ portId, previousChannelId, channel, counterpartyVersion, proofInit, proofHeight, signer }: _119.MsgChannelOpenTry) => {
|
516
|
+
port_id: string;
|
517
|
+
previous_channel_id: string;
|
518
|
+
channel: {
|
519
|
+
state: number;
|
520
|
+
ordering: number;
|
521
|
+
counterparty: {
|
522
|
+
port_id: string;
|
523
|
+
channel_id: string;
|
524
|
+
};
|
525
|
+
connection_hops: string[];
|
526
|
+
version: string;
|
527
|
+
};
|
528
|
+
counterparty_version: string;
|
529
|
+
proof_init: Uint8Array;
|
530
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
531
|
+
signer: string;
|
532
|
+
};
|
533
|
+
fromAmino: ({ port_id, previous_channel_id, channel, counterparty_version, proof_init, proof_height, signer }: {
|
534
|
+
port_id: string;
|
535
|
+
previous_channel_id: string;
|
536
|
+
channel: {
|
537
|
+
state: number;
|
538
|
+
ordering: number;
|
539
|
+
counterparty: {
|
540
|
+
port_id: string;
|
541
|
+
channel_id: string;
|
542
|
+
};
|
543
|
+
connection_hops: string[];
|
544
|
+
version: string;
|
545
|
+
};
|
546
|
+
counterparty_version: string;
|
547
|
+
proof_init: Uint8Array;
|
548
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
549
|
+
signer: string;
|
550
|
+
}) => _119.MsgChannelOpenTry;
|
551
|
+
};
|
552
|
+
"/ibc.core.channel.v1.MsgChannelOpenAck": {
|
553
|
+
aminoType: string;
|
554
|
+
toAmino: ({ portId, channelId, counterpartyChannelId, counterpartyVersion, proofTry, proofHeight, signer }: _119.MsgChannelOpenAck) => {
|
555
|
+
port_id: string;
|
556
|
+
channel_id: string;
|
557
|
+
counterparty_channel_id: string;
|
558
|
+
counterparty_version: string;
|
559
|
+
proof_try: Uint8Array;
|
560
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
561
|
+
signer: string;
|
562
|
+
};
|
563
|
+
fromAmino: ({ port_id, channel_id, counterparty_channel_id, counterparty_version, proof_try, proof_height, signer }: {
|
564
|
+
port_id: string;
|
565
|
+
channel_id: string;
|
566
|
+
counterparty_channel_id: string;
|
567
|
+
counterparty_version: string;
|
568
|
+
proof_try: Uint8Array;
|
569
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
570
|
+
signer: string;
|
571
|
+
}) => _119.MsgChannelOpenAck;
|
572
|
+
};
|
573
|
+
"/ibc.core.channel.v1.MsgChannelOpenConfirm": {
|
574
|
+
aminoType: string;
|
575
|
+
toAmino: ({ portId, channelId, proofAck, proofHeight, signer }: _119.MsgChannelOpenConfirm) => {
|
576
|
+
port_id: string;
|
577
|
+
channel_id: string;
|
578
|
+
proof_ack: Uint8Array;
|
579
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
580
|
+
signer: string;
|
581
|
+
};
|
582
|
+
fromAmino: ({ port_id, channel_id, proof_ack, proof_height, signer }: {
|
583
|
+
port_id: string;
|
584
|
+
channel_id: string;
|
585
|
+
proof_ack: Uint8Array;
|
586
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
587
|
+
signer: string;
|
588
|
+
}) => _119.MsgChannelOpenConfirm;
|
589
|
+
};
|
590
|
+
"/ibc.core.channel.v1.MsgChannelCloseInit": {
|
591
|
+
aminoType: string;
|
592
|
+
toAmino: ({ portId, channelId, signer }: _119.MsgChannelCloseInit) => {
|
593
|
+
port_id: string;
|
594
|
+
channel_id: string;
|
595
|
+
signer: string;
|
596
|
+
};
|
597
|
+
fromAmino: ({ port_id, channel_id, signer }: {
|
598
|
+
port_id: string;
|
599
|
+
channel_id: string;
|
600
|
+
signer: string;
|
601
|
+
}) => _119.MsgChannelCloseInit;
|
602
|
+
};
|
603
|
+
"/ibc.core.channel.v1.MsgChannelCloseConfirm": {
|
604
|
+
aminoType: string;
|
605
|
+
toAmino: ({ portId, channelId, proofInit, proofHeight, signer }: _119.MsgChannelCloseConfirm) => {
|
606
|
+
port_id: string;
|
607
|
+
channel_id: string;
|
608
|
+
proof_init: Uint8Array;
|
609
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
610
|
+
signer: string;
|
611
|
+
};
|
612
|
+
fromAmino: ({ port_id, channel_id, proof_init, proof_height, signer }: {
|
613
|
+
port_id: string;
|
614
|
+
channel_id: string;
|
615
|
+
proof_init: Uint8Array;
|
616
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
617
|
+
signer: string;
|
618
|
+
}) => _119.MsgChannelCloseConfirm;
|
619
|
+
};
|
620
|
+
"/ibc.core.channel.v1.MsgRecvPacket": {
|
621
|
+
aminoType: string;
|
622
|
+
toAmino: ({ packet, proofCommitment, proofHeight, signer }: _119.MsgRecvPacket) => {
|
623
|
+
packet: {
|
624
|
+
sequence: string;
|
625
|
+
source_port: string;
|
626
|
+
source_channel: string;
|
627
|
+
destination_port: string;
|
628
|
+
destination_channel: string;
|
629
|
+
data: Uint8Array;
|
630
|
+
timeout_height: import("@osmonauts/helpers").AminoHeight;
|
631
|
+
timeout_timestamp: string;
|
632
|
+
};
|
633
|
+
proof_commitment: Uint8Array;
|
634
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
635
|
+
signer: string;
|
636
|
+
};
|
637
|
+
fromAmino: ({ packet, proof_commitment, proof_height, signer }: {
|
638
|
+
packet: {
|
639
|
+
sequence: string;
|
640
|
+
source_port: string;
|
641
|
+
source_channel: string;
|
642
|
+
destination_port: string;
|
643
|
+
destination_channel: string;
|
644
|
+
data: Uint8Array;
|
645
|
+
timeout_height: import("@osmonauts/helpers").AminoHeight;
|
646
|
+
timeout_timestamp: string;
|
647
|
+
};
|
648
|
+
proof_commitment: Uint8Array;
|
649
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
650
|
+
signer: string;
|
651
|
+
}) => _119.MsgRecvPacket;
|
652
|
+
};
|
653
|
+
"/ibc.core.channel.v1.MsgTimeout": {
|
654
|
+
aminoType: string;
|
655
|
+
toAmino: ({ packet, proofUnreceived, proofHeight, nextSequenceRecv, signer }: _119.MsgTimeout) => {
|
656
|
+
packet: {
|
657
|
+
sequence: string;
|
658
|
+
source_port: string;
|
659
|
+
source_channel: string;
|
660
|
+
destination_port: string;
|
661
|
+
destination_channel: string;
|
662
|
+
data: Uint8Array;
|
663
|
+
timeout_height: import("@osmonauts/helpers").AminoHeight;
|
664
|
+
timeout_timestamp: string;
|
665
|
+
};
|
666
|
+
proof_unreceived: Uint8Array;
|
667
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
668
|
+
next_sequence_recv: string;
|
669
|
+
signer: string;
|
670
|
+
};
|
671
|
+
fromAmino: ({ packet, proof_unreceived, proof_height, next_sequence_recv, signer }: {
|
672
|
+
packet: {
|
673
|
+
sequence: string;
|
674
|
+
source_port: string;
|
675
|
+
source_channel: string;
|
676
|
+
destination_port: string;
|
677
|
+
destination_channel: string;
|
678
|
+
data: Uint8Array;
|
679
|
+
timeout_height: import("@osmonauts/helpers").AminoHeight;
|
680
|
+
timeout_timestamp: string;
|
681
|
+
};
|
682
|
+
proof_unreceived: Uint8Array;
|
683
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
684
|
+
next_sequence_recv: string;
|
685
|
+
signer: string;
|
686
|
+
}) => _119.MsgTimeout;
|
687
|
+
};
|
688
|
+
"/ibc.core.channel.v1.MsgTimeoutOnClose": {
|
689
|
+
aminoType: string;
|
690
|
+
toAmino: ({ packet, proofUnreceived, proofClose, proofHeight, nextSequenceRecv, signer }: _119.MsgTimeoutOnClose) => {
|
691
|
+
packet: {
|
692
|
+
sequence: string;
|
693
|
+
source_port: string;
|
694
|
+
source_channel: string;
|
695
|
+
destination_port: string;
|
696
|
+
destination_channel: string;
|
697
|
+
data: Uint8Array;
|
698
|
+
timeout_height: import("@osmonauts/helpers").AminoHeight;
|
699
|
+
timeout_timestamp: string;
|
700
|
+
};
|
701
|
+
proof_unreceived: Uint8Array;
|
702
|
+
proof_close: Uint8Array;
|
703
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
704
|
+
next_sequence_recv: string;
|
705
|
+
signer: string;
|
706
|
+
};
|
707
|
+
fromAmino: ({ packet, proof_unreceived, proof_close, proof_height, next_sequence_recv, signer }: {
|
708
|
+
packet: {
|
709
|
+
sequence: string;
|
710
|
+
source_port: string;
|
711
|
+
source_channel: string;
|
712
|
+
destination_port: string;
|
713
|
+
destination_channel: string;
|
714
|
+
data: Uint8Array;
|
715
|
+
timeout_height: import("@osmonauts/helpers").AminoHeight;
|
716
|
+
timeout_timestamp: string;
|
717
|
+
};
|
718
|
+
proof_unreceived: Uint8Array;
|
719
|
+
proof_close: Uint8Array;
|
720
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
721
|
+
next_sequence_recv: string;
|
722
|
+
signer: string;
|
723
|
+
}) => _119.MsgTimeoutOnClose;
|
724
|
+
};
|
725
|
+
"/ibc.core.channel.v1.MsgAcknowledgement": {
|
726
|
+
aminoType: string;
|
727
|
+
toAmino: ({ packet, acknowledgement, proofAcked, proofHeight, signer }: _119.MsgAcknowledgement) => {
|
728
|
+
packet: {
|
729
|
+
sequence: string;
|
730
|
+
source_port: string;
|
731
|
+
source_channel: string;
|
732
|
+
destination_port: string;
|
733
|
+
destination_channel: string;
|
734
|
+
data: Uint8Array;
|
735
|
+
timeout_height: import("@osmonauts/helpers").AminoHeight;
|
736
|
+
timeout_timestamp: string;
|
737
|
+
};
|
738
|
+
acknowledgement: Uint8Array;
|
739
|
+
proof_acked: Uint8Array;
|
740
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
741
|
+
signer: string;
|
742
|
+
};
|
743
|
+
fromAmino: ({ packet, acknowledgement, proof_acked, proof_height, signer }: {
|
744
|
+
packet: {
|
745
|
+
sequence: string;
|
746
|
+
source_port: string;
|
747
|
+
source_channel: string;
|
748
|
+
destination_port: string;
|
749
|
+
destination_channel: string;
|
750
|
+
data: Uint8Array;
|
751
|
+
timeout_height: import("@osmonauts/helpers").AminoHeight;
|
752
|
+
timeout_timestamp: string;
|
753
|
+
};
|
754
|
+
acknowledgement: Uint8Array;
|
755
|
+
proof_acked: Uint8Array;
|
756
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
757
|
+
signer: string;
|
758
|
+
}) => _119.MsgAcknowledgement;
|
759
|
+
};
|
760
|
+
};
|
761
|
+
MsgChannelOpenInit: {
|
762
|
+
encode(message: _119.MsgChannelOpenInit, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
763
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgChannelOpenInit;
|
764
|
+
fromJSON(object: any): _119.MsgChannelOpenInit;
|
765
|
+
toJSON(message: _119.MsgChannelOpenInit): unknown;
|
766
|
+
fromPartial(object: {
|
767
|
+
portId?: string;
|
768
|
+
channel?: {
|
769
|
+
state?: _116.State;
|
770
|
+
ordering?: _116.Order;
|
771
|
+
counterparty?: {
|
772
|
+
portId?: string;
|
773
|
+
channelId?: string;
|
774
|
+
};
|
775
|
+
connectionHops?: string[];
|
776
|
+
version?: string;
|
777
|
+
};
|
778
|
+
signer?: string;
|
779
|
+
}): _119.MsgChannelOpenInit;
|
780
|
+
};
|
781
|
+
MsgChannelOpenInitResponse: {
|
782
|
+
encode(_: _119.MsgChannelOpenInitResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
783
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgChannelOpenInitResponse;
|
784
|
+
fromJSON(_: any): _119.MsgChannelOpenInitResponse;
|
785
|
+
toJSON(_: _119.MsgChannelOpenInitResponse): unknown;
|
786
|
+
fromPartial(_: {}): _119.MsgChannelOpenInitResponse;
|
787
|
+
};
|
788
|
+
MsgChannelOpenTry: {
|
789
|
+
encode(message: _119.MsgChannelOpenTry, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
790
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgChannelOpenTry;
|
791
|
+
fromJSON(object: any): _119.MsgChannelOpenTry;
|
792
|
+
toJSON(message: _119.MsgChannelOpenTry): unknown;
|
793
|
+
fromPartial(object: {
|
794
|
+
portId?: string;
|
795
|
+
previousChannelId?: string;
|
796
|
+
channel?: {
|
797
|
+
state?: _116.State;
|
798
|
+
ordering?: _116.Order;
|
799
|
+
counterparty?: {
|
800
|
+
portId?: string;
|
801
|
+
channelId?: string;
|
802
|
+
};
|
803
|
+
connectionHops?: string[];
|
804
|
+
version?: string;
|
805
|
+
};
|
806
|
+
counterpartyVersion?: string;
|
807
|
+
proofInit?: Uint8Array;
|
808
|
+
proofHeight?: {
|
809
|
+
revisionNumber?: any;
|
810
|
+
revisionHeight?: any;
|
811
|
+
};
|
812
|
+
signer?: string;
|
813
|
+
}): _119.MsgChannelOpenTry;
|
814
|
+
};
|
815
|
+
MsgChannelOpenTryResponse: {
|
816
|
+
encode(_: _119.MsgChannelOpenTryResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
817
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgChannelOpenTryResponse;
|
818
|
+
fromJSON(_: any): _119.MsgChannelOpenTryResponse;
|
819
|
+
toJSON(_: _119.MsgChannelOpenTryResponse): unknown;
|
820
|
+
fromPartial(_: {}): _119.MsgChannelOpenTryResponse;
|
821
|
+
};
|
822
|
+
MsgChannelOpenAck: {
|
823
|
+
encode(message: _119.MsgChannelOpenAck, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
824
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgChannelOpenAck;
|
825
|
+
fromJSON(object: any): _119.MsgChannelOpenAck;
|
826
|
+
toJSON(message: _119.MsgChannelOpenAck): unknown;
|
827
|
+
fromPartial(object: {
|
828
|
+
portId?: string;
|
829
|
+
channelId?: string;
|
830
|
+
counterpartyChannelId?: string;
|
831
|
+
counterpartyVersion?: string;
|
832
|
+
proofTry?: Uint8Array;
|
833
|
+
proofHeight?: {
|
834
|
+
revisionNumber?: any;
|
835
|
+
revisionHeight?: any;
|
836
|
+
};
|
837
|
+
signer?: string;
|
838
|
+
}): _119.MsgChannelOpenAck;
|
839
|
+
};
|
840
|
+
MsgChannelOpenAckResponse: {
|
841
|
+
encode(_: _119.MsgChannelOpenAckResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
842
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgChannelOpenAckResponse;
|
843
|
+
fromJSON(_: any): _119.MsgChannelOpenAckResponse;
|
844
|
+
toJSON(_: _119.MsgChannelOpenAckResponse): unknown;
|
845
|
+
fromPartial(_: {}): _119.MsgChannelOpenAckResponse;
|
846
|
+
};
|
847
|
+
MsgChannelOpenConfirm: {
|
848
|
+
encode(message: _119.MsgChannelOpenConfirm, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
849
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgChannelOpenConfirm;
|
850
|
+
fromJSON(object: any): _119.MsgChannelOpenConfirm;
|
851
|
+
toJSON(message: _119.MsgChannelOpenConfirm): unknown;
|
852
|
+
fromPartial(object: {
|
853
|
+
portId?: string;
|
854
|
+
channelId?: string;
|
855
|
+
proofAck?: Uint8Array;
|
856
|
+
proofHeight?: {
|
857
|
+
revisionNumber?: any;
|
858
|
+
revisionHeight?: any;
|
859
|
+
};
|
860
|
+
signer?: string;
|
861
|
+
}): _119.MsgChannelOpenConfirm;
|
862
|
+
};
|
863
|
+
MsgChannelOpenConfirmResponse: {
|
864
|
+
encode(_: _119.MsgChannelOpenConfirmResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
865
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgChannelOpenConfirmResponse;
|
866
|
+
fromJSON(_: any): _119.MsgChannelOpenConfirmResponse;
|
867
|
+
toJSON(_: _119.MsgChannelOpenConfirmResponse): unknown;
|
868
|
+
fromPartial(_: {}): _119.MsgChannelOpenConfirmResponse;
|
869
|
+
};
|
870
|
+
MsgChannelCloseInit: {
|
871
|
+
encode(message: _119.MsgChannelCloseInit, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
872
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgChannelCloseInit;
|
873
|
+
fromJSON(object: any): _119.MsgChannelCloseInit;
|
874
|
+
toJSON(message: _119.MsgChannelCloseInit): unknown;
|
875
|
+
fromPartial(object: {
|
876
|
+
portId?: string;
|
877
|
+
channelId?: string;
|
878
|
+
signer?: string;
|
879
|
+
}): _119.MsgChannelCloseInit;
|
880
|
+
};
|
881
|
+
MsgChannelCloseInitResponse: {
|
882
|
+
encode(_: _119.MsgChannelCloseInitResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
883
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgChannelCloseInitResponse;
|
884
|
+
fromJSON(_: any): _119.MsgChannelCloseInitResponse;
|
885
|
+
toJSON(_: _119.MsgChannelCloseInitResponse): unknown;
|
886
|
+
fromPartial(_: {}): _119.MsgChannelCloseInitResponse;
|
887
|
+
};
|
888
|
+
MsgChannelCloseConfirm: {
|
889
|
+
encode(message: _119.MsgChannelCloseConfirm, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
890
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgChannelCloseConfirm;
|
891
|
+
fromJSON(object: any): _119.MsgChannelCloseConfirm;
|
892
|
+
toJSON(message: _119.MsgChannelCloseConfirm): unknown;
|
893
|
+
fromPartial(object: {
|
894
|
+
portId?: string;
|
895
|
+
channelId?: string;
|
896
|
+
proofInit?: Uint8Array;
|
897
|
+
proofHeight?: {
|
898
|
+
revisionNumber?: any;
|
899
|
+
revisionHeight?: any;
|
900
|
+
};
|
901
|
+
signer?: string;
|
902
|
+
}): _119.MsgChannelCloseConfirm;
|
903
|
+
};
|
904
|
+
MsgChannelCloseConfirmResponse: {
|
905
|
+
encode(_: _119.MsgChannelCloseConfirmResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
906
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgChannelCloseConfirmResponse;
|
907
|
+
fromJSON(_: any): _119.MsgChannelCloseConfirmResponse;
|
908
|
+
toJSON(_: _119.MsgChannelCloseConfirmResponse): unknown;
|
909
|
+
fromPartial(_: {}): _119.MsgChannelCloseConfirmResponse;
|
910
|
+
};
|
911
|
+
MsgRecvPacket: {
|
912
|
+
encode(message: _119.MsgRecvPacket, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
913
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgRecvPacket;
|
914
|
+
fromJSON(object: any): _119.MsgRecvPacket;
|
915
|
+
toJSON(message: _119.MsgRecvPacket): unknown;
|
916
|
+
fromPartial(object: {
|
917
|
+
packet?: {
|
918
|
+
sequence?: any;
|
919
|
+
sourcePort?: string;
|
920
|
+
sourceChannel?: string;
|
921
|
+
destinationPort?: string;
|
922
|
+
destinationChannel?: string;
|
923
|
+
data?: Uint8Array;
|
924
|
+
timeoutHeight?: {
|
925
|
+
revisionNumber?: any;
|
926
|
+
revisionHeight?: any;
|
927
|
+
};
|
928
|
+
timeoutTimestamp?: any;
|
929
|
+
};
|
930
|
+
proofCommitment?: Uint8Array;
|
931
|
+
proofHeight?: {
|
932
|
+
revisionNumber?: any;
|
933
|
+
revisionHeight?: any;
|
934
|
+
};
|
935
|
+
signer?: string;
|
936
|
+
}): _119.MsgRecvPacket;
|
937
|
+
};
|
938
|
+
MsgRecvPacketResponse: {
|
939
|
+
encode(_: _119.MsgRecvPacketResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
940
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgRecvPacketResponse;
|
941
|
+
fromJSON(_: any): _119.MsgRecvPacketResponse;
|
942
|
+
toJSON(_: _119.MsgRecvPacketResponse): unknown;
|
943
|
+
fromPartial(_: {}): _119.MsgRecvPacketResponse;
|
944
|
+
};
|
945
|
+
MsgTimeout: {
|
946
|
+
encode(message: _119.MsgTimeout, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
947
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgTimeout;
|
948
|
+
fromJSON(object: any): _119.MsgTimeout;
|
949
|
+
toJSON(message: _119.MsgTimeout): unknown;
|
950
|
+
fromPartial(object: {
|
951
|
+
packet?: {
|
952
|
+
sequence?: any;
|
953
|
+
sourcePort?: string;
|
954
|
+
sourceChannel?: string;
|
955
|
+
destinationPort?: string;
|
956
|
+
destinationChannel?: string;
|
957
|
+
data?: Uint8Array;
|
958
|
+
timeoutHeight?: {
|
959
|
+
revisionNumber?: any;
|
960
|
+
revisionHeight?: any;
|
961
|
+
};
|
962
|
+
timeoutTimestamp?: any;
|
963
|
+
};
|
964
|
+
proofUnreceived?: Uint8Array;
|
965
|
+
proofHeight?: {
|
966
|
+
revisionNumber?: any;
|
967
|
+
revisionHeight?: any;
|
968
|
+
};
|
969
|
+
nextSequenceRecv?: any;
|
970
|
+
signer?: string;
|
971
|
+
}): _119.MsgTimeout;
|
972
|
+
};
|
973
|
+
MsgTimeoutResponse: {
|
974
|
+
encode(_: _119.MsgTimeoutResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
975
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgTimeoutResponse;
|
976
|
+
fromJSON(_: any): _119.MsgTimeoutResponse;
|
977
|
+
toJSON(_: _119.MsgTimeoutResponse): unknown;
|
978
|
+
fromPartial(_: {}): _119.MsgTimeoutResponse;
|
979
|
+
};
|
980
|
+
MsgTimeoutOnClose: {
|
981
|
+
encode(message: _119.MsgTimeoutOnClose, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
982
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgTimeoutOnClose;
|
983
|
+
fromJSON(object: any): _119.MsgTimeoutOnClose;
|
984
|
+
toJSON(message: _119.MsgTimeoutOnClose): unknown;
|
985
|
+
fromPartial(object: {
|
986
|
+
packet?: {
|
987
|
+
sequence?: any;
|
988
|
+
sourcePort?: string;
|
989
|
+
sourceChannel?: string;
|
990
|
+
destinationPort?: string;
|
991
|
+
destinationChannel?: string;
|
992
|
+
data?: Uint8Array;
|
993
|
+
timeoutHeight?: {
|
994
|
+
revisionNumber?: any;
|
995
|
+
revisionHeight?: any;
|
996
|
+
};
|
997
|
+
timeoutTimestamp?: any;
|
998
|
+
};
|
999
|
+
proofUnreceived?: Uint8Array;
|
1000
|
+
proofClose?: Uint8Array;
|
1001
|
+
proofHeight?: {
|
1002
|
+
revisionNumber?: any;
|
1003
|
+
revisionHeight?: any;
|
1004
|
+
};
|
1005
|
+
nextSequenceRecv?: any;
|
1006
|
+
signer?: string;
|
1007
|
+
}): _119.MsgTimeoutOnClose;
|
1008
|
+
};
|
1009
|
+
MsgTimeoutOnCloseResponse: {
|
1010
|
+
encode(_: _119.MsgTimeoutOnCloseResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1011
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgTimeoutOnCloseResponse;
|
1012
|
+
fromJSON(_: any): _119.MsgTimeoutOnCloseResponse;
|
1013
|
+
toJSON(_: _119.MsgTimeoutOnCloseResponse): unknown;
|
1014
|
+
fromPartial(_: {}): _119.MsgTimeoutOnCloseResponse;
|
1015
|
+
};
|
1016
|
+
MsgAcknowledgement: {
|
1017
|
+
encode(message: _119.MsgAcknowledgement, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1018
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgAcknowledgement;
|
1019
|
+
fromJSON(object: any): _119.MsgAcknowledgement;
|
1020
|
+
toJSON(message: _119.MsgAcknowledgement): unknown;
|
1021
|
+
fromPartial(object: {
|
1022
|
+
packet?: {
|
1023
|
+
sequence?: any;
|
1024
|
+
sourcePort?: string;
|
1025
|
+
sourceChannel?: string;
|
1026
|
+
destinationPort?: string;
|
1027
|
+
destinationChannel?: string;
|
1028
|
+
data?: Uint8Array;
|
1029
|
+
timeoutHeight?: {
|
1030
|
+
revisionNumber?: any;
|
1031
|
+
revisionHeight?: any;
|
1032
|
+
};
|
1033
|
+
timeoutTimestamp?: any;
|
1034
|
+
};
|
1035
|
+
acknowledgement?: Uint8Array;
|
1036
|
+
proofAcked?: Uint8Array;
|
1037
|
+
proofHeight?: {
|
1038
|
+
revisionNumber?: any;
|
1039
|
+
revisionHeight?: any;
|
1040
|
+
};
|
1041
|
+
signer?: string;
|
1042
|
+
}): _119.MsgAcknowledgement;
|
1043
|
+
};
|
1044
|
+
MsgAcknowledgementResponse: {
|
1045
|
+
encode(_: _119.MsgAcknowledgementResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1046
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _119.MsgAcknowledgementResponse;
|
1047
|
+
fromJSON(_: any): _119.MsgAcknowledgementResponse;
|
1048
|
+
toJSON(_: _119.MsgAcknowledgementResponse): unknown;
|
1049
|
+
fromPartial(_: {}): _119.MsgAcknowledgementResponse;
|
1050
|
+
};
|
1051
|
+
QueryChannelRequest: {
|
1052
|
+
encode(message: _118.QueryChannelRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1053
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryChannelRequest;
|
1054
|
+
fromJSON(object: any): _118.QueryChannelRequest;
|
1055
|
+
toJSON(message: _118.QueryChannelRequest): unknown;
|
1056
|
+
fromPartial(object: {
|
1057
|
+
portId?: string;
|
1058
|
+
channelId?: string;
|
1059
|
+
}): _118.QueryChannelRequest;
|
1060
|
+
};
|
1061
|
+
QueryChannelResponse: {
|
1062
|
+
encode(message: _118.QueryChannelResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1063
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryChannelResponse;
|
1064
|
+
fromJSON(object: any): _118.QueryChannelResponse;
|
1065
|
+
toJSON(message: _118.QueryChannelResponse): unknown;
|
1066
|
+
fromPartial(object: {
|
1067
|
+
channel?: {
|
1068
|
+
state?: _116.State;
|
1069
|
+
ordering?: _116.Order;
|
1070
|
+
counterparty?: {
|
1071
|
+
portId?: string;
|
1072
|
+
channelId?: string;
|
1073
|
+
};
|
1074
|
+
connectionHops?: string[];
|
1075
|
+
version?: string;
|
1076
|
+
};
|
1077
|
+
proof?: Uint8Array;
|
1078
|
+
proofHeight?: {
|
1079
|
+
revisionNumber?: any;
|
1080
|
+
revisionHeight?: any;
|
1081
|
+
};
|
1082
|
+
}): _118.QueryChannelResponse;
|
1083
|
+
};
|
1084
|
+
QueryChannelsRequest: {
|
1085
|
+
encode(message: _118.QueryChannelsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1086
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryChannelsRequest;
|
1087
|
+
fromJSON(object: any): _118.QueryChannelsRequest;
|
1088
|
+
toJSON(message: _118.QueryChannelsRequest): unknown;
|
1089
|
+
fromPartial(object: {
|
1090
|
+
pagination?: {
|
1091
|
+
key?: Uint8Array;
|
1092
|
+
offset?: any;
|
1093
|
+
limit?: any;
|
1094
|
+
countTotal?: boolean;
|
1095
|
+
reverse?: boolean;
|
1096
|
+
};
|
1097
|
+
}): _118.QueryChannelsRequest;
|
1098
|
+
};
|
1099
|
+
QueryChannelsResponse: {
|
1100
|
+
encode(message: _118.QueryChannelsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1101
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryChannelsResponse;
|
1102
|
+
fromJSON(object: any): _118.QueryChannelsResponse;
|
1103
|
+
toJSON(message: _118.QueryChannelsResponse): unknown;
|
1104
|
+
fromPartial(object: {
|
1105
|
+
channels?: {
|
1106
|
+
state?: _116.State;
|
1107
|
+
ordering?: _116.Order;
|
1108
|
+
counterparty?: {
|
1109
|
+
portId?: string;
|
1110
|
+
channelId?: string;
|
1111
|
+
};
|
1112
|
+
connectionHops?: string[];
|
1113
|
+
version?: string;
|
1114
|
+
portId?: string;
|
1115
|
+
channelId?: string;
|
1116
|
+
}[];
|
1117
|
+
pagination?: {
|
1118
|
+
nextKey?: Uint8Array;
|
1119
|
+
total?: any;
|
1120
|
+
};
|
1121
|
+
height?: {
|
1122
|
+
revisionNumber?: any;
|
1123
|
+
revisionHeight?: any;
|
1124
|
+
};
|
1125
|
+
}): _118.QueryChannelsResponse;
|
1126
|
+
};
|
1127
|
+
QueryConnectionChannelsRequest: {
|
1128
|
+
encode(message: _118.QueryConnectionChannelsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1129
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryConnectionChannelsRequest;
|
1130
|
+
fromJSON(object: any): _118.QueryConnectionChannelsRequest;
|
1131
|
+
toJSON(message: _118.QueryConnectionChannelsRequest): unknown;
|
1132
|
+
fromPartial(object: {
|
1133
|
+
connection?: string;
|
1134
|
+
pagination?: {
|
1135
|
+
key?: Uint8Array;
|
1136
|
+
offset?: any;
|
1137
|
+
limit?: any;
|
1138
|
+
countTotal?: boolean;
|
1139
|
+
reverse?: boolean;
|
1140
|
+
};
|
1141
|
+
}): _118.QueryConnectionChannelsRequest;
|
1142
|
+
};
|
1143
|
+
QueryConnectionChannelsResponse: {
|
1144
|
+
encode(message: _118.QueryConnectionChannelsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1145
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryConnectionChannelsResponse;
|
1146
|
+
fromJSON(object: any): _118.QueryConnectionChannelsResponse;
|
1147
|
+
toJSON(message: _118.QueryConnectionChannelsResponse): unknown;
|
1148
|
+
fromPartial(object: {
|
1149
|
+
channels?: {
|
1150
|
+
state?: _116.State;
|
1151
|
+
ordering?: _116.Order;
|
1152
|
+
counterparty?: {
|
1153
|
+
portId?: string;
|
1154
|
+
channelId?: string;
|
1155
|
+
};
|
1156
|
+
connectionHops?: string[];
|
1157
|
+
version?: string;
|
1158
|
+
portId?: string;
|
1159
|
+
channelId?: string;
|
1160
|
+
}[];
|
1161
|
+
pagination?: {
|
1162
|
+
nextKey?: Uint8Array;
|
1163
|
+
total?: any;
|
1164
|
+
};
|
1165
|
+
height?: {
|
1166
|
+
revisionNumber?: any;
|
1167
|
+
revisionHeight?: any;
|
1168
|
+
};
|
1169
|
+
}): _118.QueryConnectionChannelsResponse;
|
1170
|
+
};
|
1171
|
+
QueryChannelClientStateRequest: {
|
1172
|
+
encode(message: _118.QueryChannelClientStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1173
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryChannelClientStateRequest;
|
1174
|
+
fromJSON(object: any): _118.QueryChannelClientStateRequest;
|
1175
|
+
toJSON(message: _118.QueryChannelClientStateRequest): unknown;
|
1176
|
+
fromPartial(object: {
|
1177
|
+
portId?: string;
|
1178
|
+
channelId?: string;
|
1179
|
+
}): _118.QueryChannelClientStateRequest;
|
1180
|
+
};
|
1181
|
+
QueryChannelClientStateResponse: {
|
1182
|
+
encode(message: _118.QueryChannelClientStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1183
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryChannelClientStateResponse;
|
1184
|
+
fromJSON(object: any): _118.QueryChannelClientStateResponse;
|
1185
|
+
toJSON(message: _118.QueryChannelClientStateResponse): unknown;
|
1186
|
+
fromPartial(object: {
|
1187
|
+
identifiedClientState?: {
|
1188
|
+
clientId?: string;
|
1189
|
+
clientState?: {
|
1190
|
+
typeUrl?: string;
|
1191
|
+
value?: Uint8Array;
|
1192
|
+
};
|
1193
|
+
};
|
1194
|
+
proof?: Uint8Array;
|
1195
|
+
proofHeight?: {
|
1196
|
+
revisionNumber?: any;
|
1197
|
+
revisionHeight?: any;
|
1198
|
+
};
|
1199
|
+
}): _118.QueryChannelClientStateResponse;
|
1200
|
+
};
|
1201
|
+
QueryChannelConsensusStateRequest: {
|
1202
|
+
encode(message: _118.QueryChannelConsensusStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1203
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryChannelConsensusStateRequest;
|
1204
|
+
fromJSON(object: any): _118.QueryChannelConsensusStateRequest;
|
1205
|
+
toJSON(message: _118.QueryChannelConsensusStateRequest): unknown;
|
1206
|
+
fromPartial(object: {
|
1207
|
+
portId?: string;
|
1208
|
+
channelId?: string;
|
1209
|
+
revisionNumber?: any;
|
1210
|
+
revisionHeight?: any;
|
1211
|
+
}): _118.QueryChannelConsensusStateRequest;
|
1212
|
+
};
|
1213
|
+
QueryChannelConsensusStateResponse: {
|
1214
|
+
encode(message: _118.QueryChannelConsensusStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1215
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryChannelConsensusStateResponse;
|
1216
|
+
fromJSON(object: any): _118.QueryChannelConsensusStateResponse;
|
1217
|
+
toJSON(message: _118.QueryChannelConsensusStateResponse): unknown;
|
1218
|
+
fromPartial(object: {
|
1219
|
+
consensusState?: {
|
1220
|
+
typeUrl?: string;
|
1221
|
+
value?: Uint8Array;
|
1222
|
+
};
|
1223
|
+
clientId?: string;
|
1224
|
+
proof?: Uint8Array;
|
1225
|
+
proofHeight?: {
|
1226
|
+
revisionNumber?: any;
|
1227
|
+
revisionHeight?: any;
|
1228
|
+
};
|
1229
|
+
}): _118.QueryChannelConsensusStateResponse;
|
1230
|
+
};
|
1231
|
+
QueryPacketCommitmentRequest: {
|
1232
|
+
encode(message: _118.QueryPacketCommitmentRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1233
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryPacketCommitmentRequest;
|
1234
|
+
fromJSON(object: any): _118.QueryPacketCommitmentRequest;
|
1235
|
+
toJSON(message: _118.QueryPacketCommitmentRequest): unknown;
|
1236
|
+
fromPartial(object: {
|
1237
|
+
portId?: string;
|
1238
|
+
channelId?: string;
|
1239
|
+
sequence?: any;
|
1240
|
+
}): _118.QueryPacketCommitmentRequest;
|
1241
|
+
};
|
1242
|
+
QueryPacketCommitmentResponse: {
|
1243
|
+
encode(message: _118.QueryPacketCommitmentResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1244
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryPacketCommitmentResponse;
|
1245
|
+
fromJSON(object: any): _118.QueryPacketCommitmentResponse;
|
1246
|
+
toJSON(message: _118.QueryPacketCommitmentResponse): unknown;
|
1247
|
+
fromPartial(object: {
|
1248
|
+
commitment?: Uint8Array;
|
1249
|
+
proof?: Uint8Array;
|
1250
|
+
proofHeight?: {
|
1251
|
+
revisionNumber?: any;
|
1252
|
+
revisionHeight?: any;
|
1253
|
+
};
|
1254
|
+
}): _118.QueryPacketCommitmentResponse;
|
1255
|
+
};
|
1256
|
+
QueryPacketCommitmentsRequest: {
|
1257
|
+
encode(message: _118.QueryPacketCommitmentsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1258
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryPacketCommitmentsRequest;
|
1259
|
+
fromJSON(object: any): _118.QueryPacketCommitmentsRequest;
|
1260
|
+
toJSON(message: _118.QueryPacketCommitmentsRequest): unknown;
|
1261
|
+
fromPartial(object: {
|
1262
|
+
portId?: string;
|
1263
|
+
channelId?: string;
|
1264
|
+
pagination?: {
|
1265
|
+
key?: Uint8Array;
|
1266
|
+
offset?: any;
|
1267
|
+
limit?: any;
|
1268
|
+
countTotal?: boolean;
|
1269
|
+
reverse?: boolean;
|
1270
|
+
};
|
1271
|
+
}): _118.QueryPacketCommitmentsRequest;
|
1272
|
+
};
|
1273
|
+
QueryPacketCommitmentsResponse: {
|
1274
|
+
encode(message: _118.QueryPacketCommitmentsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1275
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryPacketCommitmentsResponse;
|
1276
|
+
fromJSON(object: any): _118.QueryPacketCommitmentsResponse;
|
1277
|
+
toJSON(message: _118.QueryPacketCommitmentsResponse): unknown;
|
1278
|
+
fromPartial(object: {
|
1279
|
+
commitments?: {
|
1280
|
+
portId?: string;
|
1281
|
+
channelId?: string;
|
1282
|
+
sequence?: any;
|
1283
|
+
data?: Uint8Array;
|
1284
|
+
}[];
|
1285
|
+
pagination?: {
|
1286
|
+
nextKey?: Uint8Array;
|
1287
|
+
total?: any;
|
1288
|
+
};
|
1289
|
+
height?: {
|
1290
|
+
revisionNumber?: any;
|
1291
|
+
revisionHeight?: any;
|
1292
|
+
};
|
1293
|
+
}): _118.QueryPacketCommitmentsResponse;
|
1294
|
+
};
|
1295
|
+
QueryPacketReceiptRequest: {
|
1296
|
+
encode(message: _118.QueryPacketReceiptRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1297
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryPacketReceiptRequest;
|
1298
|
+
fromJSON(object: any): _118.QueryPacketReceiptRequest;
|
1299
|
+
toJSON(message: _118.QueryPacketReceiptRequest): unknown;
|
1300
|
+
fromPartial(object: {
|
1301
|
+
portId?: string;
|
1302
|
+
channelId?: string;
|
1303
|
+
sequence?: any;
|
1304
|
+
}): _118.QueryPacketReceiptRequest;
|
1305
|
+
};
|
1306
|
+
QueryPacketReceiptResponse: {
|
1307
|
+
encode(message: _118.QueryPacketReceiptResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1308
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryPacketReceiptResponse;
|
1309
|
+
fromJSON(object: any): _118.QueryPacketReceiptResponse;
|
1310
|
+
toJSON(message: _118.QueryPacketReceiptResponse): unknown;
|
1311
|
+
fromPartial(object: {
|
1312
|
+
received?: boolean;
|
1313
|
+
proof?: Uint8Array;
|
1314
|
+
proofHeight?: {
|
1315
|
+
revisionNumber?: any;
|
1316
|
+
revisionHeight?: any;
|
1317
|
+
};
|
1318
|
+
}): _118.QueryPacketReceiptResponse;
|
1319
|
+
};
|
1320
|
+
QueryPacketAcknowledgementRequest: {
|
1321
|
+
encode(message: _118.QueryPacketAcknowledgementRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1322
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryPacketAcknowledgementRequest;
|
1323
|
+
fromJSON(object: any): _118.QueryPacketAcknowledgementRequest;
|
1324
|
+
toJSON(message: _118.QueryPacketAcknowledgementRequest): unknown;
|
1325
|
+
fromPartial(object: {
|
1326
|
+
portId?: string;
|
1327
|
+
channelId?: string;
|
1328
|
+
sequence?: any;
|
1329
|
+
}): _118.QueryPacketAcknowledgementRequest;
|
1330
|
+
};
|
1331
|
+
QueryPacketAcknowledgementResponse: {
|
1332
|
+
encode(message: _118.QueryPacketAcknowledgementResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1333
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryPacketAcknowledgementResponse;
|
1334
|
+
fromJSON(object: any): _118.QueryPacketAcknowledgementResponse;
|
1335
|
+
toJSON(message: _118.QueryPacketAcknowledgementResponse): unknown;
|
1336
|
+
fromPartial(object: {
|
1337
|
+
acknowledgement?: Uint8Array;
|
1338
|
+
proof?: Uint8Array;
|
1339
|
+
proofHeight?: {
|
1340
|
+
revisionNumber?: any;
|
1341
|
+
revisionHeight?: any;
|
1342
|
+
};
|
1343
|
+
}): _118.QueryPacketAcknowledgementResponse;
|
1344
|
+
};
|
1345
|
+
QueryPacketAcknowledgementsRequest: {
|
1346
|
+
encode(message: _118.QueryPacketAcknowledgementsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1347
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryPacketAcknowledgementsRequest;
|
1348
|
+
fromJSON(object: any): _118.QueryPacketAcknowledgementsRequest;
|
1349
|
+
toJSON(message: _118.QueryPacketAcknowledgementsRequest): unknown;
|
1350
|
+
fromPartial(object: {
|
1351
|
+
portId?: string;
|
1352
|
+
channelId?: string;
|
1353
|
+
pagination?: {
|
1354
|
+
key?: Uint8Array;
|
1355
|
+
offset?: any;
|
1356
|
+
limit?: any;
|
1357
|
+
countTotal?: boolean;
|
1358
|
+
reverse?: boolean;
|
1359
|
+
};
|
1360
|
+
packetCommitmentSequences?: any[];
|
1361
|
+
}): _118.QueryPacketAcknowledgementsRequest;
|
1362
|
+
};
|
1363
|
+
QueryPacketAcknowledgementsResponse: {
|
1364
|
+
encode(message: _118.QueryPacketAcknowledgementsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1365
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryPacketAcknowledgementsResponse;
|
1366
|
+
fromJSON(object: any): _118.QueryPacketAcknowledgementsResponse;
|
1367
|
+
toJSON(message: _118.QueryPacketAcknowledgementsResponse): unknown;
|
1368
|
+
fromPartial(object: {
|
1369
|
+
acknowledgements?: {
|
1370
|
+
portId?: string;
|
1371
|
+
channelId?: string;
|
1372
|
+
sequence?: any;
|
1373
|
+
data?: Uint8Array;
|
1374
|
+
}[];
|
1375
|
+
pagination?: {
|
1376
|
+
nextKey?: Uint8Array;
|
1377
|
+
total?: any;
|
1378
|
+
};
|
1379
|
+
height?: {
|
1380
|
+
revisionNumber?: any;
|
1381
|
+
revisionHeight?: any;
|
1382
|
+
};
|
1383
|
+
}): _118.QueryPacketAcknowledgementsResponse;
|
1384
|
+
};
|
1385
|
+
QueryUnreceivedPacketsRequest: {
|
1386
|
+
encode(message: _118.QueryUnreceivedPacketsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1387
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryUnreceivedPacketsRequest;
|
1388
|
+
fromJSON(object: any): _118.QueryUnreceivedPacketsRequest;
|
1389
|
+
toJSON(message: _118.QueryUnreceivedPacketsRequest): unknown;
|
1390
|
+
fromPartial(object: {
|
1391
|
+
portId?: string;
|
1392
|
+
channelId?: string;
|
1393
|
+
packetCommitmentSequences?: any[];
|
1394
|
+
}): _118.QueryUnreceivedPacketsRequest;
|
1395
|
+
};
|
1396
|
+
QueryUnreceivedPacketsResponse: {
|
1397
|
+
encode(message: _118.QueryUnreceivedPacketsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1398
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryUnreceivedPacketsResponse;
|
1399
|
+
fromJSON(object: any): _118.QueryUnreceivedPacketsResponse;
|
1400
|
+
toJSON(message: _118.QueryUnreceivedPacketsResponse): unknown;
|
1401
|
+
fromPartial(object: {
|
1402
|
+
sequences?: any[];
|
1403
|
+
height?: {
|
1404
|
+
revisionNumber?: any;
|
1405
|
+
revisionHeight?: any;
|
1406
|
+
};
|
1407
|
+
}): _118.QueryUnreceivedPacketsResponse;
|
1408
|
+
};
|
1409
|
+
QueryUnreceivedAcksRequest: {
|
1410
|
+
encode(message: _118.QueryUnreceivedAcksRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1411
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryUnreceivedAcksRequest;
|
1412
|
+
fromJSON(object: any): _118.QueryUnreceivedAcksRequest;
|
1413
|
+
toJSON(message: _118.QueryUnreceivedAcksRequest): unknown;
|
1414
|
+
fromPartial(object: {
|
1415
|
+
portId?: string;
|
1416
|
+
channelId?: string;
|
1417
|
+
packetAckSequences?: any[];
|
1418
|
+
}): _118.QueryUnreceivedAcksRequest;
|
1419
|
+
};
|
1420
|
+
QueryUnreceivedAcksResponse: {
|
1421
|
+
encode(message: _118.QueryUnreceivedAcksResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1422
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryUnreceivedAcksResponse;
|
1423
|
+
fromJSON(object: any): _118.QueryUnreceivedAcksResponse;
|
1424
|
+
toJSON(message: _118.QueryUnreceivedAcksResponse): unknown;
|
1425
|
+
fromPartial(object: {
|
1426
|
+
sequences?: any[];
|
1427
|
+
height?: {
|
1428
|
+
revisionNumber?: any;
|
1429
|
+
revisionHeight?: any;
|
1430
|
+
};
|
1431
|
+
}): _118.QueryUnreceivedAcksResponse;
|
1432
|
+
};
|
1433
|
+
QueryNextSequenceReceiveRequest: {
|
1434
|
+
encode(message: _118.QueryNextSequenceReceiveRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1435
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryNextSequenceReceiveRequest;
|
1436
|
+
fromJSON(object: any): _118.QueryNextSequenceReceiveRequest;
|
1437
|
+
toJSON(message: _118.QueryNextSequenceReceiveRequest): unknown;
|
1438
|
+
fromPartial(object: {
|
1439
|
+
portId?: string;
|
1440
|
+
channelId?: string;
|
1441
|
+
}): _118.QueryNextSequenceReceiveRequest;
|
1442
|
+
};
|
1443
|
+
QueryNextSequenceReceiveResponse: {
|
1444
|
+
encode(message: _118.QueryNextSequenceReceiveResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1445
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _118.QueryNextSequenceReceiveResponse;
|
1446
|
+
fromJSON(object: any): _118.QueryNextSequenceReceiveResponse;
|
1447
|
+
toJSON(message: _118.QueryNextSequenceReceiveResponse): unknown;
|
1448
|
+
fromPartial(object: {
|
1449
|
+
nextSequenceReceive?: any;
|
1450
|
+
proof?: Uint8Array;
|
1451
|
+
proofHeight?: {
|
1452
|
+
revisionNumber?: any;
|
1453
|
+
revisionHeight?: any;
|
1454
|
+
};
|
1455
|
+
}): _118.QueryNextSequenceReceiveResponse;
|
1456
|
+
};
|
1457
|
+
GenesisState: {
|
1458
|
+
encode(message: _117.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1459
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _117.GenesisState;
|
1460
|
+
fromJSON(object: any): _117.GenesisState;
|
1461
|
+
toJSON(message: _117.GenesisState): unknown;
|
1462
|
+
fromPartial(object: {
|
1463
|
+
channels?: {
|
1464
|
+
state?: _116.State;
|
1465
|
+
ordering?: _116.Order;
|
1466
|
+
counterparty?: {
|
1467
|
+
portId?: string;
|
1468
|
+
channelId?: string;
|
1469
|
+
};
|
1470
|
+
connectionHops?: string[];
|
1471
|
+
version?: string;
|
1472
|
+
portId?: string;
|
1473
|
+
channelId?: string;
|
1474
|
+
}[];
|
1475
|
+
acknowledgements?: {
|
1476
|
+
portId?: string;
|
1477
|
+
channelId?: string;
|
1478
|
+
sequence?: any;
|
1479
|
+
data?: Uint8Array;
|
1480
|
+
}[];
|
1481
|
+
commitments?: {
|
1482
|
+
portId?: string;
|
1483
|
+
channelId?: string;
|
1484
|
+
sequence?: any;
|
1485
|
+
data?: Uint8Array;
|
1486
|
+
}[];
|
1487
|
+
receipts?: {
|
1488
|
+
portId?: string;
|
1489
|
+
channelId?: string;
|
1490
|
+
sequence?: any;
|
1491
|
+
data?: Uint8Array;
|
1492
|
+
}[];
|
1493
|
+
sendSequences?: {
|
1494
|
+
portId?: string;
|
1495
|
+
channelId?: string;
|
1496
|
+
sequence?: any;
|
1497
|
+
}[];
|
1498
|
+
recvSequences?: {
|
1499
|
+
portId?: string;
|
1500
|
+
channelId?: string;
|
1501
|
+
sequence?: any;
|
1502
|
+
}[];
|
1503
|
+
ackSequences?: {
|
1504
|
+
portId?: string;
|
1505
|
+
channelId?: string;
|
1506
|
+
sequence?: any;
|
1507
|
+
}[];
|
1508
|
+
nextChannelSequence?: any;
|
1509
|
+
}): _117.GenesisState;
|
1510
|
+
};
|
1511
|
+
PacketSequence: {
|
1512
|
+
encode(message: _117.PacketSequence, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1513
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _117.PacketSequence;
|
1514
|
+
fromJSON(object: any): _117.PacketSequence;
|
1515
|
+
toJSON(message: _117.PacketSequence): unknown;
|
1516
|
+
fromPartial(object: {
|
1517
|
+
portId?: string;
|
1518
|
+
channelId?: string;
|
1519
|
+
sequence?: any;
|
1520
|
+
}): _117.PacketSequence;
|
1521
|
+
};
|
1522
|
+
stateFromJSON(object: any): _116.State;
|
1523
|
+
stateToJSON(object: _116.State): string;
|
1524
|
+
orderFromJSON(object: any): _116.Order;
|
1525
|
+
orderToJSON(object: _116.Order): string;
|
1526
|
+
State: typeof _116.State;
|
1527
|
+
Order: typeof _116.Order;
|
1528
|
+
Channel: {
|
1529
|
+
encode(message: _116.Channel, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1530
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _116.Channel;
|
1531
|
+
fromJSON(object: any): _116.Channel;
|
1532
|
+
toJSON(message: _116.Channel): unknown;
|
1533
|
+
fromPartial(object: {
|
1534
|
+
state?: _116.State;
|
1535
|
+
ordering?: _116.Order;
|
1536
|
+
counterparty?: {
|
1537
|
+
portId?: string;
|
1538
|
+
channelId?: string;
|
1539
|
+
};
|
1540
|
+
connectionHops?: string[];
|
1541
|
+
version?: string;
|
1542
|
+
}): _116.Channel;
|
1543
|
+
};
|
1544
|
+
IdentifiedChannel: {
|
1545
|
+
encode(message: _116.IdentifiedChannel, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1546
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _116.IdentifiedChannel;
|
1547
|
+
fromJSON(object: any): _116.IdentifiedChannel;
|
1548
|
+
toJSON(message: _116.IdentifiedChannel): unknown;
|
1549
|
+
fromPartial(object: {
|
1550
|
+
state?: _116.State;
|
1551
|
+
ordering?: _116.Order;
|
1552
|
+
counterparty?: {
|
1553
|
+
portId?: string;
|
1554
|
+
channelId?: string;
|
1555
|
+
};
|
1556
|
+
connectionHops?: string[];
|
1557
|
+
version?: string;
|
1558
|
+
portId?: string;
|
1559
|
+
channelId?: string;
|
1560
|
+
}): _116.IdentifiedChannel;
|
1561
|
+
};
|
1562
|
+
Counterparty: {
|
1563
|
+
encode(message: _116.Counterparty, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1564
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _116.Counterparty;
|
1565
|
+
fromJSON(object: any): _116.Counterparty;
|
1566
|
+
toJSON(message: _116.Counterparty): unknown;
|
1567
|
+
fromPartial(object: {
|
1568
|
+
portId?: string;
|
1569
|
+
channelId?: string;
|
1570
|
+
}): _116.Counterparty;
|
1571
|
+
};
|
1572
|
+
Packet: {
|
1573
|
+
encode(message: _116.Packet, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1574
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _116.Packet;
|
1575
|
+
fromJSON(object: any): _116.Packet;
|
1576
|
+
toJSON(message: _116.Packet): unknown;
|
1577
|
+
fromPartial(object: {
|
1578
|
+
sequence?: any;
|
1579
|
+
sourcePort?: string;
|
1580
|
+
sourceChannel?: string;
|
1581
|
+
destinationPort?: string;
|
1582
|
+
destinationChannel?: string;
|
1583
|
+
data?: Uint8Array;
|
1584
|
+
timeoutHeight?: {
|
1585
|
+
revisionNumber?: any;
|
1586
|
+
revisionHeight?: any;
|
1587
|
+
};
|
1588
|
+
timeoutTimestamp?: any;
|
1589
|
+
}): _116.Packet;
|
1590
|
+
};
|
1591
|
+
PacketState: {
|
1592
|
+
encode(message: _116.PacketState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1593
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _116.PacketState;
|
1594
|
+
fromJSON(object: any): _116.PacketState;
|
1595
|
+
toJSON(message: _116.PacketState): unknown;
|
1596
|
+
fromPartial(object: {
|
1597
|
+
portId?: string;
|
1598
|
+
channelId?: string;
|
1599
|
+
sequence?: any;
|
1600
|
+
data?: Uint8Array;
|
1601
|
+
}): _116.PacketState;
|
1602
|
+
};
|
1603
|
+
Acknowledgement: {
|
1604
|
+
encode(message: _116.Acknowledgement, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1605
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _116.Acknowledgement;
|
1606
|
+
fromJSON(object: any): _116.Acknowledgement;
|
1607
|
+
toJSON(message: _116.Acknowledgement): unknown;
|
1608
|
+
fromPartial(object: {
|
1609
|
+
result?: Uint8Array;
|
1610
|
+
error?: string;
|
1611
|
+
}): _116.Acknowledgement;
|
1612
|
+
};
|
1613
|
+
};
|
1614
|
+
}
|
1615
|
+
namespace client {
|
1616
|
+
const v1: {
|
1617
|
+
MsgClientImpl: typeof _248.MsgClientImpl;
|
1618
|
+
QueryClientImpl: typeof _243.QueryClientImpl;
|
1619
|
+
LCDQueryClient: typeof _239.LCDQueryClient;
|
1620
|
+
registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][];
|
1621
|
+
load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void;
|
1622
|
+
MessageComposer: {
|
1623
|
+
encoded: {
|
1624
|
+
createClient(value: _123.MsgCreateClient): {
|
1625
|
+
typeUrl: string;
|
1626
|
+
value: Uint8Array;
|
1627
|
+
};
|
1628
|
+
updateClient(value: _123.MsgUpdateClient): {
|
1629
|
+
typeUrl: string;
|
1630
|
+
value: Uint8Array;
|
1631
|
+
};
|
1632
|
+
upgradeClient(value: _123.MsgUpgradeClient): {
|
1633
|
+
typeUrl: string;
|
1634
|
+
value: Uint8Array;
|
1635
|
+
};
|
1636
|
+
submitMisbehaviour(value: _123.MsgSubmitMisbehaviour): {
|
1637
|
+
typeUrl: string;
|
1638
|
+
value: Uint8Array;
|
1639
|
+
};
|
1640
|
+
};
|
1641
|
+
withTypeUrl: {
|
1642
|
+
createClient(value: _123.MsgCreateClient): {
|
1643
|
+
typeUrl: string;
|
1644
|
+
value: _123.MsgCreateClient;
|
1645
|
+
};
|
1646
|
+
updateClient(value: _123.MsgUpdateClient): {
|
1647
|
+
typeUrl: string;
|
1648
|
+
value: _123.MsgUpdateClient;
|
1649
|
+
};
|
1650
|
+
upgradeClient(value: _123.MsgUpgradeClient): {
|
1651
|
+
typeUrl: string;
|
1652
|
+
value: _123.MsgUpgradeClient;
|
1653
|
+
};
|
1654
|
+
submitMisbehaviour(value: _123.MsgSubmitMisbehaviour): {
|
1655
|
+
typeUrl: string;
|
1656
|
+
value: _123.MsgSubmitMisbehaviour;
|
1657
|
+
};
|
1658
|
+
};
|
1659
|
+
toJSON: {
|
1660
|
+
createClient(value: _123.MsgCreateClient): {
|
1661
|
+
typeUrl: string;
|
1662
|
+
value: unknown;
|
1663
|
+
};
|
1664
|
+
updateClient(value: _123.MsgUpdateClient): {
|
1665
|
+
typeUrl: string;
|
1666
|
+
value: unknown;
|
1667
|
+
};
|
1668
|
+
upgradeClient(value: _123.MsgUpgradeClient): {
|
1669
|
+
typeUrl: string;
|
1670
|
+
value: unknown;
|
1671
|
+
};
|
1672
|
+
submitMisbehaviour(value: _123.MsgSubmitMisbehaviour): {
|
1673
|
+
typeUrl: string;
|
1674
|
+
value: unknown;
|
1675
|
+
};
|
1676
|
+
};
|
1677
|
+
fromJSON: {
|
1678
|
+
createClient(value: any): {
|
1679
|
+
typeUrl: string;
|
1680
|
+
value: _123.MsgCreateClient;
|
1681
|
+
};
|
1682
|
+
updateClient(value: any): {
|
1683
|
+
typeUrl: string;
|
1684
|
+
value: _123.MsgUpdateClient;
|
1685
|
+
};
|
1686
|
+
upgradeClient(value: any): {
|
1687
|
+
typeUrl: string;
|
1688
|
+
value: _123.MsgUpgradeClient;
|
1689
|
+
};
|
1690
|
+
submitMisbehaviour(value: any): {
|
1691
|
+
typeUrl: string;
|
1692
|
+
value: _123.MsgSubmitMisbehaviour;
|
1693
|
+
};
|
1694
|
+
};
|
1695
|
+
fromPartial: {
|
1696
|
+
createClient(value: _123.MsgCreateClient): {
|
1697
|
+
typeUrl: string;
|
1698
|
+
value: _123.MsgCreateClient;
|
1699
|
+
};
|
1700
|
+
updateClient(value: _123.MsgUpdateClient): {
|
1701
|
+
typeUrl: string;
|
1702
|
+
value: _123.MsgUpdateClient;
|
1703
|
+
};
|
1704
|
+
upgradeClient(value: _123.MsgUpgradeClient): {
|
1705
|
+
typeUrl: string;
|
1706
|
+
value: _123.MsgUpgradeClient;
|
1707
|
+
};
|
1708
|
+
submitMisbehaviour(value: _123.MsgSubmitMisbehaviour): {
|
1709
|
+
typeUrl: string;
|
1710
|
+
value: _123.MsgSubmitMisbehaviour;
|
1711
|
+
};
|
1712
|
+
};
|
1713
|
+
};
|
1714
|
+
AminoConverter: {
|
1715
|
+
"/ibc.core.client.v1.MsgCreateClient": {
|
1716
|
+
aminoType: string;
|
1717
|
+
toAmino: ({ clientState, consensusState, signer }: _123.MsgCreateClient) => {
|
1718
|
+
client_state: {
|
1719
|
+
type_url: string;
|
1720
|
+
value: Uint8Array;
|
1721
|
+
};
|
1722
|
+
consensus_state: {
|
1723
|
+
type_url: string;
|
1724
|
+
value: Uint8Array;
|
1725
|
+
};
|
1726
|
+
signer: string;
|
1727
|
+
};
|
1728
|
+
fromAmino: ({ client_state, consensus_state, signer }: {
|
1729
|
+
client_state: {
|
1730
|
+
type_url: string;
|
1731
|
+
value: Uint8Array;
|
1732
|
+
};
|
1733
|
+
consensus_state: {
|
1734
|
+
type_url: string;
|
1735
|
+
value: Uint8Array;
|
1736
|
+
};
|
1737
|
+
signer: string;
|
1738
|
+
}) => _123.MsgCreateClient;
|
1739
|
+
};
|
1740
|
+
"/ibc.core.client.v1.MsgUpdateClient": {
|
1741
|
+
aminoType: string;
|
1742
|
+
toAmino: ({ clientId, header, signer }: _123.MsgUpdateClient) => {
|
1743
|
+
client_id: string;
|
1744
|
+
header: {
|
1745
|
+
type_url: string;
|
1746
|
+
value: Uint8Array;
|
1747
|
+
};
|
1748
|
+
signer: string;
|
1749
|
+
};
|
1750
|
+
fromAmino: ({ client_id, header, signer }: {
|
1751
|
+
client_id: string;
|
1752
|
+
header: {
|
1753
|
+
type_url: string;
|
1754
|
+
value: Uint8Array;
|
1755
|
+
};
|
1756
|
+
signer: string;
|
1757
|
+
}) => _123.MsgUpdateClient;
|
1758
|
+
};
|
1759
|
+
"/ibc.core.client.v1.MsgUpgradeClient": {
|
1760
|
+
aminoType: string;
|
1761
|
+
toAmino: ({ clientId, clientState, consensusState, proofUpgradeClient, proofUpgradeConsensusState, signer }: _123.MsgUpgradeClient) => {
|
1762
|
+
client_id: string;
|
1763
|
+
client_state: {
|
1764
|
+
type_url: string;
|
1765
|
+
value: Uint8Array;
|
1766
|
+
};
|
1767
|
+
consensus_state: {
|
1768
|
+
type_url: string;
|
1769
|
+
value: Uint8Array;
|
1770
|
+
};
|
1771
|
+
proof_upgrade_client: Uint8Array;
|
1772
|
+
proof_upgrade_consensus_state: Uint8Array;
|
1773
|
+
signer: string;
|
1774
|
+
};
|
1775
|
+
fromAmino: ({ client_id, client_state, consensus_state, proof_upgrade_client, proof_upgrade_consensus_state, signer }: {
|
1776
|
+
client_id: string;
|
1777
|
+
client_state: {
|
1778
|
+
type_url: string;
|
1779
|
+
value: Uint8Array;
|
1780
|
+
};
|
1781
|
+
consensus_state: {
|
1782
|
+
type_url: string;
|
1783
|
+
value: Uint8Array;
|
1784
|
+
};
|
1785
|
+
proof_upgrade_client: Uint8Array;
|
1786
|
+
proof_upgrade_consensus_state: Uint8Array;
|
1787
|
+
signer: string;
|
1788
|
+
}) => _123.MsgUpgradeClient;
|
1789
|
+
};
|
1790
|
+
"/ibc.core.client.v1.MsgSubmitMisbehaviour": {
|
1791
|
+
aminoType: string;
|
1792
|
+
toAmino: ({ clientId, misbehaviour, signer }: _123.MsgSubmitMisbehaviour) => {
|
1793
|
+
client_id: string;
|
1794
|
+
misbehaviour: {
|
1795
|
+
type_url: string;
|
1796
|
+
value: Uint8Array;
|
1797
|
+
};
|
1798
|
+
signer: string;
|
1799
|
+
};
|
1800
|
+
fromAmino: ({ client_id, misbehaviour, signer }: {
|
1801
|
+
client_id: string;
|
1802
|
+
misbehaviour: {
|
1803
|
+
type_url: string;
|
1804
|
+
value: Uint8Array;
|
1805
|
+
};
|
1806
|
+
signer: string;
|
1807
|
+
}) => _123.MsgSubmitMisbehaviour;
|
1808
|
+
};
|
1809
|
+
};
|
1810
|
+
MsgCreateClient: {
|
1811
|
+
encode(message: _123.MsgCreateClient, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1812
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _123.MsgCreateClient;
|
1813
|
+
fromJSON(object: any): _123.MsgCreateClient;
|
1814
|
+
toJSON(message: _123.MsgCreateClient): unknown;
|
1815
|
+
fromPartial(object: {
|
1816
|
+
clientState?: {
|
1817
|
+
typeUrl?: string;
|
1818
|
+
value?: Uint8Array;
|
1819
|
+
};
|
1820
|
+
consensusState?: {
|
1821
|
+
typeUrl?: string;
|
1822
|
+
value?: Uint8Array;
|
1823
|
+
};
|
1824
|
+
signer?: string;
|
1825
|
+
}): _123.MsgCreateClient;
|
1826
|
+
};
|
1827
|
+
MsgCreateClientResponse: {
|
1828
|
+
encode(_: _123.MsgCreateClientResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1829
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _123.MsgCreateClientResponse;
|
1830
|
+
fromJSON(_: any): _123.MsgCreateClientResponse;
|
1831
|
+
toJSON(_: _123.MsgCreateClientResponse): unknown;
|
1832
|
+
fromPartial(_: {}): _123.MsgCreateClientResponse;
|
1833
|
+
};
|
1834
|
+
MsgUpdateClient: {
|
1835
|
+
encode(message: _123.MsgUpdateClient, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1836
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _123.MsgUpdateClient;
|
1837
|
+
fromJSON(object: any): _123.MsgUpdateClient;
|
1838
|
+
toJSON(message: _123.MsgUpdateClient): unknown;
|
1839
|
+
fromPartial(object: {
|
1840
|
+
clientId?: string;
|
1841
|
+
header?: {
|
1842
|
+
typeUrl?: string;
|
1843
|
+
value?: Uint8Array;
|
1844
|
+
};
|
1845
|
+
signer?: string;
|
1846
|
+
}): _123.MsgUpdateClient;
|
1847
|
+
};
|
1848
|
+
MsgUpdateClientResponse: {
|
1849
|
+
encode(_: _123.MsgUpdateClientResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1850
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _123.MsgUpdateClientResponse;
|
1851
|
+
fromJSON(_: any): _123.MsgUpdateClientResponse;
|
1852
|
+
toJSON(_: _123.MsgUpdateClientResponse): unknown;
|
1853
|
+
fromPartial(_: {}): _123.MsgUpdateClientResponse;
|
1854
|
+
};
|
1855
|
+
MsgUpgradeClient: {
|
1856
|
+
encode(message: _123.MsgUpgradeClient, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1857
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _123.MsgUpgradeClient;
|
1858
|
+
fromJSON(object: any): _123.MsgUpgradeClient;
|
1859
|
+
toJSON(message: _123.MsgUpgradeClient): unknown;
|
1860
|
+
fromPartial(object: {
|
1861
|
+
clientId?: string;
|
1862
|
+
clientState?: {
|
1863
|
+
typeUrl?: string;
|
1864
|
+
value?: Uint8Array;
|
1865
|
+
};
|
1866
|
+
consensusState?: {
|
1867
|
+
typeUrl?: string;
|
1868
|
+
value?: Uint8Array;
|
1869
|
+
};
|
1870
|
+
proofUpgradeClient?: Uint8Array;
|
1871
|
+
proofUpgradeConsensusState?: Uint8Array;
|
1872
|
+
signer?: string;
|
1873
|
+
}): _123.MsgUpgradeClient;
|
1874
|
+
};
|
1875
|
+
MsgUpgradeClientResponse: {
|
1876
|
+
encode(_: _123.MsgUpgradeClientResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1877
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _123.MsgUpgradeClientResponse;
|
1878
|
+
fromJSON(_: any): _123.MsgUpgradeClientResponse;
|
1879
|
+
toJSON(_: _123.MsgUpgradeClientResponse): unknown;
|
1880
|
+
fromPartial(_: {}): _123.MsgUpgradeClientResponse;
|
1881
|
+
};
|
1882
|
+
MsgSubmitMisbehaviour: {
|
1883
|
+
encode(message: _123.MsgSubmitMisbehaviour, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1884
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _123.MsgSubmitMisbehaviour;
|
1885
|
+
fromJSON(object: any): _123.MsgSubmitMisbehaviour;
|
1886
|
+
toJSON(message: _123.MsgSubmitMisbehaviour): unknown;
|
1887
|
+
fromPartial(object: {
|
1888
|
+
clientId?: string;
|
1889
|
+
misbehaviour?: {
|
1890
|
+
typeUrl?: string;
|
1891
|
+
value?: Uint8Array;
|
1892
|
+
};
|
1893
|
+
signer?: string;
|
1894
|
+
}): _123.MsgSubmitMisbehaviour;
|
1895
|
+
};
|
1896
|
+
MsgSubmitMisbehaviourResponse: {
|
1897
|
+
encode(_: _123.MsgSubmitMisbehaviourResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1898
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _123.MsgSubmitMisbehaviourResponse;
|
1899
|
+
fromJSON(_: any): _123.MsgSubmitMisbehaviourResponse;
|
1900
|
+
toJSON(_: _123.MsgSubmitMisbehaviourResponse): unknown;
|
1901
|
+
fromPartial(_: {}): _123.MsgSubmitMisbehaviourResponse;
|
1902
|
+
};
|
1903
|
+
QueryClientStateRequest: {
|
1904
|
+
encode(message: _122.QueryClientStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1905
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryClientStateRequest;
|
1906
|
+
fromJSON(object: any): _122.QueryClientStateRequest;
|
1907
|
+
toJSON(message: _122.QueryClientStateRequest): unknown;
|
1908
|
+
fromPartial(object: {
|
1909
|
+
clientId?: string;
|
1910
|
+
}): _122.QueryClientStateRequest;
|
1911
|
+
};
|
1912
|
+
QueryClientStateResponse: {
|
1913
|
+
encode(message: _122.QueryClientStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1914
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryClientStateResponse;
|
1915
|
+
fromJSON(object: any): _122.QueryClientStateResponse;
|
1916
|
+
toJSON(message: _122.QueryClientStateResponse): unknown;
|
1917
|
+
fromPartial(object: {
|
1918
|
+
clientState?: {
|
1919
|
+
typeUrl?: string;
|
1920
|
+
value?: Uint8Array;
|
1921
|
+
};
|
1922
|
+
proof?: Uint8Array;
|
1923
|
+
proofHeight?: {
|
1924
|
+
revisionNumber?: any;
|
1925
|
+
revisionHeight?: any;
|
1926
|
+
};
|
1927
|
+
}): _122.QueryClientStateResponse;
|
1928
|
+
};
|
1929
|
+
QueryClientStatesRequest: {
|
1930
|
+
encode(message: _122.QueryClientStatesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1931
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryClientStatesRequest;
|
1932
|
+
fromJSON(object: any): _122.QueryClientStatesRequest;
|
1933
|
+
toJSON(message: _122.QueryClientStatesRequest): unknown;
|
1934
|
+
fromPartial(object: {
|
1935
|
+
pagination?: {
|
1936
|
+
key?: Uint8Array;
|
1937
|
+
offset?: any;
|
1938
|
+
limit?: any;
|
1939
|
+
countTotal?: boolean;
|
1940
|
+
reverse?: boolean;
|
1941
|
+
};
|
1942
|
+
}): _122.QueryClientStatesRequest;
|
1943
|
+
};
|
1944
|
+
QueryClientStatesResponse: {
|
1945
|
+
encode(message: _122.QueryClientStatesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1946
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryClientStatesResponse;
|
1947
|
+
fromJSON(object: any): _122.QueryClientStatesResponse;
|
1948
|
+
toJSON(message: _122.QueryClientStatesResponse): unknown;
|
1949
|
+
fromPartial(object: {
|
1950
|
+
clientStates?: {
|
1951
|
+
clientId?: string;
|
1952
|
+
clientState?: {
|
1953
|
+
typeUrl?: string;
|
1954
|
+
value?: Uint8Array;
|
1955
|
+
};
|
1956
|
+
}[];
|
1957
|
+
pagination?: {
|
1958
|
+
nextKey?: Uint8Array;
|
1959
|
+
total?: any;
|
1960
|
+
};
|
1961
|
+
}): _122.QueryClientStatesResponse;
|
1962
|
+
};
|
1963
|
+
QueryConsensusStateRequest: {
|
1964
|
+
encode(message: _122.QueryConsensusStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1965
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryConsensusStateRequest;
|
1966
|
+
fromJSON(object: any): _122.QueryConsensusStateRequest;
|
1967
|
+
toJSON(message: _122.QueryConsensusStateRequest): unknown;
|
1968
|
+
fromPartial(object: {
|
1969
|
+
clientId?: string;
|
1970
|
+
revisionNumber?: any;
|
1971
|
+
revisionHeight?: any;
|
1972
|
+
latestHeight?: boolean;
|
1973
|
+
}): _122.QueryConsensusStateRequest;
|
1974
|
+
};
|
1975
|
+
QueryConsensusStateResponse: {
|
1976
|
+
encode(message: _122.QueryConsensusStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1977
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryConsensusStateResponse;
|
1978
|
+
fromJSON(object: any): _122.QueryConsensusStateResponse;
|
1979
|
+
toJSON(message: _122.QueryConsensusStateResponse): unknown;
|
1980
|
+
fromPartial(object: {
|
1981
|
+
consensusState?: {
|
1982
|
+
typeUrl?: string;
|
1983
|
+
value?: Uint8Array;
|
1984
|
+
};
|
1985
|
+
proof?: Uint8Array;
|
1986
|
+
proofHeight?: {
|
1987
|
+
revisionNumber?: any;
|
1988
|
+
revisionHeight?: any;
|
1989
|
+
};
|
1990
|
+
}): _122.QueryConsensusStateResponse;
|
1991
|
+
};
|
1992
|
+
QueryConsensusStatesRequest: {
|
1993
|
+
encode(message: _122.QueryConsensusStatesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
1994
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryConsensusStatesRequest;
|
1995
|
+
fromJSON(object: any): _122.QueryConsensusStatesRequest;
|
1996
|
+
toJSON(message: _122.QueryConsensusStatesRequest): unknown;
|
1997
|
+
fromPartial(object: {
|
1998
|
+
clientId?: string;
|
1999
|
+
pagination?: {
|
2000
|
+
key?: Uint8Array;
|
2001
|
+
offset?: any;
|
2002
|
+
limit?: any;
|
2003
|
+
countTotal?: boolean;
|
2004
|
+
reverse?: boolean;
|
2005
|
+
};
|
2006
|
+
}): _122.QueryConsensusStatesRequest;
|
2007
|
+
};
|
2008
|
+
QueryConsensusStatesResponse: {
|
2009
|
+
encode(message: _122.QueryConsensusStatesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2010
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryConsensusStatesResponse;
|
2011
|
+
fromJSON(object: any): _122.QueryConsensusStatesResponse;
|
2012
|
+
toJSON(message: _122.QueryConsensusStatesResponse): unknown;
|
2013
|
+
fromPartial(object: {
|
2014
|
+
consensusStates?: {
|
2015
|
+
height?: {
|
2016
|
+
revisionNumber?: any;
|
2017
|
+
revisionHeight?: any;
|
2018
|
+
};
|
2019
|
+
consensusState?: {
|
2020
|
+
typeUrl?: string;
|
2021
|
+
value?: Uint8Array;
|
2022
|
+
};
|
2023
|
+
}[];
|
2024
|
+
pagination?: {
|
2025
|
+
nextKey?: Uint8Array;
|
2026
|
+
total?: any;
|
2027
|
+
};
|
2028
|
+
}): _122.QueryConsensusStatesResponse;
|
2029
|
+
};
|
2030
|
+
QueryClientStatusRequest: {
|
2031
|
+
encode(message: _122.QueryClientStatusRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2032
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryClientStatusRequest;
|
2033
|
+
fromJSON(object: any): _122.QueryClientStatusRequest;
|
2034
|
+
toJSON(message: _122.QueryClientStatusRequest): unknown;
|
2035
|
+
fromPartial(object: {
|
2036
|
+
clientId?: string;
|
2037
|
+
}): _122.QueryClientStatusRequest;
|
2038
|
+
};
|
2039
|
+
QueryClientStatusResponse: {
|
2040
|
+
encode(message: _122.QueryClientStatusResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2041
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryClientStatusResponse;
|
2042
|
+
fromJSON(object: any): _122.QueryClientStatusResponse;
|
2043
|
+
toJSON(message: _122.QueryClientStatusResponse): unknown;
|
2044
|
+
fromPartial(object: {
|
2045
|
+
status?: string;
|
2046
|
+
}): _122.QueryClientStatusResponse;
|
2047
|
+
};
|
2048
|
+
QueryClientParamsRequest: {
|
2049
|
+
encode(_: _122.QueryClientParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2050
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryClientParamsRequest;
|
2051
|
+
fromJSON(_: any): _122.QueryClientParamsRequest;
|
2052
|
+
toJSON(_: _122.QueryClientParamsRequest): unknown;
|
2053
|
+
fromPartial(_: {}): _122.QueryClientParamsRequest;
|
2054
|
+
};
|
2055
|
+
QueryClientParamsResponse: {
|
2056
|
+
encode(message: _122.QueryClientParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2057
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryClientParamsResponse;
|
2058
|
+
fromJSON(object: any): _122.QueryClientParamsResponse;
|
2059
|
+
toJSON(message: _122.QueryClientParamsResponse): unknown;
|
2060
|
+
fromPartial(object: {
|
2061
|
+
params?: {
|
2062
|
+
allowedClients?: string[];
|
2063
|
+
};
|
2064
|
+
}): _122.QueryClientParamsResponse;
|
2065
|
+
};
|
2066
|
+
QueryUpgradedClientStateRequest: {
|
2067
|
+
encode(_: _122.QueryUpgradedClientStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2068
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryUpgradedClientStateRequest;
|
2069
|
+
fromJSON(_: any): _122.QueryUpgradedClientStateRequest;
|
2070
|
+
toJSON(_: _122.QueryUpgradedClientStateRequest): unknown;
|
2071
|
+
fromPartial(_: {}): _122.QueryUpgradedClientStateRequest;
|
2072
|
+
};
|
2073
|
+
QueryUpgradedClientStateResponse: {
|
2074
|
+
encode(message: _122.QueryUpgradedClientStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2075
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryUpgradedClientStateResponse;
|
2076
|
+
fromJSON(object: any): _122.QueryUpgradedClientStateResponse;
|
2077
|
+
toJSON(message: _122.QueryUpgradedClientStateResponse): unknown;
|
2078
|
+
fromPartial(object: {
|
2079
|
+
upgradedClientState?: {
|
2080
|
+
typeUrl?: string;
|
2081
|
+
value?: Uint8Array;
|
2082
|
+
};
|
2083
|
+
}): _122.QueryUpgradedClientStateResponse;
|
2084
|
+
};
|
2085
|
+
QueryUpgradedConsensusStateRequest: {
|
2086
|
+
encode(_: _122.QueryUpgradedConsensusStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2087
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryUpgradedConsensusStateRequest;
|
2088
|
+
fromJSON(_: any): _122.QueryUpgradedConsensusStateRequest;
|
2089
|
+
toJSON(_: _122.QueryUpgradedConsensusStateRequest): unknown;
|
2090
|
+
fromPartial(_: {}): _122.QueryUpgradedConsensusStateRequest;
|
2091
|
+
};
|
2092
|
+
QueryUpgradedConsensusStateResponse: {
|
2093
|
+
encode(message: _122.QueryUpgradedConsensusStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2094
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _122.QueryUpgradedConsensusStateResponse;
|
2095
|
+
fromJSON(object: any): _122.QueryUpgradedConsensusStateResponse;
|
2096
|
+
toJSON(message: _122.QueryUpgradedConsensusStateResponse): unknown;
|
2097
|
+
fromPartial(object: {
|
2098
|
+
upgradedConsensusState?: {
|
2099
|
+
typeUrl?: string;
|
2100
|
+
value?: Uint8Array;
|
2101
|
+
};
|
2102
|
+
}): _122.QueryUpgradedConsensusStateResponse;
|
2103
|
+
};
|
2104
|
+
GenesisState: {
|
2105
|
+
encode(message: _121.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2106
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _121.GenesisState;
|
2107
|
+
fromJSON(object: any): _121.GenesisState;
|
2108
|
+
toJSON(message: _121.GenesisState): unknown;
|
2109
|
+
fromPartial(object: {
|
2110
|
+
clients?: {
|
2111
|
+
clientId?: string;
|
2112
|
+
clientState?: {
|
2113
|
+
typeUrl?: string;
|
2114
|
+
value?: Uint8Array;
|
2115
|
+
};
|
2116
|
+
}[];
|
2117
|
+
clientsConsensus?: {
|
2118
|
+
clientId?: string;
|
2119
|
+
consensusStates?: {
|
2120
|
+
height?: {
|
2121
|
+
revisionNumber?: any;
|
2122
|
+
revisionHeight?: any;
|
2123
|
+
};
|
2124
|
+
consensusState?: {
|
2125
|
+
typeUrl?: string;
|
2126
|
+
value?: Uint8Array;
|
2127
|
+
};
|
2128
|
+
}[];
|
2129
|
+
}[];
|
2130
|
+
clientsMetadata?: {
|
2131
|
+
clientId?: string;
|
2132
|
+
clientMetadata?: {
|
2133
|
+
key?: Uint8Array;
|
2134
|
+
value?: Uint8Array;
|
2135
|
+
}[];
|
2136
|
+
}[];
|
2137
|
+
params?: {
|
2138
|
+
allowedClients?: string[];
|
2139
|
+
};
|
2140
|
+
createLocalhost?: boolean;
|
2141
|
+
nextClientSequence?: any;
|
2142
|
+
}): _121.GenesisState;
|
2143
|
+
};
|
2144
|
+
GenesisMetadata: {
|
2145
|
+
encode(message: _121.GenesisMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2146
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _121.GenesisMetadata;
|
2147
|
+
fromJSON(object: any): _121.GenesisMetadata;
|
2148
|
+
toJSON(message: _121.GenesisMetadata): unknown;
|
2149
|
+
fromPartial(object: {
|
2150
|
+
key?: Uint8Array;
|
2151
|
+
value?: Uint8Array;
|
2152
|
+
}): _121.GenesisMetadata;
|
2153
|
+
};
|
2154
|
+
IdentifiedGenesisMetadata: {
|
2155
|
+
encode(message: _121.IdentifiedGenesisMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2156
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _121.IdentifiedGenesisMetadata;
|
2157
|
+
fromJSON(object: any): _121.IdentifiedGenesisMetadata;
|
2158
|
+
toJSON(message: _121.IdentifiedGenesisMetadata): unknown;
|
2159
|
+
fromPartial(object: {
|
2160
|
+
clientId?: string;
|
2161
|
+
clientMetadata?: {
|
2162
|
+
key?: Uint8Array;
|
2163
|
+
value?: Uint8Array;
|
2164
|
+
}[];
|
2165
|
+
}): _121.IdentifiedGenesisMetadata;
|
2166
|
+
};
|
2167
|
+
IdentifiedClientState: {
|
2168
|
+
encode(message: _120.IdentifiedClientState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2169
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _120.IdentifiedClientState;
|
2170
|
+
fromJSON(object: any): _120.IdentifiedClientState;
|
2171
|
+
toJSON(message: _120.IdentifiedClientState): unknown;
|
2172
|
+
fromPartial(object: {
|
2173
|
+
clientId?: string;
|
2174
|
+
clientState?: {
|
2175
|
+
typeUrl?: string;
|
2176
|
+
value?: Uint8Array;
|
2177
|
+
};
|
2178
|
+
}): _120.IdentifiedClientState;
|
2179
|
+
};
|
2180
|
+
ConsensusStateWithHeight: {
|
2181
|
+
encode(message: _120.ConsensusStateWithHeight, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2182
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _120.ConsensusStateWithHeight;
|
2183
|
+
fromJSON(object: any): _120.ConsensusStateWithHeight;
|
2184
|
+
toJSON(message: _120.ConsensusStateWithHeight): unknown;
|
2185
|
+
fromPartial(object: {
|
2186
|
+
height?: {
|
2187
|
+
revisionNumber?: any;
|
2188
|
+
revisionHeight?: any;
|
2189
|
+
};
|
2190
|
+
consensusState?: {
|
2191
|
+
typeUrl?: string;
|
2192
|
+
value?: Uint8Array;
|
2193
|
+
};
|
2194
|
+
}): _120.ConsensusStateWithHeight;
|
2195
|
+
};
|
2196
|
+
ClientConsensusStates: {
|
2197
|
+
encode(message: _120.ClientConsensusStates, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2198
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _120.ClientConsensusStates;
|
2199
|
+
fromJSON(object: any): _120.ClientConsensusStates;
|
2200
|
+
toJSON(message: _120.ClientConsensusStates): unknown;
|
2201
|
+
fromPartial(object: {
|
2202
|
+
clientId?: string;
|
2203
|
+
consensusStates?: {
|
2204
|
+
height?: {
|
2205
|
+
revisionNumber?: any;
|
2206
|
+
revisionHeight?: any;
|
2207
|
+
};
|
2208
|
+
consensusState?: {
|
2209
|
+
typeUrl?: string;
|
2210
|
+
value?: Uint8Array;
|
2211
|
+
};
|
2212
|
+
}[];
|
2213
|
+
}): _120.ClientConsensusStates;
|
2214
|
+
};
|
2215
|
+
ClientUpdateProposal: {
|
2216
|
+
encode(message: _120.ClientUpdateProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2217
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _120.ClientUpdateProposal;
|
2218
|
+
fromJSON(object: any): _120.ClientUpdateProposal;
|
2219
|
+
toJSON(message: _120.ClientUpdateProposal): unknown;
|
2220
|
+
fromPartial(object: {
|
2221
|
+
title?: string;
|
2222
|
+
description?: string;
|
2223
|
+
subjectClientId?: string;
|
2224
|
+
substituteClientId?: string;
|
2225
|
+
}): _120.ClientUpdateProposal;
|
2226
|
+
};
|
2227
|
+
UpgradeProposal: {
|
2228
|
+
encode(message: _120.UpgradeProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2229
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _120.UpgradeProposal;
|
2230
|
+
fromJSON(object: any): _120.UpgradeProposal;
|
2231
|
+
toJSON(message: _120.UpgradeProposal): unknown;
|
2232
|
+
fromPartial(object: {
|
2233
|
+
title?: string;
|
2234
|
+
description?: string;
|
2235
|
+
plan?: {
|
2236
|
+
name?: string;
|
2237
|
+
time?: Date;
|
2238
|
+
height?: any;
|
2239
|
+
info?: string;
|
2240
|
+
upgradedClientState?: {
|
2241
|
+
typeUrl?: string;
|
2242
|
+
value?: Uint8Array;
|
2243
|
+
};
|
2244
|
+
};
|
2245
|
+
upgradedClientState?: {
|
2246
|
+
typeUrl?: string;
|
2247
|
+
value?: Uint8Array;
|
2248
|
+
};
|
2249
|
+
}): _120.UpgradeProposal;
|
2250
|
+
};
|
2251
|
+
Height: {
|
2252
|
+
encode(message: _120.Height, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2253
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _120.Height;
|
2254
|
+
fromJSON(object: any): _120.Height;
|
2255
|
+
toJSON(message: _120.Height): unknown;
|
2256
|
+
fromPartial(object: {
|
2257
|
+
revisionNumber?: any;
|
2258
|
+
revisionHeight?: any;
|
2259
|
+
}): _120.Height;
|
2260
|
+
};
|
2261
|
+
Params: {
|
2262
|
+
encode(message: _120.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2263
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _120.Params;
|
2264
|
+
fromJSON(object: any): _120.Params;
|
2265
|
+
toJSON(message: _120.Params): unknown;
|
2266
|
+
fromPartial(object: {
|
2267
|
+
allowedClients?: string[];
|
2268
|
+
}): _120.Params;
|
2269
|
+
};
|
2270
|
+
};
|
2271
|
+
}
|
2272
|
+
namespace commitment {
|
2273
|
+
const v1: {
|
2274
|
+
MerkleRoot: {
|
2275
|
+
encode(message: _124.MerkleRoot, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2276
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _124.MerkleRoot;
|
2277
|
+
fromJSON(object: any): _124.MerkleRoot;
|
2278
|
+
toJSON(message: _124.MerkleRoot): unknown;
|
2279
|
+
fromPartial(object: {
|
2280
|
+
hash?: Uint8Array;
|
2281
|
+
}): _124.MerkleRoot;
|
2282
|
+
};
|
2283
|
+
MerklePrefix: {
|
2284
|
+
encode(message: _124.MerklePrefix, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2285
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _124.MerklePrefix;
|
2286
|
+
fromJSON(object: any): _124.MerklePrefix;
|
2287
|
+
toJSON(message: _124.MerklePrefix): unknown;
|
2288
|
+
fromPartial(object: {
|
2289
|
+
keyPrefix?: Uint8Array;
|
2290
|
+
}): _124.MerklePrefix;
|
2291
|
+
};
|
2292
|
+
MerklePath: {
|
2293
|
+
encode(message: _124.MerklePath, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2294
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _124.MerklePath;
|
2295
|
+
fromJSON(object: any): _124.MerklePath;
|
2296
|
+
toJSON(message: _124.MerklePath): unknown;
|
2297
|
+
fromPartial(object: {
|
2298
|
+
keyPath?: string[];
|
2299
|
+
}): _124.MerklePath;
|
2300
|
+
};
|
2301
|
+
MerkleProof: {
|
2302
|
+
encode(message: _124.MerkleProof, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2303
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _124.MerkleProof;
|
2304
|
+
fromJSON(object: any): _124.MerkleProof;
|
2305
|
+
toJSON(message: _124.MerkleProof): unknown;
|
2306
|
+
fromPartial(object: {
|
2307
|
+
proofs?: {
|
2308
|
+
exist?: {
|
2309
|
+
key?: Uint8Array;
|
2310
|
+
value?: Uint8Array;
|
2311
|
+
leaf?: {
|
2312
|
+
hash?: import("../confio/proofs").HashOp;
|
2313
|
+
prehashKey?: import("../confio/proofs").HashOp;
|
2314
|
+
prehashValue?: import("../confio/proofs").HashOp;
|
2315
|
+
length?: import("../confio/proofs").LengthOp;
|
2316
|
+
prefix?: Uint8Array;
|
2317
|
+
};
|
2318
|
+
path?: {
|
2319
|
+
hash?: import("../confio/proofs").HashOp;
|
2320
|
+
prefix?: Uint8Array;
|
2321
|
+
suffix?: Uint8Array;
|
2322
|
+
}[];
|
2323
|
+
};
|
2324
|
+
nonexist?: {
|
2325
|
+
key?: Uint8Array;
|
2326
|
+
left?: {
|
2327
|
+
key?: Uint8Array;
|
2328
|
+
value?: Uint8Array;
|
2329
|
+
leaf?: {
|
2330
|
+
hash?: import("../confio/proofs").HashOp;
|
2331
|
+
prehashKey?: import("../confio/proofs").HashOp;
|
2332
|
+
prehashValue?: import("../confio/proofs").HashOp;
|
2333
|
+
length?: import("../confio/proofs").LengthOp;
|
2334
|
+
prefix?: Uint8Array;
|
2335
|
+
};
|
2336
|
+
path?: {
|
2337
|
+
hash?: import("../confio/proofs").HashOp;
|
2338
|
+
prefix?: Uint8Array;
|
2339
|
+
suffix?: Uint8Array;
|
2340
|
+
}[];
|
2341
|
+
};
|
2342
|
+
right?: {
|
2343
|
+
key?: Uint8Array;
|
2344
|
+
value?: Uint8Array;
|
2345
|
+
leaf?: {
|
2346
|
+
hash?: import("../confio/proofs").HashOp;
|
2347
|
+
prehashKey?: import("../confio/proofs").HashOp;
|
2348
|
+
prehashValue?: import("../confio/proofs").HashOp;
|
2349
|
+
length?: import("../confio/proofs").LengthOp;
|
2350
|
+
prefix?: Uint8Array;
|
2351
|
+
};
|
2352
|
+
path?: {
|
2353
|
+
hash?: import("../confio/proofs").HashOp;
|
2354
|
+
prefix?: Uint8Array;
|
2355
|
+
suffix?: Uint8Array;
|
2356
|
+
}[];
|
2357
|
+
};
|
2358
|
+
};
|
2359
|
+
batch?: {
|
2360
|
+
entries?: {
|
2361
|
+
exist?: {
|
2362
|
+
key?: Uint8Array;
|
2363
|
+
value?: Uint8Array;
|
2364
|
+
leaf?: {
|
2365
|
+
hash?: import("../confio/proofs").HashOp;
|
2366
|
+
prehashKey?: import("../confio/proofs").HashOp;
|
2367
|
+
prehashValue?: import("../confio/proofs").HashOp;
|
2368
|
+
length?: import("../confio/proofs").LengthOp;
|
2369
|
+
prefix?: Uint8Array;
|
2370
|
+
};
|
2371
|
+
path?: {
|
2372
|
+
hash?: import("../confio/proofs").HashOp;
|
2373
|
+
prefix?: Uint8Array;
|
2374
|
+
suffix?: Uint8Array;
|
2375
|
+
}[];
|
2376
|
+
};
|
2377
|
+
nonexist?: {
|
2378
|
+
key?: Uint8Array;
|
2379
|
+
left?: {
|
2380
|
+
key?: Uint8Array;
|
2381
|
+
value?: Uint8Array;
|
2382
|
+
leaf?: {
|
2383
|
+
hash?: import("../confio/proofs").HashOp;
|
2384
|
+
prehashKey?: import("../confio/proofs").HashOp;
|
2385
|
+
prehashValue?: import("../confio/proofs").HashOp;
|
2386
|
+
length?: import("../confio/proofs").LengthOp;
|
2387
|
+
prefix?: Uint8Array;
|
2388
|
+
};
|
2389
|
+
path?: {
|
2390
|
+
hash?: import("../confio/proofs").HashOp;
|
2391
|
+
prefix?: Uint8Array;
|
2392
|
+
suffix?: Uint8Array;
|
2393
|
+
}[];
|
2394
|
+
};
|
2395
|
+
right?: {
|
2396
|
+
key?: Uint8Array;
|
2397
|
+
value?: Uint8Array;
|
2398
|
+
leaf?: {
|
2399
|
+
hash?: import("../confio/proofs").HashOp;
|
2400
|
+
prehashKey?: import("../confio/proofs").HashOp;
|
2401
|
+
prehashValue?: import("../confio/proofs").HashOp;
|
2402
|
+
length?: import("../confio/proofs").LengthOp;
|
2403
|
+
prefix?: Uint8Array;
|
2404
|
+
};
|
2405
|
+
path?: {
|
2406
|
+
hash?: import("../confio/proofs").HashOp;
|
2407
|
+
prefix?: Uint8Array;
|
2408
|
+
suffix?: Uint8Array;
|
2409
|
+
}[];
|
2410
|
+
};
|
2411
|
+
};
|
2412
|
+
}[];
|
2413
|
+
};
|
2414
|
+
compressed?: {
|
2415
|
+
entries?: {
|
2416
|
+
exist?: {
|
2417
|
+
key?: Uint8Array;
|
2418
|
+
value?: Uint8Array;
|
2419
|
+
leaf?: {
|
2420
|
+
hash?: import("../confio/proofs").HashOp;
|
2421
|
+
prehashKey?: import("../confio/proofs").HashOp;
|
2422
|
+
prehashValue?: import("../confio/proofs").HashOp;
|
2423
|
+
length?: import("../confio/proofs").LengthOp;
|
2424
|
+
prefix?: Uint8Array;
|
2425
|
+
};
|
2426
|
+
path?: number[];
|
2427
|
+
};
|
2428
|
+
nonexist?: {
|
2429
|
+
key?: Uint8Array;
|
2430
|
+
left?: {
|
2431
|
+
key?: Uint8Array;
|
2432
|
+
value?: Uint8Array;
|
2433
|
+
leaf?: {
|
2434
|
+
hash?: import("../confio/proofs").HashOp;
|
2435
|
+
prehashKey?: import("../confio/proofs").HashOp;
|
2436
|
+
prehashValue?: import("../confio/proofs").HashOp;
|
2437
|
+
length?: import("../confio/proofs").LengthOp;
|
2438
|
+
prefix?: Uint8Array;
|
2439
|
+
};
|
2440
|
+
path?: number[];
|
2441
|
+
};
|
2442
|
+
right?: {
|
2443
|
+
key?: Uint8Array;
|
2444
|
+
value?: Uint8Array;
|
2445
|
+
leaf?: {
|
2446
|
+
hash?: import("../confio/proofs").HashOp;
|
2447
|
+
prehashKey?: import("../confio/proofs").HashOp;
|
2448
|
+
prehashValue?: import("../confio/proofs").HashOp;
|
2449
|
+
length?: import("../confio/proofs").LengthOp;
|
2450
|
+
prefix?: Uint8Array;
|
2451
|
+
};
|
2452
|
+
path?: number[];
|
2453
|
+
};
|
2454
|
+
};
|
2455
|
+
}[];
|
2456
|
+
lookupInners?: {
|
2457
|
+
hash?: import("../confio/proofs").HashOp;
|
2458
|
+
prefix?: Uint8Array;
|
2459
|
+
suffix?: Uint8Array;
|
2460
|
+
}[];
|
2461
|
+
};
|
2462
|
+
}[];
|
2463
|
+
}): _124.MerkleProof;
|
2464
|
+
};
|
2465
|
+
};
|
2466
|
+
}
|
2467
|
+
namespace connection {
|
2468
|
+
const v1: {
|
2469
|
+
MsgClientImpl: typeof _249.MsgClientImpl;
|
2470
|
+
QueryClientImpl: typeof _244.QueryClientImpl;
|
2471
|
+
LCDQueryClient: typeof _240.LCDQueryClient;
|
2472
|
+
registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][];
|
2473
|
+
load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void;
|
2474
|
+
MessageComposer: {
|
2475
|
+
encoded: {
|
2476
|
+
connectionOpenInit(value: _128.MsgConnectionOpenInit): {
|
2477
|
+
typeUrl: string;
|
2478
|
+
value: Uint8Array;
|
2479
|
+
};
|
2480
|
+
connectionOpenTry(value: _128.MsgConnectionOpenTry): {
|
2481
|
+
typeUrl: string;
|
2482
|
+
value: Uint8Array;
|
2483
|
+
};
|
2484
|
+
connectionOpenAck(value: _128.MsgConnectionOpenAck): {
|
2485
|
+
typeUrl: string;
|
2486
|
+
value: Uint8Array;
|
2487
|
+
};
|
2488
|
+
connectionOpenConfirm(value: _128.MsgConnectionOpenConfirm): {
|
2489
|
+
typeUrl: string;
|
2490
|
+
value: Uint8Array;
|
2491
|
+
};
|
2492
|
+
};
|
2493
|
+
withTypeUrl: {
|
2494
|
+
connectionOpenInit(value: _128.MsgConnectionOpenInit): {
|
2495
|
+
typeUrl: string;
|
2496
|
+
value: _128.MsgConnectionOpenInit;
|
2497
|
+
};
|
2498
|
+
connectionOpenTry(value: _128.MsgConnectionOpenTry): {
|
2499
|
+
typeUrl: string;
|
2500
|
+
value: _128.MsgConnectionOpenTry;
|
2501
|
+
};
|
2502
|
+
connectionOpenAck(value: _128.MsgConnectionOpenAck): {
|
2503
|
+
typeUrl: string;
|
2504
|
+
value: _128.MsgConnectionOpenAck;
|
2505
|
+
};
|
2506
|
+
connectionOpenConfirm(value: _128.MsgConnectionOpenConfirm): {
|
2507
|
+
typeUrl: string;
|
2508
|
+
value: _128.MsgConnectionOpenConfirm;
|
2509
|
+
};
|
2510
|
+
};
|
2511
|
+
toJSON: {
|
2512
|
+
connectionOpenInit(value: _128.MsgConnectionOpenInit): {
|
2513
|
+
typeUrl: string;
|
2514
|
+
value: unknown;
|
2515
|
+
};
|
2516
|
+
connectionOpenTry(value: _128.MsgConnectionOpenTry): {
|
2517
|
+
typeUrl: string;
|
2518
|
+
value: unknown;
|
2519
|
+
};
|
2520
|
+
connectionOpenAck(value: _128.MsgConnectionOpenAck): {
|
2521
|
+
typeUrl: string;
|
2522
|
+
value: unknown;
|
2523
|
+
};
|
2524
|
+
connectionOpenConfirm(value: _128.MsgConnectionOpenConfirm): {
|
2525
|
+
typeUrl: string;
|
2526
|
+
value: unknown;
|
2527
|
+
};
|
2528
|
+
};
|
2529
|
+
fromJSON: {
|
2530
|
+
connectionOpenInit(value: any): {
|
2531
|
+
typeUrl: string;
|
2532
|
+
value: _128.MsgConnectionOpenInit;
|
2533
|
+
};
|
2534
|
+
connectionOpenTry(value: any): {
|
2535
|
+
typeUrl: string;
|
2536
|
+
value: _128.MsgConnectionOpenTry;
|
2537
|
+
};
|
2538
|
+
connectionOpenAck(value: any): {
|
2539
|
+
typeUrl: string;
|
2540
|
+
value: _128.MsgConnectionOpenAck;
|
2541
|
+
};
|
2542
|
+
connectionOpenConfirm(value: any): {
|
2543
|
+
typeUrl: string;
|
2544
|
+
value: _128.MsgConnectionOpenConfirm;
|
2545
|
+
};
|
2546
|
+
};
|
2547
|
+
fromPartial: {
|
2548
|
+
connectionOpenInit(value: _128.MsgConnectionOpenInit): {
|
2549
|
+
typeUrl: string;
|
2550
|
+
value: _128.MsgConnectionOpenInit;
|
2551
|
+
};
|
2552
|
+
connectionOpenTry(value: _128.MsgConnectionOpenTry): {
|
2553
|
+
typeUrl: string;
|
2554
|
+
value: _128.MsgConnectionOpenTry;
|
2555
|
+
};
|
2556
|
+
connectionOpenAck(value: _128.MsgConnectionOpenAck): {
|
2557
|
+
typeUrl: string;
|
2558
|
+
value: _128.MsgConnectionOpenAck;
|
2559
|
+
};
|
2560
|
+
connectionOpenConfirm(value: _128.MsgConnectionOpenConfirm): {
|
2561
|
+
typeUrl: string;
|
2562
|
+
value: _128.MsgConnectionOpenConfirm;
|
2563
|
+
};
|
2564
|
+
};
|
2565
|
+
};
|
2566
|
+
AminoConverter: {
|
2567
|
+
"/ibc.core.connection.v1.MsgConnectionOpenInit": {
|
2568
|
+
aminoType: string;
|
2569
|
+
toAmino: ({ clientId, counterparty, version, delayPeriod, signer }: _128.MsgConnectionOpenInit) => {
|
2570
|
+
client_id: string;
|
2571
|
+
counterparty: {
|
2572
|
+
client_id: string;
|
2573
|
+
connection_id: string;
|
2574
|
+
prefix: {
|
2575
|
+
key_prefix: Uint8Array;
|
2576
|
+
};
|
2577
|
+
};
|
2578
|
+
version: {
|
2579
|
+
identifier: string;
|
2580
|
+
features: string[];
|
2581
|
+
};
|
2582
|
+
delay_period: string;
|
2583
|
+
signer: string;
|
2584
|
+
};
|
2585
|
+
fromAmino: ({ client_id, counterparty, version, delay_period, signer }: {
|
2586
|
+
client_id: string;
|
2587
|
+
counterparty: {
|
2588
|
+
client_id: string;
|
2589
|
+
connection_id: string;
|
2590
|
+
prefix: {
|
2591
|
+
key_prefix: Uint8Array;
|
2592
|
+
};
|
2593
|
+
};
|
2594
|
+
version: {
|
2595
|
+
identifier: string;
|
2596
|
+
features: string[];
|
2597
|
+
};
|
2598
|
+
delay_period: string;
|
2599
|
+
signer: string;
|
2600
|
+
}) => _128.MsgConnectionOpenInit;
|
2601
|
+
};
|
2602
|
+
"/ibc.core.connection.v1.MsgConnectionOpenTry": {
|
2603
|
+
aminoType: string;
|
2604
|
+
toAmino: ({ clientId, previousConnectionId, clientState, counterparty, delayPeriod, counterpartyVersions, proofHeight, proofInit, proofClient, proofConsensus, consensusHeight, signer }: _128.MsgConnectionOpenTry) => {
|
2605
|
+
client_id: string;
|
2606
|
+
previous_connection_id: string;
|
2607
|
+
client_state: {
|
2608
|
+
type_url: string;
|
2609
|
+
value: Uint8Array;
|
2610
|
+
};
|
2611
|
+
counterparty: {
|
2612
|
+
client_id: string;
|
2613
|
+
connection_id: string;
|
2614
|
+
prefix: {
|
2615
|
+
key_prefix: Uint8Array;
|
2616
|
+
};
|
2617
|
+
};
|
2618
|
+
delay_period: string;
|
2619
|
+
counterparty_versions: {
|
2620
|
+
identifier: string;
|
2621
|
+
features: string[];
|
2622
|
+
}[];
|
2623
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
2624
|
+
proof_init: Uint8Array;
|
2625
|
+
proof_client: Uint8Array;
|
2626
|
+
proof_consensus: Uint8Array;
|
2627
|
+
consensus_height: import("@osmonauts/helpers").AminoHeight;
|
2628
|
+
signer: string;
|
2629
|
+
};
|
2630
|
+
fromAmino: ({ client_id, previous_connection_id, client_state, counterparty, delay_period, counterparty_versions, proof_height, proof_init, proof_client, proof_consensus, consensus_height, signer }: {
|
2631
|
+
client_id: string;
|
2632
|
+
previous_connection_id: string;
|
2633
|
+
client_state: {
|
2634
|
+
type_url: string;
|
2635
|
+
value: Uint8Array;
|
2636
|
+
};
|
2637
|
+
counterparty: {
|
2638
|
+
client_id: string;
|
2639
|
+
connection_id: string;
|
2640
|
+
prefix: {
|
2641
|
+
key_prefix: Uint8Array;
|
2642
|
+
};
|
2643
|
+
};
|
2644
|
+
delay_period: string;
|
2645
|
+
counterparty_versions: {
|
2646
|
+
identifier: string;
|
2647
|
+
features: string[];
|
2648
|
+
}[];
|
2649
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
2650
|
+
proof_init: Uint8Array;
|
2651
|
+
proof_client: Uint8Array;
|
2652
|
+
proof_consensus: Uint8Array;
|
2653
|
+
consensus_height: import("@osmonauts/helpers").AminoHeight;
|
2654
|
+
signer: string;
|
2655
|
+
}) => _128.MsgConnectionOpenTry;
|
2656
|
+
};
|
2657
|
+
"/ibc.core.connection.v1.MsgConnectionOpenAck": {
|
2658
|
+
aminoType: string;
|
2659
|
+
toAmino: ({ connectionId, counterpartyConnectionId, version, clientState, proofHeight, proofTry, proofClient, proofConsensus, consensusHeight, signer }: _128.MsgConnectionOpenAck) => {
|
2660
|
+
connection_id: string;
|
2661
|
+
counterparty_connection_id: string;
|
2662
|
+
version: {
|
2663
|
+
identifier: string;
|
2664
|
+
features: string[];
|
2665
|
+
};
|
2666
|
+
client_state: {
|
2667
|
+
type_url: string;
|
2668
|
+
value: Uint8Array;
|
2669
|
+
};
|
2670
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
2671
|
+
proof_try: Uint8Array;
|
2672
|
+
proof_client: Uint8Array;
|
2673
|
+
proof_consensus: Uint8Array;
|
2674
|
+
consensus_height: import("@osmonauts/helpers").AminoHeight;
|
2675
|
+
signer: string;
|
2676
|
+
};
|
2677
|
+
fromAmino: ({ connection_id, counterparty_connection_id, version, client_state, proof_height, proof_try, proof_client, proof_consensus, consensus_height, signer }: {
|
2678
|
+
connection_id: string;
|
2679
|
+
counterparty_connection_id: string;
|
2680
|
+
version: {
|
2681
|
+
identifier: string;
|
2682
|
+
features: string[];
|
2683
|
+
};
|
2684
|
+
client_state: {
|
2685
|
+
type_url: string;
|
2686
|
+
value: Uint8Array;
|
2687
|
+
};
|
2688
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
2689
|
+
proof_try: Uint8Array;
|
2690
|
+
proof_client: Uint8Array;
|
2691
|
+
proof_consensus: Uint8Array;
|
2692
|
+
consensus_height: import("@osmonauts/helpers").AminoHeight;
|
2693
|
+
signer: string;
|
2694
|
+
}) => _128.MsgConnectionOpenAck;
|
2695
|
+
};
|
2696
|
+
"/ibc.core.connection.v1.MsgConnectionOpenConfirm": {
|
2697
|
+
aminoType: string;
|
2698
|
+
toAmino: ({ connectionId, proofAck, proofHeight, signer }: _128.MsgConnectionOpenConfirm) => {
|
2699
|
+
connection_id: string;
|
2700
|
+
proof_ack: Uint8Array;
|
2701
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
2702
|
+
signer: string;
|
2703
|
+
};
|
2704
|
+
fromAmino: ({ connection_id, proof_ack, proof_height, signer }: {
|
2705
|
+
connection_id: string;
|
2706
|
+
proof_ack: Uint8Array;
|
2707
|
+
proof_height: import("@osmonauts/helpers").AminoHeight;
|
2708
|
+
signer: string;
|
2709
|
+
}) => _128.MsgConnectionOpenConfirm;
|
2710
|
+
};
|
2711
|
+
};
|
2712
|
+
MsgConnectionOpenInit: {
|
2713
|
+
encode(message: _128.MsgConnectionOpenInit, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2714
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _128.MsgConnectionOpenInit;
|
2715
|
+
fromJSON(object: any): _128.MsgConnectionOpenInit;
|
2716
|
+
toJSON(message: _128.MsgConnectionOpenInit): unknown;
|
2717
|
+
fromPartial(object: {
|
2718
|
+
clientId?: string;
|
2719
|
+
counterparty?: {
|
2720
|
+
clientId?: string;
|
2721
|
+
connectionId?: string;
|
2722
|
+
prefix?: {
|
2723
|
+
keyPrefix?: Uint8Array;
|
2724
|
+
};
|
2725
|
+
};
|
2726
|
+
version?: {
|
2727
|
+
identifier?: string;
|
2728
|
+
features?: string[];
|
2729
|
+
};
|
2730
|
+
delayPeriod?: any;
|
2731
|
+
signer?: string;
|
2732
|
+
}): _128.MsgConnectionOpenInit;
|
2733
|
+
};
|
2734
|
+
MsgConnectionOpenInitResponse: {
|
2735
|
+
encode(_: _128.MsgConnectionOpenInitResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2736
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _128.MsgConnectionOpenInitResponse;
|
2737
|
+
fromJSON(_: any): _128.MsgConnectionOpenInitResponse;
|
2738
|
+
toJSON(_: _128.MsgConnectionOpenInitResponse): unknown;
|
2739
|
+
fromPartial(_: {}): _128.MsgConnectionOpenInitResponse;
|
2740
|
+
};
|
2741
|
+
MsgConnectionOpenTry: {
|
2742
|
+
encode(message: _128.MsgConnectionOpenTry, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2743
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _128.MsgConnectionOpenTry;
|
2744
|
+
fromJSON(object: any): _128.MsgConnectionOpenTry;
|
2745
|
+
toJSON(message: _128.MsgConnectionOpenTry): unknown;
|
2746
|
+
fromPartial(object: {
|
2747
|
+
clientId?: string;
|
2748
|
+
previousConnectionId?: string;
|
2749
|
+
clientState?: {
|
2750
|
+
typeUrl?: string;
|
2751
|
+
value?: Uint8Array;
|
2752
|
+
};
|
2753
|
+
counterparty?: {
|
2754
|
+
clientId?: string;
|
2755
|
+
connectionId?: string;
|
2756
|
+
prefix?: {
|
2757
|
+
keyPrefix?: Uint8Array;
|
2758
|
+
};
|
2759
|
+
};
|
2760
|
+
delayPeriod?: any;
|
2761
|
+
counterpartyVersions?: {
|
2762
|
+
identifier?: string;
|
2763
|
+
features?: string[];
|
2764
|
+
}[];
|
2765
|
+
proofHeight?: {
|
2766
|
+
revisionNumber?: any;
|
2767
|
+
revisionHeight?: any;
|
2768
|
+
};
|
2769
|
+
proofInit?: Uint8Array;
|
2770
|
+
proofClient?: Uint8Array;
|
2771
|
+
proofConsensus?: Uint8Array;
|
2772
|
+
consensusHeight?: {
|
2773
|
+
revisionNumber?: any;
|
2774
|
+
revisionHeight?: any;
|
2775
|
+
};
|
2776
|
+
signer?: string;
|
2777
|
+
}): _128.MsgConnectionOpenTry;
|
2778
|
+
};
|
2779
|
+
MsgConnectionOpenTryResponse: {
|
2780
|
+
encode(_: _128.MsgConnectionOpenTryResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2781
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _128.MsgConnectionOpenTryResponse;
|
2782
|
+
fromJSON(_: any): _128.MsgConnectionOpenTryResponse;
|
2783
|
+
toJSON(_: _128.MsgConnectionOpenTryResponse): unknown;
|
2784
|
+
fromPartial(_: {}): _128.MsgConnectionOpenTryResponse;
|
2785
|
+
};
|
2786
|
+
MsgConnectionOpenAck: {
|
2787
|
+
encode(message: _128.MsgConnectionOpenAck, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2788
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _128.MsgConnectionOpenAck;
|
2789
|
+
fromJSON(object: any): _128.MsgConnectionOpenAck;
|
2790
|
+
toJSON(message: _128.MsgConnectionOpenAck): unknown;
|
2791
|
+
fromPartial(object: {
|
2792
|
+
connectionId?: string;
|
2793
|
+
counterpartyConnectionId?: string;
|
2794
|
+
version?: {
|
2795
|
+
identifier?: string;
|
2796
|
+
features?: string[];
|
2797
|
+
};
|
2798
|
+
clientState?: {
|
2799
|
+
typeUrl?: string;
|
2800
|
+
value?: Uint8Array;
|
2801
|
+
};
|
2802
|
+
proofHeight?: {
|
2803
|
+
revisionNumber?: any;
|
2804
|
+
revisionHeight?: any;
|
2805
|
+
};
|
2806
|
+
proofTry?: Uint8Array;
|
2807
|
+
proofClient?: Uint8Array;
|
2808
|
+
proofConsensus?: Uint8Array;
|
2809
|
+
consensusHeight?: {
|
2810
|
+
revisionNumber?: any;
|
2811
|
+
revisionHeight?: any;
|
2812
|
+
};
|
2813
|
+
signer?: string;
|
2814
|
+
}): _128.MsgConnectionOpenAck;
|
2815
|
+
};
|
2816
|
+
MsgConnectionOpenAckResponse: {
|
2817
|
+
encode(_: _128.MsgConnectionOpenAckResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2818
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _128.MsgConnectionOpenAckResponse;
|
2819
|
+
fromJSON(_: any): _128.MsgConnectionOpenAckResponse;
|
2820
|
+
toJSON(_: _128.MsgConnectionOpenAckResponse): unknown;
|
2821
|
+
fromPartial(_: {}): _128.MsgConnectionOpenAckResponse;
|
2822
|
+
};
|
2823
|
+
MsgConnectionOpenConfirm: {
|
2824
|
+
encode(message: _128.MsgConnectionOpenConfirm, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2825
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _128.MsgConnectionOpenConfirm;
|
2826
|
+
fromJSON(object: any): _128.MsgConnectionOpenConfirm;
|
2827
|
+
toJSON(message: _128.MsgConnectionOpenConfirm): unknown;
|
2828
|
+
fromPartial(object: {
|
2829
|
+
connectionId?: string;
|
2830
|
+
proofAck?: Uint8Array;
|
2831
|
+
proofHeight?: {
|
2832
|
+
revisionNumber?: any;
|
2833
|
+
revisionHeight?: any;
|
2834
|
+
};
|
2835
|
+
signer?: string;
|
2836
|
+
}): _128.MsgConnectionOpenConfirm;
|
2837
|
+
};
|
2838
|
+
MsgConnectionOpenConfirmResponse: {
|
2839
|
+
encode(_: _128.MsgConnectionOpenConfirmResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2840
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _128.MsgConnectionOpenConfirmResponse;
|
2841
|
+
fromJSON(_: any): _128.MsgConnectionOpenConfirmResponse;
|
2842
|
+
toJSON(_: _128.MsgConnectionOpenConfirmResponse): unknown;
|
2843
|
+
fromPartial(_: {}): _128.MsgConnectionOpenConfirmResponse;
|
2844
|
+
};
|
2845
|
+
QueryConnectionRequest: {
|
2846
|
+
encode(message: _127.QueryConnectionRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2847
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _127.QueryConnectionRequest;
|
2848
|
+
fromJSON(object: any): _127.QueryConnectionRequest;
|
2849
|
+
toJSON(message: _127.QueryConnectionRequest): unknown;
|
2850
|
+
fromPartial(object: {
|
2851
|
+
connectionId?: string;
|
2852
|
+
}): _127.QueryConnectionRequest;
|
2853
|
+
};
|
2854
|
+
QueryConnectionResponse: {
|
2855
|
+
encode(message: _127.QueryConnectionResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2856
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _127.QueryConnectionResponse;
|
2857
|
+
fromJSON(object: any): _127.QueryConnectionResponse;
|
2858
|
+
toJSON(message: _127.QueryConnectionResponse): unknown;
|
2859
|
+
fromPartial(object: {
|
2860
|
+
connection?: {
|
2861
|
+
clientId?: string;
|
2862
|
+
versions?: {
|
2863
|
+
identifier?: string;
|
2864
|
+
features?: string[];
|
2865
|
+
}[];
|
2866
|
+
state?: _125.State;
|
2867
|
+
counterparty?: {
|
2868
|
+
clientId?: string;
|
2869
|
+
connectionId?: string;
|
2870
|
+
prefix?: {
|
2871
|
+
keyPrefix?: Uint8Array;
|
2872
|
+
};
|
2873
|
+
};
|
2874
|
+
delayPeriod?: any;
|
2875
|
+
};
|
2876
|
+
proof?: Uint8Array;
|
2877
|
+
proofHeight?: {
|
2878
|
+
revisionNumber?: any;
|
2879
|
+
revisionHeight?: any;
|
2880
|
+
};
|
2881
|
+
}): _127.QueryConnectionResponse;
|
2882
|
+
};
|
2883
|
+
QueryConnectionsRequest: {
|
2884
|
+
encode(message: _127.QueryConnectionsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2885
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _127.QueryConnectionsRequest;
|
2886
|
+
fromJSON(object: any): _127.QueryConnectionsRequest;
|
2887
|
+
toJSON(message: _127.QueryConnectionsRequest): unknown;
|
2888
|
+
fromPartial(object: {
|
2889
|
+
pagination?: {
|
2890
|
+
key?: Uint8Array;
|
2891
|
+
offset?: any;
|
2892
|
+
limit?: any;
|
2893
|
+
countTotal?: boolean;
|
2894
|
+
reverse?: boolean;
|
2895
|
+
};
|
2896
|
+
}): _127.QueryConnectionsRequest;
|
2897
|
+
};
|
2898
|
+
QueryConnectionsResponse: {
|
2899
|
+
encode(message: _127.QueryConnectionsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2900
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _127.QueryConnectionsResponse;
|
2901
|
+
fromJSON(object: any): _127.QueryConnectionsResponse;
|
2902
|
+
toJSON(message: _127.QueryConnectionsResponse): unknown;
|
2903
|
+
fromPartial(object: {
|
2904
|
+
connections?: {
|
2905
|
+
id?: string;
|
2906
|
+
clientId?: string;
|
2907
|
+
versions?: {
|
2908
|
+
identifier?: string;
|
2909
|
+
features?: string[];
|
2910
|
+
}[];
|
2911
|
+
state?: _125.State;
|
2912
|
+
counterparty?: {
|
2913
|
+
clientId?: string;
|
2914
|
+
connectionId?: string;
|
2915
|
+
prefix?: {
|
2916
|
+
keyPrefix?: Uint8Array;
|
2917
|
+
};
|
2918
|
+
};
|
2919
|
+
delayPeriod?: any;
|
2920
|
+
}[];
|
2921
|
+
pagination?: {
|
2922
|
+
nextKey?: Uint8Array;
|
2923
|
+
total?: any;
|
2924
|
+
};
|
2925
|
+
height?: {
|
2926
|
+
revisionNumber?: any;
|
2927
|
+
revisionHeight?: any;
|
2928
|
+
};
|
2929
|
+
}): _127.QueryConnectionsResponse;
|
2930
|
+
};
|
2931
|
+
QueryClientConnectionsRequest: {
|
2932
|
+
encode(message: _127.QueryClientConnectionsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2933
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _127.QueryClientConnectionsRequest;
|
2934
|
+
fromJSON(object: any): _127.QueryClientConnectionsRequest;
|
2935
|
+
toJSON(message: _127.QueryClientConnectionsRequest): unknown;
|
2936
|
+
fromPartial(object: {
|
2937
|
+
clientId?: string;
|
2938
|
+
}): _127.QueryClientConnectionsRequest;
|
2939
|
+
};
|
2940
|
+
QueryClientConnectionsResponse: {
|
2941
|
+
encode(message: _127.QueryClientConnectionsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2942
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _127.QueryClientConnectionsResponse;
|
2943
|
+
fromJSON(object: any): _127.QueryClientConnectionsResponse;
|
2944
|
+
toJSON(message: _127.QueryClientConnectionsResponse): unknown;
|
2945
|
+
fromPartial(object: {
|
2946
|
+
connectionPaths?: string[];
|
2947
|
+
proof?: Uint8Array;
|
2948
|
+
proofHeight?: {
|
2949
|
+
revisionNumber?: any;
|
2950
|
+
revisionHeight?: any;
|
2951
|
+
};
|
2952
|
+
}): _127.QueryClientConnectionsResponse;
|
2953
|
+
};
|
2954
|
+
QueryConnectionClientStateRequest: {
|
2955
|
+
encode(message: _127.QueryConnectionClientStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2956
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _127.QueryConnectionClientStateRequest;
|
2957
|
+
fromJSON(object: any): _127.QueryConnectionClientStateRequest;
|
2958
|
+
toJSON(message: _127.QueryConnectionClientStateRequest): unknown;
|
2959
|
+
fromPartial(object: {
|
2960
|
+
connectionId?: string;
|
2961
|
+
}): _127.QueryConnectionClientStateRequest;
|
2962
|
+
};
|
2963
|
+
QueryConnectionClientStateResponse: {
|
2964
|
+
encode(message: _127.QueryConnectionClientStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2965
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _127.QueryConnectionClientStateResponse;
|
2966
|
+
fromJSON(object: any): _127.QueryConnectionClientStateResponse;
|
2967
|
+
toJSON(message: _127.QueryConnectionClientStateResponse): unknown;
|
2968
|
+
fromPartial(object: {
|
2969
|
+
identifiedClientState?: {
|
2970
|
+
clientId?: string;
|
2971
|
+
clientState?: {
|
2972
|
+
typeUrl?: string;
|
2973
|
+
value?: Uint8Array;
|
2974
|
+
};
|
2975
|
+
};
|
2976
|
+
proof?: Uint8Array;
|
2977
|
+
proofHeight?: {
|
2978
|
+
revisionNumber?: any;
|
2979
|
+
revisionHeight?: any;
|
2980
|
+
};
|
2981
|
+
}): _127.QueryConnectionClientStateResponse;
|
2982
|
+
};
|
2983
|
+
QueryConnectionConsensusStateRequest: {
|
2984
|
+
encode(message: _127.QueryConnectionConsensusStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2985
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _127.QueryConnectionConsensusStateRequest;
|
2986
|
+
fromJSON(object: any): _127.QueryConnectionConsensusStateRequest;
|
2987
|
+
toJSON(message: _127.QueryConnectionConsensusStateRequest): unknown;
|
2988
|
+
fromPartial(object: {
|
2989
|
+
connectionId?: string;
|
2990
|
+
revisionNumber?: any;
|
2991
|
+
revisionHeight?: any;
|
2992
|
+
}): _127.QueryConnectionConsensusStateRequest;
|
2993
|
+
};
|
2994
|
+
QueryConnectionConsensusStateResponse: {
|
2995
|
+
encode(message: _127.QueryConnectionConsensusStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
2996
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _127.QueryConnectionConsensusStateResponse;
|
2997
|
+
fromJSON(object: any): _127.QueryConnectionConsensusStateResponse;
|
2998
|
+
toJSON(message: _127.QueryConnectionConsensusStateResponse): unknown;
|
2999
|
+
fromPartial(object: {
|
3000
|
+
consensusState?: {
|
3001
|
+
typeUrl?: string;
|
3002
|
+
value?: Uint8Array;
|
3003
|
+
};
|
3004
|
+
clientId?: string;
|
3005
|
+
proof?: Uint8Array;
|
3006
|
+
proofHeight?: {
|
3007
|
+
revisionNumber?: any;
|
3008
|
+
revisionHeight?: any;
|
3009
|
+
};
|
3010
|
+
}): _127.QueryConnectionConsensusStateResponse;
|
3011
|
+
};
|
3012
|
+
GenesisState: {
|
3013
|
+
encode(message: _126.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3014
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _126.GenesisState;
|
3015
|
+
fromJSON(object: any): _126.GenesisState;
|
3016
|
+
toJSON(message: _126.GenesisState): unknown;
|
3017
|
+
fromPartial(object: {
|
3018
|
+
connections?: {
|
3019
|
+
id?: string;
|
3020
|
+
clientId?: string;
|
3021
|
+
versions?: {
|
3022
|
+
identifier?: string;
|
3023
|
+
features?: string[];
|
3024
|
+
}[];
|
3025
|
+
state?: _125.State;
|
3026
|
+
counterparty?: {
|
3027
|
+
clientId?: string;
|
3028
|
+
connectionId?: string;
|
3029
|
+
prefix?: {
|
3030
|
+
keyPrefix?: Uint8Array;
|
3031
|
+
};
|
3032
|
+
};
|
3033
|
+
delayPeriod?: any;
|
3034
|
+
}[];
|
3035
|
+
clientConnectionPaths?: {
|
3036
|
+
clientId?: string;
|
3037
|
+
paths?: string[];
|
3038
|
+
}[];
|
3039
|
+
nextConnectionSequence?: any;
|
3040
|
+
params?: {
|
3041
|
+
maxExpectedTimePerBlock?: any;
|
3042
|
+
};
|
3043
|
+
}): _126.GenesisState;
|
3044
|
+
};
|
3045
|
+
stateFromJSON(object: any): _125.State;
|
3046
|
+
stateToJSON(object: _125.State): string;
|
3047
|
+
State: typeof _125.State;
|
3048
|
+
ConnectionEnd: {
|
3049
|
+
encode(message: _125.ConnectionEnd, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3050
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _125.ConnectionEnd;
|
3051
|
+
fromJSON(object: any): _125.ConnectionEnd;
|
3052
|
+
toJSON(message: _125.ConnectionEnd): unknown;
|
3053
|
+
fromPartial(object: {
|
3054
|
+
clientId?: string;
|
3055
|
+
versions?: {
|
3056
|
+
identifier?: string;
|
3057
|
+
features?: string[];
|
3058
|
+
}[];
|
3059
|
+
state?: _125.State;
|
3060
|
+
counterparty?: {
|
3061
|
+
clientId?: string;
|
3062
|
+
connectionId?: string;
|
3063
|
+
prefix?: {
|
3064
|
+
keyPrefix?: Uint8Array;
|
3065
|
+
};
|
3066
|
+
};
|
3067
|
+
delayPeriod?: any;
|
3068
|
+
}): _125.ConnectionEnd;
|
3069
|
+
};
|
3070
|
+
IdentifiedConnection: {
|
3071
|
+
encode(message: _125.IdentifiedConnection, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3072
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _125.IdentifiedConnection;
|
3073
|
+
fromJSON(object: any): _125.IdentifiedConnection;
|
3074
|
+
toJSON(message: _125.IdentifiedConnection): unknown;
|
3075
|
+
fromPartial(object: {
|
3076
|
+
id?: string;
|
3077
|
+
clientId?: string;
|
3078
|
+
versions?: {
|
3079
|
+
identifier?: string;
|
3080
|
+
features?: string[];
|
3081
|
+
}[];
|
3082
|
+
state?: _125.State;
|
3083
|
+
counterparty?: {
|
3084
|
+
clientId?: string;
|
3085
|
+
connectionId?: string;
|
3086
|
+
prefix?: {
|
3087
|
+
keyPrefix?: Uint8Array;
|
3088
|
+
};
|
3089
|
+
};
|
3090
|
+
delayPeriod?: any;
|
3091
|
+
}): _125.IdentifiedConnection;
|
3092
|
+
};
|
3093
|
+
Counterparty: {
|
3094
|
+
encode(message: _125.Counterparty, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3095
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _125.Counterparty;
|
3096
|
+
fromJSON(object: any): _125.Counterparty;
|
3097
|
+
toJSON(message: _125.Counterparty): unknown;
|
3098
|
+
fromPartial(object: {
|
3099
|
+
clientId?: string;
|
3100
|
+
connectionId?: string;
|
3101
|
+
prefix?: {
|
3102
|
+
keyPrefix?: Uint8Array;
|
3103
|
+
};
|
3104
|
+
}): _125.Counterparty;
|
3105
|
+
};
|
3106
|
+
ClientPaths: {
|
3107
|
+
encode(message: _125.ClientPaths, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3108
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _125.ClientPaths;
|
3109
|
+
fromJSON(object: any): _125.ClientPaths;
|
3110
|
+
toJSON(message: _125.ClientPaths): unknown;
|
3111
|
+
fromPartial(object: {
|
3112
|
+
paths?: string[];
|
3113
|
+
}): _125.ClientPaths;
|
3114
|
+
};
|
3115
|
+
ConnectionPaths: {
|
3116
|
+
encode(message: _125.ConnectionPaths, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3117
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _125.ConnectionPaths;
|
3118
|
+
fromJSON(object: any): _125.ConnectionPaths;
|
3119
|
+
toJSON(message: _125.ConnectionPaths): unknown;
|
3120
|
+
fromPartial(object: {
|
3121
|
+
clientId?: string;
|
3122
|
+
paths?: string[];
|
3123
|
+
}): _125.ConnectionPaths;
|
3124
|
+
};
|
3125
|
+
Version: {
|
3126
|
+
encode(message: _125.Version, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3127
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _125.Version;
|
3128
|
+
fromJSON(object: any): _125.Version;
|
3129
|
+
toJSON(message: _125.Version): unknown;
|
3130
|
+
fromPartial(object: {
|
3131
|
+
identifier?: string;
|
3132
|
+
features?: string[];
|
3133
|
+
}): _125.Version;
|
3134
|
+
};
|
3135
|
+
Params: {
|
3136
|
+
encode(message: _125.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3137
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _125.Params;
|
3138
|
+
fromJSON(object: any): _125.Params;
|
3139
|
+
toJSON(message: _125.Params): unknown;
|
3140
|
+
fromPartial(object: {
|
3141
|
+
maxExpectedTimePerBlock?: any;
|
3142
|
+
}): _125.Params;
|
3143
|
+
};
|
3144
|
+
};
|
3145
|
+
}
|
3146
|
+
namespace port {
|
3147
|
+
const v1: {
|
3148
|
+
QueryClientImpl: typeof _245.QueryClientImpl;
|
3149
|
+
QueryAppVersionRequest: {
|
3150
|
+
encode(message: _129.QueryAppVersionRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3151
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _129.QueryAppVersionRequest;
|
3152
|
+
fromJSON(object: any): _129.QueryAppVersionRequest;
|
3153
|
+
toJSON(message: _129.QueryAppVersionRequest): unknown;
|
3154
|
+
fromPartial(object: {
|
3155
|
+
portId?: string;
|
3156
|
+
connectionId?: string;
|
3157
|
+
ordering?: _116.Order;
|
3158
|
+
counterparty?: {
|
3159
|
+
portId?: string;
|
3160
|
+
channelId?: string;
|
3161
|
+
};
|
3162
|
+
proposedVersion?: string;
|
3163
|
+
}): _129.QueryAppVersionRequest;
|
3164
|
+
};
|
3165
|
+
QueryAppVersionResponse: {
|
3166
|
+
encode(message: _129.QueryAppVersionResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3167
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _129.QueryAppVersionResponse;
|
3168
|
+
fromJSON(object: any): _129.QueryAppVersionResponse;
|
3169
|
+
toJSON(message: _129.QueryAppVersionResponse): unknown;
|
3170
|
+
fromPartial(object: {
|
3171
|
+
portId?: string;
|
3172
|
+
version?: string;
|
3173
|
+
}): _129.QueryAppVersionResponse;
|
3174
|
+
};
|
3175
|
+
};
|
3176
|
+
}
|
3177
|
+
namespace types {
|
3178
|
+
const v1: {
|
3179
|
+
GenesisState: {
|
3180
|
+
encode(message: _130.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3181
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _130.GenesisState;
|
3182
|
+
fromJSON(object: any): _130.GenesisState;
|
3183
|
+
toJSON(message: _130.GenesisState): unknown;
|
3184
|
+
fromPartial(object: {
|
3185
|
+
clientGenesis?: {
|
3186
|
+
clients?: {
|
3187
|
+
clientId?: string;
|
3188
|
+
clientState?: {
|
3189
|
+
typeUrl?: string;
|
3190
|
+
value?: Uint8Array;
|
3191
|
+
};
|
3192
|
+
}[];
|
3193
|
+
clientsConsensus?: {
|
3194
|
+
clientId?: string;
|
3195
|
+
consensusStates?: {
|
3196
|
+
height?: {
|
3197
|
+
revisionNumber?: any;
|
3198
|
+
revisionHeight?: any;
|
3199
|
+
};
|
3200
|
+
consensusState?: {
|
3201
|
+
typeUrl?: string;
|
3202
|
+
value?: Uint8Array;
|
3203
|
+
};
|
3204
|
+
}[];
|
3205
|
+
}[];
|
3206
|
+
clientsMetadata?: {
|
3207
|
+
clientId?: string;
|
3208
|
+
clientMetadata?: {
|
3209
|
+
key?: Uint8Array;
|
3210
|
+
value?: Uint8Array;
|
3211
|
+
}[];
|
3212
|
+
}[];
|
3213
|
+
params?: {
|
3214
|
+
allowedClients?: string[];
|
3215
|
+
};
|
3216
|
+
createLocalhost?: boolean;
|
3217
|
+
nextClientSequence?: any;
|
3218
|
+
};
|
3219
|
+
connectionGenesis?: {
|
3220
|
+
connections?: {
|
3221
|
+
id?: string;
|
3222
|
+
clientId?: string;
|
3223
|
+
versions?: {
|
3224
|
+
identifier?: string;
|
3225
|
+
features?: string[];
|
3226
|
+
}[];
|
3227
|
+
state?: _125.State;
|
3228
|
+
counterparty?: {
|
3229
|
+
clientId?: string;
|
3230
|
+
connectionId?: string;
|
3231
|
+
prefix?: {
|
3232
|
+
keyPrefix?: Uint8Array;
|
3233
|
+
};
|
3234
|
+
};
|
3235
|
+
delayPeriod?: any;
|
3236
|
+
}[];
|
3237
|
+
clientConnectionPaths?: {
|
3238
|
+
clientId?: string;
|
3239
|
+
paths?: string[];
|
3240
|
+
}[];
|
3241
|
+
nextConnectionSequence?: any;
|
3242
|
+
params?: {
|
3243
|
+
maxExpectedTimePerBlock?: any;
|
3244
|
+
};
|
3245
|
+
};
|
3246
|
+
channelGenesis?: {
|
3247
|
+
channels?: {
|
3248
|
+
state?: _116.State;
|
3249
|
+
ordering?: _116.Order;
|
3250
|
+
counterparty?: {
|
3251
|
+
portId?: string;
|
3252
|
+
channelId?: string;
|
3253
|
+
};
|
3254
|
+
connectionHops?: string[];
|
3255
|
+
version?: string;
|
3256
|
+
portId?: string;
|
3257
|
+
channelId?: string;
|
3258
|
+
}[];
|
3259
|
+
acknowledgements?: {
|
3260
|
+
portId?: string;
|
3261
|
+
channelId?: string;
|
3262
|
+
sequence?: any;
|
3263
|
+
data?: Uint8Array;
|
3264
|
+
}[];
|
3265
|
+
commitments?: {
|
3266
|
+
portId?: string;
|
3267
|
+
channelId?: string;
|
3268
|
+
sequence?: any;
|
3269
|
+
data?: Uint8Array;
|
3270
|
+
}[];
|
3271
|
+
receipts?: {
|
3272
|
+
portId?: string;
|
3273
|
+
channelId?: string;
|
3274
|
+
sequence?: any;
|
3275
|
+
data?: Uint8Array;
|
3276
|
+
}[];
|
3277
|
+
sendSequences?: {
|
3278
|
+
portId?: string;
|
3279
|
+
channelId?: string;
|
3280
|
+
sequence?: any;
|
3281
|
+
}[];
|
3282
|
+
recvSequences?: {
|
3283
|
+
portId?: string;
|
3284
|
+
channelId?: string;
|
3285
|
+
sequence?: any;
|
3286
|
+
}[];
|
3287
|
+
ackSequences?: {
|
3288
|
+
portId?: string;
|
3289
|
+
channelId?: string;
|
3290
|
+
sequence?: any;
|
3291
|
+
}[];
|
3292
|
+
nextChannelSequence?: any;
|
3293
|
+
};
|
3294
|
+
}): _130.GenesisState;
|
3295
|
+
};
|
3296
|
+
};
|
3297
|
+
}
|
3298
|
+
}
|
3299
|
+
namespace lightclients {
|
3300
|
+
namespace localhost {
|
3301
|
+
const v1: {
|
3302
|
+
ClientState: {
|
3303
|
+
encode(message: _131.ClientState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3304
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _131.ClientState;
|
3305
|
+
fromJSON(object: any): _131.ClientState;
|
3306
|
+
toJSON(message: _131.ClientState): unknown;
|
3307
|
+
fromPartial(object: {
|
3308
|
+
chainId?: string;
|
3309
|
+
height?: {
|
3310
|
+
revisionNumber?: any;
|
3311
|
+
revisionHeight?: any;
|
3312
|
+
};
|
3313
|
+
}): _131.ClientState;
|
3314
|
+
};
|
3315
|
+
};
|
3316
|
+
}
|
3317
|
+
namespace solomachine {
|
3318
|
+
const v1: {
|
3319
|
+
dataTypeFromJSON(object: any): _132.DataType;
|
3320
|
+
dataTypeToJSON(object: _132.DataType): string;
|
3321
|
+
DataType: typeof _132.DataType;
|
3322
|
+
ClientState: {
|
3323
|
+
encode(message: _132.ClientState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3324
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _132.ClientState;
|
3325
|
+
fromJSON(object: any): _132.ClientState;
|
3326
|
+
toJSON(message: _132.ClientState): unknown;
|
3327
|
+
fromPartial(object: {
|
3328
|
+
sequence?: any;
|
3329
|
+
frozenSequence?: any;
|
3330
|
+
consensusState?: {
|
3331
|
+
publicKey?: {
|
3332
|
+
typeUrl?: string;
|
3333
|
+
value?: Uint8Array;
|
3334
|
+
};
|
3335
|
+
diversifier?: string;
|
3336
|
+
timestamp?: any;
|
3337
|
+
};
|
3338
|
+
allowUpdateAfterProposal?: boolean;
|
3339
|
+
}): _132.ClientState;
|
3340
|
+
};
|
3341
|
+
ConsensusState: {
|
3342
|
+
encode(message: _132.ConsensusState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3343
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _132.ConsensusState;
|
3344
|
+
fromJSON(object: any): _132.ConsensusState;
|
3345
|
+
toJSON(message: _132.ConsensusState): unknown;
|
3346
|
+
fromPartial(object: {
|
3347
|
+
publicKey?: {
|
3348
|
+
typeUrl?: string;
|
3349
|
+
value?: Uint8Array;
|
3350
|
+
};
|
3351
|
+
diversifier?: string;
|
3352
|
+
timestamp?: any;
|
3353
|
+
}): _132.ConsensusState;
|
3354
|
+
};
|
3355
|
+
Header: {
|
3356
|
+
encode(message: _132.Header, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3357
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _132.Header;
|
3358
|
+
fromJSON(object: any): _132.Header;
|
3359
|
+
toJSON(message: _132.Header): unknown;
|
3360
|
+
fromPartial(object: {
|
3361
|
+
sequence?: any;
|
3362
|
+
timestamp?: any;
|
3363
|
+
signature?: Uint8Array;
|
3364
|
+
newPublicKey?: {
|
3365
|
+
typeUrl?: string;
|
3366
|
+
value?: Uint8Array;
|
3367
|
+
};
|
3368
|
+
newDiversifier?: string;
|
3369
|
+
}): _132.Header;
|
3370
|
+
};
|
3371
|
+
Misbehaviour: {
|
3372
|
+
encode(message: _132.Misbehaviour, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3373
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _132.Misbehaviour;
|
3374
|
+
fromJSON(object: any): _132.Misbehaviour;
|
3375
|
+
toJSON(message: _132.Misbehaviour): unknown;
|
3376
|
+
fromPartial(object: {
|
3377
|
+
clientId?: string;
|
3378
|
+
sequence?: any;
|
3379
|
+
signatureOne?: {
|
3380
|
+
signature?: Uint8Array;
|
3381
|
+
dataType?: _132.DataType;
|
3382
|
+
data?: Uint8Array;
|
3383
|
+
timestamp?: any;
|
3384
|
+
};
|
3385
|
+
signatureTwo?: {
|
3386
|
+
signature?: Uint8Array;
|
3387
|
+
dataType?: _132.DataType;
|
3388
|
+
data?: Uint8Array;
|
3389
|
+
timestamp?: any;
|
3390
|
+
};
|
3391
|
+
}): _132.Misbehaviour;
|
3392
|
+
};
|
3393
|
+
SignatureAndData: {
|
3394
|
+
encode(message: _132.SignatureAndData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3395
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _132.SignatureAndData;
|
3396
|
+
fromJSON(object: any): _132.SignatureAndData;
|
3397
|
+
toJSON(message: _132.SignatureAndData): unknown;
|
3398
|
+
fromPartial(object: {
|
3399
|
+
signature?: Uint8Array;
|
3400
|
+
dataType?: _132.DataType;
|
3401
|
+
data?: Uint8Array;
|
3402
|
+
timestamp?: any;
|
3403
|
+
}): _132.SignatureAndData;
|
3404
|
+
};
|
3405
|
+
TimestampedSignatureData: {
|
3406
|
+
encode(message: _132.TimestampedSignatureData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3407
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _132.TimestampedSignatureData;
|
3408
|
+
fromJSON(object: any): _132.TimestampedSignatureData;
|
3409
|
+
toJSON(message: _132.TimestampedSignatureData): unknown;
|
3410
|
+
fromPartial(object: {
|
3411
|
+
signatureData?: Uint8Array;
|
3412
|
+
timestamp?: any;
|
3413
|
+
}): _132.TimestampedSignatureData;
|
3414
|
+
};
|
3415
|
+
SignBytes: {
|
3416
|
+
encode(message: _132.SignBytes, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3417
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _132.SignBytes;
|
3418
|
+
fromJSON(object: any): _132.SignBytes;
|
3419
|
+
toJSON(message: _132.SignBytes): unknown;
|
3420
|
+
fromPartial(object: {
|
3421
|
+
sequence?: any;
|
3422
|
+
timestamp?: any;
|
3423
|
+
diversifier?: string;
|
3424
|
+
dataType?: _132.DataType;
|
3425
|
+
data?: Uint8Array;
|
3426
|
+
}): _132.SignBytes;
|
3427
|
+
};
|
3428
|
+
HeaderData: {
|
3429
|
+
encode(message: _132.HeaderData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3430
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _132.HeaderData;
|
3431
|
+
fromJSON(object: any): _132.HeaderData;
|
3432
|
+
toJSON(message: _132.HeaderData): unknown;
|
3433
|
+
fromPartial(object: {
|
3434
|
+
newPubKey?: {
|
3435
|
+
typeUrl?: string;
|
3436
|
+
value?: Uint8Array;
|
3437
|
+
};
|
3438
|
+
newDiversifier?: string;
|
3439
|
+
}): _132.HeaderData;
|
3440
|
+
};
|
3441
|
+
ClientStateData: {
|
3442
|
+
encode(message: _132.ClientStateData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3443
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _132.ClientStateData;
|
3444
|
+
fromJSON(object: any): _132.ClientStateData;
|
3445
|
+
toJSON(message: _132.ClientStateData): unknown;
|
3446
|
+
fromPartial(object: {
|
3447
|
+
path?: Uint8Array;
|
3448
|
+
clientState?: {
|
3449
|
+
typeUrl?: string;
|
3450
|
+
value?: Uint8Array;
|
3451
|
+
};
|
3452
|
+
}): _132.ClientStateData;
|
3453
|
+
};
|
3454
|
+
ConsensusStateData: {
|
3455
|
+
encode(message: _132.ConsensusStateData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3456
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _132.ConsensusStateData;
|
3457
|
+
fromJSON(object: any): _132.ConsensusStateData;
|
3458
|
+
toJSON(message: _132.ConsensusStateData): unknown;
|
3459
|
+
fromPartial(object: {
|
3460
|
+
path?: Uint8Array;
|
3461
|
+
consensusState?: {
|
3462
|
+
typeUrl?: string;
|
3463
|
+
value?: Uint8Array;
|
3464
|
+
};
|
3465
|
+
}): _132.ConsensusStateData;
|
3466
|
+
};
|
3467
|
+
ConnectionStateData: {
|
3468
|
+
encode(message: _132.ConnectionStateData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3469
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _132.ConnectionStateData;
|
3470
|
+
fromJSON(object: any): _132.ConnectionStateData;
|
3471
|
+
toJSON(message: _132.ConnectionStateData): unknown;
|
3472
|
+
fromPartial(object: {
|
3473
|
+
path?: Uint8Array;
|
3474
|
+
connection?: {
|
3475
|
+
clientId?: string;
|
3476
|
+
versions?: {
|
3477
|
+
identifier?: string;
|
3478
|
+
features?: string[];
|
3479
|
+
}[];
|
3480
|
+
state?: _125.State;
|
3481
|
+
counterparty?: {
|
3482
|
+
clientId?: string;
|
3483
|
+
connectionId?: string;
|
3484
|
+
prefix?: {
|
3485
|
+
keyPrefix?: Uint8Array;
|
3486
|
+
};
|
3487
|
+
};
|
3488
|
+
delayPeriod?: any;
|
3489
|
+
};
|
3490
|
+
}): _132.ConnectionStateData;
|
3491
|
+
};
|
3492
|
+
ChannelStateData: {
|
3493
|
+
encode(message: _132.ChannelStateData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3494
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _132.ChannelStateData;
|
3495
|
+
fromJSON(object: any): _132.ChannelStateData;
|
3496
|
+
toJSON(message: _132.ChannelStateData): unknown;
|
3497
|
+
fromPartial(object: {
|
3498
|
+
path?: Uint8Array;
|
3499
|
+
channel?: {
|
3500
|
+
state?: _116.State;
|
3501
|
+
ordering?: _116.Order;
|
3502
|
+
counterparty?: {
|
3503
|
+
portId?: string;
|
3504
|
+
channelId?: string;
|
3505
|
+
};
|
3506
|
+
connectionHops?: string[];
|
3507
|
+
version?: string;
|
3508
|
+
};
|
3509
|
+
}): _132.ChannelStateData;
|
3510
|
+
};
|
3511
|
+
PacketCommitmentData: {
|
3512
|
+
encode(message: _132.PacketCommitmentData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3513
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _132.PacketCommitmentData;
|
3514
|
+
fromJSON(object: any): _132.PacketCommitmentData;
|
3515
|
+
toJSON(message: _132.PacketCommitmentData): unknown;
|
3516
|
+
fromPartial(object: {
|
3517
|
+
path?: Uint8Array;
|
3518
|
+
commitment?: Uint8Array;
|
3519
|
+
}): _132.PacketCommitmentData;
|
3520
|
+
};
|
3521
|
+
PacketAcknowledgementData: {
|
3522
|
+
encode(message: _132.PacketAcknowledgementData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3523
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _132.PacketAcknowledgementData;
|
3524
|
+
fromJSON(object: any): _132.PacketAcknowledgementData;
|
3525
|
+
toJSON(message: _132.PacketAcknowledgementData): unknown;
|
3526
|
+
fromPartial(object: {
|
3527
|
+
path?: Uint8Array;
|
3528
|
+
acknowledgement?: Uint8Array;
|
3529
|
+
}): _132.PacketAcknowledgementData;
|
3530
|
+
};
|
3531
|
+
PacketReceiptAbsenceData: {
|
3532
|
+
encode(message: _132.PacketReceiptAbsenceData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3533
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _132.PacketReceiptAbsenceData;
|
3534
|
+
fromJSON(object: any): _132.PacketReceiptAbsenceData;
|
3535
|
+
toJSON(message: _132.PacketReceiptAbsenceData): unknown;
|
3536
|
+
fromPartial(object: {
|
3537
|
+
path?: Uint8Array;
|
3538
|
+
}): _132.PacketReceiptAbsenceData;
|
3539
|
+
};
|
3540
|
+
NextSequenceRecvData: {
|
3541
|
+
encode(message: _132.NextSequenceRecvData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3542
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _132.NextSequenceRecvData;
|
3543
|
+
fromJSON(object: any): _132.NextSequenceRecvData;
|
3544
|
+
toJSON(message: _132.NextSequenceRecvData): unknown;
|
3545
|
+
fromPartial(object: {
|
3546
|
+
path?: Uint8Array;
|
3547
|
+
nextSeqRecv?: any;
|
3548
|
+
}): _132.NextSequenceRecvData;
|
3549
|
+
};
|
3550
|
+
};
|
3551
|
+
const v2: {
|
3552
|
+
dataTypeFromJSON(object: any): _133.DataType;
|
3553
|
+
dataTypeToJSON(object: _133.DataType): string;
|
3554
|
+
DataType: typeof _133.DataType;
|
3555
|
+
ClientState: {
|
3556
|
+
encode(message: _133.ClientState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3557
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _133.ClientState;
|
3558
|
+
fromJSON(object: any): _133.ClientState;
|
3559
|
+
toJSON(message: _133.ClientState): unknown;
|
3560
|
+
fromPartial(object: {
|
3561
|
+
sequence?: any;
|
3562
|
+
isFrozen?: boolean;
|
3563
|
+
consensusState?: {
|
3564
|
+
publicKey?: {
|
3565
|
+
typeUrl?: string;
|
3566
|
+
value?: Uint8Array;
|
3567
|
+
};
|
3568
|
+
diversifier?: string;
|
3569
|
+
timestamp?: any;
|
3570
|
+
};
|
3571
|
+
allowUpdateAfterProposal?: boolean;
|
3572
|
+
}): _133.ClientState;
|
3573
|
+
};
|
3574
|
+
ConsensusState: {
|
3575
|
+
encode(message: _133.ConsensusState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3576
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _133.ConsensusState;
|
3577
|
+
fromJSON(object: any): _133.ConsensusState;
|
3578
|
+
toJSON(message: _133.ConsensusState): unknown;
|
3579
|
+
fromPartial(object: {
|
3580
|
+
publicKey?: {
|
3581
|
+
typeUrl?: string;
|
3582
|
+
value?: Uint8Array;
|
3583
|
+
};
|
3584
|
+
diversifier?: string;
|
3585
|
+
timestamp?: any;
|
3586
|
+
}): _133.ConsensusState;
|
3587
|
+
};
|
3588
|
+
Header: {
|
3589
|
+
encode(message: _133.Header, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3590
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _133.Header;
|
3591
|
+
fromJSON(object: any): _133.Header;
|
3592
|
+
toJSON(message: _133.Header): unknown;
|
3593
|
+
fromPartial(object: {
|
3594
|
+
sequence?: any;
|
3595
|
+
timestamp?: any;
|
3596
|
+
signature?: Uint8Array;
|
3597
|
+
newPublicKey?: {
|
3598
|
+
typeUrl?: string;
|
3599
|
+
value?: Uint8Array;
|
3600
|
+
};
|
3601
|
+
newDiversifier?: string;
|
3602
|
+
}): _133.Header;
|
3603
|
+
};
|
3604
|
+
Misbehaviour: {
|
3605
|
+
encode(message: _133.Misbehaviour, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3606
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _133.Misbehaviour;
|
3607
|
+
fromJSON(object: any): _133.Misbehaviour;
|
3608
|
+
toJSON(message: _133.Misbehaviour): unknown;
|
3609
|
+
fromPartial(object: {
|
3610
|
+
clientId?: string;
|
3611
|
+
sequence?: any;
|
3612
|
+
signatureOne?: {
|
3613
|
+
signature?: Uint8Array;
|
3614
|
+
dataType?: _133.DataType;
|
3615
|
+
data?: Uint8Array;
|
3616
|
+
timestamp?: any;
|
3617
|
+
};
|
3618
|
+
signatureTwo?: {
|
3619
|
+
signature?: Uint8Array;
|
3620
|
+
dataType?: _133.DataType;
|
3621
|
+
data?: Uint8Array;
|
3622
|
+
timestamp?: any;
|
3623
|
+
};
|
3624
|
+
}): _133.Misbehaviour;
|
3625
|
+
};
|
3626
|
+
SignatureAndData: {
|
3627
|
+
encode(message: _133.SignatureAndData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3628
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _133.SignatureAndData;
|
3629
|
+
fromJSON(object: any): _133.SignatureAndData;
|
3630
|
+
toJSON(message: _133.SignatureAndData): unknown;
|
3631
|
+
fromPartial(object: {
|
3632
|
+
signature?: Uint8Array;
|
3633
|
+
dataType?: _133.DataType;
|
3634
|
+
data?: Uint8Array;
|
3635
|
+
timestamp?: any;
|
3636
|
+
}): _133.SignatureAndData;
|
3637
|
+
};
|
3638
|
+
TimestampedSignatureData: {
|
3639
|
+
encode(message: _133.TimestampedSignatureData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3640
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _133.TimestampedSignatureData;
|
3641
|
+
fromJSON(object: any): _133.TimestampedSignatureData;
|
3642
|
+
toJSON(message: _133.TimestampedSignatureData): unknown;
|
3643
|
+
fromPartial(object: {
|
3644
|
+
signatureData?: Uint8Array;
|
3645
|
+
timestamp?: any;
|
3646
|
+
}): _133.TimestampedSignatureData;
|
3647
|
+
};
|
3648
|
+
SignBytes: {
|
3649
|
+
encode(message: _133.SignBytes, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3650
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _133.SignBytes;
|
3651
|
+
fromJSON(object: any): _133.SignBytes;
|
3652
|
+
toJSON(message: _133.SignBytes): unknown;
|
3653
|
+
fromPartial(object: {
|
3654
|
+
sequence?: any;
|
3655
|
+
timestamp?: any;
|
3656
|
+
diversifier?: string;
|
3657
|
+
dataType?: _133.DataType;
|
3658
|
+
data?: Uint8Array;
|
3659
|
+
}): _133.SignBytes;
|
3660
|
+
};
|
3661
|
+
HeaderData: {
|
3662
|
+
encode(message: _133.HeaderData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3663
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _133.HeaderData;
|
3664
|
+
fromJSON(object: any): _133.HeaderData;
|
3665
|
+
toJSON(message: _133.HeaderData): unknown;
|
3666
|
+
fromPartial(object: {
|
3667
|
+
newPubKey?: {
|
3668
|
+
typeUrl?: string;
|
3669
|
+
value?: Uint8Array;
|
3670
|
+
};
|
3671
|
+
newDiversifier?: string;
|
3672
|
+
}): _133.HeaderData;
|
3673
|
+
};
|
3674
|
+
ClientStateData: {
|
3675
|
+
encode(message: _133.ClientStateData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3676
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _133.ClientStateData;
|
3677
|
+
fromJSON(object: any): _133.ClientStateData;
|
3678
|
+
toJSON(message: _133.ClientStateData): unknown;
|
3679
|
+
fromPartial(object: {
|
3680
|
+
path?: Uint8Array;
|
3681
|
+
clientState?: {
|
3682
|
+
typeUrl?: string;
|
3683
|
+
value?: Uint8Array;
|
3684
|
+
};
|
3685
|
+
}): _133.ClientStateData;
|
3686
|
+
};
|
3687
|
+
ConsensusStateData: {
|
3688
|
+
encode(message: _133.ConsensusStateData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3689
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _133.ConsensusStateData;
|
3690
|
+
fromJSON(object: any): _133.ConsensusStateData;
|
3691
|
+
toJSON(message: _133.ConsensusStateData): unknown;
|
3692
|
+
fromPartial(object: {
|
3693
|
+
path?: Uint8Array;
|
3694
|
+
consensusState?: {
|
3695
|
+
typeUrl?: string;
|
3696
|
+
value?: Uint8Array;
|
3697
|
+
};
|
3698
|
+
}): _133.ConsensusStateData;
|
3699
|
+
};
|
3700
|
+
ConnectionStateData: {
|
3701
|
+
encode(message: _133.ConnectionStateData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3702
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _133.ConnectionStateData;
|
3703
|
+
fromJSON(object: any): _133.ConnectionStateData;
|
3704
|
+
toJSON(message: _133.ConnectionStateData): unknown;
|
3705
|
+
fromPartial(object: {
|
3706
|
+
path?: Uint8Array;
|
3707
|
+
connection?: {
|
3708
|
+
clientId?: string;
|
3709
|
+
versions?: {
|
3710
|
+
identifier?: string;
|
3711
|
+
features?: string[];
|
3712
|
+
}[];
|
3713
|
+
state?: _125.State;
|
3714
|
+
counterparty?: {
|
3715
|
+
clientId?: string;
|
3716
|
+
connectionId?: string;
|
3717
|
+
prefix?: {
|
3718
|
+
keyPrefix?: Uint8Array;
|
3719
|
+
};
|
3720
|
+
};
|
3721
|
+
delayPeriod?: any;
|
3722
|
+
};
|
3723
|
+
}): _133.ConnectionStateData;
|
3724
|
+
};
|
3725
|
+
ChannelStateData: {
|
3726
|
+
encode(message: _133.ChannelStateData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3727
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _133.ChannelStateData;
|
3728
|
+
fromJSON(object: any): _133.ChannelStateData;
|
3729
|
+
toJSON(message: _133.ChannelStateData): unknown;
|
3730
|
+
fromPartial(object: {
|
3731
|
+
path?: Uint8Array;
|
3732
|
+
channel?: {
|
3733
|
+
state?: _116.State;
|
3734
|
+
ordering?: _116.Order;
|
3735
|
+
counterparty?: {
|
3736
|
+
portId?: string;
|
3737
|
+
channelId?: string;
|
3738
|
+
};
|
3739
|
+
connectionHops?: string[];
|
3740
|
+
version?: string;
|
3741
|
+
};
|
3742
|
+
}): _133.ChannelStateData;
|
3743
|
+
};
|
3744
|
+
PacketCommitmentData: {
|
3745
|
+
encode(message: _133.PacketCommitmentData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3746
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _133.PacketCommitmentData;
|
3747
|
+
fromJSON(object: any): _133.PacketCommitmentData;
|
3748
|
+
toJSON(message: _133.PacketCommitmentData): unknown;
|
3749
|
+
fromPartial(object: {
|
3750
|
+
path?: Uint8Array;
|
3751
|
+
commitment?: Uint8Array;
|
3752
|
+
}): _133.PacketCommitmentData;
|
3753
|
+
};
|
3754
|
+
PacketAcknowledgementData: {
|
3755
|
+
encode(message: _133.PacketAcknowledgementData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3756
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _133.PacketAcknowledgementData;
|
3757
|
+
fromJSON(object: any): _133.PacketAcknowledgementData;
|
3758
|
+
toJSON(message: _133.PacketAcknowledgementData): unknown;
|
3759
|
+
fromPartial(object: {
|
3760
|
+
path?: Uint8Array;
|
3761
|
+
acknowledgement?: Uint8Array;
|
3762
|
+
}): _133.PacketAcknowledgementData;
|
3763
|
+
};
|
3764
|
+
PacketReceiptAbsenceData: {
|
3765
|
+
encode(message: _133.PacketReceiptAbsenceData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3766
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _133.PacketReceiptAbsenceData;
|
3767
|
+
fromJSON(object: any): _133.PacketReceiptAbsenceData;
|
3768
|
+
toJSON(message: _133.PacketReceiptAbsenceData): unknown;
|
3769
|
+
fromPartial(object: {
|
3770
|
+
path?: Uint8Array;
|
3771
|
+
}): _133.PacketReceiptAbsenceData;
|
3772
|
+
};
|
3773
|
+
NextSequenceRecvData: {
|
3774
|
+
encode(message: _133.NextSequenceRecvData, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3775
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _133.NextSequenceRecvData;
|
3776
|
+
fromJSON(object: any): _133.NextSequenceRecvData;
|
3777
|
+
toJSON(message: _133.NextSequenceRecvData): unknown;
|
3778
|
+
fromPartial(object: {
|
3779
|
+
path?: Uint8Array;
|
3780
|
+
nextSeqRecv?: any;
|
3781
|
+
}): _133.NextSequenceRecvData;
|
3782
|
+
};
|
3783
|
+
};
|
3784
|
+
}
|
3785
|
+
namespace tendermint {
|
3786
|
+
const v1: {
|
3787
|
+
ClientState: {
|
3788
|
+
encode(message: _134.ClientState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3789
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _134.ClientState;
|
3790
|
+
fromJSON(object: any): _134.ClientState;
|
3791
|
+
toJSON(message: _134.ClientState): unknown;
|
3792
|
+
fromPartial(object: {
|
3793
|
+
chainId?: string;
|
3794
|
+
trustLevel?: {
|
3795
|
+
numerator?: any;
|
3796
|
+
denominator?: any;
|
3797
|
+
};
|
3798
|
+
trustingPeriod?: {
|
3799
|
+
seconds?: any;
|
3800
|
+
nanos?: number;
|
3801
|
+
};
|
3802
|
+
unbondingPeriod?: {
|
3803
|
+
seconds?: any;
|
3804
|
+
nanos?: number;
|
3805
|
+
};
|
3806
|
+
maxClockDrift?: {
|
3807
|
+
seconds?: any;
|
3808
|
+
nanos?: number;
|
3809
|
+
};
|
3810
|
+
frozenHeight?: {
|
3811
|
+
revisionNumber?: any;
|
3812
|
+
revisionHeight?: any;
|
3813
|
+
};
|
3814
|
+
latestHeight?: {
|
3815
|
+
revisionNumber?: any;
|
3816
|
+
revisionHeight?: any;
|
3817
|
+
};
|
3818
|
+
proofSpecs?: {
|
3819
|
+
leafSpec?: {
|
3820
|
+
hash?: import("../confio/proofs").HashOp;
|
3821
|
+
prehashKey?: import("../confio/proofs").HashOp;
|
3822
|
+
prehashValue?: import("../confio/proofs").HashOp;
|
3823
|
+
length?: import("../confio/proofs").LengthOp;
|
3824
|
+
prefix?: Uint8Array;
|
3825
|
+
};
|
3826
|
+
innerSpec?: {
|
3827
|
+
childOrder?: number[];
|
3828
|
+
childSize?: number;
|
3829
|
+
minPrefixLength?: number;
|
3830
|
+
maxPrefixLength?: number;
|
3831
|
+
emptyChild?: Uint8Array;
|
3832
|
+
hash?: import("../confio/proofs").HashOp;
|
3833
|
+
};
|
3834
|
+
maxDepth?: number;
|
3835
|
+
minDepth?: number;
|
3836
|
+
}[];
|
3837
|
+
upgradePath?: string[];
|
3838
|
+
allowUpdateAfterExpiry?: boolean;
|
3839
|
+
allowUpdateAfterMisbehaviour?: boolean;
|
3840
|
+
}): _134.ClientState;
|
3841
|
+
};
|
3842
|
+
ConsensusState: {
|
3843
|
+
encode(message: _134.ConsensusState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3844
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _134.ConsensusState;
|
3845
|
+
fromJSON(object: any): _134.ConsensusState;
|
3846
|
+
toJSON(message: _134.ConsensusState): unknown;
|
3847
|
+
fromPartial(object: {
|
3848
|
+
timestamp?: Date;
|
3849
|
+
root?: {
|
3850
|
+
hash?: Uint8Array;
|
3851
|
+
};
|
3852
|
+
nextValidatorsHash?: Uint8Array;
|
3853
|
+
}): _134.ConsensusState;
|
3854
|
+
};
|
3855
|
+
Misbehaviour: {
|
3856
|
+
encode(message: _134.Misbehaviour, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
3857
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _134.Misbehaviour;
|
3858
|
+
fromJSON(object: any): _134.Misbehaviour;
|
3859
|
+
toJSON(message: _134.Misbehaviour): unknown;
|
3860
|
+
fromPartial(object: {
|
3861
|
+
clientId?: string;
|
3862
|
+
header_1?: {
|
3863
|
+
signedHeader?: {
|
3864
|
+
header?: {
|
3865
|
+
version?: {
|
3866
|
+
block?: any;
|
3867
|
+
app?: any;
|
3868
|
+
};
|
3869
|
+
chainId?: string;
|
3870
|
+
height?: any;
|
3871
|
+
time?: Date;
|
3872
|
+
lastBlockId?: {
|
3873
|
+
hash?: Uint8Array;
|
3874
|
+
partSetHeader?: {
|
3875
|
+
total?: number;
|
3876
|
+
hash?: Uint8Array;
|
3877
|
+
};
|
3878
|
+
};
|
3879
|
+
lastCommitHash?: Uint8Array;
|
3880
|
+
dataHash?: Uint8Array;
|
3881
|
+
validatorsHash?: Uint8Array;
|
3882
|
+
nextValidatorsHash?: Uint8Array;
|
3883
|
+
consensusHash?: Uint8Array;
|
3884
|
+
appHash?: Uint8Array;
|
3885
|
+
lastResultsHash?: Uint8Array;
|
3886
|
+
evidenceHash?: Uint8Array;
|
3887
|
+
proposerAddress?: Uint8Array;
|
3888
|
+
};
|
3889
|
+
commit?: {
|
3890
|
+
height?: any;
|
3891
|
+
round?: number;
|
3892
|
+
blockId?: {
|
3893
|
+
hash?: Uint8Array;
|
3894
|
+
partSetHeader?: {
|
3895
|
+
total?: number;
|
3896
|
+
hash?: Uint8Array;
|
3897
|
+
};
|
3898
|
+
};
|
3899
|
+
signatures?: {
|
3900
|
+
blockIdFlag?: import("../tendermint/types/types").BlockIDFlag;
|
3901
|
+
validatorAddress?: Uint8Array;
|
3902
|
+
timestamp?: Date;
|
3903
|
+
signature?: Uint8Array;
|
3904
|
+
}[];
|
3905
|
+
};
|
3906
|
+
};
|
3907
|
+
validatorSet?: {
|
3908
|
+
validators?: {
|
3909
|
+
address?: Uint8Array;
|
3910
|
+
pubKey?: {
|
3911
|
+
ed25519?: Uint8Array;
|
3912
|
+
secp256k1?: Uint8Array;
|
3913
|
+
};
|
3914
|
+
votingPower?: any;
|
3915
|
+
proposerPriority?: any;
|
3916
|
+
}[];
|
3917
|
+
proposer?: {
|
3918
|
+
address?: Uint8Array;
|
3919
|
+
pubKey?: {
|
3920
|
+
ed25519?: Uint8Array;
|
3921
|
+
secp256k1?: Uint8Array;
|
3922
|
+
};
|
3923
|
+
votingPower?: any;
|
3924
|
+
proposerPriority?: any;
|
3925
|
+
};
|
3926
|
+
totalVotingPower?: any;
|
3927
|
+
};
|
3928
|
+
trustedHeight?: {
|
3929
|
+
revisionNumber?: any;
|
3930
|
+
revisionHeight?: any;
|
3931
|
+
};
|
3932
|
+
trustedValidators?: {
|
3933
|
+
validators?: {
|
3934
|
+
address?: Uint8Array;
|
3935
|
+
pubKey?: {
|
3936
|
+
ed25519?: Uint8Array;
|
3937
|
+
secp256k1?: Uint8Array;
|
3938
|
+
};
|
3939
|
+
votingPower?: any;
|
3940
|
+
proposerPriority?: any;
|
3941
|
+
}[];
|
3942
|
+
proposer?: {
|
3943
|
+
address?: Uint8Array;
|
3944
|
+
pubKey?: {
|
3945
|
+
ed25519?: Uint8Array;
|
3946
|
+
secp256k1?: Uint8Array;
|
3947
|
+
};
|
3948
|
+
votingPower?: any;
|
3949
|
+
proposerPriority?: any;
|
3950
|
+
};
|
3951
|
+
totalVotingPower?: any;
|
3952
|
+
};
|
3953
|
+
};
|
3954
|
+
header_2?: {
|
3955
|
+
signedHeader?: {
|
3956
|
+
header?: {
|
3957
|
+
version?: {
|
3958
|
+
block?: any;
|
3959
|
+
app?: any;
|
3960
|
+
};
|
3961
|
+
chainId?: string;
|
3962
|
+
height?: any;
|
3963
|
+
time?: Date;
|
3964
|
+
lastBlockId?: {
|
3965
|
+
hash?: Uint8Array;
|
3966
|
+
partSetHeader?: {
|
3967
|
+
total?: number;
|
3968
|
+
hash?: Uint8Array;
|
3969
|
+
};
|
3970
|
+
};
|
3971
|
+
lastCommitHash?: Uint8Array;
|
3972
|
+
dataHash?: Uint8Array;
|
3973
|
+
validatorsHash?: Uint8Array;
|
3974
|
+
nextValidatorsHash?: Uint8Array;
|
3975
|
+
consensusHash?: Uint8Array;
|
3976
|
+
appHash?: Uint8Array;
|
3977
|
+
lastResultsHash?: Uint8Array;
|
3978
|
+
evidenceHash?: Uint8Array;
|
3979
|
+
proposerAddress?: Uint8Array;
|
3980
|
+
};
|
3981
|
+
commit?: {
|
3982
|
+
height?: any;
|
3983
|
+
round?: number;
|
3984
|
+
blockId?: {
|
3985
|
+
hash?: Uint8Array;
|
3986
|
+
partSetHeader?: {
|
3987
|
+
total?: number;
|
3988
|
+
hash?: Uint8Array;
|
3989
|
+
};
|
3990
|
+
};
|
3991
|
+
signatures?: {
|
3992
|
+
blockIdFlag?: import("../tendermint/types/types").BlockIDFlag;
|
3993
|
+
validatorAddress?: Uint8Array;
|
3994
|
+
timestamp?: Date;
|
3995
|
+
signature?: Uint8Array;
|
3996
|
+
}[];
|
3997
|
+
};
|
3998
|
+
};
|
3999
|
+
validatorSet?: {
|
4000
|
+
validators?: {
|
4001
|
+
address?: Uint8Array;
|
4002
|
+
pubKey?: {
|
4003
|
+
ed25519?: Uint8Array;
|
4004
|
+
secp256k1?: Uint8Array;
|
4005
|
+
};
|
4006
|
+
votingPower?: any;
|
4007
|
+
proposerPriority?: any;
|
4008
|
+
}[];
|
4009
|
+
proposer?: {
|
4010
|
+
address?: Uint8Array;
|
4011
|
+
pubKey?: {
|
4012
|
+
ed25519?: Uint8Array;
|
4013
|
+
secp256k1?: Uint8Array;
|
4014
|
+
};
|
4015
|
+
votingPower?: any;
|
4016
|
+
proposerPriority?: any;
|
4017
|
+
};
|
4018
|
+
totalVotingPower?: any;
|
4019
|
+
};
|
4020
|
+
trustedHeight?: {
|
4021
|
+
revisionNumber?: any;
|
4022
|
+
revisionHeight?: any;
|
4023
|
+
};
|
4024
|
+
trustedValidators?: {
|
4025
|
+
validators?: {
|
4026
|
+
address?: Uint8Array;
|
4027
|
+
pubKey?: {
|
4028
|
+
ed25519?: Uint8Array;
|
4029
|
+
secp256k1?: Uint8Array;
|
4030
|
+
};
|
4031
|
+
votingPower?: any;
|
4032
|
+
proposerPriority?: any;
|
4033
|
+
}[];
|
4034
|
+
proposer?: {
|
4035
|
+
address?: Uint8Array;
|
4036
|
+
pubKey?: {
|
4037
|
+
ed25519?: Uint8Array;
|
4038
|
+
secp256k1?: Uint8Array;
|
4039
|
+
};
|
4040
|
+
votingPower?: any;
|
4041
|
+
proposerPriority?: any;
|
4042
|
+
};
|
4043
|
+
totalVotingPower?: any;
|
4044
|
+
};
|
4045
|
+
};
|
4046
|
+
}): _134.Misbehaviour;
|
4047
|
+
};
|
4048
|
+
Header: {
|
4049
|
+
encode(message: _134.Header, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
4050
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _134.Header;
|
4051
|
+
fromJSON(object: any): _134.Header;
|
4052
|
+
toJSON(message: _134.Header): unknown;
|
4053
|
+
fromPartial(object: {
|
4054
|
+
signedHeader?: {
|
4055
|
+
header?: {
|
4056
|
+
version?: {
|
4057
|
+
block?: any;
|
4058
|
+
app?: any;
|
4059
|
+
};
|
4060
|
+
chainId?: string;
|
4061
|
+
height?: any;
|
4062
|
+
time?: Date;
|
4063
|
+
lastBlockId?: {
|
4064
|
+
hash?: Uint8Array;
|
4065
|
+
partSetHeader?: {
|
4066
|
+
total?: number;
|
4067
|
+
hash?: Uint8Array;
|
4068
|
+
};
|
4069
|
+
};
|
4070
|
+
lastCommitHash?: Uint8Array;
|
4071
|
+
dataHash?: Uint8Array;
|
4072
|
+
validatorsHash?: Uint8Array;
|
4073
|
+
nextValidatorsHash?: Uint8Array;
|
4074
|
+
consensusHash?: Uint8Array;
|
4075
|
+
appHash?: Uint8Array;
|
4076
|
+
lastResultsHash?: Uint8Array;
|
4077
|
+
evidenceHash?: Uint8Array;
|
4078
|
+
proposerAddress?: Uint8Array;
|
4079
|
+
};
|
4080
|
+
commit?: {
|
4081
|
+
height?: any;
|
4082
|
+
round?: number;
|
4083
|
+
blockId?: {
|
4084
|
+
hash?: Uint8Array;
|
4085
|
+
partSetHeader?: {
|
4086
|
+
total?: number;
|
4087
|
+
hash?: Uint8Array;
|
4088
|
+
};
|
4089
|
+
};
|
4090
|
+
signatures?: {
|
4091
|
+
blockIdFlag?: import("../tendermint/types/types").BlockIDFlag;
|
4092
|
+
validatorAddress?: Uint8Array;
|
4093
|
+
timestamp?: Date;
|
4094
|
+
signature?: Uint8Array;
|
4095
|
+
}[];
|
4096
|
+
};
|
4097
|
+
};
|
4098
|
+
validatorSet?: {
|
4099
|
+
validators?: {
|
4100
|
+
address?: Uint8Array;
|
4101
|
+
pubKey?: {
|
4102
|
+
ed25519?: Uint8Array;
|
4103
|
+
secp256k1?: Uint8Array;
|
4104
|
+
};
|
4105
|
+
votingPower?: any;
|
4106
|
+
proposerPriority?: any;
|
4107
|
+
}[];
|
4108
|
+
proposer?: {
|
4109
|
+
address?: Uint8Array;
|
4110
|
+
pubKey?: {
|
4111
|
+
ed25519?: Uint8Array;
|
4112
|
+
secp256k1?: Uint8Array;
|
4113
|
+
};
|
4114
|
+
votingPower?: any;
|
4115
|
+
proposerPriority?: any;
|
4116
|
+
};
|
4117
|
+
totalVotingPower?: any;
|
4118
|
+
};
|
4119
|
+
trustedHeight?: {
|
4120
|
+
revisionNumber?: any;
|
4121
|
+
revisionHeight?: any;
|
4122
|
+
};
|
4123
|
+
trustedValidators?: {
|
4124
|
+
validators?: {
|
4125
|
+
address?: Uint8Array;
|
4126
|
+
pubKey?: {
|
4127
|
+
ed25519?: Uint8Array;
|
4128
|
+
secp256k1?: Uint8Array;
|
4129
|
+
};
|
4130
|
+
votingPower?: any;
|
4131
|
+
proposerPriority?: any;
|
4132
|
+
}[];
|
4133
|
+
proposer?: {
|
4134
|
+
address?: Uint8Array;
|
4135
|
+
pubKey?: {
|
4136
|
+
ed25519?: Uint8Array;
|
4137
|
+
secp256k1?: Uint8Array;
|
4138
|
+
};
|
4139
|
+
votingPower?: any;
|
4140
|
+
proposerPriority?: any;
|
4141
|
+
};
|
4142
|
+
totalVotingPower?: any;
|
4143
|
+
};
|
4144
|
+
}): _134.Header;
|
4145
|
+
};
|
4146
|
+
Fraction: {
|
4147
|
+
encode(message: _134.Fraction, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
4148
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _134.Fraction;
|
4149
|
+
fromJSON(object: any): _134.Fraction;
|
4150
|
+
toJSON(message: _134.Fraction): unknown;
|
4151
|
+
fromPartial(object: {
|
4152
|
+
numerator?: any;
|
4153
|
+
denominator?: any;
|
4154
|
+
}): _134.Fraction;
|
4155
|
+
};
|
4156
|
+
};
|
4157
|
+
}
|
4158
|
+
}
|
4159
|
+
const ClientFactory: {
|
4160
|
+
createRPCMsgClient: ({ rpc }: {
|
4161
|
+
rpc: import("@osmonauts/helpers").Rpc;
|
4162
|
+
}) => Promise<{
|
4163
|
+
cosmos: {
|
4164
|
+
authz: {
|
4165
|
+
v1beta1: import("../cosmos/authz/v1beta1/tx.rpc.msg").MsgClientImpl;
|
4166
|
+
};
|
4167
|
+
bank: {
|
4168
|
+
v1beta1: import("../cosmos/bank/v1beta1/tx.rpc.msg").MsgClientImpl;
|
4169
|
+
};
|
4170
|
+
crisis: {
|
4171
|
+
v1beta1: import("../cosmos/crisis/v1beta1/tx.rpc.msg").MsgClientImpl;
|
4172
|
+
};
|
4173
|
+
distribution: {
|
4174
|
+
v1beta1: import("../cosmos/distribution/v1beta1/tx.rpc.msg").MsgClientImpl;
|
4175
|
+
};
|
4176
|
+
evidence: {
|
4177
|
+
v1beta1: import("../cosmos/evidence/v1beta1/tx.rpc.msg").MsgClientImpl;
|
4178
|
+
};
|
4179
|
+
feegrant: {
|
4180
|
+
v1beta1: import("../cosmos/feegrant/v1beta1/tx.rpc.msg").MsgClientImpl;
|
4181
|
+
};
|
4182
|
+
gov: {
|
4183
|
+
v1: import("../cosmos/gov/v1/tx.rpc.msg").MsgClientImpl;
|
4184
|
+
v1beta1: import("../cosmos/gov/v1beta1/tx.rpc.msg").MsgClientImpl;
|
4185
|
+
};
|
4186
|
+
group: {
|
4187
|
+
v1: import("../cosmos/group/v1/tx.rpc.msg").MsgClientImpl;
|
4188
|
+
};
|
4189
|
+
nft: {
|
4190
|
+
v1beta1: import("../cosmos/nft/v1beta1/tx.rpc.msg").MsgClientImpl;
|
4191
|
+
};
|
4192
|
+
slashing: {
|
4193
|
+
v1beta1: import("../cosmos/slashing/v1beta1/tx.rpc.msg").MsgClientImpl;
|
4194
|
+
};
|
4195
|
+
staking: {
|
4196
|
+
v1beta1: import("../cosmos/staking/v1beta1/tx.rpc.msg").MsgClientImpl;
|
4197
|
+
};
|
4198
|
+
upgrade: {
|
4199
|
+
v1beta1: import("../cosmos/upgrade/v1beta1/tx.rpc.msg").MsgClientImpl;
|
4200
|
+
};
|
4201
|
+
vesting: {
|
4202
|
+
v1beta1: import("../cosmos/vesting/v1beta1/tx.rpc.msg").MsgClientImpl;
|
4203
|
+
};
|
4204
|
+
};
|
4205
|
+
ibc: {
|
4206
|
+
applications: {
|
4207
|
+
transfer: {
|
4208
|
+
v1: _246.MsgClientImpl;
|
4209
|
+
};
|
4210
|
+
};
|
4211
|
+
core: {
|
4212
|
+
channel: {
|
4213
|
+
v1: _247.MsgClientImpl;
|
4214
|
+
};
|
4215
|
+
client: {
|
4216
|
+
v1: _248.MsgClientImpl;
|
4217
|
+
};
|
4218
|
+
connection: {
|
4219
|
+
v1: _249.MsgClientImpl;
|
4220
|
+
};
|
4221
|
+
};
|
4222
|
+
};
|
4223
|
+
}>;
|
4224
|
+
createRPCQueryClient: ({ rpc }: {
|
4225
|
+
rpc: import("@osmonauts/helpers").Rpc;
|
4226
|
+
}) => Promise<{
|
4227
|
+
cosmos: {
|
4228
|
+
app: {
|
4229
|
+
v1alpha1: import("../cosmos/app/v1alpha1/query.rpc.query").QueryClientImpl;
|
4230
|
+
};
|
4231
|
+
auth: {
|
4232
|
+
v1beta1: import("../cosmos/auth/v1beta1/query.rpc.query").QueryClientImpl;
|
4233
|
+
};
|
4234
|
+
authz: {
|
4235
|
+
v1beta1: import("../cosmos/authz/v1beta1/query.rpc.query").QueryClientImpl;
|
4236
|
+
};
|
4237
|
+
bank: {
|
4238
|
+
v1beta1: import("../cosmos/bank/v1beta1/query.rpc.query").QueryClientImpl;
|
4239
|
+
};
|
4240
|
+
distribution: {
|
4241
|
+
v1beta1: import("../cosmos/distribution/v1beta1/query.rpc.query").QueryClientImpl;
|
4242
|
+
};
|
4243
|
+
evidence: {
|
4244
|
+
v1beta1: import("../cosmos/evidence/v1beta1/query.rpc.query").QueryClientImpl;
|
4245
|
+
};
|
4246
|
+
feegrant: {
|
4247
|
+
v1beta1: import("../cosmos/feegrant/v1beta1/query.rpc.query").QueryClientImpl;
|
4248
|
+
};
|
4249
|
+
gov: {
|
4250
|
+
v1: import("../cosmos/gov/v1/query.rpc.query").QueryClientImpl;
|
4251
|
+
v1beta1: import("../cosmos/gov/v1beta1/query.rpc.query").QueryClientImpl;
|
4252
|
+
};
|
4253
|
+
group: {
|
4254
|
+
v1: import("../cosmos/group/v1/query.rpc.query").QueryClientImpl;
|
4255
|
+
};
|
4256
|
+
mint: {
|
4257
|
+
v1beta1: import("../cosmos/mint/v1beta1/query.rpc.query").QueryClientImpl;
|
4258
|
+
};
|
4259
|
+
nft: {
|
4260
|
+
v1beta1: import("../cosmos/nft/v1beta1/query.rpc.query").QueryClientImpl;
|
4261
|
+
};
|
4262
|
+
params: {
|
4263
|
+
v1beta1: import("../cosmos/params/v1beta1/query.rpc.query").QueryClientImpl;
|
4264
|
+
};
|
4265
|
+
slashing: {
|
4266
|
+
v1beta1: import("../cosmos/slashing/v1beta1/query.rpc.query").QueryClientImpl;
|
4267
|
+
};
|
4268
|
+
staking: {
|
4269
|
+
v1beta1: import("../cosmos/staking/v1beta1/query.rpc.query").QueryClientImpl;
|
4270
|
+
};
|
4271
|
+
upgrade: {
|
4272
|
+
v1beta1: import("../cosmos/upgrade/v1beta1/query.rpc.query").QueryClientImpl;
|
4273
|
+
};
|
4274
|
+
};
|
4275
|
+
ibc: {
|
4276
|
+
applications: {
|
4277
|
+
transfer: {
|
4278
|
+
v1: _241.QueryClientImpl;
|
4279
|
+
};
|
4280
|
+
};
|
4281
|
+
core: {
|
4282
|
+
channel: {
|
4283
|
+
v1: _242.QueryClientImpl;
|
4284
|
+
};
|
4285
|
+
client: {
|
4286
|
+
v1: _243.QueryClientImpl;
|
4287
|
+
};
|
4288
|
+
connection: {
|
4289
|
+
v1: _244.QueryClientImpl;
|
4290
|
+
};
|
4291
|
+
port: {
|
4292
|
+
v1: _245.QueryClientImpl;
|
4293
|
+
};
|
4294
|
+
};
|
4295
|
+
};
|
4296
|
+
}>;
|
4297
|
+
createLCDClient: ({ restEndpoint }: {
|
4298
|
+
restEndpoint: any;
|
4299
|
+
}) => Promise<{
|
4300
|
+
cosmos: {
|
4301
|
+
auth: {
|
4302
|
+
v1beta1: import("../cosmos/auth/v1beta1/query.lcd").LCDQueryClient;
|
4303
|
+
};
|
4304
|
+
authz: {
|
4305
|
+
v1beta1: import("../cosmos/authz/v1beta1/query.lcd").LCDQueryClient;
|
4306
|
+
};
|
4307
|
+
bank: {
|
4308
|
+
v1beta1: import("../cosmos/bank/v1beta1/query.lcd").LCDQueryClient;
|
4309
|
+
};
|
4310
|
+
distribution: {
|
4311
|
+
v1beta1: import("../cosmos/distribution/v1beta1/query.lcd").LCDQueryClient;
|
4312
|
+
};
|
4313
|
+
evidence: {
|
4314
|
+
v1beta1: import("../cosmos/evidence/v1beta1/query.lcd").LCDQueryClient;
|
4315
|
+
};
|
4316
|
+
feegrant: {
|
4317
|
+
v1beta1: import("../cosmos/feegrant/v1beta1/query.lcd").LCDQueryClient;
|
4318
|
+
};
|
4319
|
+
gov: {
|
4320
|
+
v1: import("../cosmos/gov/v1/query.lcd").LCDQueryClient;
|
4321
|
+
v1beta1: import("../cosmos/gov/v1beta1/query.lcd").LCDQueryClient;
|
4322
|
+
};
|
4323
|
+
group: {
|
4324
|
+
v1: import("../cosmos/group/v1/query.lcd").LCDQueryClient;
|
4325
|
+
};
|
4326
|
+
mint: {
|
4327
|
+
v1beta1: import("../cosmos/mint/v1beta1/query.lcd").LCDQueryClient;
|
4328
|
+
};
|
4329
|
+
nft: {
|
4330
|
+
v1beta1: import("../cosmos/nft/v1beta1/query.lcd").LCDQueryClient;
|
4331
|
+
};
|
4332
|
+
params: {
|
4333
|
+
v1beta1: import("../cosmos/params/v1beta1/query.lcd").LCDQueryClient;
|
4334
|
+
};
|
4335
|
+
slashing: {
|
4336
|
+
v1beta1: import("../cosmos/slashing/v1beta1/query.lcd").LCDQueryClient;
|
4337
|
+
};
|
4338
|
+
staking: {
|
4339
|
+
v1beta1: import("../cosmos/staking/v1beta1/query.lcd").LCDQueryClient;
|
4340
|
+
};
|
4341
|
+
upgrade: {
|
4342
|
+
v1beta1: import("../cosmos/upgrade/v1beta1/query.lcd").LCDQueryClient;
|
4343
|
+
};
|
4344
|
+
};
|
4345
|
+
ibc: {
|
4346
|
+
applications: {
|
4347
|
+
transfer: {
|
4348
|
+
v1: _237.LCDQueryClient;
|
4349
|
+
};
|
4350
|
+
};
|
4351
|
+
core: {
|
4352
|
+
channel: {
|
4353
|
+
v1: _238.LCDQueryClient;
|
4354
|
+
};
|
4355
|
+
client: {
|
4356
|
+
v1: _239.LCDQueryClient;
|
4357
|
+
};
|
4358
|
+
connection: {
|
4359
|
+
v1: _240.LCDQueryClient;
|
4360
|
+
};
|
4361
|
+
};
|
4362
|
+
};
|
4363
|
+
}>;
|
4364
|
+
};
|
4365
|
+
}
|