@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
- package/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +19 -0
- package/cosmos/auth/module/v1/module.d.ts +72 -12
- package/cosmos/auth/module/v1/module.js +25 -1
- package/cosmos/auth/v1beta1/auth.d.ts +68 -10
- package/cosmos/auth/v1beta1/auth.js +26 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +334 -92
- package/cosmos/auth/v1beta1/query.js +120 -0
- package/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
- package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/cosmos/auth/v1beta1/tx.d.ts +31 -10
- package/cosmos/auth/v1beta1/tx.js +13 -0
- package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +6 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +36 -0
- package/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +13 -8
- package/cosmos/bank/v1beta1/authz.js +7 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -34
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
- package/cosmos/bank/v1beta1/genesis.js +13 -0
- package/cosmos/bank/v1beta1/query.d.ts +599 -138
- package/cosmos/bank/v1beta1/query.js +179 -0
- package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
- package/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
- package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
- package/cosmos/bank/v1beta1/tx.d.ts +143 -30
- package/cosmos/bank/v1beta1/tx.js +53 -0
- package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/benchmark/module/v1/module.d.ts +102 -26
- package/cosmos/benchmark/module/v1/module.js +12 -0
- package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
- package/cosmos/benchmark/v1/benchmark.js +6 -0
- package/cosmos/benchmark/v1/tx.d.ts +36 -4
- package/cosmos/benchmark/v1/tx.js +12 -0
- package/cosmos/bundle.d.ts +2283 -2421
- package/cosmos/bundle.js +242 -261
- package/cosmos/circuit/module/v1/module.d.ts +24 -4
- package/cosmos/circuit/module/v1/module.js +6 -0
- package/cosmos/circuit/v1/query.d.ts +120 -16
- package/cosmos/circuit/v1/query.js +36 -0
- package/cosmos/circuit/v1/tx.d.ts +126 -18
- package/cosmos/circuit/v1/tx.js +36 -0
- package/cosmos/circuit/v1/types.d.ts +55 -6
- package/cosmos/circuit/v1/types.js +19 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +12 -0
- package/cosmos/consensus/v1/tx.d.ts +37 -6
- package/cosmos/consensus/v1/tx.js +13 -0
- package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/cosmos/counter/module/v1/module.d.ts +24 -4
- package/cosmos/counter/module/v1/module.js +6 -0
- package/cosmos/counter/v1/query.d.ts +36 -4
- package/cosmos/counter/v1/query.js +12 -0
- package/cosmos/counter/v1/tx.d.ts +54 -10
- package/cosmos/counter/v1/tx.js +12 -0
- package/cosmos/crisis/module/v1/module.d.ts +30 -6
- package/cosmos/crisis/module/v1/module.js +6 -0
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
- package/cosmos/crypto/hd/v1/hd.js +6 -0
- package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
- package/cosmos/crypto/keyring/v1/record.js +31 -0
- package/cosmos/crypto/multisig/keys.d.ts +14 -0
- package/cosmos/crypto/multisig/keys.js +8 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +136 -0
- package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
- package/cosmos/distribution/v1beta1/tx.js +97 -0
- package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
- package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/cosmos/epochs/module/v1/module.d.ts +18 -2
- package/cosmos/epochs/module/v1/module.js +6 -0
- package/cosmos/epochs/v1beta1/events.d.ts +36 -4
- package/cosmos/epochs/v1beta1/events.js +12 -0
- package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
- package/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/cosmos/epochs/v1beta1/query.d.ts +52 -0
- package/cosmos/epochs/v1beta1/query.js +28 -0
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
- package/cosmos/feegrant/v1beta1/query.js +36 -0
- package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
- package/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/genutil/module/v1/module.d.ts +18 -2
- package/cosmos/genutil/module/v1/module.js +6 -0
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -24
- package/cosmos/gov/v1/genesis.js +6 -0
- package/cosmos/gov/v1/gov.d.ts +341 -124
- package/cosmos/gov/v1/gov.js +59 -0
- package/cosmos/gov/v1/query.d.ts +469 -92
- package/cosmos/gov/v1/query.js +109 -0
- package/cosmos/gov/v1/tx.d.ts +368 -93
- package/cosmos/gov/v1/tx.js +88 -0
- package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +6 -0
- package/cosmos/gov/v1beta1/gov.d.ts +291 -69
- package/cosmos/gov/v1beta1/gov.js +57 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/tx.d.ts +209 -45
- package/cosmos/gov/v1beta1/tx.js +49 -0
- package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/group/module/v1/module.d.ts +18 -2
- package/cosmos/group/module/v1/module.js +6 -0
- package/cosmos/group/v1/events.d.ts +300 -56
- package/cosmos/group/v1/events.js +66 -0
- package/cosmos/group/v1/genesis.d.ts +48 -12
- package/cosmos/group/v1/genesis.js +6 -0
- package/cosmos/group/v1/query.d.ts +768 -152
- package/cosmos/group/v1/query.js +168 -0
- package/cosmos/group/v1/query.lcd.js +1 -3
- package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
- package/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/cosmos/group/v1/tx.d.ts +804 -163
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/types.d.ts +398 -91
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +6 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +39 -0
- package/cosmos/mint/v1beta1/tx.d.ts +31 -10
- package/cosmos/mint/v1beta1/tx.js +13 -0
- package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/nft/module/v1/module.d.ts +18 -2
- package/cosmos/nft/module/v1/module.js +6 -0
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +13 -0
- package/cosmos/params/v1beta1/query.d.ts +93 -22
- package/cosmos/params/v1beta1/query.js +33 -0
- package/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
- package/cosmos/protocolpool/module/v1/module.js +6 -0
- package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
- package/cosmos/protocolpool/v1/genesis.js +6 -0
- package/cosmos/protocolpool/v1/query.d.ts +138 -12
- package/cosmos/protocolpool/v1/query.js +54 -0
- package/cosmos/protocolpool/v1/tx.d.ts +217 -30
- package/cosmos/protocolpool/v1/tx.js +67 -0
- package/cosmos/protocolpool/v1/types.d.ts +54 -10
- package/cosmos/protocolpool/v1/types.js +12 -0
- package/cosmos/reflection/v1/reflection.d.ts +42 -6
- package/cosmos/reflection/v1/reflection.js +12 -0
- package/cosmos/rpc.query.d.ts +1 -9
- package/cosmos/rpc.query.js +0 -5
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +43 -15
- package/cosmos/staking/v1beta1/authz.js +13 -5
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +12 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/staking.d.ts +631 -121
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +234 -42
- package/cosmos/staking/v1beta1/tx.js +88 -0
- package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
- package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
- package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
- package/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
- package/cosmos/store/streaming/abci/grpc.js +24 -0
- package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
- package/cosmos/store/v1beta1/commit_info.js +21 -0
- package/cosmos/store/v1beta1/listening.d.ts +45 -10
- package/cosmos/store/v1beta1/listening.js +15 -0
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +355 -94
- package/cosmos/tx/v1beta1/service.js +125 -0
- package/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
- package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/cosmos/tx/v1beta1/tx.d.ts +371 -80
- package/cosmos/tx/v1beta1/tx.js +118 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
- package/cosmos/upgrade/v1beta1/query.js +70 -0
- package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
- package/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
- package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/cosmos/vesting/module/v1/module.d.ts +18 -2
- package/cosmos/vesting/module/v1/module.js +6 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
- package/cosmos/vesting/v1beta1/tx.js +40 -0
- package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
- package/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/esm/cosmos/app/v1alpha1/module.js +19 -0
- package/esm/cosmos/auth/module/v1/module.js +25 -1
- package/esm/cosmos/auth/v1beta1/auth.js +26 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +120 -0
- package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/esm/cosmos/auth/v1beta1/tx.js +13 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
- package/esm/cosmos/authz/v1beta1/query.js +36 -0
- package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +7 -0
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
- package/esm/cosmos/bank/v1beta1/query.js +179 -0
- package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
- package/esm/cosmos/bank/v1beta1/tx.js +53 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/benchmark/module/v1/module.js +12 -0
- package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
- package/esm/cosmos/benchmark/v1/tx.js +12 -0
- package/esm/cosmos/bundle.js +242 -261
- package/esm/cosmos/circuit/module/v1/module.js +6 -0
- package/esm/cosmos/circuit/v1/query.js +36 -0
- package/esm/cosmos/circuit/v1/tx.js +36 -0
- package/esm/cosmos/circuit/v1/types.js +19 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +12 -0
- package/esm/cosmos/consensus/v1/tx.js +13 -0
- package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/counter/module/v1/module.js +6 -0
- package/esm/cosmos/counter/v1/query.js +12 -0
- package/esm/cosmos/counter/v1/tx.js +12 -0
- package/esm/cosmos/crisis/module/v1/module.js +6 -0
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
- package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
- package/esm/cosmos/crypto/multisig/keys.js +8 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/esm/cosmos/distribution/v1beta1/query.js +136 -0
- package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/esm/cosmos/epochs/module/v1/module.js +6 -0
- package/esm/cosmos/epochs/v1beta1/events.js +12 -0
- package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/esm/cosmos/epochs/v1beta1/query.js +28 -0
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
- package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/genutil/module/v1/module.js +6 -0
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +6 -0
- package/esm/cosmos/gov/v1/gov.js +59 -0
- package/esm/cosmos/gov/v1/query.js +109 -0
- package/esm/cosmos/gov/v1/tx.js +88 -0
- package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
- package/esm/cosmos/gov/v1beta1/gov.js +57 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/tx.js +49 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/group/module/v1/module.js +6 -0
- package/esm/cosmos/group/v1/events.js +66 -0
- package/esm/cosmos/group/v1/genesis.js +6 -0
- package/esm/cosmos/group/v1/query.js +168 -0
- package/esm/cosmos/group/v1/query.lcd.js +1 -3
- package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +39 -0
- package/esm/cosmos/mint/v1beta1/tx.js +13 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/nft/module/v1/module.js +6 -0
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +13 -0
- package/esm/cosmos/params/v1beta1/query.js +33 -0
- package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
- package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
- package/esm/cosmos/protocolpool/v1/query.js +54 -0
- package/esm/cosmos/protocolpool/v1/tx.js +67 -0
- package/esm/cosmos/protocolpool/v1/types.js +12 -0
- package/esm/cosmos/reflection/v1/reflection.js +12 -0
- package/esm/cosmos/rpc.query.js +0 -5
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +13 -5
- package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +88 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
- package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
- package/esm/cosmos/store/v1beta1/listening.js +15 -0
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +125 -0
- package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/esm/cosmos/tx/v1beta1/tx.js +119 -1
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
- package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/esm/cosmos/vesting/module/v1/module.js +6 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/gogoproto/bundle.js +2 -2
- package/esm/google/api/http.js +283 -0
- package/esm/google/bundle.js +7 -7
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +220 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
- package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
- package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
- package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
- package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
- package/esm/ibc/applications/transfer/v1/authz.js +13 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
- package/esm/ibc/applications/transfer/v1/packet.js +8 -0
- package/esm/ibc/applications/transfer/v1/query.js +78 -0
- package/esm/ibc/applications/transfer/v1/token.js +18 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
- package/esm/ibc/applications/transfer/v1/tx.js +40 -1
- package/esm/ibc/bundle.js +196 -173
- package/esm/ibc/client.js +4 -1
- package/esm/ibc/core/channel/v1/channel.js +64 -0
- package/esm/ibc/core/channel/v1/genesis.js +13 -0
- package/esm/ibc/core/channel/v1/query.js +197 -0
- package/esm/ibc/core/channel/v1/tx.js +129 -0
- package/esm/ibc/core/channel/v2/genesis.js +21 -0
- package/esm/ibc/core/channel/v2/packet.js +29 -0
- package/esm/ibc/core/channel/v2/query.js +100 -0
- package/esm/ibc/core/channel/v2/tx.js +48 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/genesis.js +20 -0
- package/esm/ibc/core/client/v1/query.js +154 -0
- package/esm/ibc/core/client/v1/tx.amino.js +1 -6
- package/esm/ibc/core/client/v1/tx.js +86 -151
- package/esm/ibc/core/client/v1/tx.registry.js +2 -20
- package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
- package/esm/ibc/core/client/v2/config.js +9 -0
- package/esm/ibc/core/client/v2/counterparty.js +6 -0
- package/esm/ibc/core/client/v2/genesis.js +12 -0
- package/esm/ibc/core/client/v2/query.js +26 -0
- package/esm/ibc/core/client/v2/tx.js +24 -0
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/commitment/v2/commitment.js +36 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/genesis.js +6 -0
- package/esm/ibc/core/connection/v1/query.js +83 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/lcd.js +5 -0
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
- package/esm/ibc/rpc.query.js +3 -5
- package/esm/ibc/rpc.tx.js +3 -0
- package/esm/index.js +1 -1
- package/esm/sparkdream/blog/module/v1/module.js +6 -0
- package/esm/sparkdream/blog/v1/genesis.js +6 -0
- package/esm/sparkdream/blog/v1/params.js +6 -0
- package/esm/sparkdream/blog/v1/post.js +6 -0
- package/esm/sparkdream/blog/v1/query.js +36 -0
- package/esm/sparkdream/blog/v1/tx.js +49 -0
- package/esm/sparkdream/bundle.js +41 -41
- package/esm/sparkdream/rpc.query.js +0 -5
- package/esm/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/esm/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/esm/sparkdream/sparkdream/v1/params.js +6 -0
- package/esm/sparkdream/sparkdream/v1/query.js +12 -0
- package/esm/sparkdream/sparkdream/v1/tx.js +13 -0
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +18 -18
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/p2p/types.js +20 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/gogoproto/bundle.js +2 -2
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/bundle.d.ts +418 -418
- package/google/bundle.js +7 -7
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +738 -90
- package/google/protobuf/descriptor.js +220 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
- package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
- package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
- package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
- package/ibc/applications/rate_limiting/v1/query.js +906 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
- package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
- package/ibc/applications/rate_limiting/v1/tx.js +729 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +13 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
- package/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
- package/ibc/applications/transfer/v1/genesis.js +6 -0
- package/ibc/applications/transfer/v1/packet.d.ts +44 -10
- package/ibc/applications/transfer/v1/packet.js +8 -0
- package/ibc/applications/transfer/v1/query.d.ts +252 -34
- package/ibc/applications/transfer/v1/query.js +78 -0
- package/ibc/applications/transfer/v1/token.d.ts +78 -14
- package/ibc/applications/transfer/v1/token.js +18 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
- package/ibc/applications/transfer/v1/transfer.js +9 -0
- package/ibc/applications/transfer/v1/tx.d.ts +135 -22
- package/ibc/applications/transfer/v1/tx.js +40 -1
- package/ibc/bundle.d.ts +3830 -3396
- package/ibc/bundle.js +196 -173
- package/ibc/client.d.ts +20 -5
- package/ibc/client.js +4 -1
- package/ibc/core/channel/v1/channel.d.ts +292 -60
- package/ibc/core/channel/v1/channel.js +64 -0
- package/ibc/core/channel/v1/genesis.d.ts +37 -4
- package/ibc/core/channel/v1/genesis.js +13 -0
- package/ibc/core/channel/v1/query.d.ts +839 -158
- package/ibc/core/channel/v1/query.js +197 -0
- package/ibc/core/channel/v1/tx.d.ts +335 -30
- package/ibc/core/channel/v1/tx.js +129 -0
- package/ibc/core/channel/v2/genesis.d.ts +81 -14
- package/ibc/core/channel/v2/genesis.js +21 -0
- package/ibc/core/channel/v2/packet.d.ts +137 -28
- package/ibc/core/channel/v2/packet.js +29 -0
- package/ibc/core/channel/v2/query.d.ts +490 -98
- package/ibc/core/channel/v2/query.js +100 -0
- package/ibc/core/channel/v2/tx.d.ts +144 -16
- package/ibc/core/channel/v2/tx.js +48 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/genesis.d.ts +82 -16
- package/ibc/core/client/v1/genesis.js +20 -0
- package/ibc/core/client/v1/query.d.ts +508 -74
- package/ibc/core/client/v1/query.js +154 -0
- package/ibc/core/client/v1/tx.amino.d.ts +1 -6
- package/ibc/core/client/v1/tx.amino.js +0 -5
- package/ibc/core/client/v1/tx.d.ts +336 -138
- package/ibc/core/client/v1/tx.js +87 -152
- package/ibc/core/client/v1/tx.registry.d.ts +1 -13
- package/ibc/core/client/v1/tx.registry.js +1 -19
- package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
- package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
- package/ibc/core/client/v2/config.d.ts +21 -2
- package/ibc/core/client/v2/config.js +9 -0
- package/ibc/core/client/v2/counterparty.d.ts +30 -6
- package/ibc/core/client/v2/counterparty.js +6 -0
- package/ibc/core/client/v2/genesis.d.ts +54 -10
- package/ibc/core/client/v2/genesis.js +12 -0
- package/ibc/core/client/v2/query.d.ts +74 -8
- package/ibc/core/client/v2/query.js +26 -0
- package/ibc/core/client/v2/tx.d.ts +108 -20
- package/ibc/core/client/v2/tx.js +24 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/commitment/v2/commitment.d.ts +42 -0
- package/ibc/core/commitment/v2/commitment.js +36 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +6 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +83 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/lcd.d.ts +3 -0
- package/ibc/lcd.js +5 -0
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
- package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
- package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
- package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +24 -0
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
- package/ibc/lightclients/wasm/v1/wasm.js +19 -74
- package/ibc/rpc.query.d.ts +11 -9
- package/ibc/rpc.query.js +3 -5
- package/ibc/rpc.tx.d.ts +3 -0
- package/ibc/rpc.tx.js +3 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/sparkdream/blog/module/v1/module.d.ts +18 -2
- package/sparkdream/blog/module/v1/module.js +6 -0
- package/sparkdream/blog/v1/genesis.d.ts +24 -4
- package/sparkdream/blog/v1/genesis.js +6 -0
- package/sparkdream/blog/v1/params.d.ts +18 -2
- package/sparkdream/blog/v1/params.js +6 -0
- package/sparkdream/blog/v1/post.d.ts +18 -2
- package/sparkdream/blog/v1/post.js +6 -0
- package/sparkdream/blog/v1/query.d.ts +114 -14
- package/sparkdream/blog/v1/query.js +36 -0
- package/sparkdream/blog/v1/tx.d.ts +151 -18
- package/sparkdream/blog/v1/tx.js +49 -0
- package/sparkdream/bundle.d.ts +302 -310
- package/sparkdream/bundle.js +41 -41
- package/sparkdream/rpc.query.d.ts +1 -9
- package/sparkdream/rpc.query.js +0 -5
- package/sparkdream/sparkdream/module/v1/module.d.ts +18 -2
- package/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/sparkdream/sparkdream/v1/genesis.d.ts +24 -4
- package/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/sparkdream/sparkdream/v1/params.d.ts +18 -2
- package/sparkdream/sparkdream/v1/params.js +6 -0
- package/sparkdream/sparkdream/v1/query.d.ts +42 -6
- package/sparkdream/sparkdream/v1/query.js +12 -0
- package/sparkdream/sparkdream/v1/tx.d.ts +37 -4
- package/sparkdream/sparkdream/v1/tx.js +13 -0
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +18 -18
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +20 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
- package/cosmos/orm/module/v1alpha1/module.js +0 -62
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
- package/cosmos/orm/query/v1alpha1/query.js +0 -695
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
|
@@ -7,9 +7,14 @@ import { DeepPartial } from "../../../../helpers";
|
|
|
7
7
|
/**
|
|
8
8
|
* QueryClientStateRequest is the request type for the Query/ClientState RPC
|
|
9
9
|
* method
|
|
10
|
+
* @name QueryClientStateRequest
|
|
11
|
+
* @package ibc.core.client.v1
|
|
12
|
+
* @see proto type: ibc.core.client.v1.QueryClientStateRequest
|
|
10
13
|
*/
|
|
11
14
|
export interface QueryClientStateRequest {
|
|
12
|
-
/**
|
|
15
|
+
/**
|
|
16
|
+
* client state unique identifier
|
|
17
|
+
*/
|
|
13
18
|
clientId: string;
|
|
14
19
|
}
|
|
15
20
|
export interface QueryClientStateRequestProtoMsg {
|
|
@@ -19,9 +24,14 @@ export interface QueryClientStateRequestProtoMsg {
|
|
|
19
24
|
/**
|
|
20
25
|
* QueryClientStateRequest is the request type for the Query/ClientState RPC
|
|
21
26
|
* method
|
|
27
|
+
* @name QueryClientStateRequestAmino
|
|
28
|
+
* @package ibc.core.client.v1
|
|
29
|
+
* @see proto type: ibc.core.client.v1.QueryClientStateRequest
|
|
22
30
|
*/
|
|
23
31
|
export interface QueryClientStateRequestAmino {
|
|
24
|
-
/**
|
|
32
|
+
/**
|
|
33
|
+
* client state unique identifier
|
|
34
|
+
*/
|
|
25
35
|
client_id?: string;
|
|
26
36
|
}
|
|
27
37
|
export interface QueryClientStateRequestAminoMsg {
|
|
@@ -32,13 +42,22 @@ export interface QueryClientStateRequestAminoMsg {
|
|
|
32
42
|
* QueryClientStateResponse is the response type for the Query/ClientState RPC
|
|
33
43
|
* method. Besides the client state, it includes a proof and the height from
|
|
34
44
|
* which the proof was retrieved.
|
|
45
|
+
* @name QueryClientStateResponse
|
|
46
|
+
* @package ibc.core.client.v1
|
|
47
|
+
* @see proto type: ibc.core.client.v1.QueryClientStateResponse
|
|
35
48
|
*/
|
|
36
49
|
export interface QueryClientStateResponse {
|
|
37
|
-
/**
|
|
50
|
+
/**
|
|
51
|
+
* client state associated with the request identifier
|
|
52
|
+
*/
|
|
38
53
|
clientState?: Any;
|
|
39
|
-
/**
|
|
54
|
+
/**
|
|
55
|
+
* merkle proof of existence
|
|
56
|
+
*/
|
|
40
57
|
proof: Uint8Array;
|
|
41
|
-
/**
|
|
58
|
+
/**
|
|
59
|
+
* height at which the proof was retrieved
|
|
60
|
+
*/
|
|
42
61
|
proofHeight: Height;
|
|
43
62
|
}
|
|
44
63
|
export interface QueryClientStateResponseProtoMsg {
|
|
@@ -49,13 +68,22 @@ export interface QueryClientStateResponseProtoMsg {
|
|
|
49
68
|
* QueryClientStateResponse is the response type for the Query/ClientState RPC
|
|
50
69
|
* method. Besides the client state, it includes a proof and the height from
|
|
51
70
|
* which the proof was retrieved.
|
|
71
|
+
* @name QueryClientStateResponseAmino
|
|
72
|
+
* @package ibc.core.client.v1
|
|
73
|
+
* @see proto type: ibc.core.client.v1.QueryClientStateResponse
|
|
52
74
|
*/
|
|
53
75
|
export interface QueryClientStateResponseAmino {
|
|
54
|
-
/**
|
|
76
|
+
/**
|
|
77
|
+
* client state associated with the request identifier
|
|
78
|
+
*/
|
|
55
79
|
client_state?: AnyAmino;
|
|
56
|
-
/**
|
|
80
|
+
/**
|
|
81
|
+
* merkle proof of existence
|
|
82
|
+
*/
|
|
57
83
|
proof?: string;
|
|
58
|
-
/**
|
|
84
|
+
/**
|
|
85
|
+
* height at which the proof was retrieved
|
|
86
|
+
*/
|
|
59
87
|
proof_height?: HeightAmino;
|
|
60
88
|
}
|
|
61
89
|
export interface QueryClientStateResponseAminoMsg {
|
|
@@ -65,9 +93,14 @@ export interface QueryClientStateResponseAminoMsg {
|
|
|
65
93
|
/**
|
|
66
94
|
* QueryClientStatesRequest is the request type for the Query/ClientStates RPC
|
|
67
95
|
* method
|
|
96
|
+
* @name QueryClientStatesRequest
|
|
97
|
+
* @package ibc.core.client.v1
|
|
98
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatesRequest
|
|
68
99
|
*/
|
|
69
100
|
export interface QueryClientStatesRequest {
|
|
70
|
-
/**
|
|
101
|
+
/**
|
|
102
|
+
* pagination request
|
|
103
|
+
*/
|
|
71
104
|
pagination?: PageRequest;
|
|
72
105
|
}
|
|
73
106
|
export interface QueryClientStatesRequestProtoMsg {
|
|
@@ -77,9 +110,14 @@ export interface QueryClientStatesRequestProtoMsg {
|
|
|
77
110
|
/**
|
|
78
111
|
* QueryClientStatesRequest is the request type for the Query/ClientStates RPC
|
|
79
112
|
* method
|
|
113
|
+
* @name QueryClientStatesRequestAmino
|
|
114
|
+
* @package ibc.core.client.v1
|
|
115
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatesRequest
|
|
80
116
|
*/
|
|
81
117
|
export interface QueryClientStatesRequestAmino {
|
|
82
|
-
/**
|
|
118
|
+
/**
|
|
119
|
+
* pagination request
|
|
120
|
+
*/
|
|
83
121
|
pagination?: PageRequestAmino;
|
|
84
122
|
}
|
|
85
123
|
export interface QueryClientStatesRequestAminoMsg {
|
|
@@ -89,11 +127,18 @@ export interface QueryClientStatesRequestAminoMsg {
|
|
|
89
127
|
/**
|
|
90
128
|
* QueryClientStatesResponse is the response type for the Query/ClientStates RPC
|
|
91
129
|
* method.
|
|
130
|
+
* @name QueryClientStatesResponse
|
|
131
|
+
* @package ibc.core.client.v1
|
|
132
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatesResponse
|
|
92
133
|
*/
|
|
93
134
|
export interface QueryClientStatesResponse {
|
|
94
|
-
/**
|
|
135
|
+
/**
|
|
136
|
+
* list of stored ClientStates of the chain.
|
|
137
|
+
*/
|
|
95
138
|
clientStates: IdentifiedClientState[];
|
|
96
|
-
/**
|
|
139
|
+
/**
|
|
140
|
+
* pagination response
|
|
141
|
+
*/
|
|
97
142
|
pagination?: PageResponse;
|
|
98
143
|
}
|
|
99
144
|
export interface QueryClientStatesResponseProtoMsg {
|
|
@@ -103,11 +148,18 @@ export interface QueryClientStatesResponseProtoMsg {
|
|
|
103
148
|
/**
|
|
104
149
|
* QueryClientStatesResponse is the response type for the Query/ClientStates RPC
|
|
105
150
|
* method.
|
|
151
|
+
* @name QueryClientStatesResponseAmino
|
|
152
|
+
* @package ibc.core.client.v1
|
|
153
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatesResponse
|
|
106
154
|
*/
|
|
107
155
|
export interface QueryClientStatesResponseAmino {
|
|
108
|
-
/**
|
|
156
|
+
/**
|
|
157
|
+
* list of stored ClientStates of the chain.
|
|
158
|
+
*/
|
|
109
159
|
client_states?: IdentifiedClientStateAmino[];
|
|
110
|
-
/**
|
|
160
|
+
/**
|
|
161
|
+
* pagination response
|
|
162
|
+
*/
|
|
111
163
|
pagination?: PageResponseAmino;
|
|
112
164
|
}
|
|
113
165
|
export interface QueryClientStatesResponseAminoMsg {
|
|
@@ -118,13 +170,22 @@ export interface QueryClientStatesResponseAminoMsg {
|
|
|
118
170
|
* QueryConsensusStateRequest is the request type for the Query/ConsensusState
|
|
119
171
|
* RPC method. Besides the consensus state, it includes a proof and the height
|
|
120
172
|
* from which the proof was retrieved.
|
|
173
|
+
* @name QueryConsensusStateRequest
|
|
174
|
+
* @package ibc.core.client.v1
|
|
175
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateRequest
|
|
121
176
|
*/
|
|
122
177
|
export interface QueryConsensusStateRequest {
|
|
123
|
-
/**
|
|
178
|
+
/**
|
|
179
|
+
* client identifier
|
|
180
|
+
*/
|
|
124
181
|
clientId: string;
|
|
125
|
-
/**
|
|
182
|
+
/**
|
|
183
|
+
* consensus state revision number
|
|
184
|
+
*/
|
|
126
185
|
revisionNumber: bigint;
|
|
127
|
-
/**
|
|
186
|
+
/**
|
|
187
|
+
* consensus state revision height
|
|
188
|
+
*/
|
|
128
189
|
revisionHeight: bigint;
|
|
129
190
|
/**
|
|
130
191
|
* latest_height overrides the height field and queries the latest stored
|
|
@@ -140,13 +201,22 @@ export interface QueryConsensusStateRequestProtoMsg {
|
|
|
140
201
|
* QueryConsensusStateRequest is the request type for the Query/ConsensusState
|
|
141
202
|
* RPC method. Besides the consensus state, it includes a proof and the height
|
|
142
203
|
* from which the proof was retrieved.
|
|
204
|
+
* @name QueryConsensusStateRequestAmino
|
|
205
|
+
* @package ibc.core.client.v1
|
|
206
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateRequest
|
|
143
207
|
*/
|
|
144
208
|
export interface QueryConsensusStateRequestAmino {
|
|
145
|
-
/**
|
|
209
|
+
/**
|
|
210
|
+
* client identifier
|
|
211
|
+
*/
|
|
146
212
|
client_id?: string;
|
|
147
|
-
/**
|
|
213
|
+
/**
|
|
214
|
+
* consensus state revision number
|
|
215
|
+
*/
|
|
148
216
|
revision_number?: string;
|
|
149
|
-
/**
|
|
217
|
+
/**
|
|
218
|
+
* consensus state revision height
|
|
219
|
+
*/
|
|
150
220
|
revision_height?: string;
|
|
151
221
|
/**
|
|
152
222
|
* latest_height overrides the height field and queries the latest stored
|
|
@@ -161,13 +231,22 @@ export interface QueryConsensusStateRequestAminoMsg {
|
|
|
161
231
|
/**
|
|
162
232
|
* QueryConsensusStateResponse is the response type for the Query/ConsensusState
|
|
163
233
|
* RPC method
|
|
234
|
+
* @name QueryConsensusStateResponse
|
|
235
|
+
* @package ibc.core.client.v1
|
|
236
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateResponse
|
|
164
237
|
*/
|
|
165
238
|
export interface QueryConsensusStateResponse {
|
|
166
|
-
/**
|
|
239
|
+
/**
|
|
240
|
+
* consensus state associated with the client identifier at the given height
|
|
241
|
+
*/
|
|
167
242
|
consensusState?: Any;
|
|
168
|
-
/**
|
|
243
|
+
/**
|
|
244
|
+
* merkle proof of existence
|
|
245
|
+
*/
|
|
169
246
|
proof: Uint8Array;
|
|
170
|
-
/**
|
|
247
|
+
/**
|
|
248
|
+
* height at which the proof was retrieved
|
|
249
|
+
*/
|
|
171
250
|
proofHeight: Height;
|
|
172
251
|
}
|
|
173
252
|
export interface QueryConsensusStateResponseProtoMsg {
|
|
@@ -177,13 +256,22 @@ export interface QueryConsensusStateResponseProtoMsg {
|
|
|
177
256
|
/**
|
|
178
257
|
* QueryConsensusStateResponse is the response type for the Query/ConsensusState
|
|
179
258
|
* RPC method
|
|
259
|
+
* @name QueryConsensusStateResponseAmino
|
|
260
|
+
* @package ibc.core.client.v1
|
|
261
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateResponse
|
|
180
262
|
*/
|
|
181
263
|
export interface QueryConsensusStateResponseAmino {
|
|
182
|
-
/**
|
|
264
|
+
/**
|
|
265
|
+
* consensus state associated with the client identifier at the given height
|
|
266
|
+
*/
|
|
183
267
|
consensus_state?: AnyAmino;
|
|
184
|
-
/**
|
|
268
|
+
/**
|
|
269
|
+
* merkle proof of existence
|
|
270
|
+
*/
|
|
185
271
|
proof?: string;
|
|
186
|
-
/**
|
|
272
|
+
/**
|
|
273
|
+
* height at which the proof was retrieved
|
|
274
|
+
*/
|
|
187
275
|
proof_height?: HeightAmino;
|
|
188
276
|
}
|
|
189
277
|
export interface QueryConsensusStateResponseAminoMsg {
|
|
@@ -193,11 +281,18 @@ export interface QueryConsensusStateResponseAminoMsg {
|
|
|
193
281
|
/**
|
|
194
282
|
* QueryConsensusStatesRequest is the request type for the Query/ConsensusStates
|
|
195
283
|
* RPC method.
|
|
284
|
+
* @name QueryConsensusStatesRequest
|
|
285
|
+
* @package ibc.core.client.v1
|
|
286
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStatesRequest
|
|
196
287
|
*/
|
|
197
288
|
export interface QueryConsensusStatesRequest {
|
|
198
|
-
/**
|
|
289
|
+
/**
|
|
290
|
+
* client identifier
|
|
291
|
+
*/
|
|
199
292
|
clientId: string;
|
|
200
|
-
/**
|
|
293
|
+
/**
|
|
294
|
+
* pagination request
|
|
295
|
+
*/
|
|
201
296
|
pagination?: PageRequest;
|
|
202
297
|
}
|
|
203
298
|
export interface QueryConsensusStatesRequestProtoMsg {
|
|
@@ -207,11 +302,18 @@ export interface QueryConsensusStatesRequestProtoMsg {
|
|
|
207
302
|
/**
|
|
208
303
|
* QueryConsensusStatesRequest is the request type for the Query/ConsensusStates
|
|
209
304
|
* RPC method.
|
|
305
|
+
* @name QueryConsensusStatesRequestAmino
|
|
306
|
+
* @package ibc.core.client.v1
|
|
307
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStatesRequest
|
|
210
308
|
*/
|
|
211
309
|
export interface QueryConsensusStatesRequestAmino {
|
|
212
|
-
/**
|
|
310
|
+
/**
|
|
311
|
+
* client identifier
|
|
312
|
+
*/
|
|
213
313
|
client_id?: string;
|
|
214
|
-
/**
|
|
314
|
+
/**
|
|
315
|
+
* pagination request
|
|
316
|
+
*/
|
|
215
317
|
pagination?: PageRequestAmino;
|
|
216
318
|
}
|
|
217
319
|
export interface QueryConsensusStatesRequestAminoMsg {
|
|
@@ -221,11 +323,18 @@ export interface QueryConsensusStatesRequestAminoMsg {
|
|
|
221
323
|
/**
|
|
222
324
|
* QueryConsensusStatesResponse is the response type for the
|
|
223
325
|
* Query/ConsensusStates RPC method
|
|
326
|
+
* @name QueryConsensusStatesResponse
|
|
327
|
+
* @package ibc.core.client.v1
|
|
328
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStatesResponse
|
|
224
329
|
*/
|
|
225
330
|
export interface QueryConsensusStatesResponse {
|
|
226
|
-
/**
|
|
331
|
+
/**
|
|
332
|
+
* consensus states associated with the identifier
|
|
333
|
+
*/
|
|
227
334
|
consensusStates: ConsensusStateWithHeight[];
|
|
228
|
-
/**
|
|
335
|
+
/**
|
|
336
|
+
* pagination response
|
|
337
|
+
*/
|
|
229
338
|
pagination?: PageResponse;
|
|
230
339
|
}
|
|
231
340
|
export interface QueryConsensusStatesResponseProtoMsg {
|
|
@@ -235,11 +344,18 @@ export interface QueryConsensusStatesResponseProtoMsg {
|
|
|
235
344
|
/**
|
|
236
345
|
* QueryConsensusStatesResponse is the response type for the
|
|
237
346
|
* Query/ConsensusStates RPC method
|
|
347
|
+
* @name QueryConsensusStatesResponseAmino
|
|
348
|
+
* @package ibc.core.client.v1
|
|
349
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStatesResponse
|
|
238
350
|
*/
|
|
239
351
|
export interface QueryConsensusStatesResponseAmino {
|
|
240
|
-
/**
|
|
352
|
+
/**
|
|
353
|
+
* consensus states associated with the identifier
|
|
354
|
+
*/
|
|
241
355
|
consensus_states?: ConsensusStateWithHeightAmino[];
|
|
242
|
-
/**
|
|
356
|
+
/**
|
|
357
|
+
* pagination response
|
|
358
|
+
*/
|
|
243
359
|
pagination?: PageResponseAmino;
|
|
244
360
|
}
|
|
245
361
|
export interface QueryConsensusStatesResponseAminoMsg {
|
|
@@ -249,11 +365,18 @@ export interface QueryConsensusStatesResponseAminoMsg {
|
|
|
249
365
|
/**
|
|
250
366
|
* QueryConsensusStateHeightsRequest is the request type for Query/ConsensusStateHeights
|
|
251
367
|
* RPC method.
|
|
368
|
+
* @name QueryConsensusStateHeightsRequest
|
|
369
|
+
* @package ibc.core.client.v1
|
|
370
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateHeightsRequest
|
|
252
371
|
*/
|
|
253
372
|
export interface QueryConsensusStateHeightsRequest {
|
|
254
|
-
/**
|
|
373
|
+
/**
|
|
374
|
+
* client identifier
|
|
375
|
+
*/
|
|
255
376
|
clientId: string;
|
|
256
|
-
/**
|
|
377
|
+
/**
|
|
378
|
+
* pagination request
|
|
379
|
+
*/
|
|
257
380
|
pagination?: PageRequest;
|
|
258
381
|
}
|
|
259
382
|
export interface QueryConsensusStateHeightsRequestProtoMsg {
|
|
@@ -263,11 +386,18 @@ export interface QueryConsensusStateHeightsRequestProtoMsg {
|
|
|
263
386
|
/**
|
|
264
387
|
* QueryConsensusStateHeightsRequest is the request type for Query/ConsensusStateHeights
|
|
265
388
|
* RPC method.
|
|
389
|
+
* @name QueryConsensusStateHeightsRequestAmino
|
|
390
|
+
* @package ibc.core.client.v1
|
|
391
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateHeightsRequest
|
|
266
392
|
*/
|
|
267
393
|
export interface QueryConsensusStateHeightsRequestAmino {
|
|
268
|
-
/**
|
|
394
|
+
/**
|
|
395
|
+
* client identifier
|
|
396
|
+
*/
|
|
269
397
|
client_id?: string;
|
|
270
|
-
/**
|
|
398
|
+
/**
|
|
399
|
+
* pagination request
|
|
400
|
+
*/
|
|
271
401
|
pagination?: PageRequestAmino;
|
|
272
402
|
}
|
|
273
403
|
export interface QueryConsensusStateHeightsRequestAminoMsg {
|
|
@@ -277,11 +407,18 @@ export interface QueryConsensusStateHeightsRequestAminoMsg {
|
|
|
277
407
|
/**
|
|
278
408
|
* QueryConsensusStateHeightsResponse is the response type for the
|
|
279
409
|
* Query/ConsensusStateHeights RPC method
|
|
410
|
+
* @name QueryConsensusStateHeightsResponse
|
|
411
|
+
* @package ibc.core.client.v1
|
|
412
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateHeightsResponse
|
|
280
413
|
*/
|
|
281
414
|
export interface QueryConsensusStateHeightsResponse {
|
|
282
|
-
/**
|
|
415
|
+
/**
|
|
416
|
+
* consensus state heights
|
|
417
|
+
*/
|
|
283
418
|
consensusStateHeights: Height[];
|
|
284
|
-
/**
|
|
419
|
+
/**
|
|
420
|
+
* pagination response
|
|
421
|
+
*/
|
|
285
422
|
pagination?: PageResponse;
|
|
286
423
|
}
|
|
287
424
|
export interface QueryConsensusStateHeightsResponseProtoMsg {
|
|
@@ -291,11 +428,18 @@ export interface QueryConsensusStateHeightsResponseProtoMsg {
|
|
|
291
428
|
/**
|
|
292
429
|
* QueryConsensusStateHeightsResponse is the response type for the
|
|
293
430
|
* Query/ConsensusStateHeights RPC method
|
|
431
|
+
* @name QueryConsensusStateHeightsResponseAmino
|
|
432
|
+
* @package ibc.core.client.v1
|
|
433
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateHeightsResponse
|
|
294
434
|
*/
|
|
295
435
|
export interface QueryConsensusStateHeightsResponseAmino {
|
|
296
|
-
/**
|
|
436
|
+
/**
|
|
437
|
+
* consensus state heights
|
|
438
|
+
*/
|
|
297
439
|
consensus_state_heights?: HeightAmino[];
|
|
298
|
-
/**
|
|
440
|
+
/**
|
|
441
|
+
* pagination response
|
|
442
|
+
*/
|
|
299
443
|
pagination?: PageResponseAmino;
|
|
300
444
|
}
|
|
301
445
|
export interface QueryConsensusStateHeightsResponseAminoMsg {
|
|
@@ -305,9 +449,14 @@ export interface QueryConsensusStateHeightsResponseAminoMsg {
|
|
|
305
449
|
/**
|
|
306
450
|
* QueryClientStatusRequest is the request type for the Query/ClientStatus RPC
|
|
307
451
|
* method
|
|
452
|
+
* @name QueryClientStatusRequest
|
|
453
|
+
* @package ibc.core.client.v1
|
|
454
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatusRequest
|
|
308
455
|
*/
|
|
309
456
|
export interface QueryClientStatusRequest {
|
|
310
|
-
/**
|
|
457
|
+
/**
|
|
458
|
+
* client unique identifier
|
|
459
|
+
*/
|
|
311
460
|
clientId: string;
|
|
312
461
|
}
|
|
313
462
|
export interface QueryClientStatusRequestProtoMsg {
|
|
@@ -317,9 +466,14 @@ export interface QueryClientStatusRequestProtoMsg {
|
|
|
317
466
|
/**
|
|
318
467
|
* QueryClientStatusRequest is the request type for the Query/ClientStatus RPC
|
|
319
468
|
* method
|
|
469
|
+
* @name QueryClientStatusRequestAmino
|
|
470
|
+
* @package ibc.core.client.v1
|
|
471
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatusRequest
|
|
320
472
|
*/
|
|
321
473
|
export interface QueryClientStatusRequestAmino {
|
|
322
|
-
/**
|
|
474
|
+
/**
|
|
475
|
+
* client unique identifier
|
|
476
|
+
*/
|
|
323
477
|
client_id?: string;
|
|
324
478
|
}
|
|
325
479
|
export interface QueryClientStatusRequestAminoMsg {
|
|
@@ -329,6 +483,9 @@ export interface QueryClientStatusRequestAminoMsg {
|
|
|
329
483
|
/**
|
|
330
484
|
* QueryClientStatusResponse is the response type for the Query/ClientStatus RPC
|
|
331
485
|
* method. It returns the current status of the IBC client.
|
|
486
|
+
* @name QueryClientStatusResponse
|
|
487
|
+
* @package ibc.core.client.v1
|
|
488
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatusResponse
|
|
332
489
|
*/
|
|
333
490
|
export interface QueryClientStatusResponse {
|
|
334
491
|
status: string;
|
|
@@ -340,6 +497,9 @@ export interface QueryClientStatusResponseProtoMsg {
|
|
|
340
497
|
/**
|
|
341
498
|
* QueryClientStatusResponse is the response type for the Query/ClientStatus RPC
|
|
342
499
|
* method. It returns the current status of the IBC client.
|
|
500
|
+
* @name QueryClientStatusResponseAmino
|
|
501
|
+
* @package ibc.core.client.v1
|
|
502
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatusResponse
|
|
343
503
|
*/
|
|
344
504
|
export interface QueryClientStatusResponseAmino {
|
|
345
505
|
status?: string;
|
|
@@ -351,6 +511,9 @@ export interface QueryClientStatusResponseAminoMsg {
|
|
|
351
511
|
/**
|
|
352
512
|
* QueryClientParamsRequest is the request type for the Query/ClientParams RPC
|
|
353
513
|
* method.
|
|
514
|
+
* @name QueryClientParamsRequest
|
|
515
|
+
* @package ibc.core.client.v1
|
|
516
|
+
* @see proto type: ibc.core.client.v1.QueryClientParamsRequest
|
|
354
517
|
*/
|
|
355
518
|
export interface QueryClientParamsRequest {
|
|
356
519
|
}
|
|
@@ -361,6 +524,9 @@ export interface QueryClientParamsRequestProtoMsg {
|
|
|
361
524
|
/**
|
|
362
525
|
* QueryClientParamsRequest is the request type for the Query/ClientParams RPC
|
|
363
526
|
* method.
|
|
527
|
+
* @name QueryClientParamsRequestAmino
|
|
528
|
+
* @package ibc.core.client.v1
|
|
529
|
+
* @see proto type: ibc.core.client.v1.QueryClientParamsRequest
|
|
364
530
|
*/
|
|
365
531
|
export interface QueryClientParamsRequestAmino {
|
|
366
532
|
}
|
|
@@ -371,9 +537,14 @@ export interface QueryClientParamsRequestAminoMsg {
|
|
|
371
537
|
/**
|
|
372
538
|
* QueryClientParamsResponse is the response type for the Query/ClientParams RPC
|
|
373
539
|
* method.
|
|
540
|
+
* @name QueryClientParamsResponse
|
|
541
|
+
* @package ibc.core.client.v1
|
|
542
|
+
* @see proto type: ibc.core.client.v1.QueryClientParamsResponse
|
|
374
543
|
*/
|
|
375
544
|
export interface QueryClientParamsResponse {
|
|
376
|
-
/**
|
|
545
|
+
/**
|
|
546
|
+
* params defines the parameters of the module.
|
|
547
|
+
*/
|
|
377
548
|
params?: Params;
|
|
378
549
|
}
|
|
379
550
|
export interface QueryClientParamsResponseProtoMsg {
|
|
@@ -383,9 +554,14 @@ export interface QueryClientParamsResponseProtoMsg {
|
|
|
383
554
|
/**
|
|
384
555
|
* QueryClientParamsResponse is the response type for the Query/ClientParams RPC
|
|
385
556
|
* method.
|
|
557
|
+
* @name QueryClientParamsResponseAmino
|
|
558
|
+
* @package ibc.core.client.v1
|
|
559
|
+
* @see proto type: ibc.core.client.v1.QueryClientParamsResponse
|
|
386
560
|
*/
|
|
387
561
|
export interface QueryClientParamsResponseAmino {
|
|
388
|
-
/**
|
|
562
|
+
/**
|
|
563
|
+
* params defines the parameters of the module.
|
|
564
|
+
*/
|
|
389
565
|
params?: ParamsAmino;
|
|
390
566
|
}
|
|
391
567
|
export interface QueryClientParamsResponseAminoMsg {
|
|
@@ -395,9 +571,14 @@ export interface QueryClientParamsResponseAminoMsg {
|
|
|
395
571
|
/**
|
|
396
572
|
* QueryClientCreatorRequest is the request type for the Query/ClientCreator RPC
|
|
397
573
|
* method.
|
|
574
|
+
* @name QueryClientCreatorRequest
|
|
575
|
+
* @package ibc.core.client.v1
|
|
576
|
+
* @see proto type: ibc.core.client.v1.QueryClientCreatorRequest
|
|
398
577
|
*/
|
|
399
578
|
export interface QueryClientCreatorRequest {
|
|
400
|
-
/**
|
|
579
|
+
/**
|
|
580
|
+
* client unique identifier
|
|
581
|
+
*/
|
|
401
582
|
clientId: string;
|
|
402
583
|
}
|
|
403
584
|
export interface QueryClientCreatorRequestProtoMsg {
|
|
@@ -407,9 +588,14 @@ export interface QueryClientCreatorRequestProtoMsg {
|
|
|
407
588
|
/**
|
|
408
589
|
* QueryClientCreatorRequest is the request type for the Query/ClientCreator RPC
|
|
409
590
|
* method.
|
|
591
|
+
* @name QueryClientCreatorRequestAmino
|
|
592
|
+
* @package ibc.core.client.v1
|
|
593
|
+
* @see proto type: ibc.core.client.v1.QueryClientCreatorRequest
|
|
410
594
|
*/
|
|
411
595
|
export interface QueryClientCreatorRequestAmino {
|
|
412
|
-
/**
|
|
596
|
+
/**
|
|
597
|
+
* client unique identifier
|
|
598
|
+
*/
|
|
413
599
|
client_id?: string;
|
|
414
600
|
}
|
|
415
601
|
export interface QueryClientCreatorRequestAminoMsg {
|
|
@@ -419,9 +605,14 @@ export interface QueryClientCreatorRequestAminoMsg {
|
|
|
419
605
|
/**
|
|
420
606
|
* QueryClientCreatorResponse is the response type for the Query/ClientCreator RPC
|
|
421
607
|
* method.
|
|
608
|
+
* @name QueryClientCreatorResponse
|
|
609
|
+
* @package ibc.core.client.v1
|
|
610
|
+
* @see proto type: ibc.core.client.v1.QueryClientCreatorResponse
|
|
422
611
|
*/
|
|
423
612
|
export interface QueryClientCreatorResponse {
|
|
424
|
-
/**
|
|
613
|
+
/**
|
|
614
|
+
* creator of the client
|
|
615
|
+
*/
|
|
425
616
|
creator: string;
|
|
426
617
|
}
|
|
427
618
|
export interface QueryClientCreatorResponseProtoMsg {
|
|
@@ -431,9 +622,14 @@ export interface QueryClientCreatorResponseProtoMsg {
|
|
|
431
622
|
/**
|
|
432
623
|
* QueryClientCreatorResponse is the response type for the Query/ClientCreator RPC
|
|
433
624
|
* method.
|
|
625
|
+
* @name QueryClientCreatorResponseAmino
|
|
626
|
+
* @package ibc.core.client.v1
|
|
627
|
+
* @see proto type: ibc.core.client.v1.QueryClientCreatorResponse
|
|
434
628
|
*/
|
|
435
629
|
export interface QueryClientCreatorResponseAmino {
|
|
436
|
-
/**
|
|
630
|
+
/**
|
|
631
|
+
* creator of the client
|
|
632
|
+
*/
|
|
437
633
|
creator?: string;
|
|
438
634
|
}
|
|
439
635
|
export interface QueryClientCreatorResponseAminoMsg {
|
|
@@ -443,6 +639,9 @@ export interface QueryClientCreatorResponseAminoMsg {
|
|
|
443
639
|
/**
|
|
444
640
|
* QueryUpgradedClientStateRequest is the request type for the
|
|
445
641
|
* Query/UpgradedClientState RPC method
|
|
642
|
+
* @name QueryUpgradedClientStateRequest
|
|
643
|
+
* @package ibc.core.client.v1
|
|
644
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedClientStateRequest
|
|
446
645
|
*/
|
|
447
646
|
export interface QueryUpgradedClientStateRequest {
|
|
448
647
|
}
|
|
@@ -453,6 +652,9 @@ export interface QueryUpgradedClientStateRequestProtoMsg {
|
|
|
453
652
|
/**
|
|
454
653
|
* QueryUpgradedClientStateRequest is the request type for the
|
|
455
654
|
* Query/UpgradedClientState RPC method
|
|
655
|
+
* @name QueryUpgradedClientStateRequestAmino
|
|
656
|
+
* @package ibc.core.client.v1
|
|
657
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedClientStateRequest
|
|
456
658
|
*/
|
|
457
659
|
export interface QueryUpgradedClientStateRequestAmino {
|
|
458
660
|
}
|
|
@@ -463,9 +665,14 @@ export interface QueryUpgradedClientStateRequestAminoMsg {
|
|
|
463
665
|
/**
|
|
464
666
|
* QueryUpgradedClientStateResponse is the response type for the
|
|
465
667
|
* Query/UpgradedClientState RPC method.
|
|
668
|
+
* @name QueryUpgradedClientStateResponse
|
|
669
|
+
* @package ibc.core.client.v1
|
|
670
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedClientStateResponse
|
|
466
671
|
*/
|
|
467
672
|
export interface QueryUpgradedClientStateResponse {
|
|
468
|
-
/**
|
|
673
|
+
/**
|
|
674
|
+
* client state associated with the request identifier
|
|
675
|
+
*/
|
|
469
676
|
upgradedClientState?: Any;
|
|
470
677
|
}
|
|
471
678
|
export interface QueryUpgradedClientStateResponseProtoMsg {
|
|
@@ -475,9 +682,14 @@ export interface QueryUpgradedClientStateResponseProtoMsg {
|
|
|
475
682
|
/**
|
|
476
683
|
* QueryUpgradedClientStateResponse is the response type for the
|
|
477
684
|
* Query/UpgradedClientState RPC method.
|
|
685
|
+
* @name QueryUpgradedClientStateResponseAmino
|
|
686
|
+
* @package ibc.core.client.v1
|
|
687
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedClientStateResponse
|
|
478
688
|
*/
|
|
479
689
|
export interface QueryUpgradedClientStateResponseAmino {
|
|
480
|
-
/**
|
|
690
|
+
/**
|
|
691
|
+
* client state associated with the request identifier
|
|
692
|
+
*/
|
|
481
693
|
upgraded_client_state?: AnyAmino;
|
|
482
694
|
}
|
|
483
695
|
export interface QueryUpgradedClientStateResponseAminoMsg {
|
|
@@ -487,6 +699,9 @@ export interface QueryUpgradedClientStateResponseAminoMsg {
|
|
|
487
699
|
/**
|
|
488
700
|
* QueryUpgradedConsensusStateRequest is the request type for the
|
|
489
701
|
* Query/UpgradedConsensusState RPC method
|
|
702
|
+
* @name QueryUpgradedConsensusStateRequest
|
|
703
|
+
* @package ibc.core.client.v1
|
|
704
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedConsensusStateRequest
|
|
490
705
|
*/
|
|
491
706
|
export interface QueryUpgradedConsensusStateRequest {
|
|
492
707
|
}
|
|
@@ -497,6 +712,9 @@ export interface QueryUpgradedConsensusStateRequestProtoMsg {
|
|
|
497
712
|
/**
|
|
498
713
|
* QueryUpgradedConsensusStateRequest is the request type for the
|
|
499
714
|
* Query/UpgradedConsensusState RPC method
|
|
715
|
+
* @name QueryUpgradedConsensusStateRequestAmino
|
|
716
|
+
* @package ibc.core.client.v1
|
|
717
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedConsensusStateRequest
|
|
500
718
|
*/
|
|
501
719
|
export interface QueryUpgradedConsensusStateRequestAmino {
|
|
502
720
|
}
|
|
@@ -507,9 +725,14 @@ export interface QueryUpgradedConsensusStateRequestAminoMsg {
|
|
|
507
725
|
/**
|
|
508
726
|
* QueryUpgradedConsensusStateResponse is the response type for the
|
|
509
727
|
* Query/UpgradedConsensusState RPC method.
|
|
728
|
+
* @name QueryUpgradedConsensusStateResponse
|
|
729
|
+
* @package ibc.core.client.v1
|
|
730
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedConsensusStateResponse
|
|
510
731
|
*/
|
|
511
732
|
export interface QueryUpgradedConsensusStateResponse {
|
|
512
|
-
/**
|
|
733
|
+
/**
|
|
734
|
+
* Consensus state associated with the request identifier
|
|
735
|
+
*/
|
|
513
736
|
upgradedConsensusState?: Any;
|
|
514
737
|
}
|
|
515
738
|
export interface QueryUpgradedConsensusStateResponseProtoMsg {
|
|
@@ -519,75 +742,139 @@ export interface QueryUpgradedConsensusStateResponseProtoMsg {
|
|
|
519
742
|
/**
|
|
520
743
|
* QueryUpgradedConsensusStateResponse is the response type for the
|
|
521
744
|
* Query/UpgradedConsensusState RPC method.
|
|
745
|
+
* @name QueryUpgradedConsensusStateResponseAmino
|
|
746
|
+
* @package ibc.core.client.v1
|
|
747
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedConsensusStateResponse
|
|
522
748
|
*/
|
|
523
749
|
export interface QueryUpgradedConsensusStateResponseAmino {
|
|
524
|
-
/**
|
|
750
|
+
/**
|
|
751
|
+
* Consensus state associated with the request identifier
|
|
752
|
+
*/
|
|
525
753
|
upgraded_consensus_state?: AnyAmino;
|
|
526
754
|
}
|
|
527
755
|
export interface QueryUpgradedConsensusStateResponseAminoMsg {
|
|
528
756
|
type: "cosmos-sdk/QueryUpgradedConsensusStateResponse";
|
|
529
757
|
value: QueryUpgradedConsensusStateResponseAmino;
|
|
530
758
|
}
|
|
531
|
-
/**
|
|
759
|
+
/**
|
|
760
|
+
* QueryVerifyMembershipRequest is the request type for the Query/VerifyMembership RPC method
|
|
761
|
+
* @name QueryVerifyMembershipRequest
|
|
762
|
+
* @package ibc.core.client.v1
|
|
763
|
+
* @see proto type: ibc.core.client.v1.QueryVerifyMembershipRequest
|
|
764
|
+
*/
|
|
532
765
|
export interface QueryVerifyMembershipRequest {
|
|
533
|
-
/**
|
|
766
|
+
/**
|
|
767
|
+
* client unique identifier.
|
|
768
|
+
*/
|
|
534
769
|
clientId: string;
|
|
535
|
-
/**
|
|
770
|
+
/**
|
|
771
|
+
* the proof to be verified by the client.
|
|
772
|
+
*/
|
|
536
773
|
proof: Uint8Array;
|
|
537
|
-
/**
|
|
774
|
+
/**
|
|
775
|
+
* the height of the commitment root at which the proof is verified.
|
|
776
|
+
*/
|
|
538
777
|
proofHeight: Height;
|
|
539
|
-
/**
|
|
778
|
+
/**
|
|
779
|
+
* the value which is proven.
|
|
780
|
+
*/
|
|
540
781
|
value: Uint8Array;
|
|
541
|
-
/**
|
|
782
|
+
/**
|
|
783
|
+
* optional time delay
|
|
784
|
+
*/
|
|
542
785
|
timeDelay: bigint;
|
|
543
|
-
/**
|
|
786
|
+
/**
|
|
787
|
+
* optional block delay
|
|
788
|
+
*/
|
|
544
789
|
blockDelay: bigint;
|
|
545
|
-
/**
|
|
790
|
+
/**
|
|
791
|
+
* the commitment key path.
|
|
792
|
+
*/
|
|
546
793
|
merklePath: MerklePath;
|
|
547
794
|
}
|
|
548
795
|
export interface QueryVerifyMembershipRequestProtoMsg {
|
|
549
796
|
typeUrl: "/ibc.core.client.v1.QueryVerifyMembershipRequest";
|
|
550
797
|
value: Uint8Array;
|
|
551
798
|
}
|
|
552
|
-
/**
|
|
799
|
+
/**
|
|
800
|
+
* QueryVerifyMembershipRequest is the request type for the Query/VerifyMembership RPC method
|
|
801
|
+
* @name QueryVerifyMembershipRequestAmino
|
|
802
|
+
* @package ibc.core.client.v1
|
|
803
|
+
* @see proto type: ibc.core.client.v1.QueryVerifyMembershipRequest
|
|
804
|
+
*/
|
|
553
805
|
export interface QueryVerifyMembershipRequestAmino {
|
|
554
|
-
/**
|
|
806
|
+
/**
|
|
807
|
+
* client unique identifier.
|
|
808
|
+
*/
|
|
555
809
|
client_id?: string;
|
|
556
|
-
/**
|
|
810
|
+
/**
|
|
811
|
+
* the proof to be verified by the client.
|
|
812
|
+
*/
|
|
557
813
|
proof?: string;
|
|
558
|
-
/**
|
|
814
|
+
/**
|
|
815
|
+
* the height of the commitment root at which the proof is verified.
|
|
816
|
+
*/
|
|
559
817
|
proof_height?: HeightAmino;
|
|
560
|
-
/**
|
|
818
|
+
/**
|
|
819
|
+
* the value which is proven.
|
|
820
|
+
*/
|
|
561
821
|
value?: string;
|
|
562
|
-
/**
|
|
822
|
+
/**
|
|
823
|
+
* optional time delay
|
|
824
|
+
*/
|
|
563
825
|
time_delay?: string;
|
|
564
|
-
/**
|
|
826
|
+
/**
|
|
827
|
+
* optional block delay
|
|
828
|
+
*/
|
|
565
829
|
block_delay?: string;
|
|
566
|
-
/**
|
|
830
|
+
/**
|
|
831
|
+
* the commitment key path.
|
|
832
|
+
*/
|
|
567
833
|
merkle_path?: MerklePathAmino;
|
|
568
834
|
}
|
|
569
835
|
export interface QueryVerifyMembershipRequestAminoMsg {
|
|
570
836
|
type: "cosmos-sdk/QueryVerifyMembershipRequest";
|
|
571
837
|
value: QueryVerifyMembershipRequestAmino;
|
|
572
838
|
}
|
|
573
|
-
/**
|
|
839
|
+
/**
|
|
840
|
+
* QueryVerifyMembershipResponse is the response type for the Query/VerifyMembership RPC method
|
|
841
|
+
* @name QueryVerifyMembershipResponse
|
|
842
|
+
* @package ibc.core.client.v1
|
|
843
|
+
* @see proto type: ibc.core.client.v1.QueryVerifyMembershipResponse
|
|
844
|
+
*/
|
|
574
845
|
export interface QueryVerifyMembershipResponse {
|
|
575
|
-
/**
|
|
846
|
+
/**
|
|
847
|
+
* boolean indicating success or failure of proof verification.
|
|
848
|
+
*/
|
|
576
849
|
success: boolean;
|
|
577
850
|
}
|
|
578
851
|
export interface QueryVerifyMembershipResponseProtoMsg {
|
|
579
852
|
typeUrl: "/ibc.core.client.v1.QueryVerifyMembershipResponse";
|
|
580
853
|
value: Uint8Array;
|
|
581
854
|
}
|
|
582
|
-
/**
|
|
855
|
+
/**
|
|
856
|
+
* QueryVerifyMembershipResponse is the response type for the Query/VerifyMembership RPC method
|
|
857
|
+
* @name QueryVerifyMembershipResponseAmino
|
|
858
|
+
* @package ibc.core.client.v1
|
|
859
|
+
* @see proto type: ibc.core.client.v1.QueryVerifyMembershipResponse
|
|
860
|
+
*/
|
|
583
861
|
export interface QueryVerifyMembershipResponseAmino {
|
|
584
|
-
/**
|
|
862
|
+
/**
|
|
863
|
+
* boolean indicating success or failure of proof verification.
|
|
864
|
+
*/
|
|
585
865
|
success?: boolean;
|
|
586
866
|
}
|
|
587
867
|
export interface QueryVerifyMembershipResponseAminoMsg {
|
|
588
868
|
type: "cosmos-sdk/QueryVerifyMembershipResponse";
|
|
589
869
|
value: QueryVerifyMembershipResponseAmino;
|
|
590
870
|
}
|
|
871
|
+
/**
|
|
872
|
+
* QueryClientStateRequest is the request type for the Query/ClientState RPC
|
|
873
|
+
* method
|
|
874
|
+
* @name QueryClientStateRequest
|
|
875
|
+
* @package ibc.core.client.v1
|
|
876
|
+
* @see proto type: ibc.core.client.v1.QueryClientStateRequest
|
|
877
|
+
*/
|
|
591
878
|
export declare const QueryClientStateRequest: {
|
|
592
879
|
typeUrl: string;
|
|
593
880
|
aminoType: string;
|
|
@@ -602,6 +889,14 @@ export declare const QueryClientStateRequest: {
|
|
|
602
889
|
toProto(message: QueryClientStateRequest): Uint8Array;
|
|
603
890
|
toProtoMsg(message: QueryClientStateRequest): QueryClientStateRequestProtoMsg;
|
|
604
891
|
};
|
|
892
|
+
/**
|
|
893
|
+
* QueryClientStateResponse is the response type for the Query/ClientState RPC
|
|
894
|
+
* method. Besides the client state, it includes a proof and the height from
|
|
895
|
+
* which the proof was retrieved.
|
|
896
|
+
* @name QueryClientStateResponse
|
|
897
|
+
* @package ibc.core.client.v1
|
|
898
|
+
* @see proto type: ibc.core.client.v1.QueryClientStateResponse
|
|
899
|
+
*/
|
|
605
900
|
export declare const QueryClientStateResponse: {
|
|
606
901
|
typeUrl: string;
|
|
607
902
|
aminoType: string;
|
|
@@ -616,6 +911,13 @@ export declare const QueryClientStateResponse: {
|
|
|
616
911
|
toProto(message: QueryClientStateResponse): Uint8Array;
|
|
617
912
|
toProtoMsg(message: QueryClientStateResponse): QueryClientStateResponseProtoMsg;
|
|
618
913
|
};
|
|
914
|
+
/**
|
|
915
|
+
* QueryClientStatesRequest is the request type for the Query/ClientStates RPC
|
|
916
|
+
* method
|
|
917
|
+
* @name QueryClientStatesRequest
|
|
918
|
+
* @package ibc.core.client.v1
|
|
919
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatesRequest
|
|
920
|
+
*/
|
|
619
921
|
export declare const QueryClientStatesRequest: {
|
|
620
922
|
typeUrl: string;
|
|
621
923
|
aminoType: string;
|
|
@@ -630,6 +932,13 @@ export declare const QueryClientStatesRequest: {
|
|
|
630
932
|
toProto(message: QueryClientStatesRequest): Uint8Array;
|
|
631
933
|
toProtoMsg(message: QueryClientStatesRequest): QueryClientStatesRequestProtoMsg;
|
|
632
934
|
};
|
|
935
|
+
/**
|
|
936
|
+
* QueryClientStatesResponse is the response type for the Query/ClientStates RPC
|
|
937
|
+
* method.
|
|
938
|
+
* @name QueryClientStatesResponse
|
|
939
|
+
* @package ibc.core.client.v1
|
|
940
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatesResponse
|
|
941
|
+
*/
|
|
633
942
|
export declare const QueryClientStatesResponse: {
|
|
634
943
|
typeUrl: string;
|
|
635
944
|
aminoType: string;
|
|
@@ -644,6 +953,14 @@ export declare const QueryClientStatesResponse: {
|
|
|
644
953
|
toProto(message: QueryClientStatesResponse): Uint8Array;
|
|
645
954
|
toProtoMsg(message: QueryClientStatesResponse): QueryClientStatesResponseProtoMsg;
|
|
646
955
|
};
|
|
956
|
+
/**
|
|
957
|
+
* QueryConsensusStateRequest is the request type for the Query/ConsensusState
|
|
958
|
+
* RPC method. Besides the consensus state, it includes a proof and the height
|
|
959
|
+
* from which the proof was retrieved.
|
|
960
|
+
* @name QueryConsensusStateRequest
|
|
961
|
+
* @package ibc.core.client.v1
|
|
962
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateRequest
|
|
963
|
+
*/
|
|
647
964
|
export declare const QueryConsensusStateRequest: {
|
|
648
965
|
typeUrl: string;
|
|
649
966
|
aminoType: string;
|
|
@@ -658,6 +975,13 @@ export declare const QueryConsensusStateRequest: {
|
|
|
658
975
|
toProto(message: QueryConsensusStateRequest): Uint8Array;
|
|
659
976
|
toProtoMsg(message: QueryConsensusStateRequest): QueryConsensusStateRequestProtoMsg;
|
|
660
977
|
};
|
|
978
|
+
/**
|
|
979
|
+
* QueryConsensusStateResponse is the response type for the Query/ConsensusState
|
|
980
|
+
* RPC method
|
|
981
|
+
* @name QueryConsensusStateResponse
|
|
982
|
+
* @package ibc.core.client.v1
|
|
983
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateResponse
|
|
984
|
+
*/
|
|
661
985
|
export declare const QueryConsensusStateResponse: {
|
|
662
986
|
typeUrl: string;
|
|
663
987
|
aminoType: string;
|
|
@@ -672,6 +996,13 @@ export declare const QueryConsensusStateResponse: {
|
|
|
672
996
|
toProto(message: QueryConsensusStateResponse): Uint8Array;
|
|
673
997
|
toProtoMsg(message: QueryConsensusStateResponse): QueryConsensusStateResponseProtoMsg;
|
|
674
998
|
};
|
|
999
|
+
/**
|
|
1000
|
+
* QueryConsensusStatesRequest is the request type for the Query/ConsensusStates
|
|
1001
|
+
* RPC method.
|
|
1002
|
+
* @name QueryConsensusStatesRequest
|
|
1003
|
+
* @package ibc.core.client.v1
|
|
1004
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStatesRequest
|
|
1005
|
+
*/
|
|
675
1006
|
export declare const QueryConsensusStatesRequest: {
|
|
676
1007
|
typeUrl: string;
|
|
677
1008
|
aminoType: string;
|
|
@@ -686,6 +1017,13 @@ export declare const QueryConsensusStatesRequest: {
|
|
|
686
1017
|
toProto(message: QueryConsensusStatesRequest): Uint8Array;
|
|
687
1018
|
toProtoMsg(message: QueryConsensusStatesRequest): QueryConsensusStatesRequestProtoMsg;
|
|
688
1019
|
};
|
|
1020
|
+
/**
|
|
1021
|
+
* QueryConsensusStatesResponse is the response type for the
|
|
1022
|
+
* Query/ConsensusStates RPC method
|
|
1023
|
+
* @name QueryConsensusStatesResponse
|
|
1024
|
+
* @package ibc.core.client.v1
|
|
1025
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStatesResponse
|
|
1026
|
+
*/
|
|
689
1027
|
export declare const QueryConsensusStatesResponse: {
|
|
690
1028
|
typeUrl: string;
|
|
691
1029
|
aminoType: string;
|
|
@@ -700,6 +1038,13 @@ export declare const QueryConsensusStatesResponse: {
|
|
|
700
1038
|
toProto(message: QueryConsensusStatesResponse): Uint8Array;
|
|
701
1039
|
toProtoMsg(message: QueryConsensusStatesResponse): QueryConsensusStatesResponseProtoMsg;
|
|
702
1040
|
};
|
|
1041
|
+
/**
|
|
1042
|
+
* QueryConsensusStateHeightsRequest is the request type for Query/ConsensusStateHeights
|
|
1043
|
+
* RPC method.
|
|
1044
|
+
* @name QueryConsensusStateHeightsRequest
|
|
1045
|
+
* @package ibc.core.client.v1
|
|
1046
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateHeightsRequest
|
|
1047
|
+
*/
|
|
703
1048
|
export declare const QueryConsensusStateHeightsRequest: {
|
|
704
1049
|
typeUrl: string;
|
|
705
1050
|
aminoType: string;
|
|
@@ -714,6 +1059,13 @@ export declare const QueryConsensusStateHeightsRequest: {
|
|
|
714
1059
|
toProto(message: QueryConsensusStateHeightsRequest): Uint8Array;
|
|
715
1060
|
toProtoMsg(message: QueryConsensusStateHeightsRequest): QueryConsensusStateHeightsRequestProtoMsg;
|
|
716
1061
|
};
|
|
1062
|
+
/**
|
|
1063
|
+
* QueryConsensusStateHeightsResponse is the response type for the
|
|
1064
|
+
* Query/ConsensusStateHeights RPC method
|
|
1065
|
+
* @name QueryConsensusStateHeightsResponse
|
|
1066
|
+
* @package ibc.core.client.v1
|
|
1067
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateHeightsResponse
|
|
1068
|
+
*/
|
|
717
1069
|
export declare const QueryConsensusStateHeightsResponse: {
|
|
718
1070
|
typeUrl: string;
|
|
719
1071
|
aminoType: string;
|
|
@@ -728,6 +1080,13 @@ export declare const QueryConsensusStateHeightsResponse: {
|
|
|
728
1080
|
toProto(message: QueryConsensusStateHeightsResponse): Uint8Array;
|
|
729
1081
|
toProtoMsg(message: QueryConsensusStateHeightsResponse): QueryConsensusStateHeightsResponseProtoMsg;
|
|
730
1082
|
};
|
|
1083
|
+
/**
|
|
1084
|
+
* QueryClientStatusRequest is the request type for the Query/ClientStatus RPC
|
|
1085
|
+
* method
|
|
1086
|
+
* @name QueryClientStatusRequest
|
|
1087
|
+
* @package ibc.core.client.v1
|
|
1088
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatusRequest
|
|
1089
|
+
*/
|
|
731
1090
|
export declare const QueryClientStatusRequest: {
|
|
732
1091
|
typeUrl: string;
|
|
733
1092
|
aminoType: string;
|
|
@@ -742,6 +1101,13 @@ export declare const QueryClientStatusRequest: {
|
|
|
742
1101
|
toProto(message: QueryClientStatusRequest): Uint8Array;
|
|
743
1102
|
toProtoMsg(message: QueryClientStatusRequest): QueryClientStatusRequestProtoMsg;
|
|
744
1103
|
};
|
|
1104
|
+
/**
|
|
1105
|
+
* QueryClientStatusResponse is the response type for the Query/ClientStatus RPC
|
|
1106
|
+
* method. It returns the current status of the IBC client.
|
|
1107
|
+
* @name QueryClientStatusResponse
|
|
1108
|
+
* @package ibc.core.client.v1
|
|
1109
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatusResponse
|
|
1110
|
+
*/
|
|
745
1111
|
export declare const QueryClientStatusResponse: {
|
|
746
1112
|
typeUrl: string;
|
|
747
1113
|
aminoType: string;
|
|
@@ -756,6 +1122,13 @@ export declare const QueryClientStatusResponse: {
|
|
|
756
1122
|
toProto(message: QueryClientStatusResponse): Uint8Array;
|
|
757
1123
|
toProtoMsg(message: QueryClientStatusResponse): QueryClientStatusResponseProtoMsg;
|
|
758
1124
|
};
|
|
1125
|
+
/**
|
|
1126
|
+
* QueryClientParamsRequest is the request type for the Query/ClientParams RPC
|
|
1127
|
+
* method.
|
|
1128
|
+
* @name QueryClientParamsRequest
|
|
1129
|
+
* @package ibc.core.client.v1
|
|
1130
|
+
* @see proto type: ibc.core.client.v1.QueryClientParamsRequest
|
|
1131
|
+
*/
|
|
759
1132
|
export declare const QueryClientParamsRequest: {
|
|
760
1133
|
typeUrl: string;
|
|
761
1134
|
aminoType: string;
|
|
@@ -770,6 +1143,13 @@ export declare const QueryClientParamsRequest: {
|
|
|
770
1143
|
toProto(message: QueryClientParamsRequest): Uint8Array;
|
|
771
1144
|
toProtoMsg(message: QueryClientParamsRequest): QueryClientParamsRequestProtoMsg;
|
|
772
1145
|
};
|
|
1146
|
+
/**
|
|
1147
|
+
* QueryClientParamsResponse is the response type for the Query/ClientParams RPC
|
|
1148
|
+
* method.
|
|
1149
|
+
* @name QueryClientParamsResponse
|
|
1150
|
+
* @package ibc.core.client.v1
|
|
1151
|
+
* @see proto type: ibc.core.client.v1.QueryClientParamsResponse
|
|
1152
|
+
*/
|
|
773
1153
|
export declare const QueryClientParamsResponse: {
|
|
774
1154
|
typeUrl: string;
|
|
775
1155
|
aminoType: string;
|
|
@@ -784,6 +1164,13 @@ export declare const QueryClientParamsResponse: {
|
|
|
784
1164
|
toProto(message: QueryClientParamsResponse): Uint8Array;
|
|
785
1165
|
toProtoMsg(message: QueryClientParamsResponse): QueryClientParamsResponseProtoMsg;
|
|
786
1166
|
};
|
|
1167
|
+
/**
|
|
1168
|
+
* QueryClientCreatorRequest is the request type for the Query/ClientCreator RPC
|
|
1169
|
+
* method.
|
|
1170
|
+
* @name QueryClientCreatorRequest
|
|
1171
|
+
* @package ibc.core.client.v1
|
|
1172
|
+
* @see proto type: ibc.core.client.v1.QueryClientCreatorRequest
|
|
1173
|
+
*/
|
|
787
1174
|
export declare const QueryClientCreatorRequest: {
|
|
788
1175
|
typeUrl: string;
|
|
789
1176
|
aminoType: string;
|
|
@@ -798,6 +1185,13 @@ export declare const QueryClientCreatorRequest: {
|
|
|
798
1185
|
toProto(message: QueryClientCreatorRequest): Uint8Array;
|
|
799
1186
|
toProtoMsg(message: QueryClientCreatorRequest): QueryClientCreatorRequestProtoMsg;
|
|
800
1187
|
};
|
|
1188
|
+
/**
|
|
1189
|
+
* QueryClientCreatorResponse is the response type for the Query/ClientCreator RPC
|
|
1190
|
+
* method.
|
|
1191
|
+
* @name QueryClientCreatorResponse
|
|
1192
|
+
* @package ibc.core.client.v1
|
|
1193
|
+
* @see proto type: ibc.core.client.v1.QueryClientCreatorResponse
|
|
1194
|
+
*/
|
|
801
1195
|
export declare const QueryClientCreatorResponse: {
|
|
802
1196
|
typeUrl: string;
|
|
803
1197
|
aminoType: string;
|
|
@@ -812,6 +1206,13 @@ export declare const QueryClientCreatorResponse: {
|
|
|
812
1206
|
toProto(message: QueryClientCreatorResponse): Uint8Array;
|
|
813
1207
|
toProtoMsg(message: QueryClientCreatorResponse): QueryClientCreatorResponseProtoMsg;
|
|
814
1208
|
};
|
|
1209
|
+
/**
|
|
1210
|
+
* QueryUpgradedClientStateRequest is the request type for the
|
|
1211
|
+
* Query/UpgradedClientState RPC method
|
|
1212
|
+
* @name QueryUpgradedClientStateRequest
|
|
1213
|
+
* @package ibc.core.client.v1
|
|
1214
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedClientStateRequest
|
|
1215
|
+
*/
|
|
815
1216
|
export declare const QueryUpgradedClientStateRequest: {
|
|
816
1217
|
typeUrl: string;
|
|
817
1218
|
aminoType: string;
|
|
@@ -826,6 +1227,13 @@ export declare const QueryUpgradedClientStateRequest: {
|
|
|
826
1227
|
toProto(message: QueryUpgradedClientStateRequest): Uint8Array;
|
|
827
1228
|
toProtoMsg(message: QueryUpgradedClientStateRequest): QueryUpgradedClientStateRequestProtoMsg;
|
|
828
1229
|
};
|
|
1230
|
+
/**
|
|
1231
|
+
* QueryUpgradedClientStateResponse is the response type for the
|
|
1232
|
+
* Query/UpgradedClientState RPC method.
|
|
1233
|
+
* @name QueryUpgradedClientStateResponse
|
|
1234
|
+
* @package ibc.core.client.v1
|
|
1235
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedClientStateResponse
|
|
1236
|
+
*/
|
|
829
1237
|
export declare const QueryUpgradedClientStateResponse: {
|
|
830
1238
|
typeUrl: string;
|
|
831
1239
|
aminoType: string;
|
|
@@ -840,6 +1248,13 @@ export declare const QueryUpgradedClientStateResponse: {
|
|
|
840
1248
|
toProto(message: QueryUpgradedClientStateResponse): Uint8Array;
|
|
841
1249
|
toProtoMsg(message: QueryUpgradedClientStateResponse): QueryUpgradedClientStateResponseProtoMsg;
|
|
842
1250
|
};
|
|
1251
|
+
/**
|
|
1252
|
+
* QueryUpgradedConsensusStateRequest is the request type for the
|
|
1253
|
+
* Query/UpgradedConsensusState RPC method
|
|
1254
|
+
* @name QueryUpgradedConsensusStateRequest
|
|
1255
|
+
* @package ibc.core.client.v1
|
|
1256
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedConsensusStateRequest
|
|
1257
|
+
*/
|
|
843
1258
|
export declare const QueryUpgradedConsensusStateRequest: {
|
|
844
1259
|
typeUrl: string;
|
|
845
1260
|
aminoType: string;
|
|
@@ -854,6 +1269,13 @@ export declare const QueryUpgradedConsensusStateRequest: {
|
|
|
854
1269
|
toProto(message: QueryUpgradedConsensusStateRequest): Uint8Array;
|
|
855
1270
|
toProtoMsg(message: QueryUpgradedConsensusStateRequest): QueryUpgradedConsensusStateRequestProtoMsg;
|
|
856
1271
|
};
|
|
1272
|
+
/**
|
|
1273
|
+
* QueryUpgradedConsensusStateResponse is the response type for the
|
|
1274
|
+
* Query/UpgradedConsensusState RPC method.
|
|
1275
|
+
* @name QueryUpgradedConsensusStateResponse
|
|
1276
|
+
* @package ibc.core.client.v1
|
|
1277
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedConsensusStateResponse
|
|
1278
|
+
*/
|
|
857
1279
|
export declare const QueryUpgradedConsensusStateResponse: {
|
|
858
1280
|
typeUrl: string;
|
|
859
1281
|
aminoType: string;
|
|
@@ -868,6 +1290,12 @@ export declare const QueryUpgradedConsensusStateResponse: {
|
|
|
868
1290
|
toProto(message: QueryUpgradedConsensusStateResponse): Uint8Array;
|
|
869
1291
|
toProtoMsg(message: QueryUpgradedConsensusStateResponse): QueryUpgradedConsensusStateResponseProtoMsg;
|
|
870
1292
|
};
|
|
1293
|
+
/**
|
|
1294
|
+
* QueryVerifyMembershipRequest is the request type for the Query/VerifyMembership RPC method
|
|
1295
|
+
* @name QueryVerifyMembershipRequest
|
|
1296
|
+
* @package ibc.core.client.v1
|
|
1297
|
+
* @see proto type: ibc.core.client.v1.QueryVerifyMembershipRequest
|
|
1298
|
+
*/
|
|
871
1299
|
export declare const QueryVerifyMembershipRequest: {
|
|
872
1300
|
typeUrl: string;
|
|
873
1301
|
aminoType: string;
|
|
@@ -882,6 +1310,12 @@ export declare const QueryVerifyMembershipRequest: {
|
|
|
882
1310
|
toProto(message: QueryVerifyMembershipRequest): Uint8Array;
|
|
883
1311
|
toProtoMsg(message: QueryVerifyMembershipRequest): QueryVerifyMembershipRequestProtoMsg;
|
|
884
1312
|
};
|
|
1313
|
+
/**
|
|
1314
|
+
* QueryVerifyMembershipResponse is the response type for the Query/VerifyMembership RPC method
|
|
1315
|
+
* @name QueryVerifyMembershipResponse
|
|
1316
|
+
* @package ibc.core.client.v1
|
|
1317
|
+
* @see proto type: ibc.core.client.v1.QueryVerifyMembershipResponse
|
|
1318
|
+
*/
|
|
885
1319
|
export declare const QueryVerifyMembershipResponse: {
|
|
886
1320
|
typeUrl: string;
|
|
887
1321
|
aminoType: string;
|