@sparkdreamnft/sparkdreamjs 0.0.5 → 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 +2284 -2422
- 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/{module.js → v1/module.js} +9 -3
- package/esm/sparkdream/blog/{genesis.js → v1/genesis.js} +9 -3
- package/esm/sparkdream/blog/{params.js → v1/params.js} +9 -3
- package/esm/sparkdream/blog/{post.js → v1/post.js} +9 -3
- package/esm/sparkdream/blog/{query.js → v1/query.js} +50 -14
- package/esm/sparkdream/blog/{query.lcd.js → v1/query.lcd.js} +6 -6
- package/esm/sparkdream/blog/{query.rpc.Query.js → v1/query.rpc.Query.js} +6 -6
- package/esm/sparkdream/blog/{tx.amino.js → v1/tx.amino.js} +7 -7
- package/esm/sparkdream/blog/{tx.js → v1/tx.js} +66 -17
- package/esm/sparkdream/blog/{tx.registry.js → v1/tx.registry.js} +13 -13
- package/esm/sparkdream/blog/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +8 -8
- package/esm/sparkdream/bundle.js +68 -48
- package/esm/sparkdream/client.js +7 -7
- package/esm/sparkdream/lcd.js +10 -6
- package/esm/sparkdream/rpc.query.js +6 -7
- package/esm/sparkdream/rpc.tx.js +6 -2
- package/esm/sparkdream/sparkdream/module/{module.js → v1/module.js} +9 -3
- package/esm/sparkdream/sparkdream/{genesis.js → v1/genesis.js} +9 -3
- package/esm/sparkdream/sparkdream/{params.js → v1/params.js} +9 -3
- package/esm/sparkdream/sparkdream/{query.js → v1/query.js} +17 -5
- package/esm/sparkdream/sparkdream/{query.lcd.js → v1/query.lcd.js} +1 -1
- package/esm/sparkdream/sparkdream/{query.rpc.Query.js → v1/query.rpc.Query.js} +2 -2
- package/esm/sparkdream/sparkdream/{tx.amino.js → v1/tx.amino.js} +1 -1
- package/esm/sparkdream/sparkdream/{tx.js → v1/tx.js} +18 -5
- package/esm/sparkdream/sparkdream/{tx.registry.js → v1/tx.registry.js} +4 -4
- package/esm/sparkdream/sparkdream/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +2 -2
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +20 -20
- 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 +54 -0
- package/sparkdream/{sparkdream/module → blog/module/v1}/module.js +9 -3
- package/sparkdream/{sparkdream → blog/v1}/genesis.d.ts +28 -8
- package/sparkdream/{sparkdream → blog/v1}/genesis.js +9 -3
- package/sparkdream/blog/{params.d.ts → v1/params.d.ts} +21 -5
- package/sparkdream/blog/{params.js → v1/params.js} +9 -3
- package/sparkdream/blog/{post.d.ts → v1/post.d.ts} +22 -4
- package/sparkdream/blog/{post.js → v1/post.js} +9 -3
- package/sparkdream/blog/{query.d.ts → v1/query.d.ts} +129 -21
- package/sparkdream/blog/{query.js → v1/query.js} +50 -14
- package/sparkdream/blog/{query.lcd.js → v1/query.lcd.js} +6 -6
- package/sparkdream/blog/{query.rpc.Query.d.ts → v1/query.rpc.Query.d.ts} +3 -3
- package/sparkdream/blog/{query.rpc.Query.js → v1/query.rpc.Query.js} +6 -6
- package/sparkdream/blog/{tx.amino.d.ts → v1/tx.amino.d.ts} +4 -4
- package/sparkdream/blog/{tx.amino.js → v1/tx.amino.js} +7 -7
- package/sparkdream/blog/{tx.d.ts → v1/tx.d.ts} +168 -23
- package/sparkdream/blog/{tx.js → v1/tx.js} +66 -17
- package/sparkdream/blog/{tx.registry.d.ts → v1/tx.registry.d.ts} +1 -1
- package/sparkdream/blog/{tx.registry.js → v1/tx.registry.js} +13 -13
- package/sparkdream/blog/{tx.rpc.msg.d.ts → v1/tx.rpc.msg.d.ts} +4 -1
- package/sparkdream/blog/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +8 -8
- package/sparkdream/bundle.d.ts +461 -419
- package/sparkdream/bundle.js +68 -48
- package/sparkdream/client.d.ts +15 -15
- package/sparkdream/client.js +7 -7
- package/sparkdream/lcd.d.ts +6 -2
- package/sparkdream/lcd.js +10 -6
- package/sparkdream/rpc.query.d.ts +9 -13
- package/sparkdream/rpc.query.js +6 -7
- package/sparkdream/rpc.tx.d.ts +6 -2
- package/sparkdream/rpc.tx.js +6 -2
- package/sparkdream/sparkdream/module/v1/module.d.ts +54 -0
- package/sparkdream/{blog/module → sparkdream/module/v1}/module.js +9 -3
- package/sparkdream/sparkdream/v1/genesis.d.ts +53 -0
- package/sparkdream/{blog → sparkdream/v1}/genesis.js +9 -3
- package/sparkdream/sparkdream/{params.d.ts → v1/params.d.ts} +21 -5
- package/sparkdream/sparkdream/{params.js → v1/params.js} +9 -3
- package/sparkdream/sparkdream/{query.d.ts → v1/query.d.ts} +48 -12
- package/sparkdream/sparkdream/{query.js → v1/query.js} +17 -5
- package/sparkdream/sparkdream/{query.lcd.js → v1/query.lcd.js} +1 -1
- package/sparkdream/sparkdream/{query.rpc.Query.d.ts → v1/query.rpc.Query.d.ts} +1 -1
- package/sparkdream/sparkdream/{query.rpc.Query.js → v1/query.rpc.Query.js} +2 -2
- package/sparkdream/sparkdream/{tx.amino.d.ts → v1/tx.amino.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.amino.js → v1/tx.amino.js} +1 -1
- package/sparkdream/sparkdream/{tx.d.ts → v1/tx.d.ts} +42 -9
- package/sparkdream/sparkdream/{tx.js → v1/tx.js} +18 -5
- package/sparkdream/sparkdream/{tx.registry.d.ts → v1/tx.registry.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.registry.js → v1/tx.registry.js} +4 -4
- package/sparkdream/sparkdream/{tx.rpc.msg.d.ts → v1/tx.rpc.msg.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +2 -2
- 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 +20 -20
- 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
- package/sparkdream/blog/genesis.d.ts +0 -33
- package/sparkdream/blog/module/module.d.ts +0 -32
- package/sparkdream/sparkdream/module/module.d.ts +0 -32
- /package/sparkdream/blog/{query.lcd.d.ts → v1/query.lcd.d.ts} +0 -0
- /package/sparkdream/sparkdream/{query.lcd.d.ts → v1/query.lcd.d.ts} +0 -0
|
@@ -10,6 +10,13 @@ function createBaseQueryClientStateRequest() {
|
|
|
10
10
|
clientId: ""
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* QueryClientStateRequest is the request type for the Query/ClientState RPC
|
|
15
|
+
* method
|
|
16
|
+
* @name QueryClientStateRequest
|
|
17
|
+
* @package ibc.core.client.v1
|
|
18
|
+
* @see proto type: ibc.core.client.v1.QueryClientStateRequest
|
|
19
|
+
*/
|
|
13
20
|
export const QueryClientStateRequest = {
|
|
14
21
|
typeUrl: "/ibc.core.client.v1.QueryClientStateRequest",
|
|
15
22
|
aminoType: "cosmos-sdk/QueryClientStateRequest",
|
|
@@ -82,6 +89,14 @@ function createBaseQueryClientStateResponse() {
|
|
|
82
89
|
proofHeight: Height.fromPartial({})
|
|
83
90
|
};
|
|
84
91
|
}
|
|
92
|
+
/**
|
|
93
|
+
* QueryClientStateResponse is the response type for the Query/ClientState RPC
|
|
94
|
+
* method. Besides the client state, it includes a proof and the height from
|
|
95
|
+
* which the proof was retrieved.
|
|
96
|
+
* @name QueryClientStateResponse
|
|
97
|
+
* @package ibc.core.client.v1
|
|
98
|
+
* @see proto type: ibc.core.client.v1.QueryClientStateResponse
|
|
99
|
+
*/
|
|
85
100
|
export const QueryClientStateResponse = {
|
|
86
101
|
typeUrl: "/ibc.core.client.v1.QueryClientStateResponse",
|
|
87
102
|
aminoType: "cosmos-sdk/QueryClientStateResponse",
|
|
@@ -174,6 +189,13 @@ function createBaseQueryClientStatesRequest() {
|
|
|
174
189
|
pagination: undefined
|
|
175
190
|
};
|
|
176
191
|
}
|
|
192
|
+
/**
|
|
193
|
+
* QueryClientStatesRequest is the request type for the Query/ClientStates RPC
|
|
194
|
+
* method
|
|
195
|
+
* @name QueryClientStatesRequest
|
|
196
|
+
* @package ibc.core.client.v1
|
|
197
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatesRequest
|
|
198
|
+
*/
|
|
177
199
|
export const QueryClientStatesRequest = {
|
|
178
200
|
typeUrl: "/ibc.core.client.v1.QueryClientStatesRequest",
|
|
179
201
|
aminoType: "cosmos-sdk/QueryClientStatesRequest",
|
|
@@ -245,6 +267,13 @@ function createBaseQueryClientStatesResponse() {
|
|
|
245
267
|
pagination: undefined
|
|
246
268
|
};
|
|
247
269
|
}
|
|
270
|
+
/**
|
|
271
|
+
* QueryClientStatesResponse is the response type for the Query/ClientStates RPC
|
|
272
|
+
* method.
|
|
273
|
+
* @name QueryClientStatesResponse
|
|
274
|
+
* @package ibc.core.client.v1
|
|
275
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatesResponse
|
|
276
|
+
*/
|
|
248
277
|
export const QueryClientStatesResponse = {
|
|
249
278
|
typeUrl: "/ibc.core.client.v1.QueryClientStatesResponse",
|
|
250
279
|
aminoType: "cosmos-sdk/QueryClientStatesResponse",
|
|
@@ -332,6 +361,14 @@ function createBaseQueryConsensusStateRequest() {
|
|
|
332
361
|
latestHeight: false
|
|
333
362
|
};
|
|
334
363
|
}
|
|
364
|
+
/**
|
|
365
|
+
* QueryConsensusStateRequest is the request type for the Query/ConsensusState
|
|
366
|
+
* RPC method. Besides the consensus state, it includes a proof and the height
|
|
367
|
+
* from which the proof was retrieved.
|
|
368
|
+
* @name QueryConsensusStateRequest
|
|
369
|
+
* @package ibc.core.client.v1
|
|
370
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateRequest
|
|
371
|
+
*/
|
|
335
372
|
export const QueryConsensusStateRequest = {
|
|
336
373
|
typeUrl: "/ibc.core.client.v1.QueryConsensusStateRequest",
|
|
337
374
|
aminoType: "cosmos-sdk/QueryConsensusStateRequest",
|
|
@@ -437,6 +474,13 @@ function createBaseQueryConsensusStateResponse() {
|
|
|
437
474
|
proofHeight: Height.fromPartial({})
|
|
438
475
|
};
|
|
439
476
|
}
|
|
477
|
+
/**
|
|
478
|
+
* QueryConsensusStateResponse is the response type for the Query/ConsensusState
|
|
479
|
+
* RPC method
|
|
480
|
+
* @name QueryConsensusStateResponse
|
|
481
|
+
* @package ibc.core.client.v1
|
|
482
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateResponse
|
|
483
|
+
*/
|
|
440
484
|
export const QueryConsensusStateResponse = {
|
|
441
485
|
typeUrl: "/ibc.core.client.v1.QueryConsensusStateResponse",
|
|
442
486
|
aminoType: "cosmos-sdk/QueryConsensusStateResponse",
|
|
@@ -530,6 +574,13 @@ function createBaseQueryConsensusStatesRequest() {
|
|
|
530
574
|
pagination: undefined
|
|
531
575
|
};
|
|
532
576
|
}
|
|
577
|
+
/**
|
|
578
|
+
* QueryConsensusStatesRequest is the request type for the Query/ConsensusStates
|
|
579
|
+
* RPC method.
|
|
580
|
+
* @name QueryConsensusStatesRequest
|
|
581
|
+
* @package ibc.core.client.v1
|
|
582
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStatesRequest
|
|
583
|
+
*/
|
|
533
584
|
export const QueryConsensusStatesRequest = {
|
|
534
585
|
typeUrl: "/ibc.core.client.v1.QueryConsensusStatesRequest",
|
|
535
586
|
aminoType: "cosmos-sdk/QueryConsensusStatesRequest",
|
|
@@ -612,6 +663,13 @@ function createBaseQueryConsensusStatesResponse() {
|
|
|
612
663
|
pagination: undefined
|
|
613
664
|
};
|
|
614
665
|
}
|
|
666
|
+
/**
|
|
667
|
+
* QueryConsensusStatesResponse is the response type for the
|
|
668
|
+
* Query/ConsensusStates RPC method
|
|
669
|
+
* @name QueryConsensusStatesResponse
|
|
670
|
+
* @package ibc.core.client.v1
|
|
671
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStatesResponse
|
|
672
|
+
*/
|
|
615
673
|
export const QueryConsensusStatesResponse = {
|
|
616
674
|
typeUrl: "/ibc.core.client.v1.QueryConsensusStatesResponse",
|
|
617
675
|
aminoType: "cosmos-sdk/QueryConsensusStatesResponse",
|
|
@@ -697,6 +755,13 @@ function createBaseQueryConsensusStateHeightsRequest() {
|
|
|
697
755
|
pagination: undefined
|
|
698
756
|
};
|
|
699
757
|
}
|
|
758
|
+
/**
|
|
759
|
+
* QueryConsensusStateHeightsRequest is the request type for Query/ConsensusStateHeights
|
|
760
|
+
* RPC method.
|
|
761
|
+
* @name QueryConsensusStateHeightsRequest
|
|
762
|
+
* @package ibc.core.client.v1
|
|
763
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateHeightsRequest
|
|
764
|
+
*/
|
|
700
765
|
export const QueryConsensusStateHeightsRequest = {
|
|
701
766
|
typeUrl: "/ibc.core.client.v1.QueryConsensusStateHeightsRequest",
|
|
702
767
|
aminoType: "cosmos-sdk/QueryConsensusStateHeightsRequest",
|
|
@@ -779,6 +844,13 @@ function createBaseQueryConsensusStateHeightsResponse() {
|
|
|
779
844
|
pagination: undefined
|
|
780
845
|
};
|
|
781
846
|
}
|
|
847
|
+
/**
|
|
848
|
+
* QueryConsensusStateHeightsResponse is the response type for the
|
|
849
|
+
* Query/ConsensusStateHeights RPC method
|
|
850
|
+
* @name QueryConsensusStateHeightsResponse
|
|
851
|
+
* @package ibc.core.client.v1
|
|
852
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateHeightsResponse
|
|
853
|
+
*/
|
|
782
854
|
export const QueryConsensusStateHeightsResponse = {
|
|
783
855
|
typeUrl: "/ibc.core.client.v1.QueryConsensusStateHeightsResponse",
|
|
784
856
|
aminoType: "cosmos-sdk/QueryConsensusStateHeightsResponse",
|
|
@@ -863,6 +935,13 @@ function createBaseQueryClientStatusRequest() {
|
|
|
863
935
|
clientId: ""
|
|
864
936
|
};
|
|
865
937
|
}
|
|
938
|
+
/**
|
|
939
|
+
* QueryClientStatusRequest is the request type for the Query/ClientStatus RPC
|
|
940
|
+
* method
|
|
941
|
+
* @name QueryClientStatusRequest
|
|
942
|
+
* @package ibc.core.client.v1
|
|
943
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatusRequest
|
|
944
|
+
*/
|
|
866
945
|
export const QueryClientStatusRequest = {
|
|
867
946
|
typeUrl: "/ibc.core.client.v1.QueryClientStatusRequest",
|
|
868
947
|
aminoType: "cosmos-sdk/QueryClientStatusRequest",
|
|
@@ -933,6 +1012,13 @@ function createBaseQueryClientStatusResponse() {
|
|
|
933
1012
|
status: ""
|
|
934
1013
|
};
|
|
935
1014
|
}
|
|
1015
|
+
/**
|
|
1016
|
+
* QueryClientStatusResponse is the response type for the Query/ClientStatus RPC
|
|
1017
|
+
* method. It returns the current status of the IBC client.
|
|
1018
|
+
* @name QueryClientStatusResponse
|
|
1019
|
+
* @package ibc.core.client.v1
|
|
1020
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatusResponse
|
|
1021
|
+
*/
|
|
936
1022
|
export const QueryClientStatusResponse = {
|
|
937
1023
|
typeUrl: "/ibc.core.client.v1.QueryClientStatusResponse",
|
|
938
1024
|
aminoType: "cosmos-sdk/QueryClientStatusResponse",
|
|
@@ -1001,6 +1087,13 @@ export const QueryClientStatusResponse = {
|
|
|
1001
1087
|
function createBaseQueryClientParamsRequest() {
|
|
1002
1088
|
return {};
|
|
1003
1089
|
}
|
|
1090
|
+
/**
|
|
1091
|
+
* QueryClientParamsRequest is the request type for the Query/ClientParams RPC
|
|
1092
|
+
* method.
|
|
1093
|
+
* @name QueryClientParamsRequest
|
|
1094
|
+
* @package ibc.core.client.v1
|
|
1095
|
+
* @see proto type: ibc.core.client.v1.QueryClientParamsRequest
|
|
1096
|
+
*/
|
|
1004
1097
|
export const QueryClientParamsRequest = {
|
|
1005
1098
|
typeUrl: "/ibc.core.client.v1.QueryClientParamsRequest",
|
|
1006
1099
|
aminoType: "cosmos-sdk/QueryClientParamsRequest",
|
|
@@ -1060,6 +1153,13 @@ function createBaseQueryClientParamsResponse() {
|
|
|
1060
1153
|
params: undefined
|
|
1061
1154
|
};
|
|
1062
1155
|
}
|
|
1156
|
+
/**
|
|
1157
|
+
* QueryClientParamsResponse is the response type for the Query/ClientParams RPC
|
|
1158
|
+
* method.
|
|
1159
|
+
* @name QueryClientParamsResponse
|
|
1160
|
+
* @package ibc.core.client.v1
|
|
1161
|
+
* @see proto type: ibc.core.client.v1.QueryClientParamsResponse
|
|
1162
|
+
*/
|
|
1063
1163
|
export const QueryClientParamsResponse = {
|
|
1064
1164
|
typeUrl: "/ibc.core.client.v1.QueryClientParamsResponse",
|
|
1065
1165
|
aminoType: "cosmos-sdk/QueryClientParamsResponse",
|
|
@@ -1130,6 +1230,13 @@ function createBaseQueryClientCreatorRequest() {
|
|
|
1130
1230
|
clientId: ""
|
|
1131
1231
|
};
|
|
1132
1232
|
}
|
|
1233
|
+
/**
|
|
1234
|
+
* QueryClientCreatorRequest is the request type for the Query/ClientCreator RPC
|
|
1235
|
+
* method.
|
|
1236
|
+
* @name QueryClientCreatorRequest
|
|
1237
|
+
* @package ibc.core.client.v1
|
|
1238
|
+
* @see proto type: ibc.core.client.v1.QueryClientCreatorRequest
|
|
1239
|
+
*/
|
|
1133
1240
|
export const QueryClientCreatorRequest = {
|
|
1134
1241
|
typeUrl: "/ibc.core.client.v1.QueryClientCreatorRequest",
|
|
1135
1242
|
aminoType: "cosmos-sdk/QueryClientCreatorRequest",
|
|
@@ -1200,6 +1307,13 @@ function createBaseQueryClientCreatorResponse() {
|
|
|
1200
1307
|
creator: ""
|
|
1201
1308
|
};
|
|
1202
1309
|
}
|
|
1310
|
+
/**
|
|
1311
|
+
* QueryClientCreatorResponse is the response type for the Query/ClientCreator RPC
|
|
1312
|
+
* method.
|
|
1313
|
+
* @name QueryClientCreatorResponse
|
|
1314
|
+
* @package ibc.core.client.v1
|
|
1315
|
+
* @see proto type: ibc.core.client.v1.QueryClientCreatorResponse
|
|
1316
|
+
*/
|
|
1203
1317
|
export const QueryClientCreatorResponse = {
|
|
1204
1318
|
typeUrl: "/ibc.core.client.v1.QueryClientCreatorResponse",
|
|
1205
1319
|
aminoType: "cosmos-sdk/QueryClientCreatorResponse",
|
|
@@ -1268,6 +1382,13 @@ export const QueryClientCreatorResponse = {
|
|
|
1268
1382
|
function createBaseQueryUpgradedClientStateRequest() {
|
|
1269
1383
|
return {};
|
|
1270
1384
|
}
|
|
1385
|
+
/**
|
|
1386
|
+
* QueryUpgradedClientStateRequest is the request type for the
|
|
1387
|
+
* Query/UpgradedClientState RPC method
|
|
1388
|
+
* @name QueryUpgradedClientStateRequest
|
|
1389
|
+
* @package ibc.core.client.v1
|
|
1390
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedClientStateRequest
|
|
1391
|
+
*/
|
|
1271
1392
|
export const QueryUpgradedClientStateRequest = {
|
|
1272
1393
|
typeUrl: "/ibc.core.client.v1.QueryUpgradedClientStateRequest",
|
|
1273
1394
|
aminoType: "cosmos-sdk/QueryUpgradedClientStateRequest",
|
|
@@ -1327,6 +1448,13 @@ function createBaseQueryUpgradedClientStateResponse() {
|
|
|
1327
1448
|
upgradedClientState: undefined
|
|
1328
1449
|
};
|
|
1329
1450
|
}
|
|
1451
|
+
/**
|
|
1452
|
+
* QueryUpgradedClientStateResponse is the response type for the
|
|
1453
|
+
* Query/UpgradedClientState RPC method.
|
|
1454
|
+
* @name QueryUpgradedClientStateResponse
|
|
1455
|
+
* @package ibc.core.client.v1
|
|
1456
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedClientStateResponse
|
|
1457
|
+
*/
|
|
1330
1458
|
export const QueryUpgradedClientStateResponse = {
|
|
1331
1459
|
typeUrl: "/ibc.core.client.v1.QueryUpgradedClientStateResponse",
|
|
1332
1460
|
aminoType: "cosmos-sdk/QueryUpgradedClientStateResponse",
|
|
@@ -1395,6 +1523,13 @@ export const QueryUpgradedClientStateResponse = {
|
|
|
1395
1523
|
function createBaseQueryUpgradedConsensusStateRequest() {
|
|
1396
1524
|
return {};
|
|
1397
1525
|
}
|
|
1526
|
+
/**
|
|
1527
|
+
* QueryUpgradedConsensusStateRequest is the request type for the
|
|
1528
|
+
* Query/UpgradedConsensusState RPC method
|
|
1529
|
+
* @name QueryUpgradedConsensusStateRequest
|
|
1530
|
+
* @package ibc.core.client.v1
|
|
1531
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedConsensusStateRequest
|
|
1532
|
+
*/
|
|
1398
1533
|
export const QueryUpgradedConsensusStateRequest = {
|
|
1399
1534
|
typeUrl: "/ibc.core.client.v1.QueryUpgradedConsensusStateRequest",
|
|
1400
1535
|
aminoType: "cosmos-sdk/QueryUpgradedConsensusStateRequest",
|
|
@@ -1454,6 +1589,13 @@ function createBaseQueryUpgradedConsensusStateResponse() {
|
|
|
1454
1589
|
upgradedConsensusState: undefined
|
|
1455
1590
|
};
|
|
1456
1591
|
}
|
|
1592
|
+
/**
|
|
1593
|
+
* QueryUpgradedConsensusStateResponse is the response type for the
|
|
1594
|
+
* Query/UpgradedConsensusState RPC method.
|
|
1595
|
+
* @name QueryUpgradedConsensusStateResponse
|
|
1596
|
+
* @package ibc.core.client.v1
|
|
1597
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedConsensusStateResponse
|
|
1598
|
+
*/
|
|
1457
1599
|
export const QueryUpgradedConsensusStateResponse = {
|
|
1458
1600
|
typeUrl: "/ibc.core.client.v1.QueryUpgradedConsensusStateResponse",
|
|
1459
1601
|
aminoType: "cosmos-sdk/QueryUpgradedConsensusStateResponse",
|
|
@@ -1530,6 +1672,12 @@ function createBaseQueryVerifyMembershipRequest() {
|
|
|
1530
1672
|
merklePath: MerklePath.fromPartial({})
|
|
1531
1673
|
};
|
|
1532
1674
|
}
|
|
1675
|
+
/**
|
|
1676
|
+
* QueryVerifyMembershipRequest is the request type for the Query/VerifyMembership RPC method
|
|
1677
|
+
* @name QueryVerifyMembershipRequest
|
|
1678
|
+
* @package ibc.core.client.v1
|
|
1679
|
+
* @see proto type: ibc.core.client.v1.QueryVerifyMembershipRequest
|
|
1680
|
+
*/
|
|
1533
1681
|
export const QueryVerifyMembershipRequest = {
|
|
1534
1682
|
typeUrl: "/ibc.core.client.v1.QueryVerifyMembershipRequest",
|
|
1535
1683
|
aminoType: "cosmos-sdk/QueryVerifyMembershipRequest",
|
|
@@ -1666,6 +1814,12 @@ function createBaseQueryVerifyMembershipResponse() {
|
|
|
1666
1814
|
success: false
|
|
1667
1815
|
};
|
|
1668
1816
|
}
|
|
1817
|
+
/**
|
|
1818
|
+
* QueryVerifyMembershipResponse is the response type for the Query/VerifyMembership RPC method
|
|
1819
|
+
* @name QueryVerifyMembershipResponse
|
|
1820
|
+
* @package ibc.core.client.v1
|
|
1821
|
+
* @see proto type: ibc.core.client.v1.QueryVerifyMembershipResponse
|
|
1822
|
+
*/
|
|
1669
1823
|
export const QueryVerifyMembershipResponse = {
|
|
1670
1824
|
typeUrl: "/ibc.core.client.v1.QueryVerifyMembershipResponse",
|
|
1671
1825
|
aminoType: "cosmos-sdk/QueryVerifyMembershipResponse",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
//@ts-nocheck
|
|
2
|
-
import { MsgCreateClient, MsgUpdateClient, MsgUpgradeClient,
|
|
2
|
+
import { MsgCreateClient, MsgUpdateClient, MsgUpgradeClient, MsgRecoverClient, MsgIBCSoftwareUpgrade, MsgUpdateParams, MsgDeleteClientCreator } from "./tx";
|
|
3
3
|
export const AminoConverter = {
|
|
4
4
|
"/ibc.core.client.v1.MsgCreateClient": {
|
|
5
5
|
aminoType: "cosmos-sdk/MsgCreateClient",
|
|
@@ -16,11 +16,6 @@ export const AminoConverter = {
|
|
|
16
16
|
toAmino: MsgUpgradeClient.toAmino,
|
|
17
17
|
fromAmino: MsgUpgradeClient.fromAmino
|
|
18
18
|
},
|
|
19
|
-
"/ibc.core.client.v1.MsgSubmitMisbehaviour": {
|
|
20
|
-
aminoType: "cosmos-sdk/MsgSubmitMisbehaviour",
|
|
21
|
-
toAmino: MsgSubmitMisbehaviour.toAmino,
|
|
22
|
-
fromAmino: MsgSubmitMisbehaviour.fromAmino
|
|
23
|
-
},
|
|
24
19
|
"/ibc.core.client.v1.MsgRecoverClient": {
|
|
25
20
|
aminoType: "cosmos-sdk/MsgRecoverClient",
|
|
26
21
|
toAmino: MsgRecoverClient.toAmino,
|
|
@@ -11,6 +11,12 @@ function createBaseMsgCreateClient() {
|
|
|
11
11
|
signer: ""
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* MsgCreateClient defines a message to create an IBC client
|
|
16
|
+
* @name MsgCreateClient
|
|
17
|
+
* @package ibc.core.client.v1
|
|
18
|
+
* @see proto type: ibc.core.client.v1.MsgCreateClient
|
|
19
|
+
*/
|
|
14
20
|
export const MsgCreateClient = {
|
|
15
21
|
typeUrl: "/ibc.core.client.v1.MsgCreateClient",
|
|
16
22
|
aminoType: "cosmos-sdk/MsgCreateClient",
|
|
@@ -103,6 +109,12 @@ function createBaseMsgCreateClientResponse() {
|
|
|
103
109
|
clientId: ""
|
|
104
110
|
};
|
|
105
111
|
}
|
|
112
|
+
/**
|
|
113
|
+
* MsgCreateClientResponse defines the Msg/CreateClient response type.
|
|
114
|
+
* @name MsgCreateClientResponse
|
|
115
|
+
* @package ibc.core.client.v1
|
|
116
|
+
* @see proto type: ibc.core.client.v1.MsgCreateClientResponse
|
|
117
|
+
*/
|
|
106
118
|
export const MsgCreateClientResponse = {
|
|
107
119
|
typeUrl: "/ibc.core.client.v1.MsgCreateClientResponse",
|
|
108
120
|
aminoType: "cosmos-sdk/MsgCreateClientResponse",
|
|
@@ -175,6 +187,13 @@ function createBaseMsgUpdateClient() {
|
|
|
175
187
|
signer: ""
|
|
176
188
|
};
|
|
177
189
|
}
|
|
190
|
+
/**
|
|
191
|
+
* MsgUpdateClient defines an sdk.Msg to update a IBC client state using
|
|
192
|
+
* the given client message.
|
|
193
|
+
* @name MsgUpdateClient
|
|
194
|
+
* @package ibc.core.client.v1
|
|
195
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateClient
|
|
196
|
+
*/
|
|
178
197
|
export const MsgUpdateClient = {
|
|
179
198
|
typeUrl: "/ibc.core.client.v1.MsgUpdateClient",
|
|
180
199
|
aminoType: "cosmos-sdk/MsgUpdateClient",
|
|
@@ -265,6 +284,12 @@ export const MsgUpdateClient = {
|
|
|
265
284
|
function createBaseMsgUpdateClientResponse() {
|
|
266
285
|
return {};
|
|
267
286
|
}
|
|
287
|
+
/**
|
|
288
|
+
* MsgUpdateClientResponse defines the Msg/UpdateClient response type.
|
|
289
|
+
* @name MsgUpdateClientResponse
|
|
290
|
+
* @package ibc.core.client.v1
|
|
291
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateClientResponse
|
|
292
|
+
*/
|
|
268
293
|
export const MsgUpdateClientResponse = {
|
|
269
294
|
typeUrl: "/ibc.core.client.v1.MsgUpdateClientResponse",
|
|
270
295
|
aminoType: "cosmos-sdk/MsgUpdateClientResponse",
|
|
@@ -329,6 +354,13 @@ function createBaseMsgUpgradeClient() {
|
|
|
329
354
|
signer: ""
|
|
330
355
|
};
|
|
331
356
|
}
|
|
357
|
+
/**
|
|
358
|
+
* MsgUpgradeClient defines an sdk.Msg to upgrade an IBC client to a new client
|
|
359
|
+
* state
|
|
360
|
+
* @name MsgUpgradeClient
|
|
361
|
+
* @package ibc.core.client.v1
|
|
362
|
+
* @see proto type: ibc.core.client.v1.MsgUpgradeClient
|
|
363
|
+
*/
|
|
332
364
|
export const MsgUpgradeClient = {
|
|
333
365
|
typeUrl: "/ibc.core.client.v1.MsgUpgradeClient",
|
|
334
366
|
aminoType: "cosmos-sdk/MsgUpgradeClient",
|
|
@@ -452,6 +484,12 @@ export const MsgUpgradeClient = {
|
|
|
452
484
|
function createBaseMsgUpgradeClientResponse() {
|
|
453
485
|
return {};
|
|
454
486
|
}
|
|
487
|
+
/**
|
|
488
|
+
* MsgUpgradeClientResponse defines the Msg/UpgradeClient response type.
|
|
489
|
+
* @name MsgUpgradeClientResponse
|
|
490
|
+
* @package ibc.core.client.v1
|
|
491
|
+
* @see proto type: ibc.core.client.v1.MsgUpgradeClientResponse
|
|
492
|
+
*/
|
|
455
493
|
export const MsgUpgradeClientResponse = {
|
|
456
494
|
typeUrl: "/ibc.core.client.v1.MsgUpgradeClientResponse",
|
|
457
495
|
aminoType: "cosmos-sdk/MsgUpgradeClientResponse",
|
|
@@ -506,157 +544,6 @@ export const MsgUpgradeClientResponse = {
|
|
|
506
544
|
};
|
|
507
545
|
}
|
|
508
546
|
};
|
|
509
|
-
function createBaseMsgSubmitMisbehaviour() {
|
|
510
|
-
return {
|
|
511
|
-
clientId: "",
|
|
512
|
-
misbehaviour: undefined,
|
|
513
|
-
signer: ""
|
|
514
|
-
};
|
|
515
|
-
}
|
|
516
|
-
export const MsgSubmitMisbehaviour = {
|
|
517
|
-
typeUrl: "/ibc.core.client.v1.MsgSubmitMisbehaviour",
|
|
518
|
-
aminoType: "cosmos-sdk/MsgSubmitMisbehaviour",
|
|
519
|
-
encode(message, writer = BinaryWriter.create()) {
|
|
520
|
-
if (message.clientId !== "") {
|
|
521
|
-
writer.uint32(10).string(message.clientId);
|
|
522
|
-
}
|
|
523
|
-
if (message.misbehaviour !== undefined) {
|
|
524
|
-
Any.encode(message.misbehaviour, writer.uint32(18).fork()).ldelim();
|
|
525
|
-
}
|
|
526
|
-
if (message.signer !== "") {
|
|
527
|
-
writer.uint32(26).string(message.signer);
|
|
528
|
-
}
|
|
529
|
-
return writer;
|
|
530
|
-
},
|
|
531
|
-
decode(input, length) {
|
|
532
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
533
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
534
|
-
const message = createBaseMsgSubmitMisbehaviour();
|
|
535
|
-
while (reader.pos < end) {
|
|
536
|
-
const tag = reader.uint32();
|
|
537
|
-
switch (tag >>> 3) {
|
|
538
|
-
case 1:
|
|
539
|
-
message.clientId = reader.string();
|
|
540
|
-
break;
|
|
541
|
-
case 2:
|
|
542
|
-
message.misbehaviour = Any.decode(reader, reader.uint32());
|
|
543
|
-
break;
|
|
544
|
-
case 3:
|
|
545
|
-
message.signer = reader.string();
|
|
546
|
-
break;
|
|
547
|
-
default:
|
|
548
|
-
reader.skipType(tag & 7);
|
|
549
|
-
break;
|
|
550
|
-
}
|
|
551
|
-
}
|
|
552
|
-
return message;
|
|
553
|
-
},
|
|
554
|
-
fromPartial(object) {
|
|
555
|
-
const message = createBaseMsgSubmitMisbehaviour();
|
|
556
|
-
message.clientId = object.clientId ?? "";
|
|
557
|
-
message.misbehaviour = object.misbehaviour !== undefined && object.misbehaviour !== null ? Any.fromPartial(object.misbehaviour) : undefined;
|
|
558
|
-
message.signer = object.signer ?? "";
|
|
559
|
-
return message;
|
|
560
|
-
},
|
|
561
|
-
fromAmino(object) {
|
|
562
|
-
const message = createBaseMsgSubmitMisbehaviour();
|
|
563
|
-
if (object.client_id !== undefined && object.client_id !== null) {
|
|
564
|
-
message.clientId = object.client_id;
|
|
565
|
-
}
|
|
566
|
-
if (object.misbehaviour !== undefined && object.misbehaviour !== null) {
|
|
567
|
-
message.misbehaviour = Any.fromAmino(object.misbehaviour);
|
|
568
|
-
}
|
|
569
|
-
if (object.signer !== undefined && object.signer !== null) {
|
|
570
|
-
message.signer = object.signer;
|
|
571
|
-
}
|
|
572
|
-
return message;
|
|
573
|
-
},
|
|
574
|
-
toAmino(message) {
|
|
575
|
-
const obj = {};
|
|
576
|
-
obj.client_id = message.clientId === "" ? undefined : message.clientId;
|
|
577
|
-
obj.misbehaviour = message.misbehaviour ? Any.toAmino(message.misbehaviour) : undefined;
|
|
578
|
-
obj.signer = message.signer === "" ? undefined : message.signer;
|
|
579
|
-
return obj;
|
|
580
|
-
},
|
|
581
|
-
fromAminoMsg(object) {
|
|
582
|
-
return MsgSubmitMisbehaviour.fromAmino(object.value);
|
|
583
|
-
},
|
|
584
|
-
toAminoMsg(message) {
|
|
585
|
-
return {
|
|
586
|
-
type: "cosmos-sdk/MsgSubmitMisbehaviour",
|
|
587
|
-
value: MsgSubmitMisbehaviour.toAmino(message)
|
|
588
|
-
};
|
|
589
|
-
},
|
|
590
|
-
fromProtoMsg(message) {
|
|
591
|
-
return MsgSubmitMisbehaviour.decode(message.value);
|
|
592
|
-
},
|
|
593
|
-
toProto(message) {
|
|
594
|
-
return MsgSubmitMisbehaviour.encode(message).finish();
|
|
595
|
-
},
|
|
596
|
-
toProtoMsg(message) {
|
|
597
|
-
return {
|
|
598
|
-
typeUrl: "/ibc.core.client.v1.MsgSubmitMisbehaviour",
|
|
599
|
-
value: MsgSubmitMisbehaviour.encode(message).finish()
|
|
600
|
-
};
|
|
601
|
-
}
|
|
602
|
-
};
|
|
603
|
-
function createBaseMsgSubmitMisbehaviourResponse() {
|
|
604
|
-
return {};
|
|
605
|
-
}
|
|
606
|
-
export const MsgSubmitMisbehaviourResponse = {
|
|
607
|
-
typeUrl: "/ibc.core.client.v1.MsgSubmitMisbehaviourResponse",
|
|
608
|
-
aminoType: "cosmos-sdk/MsgSubmitMisbehaviourResponse",
|
|
609
|
-
encode(_, writer = BinaryWriter.create()) {
|
|
610
|
-
return writer;
|
|
611
|
-
},
|
|
612
|
-
decode(input, length) {
|
|
613
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
614
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
615
|
-
const message = createBaseMsgSubmitMisbehaviourResponse();
|
|
616
|
-
while (reader.pos < end) {
|
|
617
|
-
const tag = reader.uint32();
|
|
618
|
-
switch (tag >>> 3) {
|
|
619
|
-
default:
|
|
620
|
-
reader.skipType(tag & 7);
|
|
621
|
-
break;
|
|
622
|
-
}
|
|
623
|
-
}
|
|
624
|
-
return message;
|
|
625
|
-
},
|
|
626
|
-
fromPartial(_) {
|
|
627
|
-
const message = createBaseMsgSubmitMisbehaviourResponse();
|
|
628
|
-
return message;
|
|
629
|
-
},
|
|
630
|
-
fromAmino(_) {
|
|
631
|
-
const message = createBaseMsgSubmitMisbehaviourResponse();
|
|
632
|
-
return message;
|
|
633
|
-
},
|
|
634
|
-
toAmino(_) {
|
|
635
|
-
const obj = {};
|
|
636
|
-
return obj;
|
|
637
|
-
},
|
|
638
|
-
fromAminoMsg(object) {
|
|
639
|
-
return MsgSubmitMisbehaviourResponse.fromAmino(object.value);
|
|
640
|
-
},
|
|
641
|
-
toAminoMsg(message) {
|
|
642
|
-
return {
|
|
643
|
-
type: "cosmos-sdk/MsgSubmitMisbehaviourResponse",
|
|
644
|
-
value: MsgSubmitMisbehaviourResponse.toAmino(message)
|
|
645
|
-
};
|
|
646
|
-
},
|
|
647
|
-
fromProtoMsg(message) {
|
|
648
|
-
return MsgSubmitMisbehaviourResponse.decode(message.value);
|
|
649
|
-
},
|
|
650
|
-
toProto(message) {
|
|
651
|
-
return MsgSubmitMisbehaviourResponse.encode(message).finish();
|
|
652
|
-
},
|
|
653
|
-
toProtoMsg(message) {
|
|
654
|
-
return {
|
|
655
|
-
typeUrl: "/ibc.core.client.v1.MsgSubmitMisbehaviourResponse",
|
|
656
|
-
value: MsgSubmitMisbehaviourResponse.encode(message).finish()
|
|
657
|
-
};
|
|
658
|
-
}
|
|
659
|
-
};
|
|
660
547
|
function createBaseMsgRecoverClient() {
|
|
661
548
|
return {
|
|
662
549
|
subjectClientId: "",
|
|
@@ -664,6 +551,12 @@ function createBaseMsgRecoverClient() {
|
|
|
664
551
|
signer: ""
|
|
665
552
|
};
|
|
666
553
|
}
|
|
554
|
+
/**
|
|
555
|
+
* MsgRecoverClient defines the message used to recover a frozen or expired client.
|
|
556
|
+
* @name MsgRecoverClient
|
|
557
|
+
* @package ibc.core.client.v1
|
|
558
|
+
* @see proto type: ibc.core.client.v1.MsgRecoverClient
|
|
559
|
+
*/
|
|
667
560
|
export const MsgRecoverClient = {
|
|
668
561
|
typeUrl: "/ibc.core.client.v1.MsgRecoverClient",
|
|
669
562
|
aminoType: "cosmos-sdk/MsgRecoverClient",
|
|
@@ -754,6 +647,12 @@ export const MsgRecoverClient = {
|
|
|
754
647
|
function createBaseMsgRecoverClientResponse() {
|
|
755
648
|
return {};
|
|
756
649
|
}
|
|
650
|
+
/**
|
|
651
|
+
* MsgRecoverClientResponse defines the Msg/RecoverClient response type.
|
|
652
|
+
* @name MsgRecoverClientResponse
|
|
653
|
+
* @package ibc.core.client.v1
|
|
654
|
+
* @see proto type: ibc.core.client.v1.MsgRecoverClientResponse
|
|
655
|
+
*/
|
|
757
656
|
export const MsgRecoverClientResponse = {
|
|
758
657
|
typeUrl: "/ibc.core.client.v1.MsgRecoverClientResponse",
|
|
759
658
|
aminoType: "cosmos-sdk/MsgRecoverClientResponse",
|
|
@@ -815,6 +714,12 @@ function createBaseMsgIBCSoftwareUpgrade() {
|
|
|
815
714
|
signer: ""
|
|
816
715
|
};
|
|
817
716
|
}
|
|
717
|
+
/**
|
|
718
|
+
* MsgIBCSoftwareUpgrade defines the message used to schedule an upgrade of an IBC client using a v1 governance proposal
|
|
719
|
+
* @name MsgIBCSoftwareUpgrade
|
|
720
|
+
* @package ibc.core.client.v1
|
|
721
|
+
* @see proto type: ibc.core.client.v1.MsgIBCSoftwareUpgrade
|
|
722
|
+
*/
|
|
818
723
|
export const MsgIBCSoftwareUpgrade = {
|
|
819
724
|
typeUrl: "/ibc.core.client.v1.MsgIBCSoftwareUpgrade",
|
|
820
725
|
aminoType: "cosmos-sdk/MsgIBCSoftwareUpgrade",
|
|
@@ -905,6 +810,12 @@ export const MsgIBCSoftwareUpgrade = {
|
|
|
905
810
|
function createBaseMsgIBCSoftwareUpgradeResponse() {
|
|
906
811
|
return {};
|
|
907
812
|
}
|
|
813
|
+
/**
|
|
814
|
+
* MsgIBCSoftwareUpgradeResponse defines the Msg/IBCSoftwareUpgrade response type.
|
|
815
|
+
* @name MsgIBCSoftwareUpgradeResponse
|
|
816
|
+
* @package ibc.core.client.v1
|
|
817
|
+
* @see proto type: ibc.core.client.v1.MsgIBCSoftwareUpgradeResponse
|
|
818
|
+
*/
|
|
908
819
|
export const MsgIBCSoftwareUpgradeResponse = {
|
|
909
820
|
typeUrl: "/ibc.core.client.v1.MsgIBCSoftwareUpgradeResponse",
|
|
910
821
|
aminoType: "cosmos-sdk/MsgIBCSoftwareUpgradeResponse",
|
|
@@ -965,6 +876,12 @@ function createBaseMsgUpdateParams() {
|
|
|
965
876
|
params: Params.fromPartial({})
|
|
966
877
|
};
|
|
967
878
|
}
|
|
879
|
+
/**
|
|
880
|
+
* MsgUpdateParams defines the sdk.Msg type to update the client parameters.
|
|
881
|
+
* @name MsgUpdateParams
|
|
882
|
+
* @package ibc.core.client.v1
|
|
883
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateParams
|
|
884
|
+
*/
|
|
968
885
|
export const MsgUpdateParams = {
|
|
969
886
|
typeUrl: "/ibc.core.client.v1.MsgUpdateParams",
|
|
970
887
|
aminoType: "cosmos-sdk/MsgUpdateParams",
|
|
@@ -1044,6 +961,12 @@ export const MsgUpdateParams = {
|
|
|
1044
961
|
function createBaseMsgUpdateParamsResponse() {
|
|
1045
962
|
return {};
|
|
1046
963
|
}
|
|
964
|
+
/**
|
|
965
|
+
* MsgUpdateParamsResponse defines the MsgUpdateParams response type.
|
|
966
|
+
* @name MsgUpdateParamsResponse
|
|
967
|
+
* @package ibc.core.client.v1
|
|
968
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateParamsResponse
|
|
969
|
+
*/
|
|
1047
970
|
export const MsgUpdateParamsResponse = {
|
|
1048
971
|
typeUrl: "/ibc.core.client.v1.MsgUpdateParamsResponse",
|
|
1049
972
|
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|
|
@@ -1104,6 +1027,12 @@ function createBaseMsgDeleteClientCreator() {
|
|
|
1104
1027
|
signer: ""
|
|
1105
1028
|
};
|
|
1106
1029
|
}
|
|
1030
|
+
/**
|
|
1031
|
+
* MsgDeleteClientCreator defines a message to delete the client creator of a client
|
|
1032
|
+
* @name MsgDeleteClientCreator
|
|
1033
|
+
* @package ibc.core.client.v1
|
|
1034
|
+
* @see proto type: ibc.core.client.v1.MsgDeleteClientCreator
|
|
1035
|
+
*/
|
|
1107
1036
|
export const MsgDeleteClientCreator = {
|
|
1108
1037
|
typeUrl: "/ibc.core.client.v1.MsgDeleteClientCreator",
|
|
1109
1038
|
aminoType: "cosmos-sdk/MsgDeleteClientCreator",
|
|
@@ -1183,6 +1112,12 @@ export const MsgDeleteClientCreator = {
|
|
|
1183
1112
|
function createBaseMsgDeleteClientCreatorResponse() {
|
|
1184
1113
|
return {};
|
|
1185
1114
|
}
|
|
1115
|
+
/**
|
|
1116
|
+
* MsgDeleteClientCreatorResponse defines the Msg/DeleteClientCreator response type.
|
|
1117
|
+
* @name MsgDeleteClientCreatorResponse
|
|
1118
|
+
* @package ibc.core.client.v1
|
|
1119
|
+
* @see proto type: ibc.core.client.v1.MsgDeleteClientCreatorResponse
|
|
1120
|
+
*/
|
|
1186
1121
|
export const MsgDeleteClientCreatorResponse = {
|
|
1187
1122
|
typeUrl: "/ibc.core.client.v1.MsgDeleteClientCreatorResponse",
|
|
1188
1123
|
aminoType: "cosmos-sdk/MsgDeleteClientCreatorResponse",
|