@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
|
@@ -3,39 +3,62 @@ import { Plan, PlanAmino } from "../../../../cosmos/upgrade/v1beta1/upgrade";
|
|
|
3
3
|
import { Params, ParamsAmino } from "./client";
|
|
4
4
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
5
5
|
import { DeepPartial } from "../../../../helpers";
|
|
6
|
-
/**
|
|
6
|
+
/**
|
|
7
|
+
* MsgCreateClient defines a message to create an IBC client
|
|
8
|
+
* @name MsgCreateClient
|
|
9
|
+
* @package ibc.core.client.v1
|
|
10
|
+
* @see proto type: ibc.core.client.v1.MsgCreateClient
|
|
11
|
+
*/
|
|
7
12
|
export interface MsgCreateClient {
|
|
8
|
-
/**
|
|
13
|
+
/**
|
|
14
|
+
* light client state
|
|
15
|
+
*/
|
|
9
16
|
clientState?: Any;
|
|
10
17
|
/**
|
|
11
18
|
* consensus state associated with the client that corresponds to a given
|
|
12
19
|
* height.
|
|
13
20
|
*/
|
|
14
21
|
consensusState?: Any;
|
|
15
|
-
/**
|
|
22
|
+
/**
|
|
23
|
+
* signer address
|
|
24
|
+
*/
|
|
16
25
|
signer: string;
|
|
17
26
|
}
|
|
18
27
|
export interface MsgCreateClientProtoMsg {
|
|
19
28
|
typeUrl: "/ibc.core.client.v1.MsgCreateClient";
|
|
20
29
|
value: Uint8Array;
|
|
21
30
|
}
|
|
22
|
-
/**
|
|
31
|
+
/**
|
|
32
|
+
* MsgCreateClient defines a message to create an IBC client
|
|
33
|
+
* @name MsgCreateClientAmino
|
|
34
|
+
* @package ibc.core.client.v1
|
|
35
|
+
* @see proto type: ibc.core.client.v1.MsgCreateClient
|
|
36
|
+
*/
|
|
23
37
|
export interface MsgCreateClientAmino {
|
|
24
|
-
/**
|
|
38
|
+
/**
|
|
39
|
+
* light client state
|
|
40
|
+
*/
|
|
25
41
|
client_state?: AnyAmino;
|
|
26
42
|
/**
|
|
27
43
|
* consensus state associated with the client that corresponds to a given
|
|
28
44
|
* height.
|
|
29
45
|
*/
|
|
30
46
|
consensus_state?: AnyAmino;
|
|
31
|
-
/**
|
|
47
|
+
/**
|
|
48
|
+
* signer address
|
|
49
|
+
*/
|
|
32
50
|
signer?: string;
|
|
33
51
|
}
|
|
34
52
|
export interface MsgCreateClientAminoMsg {
|
|
35
53
|
type: "cosmos-sdk/MsgCreateClient";
|
|
36
54
|
value: MsgCreateClientAmino;
|
|
37
55
|
}
|
|
38
|
-
/**
|
|
56
|
+
/**
|
|
57
|
+
* MsgCreateClientResponse defines the Msg/CreateClient response type.
|
|
58
|
+
* @name MsgCreateClientResponse
|
|
59
|
+
* @package ibc.core.client.v1
|
|
60
|
+
* @see proto type: ibc.core.client.v1.MsgCreateClientResponse
|
|
61
|
+
*/
|
|
39
62
|
export interface MsgCreateClientResponse {
|
|
40
63
|
clientId: string;
|
|
41
64
|
}
|
|
@@ -43,7 +66,12 @@ export interface MsgCreateClientResponseProtoMsg {
|
|
|
43
66
|
typeUrl: "/ibc.core.client.v1.MsgCreateClientResponse";
|
|
44
67
|
value: Uint8Array;
|
|
45
68
|
}
|
|
46
|
-
/**
|
|
69
|
+
/**
|
|
70
|
+
* MsgCreateClientResponse defines the Msg/CreateClient response type.
|
|
71
|
+
* @name MsgCreateClientResponseAmino
|
|
72
|
+
* @package ibc.core.client.v1
|
|
73
|
+
* @see proto type: ibc.core.client.v1.MsgCreateClientResponse
|
|
74
|
+
*/
|
|
47
75
|
export interface MsgCreateClientResponseAmino {
|
|
48
76
|
client_id?: string;
|
|
49
77
|
}
|
|
@@ -54,13 +82,22 @@ export interface MsgCreateClientResponseAminoMsg {
|
|
|
54
82
|
/**
|
|
55
83
|
* MsgUpdateClient defines an sdk.Msg to update a IBC client state using
|
|
56
84
|
* the given client message.
|
|
85
|
+
* @name MsgUpdateClient
|
|
86
|
+
* @package ibc.core.client.v1
|
|
87
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateClient
|
|
57
88
|
*/
|
|
58
89
|
export interface MsgUpdateClient {
|
|
59
|
-
/**
|
|
90
|
+
/**
|
|
91
|
+
* client unique identifier
|
|
92
|
+
*/
|
|
60
93
|
clientId: string;
|
|
61
|
-
/**
|
|
94
|
+
/**
|
|
95
|
+
* client message to update the light client
|
|
96
|
+
*/
|
|
62
97
|
clientMessage?: Any;
|
|
63
|
-
/**
|
|
98
|
+
/**
|
|
99
|
+
* signer address
|
|
100
|
+
*/
|
|
64
101
|
signer: string;
|
|
65
102
|
}
|
|
66
103
|
export interface MsgUpdateClientProtoMsg {
|
|
@@ -70,27 +107,46 @@ export interface MsgUpdateClientProtoMsg {
|
|
|
70
107
|
/**
|
|
71
108
|
* MsgUpdateClient defines an sdk.Msg to update a IBC client state using
|
|
72
109
|
* the given client message.
|
|
110
|
+
* @name MsgUpdateClientAmino
|
|
111
|
+
* @package ibc.core.client.v1
|
|
112
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateClient
|
|
73
113
|
*/
|
|
74
114
|
export interface MsgUpdateClientAmino {
|
|
75
|
-
/**
|
|
115
|
+
/**
|
|
116
|
+
* client unique identifier
|
|
117
|
+
*/
|
|
76
118
|
client_id?: string;
|
|
77
|
-
/**
|
|
119
|
+
/**
|
|
120
|
+
* client message to update the light client
|
|
121
|
+
*/
|
|
78
122
|
client_message?: AnyAmino;
|
|
79
|
-
/**
|
|
123
|
+
/**
|
|
124
|
+
* signer address
|
|
125
|
+
*/
|
|
80
126
|
signer?: string;
|
|
81
127
|
}
|
|
82
128
|
export interface MsgUpdateClientAminoMsg {
|
|
83
129
|
type: "cosmos-sdk/MsgUpdateClient";
|
|
84
130
|
value: MsgUpdateClientAmino;
|
|
85
131
|
}
|
|
86
|
-
/**
|
|
132
|
+
/**
|
|
133
|
+
* MsgUpdateClientResponse defines the Msg/UpdateClient response type.
|
|
134
|
+
* @name MsgUpdateClientResponse
|
|
135
|
+
* @package ibc.core.client.v1
|
|
136
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateClientResponse
|
|
137
|
+
*/
|
|
87
138
|
export interface MsgUpdateClientResponse {
|
|
88
139
|
}
|
|
89
140
|
export interface MsgUpdateClientResponseProtoMsg {
|
|
90
141
|
typeUrl: "/ibc.core.client.v1.MsgUpdateClientResponse";
|
|
91
142
|
value: Uint8Array;
|
|
92
143
|
}
|
|
93
|
-
/**
|
|
144
|
+
/**
|
|
145
|
+
* MsgUpdateClientResponse defines the Msg/UpdateClient response type.
|
|
146
|
+
* @name MsgUpdateClientResponseAmino
|
|
147
|
+
* @package ibc.core.client.v1
|
|
148
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateClientResponse
|
|
149
|
+
*/
|
|
94
150
|
export interface MsgUpdateClientResponseAmino {
|
|
95
151
|
}
|
|
96
152
|
export interface MsgUpdateClientResponseAminoMsg {
|
|
@@ -100,22 +156,35 @@ export interface MsgUpdateClientResponseAminoMsg {
|
|
|
100
156
|
/**
|
|
101
157
|
* MsgUpgradeClient defines an sdk.Msg to upgrade an IBC client to a new client
|
|
102
158
|
* state
|
|
159
|
+
* @name MsgUpgradeClient
|
|
160
|
+
* @package ibc.core.client.v1
|
|
161
|
+
* @see proto type: ibc.core.client.v1.MsgUpgradeClient
|
|
103
162
|
*/
|
|
104
163
|
export interface MsgUpgradeClient {
|
|
105
|
-
/**
|
|
164
|
+
/**
|
|
165
|
+
* client unique identifier
|
|
166
|
+
*/
|
|
106
167
|
clientId: string;
|
|
107
|
-
/**
|
|
168
|
+
/**
|
|
169
|
+
* upgraded client state
|
|
170
|
+
*/
|
|
108
171
|
clientState?: Any;
|
|
109
172
|
/**
|
|
110
173
|
* upgraded consensus state, only contains enough information to serve as a
|
|
111
174
|
* basis of trust in update logic
|
|
112
175
|
*/
|
|
113
176
|
consensusState?: Any;
|
|
114
|
-
/**
|
|
177
|
+
/**
|
|
178
|
+
* proof that old chain committed to new client
|
|
179
|
+
*/
|
|
115
180
|
proofUpgradeClient: Uint8Array;
|
|
116
|
-
/**
|
|
181
|
+
/**
|
|
182
|
+
* proof that old chain committed to new consensus state
|
|
183
|
+
*/
|
|
117
184
|
proofUpgradeConsensusState: Uint8Array;
|
|
118
|
-
/**
|
|
185
|
+
/**
|
|
186
|
+
* signer address
|
|
187
|
+
*/
|
|
119
188
|
signer: string;
|
|
120
189
|
}
|
|
121
190
|
export interface MsgUpgradeClientProtoMsg {
|
|
@@ -125,36 +194,59 @@ export interface MsgUpgradeClientProtoMsg {
|
|
|
125
194
|
/**
|
|
126
195
|
* MsgUpgradeClient defines an sdk.Msg to upgrade an IBC client to a new client
|
|
127
196
|
* state
|
|
197
|
+
* @name MsgUpgradeClientAmino
|
|
198
|
+
* @package ibc.core.client.v1
|
|
199
|
+
* @see proto type: ibc.core.client.v1.MsgUpgradeClient
|
|
128
200
|
*/
|
|
129
201
|
export interface MsgUpgradeClientAmino {
|
|
130
|
-
/**
|
|
202
|
+
/**
|
|
203
|
+
* client unique identifier
|
|
204
|
+
*/
|
|
131
205
|
client_id?: string;
|
|
132
|
-
/**
|
|
206
|
+
/**
|
|
207
|
+
* upgraded client state
|
|
208
|
+
*/
|
|
133
209
|
client_state?: AnyAmino;
|
|
134
210
|
/**
|
|
135
211
|
* upgraded consensus state, only contains enough information to serve as a
|
|
136
212
|
* basis of trust in update logic
|
|
137
213
|
*/
|
|
138
214
|
consensus_state?: AnyAmino;
|
|
139
|
-
/**
|
|
215
|
+
/**
|
|
216
|
+
* proof that old chain committed to new client
|
|
217
|
+
*/
|
|
140
218
|
proof_upgrade_client?: string;
|
|
141
|
-
/**
|
|
219
|
+
/**
|
|
220
|
+
* proof that old chain committed to new consensus state
|
|
221
|
+
*/
|
|
142
222
|
proof_upgrade_consensus_state?: string;
|
|
143
|
-
/**
|
|
223
|
+
/**
|
|
224
|
+
* signer address
|
|
225
|
+
*/
|
|
144
226
|
signer?: string;
|
|
145
227
|
}
|
|
146
228
|
export interface MsgUpgradeClientAminoMsg {
|
|
147
229
|
type: "cosmos-sdk/MsgUpgradeClient";
|
|
148
230
|
value: MsgUpgradeClientAmino;
|
|
149
231
|
}
|
|
150
|
-
/**
|
|
232
|
+
/**
|
|
233
|
+
* MsgUpgradeClientResponse defines the Msg/UpgradeClient response type.
|
|
234
|
+
* @name MsgUpgradeClientResponse
|
|
235
|
+
* @package ibc.core.client.v1
|
|
236
|
+
* @see proto type: ibc.core.client.v1.MsgUpgradeClientResponse
|
|
237
|
+
*/
|
|
151
238
|
export interface MsgUpgradeClientResponse {
|
|
152
239
|
}
|
|
153
240
|
export interface MsgUpgradeClientResponseProtoMsg {
|
|
154
241
|
typeUrl: "/ibc.core.client.v1.MsgUpgradeClientResponse";
|
|
155
242
|
value: Uint8Array;
|
|
156
243
|
}
|
|
157
|
-
/**
|
|
244
|
+
/**
|
|
245
|
+
* MsgUpgradeClientResponse defines the Msg/UpgradeClient response type.
|
|
246
|
+
* @name MsgUpgradeClientResponseAmino
|
|
247
|
+
* @package ibc.core.client.v1
|
|
248
|
+
* @see proto type: ibc.core.client.v1.MsgUpgradeClientResponse
|
|
249
|
+
*/
|
|
158
250
|
export interface MsgUpgradeClientResponseAmino {
|
|
159
251
|
}
|
|
160
252
|
export interface MsgUpgradeClientResponseAminoMsg {
|
|
@@ -162,108 +254,85 @@ export interface MsgUpgradeClientResponseAminoMsg {
|
|
|
162
254
|
value: MsgUpgradeClientResponseAmino;
|
|
163
255
|
}
|
|
164
256
|
/**
|
|
165
|
-
*
|
|
166
|
-
*
|
|
167
|
-
*
|
|
168
|
-
|
|
169
|
-
/** @deprecated */
|
|
170
|
-
export interface MsgSubmitMisbehaviour {
|
|
171
|
-
/** client unique identifier */
|
|
172
|
-
clientId: string;
|
|
173
|
-
/** misbehaviour used for freezing the light client */
|
|
174
|
-
misbehaviour?: Any;
|
|
175
|
-
/** signer address */
|
|
176
|
-
signer: string;
|
|
177
|
-
}
|
|
178
|
-
export interface MsgSubmitMisbehaviourProtoMsg {
|
|
179
|
-
typeUrl: "/ibc.core.client.v1.MsgSubmitMisbehaviour";
|
|
180
|
-
value: Uint8Array;
|
|
181
|
-
}
|
|
182
|
-
/**
|
|
183
|
-
* MsgSubmitMisbehaviour defines an sdk.Msg type that submits Evidence for
|
|
184
|
-
* light client misbehaviour.
|
|
185
|
-
* This message has been deprecated. Use MsgUpdateClient instead.
|
|
257
|
+
* MsgRecoverClient defines the message used to recover a frozen or expired client.
|
|
258
|
+
* @name MsgRecoverClient
|
|
259
|
+
* @package ibc.core.client.v1
|
|
260
|
+
* @see proto type: ibc.core.client.v1.MsgRecoverClient
|
|
186
261
|
*/
|
|
187
|
-
/** @deprecated */
|
|
188
|
-
export interface MsgSubmitMisbehaviourAmino {
|
|
189
|
-
/** client unique identifier */
|
|
190
|
-
client_id?: string;
|
|
191
|
-
/** misbehaviour used for freezing the light client */
|
|
192
|
-
misbehaviour?: AnyAmino;
|
|
193
|
-
/** signer address */
|
|
194
|
-
signer?: string;
|
|
195
|
-
}
|
|
196
|
-
export interface MsgSubmitMisbehaviourAminoMsg {
|
|
197
|
-
type: "cosmos-sdk/MsgSubmitMisbehaviour";
|
|
198
|
-
value: MsgSubmitMisbehaviourAmino;
|
|
199
|
-
}
|
|
200
|
-
/**
|
|
201
|
-
* MsgSubmitMisbehaviourResponse defines the Msg/SubmitMisbehaviour response
|
|
202
|
-
* type.
|
|
203
|
-
*/
|
|
204
|
-
export interface MsgSubmitMisbehaviourResponse {
|
|
205
|
-
}
|
|
206
|
-
export interface MsgSubmitMisbehaviourResponseProtoMsg {
|
|
207
|
-
typeUrl: "/ibc.core.client.v1.MsgSubmitMisbehaviourResponse";
|
|
208
|
-
value: Uint8Array;
|
|
209
|
-
}
|
|
210
|
-
/**
|
|
211
|
-
* MsgSubmitMisbehaviourResponse defines the Msg/SubmitMisbehaviour response
|
|
212
|
-
* type.
|
|
213
|
-
*/
|
|
214
|
-
export interface MsgSubmitMisbehaviourResponseAmino {
|
|
215
|
-
}
|
|
216
|
-
export interface MsgSubmitMisbehaviourResponseAminoMsg {
|
|
217
|
-
type: "cosmos-sdk/MsgSubmitMisbehaviourResponse";
|
|
218
|
-
value: MsgSubmitMisbehaviourResponseAmino;
|
|
219
|
-
}
|
|
220
|
-
/** MsgRecoverClient defines the message used to recover a frozen or expired client. */
|
|
221
262
|
export interface MsgRecoverClient {
|
|
222
|
-
/**
|
|
263
|
+
/**
|
|
264
|
+
* the client identifier for the client to be updated if the proposal passes
|
|
265
|
+
*/
|
|
223
266
|
subjectClientId: string;
|
|
224
267
|
/**
|
|
225
268
|
* the substitute client identifier for the client which will replace the subject
|
|
226
269
|
* client
|
|
227
270
|
*/
|
|
228
271
|
substituteClientId: string;
|
|
229
|
-
/**
|
|
272
|
+
/**
|
|
273
|
+
* signer address
|
|
274
|
+
*/
|
|
230
275
|
signer: string;
|
|
231
276
|
}
|
|
232
277
|
export interface MsgRecoverClientProtoMsg {
|
|
233
278
|
typeUrl: "/ibc.core.client.v1.MsgRecoverClient";
|
|
234
279
|
value: Uint8Array;
|
|
235
280
|
}
|
|
236
|
-
/**
|
|
281
|
+
/**
|
|
282
|
+
* MsgRecoverClient defines the message used to recover a frozen or expired client.
|
|
283
|
+
* @name MsgRecoverClientAmino
|
|
284
|
+
* @package ibc.core.client.v1
|
|
285
|
+
* @see proto type: ibc.core.client.v1.MsgRecoverClient
|
|
286
|
+
*/
|
|
237
287
|
export interface MsgRecoverClientAmino {
|
|
238
|
-
/**
|
|
288
|
+
/**
|
|
289
|
+
* the client identifier for the client to be updated if the proposal passes
|
|
290
|
+
*/
|
|
239
291
|
subject_client_id?: string;
|
|
240
292
|
/**
|
|
241
293
|
* the substitute client identifier for the client which will replace the subject
|
|
242
294
|
* client
|
|
243
295
|
*/
|
|
244
296
|
substitute_client_id?: string;
|
|
245
|
-
/**
|
|
297
|
+
/**
|
|
298
|
+
* signer address
|
|
299
|
+
*/
|
|
246
300
|
signer?: string;
|
|
247
301
|
}
|
|
248
302
|
export interface MsgRecoverClientAminoMsg {
|
|
249
303
|
type: "cosmos-sdk/MsgRecoverClient";
|
|
250
304
|
value: MsgRecoverClientAmino;
|
|
251
305
|
}
|
|
252
|
-
/**
|
|
306
|
+
/**
|
|
307
|
+
* MsgRecoverClientResponse defines the Msg/RecoverClient response type.
|
|
308
|
+
* @name MsgRecoverClientResponse
|
|
309
|
+
* @package ibc.core.client.v1
|
|
310
|
+
* @see proto type: ibc.core.client.v1.MsgRecoverClientResponse
|
|
311
|
+
*/
|
|
253
312
|
export interface MsgRecoverClientResponse {
|
|
254
313
|
}
|
|
255
314
|
export interface MsgRecoverClientResponseProtoMsg {
|
|
256
315
|
typeUrl: "/ibc.core.client.v1.MsgRecoverClientResponse";
|
|
257
316
|
value: Uint8Array;
|
|
258
317
|
}
|
|
259
|
-
/**
|
|
318
|
+
/**
|
|
319
|
+
* MsgRecoverClientResponse defines the Msg/RecoverClient response type.
|
|
320
|
+
* @name MsgRecoverClientResponseAmino
|
|
321
|
+
* @package ibc.core.client.v1
|
|
322
|
+
* @see proto type: ibc.core.client.v1.MsgRecoverClientResponse
|
|
323
|
+
*/
|
|
260
324
|
export interface MsgRecoverClientResponseAmino {
|
|
261
325
|
}
|
|
262
326
|
export interface MsgRecoverClientResponseAminoMsg {
|
|
263
327
|
type: "cosmos-sdk/MsgRecoverClientResponse";
|
|
264
328
|
value: MsgRecoverClientResponseAmino;
|
|
265
329
|
}
|
|
266
|
-
/**
|
|
330
|
+
/**
|
|
331
|
+
* MsgIBCSoftwareUpgrade defines the message used to schedule an upgrade of an IBC client using a v1 governance proposal
|
|
332
|
+
* @name MsgIBCSoftwareUpgrade
|
|
333
|
+
* @package ibc.core.client.v1
|
|
334
|
+
* @see proto type: ibc.core.client.v1.MsgIBCSoftwareUpgrade
|
|
335
|
+
*/
|
|
267
336
|
export interface MsgIBCSoftwareUpgrade {
|
|
268
337
|
plan: Plan;
|
|
269
338
|
/**
|
|
@@ -277,14 +346,21 @@ export interface MsgIBCSoftwareUpgrade {
|
|
|
277
346
|
* the 02-client module.
|
|
278
347
|
*/
|
|
279
348
|
upgradedClientState?: Any;
|
|
280
|
-
/**
|
|
349
|
+
/**
|
|
350
|
+
* signer address
|
|
351
|
+
*/
|
|
281
352
|
signer: string;
|
|
282
353
|
}
|
|
283
354
|
export interface MsgIBCSoftwareUpgradeProtoMsg {
|
|
284
355
|
typeUrl: "/ibc.core.client.v1.MsgIBCSoftwareUpgrade";
|
|
285
356
|
value: Uint8Array;
|
|
286
357
|
}
|
|
287
|
-
/**
|
|
358
|
+
/**
|
|
359
|
+
* MsgIBCSoftwareUpgrade defines the message used to schedule an upgrade of an IBC client using a v1 governance proposal
|
|
360
|
+
* @name MsgIBCSoftwareUpgradeAmino
|
|
361
|
+
* @package ibc.core.client.v1
|
|
362
|
+
* @see proto type: ibc.core.client.v1.MsgIBCSoftwareUpgrade
|
|
363
|
+
*/
|
|
288
364
|
export interface MsgIBCSoftwareUpgradeAmino {
|
|
289
365
|
plan?: PlanAmino;
|
|
290
366
|
/**
|
|
@@ -298,30 +374,49 @@ export interface MsgIBCSoftwareUpgradeAmino {
|
|
|
298
374
|
* the 02-client module.
|
|
299
375
|
*/
|
|
300
376
|
upgraded_client_state?: AnyAmino;
|
|
301
|
-
/**
|
|
377
|
+
/**
|
|
378
|
+
* signer address
|
|
379
|
+
*/
|
|
302
380
|
signer?: string;
|
|
303
381
|
}
|
|
304
382
|
export interface MsgIBCSoftwareUpgradeAminoMsg {
|
|
305
383
|
type: "cosmos-sdk/MsgIBCSoftwareUpgrade";
|
|
306
384
|
value: MsgIBCSoftwareUpgradeAmino;
|
|
307
385
|
}
|
|
308
|
-
/**
|
|
386
|
+
/**
|
|
387
|
+
* MsgIBCSoftwareUpgradeResponse defines the Msg/IBCSoftwareUpgrade response type.
|
|
388
|
+
* @name MsgIBCSoftwareUpgradeResponse
|
|
389
|
+
* @package ibc.core.client.v1
|
|
390
|
+
* @see proto type: ibc.core.client.v1.MsgIBCSoftwareUpgradeResponse
|
|
391
|
+
*/
|
|
309
392
|
export interface MsgIBCSoftwareUpgradeResponse {
|
|
310
393
|
}
|
|
311
394
|
export interface MsgIBCSoftwareUpgradeResponseProtoMsg {
|
|
312
395
|
typeUrl: "/ibc.core.client.v1.MsgIBCSoftwareUpgradeResponse";
|
|
313
396
|
value: Uint8Array;
|
|
314
397
|
}
|
|
315
|
-
/**
|
|
398
|
+
/**
|
|
399
|
+
* MsgIBCSoftwareUpgradeResponse defines the Msg/IBCSoftwareUpgrade response type.
|
|
400
|
+
* @name MsgIBCSoftwareUpgradeResponseAmino
|
|
401
|
+
* @package ibc.core.client.v1
|
|
402
|
+
* @see proto type: ibc.core.client.v1.MsgIBCSoftwareUpgradeResponse
|
|
403
|
+
*/
|
|
316
404
|
export interface MsgIBCSoftwareUpgradeResponseAmino {
|
|
317
405
|
}
|
|
318
406
|
export interface MsgIBCSoftwareUpgradeResponseAminoMsg {
|
|
319
407
|
type: "cosmos-sdk/MsgIBCSoftwareUpgradeResponse";
|
|
320
408
|
value: MsgIBCSoftwareUpgradeResponseAmino;
|
|
321
409
|
}
|
|
322
|
-
/**
|
|
410
|
+
/**
|
|
411
|
+
* MsgUpdateParams defines the sdk.Msg type to update the client parameters.
|
|
412
|
+
* @name MsgUpdateParams
|
|
413
|
+
* @package ibc.core.client.v1
|
|
414
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateParams
|
|
415
|
+
*/
|
|
323
416
|
export interface MsgUpdateParams {
|
|
324
|
-
/**
|
|
417
|
+
/**
|
|
418
|
+
* signer address
|
|
419
|
+
*/
|
|
325
420
|
signer: string;
|
|
326
421
|
/**
|
|
327
422
|
* params defines the client parameters to update.
|
|
@@ -334,9 +429,16 @@ export interface MsgUpdateParamsProtoMsg {
|
|
|
334
429
|
typeUrl: "/ibc.core.client.v1.MsgUpdateParams";
|
|
335
430
|
value: Uint8Array;
|
|
336
431
|
}
|
|
337
|
-
/**
|
|
432
|
+
/**
|
|
433
|
+
* MsgUpdateParams defines the sdk.Msg type to update the client parameters.
|
|
434
|
+
* @name MsgUpdateParamsAmino
|
|
435
|
+
* @package ibc.core.client.v1
|
|
436
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateParams
|
|
437
|
+
*/
|
|
338
438
|
export interface MsgUpdateParamsAmino {
|
|
339
|
-
/**
|
|
439
|
+
/**
|
|
440
|
+
* signer address
|
|
441
|
+
*/
|
|
340
442
|
signer?: string;
|
|
341
443
|
/**
|
|
342
444
|
* params defines the client parameters to update.
|
|
@@ -349,56 +451,100 @@ export interface MsgUpdateParamsAminoMsg {
|
|
|
349
451
|
type: "cosmos-sdk/MsgUpdateParams";
|
|
350
452
|
value: MsgUpdateParamsAmino;
|
|
351
453
|
}
|
|
352
|
-
/**
|
|
454
|
+
/**
|
|
455
|
+
* MsgUpdateParamsResponse defines the MsgUpdateParams response type.
|
|
456
|
+
* @name MsgUpdateParamsResponse
|
|
457
|
+
* @package ibc.core.client.v1
|
|
458
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateParamsResponse
|
|
459
|
+
*/
|
|
353
460
|
export interface MsgUpdateParamsResponse {
|
|
354
461
|
}
|
|
355
462
|
export interface MsgUpdateParamsResponseProtoMsg {
|
|
356
463
|
typeUrl: "/ibc.core.client.v1.MsgUpdateParamsResponse";
|
|
357
464
|
value: Uint8Array;
|
|
358
465
|
}
|
|
359
|
-
/**
|
|
466
|
+
/**
|
|
467
|
+
* MsgUpdateParamsResponse defines the MsgUpdateParams response type.
|
|
468
|
+
* @name MsgUpdateParamsResponseAmino
|
|
469
|
+
* @package ibc.core.client.v1
|
|
470
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateParamsResponse
|
|
471
|
+
*/
|
|
360
472
|
export interface MsgUpdateParamsResponseAmino {
|
|
361
473
|
}
|
|
362
474
|
export interface MsgUpdateParamsResponseAminoMsg {
|
|
363
475
|
type: "cosmos-sdk/MsgUpdateParamsResponse";
|
|
364
476
|
value: MsgUpdateParamsResponseAmino;
|
|
365
477
|
}
|
|
366
|
-
/**
|
|
478
|
+
/**
|
|
479
|
+
* MsgDeleteClientCreator defines a message to delete the client creator of a client
|
|
480
|
+
* @name MsgDeleteClientCreator
|
|
481
|
+
* @package ibc.core.client.v1
|
|
482
|
+
* @see proto type: ibc.core.client.v1.MsgDeleteClientCreator
|
|
483
|
+
*/
|
|
367
484
|
export interface MsgDeleteClientCreator {
|
|
368
|
-
/**
|
|
485
|
+
/**
|
|
486
|
+
* client identifier
|
|
487
|
+
*/
|
|
369
488
|
clientId: string;
|
|
370
|
-
/**
|
|
489
|
+
/**
|
|
490
|
+
* signer address
|
|
491
|
+
*/
|
|
371
492
|
signer: string;
|
|
372
493
|
}
|
|
373
494
|
export interface MsgDeleteClientCreatorProtoMsg {
|
|
374
495
|
typeUrl: "/ibc.core.client.v1.MsgDeleteClientCreator";
|
|
375
496
|
value: Uint8Array;
|
|
376
497
|
}
|
|
377
|
-
/**
|
|
498
|
+
/**
|
|
499
|
+
* MsgDeleteClientCreator defines a message to delete the client creator of a client
|
|
500
|
+
* @name MsgDeleteClientCreatorAmino
|
|
501
|
+
* @package ibc.core.client.v1
|
|
502
|
+
* @see proto type: ibc.core.client.v1.MsgDeleteClientCreator
|
|
503
|
+
*/
|
|
378
504
|
export interface MsgDeleteClientCreatorAmino {
|
|
379
|
-
/**
|
|
505
|
+
/**
|
|
506
|
+
* client identifier
|
|
507
|
+
*/
|
|
380
508
|
client_id?: string;
|
|
381
|
-
/**
|
|
509
|
+
/**
|
|
510
|
+
* signer address
|
|
511
|
+
*/
|
|
382
512
|
signer?: string;
|
|
383
513
|
}
|
|
384
514
|
export interface MsgDeleteClientCreatorAminoMsg {
|
|
385
515
|
type: "cosmos-sdk/MsgDeleteClientCreator";
|
|
386
516
|
value: MsgDeleteClientCreatorAmino;
|
|
387
517
|
}
|
|
388
|
-
/**
|
|
518
|
+
/**
|
|
519
|
+
* MsgDeleteClientCreatorResponse defines the Msg/DeleteClientCreator response type.
|
|
520
|
+
* @name MsgDeleteClientCreatorResponse
|
|
521
|
+
* @package ibc.core.client.v1
|
|
522
|
+
* @see proto type: ibc.core.client.v1.MsgDeleteClientCreatorResponse
|
|
523
|
+
*/
|
|
389
524
|
export interface MsgDeleteClientCreatorResponse {
|
|
390
525
|
}
|
|
391
526
|
export interface MsgDeleteClientCreatorResponseProtoMsg {
|
|
392
527
|
typeUrl: "/ibc.core.client.v1.MsgDeleteClientCreatorResponse";
|
|
393
528
|
value: Uint8Array;
|
|
394
529
|
}
|
|
395
|
-
/**
|
|
530
|
+
/**
|
|
531
|
+
* MsgDeleteClientCreatorResponse defines the Msg/DeleteClientCreator response type.
|
|
532
|
+
* @name MsgDeleteClientCreatorResponseAmino
|
|
533
|
+
* @package ibc.core.client.v1
|
|
534
|
+
* @see proto type: ibc.core.client.v1.MsgDeleteClientCreatorResponse
|
|
535
|
+
*/
|
|
396
536
|
export interface MsgDeleteClientCreatorResponseAmino {
|
|
397
537
|
}
|
|
398
538
|
export interface MsgDeleteClientCreatorResponseAminoMsg {
|
|
399
539
|
type: "cosmos-sdk/MsgDeleteClientCreatorResponse";
|
|
400
540
|
value: MsgDeleteClientCreatorResponseAmino;
|
|
401
541
|
}
|
|
542
|
+
/**
|
|
543
|
+
* MsgCreateClient defines a message to create an IBC client
|
|
544
|
+
* @name MsgCreateClient
|
|
545
|
+
* @package ibc.core.client.v1
|
|
546
|
+
* @see proto type: ibc.core.client.v1.MsgCreateClient
|
|
547
|
+
*/
|
|
402
548
|
export declare const MsgCreateClient: {
|
|
403
549
|
typeUrl: string;
|
|
404
550
|
aminoType: string;
|
|
@@ -413,6 +559,12 @@ export declare const MsgCreateClient: {
|
|
|
413
559
|
toProto(message: MsgCreateClient): Uint8Array;
|
|
414
560
|
toProtoMsg(message: MsgCreateClient): MsgCreateClientProtoMsg;
|
|
415
561
|
};
|
|
562
|
+
/**
|
|
563
|
+
* MsgCreateClientResponse defines the Msg/CreateClient response type.
|
|
564
|
+
* @name MsgCreateClientResponse
|
|
565
|
+
* @package ibc.core.client.v1
|
|
566
|
+
* @see proto type: ibc.core.client.v1.MsgCreateClientResponse
|
|
567
|
+
*/
|
|
416
568
|
export declare const MsgCreateClientResponse: {
|
|
417
569
|
typeUrl: string;
|
|
418
570
|
aminoType: string;
|
|
@@ -427,6 +579,13 @@ export declare const MsgCreateClientResponse: {
|
|
|
427
579
|
toProto(message: MsgCreateClientResponse): Uint8Array;
|
|
428
580
|
toProtoMsg(message: MsgCreateClientResponse): MsgCreateClientResponseProtoMsg;
|
|
429
581
|
};
|
|
582
|
+
/**
|
|
583
|
+
* MsgUpdateClient defines an sdk.Msg to update a IBC client state using
|
|
584
|
+
* the given client message.
|
|
585
|
+
* @name MsgUpdateClient
|
|
586
|
+
* @package ibc.core.client.v1
|
|
587
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateClient
|
|
588
|
+
*/
|
|
430
589
|
export declare const MsgUpdateClient: {
|
|
431
590
|
typeUrl: string;
|
|
432
591
|
aminoType: string;
|
|
@@ -441,6 +600,12 @@ export declare const MsgUpdateClient: {
|
|
|
441
600
|
toProto(message: MsgUpdateClient): Uint8Array;
|
|
442
601
|
toProtoMsg(message: MsgUpdateClient): MsgUpdateClientProtoMsg;
|
|
443
602
|
};
|
|
603
|
+
/**
|
|
604
|
+
* MsgUpdateClientResponse defines the Msg/UpdateClient response type.
|
|
605
|
+
* @name MsgUpdateClientResponse
|
|
606
|
+
* @package ibc.core.client.v1
|
|
607
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateClientResponse
|
|
608
|
+
*/
|
|
444
609
|
export declare const MsgUpdateClientResponse: {
|
|
445
610
|
typeUrl: string;
|
|
446
611
|
aminoType: string;
|
|
@@ -455,6 +620,13 @@ export declare const MsgUpdateClientResponse: {
|
|
|
455
620
|
toProto(message: MsgUpdateClientResponse): Uint8Array;
|
|
456
621
|
toProtoMsg(message: MsgUpdateClientResponse): MsgUpdateClientResponseProtoMsg;
|
|
457
622
|
};
|
|
623
|
+
/**
|
|
624
|
+
* MsgUpgradeClient defines an sdk.Msg to upgrade an IBC client to a new client
|
|
625
|
+
* state
|
|
626
|
+
* @name MsgUpgradeClient
|
|
627
|
+
* @package ibc.core.client.v1
|
|
628
|
+
* @see proto type: ibc.core.client.v1.MsgUpgradeClient
|
|
629
|
+
*/
|
|
458
630
|
export declare const MsgUpgradeClient: {
|
|
459
631
|
typeUrl: string;
|
|
460
632
|
aminoType: string;
|
|
@@ -469,6 +641,12 @@ export declare const MsgUpgradeClient: {
|
|
|
469
641
|
toProto(message: MsgUpgradeClient): Uint8Array;
|
|
470
642
|
toProtoMsg(message: MsgUpgradeClient): MsgUpgradeClientProtoMsg;
|
|
471
643
|
};
|
|
644
|
+
/**
|
|
645
|
+
* MsgUpgradeClientResponse defines the Msg/UpgradeClient response type.
|
|
646
|
+
* @name MsgUpgradeClientResponse
|
|
647
|
+
* @package ibc.core.client.v1
|
|
648
|
+
* @see proto type: ibc.core.client.v1.MsgUpgradeClientResponse
|
|
649
|
+
*/
|
|
472
650
|
export declare const MsgUpgradeClientResponse: {
|
|
473
651
|
typeUrl: string;
|
|
474
652
|
aminoType: string;
|
|
@@ -483,34 +661,12 @@ export declare const MsgUpgradeClientResponse: {
|
|
|
483
661
|
toProto(message: MsgUpgradeClientResponse): Uint8Array;
|
|
484
662
|
toProtoMsg(message: MsgUpgradeClientResponse): MsgUpgradeClientResponseProtoMsg;
|
|
485
663
|
};
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
fromAmino(object: MsgSubmitMisbehaviourAmino): MsgSubmitMisbehaviour;
|
|
493
|
-
toAmino(message: MsgSubmitMisbehaviour): MsgSubmitMisbehaviourAmino;
|
|
494
|
-
fromAminoMsg(object: MsgSubmitMisbehaviourAminoMsg): MsgSubmitMisbehaviour;
|
|
495
|
-
toAminoMsg(message: MsgSubmitMisbehaviour): MsgSubmitMisbehaviourAminoMsg;
|
|
496
|
-
fromProtoMsg(message: MsgSubmitMisbehaviourProtoMsg): MsgSubmitMisbehaviour;
|
|
497
|
-
toProto(message: MsgSubmitMisbehaviour): Uint8Array;
|
|
498
|
-
toProtoMsg(message: MsgSubmitMisbehaviour): MsgSubmitMisbehaviourProtoMsg;
|
|
499
|
-
};
|
|
500
|
-
export declare const MsgSubmitMisbehaviourResponse: {
|
|
501
|
-
typeUrl: string;
|
|
502
|
-
aminoType: string;
|
|
503
|
-
encode(_: MsgSubmitMisbehaviourResponse, writer?: BinaryWriter): BinaryWriter;
|
|
504
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitMisbehaviourResponse;
|
|
505
|
-
fromPartial(_: DeepPartial<MsgSubmitMisbehaviourResponse>): MsgSubmitMisbehaviourResponse;
|
|
506
|
-
fromAmino(_: MsgSubmitMisbehaviourResponseAmino): MsgSubmitMisbehaviourResponse;
|
|
507
|
-
toAmino(_: MsgSubmitMisbehaviourResponse): MsgSubmitMisbehaviourResponseAmino;
|
|
508
|
-
fromAminoMsg(object: MsgSubmitMisbehaviourResponseAminoMsg): MsgSubmitMisbehaviourResponse;
|
|
509
|
-
toAminoMsg(message: MsgSubmitMisbehaviourResponse): MsgSubmitMisbehaviourResponseAminoMsg;
|
|
510
|
-
fromProtoMsg(message: MsgSubmitMisbehaviourResponseProtoMsg): MsgSubmitMisbehaviourResponse;
|
|
511
|
-
toProto(message: MsgSubmitMisbehaviourResponse): Uint8Array;
|
|
512
|
-
toProtoMsg(message: MsgSubmitMisbehaviourResponse): MsgSubmitMisbehaviourResponseProtoMsg;
|
|
513
|
-
};
|
|
664
|
+
/**
|
|
665
|
+
* MsgRecoverClient defines the message used to recover a frozen or expired client.
|
|
666
|
+
* @name MsgRecoverClient
|
|
667
|
+
* @package ibc.core.client.v1
|
|
668
|
+
* @see proto type: ibc.core.client.v1.MsgRecoverClient
|
|
669
|
+
*/
|
|
514
670
|
export declare const MsgRecoverClient: {
|
|
515
671
|
typeUrl: string;
|
|
516
672
|
aminoType: string;
|
|
@@ -525,6 +681,12 @@ export declare const MsgRecoverClient: {
|
|
|
525
681
|
toProto(message: MsgRecoverClient): Uint8Array;
|
|
526
682
|
toProtoMsg(message: MsgRecoverClient): MsgRecoverClientProtoMsg;
|
|
527
683
|
};
|
|
684
|
+
/**
|
|
685
|
+
* MsgRecoverClientResponse defines the Msg/RecoverClient response type.
|
|
686
|
+
* @name MsgRecoverClientResponse
|
|
687
|
+
* @package ibc.core.client.v1
|
|
688
|
+
* @see proto type: ibc.core.client.v1.MsgRecoverClientResponse
|
|
689
|
+
*/
|
|
528
690
|
export declare const MsgRecoverClientResponse: {
|
|
529
691
|
typeUrl: string;
|
|
530
692
|
aminoType: string;
|
|
@@ -539,6 +701,12 @@ export declare const MsgRecoverClientResponse: {
|
|
|
539
701
|
toProto(message: MsgRecoverClientResponse): Uint8Array;
|
|
540
702
|
toProtoMsg(message: MsgRecoverClientResponse): MsgRecoverClientResponseProtoMsg;
|
|
541
703
|
};
|
|
704
|
+
/**
|
|
705
|
+
* MsgIBCSoftwareUpgrade defines the message used to schedule an upgrade of an IBC client using a v1 governance proposal
|
|
706
|
+
* @name MsgIBCSoftwareUpgrade
|
|
707
|
+
* @package ibc.core.client.v1
|
|
708
|
+
* @see proto type: ibc.core.client.v1.MsgIBCSoftwareUpgrade
|
|
709
|
+
*/
|
|
542
710
|
export declare const MsgIBCSoftwareUpgrade: {
|
|
543
711
|
typeUrl: string;
|
|
544
712
|
aminoType: string;
|
|
@@ -553,6 +721,12 @@ export declare const MsgIBCSoftwareUpgrade: {
|
|
|
553
721
|
toProto(message: MsgIBCSoftwareUpgrade): Uint8Array;
|
|
554
722
|
toProtoMsg(message: MsgIBCSoftwareUpgrade): MsgIBCSoftwareUpgradeProtoMsg;
|
|
555
723
|
};
|
|
724
|
+
/**
|
|
725
|
+
* MsgIBCSoftwareUpgradeResponse defines the Msg/IBCSoftwareUpgrade response type.
|
|
726
|
+
* @name MsgIBCSoftwareUpgradeResponse
|
|
727
|
+
* @package ibc.core.client.v1
|
|
728
|
+
* @see proto type: ibc.core.client.v1.MsgIBCSoftwareUpgradeResponse
|
|
729
|
+
*/
|
|
556
730
|
export declare const MsgIBCSoftwareUpgradeResponse: {
|
|
557
731
|
typeUrl: string;
|
|
558
732
|
aminoType: string;
|
|
@@ -567,6 +741,12 @@ export declare const MsgIBCSoftwareUpgradeResponse: {
|
|
|
567
741
|
toProto(message: MsgIBCSoftwareUpgradeResponse): Uint8Array;
|
|
568
742
|
toProtoMsg(message: MsgIBCSoftwareUpgradeResponse): MsgIBCSoftwareUpgradeResponseProtoMsg;
|
|
569
743
|
};
|
|
744
|
+
/**
|
|
745
|
+
* MsgUpdateParams defines the sdk.Msg type to update the client parameters.
|
|
746
|
+
* @name MsgUpdateParams
|
|
747
|
+
* @package ibc.core.client.v1
|
|
748
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateParams
|
|
749
|
+
*/
|
|
570
750
|
export declare const MsgUpdateParams: {
|
|
571
751
|
typeUrl: string;
|
|
572
752
|
aminoType: string;
|
|
@@ -581,6 +761,12 @@ export declare const MsgUpdateParams: {
|
|
|
581
761
|
toProto(message: MsgUpdateParams): Uint8Array;
|
|
582
762
|
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
583
763
|
};
|
|
764
|
+
/**
|
|
765
|
+
* MsgUpdateParamsResponse defines the MsgUpdateParams response type.
|
|
766
|
+
* @name MsgUpdateParamsResponse
|
|
767
|
+
* @package ibc.core.client.v1
|
|
768
|
+
* @see proto type: ibc.core.client.v1.MsgUpdateParamsResponse
|
|
769
|
+
*/
|
|
584
770
|
export declare const MsgUpdateParamsResponse: {
|
|
585
771
|
typeUrl: string;
|
|
586
772
|
aminoType: string;
|
|
@@ -595,6 +781,12 @@ export declare const MsgUpdateParamsResponse: {
|
|
|
595
781
|
toProto(message: MsgUpdateParamsResponse): Uint8Array;
|
|
596
782
|
toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
|
|
597
783
|
};
|
|
784
|
+
/**
|
|
785
|
+
* MsgDeleteClientCreator defines a message to delete the client creator of a client
|
|
786
|
+
* @name MsgDeleteClientCreator
|
|
787
|
+
* @package ibc.core.client.v1
|
|
788
|
+
* @see proto type: ibc.core.client.v1.MsgDeleteClientCreator
|
|
789
|
+
*/
|
|
598
790
|
export declare const MsgDeleteClientCreator: {
|
|
599
791
|
typeUrl: string;
|
|
600
792
|
aminoType: string;
|
|
@@ -609,6 +801,12 @@ export declare const MsgDeleteClientCreator: {
|
|
|
609
801
|
toProto(message: MsgDeleteClientCreator): Uint8Array;
|
|
610
802
|
toProtoMsg(message: MsgDeleteClientCreator): MsgDeleteClientCreatorProtoMsg;
|
|
611
803
|
};
|
|
804
|
+
/**
|
|
805
|
+
* MsgDeleteClientCreatorResponse defines the Msg/DeleteClientCreator response type.
|
|
806
|
+
* @name MsgDeleteClientCreatorResponse
|
|
807
|
+
* @package ibc.core.client.v1
|
|
808
|
+
* @see proto type: ibc.core.client.v1.MsgDeleteClientCreatorResponse
|
|
809
|
+
*/
|
|
612
810
|
export declare const MsgDeleteClientCreatorResponse: {
|
|
613
811
|
typeUrl: string;
|
|
614
812
|
aminoType: string;
|