@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
|
@@ -1,22 +1,40 @@
|
|
|
1
1
|
import { Params, ParamsAmino } from "./params";
|
|
2
|
-
import { BinaryReader, BinaryWriter } from "
|
|
3
|
-
import { DeepPartial } from "
|
|
4
|
-
/**
|
|
2
|
+
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
|
+
import { DeepPartial } from "../../../helpers";
|
|
4
|
+
/**
|
|
5
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
6
|
+
* @name MsgUpdateParams
|
|
7
|
+
* @package sparkdream.blog.v1
|
|
8
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParams
|
|
9
|
+
*/
|
|
5
10
|
export interface MsgUpdateParams {
|
|
6
|
-
/**
|
|
11
|
+
/**
|
|
12
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
13
|
+
*/
|
|
7
14
|
authority: string;
|
|
8
|
-
/**
|
|
15
|
+
/**
|
|
16
|
+
* NOTE: All parameters must be supplied.
|
|
17
|
+
*/
|
|
9
18
|
params: Params;
|
|
10
19
|
}
|
|
11
20
|
export interface MsgUpdateParamsProtoMsg {
|
|
12
|
-
typeUrl: "/sparkdream.blog.MsgUpdateParams";
|
|
21
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdateParams";
|
|
13
22
|
value: Uint8Array;
|
|
14
23
|
}
|
|
15
|
-
/**
|
|
24
|
+
/**
|
|
25
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
26
|
+
* @name MsgUpdateParamsAmino
|
|
27
|
+
* @package sparkdream.blog.v1
|
|
28
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParams
|
|
29
|
+
*/
|
|
16
30
|
export interface MsgUpdateParamsAmino {
|
|
17
|
-
/**
|
|
31
|
+
/**
|
|
32
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
33
|
+
*/
|
|
18
34
|
authority?: string;
|
|
19
|
-
/**
|
|
35
|
+
/**
|
|
36
|
+
* NOTE: All parameters must be supplied.
|
|
37
|
+
*/
|
|
20
38
|
params: ParamsAmino;
|
|
21
39
|
}
|
|
22
40
|
export interface MsgUpdateParamsAminoMsg {
|
|
@@ -26,55 +44,91 @@ export interface MsgUpdateParamsAminoMsg {
|
|
|
26
44
|
/**
|
|
27
45
|
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
28
46
|
* MsgUpdateParams message.
|
|
47
|
+
* @name MsgUpdateParamsResponse
|
|
48
|
+
* @package sparkdream.blog.v1
|
|
49
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParamsResponse
|
|
29
50
|
*/
|
|
30
51
|
export interface MsgUpdateParamsResponse {
|
|
31
52
|
}
|
|
32
53
|
export interface MsgUpdateParamsResponseProtoMsg {
|
|
33
|
-
typeUrl: "/sparkdream.blog.MsgUpdateParamsResponse";
|
|
54
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdateParamsResponse";
|
|
34
55
|
value: Uint8Array;
|
|
35
56
|
}
|
|
36
57
|
/**
|
|
37
58
|
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
38
59
|
* MsgUpdateParams message.
|
|
60
|
+
* @name MsgUpdateParamsResponseAmino
|
|
61
|
+
* @package sparkdream.blog.v1
|
|
62
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParamsResponse
|
|
39
63
|
*/
|
|
40
64
|
export interface MsgUpdateParamsResponseAmino {
|
|
41
65
|
}
|
|
42
66
|
export interface MsgUpdateParamsResponseAminoMsg {
|
|
43
|
-
type: "/sparkdream.blog.MsgUpdateParamsResponse";
|
|
67
|
+
type: "/sparkdream.blog.v1.MsgUpdateParamsResponse";
|
|
44
68
|
value: MsgUpdateParamsResponseAmino;
|
|
45
69
|
}
|
|
70
|
+
/**
|
|
71
|
+
* MsgCreatePost defines the MsgCreatePost message.
|
|
72
|
+
* @name MsgCreatePost
|
|
73
|
+
* @package sparkdream.blog.v1
|
|
74
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePost
|
|
75
|
+
*/
|
|
46
76
|
export interface MsgCreatePost {
|
|
47
77
|
creator: string;
|
|
48
78
|
title: string;
|
|
49
79
|
body: string;
|
|
50
80
|
}
|
|
51
81
|
export interface MsgCreatePostProtoMsg {
|
|
52
|
-
typeUrl: "/sparkdream.blog.MsgCreatePost";
|
|
82
|
+
typeUrl: "/sparkdream.blog.v1.MsgCreatePost";
|
|
53
83
|
value: Uint8Array;
|
|
54
84
|
}
|
|
85
|
+
/**
|
|
86
|
+
* MsgCreatePost defines the MsgCreatePost message.
|
|
87
|
+
* @name MsgCreatePostAmino
|
|
88
|
+
* @package sparkdream.blog.v1
|
|
89
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePost
|
|
90
|
+
*/
|
|
55
91
|
export interface MsgCreatePostAmino {
|
|
56
92
|
creator?: string;
|
|
57
93
|
title?: string;
|
|
58
94
|
body?: string;
|
|
59
95
|
}
|
|
60
96
|
export interface MsgCreatePostAminoMsg {
|
|
61
|
-
type: "/sparkdream.blog.MsgCreatePost";
|
|
97
|
+
type: "/sparkdream.blog.v1.MsgCreatePost";
|
|
62
98
|
value: MsgCreatePostAmino;
|
|
63
99
|
}
|
|
100
|
+
/**
|
|
101
|
+
* MsgCreatePostResponse defines the MsgCreatePostResponse message.
|
|
102
|
+
* @name MsgCreatePostResponse
|
|
103
|
+
* @package sparkdream.blog.v1
|
|
104
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePostResponse
|
|
105
|
+
*/
|
|
64
106
|
export interface MsgCreatePostResponse {
|
|
65
107
|
id: bigint;
|
|
66
108
|
}
|
|
67
109
|
export interface MsgCreatePostResponseProtoMsg {
|
|
68
|
-
typeUrl: "/sparkdream.blog.MsgCreatePostResponse";
|
|
110
|
+
typeUrl: "/sparkdream.blog.v1.MsgCreatePostResponse";
|
|
69
111
|
value: Uint8Array;
|
|
70
112
|
}
|
|
113
|
+
/**
|
|
114
|
+
* MsgCreatePostResponse defines the MsgCreatePostResponse message.
|
|
115
|
+
* @name MsgCreatePostResponseAmino
|
|
116
|
+
* @package sparkdream.blog.v1
|
|
117
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePostResponse
|
|
118
|
+
*/
|
|
71
119
|
export interface MsgCreatePostResponseAmino {
|
|
72
120
|
id?: string;
|
|
73
121
|
}
|
|
74
122
|
export interface MsgCreatePostResponseAminoMsg {
|
|
75
|
-
type: "/sparkdream.blog.MsgCreatePostResponse";
|
|
123
|
+
type: "/sparkdream.blog.v1.MsgCreatePostResponse";
|
|
76
124
|
value: MsgCreatePostResponseAmino;
|
|
77
125
|
}
|
|
126
|
+
/**
|
|
127
|
+
* MsgUpdatePost defines the MsgUpdatePost message.
|
|
128
|
+
* @name MsgUpdatePost
|
|
129
|
+
* @package sparkdream.blog.v1
|
|
130
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePost
|
|
131
|
+
*/
|
|
78
132
|
export interface MsgUpdatePost {
|
|
79
133
|
creator: string;
|
|
80
134
|
title: string;
|
|
@@ -82,9 +136,15 @@ export interface MsgUpdatePost {
|
|
|
82
136
|
id: bigint;
|
|
83
137
|
}
|
|
84
138
|
export interface MsgUpdatePostProtoMsg {
|
|
85
|
-
typeUrl: "/sparkdream.blog.MsgUpdatePost";
|
|
139
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdatePost";
|
|
86
140
|
value: Uint8Array;
|
|
87
141
|
}
|
|
142
|
+
/**
|
|
143
|
+
* MsgUpdatePost defines the MsgUpdatePost message.
|
|
144
|
+
* @name MsgUpdatePostAmino
|
|
145
|
+
* @package sparkdream.blog.v1
|
|
146
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePost
|
|
147
|
+
*/
|
|
88
148
|
export interface MsgUpdatePostAmino {
|
|
89
149
|
creator?: string;
|
|
90
150
|
title?: string;
|
|
@@ -92,49 +152,91 @@ export interface MsgUpdatePostAmino {
|
|
|
92
152
|
id?: string;
|
|
93
153
|
}
|
|
94
154
|
export interface MsgUpdatePostAminoMsg {
|
|
95
|
-
type: "/sparkdream.blog.MsgUpdatePost";
|
|
155
|
+
type: "/sparkdream.blog.v1.MsgUpdatePost";
|
|
96
156
|
value: MsgUpdatePostAmino;
|
|
97
157
|
}
|
|
158
|
+
/**
|
|
159
|
+
* MsgUpdatePostResponse defines the MsgUpdatePostResponse message.
|
|
160
|
+
* @name MsgUpdatePostResponse
|
|
161
|
+
* @package sparkdream.blog.v1
|
|
162
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePostResponse
|
|
163
|
+
*/
|
|
98
164
|
export interface MsgUpdatePostResponse {
|
|
99
165
|
}
|
|
100
166
|
export interface MsgUpdatePostResponseProtoMsg {
|
|
101
|
-
typeUrl: "/sparkdream.blog.MsgUpdatePostResponse";
|
|
167
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdatePostResponse";
|
|
102
168
|
value: Uint8Array;
|
|
103
169
|
}
|
|
170
|
+
/**
|
|
171
|
+
* MsgUpdatePostResponse defines the MsgUpdatePostResponse message.
|
|
172
|
+
* @name MsgUpdatePostResponseAmino
|
|
173
|
+
* @package sparkdream.blog.v1
|
|
174
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePostResponse
|
|
175
|
+
*/
|
|
104
176
|
export interface MsgUpdatePostResponseAmino {
|
|
105
177
|
}
|
|
106
178
|
export interface MsgUpdatePostResponseAminoMsg {
|
|
107
|
-
type: "/sparkdream.blog.MsgUpdatePostResponse";
|
|
179
|
+
type: "/sparkdream.blog.v1.MsgUpdatePostResponse";
|
|
108
180
|
value: MsgUpdatePostResponseAmino;
|
|
109
181
|
}
|
|
182
|
+
/**
|
|
183
|
+
* MsgDeletePost defines the MsgDeletePost message.
|
|
184
|
+
* @name MsgDeletePost
|
|
185
|
+
* @package sparkdream.blog.v1
|
|
186
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePost
|
|
187
|
+
*/
|
|
110
188
|
export interface MsgDeletePost {
|
|
111
189
|
creator: string;
|
|
112
190
|
id: bigint;
|
|
113
191
|
}
|
|
114
192
|
export interface MsgDeletePostProtoMsg {
|
|
115
|
-
typeUrl: "/sparkdream.blog.MsgDeletePost";
|
|
193
|
+
typeUrl: "/sparkdream.blog.v1.MsgDeletePost";
|
|
116
194
|
value: Uint8Array;
|
|
117
195
|
}
|
|
196
|
+
/**
|
|
197
|
+
* MsgDeletePost defines the MsgDeletePost message.
|
|
198
|
+
* @name MsgDeletePostAmino
|
|
199
|
+
* @package sparkdream.blog.v1
|
|
200
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePost
|
|
201
|
+
*/
|
|
118
202
|
export interface MsgDeletePostAmino {
|
|
119
203
|
creator?: string;
|
|
120
204
|
id?: string;
|
|
121
205
|
}
|
|
122
206
|
export interface MsgDeletePostAminoMsg {
|
|
123
|
-
type: "/sparkdream.blog.MsgDeletePost";
|
|
207
|
+
type: "/sparkdream.blog.v1.MsgDeletePost";
|
|
124
208
|
value: MsgDeletePostAmino;
|
|
125
209
|
}
|
|
210
|
+
/**
|
|
211
|
+
* MsgDeletePostResponse defines the MsgDeletePostResponse message.
|
|
212
|
+
* @name MsgDeletePostResponse
|
|
213
|
+
* @package sparkdream.blog.v1
|
|
214
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePostResponse
|
|
215
|
+
*/
|
|
126
216
|
export interface MsgDeletePostResponse {
|
|
127
217
|
}
|
|
128
218
|
export interface MsgDeletePostResponseProtoMsg {
|
|
129
|
-
typeUrl: "/sparkdream.blog.MsgDeletePostResponse";
|
|
219
|
+
typeUrl: "/sparkdream.blog.v1.MsgDeletePostResponse";
|
|
130
220
|
value: Uint8Array;
|
|
131
221
|
}
|
|
222
|
+
/**
|
|
223
|
+
* MsgDeletePostResponse defines the MsgDeletePostResponse message.
|
|
224
|
+
* @name MsgDeletePostResponseAmino
|
|
225
|
+
* @package sparkdream.blog.v1
|
|
226
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePostResponse
|
|
227
|
+
*/
|
|
132
228
|
export interface MsgDeletePostResponseAmino {
|
|
133
229
|
}
|
|
134
230
|
export interface MsgDeletePostResponseAminoMsg {
|
|
135
|
-
type: "/sparkdream.blog.MsgDeletePostResponse";
|
|
231
|
+
type: "/sparkdream.blog.v1.MsgDeletePostResponse";
|
|
136
232
|
value: MsgDeletePostResponseAmino;
|
|
137
233
|
}
|
|
234
|
+
/**
|
|
235
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
236
|
+
* @name MsgUpdateParams
|
|
237
|
+
* @package sparkdream.blog.v1
|
|
238
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParams
|
|
239
|
+
*/
|
|
138
240
|
export declare const MsgUpdateParams: {
|
|
139
241
|
typeUrl: string;
|
|
140
242
|
aminoType: string;
|
|
@@ -149,6 +251,13 @@ export declare const MsgUpdateParams: {
|
|
|
149
251
|
toProto(message: MsgUpdateParams): Uint8Array;
|
|
150
252
|
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
151
253
|
};
|
|
254
|
+
/**
|
|
255
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
256
|
+
* MsgUpdateParams message.
|
|
257
|
+
* @name MsgUpdateParamsResponse
|
|
258
|
+
* @package sparkdream.blog.v1
|
|
259
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParamsResponse
|
|
260
|
+
*/
|
|
152
261
|
export declare const MsgUpdateParamsResponse: {
|
|
153
262
|
typeUrl: string;
|
|
154
263
|
encode(_: MsgUpdateParamsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -161,6 +270,12 @@ export declare const MsgUpdateParamsResponse: {
|
|
|
161
270
|
toProto(message: MsgUpdateParamsResponse): Uint8Array;
|
|
162
271
|
toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
|
|
163
272
|
};
|
|
273
|
+
/**
|
|
274
|
+
* MsgCreatePost defines the MsgCreatePost message.
|
|
275
|
+
* @name MsgCreatePost
|
|
276
|
+
* @package sparkdream.blog.v1
|
|
277
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePost
|
|
278
|
+
*/
|
|
164
279
|
export declare const MsgCreatePost: {
|
|
165
280
|
typeUrl: string;
|
|
166
281
|
encode(message: MsgCreatePost, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -173,6 +288,12 @@ export declare const MsgCreatePost: {
|
|
|
173
288
|
toProto(message: MsgCreatePost): Uint8Array;
|
|
174
289
|
toProtoMsg(message: MsgCreatePost): MsgCreatePostProtoMsg;
|
|
175
290
|
};
|
|
291
|
+
/**
|
|
292
|
+
* MsgCreatePostResponse defines the MsgCreatePostResponse message.
|
|
293
|
+
* @name MsgCreatePostResponse
|
|
294
|
+
* @package sparkdream.blog.v1
|
|
295
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePostResponse
|
|
296
|
+
*/
|
|
176
297
|
export declare const MsgCreatePostResponse: {
|
|
177
298
|
typeUrl: string;
|
|
178
299
|
encode(message: MsgCreatePostResponse, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -185,6 +306,12 @@ export declare const MsgCreatePostResponse: {
|
|
|
185
306
|
toProto(message: MsgCreatePostResponse): Uint8Array;
|
|
186
307
|
toProtoMsg(message: MsgCreatePostResponse): MsgCreatePostResponseProtoMsg;
|
|
187
308
|
};
|
|
309
|
+
/**
|
|
310
|
+
* MsgUpdatePost defines the MsgUpdatePost message.
|
|
311
|
+
* @name MsgUpdatePost
|
|
312
|
+
* @package sparkdream.blog.v1
|
|
313
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePost
|
|
314
|
+
*/
|
|
188
315
|
export declare const MsgUpdatePost: {
|
|
189
316
|
typeUrl: string;
|
|
190
317
|
encode(message: MsgUpdatePost, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -197,6 +324,12 @@ export declare const MsgUpdatePost: {
|
|
|
197
324
|
toProto(message: MsgUpdatePost): Uint8Array;
|
|
198
325
|
toProtoMsg(message: MsgUpdatePost): MsgUpdatePostProtoMsg;
|
|
199
326
|
};
|
|
327
|
+
/**
|
|
328
|
+
* MsgUpdatePostResponse defines the MsgUpdatePostResponse message.
|
|
329
|
+
* @name MsgUpdatePostResponse
|
|
330
|
+
* @package sparkdream.blog.v1
|
|
331
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePostResponse
|
|
332
|
+
*/
|
|
200
333
|
export declare const MsgUpdatePostResponse: {
|
|
201
334
|
typeUrl: string;
|
|
202
335
|
encode(_: MsgUpdatePostResponse, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -209,6 +342,12 @@ export declare const MsgUpdatePostResponse: {
|
|
|
209
342
|
toProto(message: MsgUpdatePostResponse): Uint8Array;
|
|
210
343
|
toProtoMsg(message: MsgUpdatePostResponse): MsgUpdatePostResponseProtoMsg;
|
|
211
344
|
};
|
|
345
|
+
/**
|
|
346
|
+
* MsgDeletePost defines the MsgDeletePost message.
|
|
347
|
+
* @name MsgDeletePost
|
|
348
|
+
* @package sparkdream.blog.v1
|
|
349
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePost
|
|
350
|
+
*/
|
|
212
351
|
export declare const MsgDeletePost: {
|
|
213
352
|
typeUrl: string;
|
|
214
353
|
encode(message: MsgDeletePost, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -221,6 +360,12 @@ export declare const MsgDeletePost: {
|
|
|
221
360
|
toProto(message: MsgDeletePost): Uint8Array;
|
|
222
361
|
toProtoMsg(message: MsgDeletePost): MsgDeletePostProtoMsg;
|
|
223
362
|
};
|
|
363
|
+
/**
|
|
364
|
+
* MsgDeletePostResponse defines the MsgDeletePostResponse message.
|
|
365
|
+
* @name MsgDeletePostResponse
|
|
366
|
+
* @package sparkdream.blog.v1
|
|
367
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePostResponse
|
|
368
|
+
*/
|
|
224
369
|
export declare const MsgDeletePostResponse: {
|
|
225
370
|
typeUrl: string;
|
|
226
371
|
encode(_: MsgDeletePostResponse, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -3,15 +3,21 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.MsgDeletePostResponse = exports.MsgDeletePost = exports.MsgUpdatePostResponse = exports.MsgUpdatePost = exports.MsgCreatePostResponse = exports.MsgCreatePost = exports.MsgUpdateParamsResponse = exports.MsgUpdateParams = void 0;
|
|
4
4
|
//@ts-nocheck
|
|
5
5
|
const params_1 = require("./params");
|
|
6
|
-
const binary_1 = require("
|
|
6
|
+
const binary_1 = require("../../../binary");
|
|
7
7
|
function createBaseMsgUpdateParams() {
|
|
8
8
|
return {
|
|
9
9
|
authority: "",
|
|
10
10
|
params: params_1.Params.fromPartial({})
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
15
|
+
* @name MsgUpdateParams
|
|
16
|
+
* @package sparkdream.blog.v1
|
|
17
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParams
|
|
18
|
+
*/
|
|
13
19
|
exports.MsgUpdateParams = {
|
|
14
|
-
typeUrl: "/sparkdream.blog.MsgUpdateParams",
|
|
20
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdateParams",
|
|
15
21
|
aminoType: "sparkdream/x/blog/MsgUpdateParams",
|
|
16
22
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
17
23
|
if (message.authority !== "") {
|
|
@@ -81,7 +87,7 @@ exports.MsgUpdateParams = {
|
|
|
81
87
|
},
|
|
82
88
|
toProtoMsg(message) {
|
|
83
89
|
return {
|
|
84
|
-
typeUrl: "/sparkdream.blog.MsgUpdateParams",
|
|
90
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdateParams",
|
|
85
91
|
value: exports.MsgUpdateParams.encode(message).finish()
|
|
86
92
|
};
|
|
87
93
|
}
|
|
@@ -89,8 +95,15 @@ exports.MsgUpdateParams = {
|
|
|
89
95
|
function createBaseMsgUpdateParamsResponse() {
|
|
90
96
|
return {};
|
|
91
97
|
}
|
|
98
|
+
/**
|
|
99
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
100
|
+
* MsgUpdateParams message.
|
|
101
|
+
* @name MsgUpdateParamsResponse
|
|
102
|
+
* @package sparkdream.blog.v1
|
|
103
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParamsResponse
|
|
104
|
+
*/
|
|
92
105
|
exports.MsgUpdateParamsResponse = {
|
|
93
|
-
typeUrl: "/sparkdream.blog.MsgUpdateParamsResponse",
|
|
106
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdateParamsResponse",
|
|
94
107
|
encode(_, writer = binary_1.BinaryWriter.create()) {
|
|
95
108
|
return writer;
|
|
96
109
|
},
|
|
@@ -131,7 +144,7 @@ exports.MsgUpdateParamsResponse = {
|
|
|
131
144
|
},
|
|
132
145
|
toProtoMsg(message) {
|
|
133
146
|
return {
|
|
134
|
-
typeUrl: "/sparkdream.blog.MsgUpdateParamsResponse",
|
|
147
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdateParamsResponse",
|
|
135
148
|
value: exports.MsgUpdateParamsResponse.encode(message).finish()
|
|
136
149
|
};
|
|
137
150
|
}
|
|
@@ -143,8 +156,14 @@ function createBaseMsgCreatePost() {
|
|
|
143
156
|
body: ""
|
|
144
157
|
};
|
|
145
158
|
}
|
|
159
|
+
/**
|
|
160
|
+
* MsgCreatePost defines the MsgCreatePost message.
|
|
161
|
+
* @name MsgCreatePost
|
|
162
|
+
* @package sparkdream.blog.v1
|
|
163
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePost
|
|
164
|
+
*/
|
|
146
165
|
exports.MsgCreatePost = {
|
|
147
|
-
typeUrl: "/sparkdream.blog.MsgCreatePost",
|
|
166
|
+
typeUrl: "/sparkdream.blog.v1.MsgCreatePost",
|
|
148
167
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
149
168
|
if (message.creator !== "") {
|
|
150
169
|
writer.uint32(10).string(message.creator);
|
|
@@ -218,7 +237,7 @@ exports.MsgCreatePost = {
|
|
|
218
237
|
},
|
|
219
238
|
toProtoMsg(message) {
|
|
220
239
|
return {
|
|
221
|
-
typeUrl: "/sparkdream.blog.MsgCreatePost",
|
|
240
|
+
typeUrl: "/sparkdream.blog.v1.MsgCreatePost",
|
|
222
241
|
value: exports.MsgCreatePost.encode(message).finish()
|
|
223
242
|
};
|
|
224
243
|
}
|
|
@@ -228,8 +247,14 @@ function createBaseMsgCreatePostResponse() {
|
|
|
228
247
|
id: BigInt(0)
|
|
229
248
|
};
|
|
230
249
|
}
|
|
250
|
+
/**
|
|
251
|
+
* MsgCreatePostResponse defines the MsgCreatePostResponse message.
|
|
252
|
+
* @name MsgCreatePostResponse
|
|
253
|
+
* @package sparkdream.blog.v1
|
|
254
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePostResponse
|
|
255
|
+
*/
|
|
231
256
|
exports.MsgCreatePostResponse = {
|
|
232
|
-
typeUrl: "/sparkdream.blog.MsgCreatePostResponse",
|
|
257
|
+
typeUrl: "/sparkdream.blog.v1.MsgCreatePostResponse",
|
|
233
258
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
234
259
|
if (message.id !== BigInt(0)) {
|
|
235
260
|
writer.uint32(8).uint64(message.id);
|
|
@@ -281,7 +306,7 @@ exports.MsgCreatePostResponse = {
|
|
|
281
306
|
},
|
|
282
307
|
toProtoMsg(message) {
|
|
283
308
|
return {
|
|
284
|
-
typeUrl: "/sparkdream.blog.MsgCreatePostResponse",
|
|
309
|
+
typeUrl: "/sparkdream.blog.v1.MsgCreatePostResponse",
|
|
285
310
|
value: exports.MsgCreatePostResponse.encode(message).finish()
|
|
286
311
|
};
|
|
287
312
|
}
|
|
@@ -294,8 +319,14 @@ function createBaseMsgUpdatePost() {
|
|
|
294
319
|
id: BigInt(0)
|
|
295
320
|
};
|
|
296
321
|
}
|
|
322
|
+
/**
|
|
323
|
+
* MsgUpdatePost defines the MsgUpdatePost message.
|
|
324
|
+
* @name MsgUpdatePost
|
|
325
|
+
* @package sparkdream.blog.v1
|
|
326
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePost
|
|
327
|
+
*/
|
|
297
328
|
exports.MsgUpdatePost = {
|
|
298
|
-
typeUrl: "/sparkdream.blog.MsgUpdatePost",
|
|
329
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdatePost",
|
|
299
330
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
300
331
|
if (message.creator !== "") {
|
|
301
332
|
writer.uint32(10).string(message.creator);
|
|
@@ -380,7 +411,7 @@ exports.MsgUpdatePost = {
|
|
|
380
411
|
},
|
|
381
412
|
toProtoMsg(message) {
|
|
382
413
|
return {
|
|
383
|
-
typeUrl: "/sparkdream.blog.MsgUpdatePost",
|
|
414
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdatePost",
|
|
384
415
|
value: exports.MsgUpdatePost.encode(message).finish()
|
|
385
416
|
};
|
|
386
417
|
}
|
|
@@ -388,8 +419,14 @@ exports.MsgUpdatePost = {
|
|
|
388
419
|
function createBaseMsgUpdatePostResponse() {
|
|
389
420
|
return {};
|
|
390
421
|
}
|
|
422
|
+
/**
|
|
423
|
+
* MsgUpdatePostResponse defines the MsgUpdatePostResponse message.
|
|
424
|
+
* @name MsgUpdatePostResponse
|
|
425
|
+
* @package sparkdream.blog.v1
|
|
426
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePostResponse
|
|
427
|
+
*/
|
|
391
428
|
exports.MsgUpdatePostResponse = {
|
|
392
|
-
typeUrl: "/sparkdream.blog.MsgUpdatePostResponse",
|
|
429
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdatePostResponse",
|
|
393
430
|
encode(_, writer = binary_1.BinaryWriter.create()) {
|
|
394
431
|
return writer;
|
|
395
432
|
},
|
|
@@ -430,7 +467,7 @@ exports.MsgUpdatePostResponse = {
|
|
|
430
467
|
},
|
|
431
468
|
toProtoMsg(message) {
|
|
432
469
|
return {
|
|
433
|
-
typeUrl: "/sparkdream.blog.MsgUpdatePostResponse",
|
|
470
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdatePostResponse",
|
|
434
471
|
value: exports.MsgUpdatePostResponse.encode(message).finish()
|
|
435
472
|
};
|
|
436
473
|
}
|
|
@@ -441,8 +478,14 @@ function createBaseMsgDeletePost() {
|
|
|
441
478
|
id: BigInt(0)
|
|
442
479
|
};
|
|
443
480
|
}
|
|
481
|
+
/**
|
|
482
|
+
* MsgDeletePost defines the MsgDeletePost message.
|
|
483
|
+
* @name MsgDeletePost
|
|
484
|
+
* @package sparkdream.blog.v1
|
|
485
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePost
|
|
486
|
+
*/
|
|
444
487
|
exports.MsgDeletePost = {
|
|
445
|
-
typeUrl: "/sparkdream.blog.MsgDeletePost",
|
|
488
|
+
typeUrl: "/sparkdream.blog.v1.MsgDeletePost",
|
|
446
489
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
447
490
|
if (message.creator !== "") {
|
|
448
491
|
writer.uint32(10).string(message.creator);
|
|
@@ -505,7 +548,7 @@ exports.MsgDeletePost = {
|
|
|
505
548
|
},
|
|
506
549
|
toProtoMsg(message) {
|
|
507
550
|
return {
|
|
508
|
-
typeUrl: "/sparkdream.blog.MsgDeletePost",
|
|
551
|
+
typeUrl: "/sparkdream.blog.v1.MsgDeletePost",
|
|
509
552
|
value: exports.MsgDeletePost.encode(message).finish()
|
|
510
553
|
};
|
|
511
554
|
}
|
|
@@ -513,8 +556,14 @@ exports.MsgDeletePost = {
|
|
|
513
556
|
function createBaseMsgDeletePostResponse() {
|
|
514
557
|
return {};
|
|
515
558
|
}
|
|
559
|
+
/**
|
|
560
|
+
* MsgDeletePostResponse defines the MsgDeletePostResponse message.
|
|
561
|
+
* @name MsgDeletePostResponse
|
|
562
|
+
* @package sparkdream.blog.v1
|
|
563
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePostResponse
|
|
564
|
+
*/
|
|
516
565
|
exports.MsgDeletePostResponse = {
|
|
517
|
-
typeUrl: "/sparkdream.blog.MsgDeletePostResponse",
|
|
566
|
+
typeUrl: "/sparkdream.blog.v1.MsgDeletePostResponse",
|
|
518
567
|
encode(_, writer = binary_1.BinaryWriter.create()) {
|
|
519
568
|
return writer;
|
|
520
569
|
},
|
|
@@ -555,7 +604,7 @@ exports.MsgDeletePostResponse = {
|
|
|
555
604
|
},
|
|
556
605
|
toProtoMsg(message) {
|
|
557
606
|
return {
|
|
558
|
-
typeUrl: "/sparkdream.blog.MsgDeletePostResponse",
|
|
607
|
+
typeUrl: "/sparkdream.blog.v1.MsgDeletePostResponse",
|
|
559
608
|
value: exports.MsgDeletePostResponse.encode(message).finish()
|
|
560
609
|
};
|
|
561
610
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TelescopeGeneratedType } from "
|
|
1
|
+
import { TelescopeGeneratedType } from "../../../types";
|
|
2
2
|
import { Registry } from "@cosmjs/proto-signing";
|
|
3
3
|
import { MsgUpdateParams, MsgCreatePost, MsgUpdatePost, MsgDeletePost } from "./tx";
|
|
4
4
|
export declare const registry: ReadonlyArray<[string, TelescopeGeneratedType<any, any, any>]>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.MessageComposer = exports.load = exports.registry = void 0;
|
|
4
4
|
const tx_1 = require("./tx");
|
|
5
|
-
exports.registry = [["/sparkdream.blog.MsgUpdateParams", tx_1.MsgUpdateParams], ["/sparkdream.blog.MsgCreatePost", tx_1.MsgCreatePost], ["/sparkdream.blog.MsgUpdatePost", tx_1.MsgUpdatePost], ["/sparkdream.blog.MsgDeletePost", tx_1.MsgDeletePost]];
|
|
5
|
+
exports.registry = [["/sparkdream.blog.v1.MsgUpdateParams", tx_1.MsgUpdateParams], ["/sparkdream.blog.v1.MsgCreatePost", tx_1.MsgCreatePost], ["/sparkdream.blog.v1.MsgUpdatePost", tx_1.MsgUpdatePost], ["/sparkdream.blog.v1.MsgDeletePost", tx_1.MsgDeletePost]];
|
|
6
6
|
const load = (protoRegistry) => {
|
|
7
7
|
exports.registry.forEach(([typeUrl, mod]) => {
|
|
8
8
|
protoRegistry.register(typeUrl, mod);
|
|
@@ -13,25 +13,25 @@ exports.MessageComposer = {
|
|
|
13
13
|
encoded: {
|
|
14
14
|
updateParams(value) {
|
|
15
15
|
return {
|
|
16
|
-
typeUrl: "/sparkdream.blog.MsgUpdateParams",
|
|
16
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdateParams",
|
|
17
17
|
value: tx_1.MsgUpdateParams.encode(value).finish()
|
|
18
18
|
};
|
|
19
19
|
},
|
|
20
20
|
createPost(value) {
|
|
21
21
|
return {
|
|
22
|
-
typeUrl: "/sparkdream.blog.MsgCreatePost",
|
|
22
|
+
typeUrl: "/sparkdream.blog.v1.MsgCreatePost",
|
|
23
23
|
value: tx_1.MsgCreatePost.encode(value).finish()
|
|
24
24
|
};
|
|
25
25
|
},
|
|
26
26
|
updatePost(value) {
|
|
27
27
|
return {
|
|
28
|
-
typeUrl: "/sparkdream.blog.MsgUpdatePost",
|
|
28
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdatePost",
|
|
29
29
|
value: tx_1.MsgUpdatePost.encode(value).finish()
|
|
30
30
|
};
|
|
31
31
|
},
|
|
32
32
|
deletePost(value) {
|
|
33
33
|
return {
|
|
34
|
-
typeUrl: "/sparkdream.blog.MsgDeletePost",
|
|
34
|
+
typeUrl: "/sparkdream.blog.v1.MsgDeletePost",
|
|
35
35
|
value: tx_1.MsgDeletePost.encode(value).finish()
|
|
36
36
|
};
|
|
37
37
|
}
|
|
@@ -39,25 +39,25 @@ exports.MessageComposer = {
|
|
|
39
39
|
withTypeUrl: {
|
|
40
40
|
updateParams(value) {
|
|
41
41
|
return {
|
|
42
|
-
typeUrl: "/sparkdream.blog.MsgUpdateParams",
|
|
42
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdateParams",
|
|
43
43
|
value
|
|
44
44
|
};
|
|
45
45
|
},
|
|
46
46
|
createPost(value) {
|
|
47
47
|
return {
|
|
48
|
-
typeUrl: "/sparkdream.blog.MsgCreatePost",
|
|
48
|
+
typeUrl: "/sparkdream.blog.v1.MsgCreatePost",
|
|
49
49
|
value
|
|
50
50
|
};
|
|
51
51
|
},
|
|
52
52
|
updatePost(value) {
|
|
53
53
|
return {
|
|
54
|
-
typeUrl: "/sparkdream.blog.MsgUpdatePost",
|
|
54
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdatePost",
|
|
55
55
|
value
|
|
56
56
|
};
|
|
57
57
|
},
|
|
58
58
|
deletePost(value) {
|
|
59
59
|
return {
|
|
60
|
-
typeUrl: "/sparkdream.blog.MsgDeletePost",
|
|
60
|
+
typeUrl: "/sparkdream.blog.v1.MsgDeletePost",
|
|
61
61
|
value
|
|
62
62
|
};
|
|
63
63
|
}
|
|
@@ -65,25 +65,25 @@ exports.MessageComposer = {
|
|
|
65
65
|
fromPartial: {
|
|
66
66
|
updateParams(value) {
|
|
67
67
|
return {
|
|
68
|
-
typeUrl: "/sparkdream.blog.MsgUpdateParams",
|
|
68
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdateParams",
|
|
69
69
|
value: tx_1.MsgUpdateParams.fromPartial(value)
|
|
70
70
|
};
|
|
71
71
|
},
|
|
72
72
|
createPost(value) {
|
|
73
73
|
return {
|
|
74
|
-
typeUrl: "/sparkdream.blog.MsgCreatePost",
|
|
74
|
+
typeUrl: "/sparkdream.blog.v1.MsgCreatePost",
|
|
75
75
|
value: tx_1.MsgCreatePost.fromPartial(value)
|
|
76
76
|
};
|
|
77
77
|
},
|
|
78
78
|
updatePost(value) {
|
|
79
79
|
return {
|
|
80
|
-
typeUrl: "/sparkdream.blog.MsgUpdatePost",
|
|
80
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdatePost",
|
|
81
81
|
value: tx_1.MsgUpdatePost.fromPartial(value)
|
|
82
82
|
};
|
|
83
83
|
},
|
|
84
84
|
deletePost(value) {
|
|
85
85
|
return {
|
|
86
|
-
typeUrl: "/sparkdream.blog.MsgDeletePost",
|
|
86
|
+
typeUrl: "/sparkdream.blog.v1.MsgDeletePost",
|
|
87
87
|
value: tx_1.MsgDeletePost.fromPartial(value)
|
|
88
88
|
};
|
|
89
89
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TxRpc } from "
|
|
1
|
+
import { TxRpc } from "../../../types";
|
|
2
2
|
import { MsgUpdateParams, MsgUpdateParamsResponse, MsgCreatePost, MsgCreatePostResponse, MsgUpdatePost, MsgUpdatePostResponse, MsgDeletePost, MsgDeletePostResponse } from "./tx";
|
|
3
3
|
/** Msg defines the Msg service. */
|
|
4
4
|
export interface Msg {
|
|
@@ -7,8 +7,11 @@ export interface Msg {
|
|
|
7
7
|
* parameters. The authority defaults to the x/gov module account.
|
|
8
8
|
*/
|
|
9
9
|
updateParams(request: MsgUpdateParams): Promise<MsgUpdateParamsResponse>;
|
|
10
|
+
/** CreatePost defines the CreatePost RPC. */
|
|
10
11
|
createPost(request: MsgCreatePost): Promise<MsgCreatePostResponse>;
|
|
12
|
+
/** UpdatePost defines the UpdatePost RPC. */
|
|
11
13
|
updatePost(request: MsgUpdatePost): Promise<MsgUpdatePostResponse>;
|
|
14
|
+
/** DeletePost defines the DeletePost RPC. */
|
|
12
15
|
deletePost(request: MsgDeletePost): Promise<MsgDeletePostResponse>;
|
|
13
16
|
}
|
|
14
17
|
export declare class MsgClientImpl implements Msg {
|