@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
|
@@ -7,6 +7,12 @@ function createBaseMsgStoreCode() {
|
|
|
7
7
|
wasmByteCode: new Uint8Array()
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* MsgStoreCode defines the request type for the StoreCode rpc.
|
|
12
|
+
* @name MsgStoreCode
|
|
13
|
+
* @package ibc.lightclients.wasm.v1
|
|
14
|
+
* @see proto type: ibc.lightclients.wasm.v1.MsgStoreCode
|
|
15
|
+
*/
|
|
10
16
|
export const MsgStoreCode = {
|
|
11
17
|
typeUrl: "/ibc.lightclients.wasm.v1.MsgStoreCode",
|
|
12
18
|
aminoType: "cosmos-sdk/MsgStoreCode",
|
|
@@ -88,6 +94,12 @@ function createBaseMsgStoreCodeResponse() {
|
|
|
88
94
|
checksum: new Uint8Array()
|
|
89
95
|
};
|
|
90
96
|
}
|
|
97
|
+
/**
|
|
98
|
+
* MsgStoreCodeResponse defines the response type for the StoreCode rpc
|
|
99
|
+
* @name MsgStoreCodeResponse
|
|
100
|
+
* @package ibc.lightclients.wasm.v1
|
|
101
|
+
* @see proto type: ibc.lightclients.wasm.v1.MsgStoreCodeResponse
|
|
102
|
+
*/
|
|
91
103
|
export const MsgStoreCodeResponse = {
|
|
92
104
|
typeUrl: "/ibc.lightclients.wasm.v1.MsgStoreCodeResponse",
|
|
93
105
|
aminoType: "cosmos-sdk/MsgStoreCodeResponse",
|
|
@@ -159,6 +171,12 @@ function createBaseMsgRemoveChecksum() {
|
|
|
159
171
|
checksum: new Uint8Array()
|
|
160
172
|
};
|
|
161
173
|
}
|
|
174
|
+
/**
|
|
175
|
+
* MsgRemoveChecksum defines the request type for the MsgRemoveChecksum rpc.
|
|
176
|
+
* @name MsgRemoveChecksum
|
|
177
|
+
* @package ibc.lightclients.wasm.v1
|
|
178
|
+
* @see proto type: ibc.lightclients.wasm.v1.MsgRemoveChecksum
|
|
179
|
+
*/
|
|
162
180
|
export const MsgRemoveChecksum = {
|
|
163
181
|
typeUrl: "/ibc.lightclients.wasm.v1.MsgRemoveChecksum",
|
|
164
182
|
aminoType: "cosmos-sdk/MsgRemoveChecksum",
|
|
@@ -238,6 +256,12 @@ export const MsgRemoveChecksum = {
|
|
|
238
256
|
function createBaseMsgRemoveChecksumResponse() {
|
|
239
257
|
return {};
|
|
240
258
|
}
|
|
259
|
+
/**
|
|
260
|
+
* MsgStoreChecksumResponse defines the response type for the StoreCode rpc
|
|
261
|
+
* @name MsgRemoveChecksumResponse
|
|
262
|
+
* @package ibc.lightclients.wasm.v1
|
|
263
|
+
* @see proto type: ibc.lightclients.wasm.v1.MsgRemoveChecksumResponse
|
|
264
|
+
*/
|
|
241
265
|
export const MsgRemoveChecksumResponse = {
|
|
242
266
|
typeUrl: "/ibc.lightclients.wasm.v1.MsgRemoveChecksumResponse",
|
|
243
267
|
aminoType: "cosmos-sdk/MsgRemoveChecksumResponse",
|
|
@@ -300,6 +324,12 @@ function createBaseMsgMigrateContract() {
|
|
|
300
324
|
msg: new Uint8Array()
|
|
301
325
|
};
|
|
302
326
|
}
|
|
327
|
+
/**
|
|
328
|
+
* MsgMigrateContract defines the request type for the MigrateContract rpc.
|
|
329
|
+
* @name MsgMigrateContract
|
|
330
|
+
* @package ibc.lightclients.wasm.v1
|
|
331
|
+
* @see proto type: ibc.lightclients.wasm.v1.MsgMigrateContract
|
|
332
|
+
*/
|
|
303
333
|
export const MsgMigrateContract = {
|
|
304
334
|
typeUrl: "/ibc.lightclients.wasm.v1.MsgMigrateContract",
|
|
305
335
|
aminoType: "cosmos-sdk/MsgMigrateContract",
|
|
@@ -401,6 +431,12 @@ export const MsgMigrateContract = {
|
|
|
401
431
|
function createBaseMsgMigrateContractResponse() {
|
|
402
432
|
return {};
|
|
403
433
|
}
|
|
434
|
+
/**
|
|
435
|
+
* MsgMigrateContractResponse defines the response type for the MigrateContract rpc
|
|
436
|
+
* @name MsgMigrateContractResponse
|
|
437
|
+
* @package ibc.lightclients.wasm.v1
|
|
438
|
+
* @see proto type: ibc.lightclients.wasm.v1.MsgMigrateContractResponse
|
|
439
|
+
*/
|
|
404
440
|
export const MsgMigrateContractResponse = {
|
|
405
441
|
typeUrl: "/ibc.lightclients.wasm.v1.MsgMigrateContractResponse",
|
|
406
442
|
aminoType: "cosmos-sdk/MsgMigrateContractResponse",
|
|
@@ -9,6 +9,12 @@ function createBaseClientState() {
|
|
|
9
9
|
latestHeight: Height.fromPartial({})
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* Wasm light client's Client state
|
|
14
|
+
* @name ClientState
|
|
15
|
+
* @package ibc.lightclients.wasm.v1
|
|
16
|
+
* @see proto type: ibc.lightclients.wasm.v1.ClientState
|
|
17
|
+
*/
|
|
12
18
|
export const ClientState = {
|
|
13
19
|
typeUrl: "/ibc.lightclients.wasm.v1.ClientState",
|
|
14
20
|
aminoType: "cosmos-sdk/ClientState",
|
|
@@ -101,6 +107,12 @@ function createBaseConsensusState() {
|
|
|
101
107
|
data: new Uint8Array()
|
|
102
108
|
};
|
|
103
109
|
}
|
|
110
|
+
/**
|
|
111
|
+
* Wasm light client's ConsensusState
|
|
112
|
+
* @name ConsensusState
|
|
113
|
+
* @package ibc.lightclients.wasm.v1
|
|
114
|
+
* @see proto type: ibc.lightclients.wasm.v1.ConsensusState
|
|
115
|
+
*/
|
|
104
116
|
export const ConsensusState = {
|
|
105
117
|
typeUrl: "/ibc.lightclients.wasm.v1.ConsensusState",
|
|
106
118
|
aminoType: "cosmos-sdk/ConsensusState",
|
|
@@ -171,6 +183,12 @@ function createBaseClientMessage() {
|
|
|
171
183
|
data: new Uint8Array()
|
|
172
184
|
};
|
|
173
185
|
}
|
|
186
|
+
/**
|
|
187
|
+
* Wasm light client message (either header(s) or misbehaviour)
|
|
188
|
+
* @name ClientMessage
|
|
189
|
+
* @package ibc.lightclients.wasm.v1
|
|
190
|
+
* @see proto type: ibc.lightclients.wasm.v1.ClientMessage
|
|
191
|
+
*/
|
|
174
192
|
export const ClientMessage = {
|
|
175
193
|
typeUrl: "/ibc.lightclients.wasm.v1.ClientMessage",
|
|
176
194
|
aminoType: "cosmos-sdk/ClientMessage",
|
|
@@ -236,76 +254,3 @@ export const ClientMessage = {
|
|
|
236
254
|
};
|
|
237
255
|
}
|
|
238
256
|
};
|
|
239
|
-
function createBaseChecksums() {
|
|
240
|
-
return {
|
|
241
|
-
checksums: []
|
|
242
|
-
};
|
|
243
|
-
}
|
|
244
|
-
export const Checksums = {
|
|
245
|
-
typeUrl: "/ibc.lightclients.wasm.v1.Checksums",
|
|
246
|
-
aminoType: "cosmos-sdk/Checksums",
|
|
247
|
-
encode(message, writer = BinaryWriter.create()) {
|
|
248
|
-
for (const v of message.checksums) {
|
|
249
|
-
writer.uint32(10).bytes(v);
|
|
250
|
-
}
|
|
251
|
-
return writer;
|
|
252
|
-
},
|
|
253
|
-
decode(input, length) {
|
|
254
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
255
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
256
|
-
const message = createBaseChecksums();
|
|
257
|
-
while (reader.pos < end) {
|
|
258
|
-
const tag = reader.uint32();
|
|
259
|
-
switch (tag >>> 3) {
|
|
260
|
-
case 1:
|
|
261
|
-
message.checksums.push(reader.bytes());
|
|
262
|
-
break;
|
|
263
|
-
default:
|
|
264
|
-
reader.skipType(tag & 7);
|
|
265
|
-
break;
|
|
266
|
-
}
|
|
267
|
-
}
|
|
268
|
-
return message;
|
|
269
|
-
},
|
|
270
|
-
fromPartial(object) {
|
|
271
|
-
const message = createBaseChecksums();
|
|
272
|
-
message.checksums = object.checksums?.map(e => e) || [];
|
|
273
|
-
return message;
|
|
274
|
-
},
|
|
275
|
-
fromAmino(object) {
|
|
276
|
-
const message = createBaseChecksums();
|
|
277
|
-
message.checksums = object.checksums?.map(e => bytesFromBase64(e)) || [];
|
|
278
|
-
return message;
|
|
279
|
-
},
|
|
280
|
-
toAmino(message) {
|
|
281
|
-
const obj = {};
|
|
282
|
-
if (message.checksums) {
|
|
283
|
-
obj.checksums = message.checksums.map(e => base64FromBytes(e));
|
|
284
|
-
}
|
|
285
|
-
else {
|
|
286
|
-
obj.checksums = message.checksums;
|
|
287
|
-
}
|
|
288
|
-
return obj;
|
|
289
|
-
},
|
|
290
|
-
fromAminoMsg(object) {
|
|
291
|
-
return Checksums.fromAmino(object.value);
|
|
292
|
-
},
|
|
293
|
-
toAminoMsg(message) {
|
|
294
|
-
return {
|
|
295
|
-
type: "cosmos-sdk/Checksums",
|
|
296
|
-
value: Checksums.toAmino(message)
|
|
297
|
-
};
|
|
298
|
-
},
|
|
299
|
-
fromProtoMsg(message) {
|
|
300
|
-
return Checksums.decode(message.value);
|
|
301
|
-
},
|
|
302
|
-
toProto(message) {
|
|
303
|
-
return Checksums.encode(message).finish();
|
|
304
|
-
},
|
|
305
|
-
toProtoMsg(message) {
|
|
306
|
-
return {
|
|
307
|
-
typeUrl: "/ibc.lightclients.wasm.v1.Checksums",
|
|
308
|
-
value: Checksums.encode(message).finish()
|
|
309
|
-
};
|
|
310
|
-
}
|
|
311
|
-
};
|
package/esm/ibc/rpc.query.js
CHANGED
|
@@ -48,11 +48,6 @@ export const createRPCQueryClient = async ({ rpcEndpoint }) => {
|
|
|
48
48
|
mint: {
|
|
49
49
|
v1beta1: (await import("../cosmos/mint/v1beta1/query.rpc.Query")).createRpcQueryExtension(client)
|
|
50
50
|
},
|
|
51
|
-
orm: {
|
|
52
|
-
query: {
|
|
53
|
-
v1alpha1: (await import("../cosmos/orm/query/v1alpha1/query.rpc.Query")).createRpcQueryExtension(client)
|
|
54
|
-
}
|
|
55
|
-
},
|
|
56
51
|
params: {
|
|
57
52
|
v1beta1: (await import("../cosmos/params/v1beta1/query.rpc.Query")).createRpcQueryExtension(client)
|
|
58
53
|
},
|
|
@@ -79,6 +74,9 @@ export const createRPCQueryClient = async ({ rpcEndpoint }) => {
|
|
|
79
74
|
v1: (await import("./applications/interchain_accounts/host/v1/query.rpc.Query")).createRpcQueryExtension(client)
|
|
80
75
|
}
|
|
81
76
|
},
|
|
77
|
+
rate_limiting: {
|
|
78
|
+
v1: (await import("./applications/rate_limiting/v1/query.rpc.Query")).createRpcQueryExtension(client)
|
|
79
|
+
},
|
|
82
80
|
transfer: {
|
|
83
81
|
v1: (await import("./applications/transfer/v1/query.rpc.Query")).createRpcQueryExtension(client)
|
|
84
82
|
}
|
package/esm/ibc/rpc.tx.js
CHANGED
|
@@ -60,6 +60,9 @@ export const createRPCMsgClient = async ({ rpc }) => ({
|
|
|
60
60
|
v1: new (await import("./applications/interchain_accounts/host/v1/tx.rpc.msg")).MsgClientImpl(rpc)
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
|
+
rate_limiting: {
|
|
64
|
+
v1: new (await import("./applications/rate_limiting/v1/tx.rpc.msg")).MsgClientImpl(rpc)
|
|
65
|
+
},
|
|
63
66
|
transfer: {
|
|
64
67
|
v1: new (await import("./applications/transfer/v1/tx.rpc.msg")).MsgClientImpl(rpc)
|
|
65
68
|
}
|
package/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//@ts-nocheck
|
|
2
2
|
/**
|
|
3
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
3
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.20
|
|
4
4
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
5
5
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
6
6
|
*/
|
|
@@ -5,6 +5,12 @@ function createBaseModule() {
|
|
|
5
5
|
authority: ""
|
|
6
6
|
};
|
|
7
7
|
}
|
|
8
|
+
/**
|
|
9
|
+
* Module is the config object for the module.
|
|
10
|
+
* @name Module
|
|
11
|
+
* @package sparkdream.blog.module.v1
|
|
12
|
+
* @see proto type: sparkdream.blog.module.v1.Module
|
|
13
|
+
*/
|
|
8
14
|
export const Module = {
|
|
9
15
|
typeUrl: "/sparkdream.blog.module.v1.Module",
|
|
10
16
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -6,6 +6,12 @@ function createBaseGenesisState() {
|
|
|
6
6
|
params: Params.fromPartial({})
|
|
7
7
|
};
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* GenesisState defines the blog module's genesis state.
|
|
11
|
+
* @name GenesisState
|
|
12
|
+
* @package sparkdream.blog.v1
|
|
13
|
+
* @see proto type: sparkdream.blog.v1.GenesisState
|
|
14
|
+
*/
|
|
9
15
|
export const GenesisState = {
|
|
10
16
|
typeUrl: "/sparkdream.blog.v1.GenesisState",
|
|
11
17
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -3,6 +3,12 @@ import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
|
3
3
|
function createBaseParams() {
|
|
4
4
|
return {};
|
|
5
5
|
}
|
|
6
|
+
/**
|
|
7
|
+
* Params defines the parameters for the module.
|
|
8
|
+
* @name Params
|
|
9
|
+
* @package sparkdream.blog.v1
|
|
10
|
+
* @see proto type: sparkdream.blog.v1.Params
|
|
11
|
+
*/
|
|
6
12
|
export const Params = {
|
|
7
13
|
typeUrl: "/sparkdream.blog.v1.Params",
|
|
8
14
|
aminoType: "sparkdream/x/blog/Params",
|
|
@@ -8,6 +8,12 @@ function createBasePost() {
|
|
|
8
8
|
id: BigInt(0)
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* Post defines the Post message.
|
|
13
|
+
* @name Post
|
|
14
|
+
* @package sparkdream.blog.v1
|
|
15
|
+
* @see proto type: sparkdream.blog.v1.Post
|
|
16
|
+
*/
|
|
11
17
|
export const Post = {
|
|
12
18
|
typeUrl: "/sparkdream.blog.v1.Post",
|
|
13
19
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -6,6 +6,12 @@ import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
|
6
6
|
function createBaseQueryParamsRequest() {
|
|
7
7
|
return {};
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* QueryParamsRequest is request type for the Query/Params RPC method.
|
|
11
|
+
* @name QueryParamsRequest
|
|
12
|
+
* @package sparkdream.blog.v1
|
|
13
|
+
* @see proto type: sparkdream.blog.v1.QueryParamsRequest
|
|
14
|
+
*/
|
|
9
15
|
export const QueryParamsRequest = {
|
|
10
16
|
typeUrl: "/sparkdream.blog.v1.QueryParamsRequest",
|
|
11
17
|
encode(_, writer = BinaryWriter.create()) {
|
|
@@ -58,6 +64,12 @@ function createBaseQueryParamsResponse() {
|
|
|
58
64
|
params: Params.fromPartial({})
|
|
59
65
|
};
|
|
60
66
|
}
|
|
67
|
+
/**
|
|
68
|
+
* QueryParamsResponse is response type for the Query/Params RPC method.
|
|
69
|
+
* @name QueryParamsResponse
|
|
70
|
+
* @package sparkdream.blog.v1
|
|
71
|
+
* @see proto type: sparkdream.blog.v1.QueryParamsResponse
|
|
72
|
+
*/
|
|
61
73
|
export const QueryParamsResponse = {
|
|
62
74
|
typeUrl: "/sparkdream.blog.v1.QueryParamsResponse",
|
|
63
75
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -121,6 +133,12 @@ function createBaseQueryShowPostRequest() {
|
|
|
121
133
|
id: BigInt(0)
|
|
122
134
|
};
|
|
123
135
|
}
|
|
136
|
+
/**
|
|
137
|
+
* QueryShowPostRequest defines the QueryShowPostRequest message.
|
|
138
|
+
* @name QueryShowPostRequest
|
|
139
|
+
* @package sparkdream.blog.v1
|
|
140
|
+
* @see proto type: sparkdream.blog.v1.QueryShowPostRequest
|
|
141
|
+
*/
|
|
124
142
|
export const QueryShowPostRequest = {
|
|
125
143
|
typeUrl: "/sparkdream.blog.v1.QueryShowPostRequest",
|
|
126
144
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -184,6 +202,12 @@ function createBaseQueryShowPostResponse() {
|
|
|
184
202
|
post: Post.fromPartial({})
|
|
185
203
|
};
|
|
186
204
|
}
|
|
205
|
+
/**
|
|
206
|
+
* QueryShowPostResponse defines the QueryShowPostResponse message.
|
|
207
|
+
* @name QueryShowPostResponse
|
|
208
|
+
* @package sparkdream.blog.v1
|
|
209
|
+
* @see proto type: sparkdream.blog.v1.QueryShowPostResponse
|
|
210
|
+
*/
|
|
187
211
|
export const QueryShowPostResponse = {
|
|
188
212
|
typeUrl: "/sparkdream.blog.v1.QueryShowPostResponse",
|
|
189
213
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -247,6 +271,12 @@ function createBaseQueryListPostRequest() {
|
|
|
247
271
|
pagination: undefined
|
|
248
272
|
};
|
|
249
273
|
}
|
|
274
|
+
/**
|
|
275
|
+
* QueryListPostRequest defines the QueryListPostRequest message.
|
|
276
|
+
* @name QueryListPostRequest
|
|
277
|
+
* @package sparkdream.blog.v1
|
|
278
|
+
* @see proto type: sparkdream.blog.v1.QueryListPostRequest
|
|
279
|
+
*/
|
|
250
280
|
export const QueryListPostRequest = {
|
|
251
281
|
typeUrl: "/sparkdream.blog.v1.QueryListPostRequest",
|
|
252
282
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -311,6 +341,12 @@ function createBaseQueryListPostResponse() {
|
|
|
311
341
|
pagination: undefined
|
|
312
342
|
};
|
|
313
343
|
}
|
|
344
|
+
/**
|
|
345
|
+
* QueryListPostResponse defines the QueryListPostResponse message.
|
|
346
|
+
* @name QueryListPostResponse
|
|
347
|
+
* @package sparkdream.blog.v1
|
|
348
|
+
* @see proto type: sparkdream.blog.v1.QueryListPostResponse
|
|
349
|
+
*/
|
|
314
350
|
export const QueryListPostResponse = {
|
|
315
351
|
typeUrl: "/sparkdream.blog.v1.QueryListPostResponse",
|
|
316
352
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -7,6 +7,12 @@ function createBaseMsgUpdateParams() {
|
|
|
7
7
|
params: Params.fromPartial({})
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
12
|
+
* @name MsgUpdateParams
|
|
13
|
+
* @package sparkdream.blog.v1
|
|
14
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParams
|
|
15
|
+
*/
|
|
10
16
|
export const MsgUpdateParams = {
|
|
11
17
|
typeUrl: "/sparkdream.blog.v1.MsgUpdateParams",
|
|
12
18
|
aminoType: "sparkdream/x/blog/MsgUpdateParams",
|
|
@@ -86,6 +92,13 @@ export const MsgUpdateParams = {
|
|
|
86
92
|
function createBaseMsgUpdateParamsResponse() {
|
|
87
93
|
return {};
|
|
88
94
|
}
|
|
95
|
+
/**
|
|
96
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
97
|
+
* MsgUpdateParams message.
|
|
98
|
+
* @name MsgUpdateParamsResponse
|
|
99
|
+
* @package sparkdream.blog.v1
|
|
100
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdateParamsResponse
|
|
101
|
+
*/
|
|
89
102
|
export const MsgUpdateParamsResponse = {
|
|
90
103
|
typeUrl: "/sparkdream.blog.v1.MsgUpdateParamsResponse",
|
|
91
104
|
encode(_, writer = BinaryWriter.create()) {
|
|
@@ -140,6 +153,12 @@ function createBaseMsgCreatePost() {
|
|
|
140
153
|
body: ""
|
|
141
154
|
};
|
|
142
155
|
}
|
|
156
|
+
/**
|
|
157
|
+
* MsgCreatePost defines the MsgCreatePost message.
|
|
158
|
+
* @name MsgCreatePost
|
|
159
|
+
* @package sparkdream.blog.v1
|
|
160
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePost
|
|
161
|
+
*/
|
|
143
162
|
export const MsgCreatePost = {
|
|
144
163
|
typeUrl: "/sparkdream.blog.v1.MsgCreatePost",
|
|
145
164
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -225,6 +244,12 @@ function createBaseMsgCreatePostResponse() {
|
|
|
225
244
|
id: BigInt(0)
|
|
226
245
|
};
|
|
227
246
|
}
|
|
247
|
+
/**
|
|
248
|
+
* MsgCreatePostResponse defines the MsgCreatePostResponse message.
|
|
249
|
+
* @name MsgCreatePostResponse
|
|
250
|
+
* @package sparkdream.blog.v1
|
|
251
|
+
* @see proto type: sparkdream.blog.v1.MsgCreatePostResponse
|
|
252
|
+
*/
|
|
228
253
|
export const MsgCreatePostResponse = {
|
|
229
254
|
typeUrl: "/sparkdream.blog.v1.MsgCreatePostResponse",
|
|
230
255
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -291,6 +316,12 @@ function createBaseMsgUpdatePost() {
|
|
|
291
316
|
id: BigInt(0)
|
|
292
317
|
};
|
|
293
318
|
}
|
|
319
|
+
/**
|
|
320
|
+
* MsgUpdatePost defines the MsgUpdatePost message.
|
|
321
|
+
* @name MsgUpdatePost
|
|
322
|
+
* @package sparkdream.blog.v1
|
|
323
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePost
|
|
324
|
+
*/
|
|
294
325
|
export const MsgUpdatePost = {
|
|
295
326
|
typeUrl: "/sparkdream.blog.v1.MsgUpdatePost",
|
|
296
327
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -385,6 +416,12 @@ export const MsgUpdatePost = {
|
|
|
385
416
|
function createBaseMsgUpdatePostResponse() {
|
|
386
417
|
return {};
|
|
387
418
|
}
|
|
419
|
+
/**
|
|
420
|
+
* MsgUpdatePostResponse defines the MsgUpdatePostResponse message.
|
|
421
|
+
* @name MsgUpdatePostResponse
|
|
422
|
+
* @package sparkdream.blog.v1
|
|
423
|
+
* @see proto type: sparkdream.blog.v1.MsgUpdatePostResponse
|
|
424
|
+
*/
|
|
388
425
|
export const MsgUpdatePostResponse = {
|
|
389
426
|
typeUrl: "/sparkdream.blog.v1.MsgUpdatePostResponse",
|
|
390
427
|
encode(_, writer = BinaryWriter.create()) {
|
|
@@ -438,6 +475,12 @@ function createBaseMsgDeletePost() {
|
|
|
438
475
|
id: BigInt(0)
|
|
439
476
|
};
|
|
440
477
|
}
|
|
478
|
+
/**
|
|
479
|
+
* MsgDeletePost defines the MsgDeletePost message.
|
|
480
|
+
* @name MsgDeletePost
|
|
481
|
+
* @package sparkdream.blog.v1
|
|
482
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePost
|
|
483
|
+
*/
|
|
441
484
|
export const MsgDeletePost = {
|
|
442
485
|
typeUrl: "/sparkdream.blog.v1.MsgDeletePost",
|
|
443
486
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -510,6 +553,12 @@ export const MsgDeletePost = {
|
|
|
510
553
|
function createBaseMsgDeletePostResponse() {
|
|
511
554
|
return {};
|
|
512
555
|
}
|
|
556
|
+
/**
|
|
557
|
+
* MsgDeletePostResponse defines the MsgDeletePostResponse message.
|
|
558
|
+
* @name MsgDeletePostResponse
|
|
559
|
+
* @package sparkdream.blog.v1
|
|
560
|
+
* @see proto type: sparkdream.blog.v1.MsgDeletePostResponse
|
|
561
|
+
*/
|
|
513
562
|
export const MsgDeletePostResponse = {
|
|
514
563
|
typeUrl: "/sparkdream.blog.v1.MsgDeletePostResponse",
|
|
515
564
|
encode(_, writer = BinaryWriter.create()) {
|
package/esm/sparkdream/bundle.js
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
//@ts-nocheck
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
5
|
-
import * as
|
|
6
|
-
import * as
|
|
7
|
-
import * as
|
|
8
|
-
import * as
|
|
9
|
-
import * as
|
|
10
|
-
import * as
|
|
11
|
-
import * as
|
|
12
|
-
import * as
|
|
13
|
-
import * as
|
|
14
|
-
import * as
|
|
15
|
-
import * as
|
|
16
|
-
import * as
|
|
17
|
-
import * as
|
|
18
|
-
import * as
|
|
19
|
-
import * as
|
|
20
|
-
import * as
|
|
21
|
-
import * as
|
|
22
|
-
import * as
|
|
23
|
-
import * as
|
|
24
|
-
import * as
|
|
25
|
-
import * as
|
|
2
|
+
import * as _175 from "./blog/module/v1/module";
|
|
3
|
+
import * as _176 from "./blog/v1/genesis";
|
|
4
|
+
import * as _177 from "./blog/v1/params";
|
|
5
|
+
import * as _178 from "./blog/v1/post";
|
|
6
|
+
import * as _179 from "./blog/v1/query";
|
|
7
|
+
import * as _180 from "./blog/v1/tx";
|
|
8
|
+
import * as _181 from "./sparkdream/module/v1/module";
|
|
9
|
+
import * as _182 from "./sparkdream/v1/genesis";
|
|
10
|
+
import * as _183 from "./sparkdream/v1/params";
|
|
11
|
+
import * as _184 from "./sparkdream/v1/query";
|
|
12
|
+
import * as _185 from "./sparkdream/v1/tx";
|
|
13
|
+
import * as _334 from "./blog/v1/tx.amino";
|
|
14
|
+
import * as _335 from "./sparkdream/v1/tx.amino";
|
|
15
|
+
import * as _336 from "./blog/v1/tx.registry";
|
|
16
|
+
import * as _337 from "./sparkdream/v1/tx.registry";
|
|
17
|
+
import * as _338 from "./blog/v1/query.lcd";
|
|
18
|
+
import * as _339 from "./sparkdream/v1/query.lcd";
|
|
19
|
+
import * as _340 from "./blog/v1/query.rpc.Query";
|
|
20
|
+
import * as _341 from "./sparkdream/v1/query.rpc.Query";
|
|
21
|
+
import * as _342 from "./blog/v1/tx.rpc.msg";
|
|
22
|
+
import * as _343 from "./sparkdream/v1/tx.rpc.msg";
|
|
23
|
+
import * as _350 from "./lcd";
|
|
24
|
+
import * as _351 from "./rpc.query";
|
|
25
|
+
import * as _352 from "./rpc.tx";
|
|
26
26
|
export var sparkdream;
|
|
27
27
|
(function (sparkdream_1) {
|
|
28
28
|
let blog;
|
|
@@ -30,20 +30,20 @@ export var sparkdream;
|
|
|
30
30
|
let module;
|
|
31
31
|
(function (module) {
|
|
32
32
|
module.v1 = {
|
|
33
|
-
...
|
|
33
|
+
..._175
|
|
34
34
|
};
|
|
35
35
|
})(module = blog.module || (blog.module = {}));
|
|
36
36
|
blog.v1 = {
|
|
37
|
-
..._174,
|
|
38
|
-
..._175,
|
|
39
37
|
..._176,
|
|
40
38
|
..._177,
|
|
41
39
|
..._178,
|
|
42
|
-
...
|
|
43
|
-
...
|
|
44
|
-
..._332,
|
|
40
|
+
..._179,
|
|
41
|
+
..._180,
|
|
45
42
|
..._334,
|
|
46
|
-
..._336
|
|
43
|
+
..._336,
|
|
44
|
+
..._338,
|
|
45
|
+
..._340,
|
|
46
|
+
..._342
|
|
47
47
|
};
|
|
48
48
|
})(blog = sparkdream_1.blog || (sparkdream_1.blog = {}));
|
|
49
49
|
let sparkdream;
|
|
@@ -51,24 +51,24 @@ export var sparkdream;
|
|
|
51
51
|
let module;
|
|
52
52
|
(function (module) {
|
|
53
53
|
module.v1 = {
|
|
54
|
-
...
|
|
54
|
+
..._181
|
|
55
55
|
};
|
|
56
56
|
})(module = sparkdream.module || (sparkdream.module = {}));
|
|
57
57
|
sparkdream.v1 = {
|
|
58
|
-
..._180,
|
|
59
|
-
..._181,
|
|
60
58
|
..._182,
|
|
61
59
|
..._183,
|
|
62
|
-
...
|
|
63
|
-
...
|
|
64
|
-
..._333,
|
|
60
|
+
..._184,
|
|
61
|
+
..._185,
|
|
65
62
|
..._335,
|
|
66
|
-
..._337
|
|
63
|
+
..._337,
|
|
64
|
+
..._339,
|
|
65
|
+
..._341,
|
|
66
|
+
..._343
|
|
67
67
|
};
|
|
68
68
|
})(sparkdream = sparkdream_1.sparkdream || (sparkdream_1.sparkdream = {}));
|
|
69
69
|
sparkdream_1.ClientFactory = {
|
|
70
|
-
...
|
|
71
|
-
...
|
|
72
|
-
...
|
|
70
|
+
..._350,
|
|
71
|
+
..._351,
|
|
72
|
+
..._352
|
|
73
73
|
};
|
|
74
74
|
})(sparkdream || (sparkdream = {}));
|
|
@@ -48,11 +48,6 @@ export const createRPCQueryClient = async ({ rpcEndpoint }) => {
|
|
|
48
48
|
mint: {
|
|
49
49
|
v1beta1: (await import("../cosmos/mint/v1beta1/query.rpc.Query")).createRpcQueryExtension(client)
|
|
50
50
|
},
|
|
51
|
-
orm: {
|
|
52
|
-
query: {
|
|
53
|
-
v1alpha1: (await import("../cosmos/orm/query/v1alpha1/query.rpc.Query")).createRpcQueryExtension(client)
|
|
54
|
-
}
|
|
55
|
-
},
|
|
56
51
|
params: {
|
|
57
52
|
v1beta1: (await import("../cosmos/params/v1beta1/query.rpc.Query")).createRpcQueryExtension(client)
|
|
58
53
|
},
|
|
@@ -5,6 +5,12 @@ function createBaseModule() {
|
|
|
5
5
|
authority: ""
|
|
6
6
|
};
|
|
7
7
|
}
|
|
8
|
+
/**
|
|
9
|
+
* Module is the config object for the module.
|
|
10
|
+
* @name Module
|
|
11
|
+
* @package sparkdream.sparkdream.module.v1
|
|
12
|
+
* @see proto type: sparkdream.sparkdream.module.v1.Module
|
|
13
|
+
*/
|
|
8
14
|
export const Module = {
|
|
9
15
|
typeUrl: "/sparkdream.sparkdream.module.v1.Module",
|
|
10
16
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -6,6 +6,12 @@ function createBaseGenesisState() {
|
|
|
6
6
|
params: Params.fromPartial({})
|
|
7
7
|
};
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* GenesisState defines the sparkdream module's genesis state.
|
|
11
|
+
* @name GenesisState
|
|
12
|
+
* @package sparkdream.sparkdream.v1
|
|
13
|
+
* @see proto type: sparkdream.sparkdream.v1.GenesisState
|
|
14
|
+
*/
|
|
9
15
|
export const GenesisState = {
|
|
10
16
|
typeUrl: "/sparkdream.sparkdream.v1.GenesisState",
|
|
11
17
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -3,6 +3,12 @@ import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
|
3
3
|
function createBaseParams() {
|
|
4
4
|
return {};
|
|
5
5
|
}
|
|
6
|
+
/**
|
|
7
|
+
* Params defines the parameters for the module.
|
|
8
|
+
* @name Params
|
|
9
|
+
* @package sparkdream.sparkdream.v1
|
|
10
|
+
* @see proto type: sparkdream.sparkdream.v1.Params
|
|
11
|
+
*/
|
|
6
12
|
export const Params = {
|
|
7
13
|
typeUrl: "/sparkdream.sparkdream.v1.Params",
|
|
8
14
|
aminoType: "sparkdream/x/sparkdream/Params",
|
|
@@ -4,6 +4,12 @@ import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
|
4
4
|
function createBaseQueryParamsRequest() {
|
|
5
5
|
return {};
|
|
6
6
|
}
|
|
7
|
+
/**
|
|
8
|
+
* QueryParamsRequest is request type for the Query/Params RPC method.
|
|
9
|
+
* @name QueryParamsRequest
|
|
10
|
+
* @package sparkdream.sparkdream.v1
|
|
11
|
+
* @see proto type: sparkdream.sparkdream.v1.QueryParamsRequest
|
|
12
|
+
*/
|
|
7
13
|
export const QueryParamsRequest = {
|
|
8
14
|
typeUrl: "/sparkdream.sparkdream.v1.QueryParamsRequest",
|
|
9
15
|
encode(_, writer = BinaryWriter.create()) {
|
|
@@ -56,6 +62,12 @@ function createBaseQueryParamsResponse() {
|
|
|
56
62
|
params: Params.fromPartial({})
|
|
57
63
|
};
|
|
58
64
|
}
|
|
65
|
+
/**
|
|
66
|
+
* QueryParamsResponse is response type for the Query/Params RPC method.
|
|
67
|
+
* @name QueryParamsResponse
|
|
68
|
+
* @package sparkdream.sparkdream.v1
|
|
69
|
+
* @see proto type: sparkdream.sparkdream.v1.QueryParamsResponse
|
|
70
|
+
*/
|
|
59
71
|
export const QueryParamsResponse = {
|
|
60
72
|
typeUrl: "/sparkdream.sparkdream.v1.QueryParamsResponse",
|
|
61
73
|
encode(message, writer = BinaryWriter.create()) {
|