@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.8
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/v1/module.js +6 -0
- package/esm/sparkdream/blog/v1/genesis.js +93 -1
- package/esm/sparkdream/blog/v1/params.js +439 -5
- package/esm/sparkdream/blog/v1/post.js +211 -2
- package/esm/sparkdream/blog/v1/query.js +1399 -0
- package/esm/sparkdream/blog/v1/query.lcd.js +105 -2
- package/esm/sparkdream/blog/v1/query.rpc.Query.js +75 -3
- package/esm/sparkdream/blog/v1/tx.amino.js +61 -1
- package/esm/sparkdream/blog/v1/tx.js +1910 -3
- package/esm/sparkdream/blog/v1/tx.registry.js +218 -2
- package/esm/sparkdream/blog/v1/tx.rpc.msg.js +77 -4
- package/esm/sparkdream/blog/v1/types.js +809 -0
- package/esm/sparkdream/bundle.js +558 -45
- package/esm/sparkdream/client.js +38 -2
- package/esm/sparkdream/collect/module/v1/module.js +71 -0
- package/esm/sparkdream/collect/v1/genesis.js +271 -0
- package/esm/sparkdream/collect/v1/params.js +763 -0
- package/esm/sparkdream/collect/v1/query.js +3790 -0
- package/esm/sparkdream/collect/v1/query.lcd.js +223 -0
- package/esm/sparkdream/collect/v1/query.rpc.Query.js +252 -0
- package/esm/sparkdream/collect/v1/tx.amino.js +149 -0
- package/esm/sparkdream/collect/v1/tx.js +4767 -0
- package/esm/sparkdream/collect/v1/tx.registry.js +537 -0
- package/esm/sparkdream/collect/v1/tx.rpc.msg.js +185 -0
- package/esm/sparkdream/collect/v1/types.js +3434 -0
- package/esm/sparkdream/common/v1/content_type.js +96 -0
- package/esm/sparkdream/common/v1/flag_record.js +119 -0
- package/esm/sparkdream/common/v1/moderation_reason.js +115 -0
- package/esm/sparkdream/common/v1/reserved_tag.js +96 -0
- package/esm/sparkdream/common/v1/tag.js +120 -0
- package/esm/sparkdream/commons/module/v1/module.js +71 -0
- package/esm/sparkdream/commons/v1/genesis.js +533 -0
- package/esm/sparkdream/commons/v1/group.js +1116 -0
- package/esm/sparkdream/commons/v1/params.js +78 -0
- package/esm/sparkdream/commons/v1/policy_permissions.js +86 -0
- package/esm/sparkdream/commons/v1/query.js +1337 -0
- package/esm/sparkdream/commons/v1/query.lcd.js +78 -0
- package/esm/sparkdream/commons/v1/query.rpc.Query.js +100 -0
- package/esm/sparkdream/commons/v1/tx.amino.js +94 -0
- package/esm/sparkdream/commons/v1/tx.js +3282 -0
- package/esm/sparkdream/commons/v1/tx.registry.js +339 -0
- package/esm/sparkdream/commons/v1/tx.rpc.msg.js +122 -0
- package/esm/sparkdream/ecosystem/module/v1/module.js +71 -0
- package/esm/sparkdream/ecosystem/v1/genesis.js +72 -0
- package/esm/sparkdream/ecosystem/v1/params.js +65 -0
- package/esm/sparkdream/ecosystem/v1/query.js +128 -0
- package/esm/sparkdream/ecosystem/v1/query.lcd.js +11 -0
- package/esm/sparkdream/ecosystem/v1/query.rpc.Query.js +24 -0
- package/esm/sparkdream/ecosystem/v1/tx.amino.js +14 -0
- package/esm/sparkdream/ecosystem/v1/tx.js +308 -0
- package/esm/sparkdream/ecosystem/v1/tx.registry.js +51 -0
- package/esm/sparkdream/ecosystem/v1/tx.rpc.msg.js +24 -0
- package/esm/sparkdream/forum/module/v1/module.js +71 -0
- package/esm/sparkdream/forum/v1/archive_metadata.js +119 -0
- package/esm/sparkdream/forum/v1/bounty.js +183 -0
- package/esm/sparkdream/forum/v1/category.js +119 -0
- package/esm/sparkdream/forum/v1/genesis.js +516 -0
- package/esm/sparkdream/forum/v1/gov_action_appeal.js +202 -0
- package/esm/sparkdream/forum/v1/hide_record.js +154 -0
- package/esm/sparkdream/forum/v1/jury_participation.js +131 -0
- package/esm/sparkdream/forum/v1/member_report.js +219 -0
- package/esm/sparkdream/forum/v1/member_salvation_status.js +119 -0
- package/esm/sparkdream/forum/v1/member_warning.js +156 -0
- package/esm/sparkdream/forum/v1/params.js +867 -0
- package/esm/sparkdream/forum/v1/post.js +397 -0
- package/esm/sparkdream/forum/v1/post_flag.js +254 -0
- package/esm/sparkdream/forum/v1/query.js +12470 -0
- package/esm/sparkdream/forum/v1/query.lcd.js +730 -0
- package/esm/sparkdream/forum/v1/query.rpc.Query.js +799 -0
- package/esm/sparkdream/forum/v1/sentinel_activity.js +490 -0
- package/esm/sparkdream/forum/v1/tag_budget.js +143 -0
- package/esm/sparkdream/forum/v1/tag_budget_award.js +155 -0
- package/esm/sparkdream/forum/v1/tag_report.js +122 -0
- package/esm/sparkdream/forum/v1/thread_follow.js +95 -0
- package/esm/sparkdream/forum/v1/thread_follow_count.js +83 -0
- package/esm/sparkdream/forum/v1/thread_lock_record.js +155 -0
- package/esm/sparkdream/forum/v1/thread_metadata.js +184 -0
- package/esm/sparkdream/forum/v1/thread_move_record.js +179 -0
- package/esm/sparkdream/forum/v1/tx.amino.js +254 -0
- package/esm/sparkdream/forum/v1/tx.js +7464 -0
- package/esm/sparkdream/forum/v1/tx.registry.js +915 -0
- package/esm/sparkdream/forum/v1/tx.rpc.msg.js +313 -0
- package/esm/sparkdream/forum/v1/types.js +758 -0
- package/esm/sparkdream/forum/v1/user_rate_limit.js +119 -0
- package/esm/sparkdream/forum/v1/user_reaction_limit.js +107 -0
- package/esm/sparkdream/futarchy/module/v1/module.js +71 -0
- package/esm/sparkdream/futarchy/v1/genesis.js +88 -0
- package/esm/sparkdream/futarchy/v1/market.js +240 -0
- package/esm/sparkdream/futarchy/v1/params.js +241 -0
- package/esm/sparkdream/futarchy/v1/query.js +596 -0
- package/esm/sparkdream/futarchy/v1/query.lcd.js +45 -0
- package/esm/sparkdream/futarchy/v1/query.rpc.Query.js +53 -0
- package/esm/sparkdream/futarchy/v1/tx.amino.js +39 -0
- package/esm/sparkdream/futarchy/v1/tx.js +1097 -0
- package/esm/sparkdream/futarchy/v1/tx.registry.js +141 -0
- package/esm/sparkdream/futarchy/v1/tx.rpc.msg.js +55 -0
- package/esm/sparkdream/lcd.js +60 -0
- package/esm/sparkdream/name/module/v1/module.js +71 -0
- package/esm/sparkdream/name/v1/dispute.js +341 -0
- package/esm/sparkdream/name/v1/genesis.js +120 -0
- package/esm/sparkdream/name/v1/name_record.js +95 -0
- package/esm/sparkdream/name/v1/owner_info.js +95 -0
- package/esm/sparkdream/name/v1/params.js +306 -0
- package/esm/sparkdream/name/v1/query.js +863 -0
- package/esm/sparkdream/name/v1/query.lcd.js +52 -0
- package/esm/sparkdream/name/v1/query.rpc.Query.js +71 -0
- package/esm/sparkdream/name/v1/tx.amino.js +44 -0
- package/esm/sparkdream/name/v1/tx.js +1222 -0
- package/esm/sparkdream/name/v1/tx.registry.js +159 -0
- package/esm/sparkdream/name/v1/tx.rpc.msg.js +62 -0
- package/esm/{cosmos/orm/module/v1alpha1 → sparkdream/rep/module/v1}/module.js +26 -14
- package/esm/sparkdream/rep/v1/challenge.js +226 -0
- package/esm/sparkdream/rep/v1/content_challenge.js +303 -0
- package/esm/sparkdream/rep/v1/genesis.js +481 -0
- package/esm/sparkdream/rep/v1/initiative.js +558 -0
- package/esm/sparkdream/rep/v1/interim.js +426 -0
- package/esm/sparkdream/rep/v1/interim_template.js +291 -0
- package/esm/sparkdream/rep/v1/invitation.js +251 -0
- package/esm/sparkdream/rep/v1/jury_review.js +635 -0
- package/esm/sparkdream/rep/v1/member.js +857 -0
- package/esm/sparkdream/rep/v1/params.js +1819 -0
- package/esm/sparkdream/rep/v1/project.js +545 -0
- package/esm/sparkdream/rep/v1/query.js +6896 -0
- package/esm/sparkdream/rep/v1/query.lcd.js +377 -0
- package/esm/sparkdream/rep/v1/query.rpc.Query.js +424 -0
- package/esm/sparkdream/rep/v1/stake.js +575 -0
- package/esm/sparkdream/rep/v1/tx.amino.js +159 -0
- package/esm/sparkdream/rep/v1/tx.js +5198 -0
- package/esm/sparkdream/rep/v1/tx.registry.js +573 -0
- package/esm/sparkdream/rep/v1/tx.rpc.msg.js +199 -0
- package/esm/sparkdream/reveal/module/v1/module.js +71 -0
- package/esm/sparkdream/reveal/v1/genesis.js +142 -0
- package/esm/sparkdream/reveal/v1/params.js +235 -0
- package/esm/sparkdream/reveal/v1/query.js +1700 -0
- package/esm/sparkdream/reveal/v1/query.lcd.js +101 -0
- package/esm/sparkdream/reveal/v1/query.rpc.Query.js +116 -0
- package/esm/sparkdream/reveal/v1/tx.amino.js +54 -0
- package/esm/sparkdream/reveal/v1/tx.js +1699 -0
- package/esm/sparkdream/reveal/v1/tx.registry.js +195 -0
- package/esm/sparkdream/reveal/v1/tx.rpc.msg.js +72 -0
- package/esm/sparkdream/reveal/v1/types.js +1141 -0
- package/esm/sparkdream/rpc.query.js +36 -5
- package/esm/sparkdream/rpc.tx.js +36 -0
- package/esm/sparkdream/season/module/v1/module.js +71 -0
- package/esm/sparkdream/season/v1/achievement.js +142 -0
- package/esm/sparkdream/season/v1/display_name_appeal_stake.js +95 -0
- package/esm/sparkdream/season/v1/display_name_moderation.js +155 -0
- package/esm/sparkdream/season/v1/display_name_report_stake.js +95 -0
- package/esm/sparkdream/season/v1/enums.js +391 -0
- package/esm/sparkdream/season/v1/epoch_xp_tracker.js +119 -0
- package/esm/sparkdream/season/v1/forum_xp_cooldown.js +83 -0
- package/esm/sparkdream/season/v1/genesis.js +482 -0
- package/esm/sparkdream/season/v1/guild.js +172 -0
- package/esm/sparkdream/season/v1/guild_invite.js +107 -0
- package/esm/sparkdream/season/v1/guild_membership.js +119 -0
- package/esm/sparkdream/season/v1/member_profile.js +296 -0
- package/esm/sparkdream/season/v1/member_quest_progress.js +132 -0
- package/esm/sparkdream/season/v1/member_registration.js +83 -0
- package/esm/sparkdream/season/v1/member_season_snapshot.js +238 -0
- package/esm/sparkdream/season/v1/next_season_info.js +83 -0
- package/esm/sparkdream/season/v1/nomination.js +428 -0
- package/esm/sparkdream/season/v1/params.js +1597 -0
- package/esm/sparkdream/season/v1/query.js +10569 -0
- package/esm/sparkdream/season/v1/query.lcd.js +598 -0
- package/esm/sparkdream/season/v1/query.rpc.Query.js +673 -0
- package/esm/sparkdream/season/v1/quest.js +334 -0
- package/esm/sparkdream/season/v1/season.js +166 -0
- package/esm/sparkdream/season/v1/season_snapshot.js +83 -0
- package/esm/sparkdream/season/v1/season_title_eligibility.js +194 -0
- package/esm/sparkdream/season/v1/season_transition_state.js +130 -0
- package/esm/sparkdream/season/v1/title.js +154 -0
- package/esm/sparkdream/season/v1/transition_recovery_state.js +118 -0
- package/esm/sparkdream/season/v1/tx.amino.js +219 -0
- package/esm/sparkdream/season/v1/tx.js +6823 -0
- package/esm/sparkdream/season/v1/tx.registry.js +789 -0
- package/esm/sparkdream/season/v1/tx.rpc.msg.js +272 -0
- package/esm/sparkdream/season/v1/vote_xp_record.js +83 -0
- package/esm/sparkdream/session/module/v1/module.js +71 -0
- package/esm/sparkdream/session/v1/genesis.js +88 -0
- package/esm/sparkdream/session/v1/params.js +275 -0
- package/esm/sparkdream/session/v1/query.js +743 -0
- package/esm/sparkdream/session/v1/query.lcd.js +45 -0
- package/esm/sparkdream/session/v1/query.rpc.Query.js +60 -0
- package/esm/sparkdream/session/v1/session.js +185 -0
- package/esm/sparkdream/session/v1/tx.amino.js +29 -0
- package/esm/sparkdream/session/v1/tx.js +768 -0
- package/esm/sparkdream/session/v1/tx.registry.js +105 -0
- package/esm/sparkdream/session/v1/tx.rpc.msg.js +43 -0
- package/esm/sparkdream/shield/module/v1/module.js +71 -0
- package/esm/sparkdream/shield/v1/genesis.js +301 -0
- package/esm/sparkdream/shield/v1/params.js +282 -0
- package/esm/sparkdream/shield/v1/query.js +2323 -0
- package/esm/sparkdream/shield/v1/query.lcd.js +110 -0
- package/esm/sparkdream/shield/v1/query.rpc.Query.js +170 -0
- package/esm/sparkdream/shield/v1/tx.amino.js +29 -0
- package/esm/sparkdream/shield/v1/tx.js +838 -0
- package/esm/sparkdream/shield/v1/tx.registry.js +105 -0
- package/esm/sparkdream/shield/v1/tx.rpc.msg.js +43 -0
- package/esm/sparkdream/shield/v1/types.js +2385 -0
- 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/sparkdream/split/module/v1/module.js +71 -0
- package/esm/sparkdream/split/v1/genesis.js +88 -0
- package/esm/sparkdream/split/v1/params.js +65 -0
- package/esm/sparkdream/split/v1/query.js +421 -0
- package/esm/sparkdream/split/v1/query.lcd.js +31 -0
- package/esm/sparkdream/split/v1/query.rpc.Query.js +44 -0
- package/esm/sparkdream/split/v1/share.js +83 -0
- package/esm/sparkdream/split/v1/tx.amino.js +9 -0
- package/esm/sparkdream/split/v1/tx.js +148 -0
- package/esm/sparkdream/split/v1/tx.registry.js +33 -0
- package/esm/sparkdream/split/v1/tx.rpc.msg.js +18 -0
- 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 +18 -2
- package/sparkdream/blog/module/v1/module.js +6 -0
- package/sparkdream/blog/v1/genesis.d.ts +74 -4
- package/sparkdream/blog/v1/genesis.js +93 -1
- package/sparkdream/blog/v1/params.d.ts +310 -6
- package/sparkdream/blog/v1/params.js +440 -6
- package/sparkdream/blog/v1/post.d.ts +180 -2
- package/sparkdream/blog/v1/post.js +211 -2
- package/sparkdream/blog/v1/query.d.ts +865 -14
- package/sparkdream/blog/v1/query.js +1400 -1
- package/sparkdream/blog/v1/query.lcd.d.ts +9 -1
- package/sparkdream/blog/v1/query.lcd.js +105 -2
- package/sparkdream/blog/v1/query.rpc.Query.d.ts +35 -3
- package/sparkdream/blog/v1/query.rpc.Query.js +74 -2
- package/sparkdream/blog/v1/tx.amino.d.ts +61 -1
- package/sparkdream/blog/v1/tx.amino.js +60 -0
- package/sparkdream/blog/v1/tx.d.ts +1306 -19
- package/sparkdream/blog/v1/tx.js +1910 -3
- package/sparkdream/blog/v1/tx.registry.d.ts +145 -1
- package/sparkdream/blog/v1/tx.registry.js +217 -1
- package/sparkdream/blog/v1/tx.rpc.msg.d.ts +43 -4
- package/sparkdream/blog/v1/tx.rpc.msg.js +76 -3
- package/sparkdream/blog/v1/types.d.ts +463 -0
- package/sparkdream/blog/v1/types.js +818 -0
- package/sparkdream/bundle.d.ts +19938 -325
- package/sparkdream/bundle.js +558 -45
- package/sparkdream/client.d.ts +1105 -0
- package/sparkdream/client.js +38 -2
- package/sparkdream/collect/module/v1/module.d.ts +54 -0
- package/sparkdream/collect/module/v1/module.js +74 -0
- package/sparkdream/collect/v1/genesis.d.ts +82 -0
- package/sparkdream/collect/v1/genesis.js +274 -0
- package/sparkdream/collect/v1/params.d.ts +240 -0
- package/sparkdream/collect/v1/params.js +766 -0
- package/sparkdream/collect/v1/query.d.ts +2157 -0
- package/sparkdream/collect/v1/query.js +3793 -0
- package/sparkdream/collect/v1/query.lcd.d.ts +33 -0
- package/sparkdream/collect/v1/query.lcd.js +227 -0
- package/sparkdream/collect/v1/query.rpc.Query.d.ts +101 -0
- package/sparkdream/collect/v1/query.rpc.Query.js +257 -0
- package/sparkdream/collect/v1/tx.amino.d.ts +148 -0
- package/sparkdream/collect/v1/tx.amino.js +152 -0
- package/sparkdream/collect/v1/tx.d.ts +2581 -0
- package/sparkdream/collect/v1/tx.js +4771 -0
- package/sparkdream/collect/v1/tx.registry.d.ts +361 -0
- package/sparkdream/collect/v1/tx.registry.js +541 -0
- package/sparkdream/collect/v1/tx.rpc.msg.d.ts +76 -0
- package/sparkdream/collect/v1/tx.rpc.msg.js +190 -0
- package/sparkdream/collect/v1/types.d.ts +1205 -0
- package/sparkdream/collect/v1/types.js +3453 -0
- package/sparkdream/common/v1/content_type.d.ts +31 -0
- package/sparkdream/common/v1/content_type.js +101 -0
- package/sparkdream/common/v1/flag_record.d.ts +58 -0
- package/sparkdream/common/v1/flag_record.js +122 -0
- package/sparkdream/common/v1/moderation_reason.d.ts +35 -0
- package/sparkdream/common/v1/moderation_reason.js +120 -0
- package/sparkdream/common/v1/reserved_tag.d.ts +53 -0
- package/sparkdream/common/v1/reserved_tag.js +99 -0
- package/sparkdream/common/v1/tag.d.ts +57 -0
- package/sparkdream/common/v1/tag.js +123 -0
- package/sparkdream/commons/module/v1/module.d.ts +54 -0
- package/sparkdream/commons/module/v1/module.js +74 -0
- package/sparkdream/commons/v1/genesis.d.ts +299 -0
- package/sparkdream/commons/v1/genesis.js +536 -0
- package/sparkdream/commons/v1/group.d.ts +529 -0
- package/sparkdream/commons/v1/group.js +1123 -0
- package/sparkdream/commons/v1/params.d.ts +48 -0
- package/sparkdream/commons/v1/params.js +81 -0
- package/sparkdream/commons/v1/policy_permissions.d.ts +48 -0
- package/sparkdream/commons/v1/policy_permissions.js +89 -0
- package/sparkdream/commons/v1/query.d.ts +822 -0
- package/sparkdream/commons/v1/query.js +1340 -0
- package/sparkdream/commons/v1/query.lcd.d.ts +17 -0
- package/sparkdream/commons/v1/query.lcd.js +82 -0
- package/sparkdream/commons/v1/query.rpc.Query.d.ts +48 -0
- package/sparkdream/commons/v1/query.rpc.Query.js +105 -0
- package/sparkdream/commons/v1/tx.amino.d.ts +93 -0
- package/sparkdream/commons/v1/tx.amino.js +97 -0
- package/sparkdream/commons/v1/tx.d.ts +1930 -0
- package/sparkdream/commons/v1/tx.js +3285 -0
- package/sparkdream/commons/v1/tx.registry.d.ts +229 -0
- package/sparkdream/commons/v1/tx.registry.js +343 -0
- package/sparkdream/commons/v1/tx.rpc.msg.d.ts +73 -0
- package/sparkdream/commons/v1/tx.rpc.msg.js +127 -0
- package/sparkdream/ecosystem/module/v1/module.d.ts +54 -0
- package/sparkdream/ecosystem/module/v1/module.js +74 -0
- package/sparkdream/ecosystem/v1/genesis.d.ts +53 -0
- package/sparkdream/ecosystem/v1/genesis.js +75 -0
- package/sparkdream/ecosystem/v1/params.d.ts +46 -0
- package/sparkdream/ecosystem/v1/params.js +68 -0
- package/sparkdream/ecosystem/v1/query.d.ts +95 -0
- package/sparkdream/ecosystem/v1/query.js +131 -0
- package/sparkdream/ecosystem/v1/query.lcd.d.ts +9 -0
- package/sparkdream/ecosystem/v1/query.lcd.js +15 -0
- package/sparkdream/ecosystem/v1/query.rpc.Query.d.ts +16 -0
- package/sparkdream/ecosystem/v1/query.rpc.Query.js +29 -0
- package/sparkdream/ecosystem/v1/tx.amino.d.ts +13 -0
- package/sparkdream/ecosystem/v1/tx.amino.js +17 -0
- package/sparkdream/ecosystem/v1/tx.d.ts +201 -0
- package/sparkdream/ecosystem/v1/tx.js +311 -0
- package/sparkdream/ecosystem/v1/tx.registry.d.ts +37 -0
- package/sparkdream/ecosystem/v1/tx.registry.js +55 -0
- package/sparkdream/ecosystem/v1/tx.rpc.msg.d.ts +19 -0
- package/sparkdream/ecosystem/v1/tx.rpc.msg.js +29 -0
- package/sparkdream/forum/module/v1/module.d.ts +54 -0
- package/sparkdream/forum/module/v1/module.js +74 -0
- package/sparkdream/forum/v1/archive_metadata.d.ts +54 -0
- package/sparkdream/forum/v1/archive_metadata.js +122 -0
- package/sparkdream/forum/v1/bounty.d.ts +65 -0
- package/sparkdream/forum/v1/bounty.js +186 -0
- package/sparkdream/forum/v1/category.d.ts +54 -0
- package/sparkdream/forum/v1/category.js +122 -0
- package/sparkdream/forum/v1/genesis.d.ts +135 -0
- package/sparkdream/forum/v1/genesis.js +519 -0
- package/sparkdream/forum/v1/gov_action_appeal.d.ts +69 -0
- package/sparkdream/forum/v1/gov_action_appeal.js +205 -0
- package/sparkdream/forum/v1/hide_record.d.ts +61 -0
- package/sparkdream/forum/v1/hide_record.js +157 -0
- package/sparkdream/forum/v1/jury_participation.d.ts +56 -0
- package/sparkdream/forum/v1/jury_participation.js +134 -0
- package/sparkdream/forum/v1/member_report.d.ts +67 -0
- package/sparkdream/forum/v1/member_report.js +222 -0
- package/sparkdream/forum/v1/member_salvation_status.d.ts +54 -0
- package/sparkdream/forum/v1/member_salvation_status.js +122 -0
- package/sparkdream/forum/v1/member_warning.d.ts +58 -0
- package/sparkdream/forum/v1/member_warning.js +159 -0
- package/sparkdream/forum/v1/params.d.ts +450 -0
- package/sparkdream/forum/v1/params.js +870 -0
- package/sparkdream/forum/v1/post.d.ts +102 -0
- package/sparkdream/forum/v1/post.js +400 -0
- package/sparkdream/forum/v1/post_flag.d.ts +106 -0
- package/sparkdream/forum/v1/post_flag.js +257 -0
- package/sparkdream/forum/v1/query.d.ts +7296 -0
- package/sparkdream/forum/v1/query.js +12476 -0
- package/sparkdream/forum/v1/query.lcd.d.ts +88 -0
- package/sparkdream/forum/v1/query.lcd.js +734 -0
- package/sparkdream/forum/v1/query.rpc.Query.d.ts +332 -0
- package/sparkdream/forum/v1/query.rpc.Query.js +804 -0
- package/sparkdream/forum/v1/sentinel_activity.d.ts +117 -0
- package/sparkdream/forum/v1/sentinel_activity.js +493 -0
- package/sparkdream/forum/v1/tag_budget.d.ts +58 -0
- package/sparkdream/forum/v1/tag_budget.js +146 -0
- package/sparkdream/forum/v1/tag_budget_award.d.ts +60 -0
- package/sparkdream/forum/v1/tag_budget_award.js +158 -0
- package/sparkdream/forum/v1/tag_report.d.ts +54 -0
- package/sparkdream/forum/v1/tag_report.js +125 -0
- package/sparkdream/forum/v1/thread_follow.d.ts +50 -0
- package/sparkdream/forum/v1/thread_follow.js +98 -0
- package/sparkdream/forum/v1/thread_follow_count.d.ts +48 -0
- package/sparkdream/forum/v1/thread_follow_count.js +86 -0
- package/sparkdream/forum/v1/thread_lock_record.d.ts +60 -0
- package/sparkdream/forum/v1/thread_lock_record.js +158 -0
- package/sparkdream/forum/v1/thread_metadata.d.ts +63 -0
- package/sparkdream/forum/v1/thread_metadata.js +187 -0
- package/sparkdream/forum/v1/thread_move_record.d.ts +64 -0
- package/sparkdream/forum/v1/thread_move_record.js +182 -0
- package/sparkdream/forum/v1/tx.amino.d.ts +253 -0
- package/sparkdream/forum/v1/tx.amino.js +257 -0
- package/sparkdream/forum/v1/tx.d.ts +4551 -0
- package/sparkdream/forum/v1/tx.js +7468 -0
- package/sparkdream/forum/v1/tx.registry.d.ts +613 -0
- package/sparkdream/forum/v1/tx.registry.js +919 -0
- package/sparkdream/forum/v1/tx.rpc.msg.d.ts +166 -0
- package/sparkdream/forum/v1/tx.rpc.msg.js +318 -0
- package/sparkdream/forum/v1/types.d.ts +221 -0
- package/sparkdream/forum/v1/types.js +777 -0
- package/sparkdream/forum/v1/user_rate_limit.d.ts +54 -0
- package/sparkdream/forum/v1/user_rate_limit.js +122 -0
- package/sparkdream/forum/v1/user_reaction_limit.d.ts +52 -0
- package/sparkdream/forum/v1/user_reaction_limit.js +110 -0
- package/sparkdream/futarchy/module/v1/module.d.ts +54 -0
- package/sparkdream/futarchy/module/v1/module.js +74 -0
- package/sparkdream/futarchy/v1/genesis.d.ts +56 -0
- package/sparkdream/futarchy/v1/genesis.js +91 -0
- package/sparkdream/futarchy/v1/market.d.ts +104 -0
- package/sparkdream/futarchy/v1/market.js +243 -0
- package/sparkdream/futarchy/v1/params.d.ts +171 -0
- package/sparkdream/futarchy/v1/params.js +244 -0
- package/sparkdream/futarchy/v1/query.d.ts +381 -0
- package/sparkdream/futarchy/v1/query.js +599 -0
- package/sparkdream/futarchy/v1/query.lcd.d.ts +12 -0
- package/sparkdream/futarchy/v1/query.lcd.js +49 -0
- package/sparkdream/futarchy/v1/query.rpc.Query.d.ts +28 -0
- package/sparkdream/futarchy/v1/query.rpc.Query.js +58 -0
- package/sparkdream/futarchy/v1/tx.amino.d.ts +38 -0
- package/sparkdream/futarchy/v1/tx.amino.js +42 -0
- package/sparkdream/futarchy/v1/tx.d.ts +688 -0
- package/sparkdream/futarchy/v1/tx.js +1100 -0
- package/sparkdream/futarchy/v1/tx.registry.d.ts +97 -0
- package/sparkdream/futarchy/v1/tx.registry.js +145 -0
- package/sparkdream/futarchy/v1/tx.rpc.msg.d.ts +37 -0
- package/sparkdream/futarchy/v1/tx.rpc.msg.js +60 -0
- package/sparkdream/lcd.d.ts +36 -0
- package/sparkdream/lcd.js +60 -0
- package/sparkdream/name/module/v1/module.d.ts +54 -0
- package/sparkdream/name/module/v1/module.js +74 -0
- package/sparkdream/name/v1/dispute.d.ts +216 -0
- package/sparkdream/name/v1/dispute.js +344 -0
- package/sparkdream/name/v1/genesis.d.ts +62 -0
- package/sparkdream/name/v1/genesis.js +123 -0
- package/sparkdream/name/v1/name_record.d.ts +50 -0
- package/sparkdream/name/v1/name_record.js +98 -0
- package/sparkdream/name/v1/owner_info.d.ts +50 -0
- package/sparkdream/name/v1/owner_info.js +98 -0
- package/sparkdream/name/v1/params.d.ts +165 -0
- package/sparkdream/name/v1/params.js +309 -0
- package/sparkdream/name/v1/query.d.ts +544 -0
- package/sparkdream/name/v1/query.js +866 -0
- package/sparkdream/name/v1/query.lcd.d.ts +14 -0
- package/sparkdream/name/v1/query.lcd.js +56 -0
- package/sparkdream/name/v1/query.rpc.Query.d.ts +36 -0
- package/sparkdream/name/v1/query.rpc.Query.js +76 -0
- package/sparkdream/name/v1/tx.amino.d.ts +43 -0
- package/sparkdream/name/v1/tx.amino.js +47 -0
- package/sparkdream/name/v1/tx.d.ts +804 -0
- package/sparkdream/name/v1/tx.js +1225 -0
- package/sparkdream/name/v1/tx.registry.d.ts +109 -0
- package/sparkdream/name/v1/tx.registry.js +163 -0
- package/sparkdream/name/v1/tx.rpc.msg.d.ts +43 -0
- package/sparkdream/name/v1/tx.rpc.msg.js +67 -0
- package/sparkdream/rep/module/v1/module.d.ts +54 -0
- package/{cosmos/orm/module/v1alpha1 → sparkdream/rep/module/v1}/module.js +26 -14
- package/sparkdream/rep/v1/challenge.d.ts +74 -0
- package/sparkdream/rep/v1/challenge.js +231 -0
- package/sparkdream/rep/v1/content_challenge.d.ts +154 -0
- package/sparkdream/rep/v1/content_challenge.js +308 -0
- package/sparkdream/rep/v1/genesis.d.ts +185 -0
- package/sparkdream/rep/v1/genesis.js +484 -0
- package/sparkdream/rep/v1/initiative.d.ts +140 -0
- package/sparkdream/rep/v1/initiative.js +567 -0
- package/sparkdream/rep/v1/interim.d.ts +163 -0
- package/sparkdream/rep/v1/interim.js +435 -0
- package/sparkdream/rep/v1/interim_template.d.ts +114 -0
- package/sparkdream/rep/v1/interim_template.js +296 -0
- package/sparkdream/rep/v1/invitation.d.ts +78 -0
- package/sparkdream/rep/v1/invitation.js +256 -0
- package/sparkdream/rep/v1/jury_review.d.ts +235 -0
- package/sparkdream/rep/v1/jury_review.js +640 -0
- package/sparkdream/rep/v1/member.d.ts +408 -0
- package/sparkdream/rep/v1/member.js +864 -0
- package/sparkdream/rep/v1/params.d.ts +730 -0
- package/sparkdream/rep/v1/params.js +1822 -0
- package/sparkdream/rep/v1/project.d.ts +162 -0
- package/sparkdream/rep/v1/project.js +554 -0
- package/sparkdream/rep/v1/query.d.ts +4030 -0
- package/sparkdream/rep/v1/query.js +6900 -0
- package/sparkdream/rep/v1/query.lcd.d.ts +51 -0
- package/sparkdream/rep/v1/query.lcd.js +381 -0
- package/sparkdream/rep/v1/query.rpc.Query.d.ts +184 -0
- package/sparkdream/rep/v1/query.rpc.Query.js +429 -0
- package/sparkdream/rep/v1/stake.d.ts +266 -0
- package/sparkdream/rep/v1/stake.js +580 -0
- package/sparkdream/rep/v1/tx.amino.d.ts +158 -0
- package/sparkdream/rep/v1/tx.amino.js +162 -0
- package/sparkdream/rep/v1/tx.d.ts +2940 -0
- package/sparkdream/rep/v1/tx.js +5204 -0
- package/sparkdream/rep/v1/tx.registry.d.ts +385 -0
- package/sparkdream/rep/v1/tx.registry.js +577 -0
- package/sparkdream/rep/v1/tx.rpc.msg.d.ts +109 -0
- package/sparkdream/rep/v1/tx.rpc.msg.js +204 -0
- package/sparkdream/reveal/module/v1/module.d.ts +54 -0
- package/sparkdream/reveal/module/v1/module.js +74 -0
- package/sparkdream/reveal/v1/genesis.d.ts +64 -0
- package/sparkdream/reveal/v1/genesis.js +145 -0
- package/sparkdream/reveal/v1/params.d.ts +140 -0
- package/sparkdream/reveal/v1/params.js +238 -0
- package/sparkdream/reveal/v1/query.d.ts +949 -0
- package/sparkdream/reveal/v1/query.js +1703 -0
- package/sparkdream/reveal/v1/query.lcd.d.ts +19 -0
- package/sparkdream/reveal/v1/query.lcd.js +105 -0
- package/sparkdream/reveal/v1/query.rpc.Query.d.ts +56 -0
- package/sparkdream/reveal/v1/query.rpc.Query.js +121 -0
- package/sparkdream/reveal/v1/tx.amino.d.ts +53 -0
- package/sparkdream/reveal/v1/tx.amino.js +57 -0
- package/sparkdream/reveal/v1/tx.d.ts +1043 -0
- package/sparkdream/reveal/v1/tx.js +1702 -0
- package/sparkdream/reveal/v1/tx.registry.d.ts +133 -0
- package/sparkdream/reveal/v1/tx.registry.js +199 -0
- package/sparkdream/reveal/v1/tx.rpc.msg.d.ts +43 -0
- package/sparkdream/reveal/v1/tx.rpc.msg.js +77 -0
- package/sparkdream/reveal/v1/types.d.ts +455 -0
- package/sparkdream/reveal/v1/types.js +1150 -0
- package/sparkdream/rpc.query.d.ts +329 -9
- package/sparkdream/rpc.query.js +36 -5
- package/sparkdream/rpc.tx.d.ts +36 -0
- package/sparkdream/rpc.tx.js +36 -0
- package/sparkdream/season/module/v1/module.d.ts +54 -0
- package/sparkdream/season/module/v1/module.js +74 -0
- package/sparkdream/season/v1/achievement.d.ts +101 -0
- package/sparkdream/season/v1/achievement.js +145 -0
- package/sparkdream/season/v1/display_name_appeal_stake.d.ts +68 -0
- package/sparkdream/season/v1/display_name_appeal_stake.js +98 -0
- package/sparkdream/season/v1/display_name_moderation.d.ts +60 -0
- package/sparkdream/season/v1/display_name_moderation.js +158 -0
- package/sparkdream/season/v1/display_name_report_stake.d.ts +68 -0
- package/sparkdream/season/v1/display_name_report_stake.js +98 -0
- package/sparkdream/season/v1/enums.d.ts +86 -0
- package/sparkdream/season/v1/enums.js +406 -0
- package/sparkdream/season/v1/epoch_xp_tracker.d.ts +54 -0
- package/sparkdream/season/v1/epoch_xp_tracker.js +122 -0
- package/sparkdream/season/v1/forum_xp_cooldown.d.ts +48 -0
- package/sparkdream/season/v1/forum_xp_cooldown.js +86 -0
- package/sparkdream/season/v1/genesis.d.ts +136 -0
- package/sparkdream/season/v1/genesis.js +485 -0
- package/sparkdream/season/v1/guild.d.ts +117 -0
- package/sparkdream/season/v1/guild.js +175 -0
- package/sparkdream/season/v1/guild_invite.d.ts +52 -0
- package/sparkdream/season/v1/guild_invite.js +110 -0
- package/sparkdream/season/v1/guild_membership.d.ts +54 -0
- package/sparkdream/season/v1/guild_membership.js +122 -0
- package/sparkdream/season/v1/member_profile.d.ts +196 -0
- package/sparkdream/season/v1/member_profile.js +299 -0
- package/sparkdream/season/v1/member_quest_progress.d.ts +84 -0
- package/sparkdream/season/v1/member_quest_progress.js +135 -0
- package/sparkdream/season/v1/member_registration.d.ts +48 -0
- package/sparkdream/season/v1/member_registration.js +86 -0
- package/sparkdream/season/v1/member_season_snapshot.d.ts +145 -0
- package/sparkdream/season/v1/member_season_snapshot.js +241 -0
- package/sparkdream/season/v1/next_season_info.d.ts +48 -0
- package/sparkdream/season/v1/next_season_info.js +86 -0
- package/sparkdream/season/v1/nomination.d.ts +194 -0
- package/sparkdream/season/v1/nomination.js +431 -0
- package/sparkdream/season/v1/params.d.ts +611 -0
- package/sparkdream/season/v1/params.js +1600 -0
- package/sparkdream/season/v1/query.d.ts +6199 -0
- package/sparkdream/season/v1/query.js +10574 -0
- package/sparkdream/season/v1/query.lcd.d.ts +76 -0
- package/sparkdream/season/v1/query.lcd.js +602 -0
- package/sparkdream/season/v1/query.rpc.Query.d.ts +284 -0
- package/sparkdream/season/v1/query.rpc.Query.js +678 -0
- package/sparkdream/season/v1/quest.d.ts +231 -0
- package/sparkdream/season/v1/quest.js +337 -0
- package/sparkdream/season/v1/season.d.ts +117 -0
- package/sparkdream/season/v1/season.js +169 -0
- package/sparkdream/season/v1/season_snapshot.d.ts +48 -0
- package/sparkdream/season/v1/season_snapshot.js +86 -0
- package/sparkdream/season/v1/season_title_eligibility.d.ts +134 -0
- package/sparkdream/season/v1/season_title_eligibility.js +197 -0
- package/sparkdream/season/v1/season_transition_state.d.ts +93 -0
- package/sparkdream/season/v1/season_transition_state.js +133 -0
- package/sparkdream/season/v1/title.d.ts +109 -0
- package/sparkdream/season/v1/title.js +157 -0
- package/sparkdream/season/v1/transition_recovery_state.d.ts +85 -0
- package/sparkdream/season/v1/transition_recovery_state.js +121 -0
- package/sparkdream/season/v1/tx.amino.d.ts +218 -0
- package/sparkdream/season/v1/tx.amino.js +222 -0
- package/sparkdream/season/v1/tx.d.ts +4133 -0
- package/sparkdream/season/v1/tx.js +6827 -0
- package/sparkdream/season/v1/tx.registry.d.ts +529 -0
- package/sparkdream/season/v1/tx.registry.js +793 -0
- package/sparkdream/season/v1/tx.rpc.msg.d.ts +144 -0
- package/sparkdream/season/v1/tx.rpc.msg.js +277 -0
- package/sparkdream/season/v1/vote_xp_record.d.ts +48 -0
- package/sparkdream/season/v1/vote_xp_record.js +86 -0
- package/sparkdream/session/module/v1/module.d.ts +54 -0
- package/sparkdream/session/module/v1/module.js +74 -0
- package/sparkdream/session/v1/genesis.d.ts +62 -0
- package/sparkdream/session/v1/genesis.js +91 -0
- package/sparkdream/session/v1/params.d.ts +168 -0
- package/sparkdream/session/v1/params.js +278 -0
- package/sparkdream/session/v1/query.d.ts +423 -0
- package/sparkdream/session/v1/query.js +746 -0
- package/sparkdream/session/v1/query.lcd.d.ts +13 -0
- package/sparkdream/session/v1/query.lcd.js +49 -0
- package/sparkdream/session/v1/query.rpc.Query.d.ts +32 -0
- package/sparkdream/session/v1/query.rpc.Query.js +65 -0
- package/sparkdream/session/v1/session.d.ts +125 -0
- package/sparkdream/session/v1/session.js +188 -0
- package/sparkdream/session/v1/tx.amino.d.ts +28 -0
- package/sparkdream/session/v1/tx.amino.js +32 -0
- package/sparkdream/session/v1/tx.d.ts +481 -0
- package/sparkdream/session/v1/tx.js +771 -0
- package/sparkdream/session/v1/tx.registry.d.ts +73 -0
- package/sparkdream/session/v1/tx.registry.js +109 -0
- package/sparkdream/session/v1/tx.rpc.msg.d.ts +31 -0
- package/sparkdream/session/v1/tx.rpc.msg.js +48 -0
- package/sparkdream/shield/module/v1/module.d.ts +54 -0
- package/sparkdream/shield/module/v1/module.js +74 -0
- package/sparkdream/shield/v1/genesis.d.ts +182 -0
- package/sparkdream/shield/v1/genesis.js +304 -0
- package/sparkdream/shield/v1/params.d.ts +192 -0
- package/sparkdream/shield/v1/params.js +285 -0
- package/sparkdream/shield/v1/query.d.ts +1406 -0
- package/sparkdream/shield/v1/query.js +2326 -0
- package/sparkdream/shield/v1/query.lcd.d.ts +25 -0
- package/sparkdream/shield/v1/query.lcd.js +114 -0
- package/sparkdream/shield/v1/query.rpc.Query.d.ts +80 -0
- package/sparkdream/shield/v1/query.rpc.Query.js +175 -0
- package/sparkdream/shield/v1/tx.amino.d.ts +28 -0
- package/sparkdream/shield/v1/tx.amino.js +32 -0
- package/sparkdream/shield/v1/tx.d.ts +542 -0
- package/sparkdream/shield/v1/tx.js +841 -0
- package/sparkdream/shield/v1/tx.registry.d.ts +73 -0
- package/sparkdream/shield/v1/tx.registry.js +109 -0
- package/sparkdream/shield/v1/tx.rpc.msg.d.ts +29 -0
- package/sparkdream/shield/v1/tx.rpc.msg.js +48 -0
- package/sparkdream/shield/v1/types.d.ts +1412 -0
- package/sparkdream/shield/v1/types.js +2398 -0
- 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/sparkdream/split/module/v1/module.d.ts +54 -0
- package/sparkdream/split/module/v1/module.js +74 -0
- package/sparkdream/split/v1/genesis.d.ts +56 -0
- package/sparkdream/split/v1/genesis.js +91 -0
- package/sparkdream/split/v1/params.d.ts +46 -0
- package/sparkdream/split/v1/params.js +68 -0
- package/sparkdream/split/v1/query.d.ts +275 -0
- package/sparkdream/split/v1/query.js +424 -0
- package/sparkdream/split/v1/query.lcd.d.ts +11 -0
- package/sparkdream/split/v1/query.lcd.js +35 -0
- package/sparkdream/split/v1/query.rpc.Query.d.ts +24 -0
- package/sparkdream/split/v1/query.rpc.Query.js +49 -0
- package/sparkdream/split/v1/share.d.ts +48 -0
- package/sparkdream/split/v1/share.js +86 -0
- package/sparkdream/split/v1/tx.amino.d.ts +8 -0
- package/sparkdream/split/v1/tx.amino.js +12 -0
- package/sparkdream/split/v1/tx.d.ts +108 -0
- package/sparkdream/split/v1/tx.js +151 -0
- package/sparkdream/split/v1/tx.registry.d.ts +25 -0
- package/sparkdream/split/v1/tx.registry.js +37 -0
- package/sparkdream/split/v1/tx.rpc.msg.d.ts +16 -0
- package/sparkdream/split/v1/tx.rpc.msg.js +23 -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 +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/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/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
|
@@ -1,22 +1,42 @@
|
|
|
1
|
-
import { Params, ParamsAmino } from "./params";
|
|
1
|
+
import { Params, ParamsAmino, BlogOperationalParams, BlogOperationalParamsAmino } from "./params";
|
|
2
|
+
import { ContentType } from "../../common/v1/content_type";
|
|
3
|
+
import { ReactionType } from "./types";
|
|
2
4
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
5
|
import { DeepPartial } from "../../../helpers";
|
|
4
|
-
/**
|
|
6
|
+
/**
|
|
7
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
8
|
+
* @name MsgUpdateParams
|
|
9
|
+
* @package sparkdream.blog.v1
|
|
10
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParams
|
|
11
|
+
*/
|
|
5
12
|
export interface MsgUpdateParams {
|
|
6
|
-
/**
|
|
13
|
+
/**
|
|
14
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
15
|
+
*/
|
|
7
16
|
authority: string;
|
|
8
|
-
/**
|
|
17
|
+
/**
|
|
18
|
+
* NOTE: All parameters must be supplied.
|
|
19
|
+
*/
|
|
9
20
|
params: Params;
|
|
10
21
|
}
|
|
11
22
|
export interface MsgUpdateParamsProtoMsg {
|
|
12
23
|
typeUrl: "/sparkdream.blog.v1.MsgUpdateParams";
|
|
13
24
|
value: Uint8Array;
|
|
14
25
|
}
|
|
15
|
-
/**
|
|
26
|
+
/**
|
|
27
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
28
|
+
* @name MsgUpdateParamsAmino
|
|
29
|
+
* @package sparkdream.blog.v1
|
|
30
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParams
|
|
31
|
+
*/
|
|
16
32
|
export interface MsgUpdateParamsAmino {
|
|
17
|
-
/**
|
|
33
|
+
/**
|
|
34
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
35
|
+
*/
|
|
18
36
|
authority?: string;
|
|
19
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* NOTE: All parameters must be supplied.
|
|
39
|
+
*/
|
|
20
40
|
params: ParamsAmino;
|
|
21
41
|
}
|
|
22
42
|
export interface MsgUpdateParamsAminoMsg {
|
|
@@ -26,6 +46,9 @@ export interface MsgUpdateParamsAminoMsg {
|
|
|
26
46
|
/**
|
|
27
47
|
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
28
48
|
* MsgUpdateParams message.
|
|
49
|
+
* @name MsgUpdateParamsResponse
|
|
50
|
+
* @package sparkdream.blog.v1
|
|
51
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParamsResponse
|
|
29
52
|
*/
|
|
30
53
|
export interface MsgUpdateParamsResponse {
|
|
31
54
|
}
|
|
@@ -36,6 +59,9 @@ export interface MsgUpdateParamsResponseProtoMsg {
|
|
|
36
59
|
/**
|
|
37
60
|
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
38
61
|
* MsgUpdateParams message.
|
|
62
|
+
* @name MsgUpdateParamsResponseAmino
|
|
63
|
+
* @package sparkdream.blog.v1
|
|
64
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParamsResponse
|
|
39
65
|
*/
|
|
40
66
|
export interface MsgUpdateParamsResponseAmino {
|
|
41
67
|
}
|
|
@@ -43,27 +69,142 @@ export interface MsgUpdateParamsResponseAminoMsg {
|
|
|
43
69
|
type: "/sparkdream.blog.v1.MsgUpdateParamsResponse";
|
|
44
70
|
value: MsgUpdateParamsResponseAmino;
|
|
45
71
|
}
|
|
46
|
-
/**
|
|
72
|
+
/**
|
|
73
|
+
* MsgUpdateOperationalParams is the Msg/UpdateOperationalParams request type.
|
|
74
|
+
* Authorized: Commons Council Operations Committee (via IsCouncilAuthorized).
|
|
75
|
+
* @name MsgUpdateOperationalParams
|
|
76
|
+
* @package sparkdream.blog.v1
|
|
77
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateOperationalParams
|
|
78
|
+
*/
|
|
79
|
+
export interface MsgUpdateOperationalParams {
|
|
80
|
+
/**
|
|
81
|
+
* authority is the address authorized to update operational params.
|
|
82
|
+
* Can be: governance authority, Commons Council policy address,
|
|
83
|
+
* or Commons Operations Committee member.
|
|
84
|
+
*/
|
|
85
|
+
authority: string;
|
|
86
|
+
/**
|
|
87
|
+
* operational_params defines the operational parameters to update.
|
|
88
|
+
* NOTE: All operational parameters must be supplied.
|
|
89
|
+
*/
|
|
90
|
+
operationalParams: BlogOperationalParams;
|
|
91
|
+
}
|
|
92
|
+
export interface MsgUpdateOperationalParamsProtoMsg {
|
|
93
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdateOperationalParams";
|
|
94
|
+
value: Uint8Array;
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* MsgUpdateOperationalParams is the Msg/UpdateOperationalParams request type.
|
|
98
|
+
* Authorized: Commons Council Operations Committee (via IsCouncilAuthorized).
|
|
99
|
+
* @name MsgUpdateOperationalParamsAmino
|
|
100
|
+
* @package sparkdream.blog.v1
|
|
101
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateOperationalParams
|
|
102
|
+
*/
|
|
103
|
+
export interface MsgUpdateOperationalParamsAmino {
|
|
104
|
+
/**
|
|
105
|
+
* authority is the address authorized to update operational params.
|
|
106
|
+
* Can be: governance authority, Commons Council policy address,
|
|
107
|
+
* or Commons Operations Committee member.
|
|
108
|
+
*/
|
|
109
|
+
authority?: string;
|
|
110
|
+
/**
|
|
111
|
+
* operational_params defines the operational parameters to update.
|
|
112
|
+
* NOTE: All operational parameters must be supplied.
|
|
113
|
+
*/
|
|
114
|
+
operational_params: BlogOperationalParamsAmino;
|
|
115
|
+
}
|
|
116
|
+
export interface MsgUpdateOperationalParamsAminoMsg {
|
|
117
|
+
type: "sparkdream/x/blog/MsgUpdateOperationalParams";
|
|
118
|
+
value: MsgUpdateOperationalParamsAmino;
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* MsgUpdateOperationalParamsResponse defines the response structure for executing a
|
|
122
|
+
* MsgUpdateOperationalParams message.
|
|
123
|
+
* @name MsgUpdateOperationalParamsResponse
|
|
124
|
+
* @package sparkdream.blog.v1
|
|
125
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateOperationalParamsResponse
|
|
126
|
+
*/
|
|
127
|
+
export interface MsgUpdateOperationalParamsResponse {
|
|
128
|
+
}
|
|
129
|
+
export interface MsgUpdateOperationalParamsResponseProtoMsg {
|
|
130
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdateOperationalParamsResponse";
|
|
131
|
+
value: Uint8Array;
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* MsgUpdateOperationalParamsResponse defines the response structure for executing a
|
|
135
|
+
* MsgUpdateOperationalParams message.
|
|
136
|
+
* @name MsgUpdateOperationalParamsResponseAmino
|
|
137
|
+
* @package sparkdream.blog.v1
|
|
138
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateOperationalParamsResponse
|
|
139
|
+
*/
|
|
140
|
+
export interface MsgUpdateOperationalParamsResponseAmino {
|
|
141
|
+
}
|
|
142
|
+
export interface MsgUpdateOperationalParamsResponseAminoMsg {
|
|
143
|
+
type: "/sparkdream.blog.v1.MsgUpdateOperationalParamsResponse";
|
|
144
|
+
value: MsgUpdateOperationalParamsResponseAmino;
|
|
145
|
+
}
|
|
146
|
+
/**
|
|
147
|
+
* MsgCreatePost defines the MsgCreatePost message.
|
|
148
|
+
* @name MsgCreatePost
|
|
149
|
+
* @package sparkdream.blog.v1
|
|
150
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePost
|
|
151
|
+
*/
|
|
47
152
|
export interface MsgCreatePost {
|
|
48
153
|
creator: string;
|
|
49
154
|
title: string;
|
|
50
155
|
body: string;
|
|
156
|
+
contentType: ContentType;
|
|
157
|
+
/**
|
|
158
|
+
* Minimum trust level to reply (-1 to 4, default: 0)
|
|
159
|
+
*/
|
|
160
|
+
minReplyTrustLevel: number;
|
|
161
|
+
/**
|
|
162
|
+
* Optional DREAM amount to lock as author bond
|
|
163
|
+
*/
|
|
164
|
+
authorBond?: string;
|
|
165
|
+
/**
|
|
166
|
+
* Optional: reference an x/rep initiative (0 = none, immutable)
|
|
167
|
+
*/
|
|
168
|
+
initiativeId: bigint;
|
|
51
169
|
}
|
|
52
170
|
export interface MsgCreatePostProtoMsg {
|
|
53
171
|
typeUrl: "/sparkdream.blog.v1.MsgCreatePost";
|
|
54
172
|
value: Uint8Array;
|
|
55
173
|
}
|
|
56
|
-
/**
|
|
174
|
+
/**
|
|
175
|
+
* MsgCreatePost defines the MsgCreatePost message.
|
|
176
|
+
* @name MsgCreatePostAmino
|
|
177
|
+
* @package sparkdream.blog.v1
|
|
178
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePost
|
|
179
|
+
*/
|
|
57
180
|
export interface MsgCreatePostAmino {
|
|
58
181
|
creator?: string;
|
|
59
182
|
title?: string;
|
|
60
183
|
body?: string;
|
|
184
|
+
content_type?: ContentType;
|
|
185
|
+
/**
|
|
186
|
+
* Minimum trust level to reply (-1 to 4, default: 0)
|
|
187
|
+
*/
|
|
188
|
+
min_reply_trust_level?: number;
|
|
189
|
+
/**
|
|
190
|
+
* Optional DREAM amount to lock as author bond
|
|
191
|
+
*/
|
|
192
|
+
author_bond?: string;
|
|
193
|
+
/**
|
|
194
|
+
* Optional: reference an x/rep initiative (0 = none, immutable)
|
|
195
|
+
*/
|
|
196
|
+
initiative_id?: string;
|
|
61
197
|
}
|
|
62
198
|
export interface MsgCreatePostAminoMsg {
|
|
63
199
|
type: "/sparkdream.blog.v1.MsgCreatePost";
|
|
64
200
|
value: MsgCreatePostAmino;
|
|
65
201
|
}
|
|
66
|
-
/**
|
|
202
|
+
/**
|
|
203
|
+
* MsgCreatePostResponse defines the MsgCreatePostResponse message.
|
|
204
|
+
* @name MsgCreatePostResponse
|
|
205
|
+
* @package sparkdream.blog.v1
|
|
206
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePostResponse
|
|
207
|
+
*/
|
|
67
208
|
export interface MsgCreatePostResponse {
|
|
68
209
|
id: bigint;
|
|
69
210
|
}
|
|
@@ -71,7 +212,12 @@ export interface MsgCreatePostResponseProtoMsg {
|
|
|
71
212
|
typeUrl: "/sparkdream.blog.v1.MsgCreatePostResponse";
|
|
72
213
|
value: Uint8Array;
|
|
73
214
|
}
|
|
74
|
-
/**
|
|
215
|
+
/**
|
|
216
|
+
* MsgCreatePostResponse defines the MsgCreatePostResponse message.
|
|
217
|
+
* @name MsgCreatePostResponseAmino
|
|
218
|
+
* @package sparkdream.blog.v1
|
|
219
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePostResponse
|
|
220
|
+
*/
|
|
75
221
|
export interface MsgCreatePostResponseAmino {
|
|
76
222
|
id?: string;
|
|
77
223
|
}
|
|
@@ -79,43 +225,80 @@ export interface MsgCreatePostResponseAminoMsg {
|
|
|
79
225
|
type: "/sparkdream.blog.v1.MsgCreatePostResponse";
|
|
80
226
|
value: MsgCreatePostResponseAmino;
|
|
81
227
|
}
|
|
82
|
-
/**
|
|
228
|
+
/**
|
|
229
|
+
* MsgUpdatePost defines the MsgUpdatePost message.
|
|
230
|
+
* @name MsgUpdatePost
|
|
231
|
+
* @package sparkdream.blog.v1
|
|
232
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePost
|
|
233
|
+
*/
|
|
83
234
|
export interface MsgUpdatePost {
|
|
84
235
|
creator: string;
|
|
85
236
|
title: string;
|
|
86
237
|
body: string;
|
|
87
238
|
id: bigint;
|
|
239
|
+
contentType: ContentType;
|
|
240
|
+
repliesEnabled: boolean;
|
|
241
|
+
/**
|
|
242
|
+
* Minimum trust level to reply (-1 to 4)
|
|
243
|
+
*/
|
|
244
|
+
minReplyTrustLevel: number;
|
|
88
245
|
}
|
|
89
246
|
export interface MsgUpdatePostProtoMsg {
|
|
90
247
|
typeUrl: "/sparkdream.blog.v1.MsgUpdatePost";
|
|
91
248
|
value: Uint8Array;
|
|
92
249
|
}
|
|
93
|
-
/**
|
|
250
|
+
/**
|
|
251
|
+
* MsgUpdatePost defines the MsgUpdatePost message.
|
|
252
|
+
* @name MsgUpdatePostAmino
|
|
253
|
+
* @package sparkdream.blog.v1
|
|
254
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePost
|
|
255
|
+
*/
|
|
94
256
|
export interface MsgUpdatePostAmino {
|
|
95
257
|
creator?: string;
|
|
96
258
|
title?: string;
|
|
97
259
|
body?: string;
|
|
98
260
|
id?: string;
|
|
261
|
+
content_type?: ContentType;
|
|
262
|
+
replies_enabled?: boolean;
|
|
263
|
+
/**
|
|
264
|
+
* Minimum trust level to reply (-1 to 4)
|
|
265
|
+
*/
|
|
266
|
+
min_reply_trust_level?: number;
|
|
99
267
|
}
|
|
100
268
|
export interface MsgUpdatePostAminoMsg {
|
|
101
269
|
type: "/sparkdream.blog.v1.MsgUpdatePost";
|
|
102
270
|
value: MsgUpdatePostAmino;
|
|
103
271
|
}
|
|
104
|
-
/**
|
|
272
|
+
/**
|
|
273
|
+
* MsgUpdatePostResponse defines the MsgUpdatePostResponse message.
|
|
274
|
+
* @name MsgUpdatePostResponse
|
|
275
|
+
* @package sparkdream.blog.v1
|
|
276
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePostResponse
|
|
277
|
+
*/
|
|
105
278
|
export interface MsgUpdatePostResponse {
|
|
106
279
|
}
|
|
107
280
|
export interface MsgUpdatePostResponseProtoMsg {
|
|
108
281
|
typeUrl: "/sparkdream.blog.v1.MsgUpdatePostResponse";
|
|
109
282
|
value: Uint8Array;
|
|
110
283
|
}
|
|
111
|
-
/**
|
|
284
|
+
/**
|
|
285
|
+
* MsgUpdatePostResponse defines the MsgUpdatePostResponse message.
|
|
286
|
+
* @name MsgUpdatePostResponseAmino
|
|
287
|
+
* @package sparkdream.blog.v1
|
|
288
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePostResponse
|
|
289
|
+
*/
|
|
112
290
|
export interface MsgUpdatePostResponseAmino {
|
|
113
291
|
}
|
|
114
292
|
export interface MsgUpdatePostResponseAminoMsg {
|
|
115
293
|
type: "/sparkdream.blog.v1.MsgUpdatePostResponse";
|
|
116
294
|
value: MsgUpdatePostResponseAmino;
|
|
117
295
|
}
|
|
118
|
-
/**
|
|
296
|
+
/**
|
|
297
|
+
* MsgDeletePost defines the MsgDeletePost message.
|
|
298
|
+
* @name MsgDeletePost
|
|
299
|
+
* @package sparkdream.blog.v1
|
|
300
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePost
|
|
301
|
+
*/
|
|
119
302
|
export interface MsgDeletePost {
|
|
120
303
|
creator: string;
|
|
121
304
|
id: bigint;
|
|
@@ -124,7 +307,12 @@ export interface MsgDeletePostProtoMsg {
|
|
|
124
307
|
typeUrl: "/sparkdream.blog.v1.MsgDeletePost";
|
|
125
308
|
value: Uint8Array;
|
|
126
309
|
}
|
|
127
|
-
/**
|
|
310
|
+
/**
|
|
311
|
+
* MsgDeletePost defines the MsgDeletePost message.
|
|
312
|
+
* @name MsgDeletePostAmino
|
|
313
|
+
* @package sparkdream.blog.v1
|
|
314
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePost
|
|
315
|
+
*/
|
|
128
316
|
export interface MsgDeletePostAmino {
|
|
129
317
|
creator?: string;
|
|
130
318
|
id?: string;
|
|
@@ -133,20 +321,640 @@ export interface MsgDeletePostAminoMsg {
|
|
|
133
321
|
type: "/sparkdream.blog.v1.MsgDeletePost";
|
|
134
322
|
value: MsgDeletePostAmino;
|
|
135
323
|
}
|
|
136
|
-
/**
|
|
324
|
+
/**
|
|
325
|
+
* MsgDeletePostResponse defines the MsgDeletePostResponse message.
|
|
326
|
+
* @name MsgDeletePostResponse
|
|
327
|
+
* @package sparkdream.blog.v1
|
|
328
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePostResponse
|
|
329
|
+
*/
|
|
137
330
|
export interface MsgDeletePostResponse {
|
|
138
331
|
}
|
|
139
332
|
export interface MsgDeletePostResponseProtoMsg {
|
|
140
333
|
typeUrl: "/sparkdream.blog.v1.MsgDeletePostResponse";
|
|
141
334
|
value: Uint8Array;
|
|
142
335
|
}
|
|
143
|
-
/**
|
|
336
|
+
/**
|
|
337
|
+
* MsgDeletePostResponse defines the MsgDeletePostResponse message.
|
|
338
|
+
* @name MsgDeletePostResponseAmino
|
|
339
|
+
* @package sparkdream.blog.v1
|
|
340
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePostResponse
|
|
341
|
+
*/
|
|
144
342
|
export interface MsgDeletePostResponseAmino {
|
|
145
343
|
}
|
|
146
344
|
export interface MsgDeletePostResponseAminoMsg {
|
|
147
345
|
type: "/sparkdream.blog.v1.MsgDeletePostResponse";
|
|
148
346
|
value: MsgDeletePostResponseAmino;
|
|
149
347
|
}
|
|
348
|
+
/**
|
|
349
|
+
* MsgHidePost defines the MsgHidePost message.
|
|
350
|
+
* @name MsgHidePost
|
|
351
|
+
* @package sparkdream.blog.v1
|
|
352
|
+
* @see proto type: sparkdream.blog.v1.MsgHidePost
|
|
353
|
+
*/
|
|
354
|
+
export interface MsgHidePost {
|
|
355
|
+
creator: string;
|
|
356
|
+
id: bigint;
|
|
357
|
+
}
|
|
358
|
+
export interface MsgHidePostProtoMsg {
|
|
359
|
+
typeUrl: "/sparkdream.blog.v1.MsgHidePost";
|
|
360
|
+
value: Uint8Array;
|
|
361
|
+
}
|
|
362
|
+
/**
|
|
363
|
+
* MsgHidePost defines the MsgHidePost message.
|
|
364
|
+
* @name MsgHidePostAmino
|
|
365
|
+
* @package sparkdream.blog.v1
|
|
366
|
+
* @see proto type: sparkdream.blog.v1.MsgHidePost
|
|
367
|
+
*/
|
|
368
|
+
export interface MsgHidePostAmino {
|
|
369
|
+
creator?: string;
|
|
370
|
+
id?: string;
|
|
371
|
+
}
|
|
372
|
+
export interface MsgHidePostAminoMsg {
|
|
373
|
+
type: "/sparkdream.blog.v1.MsgHidePost";
|
|
374
|
+
value: MsgHidePostAmino;
|
|
375
|
+
}
|
|
376
|
+
/**
|
|
377
|
+
* MsgHidePostResponse defines the MsgHidePostResponse message.
|
|
378
|
+
* @name MsgHidePostResponse
|
|
379
|
+
* @package sparkdream.blog.v1
|
|
380
|
+
* @see proto type: sparkdream.blog.v1.MsgHidePostResponse
|
|
381
|
+
*/
|
|
382
|
+
export interface MsgHidePostResponse {
|
|
383
|
+
}
|
|
384
|
+
export interface MsgHidePostResponseProtoMsg {
|
|
385
|
+
typeUrl: "/sparkdream.blog.v1.MsgHidePostResponse";
|
|
386
|
+
value: Uint8Array;
|
|
387
|
+
}
|
|
388
|
+
/**
|
|
389
|
+
* MsgHidePostResponse defines the MsgHidePostResponse message.
|
|
390
|
+
* @name MsgHidePostResponseAmino
|
|
391
|
+
* @package sparkdream.blog.v1
|
|
392
|
+
* @see proto type: sparkdream.blog.v1.MsgHidePostResponse
|
|
393
|
+
*/
|
|
394
|
+
export interface MsgHidePostResponseAmino {
|
|
395
|
+
}
|
|
396
|
+
export interface MsgHidePostResponseAminoMsg {
|
|
397
|
+
type: "/sparkdream.blog.v1.MsgHidePostResponse";
|
|
398
|
+
value: MsgHidePostResponseAmino;
|
|
399
|
+
}
|
|
400
|
+
/**
|
|
401
|
+
* MsgUnhidePost defines the MsgUnhidePost message.
|
|
402
|
+
* @name MsgUnhidePost
|
|
403
|
+
* @package sparkdream.blog.v1
|
|
404
|
+
* @see proto type: sparkdream.blog.v1.MsgUnhidePost
|
|
405
|
+
*/
|
|
406
|
+
export interface MsgUnhidePost {
|
|
407
|
+
creator: string;
|
|
408
|
+
id: bigint;
|
|
409
|
+
}
|
|
410
|
+
export interface MsgUnhidePostProtoMsg {
|
|
411
|
+
typeUrl: "/sparkdream.blog.v1.MsgUnhidePost";
|
|
412
|
+
value: Uint8Array;
|
|
413
|
+
}
|
|
414
|
+
/**
|
|
415
|
+
* MsgUnhidePost defines the MsgUnhidePost message.
|
|
416
|
+
* @name MsgUnhidePostAmino
|
|
417
|
+
* @package sparkdream.blog.v1
|
|
418
|
+
* @see proto type: sparkdream.blog.v1.MsgUnhidePost
|
|
419
|
+
*/
|
|
420
|
+
export interface MsgUnhidePostAmino {
|
|
421
|
+
creator?: string;
|
|
422
|
+
id?: string;
|
|
423
|
+
}
|
|
424
|
+
export interface MsgUnhidePostAminoMsg {
|
|
425
|
+
type: "/sparkdream.blog.v1.MsgUnhidePost";
|
|
426
|
+
value: MsgUnhidePostAmino;
|
|
427
|
+
}
|
|
428
|
+
/**
|
|
429
|
+
* MsgUnhidePostResponse defines the MsgUnhidePostResponse message.
|
|
430
|
+
* @name MsgUnhidePostResponse
|
|
431
|
+
* @package sparkdream.blog.v1
|
|
432
|
+
* @see proto type: sparkdream.blog.v1.MsgUnhidePostResponse
|
|
433
|
+
*/
|
|
434
|
+
export interface MsgUnhidePostResponse {
|
|
435
|
+
}
|
|
436
|
+
export interface MsgUnhidePostResponseProtoMsg {
|
|
437
|
+
typeUrl: "/sparkdream.blog.v1.MsgUnhidePostResponse";
|
|
438
|
+
value: Uint8Array;
|
|
439
|
+
}
|
|
440
|
+
/**
|
|
441
|
+
* MsgUnhidePostResponse defines the MsgUnhidePostResponse message.
|
|
442
|
+
* @name MsgUnhidePostResponseAmino
|
|
443
|
+
* @package sparkdream.blog.v1
|
|
444
|
+
* @see proto type: sparkdream.blog.v1.MsgUnhidePostResponse
|
|
445
|
+
*/
|
|
446
|
+
export interface MsgUnhidePostResponseAmino {
|
|
447
|
+
}
|
|
448
|
+
export interface MsgUnhidePostResponseAminoMsg {
|
|
449
|
+
type: "/sparkdream.blog.v1.MsgUnhidePostResponse";
|
|
450
|
+
value: MsgUnhidePostResponseAmino;
|
|
451
|
+
}
|
|
452
|
+
/**
|
|
453
|
+
* MsgCreateReply defines the MsgCreateReply message.
|
|
454
|
+
* @name MsgCreateReply
|
|
455
|
+
* @package sparkdream.blog.v1
|
|
456
|
+
* @see proto type: sparkdream.blog.v1.MsgCreateReply
|
|
457
|
+
*/
|
|
458
|
+
export interface MsgCreateReply {
|
|
459
|
+
creator: string;
|
|
460
|
+
postId: bigint;
|
|
461
|
+
parentReplyId: bigint;
|
|
462
|
+
body: string;
|
|
463
|
+
contentType: ContentType;
|
|
464
|
+
/**
|
|
465
|
+
* Optional DREAM amount to lock as author bond
|
|
466
|
+
*/
|
|
467
|
+
authorBond?: string;
|
|
468
|
+
}
|
|
469
|
+
export interface MsgCreateReplyProtoMsg {
|
|
470
|
+
typeUrl: "/sparkdream.blog.v1.MsgCreateReply";
|
|
471
|
+
value: Uint8Array;
|
|
472
|
+
}
|
|
473
|
+
/**
|
|
474
|
+
* MsgCreateReply defines the MsgCreateReply message.
|
|
475
|
+
* @name MsgCreateReplyAmino
|
|
476
|
+
* @package sparkdream.blog.v1
|
|
477
|
+
* @see proto type: sparkdream.blog.v1.MsgCreateReply
|
|
478
|
+
*/
|
|
479
|
+
export interface MsgCreateReplyAmino {
|
|
480
|
+
creator?: string;
|
|
481
|
+
post_id?: string;
|
|
482
|
+
parent_reply_id?: string;
|
|
483
|
+
body?: string;
|
|
484
|
+
content_type?: ContentType;
|
|
485
|
+
/**
|
|
486
|
+
* Optional DREAM amount to lock as author bond
|
|
487
|
+
*/
|
|
488
|
+
author_bond?: string;
|
|
489
|
+
}
|
|
490
|
+
export interface MsgCreateReplyAminoMsg {
|
|
491
|
+
type: "/sparkdream.blog.v1.MsgCreateReply";
|
|
492
|
+
value: MsgCreateReplyAmino;
|
|
493
|
+
}
|
|
494
|
+
/**
|
|
495
|
+
* MsgCreateReplyResponse defines the MsgCreateReplyResponse message.
|
|
496
|
+
* @name MsgCreateReplyResponse
|
|
497
|
+
* @package sparkdream.blog.v1
|
|
498
|
+
* @see proto type: sparkdream.blog.v1.MsgCreateReplyResponse
|
|
499
|
+
*/
|
|
500
|
+
export interface MsgCreateReplyResponse {
|
|
501
|
+
id: bigint;
|
|
502
|
+
}
|
|
503
|
+
export interface MsgCreateReplyResponseProtoMsg {
|
|
504
|
+
typeUrl: "/sparkdream.blog.v1.MsgCreateReplyResponse";
|
|
505
|
+
value: Uint8Array;
|
|
506
|
+
}
|
|
507
|
+
/**
|
|
508
|
+
* MsgCreateReplyResponse defines the MsgCreateReplyResponse message.
|
|
509
|
+
* @name MsgCreateReplyResponseAmino
|
|
510
|
+
* @package sparkdream.blog.v1
|
|
511
|
+
* @see proto type: sparkdream.blog.v1.MsgCreateReplyResponse
|
|
512
|
+
*/
|
|
513
|
+
export interface MsgCreateReplyResponseAmino {
|
|
514
|
+
id?: string;
|
|
515
|
+
}
|
|
516
|
+
export interface MsgCreateReplyResponseAminoMsg {
|
|
517
|
+
type: "/sparkdream.blog.v1.MsgCreateReplyResponse";
|
|
518
|
+
value: MsgCreateReplyResponseAmino;
|
|
519
|
+
}
|
|
520
|
+
/**
|
|
521
|
+
* MsgUpdateReply defines the MsgUpdateReply message.
|
|
522
|
+
* @name MsgUpdateReply
|
|
523
|
+
* @package sparkdream.blog.v1
|
|
524
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateReply
|
|
525
|
+
*/
|
|
526
|
+
export interface MsgUpdateReply {
|
|
527
|
+
creator: string;
|
|
528
|
+
id: bigint;
|
|
529
|
+
body: string;
|
|
530
|
+
contentType: ContentType;
|
|
531
|
+
}
|
|
532
|
+
export interface MsgUpdateReplyProtoMsg {
|
|
533
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdateReply";
|
|
534
|
+
value: Uint8Array;
|
|
535
|
+
}
|
|
536
|
+
/**
|
|
537
|
+
* MsgUpdateReply defines the MsgUpdateReply message.
|
|
538
|
+
* @name MsgUpdateReplyAmino
|
|
539
|
+
* @package sparkdream.blog.v1
|
|
540
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateReply
|
|
541
|
+
*/
|
|
542
|
+
export interface MsgUpdateReplyAmino {
|
|
543
|
+
creator?: string;
|
|
544
|
+
id?: string;
|
|
545
|
+
body?: string;
|
|
546
|
+
content_type?: ContentType;
|
|
547
|
+
}
|
|
548
|
+
export interface MsgUpdateReplyAminoMsg {
|
|
549
|
+
type: "/sparkdream.blog.v1.MsgUpdateReply";
|
|
550
|
+
value: MsgUpdateReplyAmino;
|
|
551
|
+
}
|
|
552
|
+
/**
|
|
553
|
+
* MsgUpdateReplyResponse defines the MsgUpdateReplyResponse message.
|
|
554
|
+
* @name MsgUpdateReplyResponse
|
|
555
|
+
* @package sparkdream.blog.v1
|
|
556
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateReplyResponse
|
|
557
|
+
*/
|
|
558
|
+
export interface MsgUpdateReplyResponse {
|
|
559
|
+
}
|
|
560
|
+
export interface MsgUpdateReplyResponseProtoMsg {
|
|
561
|
+
typeUrl: "/sparkdream.blog.v1.MsgUpdateReplyResponse";
|
|
562
|
+
value: Uint8Array;
|
|
563
|
+
}
|
|
564
|
+
/**
|
|
565
|
+
* MsgUpdateReplyResponse defines the MsgUpdateReplyResponse message.
|
|
566
|
+
* @name MsgUpdateReplyResponseAmino
|
|
567
|
+
* @package sparkdream.blog.v1
|
|
568
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateReplyResponse
|
|
569
|
+
*/
|
|
570
|
+
export interface MsgUpdateReplyResponseAmino {
|
|
571
|
+
}
|
|
572
|
+
export interface MsgUpdateReplyResponseAminoMsg {
|
|
573
|
+
type: "/sparkdream.blog.v1.MsgUpdateReplyResponse";
|
|
574
|
+
value: MsgUpdateReplyResponseAmino;
|
|
575
|
+
}
|
|
576
|
+
/**
|
|
577
|
+
* MsgDeleteReply defines the MsgDeleteReply message.
|
|
578
|
+
* @name MsgDeleteReply
|
|
579
|
+
* @package sparkdream.blog.v1
|
|
580
|
+
* @see proto type: sparkdream.blog.v1.MsgDeleteReply
|
|
581
|
+
*/
|
|
582
|
+
export interface MsgDeleteReply {
|
|
583
|
+
creator: string;
|
|
584
|
+
id: bigint;
|
|
585
|
+
}
|
|
586
|
+
export interface MsgDeleteReplyProtoMsg {
|
|
587
|
+
typeUrl: "/sparkdream.blog.v1.MsgDeleteReply";
|
|
588
|
+
value: Uint8Array;
|
|
589
|
+
}
|
|
590
|
+
/**
|
|
591
|
+
* MsgDeleteReply defines the MsgDeleteReply message.
|
|
592
|
+
* @name MsgDeleteReplyAmino
|
|
593
|
+
* @package sparkdream.blog.v1
|
|
594
|
+
* @see proto type: sparkdream.blog.v1.MsgDeleteReply
|
|
595
|
+
*/
|
|
596
|
+
export interface MsgDeleteReplyAmino {
|
|
597
|
+
creator?: string;
|
|
598
|
+
id?: string;
|
|
599
|
+
}
|
|
600
|
+
export interface MsgDeleteReplyAminoMsg {
|
|
601
|
+
type: "/sparkdream.blog.v1.MsgDeleteReply";
|
|
602
|
+
value: MsgDeleteReplyAmino;
|
|
603
|
+
}
|
|
604
|
+
/**
|
|
605
|
+
* MsgDeleteReplyResponse defines the MsgDeleteReplyResponse message.
|
|
606
|
+
* @name MsgDeleteReplyResponse
|
|
607
|
+
* @package sparkdream.blog.v1
|
|
608
|
+
* @see proto type: sparkdream.blog.v1.MsgDeleteReplyResponse
|
|
609
|
+
*/
|
|
610
|
+
export interface MsgDeleteReplyResponse {
|
|
611
|
+
}
|
|
612
|
+
export interface MsgDeleteReplyResponseProtoMsg {
|
|
613
|
+
typeUrl: "/sparkdream.blog.v1.MsgDeleteReplyResponse";
|
|
614
|
+
value: Uint8Array;
|
|
615
|
+
}
|
|
616
|
+
/**
|
|
617
|
+
* MsgDeleteReplyResponse defines the MsgDeleteReplyResponse message.
|
|
618
|
+
* @name MsgDeleteReplyResponseAmino
|
|
619
|
+
* @package sparkdream.blog.v1
|
|
620
|
+
* @see proto type: sparkdream.blog.v1.MsgDeleteReplyResponse
|
|
621
|
+
*/
|
|
622
|
+
export interface MsgDeleteReplyResponseAmino {
|
|
623
|
+
}
|
|
624
|
+
export interface MsgDeleteReplyResponseAminoMsg {
|
|
625
|
+
type: "/sparkdream.blog.v1.MsgDeleteReplyResponse";
|
|
626
|
+
value: MsgDeleteReplyResponseAmino;
|
|
627
|
+
}
|
|
628
|
+
/**
|
|
629
|
+
* MsgHideReply defines the MsgHideReply message.
|
|
630
|
+
* @name MsgHideReply
|
|
631
|
+
* @package sparkdream.blog.v1
|
|
632
|
+
* @see proto type: sparkdream.blog.v1.MsgHideReply
|
|
633
|
+
*/
|
|
634
|
+
export interface MsgHideReply {
|
|
635
|
+
creator: string;
|
|
636
|
+
id: bigint;
|
|
637
|
+
}
|
|
638
|
+
export interface MsgHideReplyProtoMsg {
|
|
639
|
+
typeUrl: "/sparkdream.blog.v1.MsgHideReply";
|
|
640
|
+
value: Uint8Array;
|
|
641
|
+
}
|
|
642
|
+
/**
|
|
643
|
+
* MsgHideReply defines the MsgHideReply message.
|
|
644
|
+
* @name MsgHideReplyAmino
|
|
645
|
+
* @package sparkdream.blog.v1
|
|
646
|
+
* @see proto type: sparkdream.blog.v1.MsgHideReply
|
|
647
|
+
*/
|
|
648
|
+
export interface MsgHideReplyAmino {
|
|
649
|
+
creator?: string;
|
|
650
|
+
id?: string;
|
|
651
|
+
}
|
|
652
|
+
export interface MsgHideReplyAminoMsg {
|
|
653
|
+
type: "/sparkdream.blog.v1.MsgHideReply";
|
|
654
|
+
value: MsgHideReplyAmino;
|
|
655
|
+
}
|
|
656
|
+
/**
|
|
657
|
+
* MsgHideReplyResponse defines the MsgHideReplyResponse message.
|
|
658
|
+
* @name MsgHideReplyResponse
|
|
659
|
+
* @package sparkdream.blog.v1
|
|
660
|
+
* @see proto type: sparkdream.blog.v1.MsgHideReplyResponse
|
|
661
|
+
*/
|
|
662
|
+
export interface MsgHideReplyResponse {
|
|
663
|
+
}
|
|
664
|
+
export interface MsgHideReplyResponseProtoMsg {
|
|
665
|
+
typeUrl: "/sparkdream.blog.v1.MsgHideReplyResponse";
|
|
666
|
+
value: Uint8Array;
|
|
667
|
+
}
|
|
668
|
+
/**
|
|
669
|
+
* MsgHideReplyResponse defines the MsgHideReplyResponse message.
|
|
670
|
+
* @name MsgHideReplyResponseAmino
|
|
671
|
+
* @package sparkdream.blog.v1
|
|
672
|
+
* @see proto type: sparkdream.blog.v1.MsgHideReplyResponse
|
|
673
|
+
*/
|
|
674
|
+
export interface MsgHideReplyResponseAmino {
|
|
675
|
+
}
|
|
676
|
+
export interface MsgHideReplyResponseAminoMsg {
|
|
677
|
+
type: "/sparkdream.blog.v1.MsgHideReplyResponse";
|
|
678
|
+
value: MsgHideReplyResponseAmino;
|
|
679
|
+
}
|
|
680
|
+
/**
|
|
681
|
+
* MsgUnhideReply defines the MsgUnhideReply message.
|
|
682
|
+
* @name MsgUnhideReply
|
|
683
|
+
* @package sparkdream.blog.v1
|
|
684
|
+
* @see proto type: sparkdream.blog.v1.MsgUnhideReply
|
|
685
|
+
*/
|
|
686
|
+
export interface MsgUnhideReply {
|
|
687
|
+
creator: string;
|
|
688
|
+
id: bigint;
|
|
689
|
+
}
|
|
690
|
+
export interface MsgUnhideReplyProtoMsg {
|
|
691
|
+
typeUrl: "/sparkdream.blog.v1.MsgUnhideReply";
|
|
692
|
+
value: Uint8Array;
|
|
693
|
+
}
|
|
694
|
+
/**
|
|
695
|
+
* MsgUnhideReply defines the MsgUnhideReply message.
|
|
696
|
+
* @name MsgUnhideReplyAmino
|
|
697
|
+
* @package sparkdream.blog.v1
|
|
698
|
+
* @see proto type: sparkdream.blog.v1.MsgUnhideReply
|
|
699
|
+
*/
|
|
700
|
+
export interface MsgUnhideReplyAmino {
|
|
701
|
+
creator?: string;
|
|
702
|
+
id?: string;
|
|
703
|
+
}
|
|
704
|
+
export interface MsgUnhideReplyAminoMsg {
|
|
705
|
+
type: "/sparkdream.blog.v1.MsgUnhideReply";
|
|
706
|
+
value: MsgUnhideReplyAmino;
|
|
707
|
+
}
|
|
708
|
+
/**
|
|
709
|
+
* MsgUnhideReplyResponse defines the MsgUnhideReplyResponse message.
|
|
710
|
+
* @name MsgUnhideReplyResponse
|
|
711
|
+
* @package sparkdream.blog.v1
|
|
712
|
+
* @see proto type: sparkdream.blog.v1.MsgUnhideReplyResponse
|
|
713
|
+
*/
|
|
714
|
+
export interface MsgUnhideReplyResponse {
|
|
715
|
+
}
|
|
716
|
+
export interface MsgUnhideReplyResponseProtoMsg {
|
|
717
|
+
typeUrl: "/sparkdream.blog.v1.MsgUnhideReplyResponse";
|
|
718
|
+
value: Uint8Array;
|
|
719
|
+
}
|
|
720
|
+
/**
|
|
721
|
+
* MsgUnhideReplyResponse defines the MsgUnhideReplyResponse message.
|
|
722
|
+
* @name MsgUnhideReplyResponseAmino
|
|
723
|
+
* @package sparkdream.blog.v1
|
|
724
|
+
* @see proto type: sparkdream.blog.v1.MsgUnhideReplyResponse
|
|
725
|
+
*/
|
|
726
|
+
export interface MsgUnhideReplyResponseAmino {
|
|
727
|
+
}
|
|
728
|
+
export interface MsgUnhideReplyResponseAminoMsg {
|
|
729
|
+
type: "/sparkdream.blog.v1.MsgUnhideReplyResponse";
|
|
730
|
+
value: MsgUnhideReplyResponseAmino;
|
|
731
|
+
}
|
|
732
|
+
/**
|
|
733
|
+
* MsgReact defines the MsgReact message.
|
|
734
|
+
* @name MsgReact
|
|
735
|
+
* @package sparkdream.blog.v1
|
|
736
|
+
* @see proto type: sparkdream.blog.v1.MsgReact
|
|
737
|
+
*/
|
|
738
|
+
export interface MsgReact {
|
|
739
|
+
creator: string;
|
|
740
|
+
postId: bigint;
|
|
741
|
+
replyId: bigint;
|
|
742
|
+
/**
|
|
743
|
+
* Uses enum instead of uint64
|
|
744
|
+
*/
|
|
745
|
+
reactionType: ReactionType;
|
|
746
|
+
}
|
|
747
|
+
export interface MsgReactProtoMsg {
|
|
748
|
+
typeUrl: "/sparkdream.blog.v1.MsgReact";
|
|
749
|
+
value: Uint8Array;
|
|
750
|
+
}
|
|
751
|
+
/**
|
|
752
|
+
* MsgReact defines the MsgReact message.
|
|
753
|
+
* @name MsgReactAmino
|
|
754
|
+
* @package sparkdream.blog.v1
|
|
755
|
+
* @see proto type: sparkdream.blog.v1.MsgReact
|
|
756
|
+
*/
|
|
757
|
+
export interface MsgReactAmino {
|
|
758
|
+
creator?: string;
|
|
759
|
+
post_id?: string;
|
|
760
|
+
reply_id?: string;
|
|
761
|
+
/**
|
|
762
|
+
* Uses enum instead of uint64
|
|
763
|
+
*/
|
|
764
|
+
reaction_type?: ReactionType;
|
|
765
|
+
}
|
|
766
|
+
export interface MsgReactAminoMsg {
|
|
767
|
+
type: "/sparkdream.blog.v1.MsgReact";
|
|
768
|
+
value: MsgReactAmino;
|
|
769
|
+
}
|
|
770
|
+
/**
|
|
771
|
+
* MsgReactResponse defines the MsgReactResponse message.
|
|
772
|
+
* @name MsgReactResponse
|
|
773
|
+
* @package sparkdream.blog.v1
|
|
774
|
+
* @see proto type: sparkdream.blog.v1.MsgReactResponse
|
|
775
|
+
*/
|
|
776
|
+
export interface MsgReactResponse {
|
|
777
|
+
}
|
|
778
|
+
export interface MsgReactResponseProtoMsg {
|
|
779
|
+
typeUrl: "/sparkdream.blog.v1.MsgReactResponse";
|
|
780
|
+
value: Uint8Array;
|
|
781
|
+
}
|
|
782
|
+
/**
|
|
783
|
+
* MsgReactResponse defines the MsgReactResponse message.
|
|
784
|
+
* @name MsgReactResponseAmino
|
|
785
|
+
* @package sparkdream.blog.v1
|
|
786
|
+
* @see proto type: sparkdream.blog.v1.MsgReactResponse
|
|
787
|
+
*/
|
|
788
|
+
export interface MsgReactResponseAmino {
|
|
789
|
+
}
|
|
790
|
+
export interface MsgReactResponseAminoMsg {
|
|
791
|
+
type: "/sparkdream.blog.v1.MsgReactResponse";
|
|
792
|
+
value: MsgReactResponseAmino;
|
|
793
|
+
}
|
|
794
|
+
/**
|
|
795
|
+
* MsgRemoveReaction defines the MsgRemoveReaction message.
|
|
796
|
+
* @name MsgRemoveReaction
|
|
797
|
+
* @package sparkdream.blog.v1
|
|
798
|
+
* @see proto type: sparkdream.blog.v1.MsgRemoveReaction
|
|
799
|
+
*/
|
|
800
|
+
export interface MsgRemoveReaction {
|
|
801
|
+
creator: string;
|
|
802
|
+
postId: bigint;
|
|
803
|
+
replyId: bigint;
|
|
804
|
+
}
|
|
805
|
+
export interface MsgRemoveReactionProtoMsg {
|
|
806
|
+
typeUrl: "/sparkdream.blog.v1.MsgRemoveReaction";
|
|
807
|
+
value: Uint8Array;
|
|
808
|
+
}
|
|
809
|
+
/**
|
|
810
|
+
* MsgRemoveReaction defines the MsgRemoveReaction message.
|
|
811
|
+
* @name MsgRemoveReactionAmino
|
|
812
|
+
* @package sparkdream.blog.v1
|
|
813
|
+
* @see proto type: sparkdream.blog.v1.MsgRemoveReaction
|
|
814
|
+
*/
|
|
815
|
+
export interface MsgRemoveReactionAmino {
|
|
816
|
+
creator?: string;
|
|
817
|
+
post_id?: string;
|
|
818
|
+
reply_id?: string;
|
|
819
|
+
}
|
|
820
|
+
export interface MsgRemoveReactionAminoMsg {
|
|
821
|
+
type: "/sparkdream.blog.v1.MsgRemoveReaction";
|
|
822
|
+
value: MsgRemoveReactionAmino;
|
|
823
|
+
}
|
|
824
|
+
/**
|
|
825
|
+
* MsgRemoveReactionResponse defines the MsgRemoveReactionResponse message.
|
|
826
|
+
* @name MsgRemoveReactionResponse
|
|
827
|
+
* @package sparkdream.blog.v1
|
|
828
|
+
* @see proto type: sparkdream.blog.v1.MsgRemoveReactionResponse
|
|
829
|
+
*/
|
|
830
|
+
export interface MsgRemoveReactionResponse {
|
|
831
|
+
}
|
|
832
|
+
export interface MsgRemoveReactionResponseProtoMsg {
|
|
833
|
+
typeUrl: "/sparkdream.blog.v1.MsgRemoveReactionResponse";
|
|
834
|
+
value: Uint8Array;
|
|
835
|
+
}
|
|
836
|
+
/**
|
|
837
|
+
* MsgRemoveReactionResponse defines the MsgRemoveReactionResponse message.
|
|
838
|
+
* @name MsgRemoveReactionResponseAmino
|
|
839
|
+
* @package sparkdream.blog.v1
|
|
840
|
+
* @see proto type: sparkdream.blog.v1.MsgRemoveReactionResponse
|
|
841
|
+
*/
|
|
842
|
+
export interface MsgRemoveReactionResponseAmino {
|
|
843
|
+
}
|
|
844
|
+
export interface MsgRemoveReactionResponseAminoMsg {
|
|
845
|
+
type: "/sparkdream.blog.v1.MsgRemoveReactionResponse";
|
|
846
|
+
value: MsgRemoveReactionResponseAmino;
|
|
847
|
+
}
|
|
848
|
+
/**
|
|
849
|
+
* MsgPinPost defines the MsgPinPost message.
|
|
850
|
+
* @name MsgPinPost
|
|
851
|
+
* @package sparkdream.blog.v1
|
|
852
|
+
* @see proto type: sparkdream.blog.v1.MsgPinPost
|
|
853
|
+
*/
|
|
854
|
+
export interface MsgPinPost {
|
|
855
|
+
creator: string;
|
|
856
|
+
id: bigint;
|
|
857
|
+
}
|
|
858
|
+
export interface MsgPinPostProtoMsg {
|
|
859
|
+
typeUrl: "/sparkdream.blog.v1.MsgPinPost";
|
|
860
|
+
value: Uint8Array;
|
|
861
|
+
}
|
|
862
|
+
/**
|
|
863
|
+
* MsgPinPost defines the MsgPinPost message.
|
|
864
|
+
* @name MsgPinPostAmino
|
|
865
|
+
* @package sparkdream.blog.v1
|
|
866
|
+
* @see proto type: sparkdream.blog.v1.MsgPinPost
|
|
867
|
+
*/
|
|
868
|
+
export interface MsgPinPostAmino {
|
|
869
|
+
creator?: string;
|
|
870
|
+
id?: string;
|
|
871
|
+
}
|
|
872
|
+
export interface MsgPinPostAminoMsg {
|
|
873
|
+
type: "/sparkdream.blog.v1.MsgPinPost";
|
|
874
|
+
value: MsgPinPostAmino;
|
|
875
|
+
}
|
|
876
|
+
/**
|
|
877
|
+
* MsgPinPostResponse defines the MsgPinPostResponse message.
|
|
878
|
+
* @name MsgPinPostResponse
|
|
879
|
+
* @package sparkdream.blog.v1
|
|
880
|
+
* @see proto type: sparkdream.blog.v1.MsgPinPostResponse
|
|
881
|
+
*/
|
|
882
|
+
export interface MsgPinPostResponse {
|
|
883
|
+
}
|
|
884
|
+
export interface MsgPinPostResponseProtoMsg {
|
|
885
|
+
typeUrl: "/sparkdream.blog.v1.MsgPinPostResponse";
|
|
886
|
+
value: Uint8Array;
|
|
887
|
+
}
|
|
888
|
+
/**
|
|
889
|
+
* MsgPinPostResponse defines the MsgPinPostResponse message.
|
|
890
|
+
* @name MsgPinPostResponseAmino
|
|
891
|
+
* @package sparkdream.blog.v1
|
|
892
|
+
* @see proto type: sparkdream.blog.v1.MsgPinPostResponse
|
|
893
|
+
*/
|
|
894
|
+
export interface MsgPinPostResponseAmino {
|
|
895
|
+
}
|
|
896
|
+
export interface MsgPinPostResponseAminoMsg {
|
|
897
|
+
type: "/sparkdream.blog.v1.MsgPinPostResponse";
|
|
898
|
+
value: MsgPinPostResponseAmino;
|
|
899
|
+
}
|
|
900
|
+
/**
|
|
901
|
+
* MsgPinReply defines the MsgPinReply message.
|
|
902
|
+
* @name MsgPinReply
|
|
903
|
+
* @package sparkdream.blog.v1
|
|
904
|
+
* @see proto type: sparkdream.blog.v1.MsgPinReply
|
|
905
|
+
*/
|
|
906
|
+
export interface MsgPinReply {
|
|
907
|
+
creator: string;
|
|
908
|
+
id: bigint;
|
|
909
|
+
}
|
|
910
|
+
export interface MsgPinReplyProtoMsg {
|
|
911
|
+
typeUrl: "/sparkdream.blog.v1.MsgPinReply";
|
|
912
|
+
value: Uint8Array;
|
|
913
|
+
}
|
|
914
|
+
/**
|
|
915
|
+
* MsgPinReply defines the MsgPinReply message.
|
|
916
|
+
* @name MsgPinReplyAmino
|
|
917
|
+
* @package sparkdream.blog.v1
|
|
918
|
+
* @see proto type: sparkdream.blog.v1.MsgPinReply
|
|
919
|
+
*/
|
|
920
|
+
export interface MsgPinReplyAmino {
|
|
921
|
+
creator?: string;
|
|
922
|
+
id?: string;
|
|
923
|
+
}
|
|
924
|
+
export interface MsgPinReplyAminoMsg {
|
|
925
|
+
type: "/sparkdream.blog.v1.MsgPinReply";
|
|
926
|
+
value: MsgPinReplyAmino;
|
|
927
|
+
}
|
|
928
|
+
/**
|
|
929
|
+
* MsgPinReplyResponse defines the MsgPinReplyResponse message.
|
|
930
|
+
* @name MsgPinReplyResponse
|
|
931
|
+
* @package sparkdream.blog.v1
|
|
932
|
+
* @see proto type: sparkdream.blog.v1.MsgPinReplyResponse
|
|
933
|
+
*/
|
|
934
|
+
export interface MsgPinReplyResponse {
|
|
935
|
+
}
|
|
936
|
+
export interface MsgPinReplyResponseProtoMsg {
|
|
937
|
+
typeUrl: "/sparkdream.blog.v1.MsgPinReplyResponse";
|
|
938
|
+
value: Uint8Array;
|
|
939
|
+
}
|
|
940
|
+
/**
|
|
941
|
+
* MsgPinReplyResponse defines the MsgPinReplyResponse message.
|
|
942
|
+
* @name MsgPinReplyResponseAmino
|
|
943
|
+
* @package sparkdream.blog.v1
|
|
944
|
+
* @see proto type: sparkdream.blog.v1.MsgPinReplyResponse
|
|
945
|
+
*/
|
|
946
|
+
export interface MsgPinReplyResponseAmino {
|
|
947
|
+
}
|
|
948
|
+
export interface MsgPinReplyResponseAminoMsg {
|
|
949
|
+
type: "/sparkdream.blog.v1.MsgPinReplyResponse";
|
|
950
|
+
value: MsgPinReplyResponseAmino;
|
|
951
|
+
}
|
|
952
|
+
/**
|
|
953
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
954
|
+
* @name MsgUpdateParams
|
|
955
|
+
* @package sparkdream.blog.v1
|
|
956
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParams
|
|
957
|
+
*/
|
|
150
958
|
export declare const MsgUpdateParams: {
|
|
151
959
|
typeUrl: string;
|
|
152
960
|
aminoType: string;
|
|
@@ -161,6 +969,13 @@ export declare const MsgUpdateParams: {
|
|
|
161
969
|
toProto(message: MsgUpdateParams): Uint8Array;
|
|
162
970
|
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
163
971
|
};
|
|
972
|
+
/**
|
|
973
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
974
|
+
* MsgUpdateParams message.
|
|
975
|
+
* @name MsgUpdateParamsResponse
|
|
976
|
+
* @package sparkdream.blog.v1
|
|
977
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParamsResponse
|
|
978
|
+
*/
|
|
164
979
|
export declare const MsgUpdateParamsResponse: {
|
|
165
980
|
typeUrl: string;
|
|
166
981
|
encode(_: MsgUpdateParamsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -173,6 +988,52 @@ export declare const MsgUpdateParamsResponse: {
|
|
|
173
988
|
toProto(message: MsgUpdateParamsResponse): Uint8Array;
|
|
174
989
|
toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
|
|
175
990
|
};
|
|
991
|
+
/**
|
|
992
|
+
* MsgUpdateOperationalParams is the Msg/UpdateOperationalParams request type.
|
|
993
|
+
* Authorized: Commons Council Operations Committee (via IsCouncilAuthorized).
|
|
994
|
+
* @name MsgUpdateOperationalParams
|
|
995
|
+
* @package sparkdream.blog.v1
|
|
996
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateOperationalParams
|
|
997
|
+
*/
|
|
998
|
+
export declare const MsgUpdateOperationalParams: {
|
|
999
|
+
typeUrl: string;
|
|
1000
|
+
aminoType: string;
|
|
1001
|
+
encode(message: MsgUpdateOperationalParams, writer?: BinaryWriter): BinaryWriter;
|
|
1002
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateOperationalParams;
|
|
1003
|
+
fromPartial(object: DeepPartial<MsgUpdateOperationalParams>): MsgUpdateOperationalParams;
|
|
1004
|
+
fromAmino(object: MsgUpdateOperationalParamsAmino): MsgUpdateOperationalParams;
|
|
1005
|
+
toAmino(message: MsgUpdateOperationalParams): MsgUpdateOperationalParamsAmino;
|
|
1006
|
+
fromAminoMsg(object: MsgUpdateOperationalParamsAminoMsg): MsgUpdateOperationalParams;
|
|
1007
|
+
toAminoMsg(message: MsgUpdateOperationalParams): MsgUpdateOperationalParamsAminoMsg;
|
|
1008
|
+
fromProtoMsg(message: MsgUpdateOperationalParamsProtoMsg): MsgUpdateOperationalParams;
|
|
1009
|
+
toProto(message: MsgUpdateOperationalParams): Uint8Array;
|
|
1010
|
+
toProtoMsg(message: MsgUpdateOperationalParams): MsgUpdateOperationalParamsProtoMsg;
|
|
1011
|
+
};
|
|
1012
|
+
/**
|
|
1013
|
+
* MsgUpdateOperationalParamsResponse defines the response structure for executing a
|
|
1014
|
+
* MsgUpdateOperationalParams message.
|
|
1015
|
+
* @name MsgUpdateOperationalParamsResponse
|
|
1016
|
+
* @package sparkdream.blog.v1
|
|
1017
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateOperationalParamsResponse
|
|
1018
|
+
*/
|
|
1019
|
+
export declare const MsgUpdateOperationalParamsResponse: {
|
|
1020
|
+
typeUrl: string;
|
|
1021
|
+
encode(_: MsgUpdateOperationalParamsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1022
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateOperationalParamsResponse;
|
|
1023
|
+
fromPartial(_: DeepPartial<MsgUpdateOperationalParamsResponse>): MsgUpdateOperationalParamsResponse;
|
|
1024
|
+
fromAmino(_: MsgUpdateOperationalParamsResponseAmino): MsgUpdateOperationalParamsResponse;
|
|
1025
|
+
toAmino(_: MsgUpdateOperationalParamsResponse): MsgUpdateOperationalParamsResponseAmino;
|
|
1026
|
+
fromAminoMsg(object: MsgUpdateOperationalParamsResponseAminoMsg): MsgUpdateOperationalParamsResponse;
|
|
1027
|
+
fromProtoMsg(message: MsgUpdateOperationalParamsResponseProtoMsg): MsgUpdateOperationalParamsResponse;
|
|
1028
|
+
toProto(message: MsgUpdateOperationalParamsResponse): Uint8Array;
|
|
1029
|
+
toProtoMsg(message: MsgUpdateOperationalParamsResponse): MsgUpdateOperationalParamsResponseProtoMsg;
|
|
1030
|
+
};
|
|
1031
|
+
/**
|
|
1032
|
+
* MsgCreatePost defines the MsgCreatePost message.
|
|
1033
|
+
* @name MsgCreatePost
|
|
1034
|
+
* @package sparkdream.blog.v1
|
|
1035
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePost
|
|
1036
|
+
*/
|
|
176
1037
|
export declare const MsgCreatePost: {
|
|
177
1038
|
typeUrl: string;
|
|
178
1039
|
encode(message: MsgCreatePost, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -185,6 +1046,12 @@ export declare const MsgCreatePost: {
|
|
|
185
1046
|
toProto(message: MsgCreatePost): Uint8Array;
|
|
186
1047
|
toProtoMsg(message: MsgCreatePost): MsgCreatePostProtoMsg;
|
|
187
1048
|
};
|
|
1049
|
+
/**
|
|
1050
|
+
* MsgCreatePostResponse defines the MsgCreatePostResponse message.
|
|
1051
|
+
* @name MsgCreatePostResponse
|
|
1052
|
+
* @package sparkdream.blog.v1
|
|
1053
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePostResponse
|
|
1054
|
+
*/
|
|
188
1055
|
export declare const MsgCreatePostResponse: {
|
|
189
1056
|
typeUrl: string;
|
|
190
1057
|
encode(message: MsgCreatePostResponse, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -197,6 +1064,12 @@ export declare const MsgCreatePostResponse: {
|
|
|
197
1064
|
toProto(message: MsgCreatePostResponse): Uint8Array;
|
|
198
1065
|
toProtoMsg(message: MsgCreatePostResponse): MsgCreatePostResponseProtoMsg;
|
|
199
1066
|
};
|
|
1067
|
+
/**
|
|
1068
|
+
* MsgUpdatePost defines the MsgUpdatePost message.
|
|
1069
|
+
* @name MsgUpdatePost
|
|
1070
|
+
* @package sparkdream.blog.v1
|
|
1071
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePost
|
|
1072
|
+
*/
|
|
200
1073
|
export declare const MsgUpdatePost: {
|
|
201
1074
|
typeUrl: string;
|
|
202
1075
|
encode(message: MsgUpdatePost, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -209,6 +1082,12 @@ export declare const MsgUpdatePost: {
|
|
|
209
1082
|
toProto(message: MsgUpdatePost): Uint8Array;
|
|
210
1083
|
toProtoMsg(message: MsgUpdatePost): MsgUpdatePostProtoMsg;
|
|
211
1084
|
};
|
|
1085
|
+
/**
|
|
1086
|
+
* MsgUpdatePostResponse defines the MsgUpdatePostResponse message.
|
|
1087
|
+
* @name MsgUpdatePostResponse
|
|
1088
|
+
* @package sparkdream.blog.v1
|
|
1089
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePostResponse
|
|
1090
|
+
*/
|
|
212
1091
|
export declare const MsgUpdatePostResponse: {
|
|
213
1092
|
typeUrl: string;
|
|
214
1093
|
encode(_: MsgUpdatePostResponse, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -221,6 +1100,12 @@ export declare const MsgUpdatePostResponse: {
|
|
|
221
1100
|
toProto(message: MsgUpdatePostResponse): Uint8Array;
|
|
222
1101
|
toProtoMsg(message: MsgUpdatePostResponse): MsgUpdatePostResponseProtoMsg;
|
|
223
1102
|
};
|
|
1103
|
+
/**
|
|
1104
|
+
* MsgDeletePost defines the MsgDeletePost message.
|
|
1105
|
+
* @name MsgDeletePost
|
|
1106
|
+
* @package sparkdream.blog.v1
|
|
1107
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePost
|
|
1108
|
+
*/
|
|
224
1109
|
export declare const MsgDeletePost: {
|
|
225
1110
|
typeUrl: string;
|
|
226
1111
|
encode(message: MsgDeletePost, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -233,6 +1118,12 @@ export declare const MsgDeletePost: {
|
|
|
233
1118
|
toProto(message: MsgDeletePost): Uint8Array;
|
|
234
1119
|
toProtoMsg(message: MsgDeletePost): MsgDeletePostProtoMsg;
|
|
235
1120
|
};
|
|
1121
|
+
/**
|
|
1122
|
+
* MsgDeletePostResponse defines the MsgDeletePostResponse message.
|
|
1123
|
+
* @name MsgDeletePostResponse
|
|
1124
|
+
* @package sparkdream.blog.v1
|
|
1125
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePostResponse
|
|
1126
|
+
*/
|
|
236
1127
|
export declare const MsgDeletePostResponse: {
|
|
237
1128
|
typeUrl: string;
|
|
238
1129
|
encode(_: MsgDeletePostResponse, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -245,3 +1136,399 @@ export declare const MsgDeletePostResponse: {
|
|
|
245
1136
|
toProto(message: MsgDeletePostResponse): Uint8Array;
|
|
246
1137
|
toProtoMsg(message: MsgDeletePostResponse): MsgDeletePostResponseProtoMsg;
|
|
247
1138
|
};
|
|
1139
|
+
/**
|
|
1140
|
+
* MsgHidePost defines the MsgHidePost message.
|
|
1141
|
+
* @name MsgHidePost
|
|
1142
|
+
* @package sparkdream.blog.v1
|
|
1143
|
+
* @see proto type: sparkdream.blog.v1.MsgHidePost
|
|
1144
|
+
*/
|
|
1145
|
+
export declare const MsgHidePost: {
|
|
1146
|
+
typeUrl: string;
|
|
1147
|
+
encode(message: MsgHidePost, writer?: BinaryWriter): BinaryWriter;
|
|
1148
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgHidePost;
|
|
1149
|
+
fromPartial(object: DeepPartial<MsgHidePost>): MsgHidePost;
|
|
1150
|
+
fromAmino(object: MsgHidePostAmino): MsgHidePost;
|
|
1151
|
+
toAmino(message: MsgHidePost): MsgHidePostAmino;
|
|
1152
|
+
fromAminoMsg(object: MsgHidePostAminoMsg): MsgHidePost;
|
|
1153
|
+
fromProtoMsg(message: MsgHidePostProtoMsg): MsgHidePost;
|
|
1154
|
+
toProto(message: MsgHidePost): Uint8Array;
|
|
1155
|
+
toProtoMsg(message: MsgHidePost): MsgHidePostProtoMsg;
|
|
1156
|
+
};
|
|
1157
|
+
/**
|
|
1158
|
+
* MsgHidePostResponse defines the MsgHidePostResponse message.
|
|
1159
|
+
* @name MsgHidePostResponse
|
|
1160
|
+
* @package sparkdream.blog.v1
|
|
1161
|
+
* @see proto type: sparkdream.blog.v1.MsgHidePostResponse
|
|
1162
|
+
*/
|
|
1163
|
+
export declare const MsgHidePostResponse: {
|
|
1164
|
+
typeUrl: string;
|
|
1165
|
+
encode(_: MsgHidePostResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1166
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgHidePostResponse;
|
|
1167
|
+
fromPartial(_: DeepPartial<MsgHidePostResponse>): MsgHidePostResponse;
|
|
1168
|
+
fromAmino(_: MsgHidePostResponseAmino): MsgHidePostResponse;
|
|
1169
|
+
toAmino(_: MsgHidePostResponse): MsgHidePostResponseAmino;
|
|
1170
|
+
fromAminoMsg(object: MsgHidePostResponseAminoMsg): MsgHidePostResponse;
|
|
1171
|
+
fromProtoMsg(message: MsgHidePostResponseProtoMsg): MsgHidePostResponse;
|
|
1172
|
+
toProto(message: MsgHidePostResponse): Uint8Array;
|
|
1173
|
+
toProtoMsg(message: MsgHidePostResponse): MsgHidePostResponseProtoMsg;
|
|
1174
|
+
};
|
|
1175
|
+
/**
|
|
1176
|
+
* MsgUnhidePost defines the MsgUnhidePost message.
|
|
1177
|
+
* @name MsgUnhidePost
|
|
1178
|
+
* @package sparkdream.blog.v1
|
|
1179
|
+
* @see proto type: sparkdream.blog.v1.MsgUnhidePost
|
|
1180
|
+
*/
|
|
1181
|
+
export declare const MsgUnhidePost: {
|
|
1182
|
+
typeUrl: string;
|
|
1183
|
+
encode(message: MsgUnhidePost, writer?: BinaryWriter): BinaryWriter;
|
|
1184
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnhidePost;
|
|
1185
|
+
fromPartial(object: DeepPartial<MsgUnhidePost>): MsgUnhidePost;
|
|
1186
|
+
fromAmino(object: MsgUnhidePostAmino): MsgUnhidePost;
|
|
1187
|
+
toAmino(message: MsgUnhidePost): MsgUnhidePostAmino;
|
|
1188
|
+
fromAminoMsg(object: MsgUnhidePostAminoMsg): MsgUnhidePost;
|
|
1189
|
+
fromProtoMsg(message: MsgUnhidePostProtoMsg): MsgUnhidePost;
|
|
1190
|
+
toProto(message: MsgUnhidePost): Uint8Array;
|
|
1191
|
+
toProtoMsg(message: MsgUnhidePost): MsgUnhidePostProtoMsg;
|
|
1192
|
+
};
|
|
1193
|
+
/**
|
|
1194
|
+
* MsgUnhidePostResponse defines the MsgUnhidePostResponse message.
|
|
1195
|
+
* @name MsgUnhidePostResponse
|
|
1196
|
+
* @package sparkdream.blog.v1
|
|
1197
|
+
* @see proto type: sparkdream.blog.v1.MsgUnhidePostResponse
|
|
1198
|
+
*/
|
|
1199
|
+
export declare const MsgUnhidePostResponse: {
|
|
1200
|
+
typeUrl: string;
|
|
1201
|
+
encode(_: MsgUnhidePostResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1202
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnhidePostResponse;
|
|
1203
|
+
fromPartial(_: DeepPartial<MsgUnhidePostResponse>): MsgUnhidePostResponse;
|
|
1204
|
+
fromAmino(_: MsgUnhidePostResponseAmino): MsgUnhidePostResponse;
|
|
1205
|
+
toAmino(_: MsgUnhidePostResponse): MsgUnhidePostResponseAmino;
|
|
1206
|
+
fromAminoMsg(object: MsgUnhidePostResponseAminoMsg): MsgUnhidePostResponse;
|
|
1207
|
+
fromProtoMsg(message: MsgUnhidePostResponseProtoMsg): MsgUnhidePostResponse;
|
|
1208
|
+
toProto(message: MsgUnhidePostResponse): Uint8Array;
|
|
1209
|
+
toProtoMsg(message: MsgUnhidePostResponse): MsgUnhidePostResponseProtoMsg;
|
|
1210
|
+
};
|
|
1211
|
+
/**
|
|
1212
|
+
* MsgCreateReply defines the MsgCreateReply message.
|
|
1213
|
+
* @name MsgCreateReply
|
|
1214
|
+
* @package sparkdream.blog.v1
|
|
1215
|
+
* @see proto type: sparkdream.blog.v1.MsgCreateReply
|
|
1216
|
+
*/
|
|
1217
|
+
export declare const MsgCreateReply: {
|
|
1218
|
+
typeUrl: string;
|
|
1219
|
+
encode(message: MsgCreateReply, writer?: BinaryWriter): BinaryWriter;
|
|
1220
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateReply;
|
|
1221
|
+
fromPartial(object: DeepPartial<MsgCreateReply>): MsgCreateReply;
|
|
1222
|
+
fromAmino(object: MsgCreateReplyAmino): MsgCreateReply;
|
|
1223
|
+
toAmino(message: MsgCreateReply): MsgCreateReplyAmino;
|
|
1224
|
+
fromAminoMsg(object: MsgCreateReplyAminoMsg): MsgCreateReply;
|
|
1225
|
+
fromProtoMsg(message: MsgCreateReplyProtoMsg): MsgCreateReply;
|
|
1226
|
+
toProto(message: MsgCreateReply): Uint8Array;
|
|
1227
|
+
toProtoMsg(message: MsgCreateReply): MsgCreateReplyProtoMsg;
|
|
1228
|
+
};
|
|
1229
|
+
/**
|
|
1230
|
+
* MsgCreateReplyResponse defines the MsgCreateReplyResponse message.
|
|
1231
|
+
* @name MsgCreateReplyResponse
|
|
1232
|
+
* @package sparkdream.blog.v1
|
|
1233
|
+
* @see proto type: sparkdream.blog.v1.MsgCreateReplyResponse
|
|
1234
|
+
*/
|
|
1235
|
+
export declare const MsgCreateReplyResponse: {
|
|
1236
|
+
typeUrl: string;
|
|
1237
|
+
encode(message: MsgCreateReplyResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1238
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateReplyResponse;
|
|
1239
|
+
fromPartial(object: DeepPartial<MsgCreateReplyResponse>): MsgCreateReplyResponse;
|
|
1240
|
+
fromAmino(object: MsgCreateReplyResponseAmino): MsgCreateReplyResponse;
|
|
1241
|
+
toAmino(message: MsgCreateReplyResponse): MsgCreateReplyResponseAmino;
|
|
1242
|
+
fromAminoMsg(object: MsgCreateReplyResponseAminoMsg): MsgCreateReplyResponse;
|
|
1243
|
+
fromProtoMsg(message: MsgCreateReplyResponseProtoMsg): MsgCreateReplyResponse;
|
|
1244
|
+
toProto(message: MsgCreateReplyResponse): Uint8Array;
|
|
1245
|
+
toProtoMsg(message: MsgCreateReplyResponse): MsgCreateReplyResponseProtoMsg;
|
|
1246
|
+
};
|
|
1247
|
+
/**
|
|
1248
|
+
* MsgUpdateReply defines the MsgUpdateReply message.
|
|
1249
|
+
* @name MsgUpdateReply
|
|
1250
|
+
* @package sparkdream.blog.v1
|
|
1251
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateReply
|
|
1252
|
+
*/
|
|
1253
|
+
export declare const MsgUpdateReply: {
|
|
1254
|
+
typeUrl: string;
|
|
1255
|
+
encode(message: MsgUpdateReply, writer?: BinaryWriter): BinaryWriter;
|
|
1256
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateReply;
|
|
1257
|
+
fromPartial(object: DeepPartial<MsgUpdateReply>): MsgUpdateReply;
|
|
1258
|
+
fromAmino(object: MsgUpdateReplyAmino): MsgUpdateReply;
|
|
1259
|
+
toAmino(message: MsgUpdateReply): MsgUpdateReplyAmino;
|
|
1260
|
+
fromAminoMsg(object: MsgUpdateReplyAminoMsg): MsgUpdateReply;
|
|
1261
|
+
fromProtoMsg(message: MsgUpdateReplyProtoMsg): MsgUpdateReply;
|
|
1262
|
+
toProto(message: MsgUpdateReply): Uint8Array;
|
|
1263
|
+
toProtoMsg(message: MsgUpdateReply): MsgUpdateReplyProtoMsg;
|
|
1264
|
+
};
|
|
1265
|
+
/**
|
|
1266
|
+
* MsgUpdateReplyResponse defines the MsgUpdateReplyResponse message.
|
|
1267
|
+
* @name MsgUpdateReplyResponse
|
|
1268
|
+
* @package sparkdream.blog.v1
|
|
1269
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateReplyResponse
|
|
1270
|
+
*/
|
|
1271
|
+
export declare const MsgUpdateReplyResponse: {
|
|
1272
|
+
typeUrl: string;
|
|
1273
|
+
encode(_: MsgUpdateReplyResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1274
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateReplyResponse;
|
|
1275
|
+
fromPartial(_: DeepPartial<MsgUpdateReplyResponse>): MsgUpdateReplyResponse;
|
|
1276
|
+
fromAmino(_: MsgUpdateReplyResponseAmino): MsgUpdateReplyResponse;
|
|
1277
|
+
toAmino(_: MsgUpdateReplyResponse): MsgUpdateReplyResponseAmino;
|
|
1278
|
+
fromAminoMsg(object: MsgUpdateReplyResponseAminoMsg): MsgUpdateReplyResponse;
|
|
1279
|
+
fromProtoMsg(message: MsgUpdateReplyResponseProtoMsg): MsgUpdateReplyResponse;
|
|
1280
|
+
toProto(message: MsgUpdateReplyResponse): Uint8Array;
|
|
1281
|
+
toProtoMsg(message: MsgUpdateReplyResponse): MsgUpdateReplyResponseProtoMsg;
|
|
1282
|
+
};
|
|
1283
|
+
/**
|
|
1284
|
+
* MsgDeleteReply defines the MsgDeleteReply message.
|
|
1285
|
+
* @name MsgDeleteReply
|
|
1286
|
+
* @package sparkdream.blog.v1
|
|
1287
|
+
* @see proto type: sparkdream.blog.v1.MsgDeleteReply
|
|
1288
|
+
*/
|
|
1289
|
+
export declare const MsgDeleteReply: {
|
|
1290
|
+
typeUrl: string;
|
|
1291
|
+
encode(message: MsgDeleteReply, writer?: BinaryWriter): BinaryWriter;
|
|
1292
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgDeleteReply;
|
|
1293
|
+
fromPartial(object: DeepPartial<MsgDeleteReply>): MsgDeleteReply;
|
|
1294
|
+
fromAmino(object: MsgDeleteReplyAmino): MsgDeleteReply;
|
|
1295
|
+
toAmino(message: MsgDeleteReply): MsgDeleteReplyAmino;
|
|
1296
|
+
fromAminoMsg(object: MsgDeleteReplyAminoMsg): MsgDeleteReply;
|
|
1297
|
+
fromProtoMsg(message: MsgDeleteReplyProtoMsg): MsgDeleteReply;
|
|
1298
|
+
toProto(message: MsgDeleteReply): Uint8Array;
|
|
1299
|
+
toProtoMsg(message: MsgDeleteReply): MsgDeleteReplyProtoMsg;
|
|
1300
|
+
};
|
|
1301
|
+
/**
|
|
1302
|
+
* MsgDeleteReplyResponse defines the MsgDeleteReplyResponse message.
|
|
1303
|
+
* @name MsgDeleteReplyResponse
|
|
1304
|
+
* @package sparkdream.blog.v1
|
|
1305
|
+
* @see proto type: sparkdream.blog.v1.MsgDeleteReplyResponse
|
|
1306
|
+
*/
|
|
1307
|
+
export declare const MsgDeleteReplyResponse: {
|
|
1308
|
+
typeUrl: string;
|
|
1309
|
+
encode(_: MsgDeleteReplyResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1310
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgDeleteReplyResponse;
|
|
1311
|
+
fromPartial(_: DeepPartial<MsgDeleteReplyResponse>): MsgDeleteReplyResponse;
|
|
1312
|
+
fromAmino(_: MsgDeleteReplyResponseAmino): MsgDeleteReplyResponse;
|
|
1313
|
+
toAmino(_: MsgDeleteReplyResponse): MsgDeleteReplyResponseAmino;
|
|
1314
|
+
fromAminoMsg(object: MsgDeleteReplyResponseAminoMsg): MsgDeleteReplyResponse;
|
|
1315
|
+
fromProtoMsg(message: MsgDeleteReplyResponseProtoMsg): MsgDeleteReplyResponse;
|
|
1316
|
+
toProto(message: MsgDeleteReplyResponse): Uint8Array;
|
|
1317
|
+
toProtoMsg(message: MsgDeleteReplyResponse): MsgDeleteReplyResponseProtoMsg;
|
|
1318
|
+
};
|
|
1319
|
+
/**
|
|
1320
|
+
* MsgHideReply defines the MsgHideReply message.
|
|
1321
|
+
* @name MsgHideReply
|
|
1322
|
+
* @package sparkdream.blog.v1
|
|
1323
|
+
* @see proto type: sparkdream.blog.v1.MsgHideReply
|
|
1324
|
+
*/
|
|
1325
|
+
export declare const MsgHideReply: {
|
|
1326
|
+
typeUrl: string;
|
|
1327
|
+
encode(message: MsgHideReply, writer?: BinaryWriter): BinaryWriter;
|
|
1328
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgHideReply;
|
|
1329
|
+
fromPartial(object: DeepPartial<MsgHideReply>): MsgHideReply;
|
|
1330
|
+
fromAmino(object: MsgHideReplyAmino): MsgHideReply;
|
|
1331
|
+
toAmino(message: MsgHideReply): MsgHideReplyAmino;
|
|
1332
|
+
fromAminoMsg(object: MsgHideReplyAminoMsg): MsgHideReply;
|
|
1333
|
+
fromProtoMsg(message: MsgHideReplyProtoMsg): MsgHideReply;
|
|
1334
|
+
toProto(message: MsgHideReply): Uint8Array;
|
|
1335
|
+
toProtoMsg(message: MsgHideReply): MsgHideReplyProtoMsg;
|
|
1336
|
+
};
|
|
1337
|
+
/**
|
|
1338
|
+
* MsgHideReplyResponse defines the MsgHideReplyResponse message.
|
|
1339
|
+
* @name MsgHideReplyResponse
|
|
1340
|
+
* @package sparkdream.blog.v1
|
|
1341
|
+
* @see proto type: sparkdream.blog.v1.MsgHideReplyResponse
|
|
1342
|
+
*/
|
|
1343
|
+
export declare const MsgHideReplyResponse: {
|
|
1344
|
+
typeUrl: string;
|
|
1345
|
+
encode(_: MsgHideReplyResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1346
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgHideReplyResponse;
|
|
1347
|
+
fromPartial(_: DeepPartial<MsgHideReplyResponse>): MsgHideReplyResponse;
|
|
1348
|
+
fromAmino(_: MsgHideReplyResponseAmino): MsgHideReplyResponse;
|
|
1349
|
+
toAmino(_: MsgHideReplyResponse): MsgHideReplyResponseAmino;
|
|
1350
|
+
fromAminoMsg(object: MsgHideReplyResponseAminoMsg): MsgHideReplyResponse;
|
|
1351
|
+
fromProtoMsg(message: MsgHideReplyResponseProtoMsg): MsgHideReplyResponse;
|
|
1352
|
+
toProto(message: MsgHideReplyResponse): Uint8Array;
|
|
1353
|
+
toProtoMsg(message: MsgHideReplyResponse): MsgHideReplyResponseProtoMsg;
|
|
1354
|
+
};
|
|
1355
|
+
/**
|
|
1356
|
+
* MsgUnhideReply defines the MsgUnhideReply message.
|
|
1357
|
+
* @name MsgUnhideReply
|
|
1358
|
+
* @package sparkdream.blog.v1
|
|
1359
|
+
* @see proto type: sparkdream.blog.v1.MsgUnhideReply
|
|
1360
|
+
*/
|
|
1361
|
+
export declare const MsgUnhideReply: {
|
|
1362
|
+
typeUrl: string;
|
|
1363
|
+
encode(message: MsgUnhideReply, writer?: BinaryWriter): BinaryWriter;
|
|
1364
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnhideReply;
|
|
1365
|
+
fromPartial(object: DeepPartial<MsgUnhideReply>): MsgUnhideReply;
|
|
1366
|
+
fromAmino(object: MsgUnhideReplyAmino): MsgUnhideReply;
|
|
1367
|
+
toAmino(message: MsgUnhideReply): MsgUnhideReplyAmino;
|
|
1368
|
+
fromAminoMsg(object: MsgUnhideReplyAminoMsg): MsgUnhideReply;
|
|
1369
|
+
fromProtoMsg(message: MsgUnhideReplyProtoMsg): MsgUnhideReply;
|
|
1370
|
+
toProto(message: MsgUnhideReply): Uint8Array;
|
|
1371
|
+
toProtoMsg(message: MsgUnhideReply): MsgUnhideReplyProtoMsg;
|
|
1372
|
+
};
|
|
1373
|
+
/**
|
|
1374
|
+
* MsgUnhideReplyResponse defines the MsgUnhideReplyResponse message.
|
|
1375
|
+
* @name MsgUnhideReplyResponse
|
|
1376
|
+
* @package sparkdream.blog.v1
|
|
1377
|
+
* @see proto type: sparkdream.blog.v1.MsgUnhideReplyResponse
|
|
1378
|
+
*/
|
|
1379
|
+
export declare const MsgUnhideReplyResponse: {
|
|
1380
|
+
typeUrl: string;
|
|
1381
|
+
encode(_: MsgUnhideReplyResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1382
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnhideReplyResponse;
|
|
1383
|
+
fromPartial(_: DeepPartial<MsgUnhideReplyResponse>): MsgUnhideReplyResponse;
|
|
1384
|
+
fromAmino(_: MsgUnhideReplyResponseAmino): MsgUnhideReplyResponse;
|
|
1385
|
+
toAmino(_: MsgUnhideReplyResponse): MsgUnhideReplyResponseAmino;
|
|
1386
|
+
fromAminoMsg(object: MsgUnhideReplyResponseAminoMsg): MsgUnhideReplyResponse;
|
|
1387
|
+
fromProtoMsg(message: MsgUnhideReplyResponseProtoMsg): MsgUnhideReplyResponse;
|
|
1388
|
+
toProto(message: MsgUnhideReplyResponse): Uint8Array;
|
|
1389
|
+
toProtoMsg(message: MsgUnhideReplyResponse): MsgUnhideReplyResponseProtoMsg;
|
|
1390
|
+
};
|
|
1391
|
+
/**
|
|
1392
|
+
* MsgReact defines the MsgReact message.
|
|
1393
|
+
* @name MsgReact
|
|
1394
|
+
* @package sparkdream.blog.v1
|
|
1395
|
+
* @see proto type: sparkdream.blog.v1.MsgReact
|
|
1396
|
+
*/
|
|
1397
|
+
export declare const MsgReact: {
|
|
1398
|
+
typeUrl: string;
|
|
1399
|
+
encode(message: MsgReact, writer?: BinaryWriter): BinaryWriter;
|
|
1400
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgReact;
|
|
1401
|
+
fromPartial(object: DeepPartial<MsgReact>): MsgReact;
|
|
1402
|
+
fromAmino(object: MsgReactAmino): MsgReact;
|
|
1403
|
+
toAmino(message: MsgReact): MsgReactAmino;
|
|
1404
|
+
fromAminoMsg(object: MsgReactAminoMsg): MsgReact;
|
|
1405
|
+
fromProtoMsg(message: MsgReactProtoMsg): MsgReact;
|
|
1406
|
+
toProto(message: MsgReact): Uint8Array;
|
|
1407
|
+
toProtoMsg(message: MsgReact): MsgReactProtoMsg;
|
|
1408
|
+
};
|
|
1409
|
+
/**
|
|
1410
|
+
* MsgReactResponse defines the MsgReactResponse message.
|
|
1411
|
+
* @name MsgReactResponse
|
|
1412
|
+
* @package sparkdream.blog.v1
|
|
1413
|
+
* @see proto type: sparkdream.blog.v1.MsgReactResponse
|
|
1414
|
+
*/
|
|
1415
|
+
export declare const MsgReactResponse: {
|
|
1416
|
+
typeUrl: string;
|
|
1417
|
+
encode(_: MsgReactResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1418
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgReactResponse;
|
|
1419
|
+
fromPartial(_: DeepPartial<MsgReactResponse>): MsgReactResponse;
|
|
1420
|
+
fromAmino(_: MsgReactResponseAmino): MsgReactResponse;
|
|
1421
|
+
toAmino(_: MsgReactResponse): MsgReactResponseAmino;
|
|
1422
|
+
fromAminoMsg(object: MsgReactResponseAminoMsg): MsgReactResponse;
|
|
1423
|
+
fromProtoMsg(message: MsgReactResponseProtoMsg): MsgReactResponse;
|
|
1424
|
+
toProto(message: MsgReactResponse): Uint8Array;
|
|
1425
|
+
toProtoMsg(message: MsgReactResponse): MsgReactResponseProtoMsg;
|
|
1426
|
+
};
|
|
1427
|
+
/**
|
|
1428
|
+
* MsgRemoveReaction defines the MsgRemoveReaction message.
|
|
1429
|
+
* @name MsgRemoveReaction
|
|
1430
|
+
* @package sparkdream.blog.v1
|
|
1431
|
+
* @see proto type: sparkdream.blog.v1.MsgRemoveReaction
|
|
1432
|
+
*/
|
|
1433
|
+
export declare const MsgRemoveReaction: {
|
|
1434
|
+
typeUrl: string;
|
|
1435
|
+
encode(message: MsgRemoveReaction, writer?: BinaryWriter): BinaryWriter;
|
|
1436
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRemoveReaction;
|
|
1437
|
+
fromPartial(object: DeepPartial<MsgRemoveReaction>): MsgRemoveReaction;
|
|
1438
|
+
fromAmino(object: MsgRemoveReactionAmino): MsgRemoveReaction;
|
|
1439
|
+
toAmino(message: MsgRemoveReaction): MsgRemoveReactionAmino;
|
|
1440
|
+
fromAminoMsg(object: MsgRemoveReactionAminoMsg): MsgRemoveReaction;
|
|
1441
|
+
fromProtoMsg(message: MsgRemoveReactionProtoMsg): MsgRemoveReaction;
|
|
1442
|
+
toProto(message: MsgRemoveReaction): Uint8Array;
|
|
1443
|
+
toProtoMsg(message: MsgRemoveReaction): MsgRemoveReactionProtoMsg;
|
|
1444
|
+
};
|
|
1445
|
+
/**
|
|
1446
|
+
* MsgRemoveReactionResponse defines the MsgRemoveReactionResponse message.
|
|
1447
|
+
* @name MsgRemoveReactionResponse
|
|
1448
|
+
* @package sparkdream.blog.v1
|
|
1449
|
+
* @see proto type: sparkdream.blog.v1.MsgRemoveReactionResponse
|
|
1450
|
+
*/
|
|
1451
|
+
export declare const MsgRemoveReactionResponse: {
|
|
1452
|
+
typeUrl: string;
|
|
1453
|
+
encode(_: MsgRemoveReactionResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1454
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRemoveReactionResponse;
|
|
1455
|
+
fromPartial(_: DeepPartial<MsgRemoveReactionResponse>): MsgRemoveReactionResponse;
|
|
1456
|
+
fromAmino(_: MsgRemoveReactionResponseAmino): MsgRemoveReactionResponse;
|
|
1457
|
+
toAmino(_: MsgRemoveReactionResponse): MsgRemoveReactionResponseAmino;
|
|
1458
|
+
fromAminoMsg(object: MsgRemoveReactionResponseAminoMsg): MsgRemoveReactionResponse;
|
|
1459
|
+
fromProtoMsg(message: MsgRemoveReactionResponseProtoMsg): MsgRemoveReactionResponse;
|
|
1460
|
+
toProto(message: MsgRemoveReactionResponse): Uint8Array;
|
|
1461
|
+
toProtoMsg(message: MsgRemoveReactionResponse): MsgRemoveReactionResponseProtoMsg;
|
|
1462
|
+
};
|
|
1463
|
+
/**
|
|
1464
|
+
* MsgPinPost defines the MsgPinPost message.
|
|
1465
|
+
* @name MsgPinPost
|
|
1466
|
+
* @package sparkdream.blog.v1
|
|
1467
|
+
* @see proto type: sparkdream.blog.v1.MsgPinPost
|
|
1468
|
+
*/
|
|
1469
|
+
export declare const MsgPinPost: {
|
|
1470
|
+
typeUrl: string;
|
|
1471
|
+
encode(message: MsgPinPost, writer?: BinaryWriter): BinaryWriter;
|
|
1472
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgPinPost;
|
|
1473
|
+
fromPartial(object: DeepPartial<MsgPinPost>): MsgPinPost;
|
|
1474
|
+
fromAmino(object: MsgPinPostAmino): MsgPinPost;
|
|
1475
|
+
toAmino(message: MsgPinPost): MsgPinPostAmino;
|
|
1476
|
+
fromAminoMsg(object: MsgPinPostAminoMsg): MsgPinPost;
|
|
1477
|
+
fromProtoMsg(message: MsgPinPostProtoMsg): MsgPinPost;
|
|
1478
|
+
toProto(message: MsgPinPost): Uint8Array;
|
|
1479
|
+
toProtoMsg(message: MsgPinPost): MsgPinPostProtoMsg;
|
|
1480
|
+
};
|
|
1481
|
+
/**
|
|
1482
|
+
* MsgPinPostResponse defines the MsgPinPostResponse message.
|
|
1483
|
+
* @name MsgPinPostResponse
|
|
1484
|
+
* @package sparkdream.blog.v1
|
|
1485
|
+
* @see proto type: sparkdream.blog.v1.MsgPinPostResponse
|
|
1486
|
+
*/
|
|
1487
|
+
export declare const MsgPinPostResponse: {
|
|
1488
|
+
typeUrl: string;
|
|
1489
|
+
encode(_: MsgPinPostResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1490
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgPinPostResponse;
|
|
1491
|
+
fromPartial(_: DeepPartial<MsgPinPostResponse>): MsgPinPostResponse;
|
|
1492
|
+
fromAmino(_: MsgPinPostResponseAmino): MsgPinPostResponse;
|
|
1493
|
+
toAmino(_: MsgPinPostResponse): MsgPinPostResponseAmino;
|
|
1494
|
+
fromAminoMsg(object: MsgPinPostResponseAminoMsg): MsgPinPostResponse;
|
|
1495
|
+
fromProtoMsg(message: MsgPinPostResponseProtoMsg): MsgPinPostResponse;
|
|
1496
|
+
toProto(message: MsgPinPostResponse): Uint8Array;
|
|
1497
|
+
toProtoMsg(message: MsgPinPostResponse): MsgPinPostResponseProtoMsg;
|
|
1498
|
+
};
|
|
1499
|
+
/**
|
|
1500
|
+
* MsgPinReply defines the MsgPinReply message.
|
|
1501
|
+
* @name MsgPinReply
|
|
1502
|
+
* @package sparkdream.blog.v1
|
|
1503
|
+
* @see proto type: sparkdream.blog.v1.MsgPinReply
|
|
1504
|
+
*/
|
|
1505
|
+
export declare const MsgPinReply: {
|
|
1506
|
+
typeUrl: string;
|
|
1507
|
+
encode(message: MsgPinReply, writer?: BinaryWriter): BinaryWriter;
|
|
1508
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgPinReply;
|
|
1509
|
+
fromPartial(object: DeepPartial<MsgPinReply>): MsgPinReply;
|
|
1510
|
+
fromAmino(object: MsgPinReplyAmino): MsgPinReply;
|
|
1511
|
+
toAmino(message: MsgPinReply): MsgPinReplyAmino;
|
|
1512
|
+
fromAminoMsg(object: MsgPinReplyAminoMsg): MsgPinReply;
|
|
1513
|
+
fromProtoMsg(message: MsgPinReplyProtoMsg): MsgPinReply;
|
|
1514
|
+
toProto(message: MsgPinReply): Uint8Array;
|
|
1515
|
+
toProtoMsg(message: MsgPinReply): MsgPinReplyProtoMsg;
|
|
1516
|
+
};
|
|
1517
|
+
/**
|
|
1518
|
+
* MsgPinReplyResponse defines the MsgPinReplyResponse message.
|
|
1519
|
+
* @name MsgPinReplyResponse
|
|
1520
|
+
* @package sparkdream.blog.v1
|
|
1521
|
+
* @see proto type: sparkdream.blog.v1.MsgPinReplyResponse
|
|
1522
|
+
*/
|
|
1523
|
+
export declare const MsgPinReplyResponse: {
|
|
1524
|
+
typeUrl: string;
|
|
1525
|
+
encode(_: MsgPinReplyResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1526
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgPinReplyResponse;
|
|
1527
|
+
fromPartial(_: DeepPartial<MsgPinReplyResponse>): MsgPinReplyResponse;
|
|
1528
|
+
fromAmino(_: MsgPinReplyResponseAmino): MsgPinReplyResponse;
|
|
1529
|
+
toAmino(_: MsgPinReplyResponse): MsgPinReplyResponseAmino;
|
|
1530
|
+
fromAminoMsg(object: MsgPinReplyResponseAminoMsg): MsgPinReplyResponse;
|
|
1531
|
+
fromProtoMsg(message: MsgPinReplyResponseProtoMsg): MsgPinReplyResponse;
|
|
1532
|
+
toProto(message: MsgPinReplyResponse): Uint8Array;
|
|
1533
|
+
toProtoMsg(message: MsgPinReplyResponse): MsgPinReplyResponseProtoMsg;
|
|
1534
|
+
};
|