@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
- package/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +19 -0
- package/cosmos/auth/module/v1/module.d.ts +72 -12
- package/cosmos/auth/module/v1/module.js +25 -1
- package/cosmos/auth/v1beta1/auth.d.ts +68 -10
- package/cosmos/auth/v1beta1/auth.js +26 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +334 -92
- package/cosmos/auth/v1beta1/query.js +120 -0
- package/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
- package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/cosmos/auth/v1beta1/tx.d.ts +31 -10
- package/cosmos/auth/v1beta1/tx.js +13 -0
- package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +6 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +36 -0
- package/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +13 -8
- package/cosmos/bank/v1beta1/authz.js +7 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -34
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
- package/cosmos/bank/v1beta1/genesis.js +13 -0
- package/cosmos/bank/v1beta1/query.d.ts +599 -138
- package/cosmos/bank/v1beta1/query.js +179 -0
- package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
- package/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
- package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
- package/cosmos/bank/v1beta1/tx.d.ts +143 -30
- package/cosmos/bank/v1beta1/tx.js +53 -0
- package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/benchmark/module/v1/module.d.ts +102 -26
- package/cosmos/benchmark/module/v1/module.js +12 -0
- package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
- package/cosmos/benchmark/v1/benchmark.js +6 -0
- package/cosmos/benchmark/v1/tx.d.ts +36 -4
- package/cosmos/benchmark/v1/tx.js +12 -0
- package/cosmos/bundle.d.ts +2283 -2421
- package/cosmos/bundle.js +242 -261
- package/cosmos/circuit/module/v1/module.d.ts +24 -4
- package/cosmos/circuit/module/v1/module.js +6 -0
- package/cosmos/circuit/v1/query.d.ts +120 -16
- package/cosmos/circuit/v1/query.js +36 -0
- package/cosmos/circuit/v1/tx.d.ts +126 -18
- package/cosmos/circuit/v1/tx.js +36 -0
- package/cosmos/circuit/v1/types.d.ts +55 -6
- package/cosmos/circuit/v1/types.js +19 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +12 -0
- package/cosmos/consensus/v1/tx.d.ts +37 -6
- package/cosmos/consensus/v1/tx.js +13 -0
- package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/cosmos/counter/module/v1/module.d.ts +24 -4
- package/cosmos/counter/module/v1/module.js +6 -0
- package/cosmos/counter/v1/query.d.ts +36 -4
- package/cosmos/counter/v1/query.js +12 -0
- package/cosmos/counter/v1/tx.d.ts +54 -10
- package/cosmos/counter/v1/tx.js +12 -0
- package/cosmos/crisis/module/v1/module.d.ts +30 -6
- package/cosmos/crisis/module/v1/module.js +6 -0
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
- package/cosmos/crypto/hd/v1/hd.js +6 -0
- package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
- package/cosmos/crypto/keyring/v1/record.js +31 -0
- package/cosmos/crypto/multisig/keys.d.ts +14 -0
- package/cosmos/crypto/multisig/keys.js +8 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +136 -0
- package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
- package/cosmos/distribution/v1beta1/tx.js +97 -0
- package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
- package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/cosmos/epochs/module/v1/module.d.ts +18 -2
- package/cosmos/epochs/module/v1/module.js +6 -0
- package/cosmos/epochs/v1beta1/events.d.ts +36 -4
- package/cosmos/epochs/v1beta1/events.js +12 -0
- package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
- package/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/cosmos/epochs/v1beta1/query.d.ts +52 -0
- package/cosmos/epochs/v1beta1/query.js +28 -0
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
- package/cosmos/feegrant/v1beta1/query.js +36 -0
- package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
- package/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/genutil/module/v1/module.d.ts +18 -2
- package/cosmos/genutil/module/v1/module.js +6 -0
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -24
- package/cosmos/gov/v1/genesis.js +6 -0
- package/cosmos/gov/v1/gov.d.ts +341 -124
- package/cosmos/gov/v1/gov.js +59 -0
- package/cosmos/gov/v1/query.d.ts +469 -92
- package/cosmos/gov/v1/query.js +109 -0
- package/cosmos/gov/v1/tx.d.ts +368 -93
- package/cosmos/gov/v1/tx.js +88 -0
- package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +6 -0
- package/cosmos/gov/v1beta1/gov.d.ts +291 -69
- package/cosmos/gov/v1beta1/gov.js +57 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/tx.d.ts +209 -45
- package/cosmos/gov/v1beta1/tx.js +49 -0
- package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/group/module/v1/module.d.ts +18 -2
- package/cosmos/group/module/v1/module.js +6 -0
- package/cosmos/group/v1/events.d.ts +300 -56
- package/cosmos/group/v1/events.js +66 -0
- package/cosmos/group/v1/genesis.d.ts +48 -12
- package/cosmos/group/v1/genesis.js +6 -0
- package/cosmos/group/v1/query.d.ts +768 -152
- package/cosmos/group/v1/query.js +168 -0
- package/cosmos/group/v1/query.lcd.js +1 -3
- package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
- package/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/cosmos/group/v1/tx.d.ts +804 -163
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/types.d.ts +398 -91
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +6 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +39 -0
- package/cosmos/mint/v1beta1/tx.d.ts +31 -10
- package/cosmos/mint/v1beta1/tx.js +13 -0
- package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/nft/module/v1/module.d.ts +18 -2
- package/cosmos/nft/module/v1/module.js +6 -0
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +13 -0
- package/cosmos/params/v1beta1/query.d.ts +93 -22
- package/cosmos/params/v1beta1/query.js +33 -0
- package/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
- package/cosmos/protocolpool/module/v1/module.js +6 -0
- package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
- package/cosmos/protocolpool/v1/genesis.js +6 -0
- package/cosmos/protocolpool/v1/query.d.ts +138 -12
- package/cosmos/protocolpool/v1/query.js +54 -0
- package/cosmos/protocolpool/v1/tx.d.ts +217 -30
- package/cosmos/protocolpool/v1/tx.js +67 -0
- package/cosmos/protocolpool/v1/types.d.ts +54 -10
- package/cosmos/protocolpool/v1/types.js +12 -0
- package/cosmos/reflection/v1/reflection.d.ts +42 -6
- package/cosmos/reflection/v1/reflection.js +12 -0
- package/cosmos/rpc.query.d.ts +1 -9
- package/cosmos/rpc.query.js +0 -5
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +43 -15
- package/cosmos/staking/v1beta1/authz.js +13 -5
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +12 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/staking.d.ts +631 -121
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +234 -42
- package/cosmos/staking/v1beta1/tx.js +88 -0
- package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
- package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
- package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
- package/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
- package/cosmos/store/streaming/abci/grpc.js +24 -0
- package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
- package/cosmos/store/v1beta1/commit_info.js +21 -0
- package/cosmos/store/v1beta1/listening.d.ts +45 -10
- package/cosmos/store/v1beta1/listening.js +15 -0
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +355 -94
- package/cosmos/tx/v1beta1/service.js +125 -0
- package/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
- package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/cosmos/tx/v1beta1/tx.d.ts +371 -80
- package/cosmos/tx/v1beta1/tx.js +118 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
- package/cosmos/upgrade/v1beta1/query.js +70 -0
- package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
- package/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
- package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/cosmos/vesting/module/v1/module.d.ts +18 -2
- package/cosmos/vesting/module/v1/module.js +6 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
- package/cosmos/vesting/v1beta1/tx.js +40 -0
- package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
- package/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/esm/cosmos/app/v1alpha1/module.js +19 -0
- package/esm/cosmos/auth/module/v1/module.js +25 -1
- package/esm/cosmos/auth/v1beta1/auth.js +26 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +120 -0
- package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/esm/cosmos/auth/v1beta1/tx.js +13 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
- package/esm/cosmos/authz/v1beta1/query.js +36 -0
- package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +7 -0
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
- package/esm/cosmos/bank/v1beta1/query.js +179 -0
- package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
- package/esm/cosmos/bank/v1beta1/tx.js +53 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/benchmark/module/v1/module.js +12 -0
- package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
- package/esm/cosmos/benchmark/v1/tx.js +12 -0
- package/esm/cosmos/bundle.js +242 -261
- package/esm/cosmos/circuit/module/v1/module.js +6 -0
- package/esm/cosmos/circuit/v1/query.js +36 -0
- package/esm/cosmos/circuit/v1/tx.js +36 -0
- package/esm/cosmos/circuit/v1/types.js +19 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +12 -0
- package/esm/cosmos/consensus/v1/tx.js +13 -0
- package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/counter/module/v1/module.js +6 -0
- package/esm/cosmos/counter/v1/query.js +12 -0
- package/esm/cosmos/counter/v1/tx.js +12 -0
- package/esm/cosmos/crisis/module/v1/module.js +6 -0
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
- package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
- package/esm/cosmos/crypto/multisig/keys.js +8 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/esm/cosmos/distribution/v1beta1/query.js +136 -0
- package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/esm/cosmos/epochs/module/v1/module.js +6 -0
- package/esm/cosmos/epochs/v1beta1/events.js +12 -0
- package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/esm/cosmos/epochs/v1beta1/query.js +28 -0
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
- package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/genutil/module/v1/module.js +6 -0
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +6 -0
- package/esm/cosmos/gov/v1/gov.js +59 -0
- package/esm/cosmos/gov/v1/query.js +109 -0
- package/esm/cosmos/gov/v1/tx.js +88 -0
- package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
- package/esm/cosmos/gov/v1beta1/gov.js +57 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/tx.js +49 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/group/module/v1/module.js +6 -0
- package/esm/cosmos/group/v1/events.js +66 -0
- package/esm/cosmos/group/v1/genesis.js +6 -0
- package/esm/cosmos/group/v1/query.js +168 -0
- package/esm/cosmos/group/v1/query.lcd.js +1 -3
- package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +39 -0
- package/esm/cosmos/mint/v1beta1/tx.js +13 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/nft/module/v1/module.js +6 -0
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +13 -0
- package/esm/cosmos/params/v1beta1/query.js +33 -0
- package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
- package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
- package/esm/cosmos/protocolpool/v1/query.js +54 -0
- package/esm/cosmos/protocolpool/v1/tx.js +67 -0
- package/esm/cosmos/protocolpool/v1/types.js +12 -0
- package/esm/cosmos/reflection/v1/reflection.js +12 -0
- package/esm/cosmos/rpc.query.js +0 -5
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +13 -5
- package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +88 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
- package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
- package/esm/cosmos/store/v1beta1/listening.js +15 -0
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +125 -0
- package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/esm/cosmos/tx/v1beta1/tx.js +119 -1
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
- package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/esm/cosmos/vesting/module/v1/module.js +6 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/gogoproto/bundle.js +2 -2
- package/esm/google/api/http.js +283 -0
- package/esm/google/bundle.js +7 -7
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +220 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
- package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
- package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
- package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
- package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
- package/esm/ibc/applications/transfer/v1/authz.js +13 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
- package/esm/ibc/applications/transfer/v1/packet.js +8 -0
- package/esm/ibc/applications/transfer/v1/query.js +78 -0
- package/esm/ibc/applications/transfer/v1/token.js +18 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
- package/esm/ibc/applications/transfer/v1/tx.js +40 -1
- package/esm/ibc/bundle.js +196 -173
- package/esm/ibc/client.js +4 -1
- package/esm/ibc/core/channel/v1/channel.js +64 -0
- package/esm/ibc/core/channel/v1/genesis.js +13 -0
- package/esm/ibc/core/channel/v1/query.js +197 -0
- package/esm/ibc/core/channel/v1/tx.js +129 -0
- package/esm/ibc/core/channel/v2/genesis.js +21 -0
- package/esm/ibc/core/channel/v2/packet.js +29 -0
- package/esm/ibc/core/channel/v2/query.js +100 -0
- package/esm/ibc/core/channel/v2/tx.js +48 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/genesis.js +20 -0
- package/esm/ibc/core/client/v1/query.js +154 -0
- package/esm/ibc/core/client/v1/tx.amino.js +1 -6
- package/esm/ibc/core/client/v1/tx.js +86 -151
- package/esm/ibc/core/client/v1/tx.registry.js +2 -20
- package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
- package/esm/ibc/core/client/v2/config.js +9 -0
- package/esm/ibc/core/client/v2/counterparty.js +6 -0
- package/esm/ibc/core/client/v2/genesis.js +12 -0
- package/esm/ibc/core/client/v2/query.js +26 -0
- package/esm/ibc/core/client/v2/tx.js +24 -0
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/commitment/v2/commitment.js +36 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/genesis.js +6 -0
- package/esm/ibc/core/connection/v1/query.js +83 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/lcd.js +5 -0
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
- package/esm/ibc/rpc.query.js +3 -5
- package/esm/ibc/rpc.tx.js +3 -0
- package/esm/index.js +1 -1
- package/esm/sparkdream/blog/module/v1/module.js +6 -0
- package/esm/sparkdream/blog/v1/genesis.js +6 -0
- package/esm/sparkdream/blog/v1/params.js +6 -0
- package/esm/sparkdream/blog/v1/post.js +6 -0
- package/esm/sparkdream/blog/v1/query.js +36 -0
- package/esm/sparkdream/blog/v1/tx.js +49 -0
- package/esm/sparkdream/bundle.js +41 -41
- package/esm/sparkdream/rpc.query.js +0 -5
- package/esm/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/esm/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/esm/sparkdream/sparkdream/v1/params.js +6 -0
- package/esm/sparkdream/sparkdream/v1/query.js +12 -0
- package/esm/sparkdream/sparkdream/v1/tx.js +13 -0
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +18 -18
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/p2p/types.js +20 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/gogoproto/bundle.js +2 -2
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/bundle.d.ts +418 -418
- package/google/bundle.js +7 -7
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +738 -90
- package/google/protobuf/descriptor.js +220 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
- package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
- package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
- package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
- package/ibc/applications/rate_limiting/v1/query.js +906 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
- package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
- package/ibc/applications/rate_limiting/v1/tx.js +729 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +13 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
- package/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
- package/ibc/applications/transfer/v1/genesis.js +6 -0
- package/ibc/applications/transfer/v1/packet.d.ts +44 -10
- package/ibc/applications/transfer/v1/packet.js +8 -0
- package/ibc/applications/transfer/v1/query.d.ts +252 -34
- package/ibc/applications/transfer/v1/query.js +78 -0
- package/ibc/applications/transfer/v1/token.d.ts +78 -14
- package/ibc/applications/transfer/v1/token.js +18 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
- package/ibc/applications/transfer/v1/transfer.js +9 -0
- package/ibc/applications/transfer/v1/tx.d.ts +135 -22
- package/ibc/applications/transfer/v1/tx.js +40 -1
- package/ibc/bundle.d.ts +3830 -3396
- package/ibc/bundle.js +196 -173
- package/ibc/client.d.ts +20 -5
- package/ibc/client.js +4 -1
- package/ibc/core/channel/v1/channel.d.ts +292 -60
- package/ibc/core/channel/v1/channel.js +64 -0
- package/ibc/core/channel/v1/genesis.d.ts +37 -4
- package/ibc/core/channel/v1/genesis.js +13 -0
- package/ibc/core/channel/v1/query.d.ts +839 -158
- package/ibc/core/channel/v1/query.js +197 -0
- package/ibc/core/channel/v1/tx.d.ts +335 -30
- package/ibc/core/channel/v1/tx.js +129 -0
- package/ibc/core/channel/v2/genesis.d.ts +81 -14
- package/ibc/core/channel/v2/genesis.js +21 -0
- package/ibc/core/channel/v2/packet.d.ts +137 -28
- package/ibc/core/channel/v2/packet.js +29 -0
- package/ibc/core/channel/v2/query.d.ts +490 -98
- package/ibc/core/channel/v2/query.js +100 -0
- package/ibc/core/channel/v2/tx.d.ts +144 -16
- package/ibc/core/channel/v2/tx.js +48 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/genesis.d.ts +82 -16
- package/ibc/core/client/v1/genesis.js +20 -0
- package/ibc/core/client/v1/query.d.ts +508 -74
- package/ibc/core/client/v1/query.js +154 -0
- package/ibc/core/client/v1/tx.amino.d.ts +1 -6
- package/ibc/core/client/v1/tx.amino.js +0 -5
- package/ibc/core/client/v1/tx.d.ts +336 -138
- package/ibc/core/client/v1/tx.js +87 -152
- package/ibc/core/client/v1/tx.registry.d.ts +1 -13
- package/ibc/core/client/v1/tx.registry.js +1 -19
- package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
- package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
- package/ibc/core/client/v2/config.d.ts +21 -2
- package/ibc/core/client/v2/config.js +9 -0
- package/ibc/core/client/v2/counterparty.d.ts +30 -6
- package/ibc/core/client/v2/counterparty.js +6 -0
- package/ibc/core/client/v2/genesis.d.ts +54 -10
- package/ibc/core/client/v2/genesis.js +12 -0
- package/ibc/core/client/v2/query.d.ts +74 -8
- package/ibc/core/client/v2/query.js +26 -0
- package/ibc/core/client/v2/tx.d.ts +108 -20
- package/ibc/core/client/v2/tx.js +24 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/commitment/v2/commitment.d.ts +42 -0
- package/ibc/core/commitment/v2/commitment.js +36 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +6 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +83 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/lcd.d.ts +3 -0
- package/ibc/lcd.js +5 -0
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
- package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
- package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
- package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +24 -0
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
- package/ibc/lightclients/wasm/v1/wasm.js +19 -74
- package/ibc/rpc.query.d.ts +11 -9
- package/ibc/rpc.query.js +3 -5
- package/ibc/rpc.tx.d.ts +3 -0
- package/ibc/rpc.tx.js +3 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/sparkdream/blog/module/v1/module.d.ts +18 -2
- package/sparkdream/blog/module/v1/module.js +6 -0
- package/sparkdream/blog/v1/genesis.d.ts +24 -4
- package/sparkdream/blog/v1/genesis.js +6 -0
- package/sparkdream/blog/v1/params.d.ts +18 -2
- package/sparkdream/blog/v1/params.js +6 -0
- package/sparkdream/blog/v1/post.d.ts +18 -2
- package/sparkdream/blog/v1/post.js +6 -0
- package/sparkdream/blog/v1/query.d.ts +114 -14
- package/sparkdream/blog/v1/query.js +36 -0
- package/sparkdream/blog/v1/tx.d.ts +151 -18
- package/sparkdream/blog/v1/tx.js +49 -0
- package/sparkdream/bundle.d.ts +302 -310
- package/sparkdream/bundle.js +41 -41
- package/sparkdream/rpc.query.d.ts +1 -9
- package/sparkdream/rpc.query.js +0 -5
- package/sparkdream/sparkdream/module/v1/module.d.ts +18 -2
- package/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/sparkdream/sparkdream/v1/genesis.d.ts +24 -4
- package/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/sparkdream/sparkdream/v1/params.d.ts +18 -2
- package/sparkdream/sparkdream/v1/params.js +6 -0
- package/sparkdream/sparkdream/v1/query.d.ts +42 -6
- package/sparkdream/sparkdream/v1/query.js +12 -0
- package/sparkdream/sparkdream/v1/tx.d.ts +37 -4
- package/sparkdream/sparkdream/v1/tx.js +13 -0
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +18 -18
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +20 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
- package/cosmos/orm/module/v1alpha1/module.js +0 -62
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
- package/cosmos/orm/query/v1alpha1/query.js +0 -695
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
|
@@ -3,39 +3,68 @@ import { Params, ParamsAmino } from "./params";
|
|
|
3
3
|
import { Post, PostAmino } from "./post";
|
|
4
4
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
5
5
|
import { DeepPartial } from "../../../helpers";
|
|
6
|
-
/**
|
|
6
|
+
/**
|
|
7
|
+
* QueryParamsRequest is request type for the Query/Params RPC method.
|
|
8
|
+
* @name QueryParamsRequest
|
|
9
|
+
* @package sparkdream.blog.v1
|
|
10
|
+
* @see proto type: sparkdream.blog.v1.QueryParamsRequest
|
|
11
|
+
*/
|
|
7
12
|
export interface QueryParamsRequest {
|
|
8
13
|
}
|
|
9
14
|
export interface QueryParamsRequestProtoMsg {
|
|
10
15
|
typeUrl: "/sparkdream.blog.v1.QueryParamsRequest";
|
|
11
16
|
value: Uint8Array;
|
|
12
17
|
}
|
|
13
|
-
/**
|
|
18
|
+
/**
|
|
19
|
+
* QueryParamsRequest is request type for the Query/Params RPC method.
|
|
20
|
+
* @name QueryParamsRequestAmino
|
|
21
|
+
* @package sparkdream.blog.v1
|
|
22
|
+
* @see proto type: sparkdream.blog.v1.QueryParamsRequest
|
|
23
|
+
*/
|
|
14
24
|
export interface QueryParamsRequestAmino {
|
|
15
25
|
}
|
|
16
26
|
export interface QueryParamsRequestAminoMsg {
|
|
17
27
|
type: "/sparkdream.blog.v1.QueryParamsRequest";
|
|
18
28
|
value: QueryParamsRequestAmino;
|
|
19
29
|
}
|
|
20
|
-
/**
|
|
30
|
+
/**
|
|
31
|
+
* QueryParamsResponse is response type for the Query/Params RPC method.
|
|
32
|
+
* @name QueryParamsResponse
|
|
33
|
+
* @package sparkdream.blog.v1
|
|
34
|
+
* @see proto type: sparkdream.blog.v1.QueryParamsResponse
|
|
35
|
+
*/
|
|
21
36
|
export interface QueryParamsResponse {
|
|
22
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* params holds all the parameters of this module.
|
|
39
|
+
*/
|
|
23
40
|
params: Params;
|
|
24
41
|
}
|
|
25
42
|
export interface QueryParamsResponseProtoMsg {
|
|
26
43
|
typeUrl: "/sparkdream.blog.v1.QueryParamsResponse";
|
|
27
44
|
value: Uint8Array;
|
|
28
45
|
}
|
|
29
|
-
/**
|
|
46
|
+
/**
|
|
47
|
+
* QueryParamsResponse is response type for the Query/Params RPC method.
|
|
48
|
+
* @name QueryParamsResponseAmino
|
|
49
|
+
* @package sparkdream.blog.v1
|
|
50
|
+
* @see proto type: sparkdream.blog.v1.QueryParamsResponse
|
|
51
|
+
*/
|
|
30
52
|
export interface QueryParamsResponseAmino {
|
|
31
|
-
/**
|
|
53
|
+
/**
|
|
54
|
+
* params holds all the parameters of this module.
|
|
55
|
+
*/
|
|
32
56
|
params: ParamsAmino;
|
|
33
57
|
}
|
|
34
58
|
export interface QueryParamsResponseAminoMsg {
|
|
35
59
|
type: "/sparkdream.blog.v1.QueryParamsResponse";
|
|
36
60
|
value: QueryParamsResponseAmino;
|
|
37
61
|
}
|
|
38
|
-
/**
|
|
62
|
+
/**
|
|
63
|
+
* QueryShowPostRequest defines the QueryShowPostRequest message.
|
|
64
|
+
* @name QueryShowPostRequest
|
|
65
|
+
* @package sparkdream.blog.v1
|
|
66
|
+
* @see proto type: sparkdream.blog.v1.QueryShowPostRequest
|
|
67
|
+
*/
|
|
39
68
|
export interface QueryShowPostRequest {
|
|
40
69
|
id: bigint;
|
|
41
70
|
}
|
|
@@ -43,7 +72,12 @@ export interface QueryShowPostRequestProtoMsg {
|
|
|
43
72
|
typeUrl: "/sparkdream.blog.v1.QueryShowPostRequest";
|
|
44
73
|
value: Uint8Array;
|
|
45
74
|
}
|
|
46
|
-
/**
|
|
75
|
+
/**
|
|
76
|
+
* QueryShowPostRequest defines the QueryShowPostRequest message.
|
|
77
|
+
* @name QueryShowPostRequestAmino
|
|
78
|
+
* @package sparkdream.blog.v1
|
|
79
|
+
* @see proto type: sparkdream.blog.v1.QueryShowPostRequest
|
|
80
|
+
*/
|
|
47
81
|
export interface QueryShowPostRequestAmino {
|
|
48
82
|
id?: string;
|
|
49
83
|
}
|
|
@@ -51,7 +85,12 @@ export interface QueryShowPostRequestAminoMsg {
|
|
|
51
85
|
type: "/sparkdream.blog.v1.QueryShowPostRequest";
|
|
52
86
|
value: QueryShowPostRequestAmino;
|
|
53
87
|
}
|
|
54
|
-
/**
|
|
88
|
+
/**
|
|
89
|
+
* QueryShowPostResponse defines the QueryShowPostResponse message.
|
|
90
|
+
* @name QueryShowPostResponse
|
|
91
|
+
* @package sparkdream.blog.v1
|
|
92
|
+
* @see proto type: sparkdream.blog.v1.QueryShowPostResponse
|
|
93
|
+
*/
|
|
55
94
|
export interface QueryShowPostResponse {
|
|
56
95
|
post: Post;
|
|
57
96
|
}
|
|
@@ -59,7 +98,12 @@ export interface QueryShowPostResponseProtoMsg {
|
|
|
59
98
|
typeUrl: "/sparkdream.blog.v1.QueryShowPostResponse";
|
|
60
99
|
value: Uint8Array;
|
|
61
100
|
}
|
|
62
|
-
/**
|
|
101
|
+
/**
|
|
102
|
+
* QueryShowPostResponse defines the QueryShowPostResponse message.
|
|
103
|
+
* @name QueryShowPostResponseAmino
|
|
104
|
+
* @package sparkdream.blog.v1
|
|
105
|
+
* @see proto type: sparkdream.blog.v1.QueryShowPostResponse
|
|
106
|
+
*/
|
|
63
107
|
export interface QueryShowPostResponseAmino {
|
|
64
108
|
post?: PostAmino;
|
|
65
109
|
}
|
|
@@ -67,7 +111,12 @@ export interface QueryShowPostResponseAminoMsg {
|
|
|
67
111
|
type: "/sparkdream.blog.v1.QueryShowPostResponse";
|
|
68
112
|
value: QueryShowPostResponseAmino;
|
|
69
113
|
}
|
|
70
|
-
/**
|
|
114
|
+
/**
|
|
115
|
+
* QueryListPostRequest defines the QueryListPostRequest message.
|
|
116
|
+
* @name QueryListPostRequest
|
|
117
|
+
* @package sparkdream.blog.v1
|
|
118
|
+
* @see proto type: sparkdream.blog.v1.QueryListPostRequest
|
|
119
|
+
*/
|
|
71
120
|
export interface QueryListPostRequest {
|
|
72
121
|
pagination?: PageRequest;
|
|
73
122
|
}
|
|
@@ -75,7 +124,12 @@ export interface QueryListPostRequestProtoMsg {
|
|
|
75
124
|
typeUrl: "/sparkdream.blog.v1.QueryListPostRequest";
|
|
76
125
|
value: Uint8Array;
|
|
77
126
|
}
|
|
78
|
-
/**
|
|
127
|
+
/**
|
|
128
|
+
* QueryListPostRequest defines the QueryListPostRequest message.
|
|
129
|
+
* @name QueryListPostRequestAmino
|
|
130
|
+
* @package sparkdream.blog.v1
|
|
131
|
+
* @see proto type: sparkdream.blog.v1.QueryListPostRequest
|
|
132
|
+
*/
|
|
79
133
|
export interface QueryListPostRequestAmino {
|
|
80
134
|
pagination?: PageRequestAmino;
|
|
81
135
|
}
|
|
@@ -83,7 +137,12 @@ export interface QueryListPostRequestAminoMsg {
|
|
|
83
137
|
type: "/sparkdream.blog.v1.QueryListPostRequest";
|
|
84
138
|
value: QueryListPostRequestAmino;
|
|
85
139
|
}
|
|
86
|
-
/**
|
|
140
|
+
/**
|
|
141
|
+
* QueryListPostResponse defines the QueryListPostResponse message.
|
|
142
|
+
* @name QueryListPostResponse
|
|
143
|
+
* @package sparkdream.blog.v1
|
|
144
|
+
* @see proto type: sparkdream.blog.v1.QueryListPostResponse
|
|
145
|
+
*/
|
|
87
146
|
export interface QueryListPostResponse {
|
|
88
147
|
post: Post[];
|
|
89
148
|
pagination?: PageResponse;
|
|
@@ -92,7 +151,12 @@ export interface QueryListPostResponseProtoMsg {
|
|
|
92
151
|
typeUrl: "/sparkdream.blog.v1.QueryListPostResponse";
|
|
93
152
|
value: Uint8Array;
|
|
94
153
|
}
|
|
95
|
-
/**
|
|
154
|
+
/**
|
|
155
|
+
* QueryListPostResponse defines the QueryListPostResponse message.
|
|
156
|
+
* @name QueryListPostResponseAmino
|
|
157
|
+
* @package sparkdream.blog.v1
|
|
158
|
+
* @see proto type: sparkdream.blog.v1.QueryListPostResponse
|
|
159
|
+
*/
|
|
96
160
|
export interface QueryListPostResponseAmino {
|
|
97
161
|
post?: PostAmino[];
|
|
98
162
|
pagination?: PageResponseAmino;
|
|
@@ -101,6 +165,12 @@ export interface QueryListPostResponseAminoMsg {
|
|
|
101
165
|
type: "/sparkdream.blog.v1.QueryListPostResponse";
|
|
102
166
|
value: QueryListPostResponseAmino;
|
|
103
167
|
}
|
|
168
|
+
/**
|
|
169
|
+
* QueryParamsRequest is request type for the Query/Params RPC method.
|
|
170
|
+
* @name QueryParamsRequest
|
|
171
|
+
* @package sparkdream.blog.v1
|
|
172
|
+
* @see proto type: sparkdream.blog.v1.QueryParamsRequest
|
|
173
|
+
*/
|
|
104
174
|
export declare const QueryParamsRequest: {
|
|
105
175
|
typeUrl: string;
|
|
106
176
|
encode(_: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -113,6 +183,12 @@ export declare const QueryParamsRequest: {
|
|
|
113
183
|
toProto(message: QueryParamsRequest): Uint8Array;
|
|
114
184
|
toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
|
|
115
185
|
};
|
|
186
|
+
/**
|
|
187
|
+
* QueryParamsResponse is response type for the Query/Params RPC method.
|
|
188
|
+
* @name QueryParamsResponse
|
|
189
|
+
* @package sparkdream.blog.v1
|
|
190
|
+
* @see proto type: sparkdream.blog.v1.QueryParamsResponse
|
|
191
|
+
*/
|
|
116
192
|
export declare const QueryParamsResponse: {
|
|
117
193
|
typeUrl: string;
|
|
118
194
|
encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -125,6 +201,12 @@ export declare const QueryParamsResponse: {
|
|
|
125
201
|
toProto(message: QueryParamsResponse): Uint8Array;
|
|
126
202
|
toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg;
|
|
127
203
|
};
|
|
204
|
+
/**
|
|
205
|
+
* QueryShowPostRequest defines the QueryShowPostRequest message.
|
|
206
|
+
* @name QueryShowPostRequest
|
|
207
|
+
* @package sparkdream.blog.v1
|
|
208
|
+
* @see proto type: sparkdream.blog.v1.QueryShowPostRequest
|
|
209
|
+
*/
|
|
128
210
|
export declare const QueryShowPostRequest: {
|
|
129
211
|
typeUrl: string;
|
|
130
212
|
encode(message: QueryShowPostRequest, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -137,6 +219,12 @@ export declare const QueryShowPostRequest: {
|
|
|
137
219
|
toProto(message: QueryShowPostRequest): Uint8Array;
|
|
138
220
|
toProtoMsg(message: QueryShowPostRequest): QueryShowPostRequestProtoMsg;
|
|
139
221
|
};
|
|
222
|
+
/**
|
|
223
|
+
* QueryShowPostResponse defines the QueryShowPostResponse message.
|
|
224
|
+
* @name QueryShowPostResponse
|
|
225
|
+
* @package sparkdream.blog.v1
|
|
226
|
+
* @see proto type: sparkdream.blog.v1.QueryShowPostResponse
|
|
227
|
+
*/
|
|
140
228
|
export declare const QueryShowPostResponse: {
|
|
141
229
|
typeUrl: string;
|
|
142
230
|
encode(message: QueryShowPostResponse, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -149,6 +237,12 @@ export declare const QueryShowPostResponse: {
|
|
|
149
237
|
toProto(message: QueryShowPostResponse): Uint8Array;
|
|
150
238
|
toProtoMsg(message: QueryShowPostResponse): QueryShowPostResponseProtoMsg;
|
|
151
239
|
};
|
|
240
|
+
/**
|
|
241
|
+
* QueryListPostRequest defines the QueryListPostRequest message.
|
|
242
|
+
* @name QueryListPostRequest
|
|
243
|
+
* @package sparkdream.blog.v1
|
|
244
|
+
* @see proto type: sparkdream.blog.v1.QueryListPostRequest
|
|
245
|
+
*/
|
|
152
246
|
export declare const QueryListPostRequest: {
|
|
153
247
|
typeUrl: string;
|
|
154
248
|
encode(message: QueryListPostRequest, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -161,6 +255,12 @@ export declare const QueryListPostRequest: {
|
|
|
161
255
|
toProto(message: QueryListPostRequest): Uint8Array;
|
|
162
256
|
toProtoMsg(message: QueryListPostRequest): QueryListPostRequestProtoMsg;
|
|
163
257
|
};
|
|
258
|
+
/**
|
|
259
|
+
* QueryListPostResponse defines the QueryListPostResponse message.
|
|
260
|
+
* @name QueryListPostResponse
|
|
261
|
+
* @package sparkdream.blog.v1
|
|
262
|
+
* @see proto type: sparkdream.blog.v1.QueryListPostResponse
|
|
263
|
+
*/
|
|
164
264
|
export declare const QueryListPostResponse: {
|
|
165
265
|
typeUrl: string;
|
|
166
266
|
encode(message: QueryListPostResponse, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -9,6 +9,12 @@ const binary_1 = require("../../../binary");
|
|
|
9
9
|
function createBaseQueryParamsRequest() {
|
|
10
10
|
return {};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* QueryParamsRequest is request type for the Query/Params RPC method.
|
|
14
|
+
* @name QueryParamsRequest
|
|
15
|
+
* @package sparkdream.blog.v1
|
|
16
|
+
* @see proto type: sparkdream.blog.v1.QueryParamsRequest
|
|
17
|
+
*/
|
|
12
18
|
exports.QueryParamsRequest = {
|
|
13
19
|
typeUrl: "/sparkdream.blog.v1.QueryParamsRequest",
|
|
14
20
|
encode(_, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -61,6 +67,12 @@ function createBaseQueryParamsResponse() {
|
|
|
61
67
|
params: params_1.Params.fromPartial({})
|
|
62
68
|
};
|
|
63
69
|
}
|
|
70
|
+
/**
|
|
71
|
+
* QueryParamsResponse is response type for the Query/Params RPC method.
|
|
72
|
+
* @name QueryParamsResponse
|
|
73
|
+
* @package sparkdream.blog.v1
|
|
74
|
+
* @see proto type: sparkdream.blog.v1.QueryParamsResponse
|
|
75
|
+
*/
|
|
64
76
|
exports.QueryParamsResponse = {
|
|
65
77
|
typeUrl: "/sparkdream.blog.v1.QueryParamsResponse",
|
|
66
78
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -124,6 +136,12 @@ function createBaseQueryShowPostRequest() {
|
|
|
124
136
|
id: BigInt(0)
|
|
125
137
|
};
|
|
126
138
|
}
|
|
139
|
+
/**
|
|
140
|
+
* QueryShowPostRequest defines the QueryShowPostRequest message.
|
|
141
|
+
* @name QueryShowPostRequest
|
|
142
|
+
* @package sparkdream.blog.v1
|
|
143
|
+
* @see proto type: sparkdream.blog.v1.QueryShowPostRequest
|
|
144
|
+
*/
|
|
127
145
|
exports.QueryShowPostRequest = {
|
|
128
146
|
typeUrl: "/sparkdream.blog.v1.QueryShowPostRequest",
|
|
129
147
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -187,6 +205,12 @@ function createBaseQueryShowPostResponse() {
|
|
|
187
205
|
post: post_1.Post.fromPartial({})
|
|
188
206
|
};
|
|
189
207
|
}
|
|
208
|
+
/**
|
|
209
|
+
* QueryShowPostResponse defines the QueryShowPostResponse message.
|
|
210
|
+
* @name QueryShowPostResponse
|
|
211
|
+
* @package sparkdream.blog.v1
|
|
212
|
+
* @see proto type: sparkdream.blog.v1.QueryShowPostResponse
|
|
213
|
+
*/
|
|
190
214
|
exports.QueryShowPostResponse = {
|
|
191
215
|
typeUrl: "/sparkdream.blog.v1.QueryShowPostResponse",
|
|
192
216
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -250,6 +274,12 @@ function createBaseQueryListPostRequest() {
|
|
|
250
274
|
pagination: undefined
|
|
251
275
|
};
|
|
252
276
|
}
|
|
277
|
+
/**
|
|
278
|
+
* QueryListPostRequest defines the QueryListPostRequest message.
|
|
279
|
+
* @name QueryListPostRequest
|
|
280
|
+
* @package sparkdream.blog.v1
|
|
281
|
+
* @see proto type: sparkdream.blog.v1.QueryListPostRequest
|
|
282
|
+
*/
|
|
253
283
|
exports.QueryListPostRequest = {
|
|
254
284
|
typeUrl: "/sparkdream.blog.v1.QueryListPostRequest",
|
|
255
285
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -314,6 +344,12 @@ function createBaseQueryListPostResponse() {
|
|
|
314
344
|
pagination: undefined
|
|
315
345
|
};
|
|
316
346
|
}
|
|
347
|
+
/**
|
|
348
|
+
* QueryListPostResponse defines the QueryListPostResponse message.
|
|
349
|
+
* @name QueryListPostResponse
|
|
350
|
+
* @package sparkdream.blog.v1
|
|
351
|
+
* @see proto type: sparkdream.blog.v1.QueryListPostResponse
|
|
352
|
+
*/
|
|
317
353
|
exports.QueryListPostResponse = {
|
|
318
354
|
typeUrl: "/sparkdream.blog.v1.QueryListPostResponse",
|
|
319
355
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -1,22 +1,40 @@
|
|
|
1
1
|
import { Params, ParamsAmino } from "./params";
|
|
2
2
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
3
|
import { DeepPartial } from "../../../helpers";
|
|
4
|
-
/**
|
|
4
|
+
/**
|
|
5
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
6
|
+
* @name MsgUpdateParams
|
|
7
|
+
* @package sparkdream.blog.v1
|
|
8
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParams
|
|
9
|
+
*/
|
|
5
10
|
export interface MsgUpdateParams {
|
|
6
|
-
/**
|
|
11
|
+
/**
|
|
12
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
13
|
+
*/
|
|
7
14
|
authority: string;
|
|
8
|
-
/**
|
|
15
|
+
/**
|
|
16
|
+
* NOTE: All parameters must be supplied.
|
|
17
|
+
*/
|
|
9
18
|
params: Params;
|
|
10
19
|
}
|
|
11
20
|
export interface MsgUpdateParamsProtoMsg {
|
|
12
21
|
typeUrl: "/sparkdream.blog.v1.MsgUpdateParams";
|
|
13
22
|
value: Uint8Array;
|
|
14
23
|
}
|
|
15
|
-
/**
|
|
24
|
+
/**
|
|
25
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
26
|
+
* @name MsgUpdateParamsAmino
|
|
27
|
+
* @package sparkdream.blog.v1
|
|
28
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParams
|
|
29
|
+
*/
|
|
16
30
|
export interface MsgUpdateParamsAmino {
|
|
17
|
-
/**
|
|
31
|
+
/**
|
|
32
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
33
|
+
*/
|
|
18
34
|
authority?: string;
|
|
19
|
-
/**
|
|
35
|
+
/**
|
|
36
|
+
* NOTE: All parameters must be supplied.
|
|
37
|
+
*/
|
|
20
38
|
params: ParamsAmino;
|
|
21
39
|
}
|
|
22
40
|
export interface MsgUpdateParamsAminoMsg {
|
|
@@ -26,6 +44,9 @@ export interface MsgUpdateParamsAminoMsg {
|
|
|
26
44
|
/**
|
|
27
45
|
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
28
46
|
* MsgUpdateParams message.
|
|
47
|
+
* @name MsgUpdateParamsResponse
|
|
48
|
+
* @package sparkdream.blog.v1
|
|
49
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParamsResponse
|
|
29
50
|
*/
|
|
30
51
|
export interface MsgUpdateParamsResponse {
|
|
31
52
|
}
|
|
@@ -36,6 +57,9 @@ export interface MsgUpdateParamsResponseProtoMsg {
|
|
|
36
57
|
/**
|
|
37
58
|
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
38
59
|
* MsgUpdateParams message.
|
|
60
|
+
* @name MsgUpdateParamsResponseAmino
|
|
61
|
+
* @package sparkdream.blog.v1
|
|
62
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParamsResponse
|
|
39
63
|
*/
|
|
40
64
|
export interface MsgUpdateParamsResponseAmino {
|
|
41
65
|
}
|
|
@@ -43,7 +67,12 @@ export interface MsgUpdateParamsResponseAminoMsg {
|
|
|
43
67
|
type: "/sparkdream.blog.v1.MsgUpdateParamsResponse";
|
|
44
68
|
value: MsgUpdateParamsResponseAmino;
|
|
45
69
|
}
|
|
46
|
-
/**
|
|
70
|
+
/**
|
|
71
|
+
* MsgCreatePost defines the MsgCreatePost message.
|
|
72
|
+
* @name MsgCreatePost
|
|
73
|
+
* @package sparkdream.blog.v1
|
|
74
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePost
|
|
75
|
+
*/
|
|
47
76
|
export interface MsgCreatePost {
|
|
48
77
|
creator: string;
|
|
49
78
|
title: string;
|
|
@@ -53,7 +82,12 @@ export interface MsgCreatePostProtoMsg {
|
|
|
53
82
|
typeUrl: "/sparkdream.blog.v1.MsgCreatePost";
|
|
54
83
|
value: Uint8Array;
|
|
55
84
|
}
|
|
56
|
-
/**
|
|
85
|
+
/**
|
|
86
|
+
* MsgCreatePost defines the MsgCreatePost message.
|
|
87
|
+
* @name MsgCreatePostAmino
|
|
88
|
+
* @package sparkdream.blog.v1
|
|
89
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePost
|
|
90
|
+
*/
|
|
57
91
|
export interface MsgCreatePostAmino {
|
|
58
92
|
creator?: string;
|
|
59
93
|
title?: string;
|
|
@@ -63,7 +97,12 @@ export interface MsgCreatePostAminoMsg {
|
|
|
63
97
|
type: "/sparkdream.blog.v1.MsgCreatePost";
|
|
64
98
|
value: MsgCreatePostAmino;
|
|
65
99
|
}
|
|
66
|
-
/**
|
|
100
|
+
/**
|
|
101
|
+
* MsgCreatePostResponse defines the MsgCreatePostResponse message.
|
|
102
|
+
* @name MsgCreatePostResponse
|
|
103
|
+
* @package sparkdream.blog.v1
|
|
104
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePostResponse
|
|
105
|
+
*/
|
|
67
106
|
export interface MsgCreatePostResponse {
|
|
68
107
|
id: bigint;
|
|
69
108
|
}
|
|
@@ -71,7 +110,12 @@ export interface MsgCreatePostResponseProtoMsg {
|
|
|
71
110
|
typeUrl: "/sparkdream.blog.v1.MsgCreatePostResponse";
|
|
72
111
|
value: Uint8Array;
|
|
73
112
|
}
|
|
74
|
-
/**
|
|
113
|
+
/**
|
|
114
|
+
* MsgCreatePostResponse defines the MsgCreatePostResponse message.
|
|
115
|
+
* @name MsgCreatePostResponseAmino
|
|
116
|
+
* @package sparkdream.blog.v1
|
|
117
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePostResponse
|
|
118
|
+
*/
|
|
75
119
|
export interface MsgCreatePostResponseAmino {
|
|
76
120
|
id?: string;
|
|
77
121
|
}
|
|
@@ -79,7 +123,12 @@ export interface MsgCreatePostResponseAminoMsg {
|
|
|
79
123
|
type: "/sparkdream.blog.v1.MsgCreatePostResponse";
|
|
80
124
|
value: MsgCreatePostResponseAmino;
|
|
81
125
|
}
|
|
82
|
-
/**
|
|
126
|
+
/**
|
|
127
|
+
* MsgUpdatePost defines the MsgUpdatePost message.
|
|
128
|
+
* @name MsgUpdatePost
|
|
129
|
+
* @package sparkdream.blog.v1
|
|
130
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePost
|
|
131
|
+
*/
|
|
83
132
|
export interface MsgUpdatePost {
|
|
84
133
|
creator: string;
|
|
85
134
|
title: string;
|
|
@@ -90,7 +139,12 @@ export interface MsgUpdatePostProtoMsg {
|
|
|
90
139
|
typeUrl: "/sparkdream.blog.v1.MsgUpdatePost";
|
|
91
140
|
value: Uint8Array;
|
|
92
141
|
}
|
|
93
|
-
/**
|
|
142
|
+
/**
|
|
143
|
+
* MsgUpdatePost defines the MsgUpdatePost message.
|
|
144
|
+
* @name MsgUpdatePostAmino
|
|
145
|
+
* @package sparkdream.blog.v1
|
|
146
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePost
|
|
147
|
+
*/
|
|
94
148
|
export interface MsgUpdatePostAmino {
|
|
95
149
|
creator?: string;
|
|
96
150
|
title?: string;
|
|
@@ -101,21 +155,36 @@ export interface MsgUpdatePostAminoMsg {
|
|
|
101
155
|
type: "/sparkdream.blog.v1.MsgUpdatePost";
|
|
102
156
|
value: MsgUpdatePostAmino;
|
|
103
157
|
}
|
|
104
|
-
/**
|
|
158
|
+
/**
|
|
159
|
+
* MsgUpdatePostResponse defines the MsgUpdatePostResponse message.
|
|
160
|
+
* @name MsgUpdatePostResponse
|
|
161
|
+
* @package sparkdream.blog.v1
|
|
162
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePostResponse
|
|
163
|
+
*/
|
|
105
164
|
export interface MsgUpdatePostResponse {
|
|
106
165
|
}
|
|
107
166
|
export interface MsgUpdatePostResponseProtoMsg {
|
|
108
167
|
typeUrl: "/sparkdream.blog.v1.MsgUpdatePostResponse";
|
|
109
168
|
value: Uint8Array;
|
|
110
169
|
}
|
|
111
|
-
/**
|
|
170
|
+
/**
|
|
171
|
+
* MsgUpdatePostResponse defines the MsgUpdatePostResponse message.
|
|
172
|
+
* @name MsgUpdatePostResponseAmino
|
|
173
|
+
* @package sparkdream.blog.v1
|
|
174
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePostResponse
|
|
175
|
+
*/
|
|
112
176
|
export interface MsgUpdatePostResponseAmino {
|
|
113
177
|
}
|
|
114
178
|
export interface MsgUpdatePostResponseAminoMsg {
|
|
115
179
|
type: "/sparkdream.blog.v1.MsgUpdatePostResponse";
|
|
116
180
|
value: MsgUpdatePostResponseAmino;
|
|
117
181
|
}
|
|
118
|
-
/**
|
|
182
|
+
/**
|
|
183
|
+
* MsgDeletePost defines the MsgDeletePost message.
|
|
184
|
+
* @name MsgDeletePost
|
|
185
|
+
* @package sparkdream.blog.v1
|
|
186
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePost
|
|
187
|
+
*/
|
|
119
188
|
export interface MsgDeletePost {
|
|
120
189
|
creator: string;
|
|
121
190
|
id: bigint;
|
|
@@ -124,7 +193,12 @@ export interface MsgDeletePostProtoMsg {
|
|
|
124
193
|
typeUrl: "/sparkdream.blog.v1.MsgDeletePost";
|
|
125
194
|
value: Uint8Array;
|
|
126
195
|
}
|
|
127
|
-
/**
|
|
196
|
+
/**
|
|
197
|
+
* MsgDeletePost defines the MsgDeletePost message.
|
|
198
|
+
* @name MsgDeletePostAmino
|
|
199
|
+
* @package sparkdream.blog.v1
|
|
200
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePost
|
|
201
|
+
*/
|
|
128
202
|
export interface MsgDeletePostAmino {
|
|
129
203
|
creator?: string;
|
|
130
204
|
id?: string;
|
|
@@ -133,20 +207,36 @@ export interface MsgDeletePostAminoMsg {
|
|
|
133
207
|
type: "/sparkdream.blog.v1.MsgDeletePost";
|
|
134
208
|
value: MsgDeletePostAmino;
|
|
135
209
|
}
|
|
136
|
-
/**
|
|
210
|
+
/**
|
|
211
|
+
* MsgDeletePostResponse defines the MsgDeletePostResponse message.
|
|
212
|
+
* @name MsgDeletePostResponse
|
|
213
|
+
* @package sparkdream.blog.v1
|
|
214
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePostResponse
|
|
215
|
+
*/
|
|
137
216
|
export interface MsgDeletePostResponse {
|
|
138
217
|
}
|
|
139
218
|
export interface MsgDeletePostResponseProtoMsg {
|
|
140
219
|
typeUrl: "/sparkdream.blog.v1.MsgDeletePostResponse";
|
|
141
220
|
value: Uint8Array;
|
|
142
221
|
}
|
|
143
|
-
/**
|
|
222
|
+
/**
|
|
223
|
+
* MsgDeletePostResponse defines the MsgDeletePostResponse message.
|
|
224
|
+
* @name MsgDeletePostResponseAmino
|
|
225
|
+
* @package sparkdream.blog.v1
|
|
226
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePostResponse
|
|
227
|
+
*/
|
|
144
228
|
export interface MsgDeletePostResponseAmino {
|
|
145
229
|
}
|
|
146
230
|
export interface MsgDeletePostResponseAminoMsg {
|
|
147
231
|
type: "/sparkdream.blog.v1.MsgDeletePostResponse";
|
|
148
232
|
value: MsgDeletePostResponseAmino;
|
|
149
233
|
}
|
|
234
|
+
/**
|
|
235
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
236
|
+
* @name MsgUpdateParams
|
|
237
|
+
* @package sparkdream.blog.v1
|
|
238
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParams
|
|
239
|
+
*/
|
|
150
240
|
export declare const MsgUpdateParams: {
|
|
151
241
|
typeUrl: string;
|
|
152
242
|
aminoType: string;
|
|
@@ -161,6 +251,13 @@ export declare const MsgUpdateParams: {
|
|
|
161
251
|
toProto(message: MsgUpdateParams): Uint8Array;
|
|
162
252
|
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
163
253
|
};
|
|
254
|
+
/**
|
|
255
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
256
|
+
* MsgUpdateParams message.
|
|
257
|
+
* @name MsgUpdateParamsResponse
|
|
258
|
+
* @package sparkdream.blog.v1
|
|
259
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParamsResponse
|
|
260
|
+
*/
|
|
164
261
|
export declare const MsgUpdateParamsResponse: {
|
|
165
262
|
typeUrl: string;
|
|
166
263
|
encode(_: MsgUpdateParamsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -173,6 +270,12 @@ export declare const MsgUpdateParamsResponse: {
|
|
|
173
270
|
toProto(message: MsgUpdateParamsResponse): Uint8Array;
|
|
174
271
|
toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
|
|
175
272
|
};
|
|
273
|
+
/**
|
|
274
|
+
* MsgCreatePost defines the MsgCreatePost message.
|
|
275
|
+
* @name MsgCreatePost
|
|
276
|
+
* @package sparkdream.blog.v1
|
|
277
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePost
|
|
278
|
+
*/
|
|
176
279
|
export declare const MsgCreatePost: {
|
|
177
280
|
typeUrl: string;
|
|
178
281
|
encode(message: MsgCreatePost, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -185,6 +288,12 @@ export declare const MsgCreatePost: {
|
|
|
185
288
|
toProto(message: MsgCreatePost): Uint8Array;
|
|
186
289
|
toProtoMsg(message: MsgCreatePost): MsgCreatePostProtoMsg;
|
|
187
290
|
};
|
|
291
|
+
/**
|
|
292
|
+
* MsgCreatePostResponse defines the MsgCreatePostResponse message.
|
|
293
|
+
* @name MsgCreatePostResponse
|
|
294
|
+
* @package sparkdream.blog.v1
|
|
295
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePostResponse
|
|
296
|
+
*/
|
|
188
297
|
export declare const MsgCreatePostResponse: {
|
|
189
298
|
typeUrl: string;
|
|
190
299
|
encode(message: MsgCreatePostResponse, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -197,6 +306,12 @@ export declare const MsgCreatePostResponse: {
|
|
|
197
306
|
toProto(message: MsgCreatePostResponse): Uint8Array;
|
|
198
307
|
toProtoMsg(message: MsgCreatePostResponse): MsgCreatePostResponseProtoMsg;
|
|
199
308
|
};
|
|
309
|
+
/**
|
|
310
|
+
* MsgUpdatePost defines the MsgUpdatePost message.
|
|
311
|
+
* @name MsgUpdatePost
|
|
312
|
+
* @package sparkdream.blog.v1
|
|
313
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePost
|
|
314
|
+
*/
|
|
200
315
|
export declare const MsgUpdatePost: {
|
|
201
316
|
typeUrl: string;
|
|
202
317
|
encode(message: MsgUpdatePost, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -209,6 +324,12 @@ export declare const MsgUpdatePost: {
|
|
|
209
324
|
toProto(message: MsgUpdatePost): Uint8Array;
|
|
210
325
|
toProtoMsg(message: MsgUpdatePost): MsgUpdatePostProtoMsg;
|
|
211
326
|
};
|
|
327
|
+
/**
|
|
328
|
+
* MsgUpdatePostResponse defines the MsgUpdatePostResponse message.
|
|
329
|
+
* @name MsgUpdatePostResponse
|
|
330
|
+
* @package sparkdream.blog.v1
|
|
331
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePostResponse
|
|
332
|
+
*/
|
|
212
333
|
export declare const MsgUpdatePostResponse: {
|
|
213
334
|
typeUrl: string;
|
|
214
335
|
encode(_: MsgUpdatePostResponse, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -221,6 +342,12 @@ export declare const MsgUpdatePostResponse: {
|
|
|
221
342
|
toProto(message: MsgUpdatePostResponse): Uint8Array;
|
|
222
343
|
toProtoMsg(message: MsgUpdatePostResponse): MsgUpdatePostResponseProtoMsg;
|
|
223
344
|
};
|
|
345
|
+
/**
|
|
346
|
+
* MsgDeletePost defines the MsgDeletePost message.
|
|
347
|
+
* @name MsgDeletePost
|
|
348
|
+
* @package sparkdream.blog.v1
|
|
349
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePost
|
|
350
|
+
*/
|
|
224
351
|
export declare const MsgDeletePost: {
|
|
225
352
|
typeUrl: string;
|
|
226
353
|
encode(message: MsgDeletePost, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -233,6 +360,12 @@ export declare const MsgDeletePost: {
|
|
|
233
360
|
toProto(message: MsgDeletePost): Uint8Array;
|
|
234
361
|
toProtoMsg(message: MsgDeletePost): MsgDeletePostProtoMsg;
|
|
235
362
|
};
|
|
363
|
+
/**
|
|
364
|
+
* MsgDeletePostResponse defines the MsgDeletePostResponse message.
|
|
365
|
+
* @name MsgDeletePostResponse
|
|
366
|
+
* @package sparkdream.blog.v1
|
|
367
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePostResponse
|
|
368
|
+
*/
|
|
236
369
|
export declare const MsgDeletePostResponse: {
|
|
237
370
|
typeUrl: string;
|
|
238
371
|
encode(_: MsgDeletePostResponse, writer?: BinaryWriter): BinaryWriter;
|