@sparkdreamnft/sparkdreamjs 0.0.5 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
- package/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +19 -0
- package/cosmos/auth/module/v1/module.d.ts +72 -12
- package/cosmos/auth/module/v1/module.js +25 -1
- package/cosmos/auth/v1beta1/auth.d.ts +68 -10
- package/cosmos/auth/v1beta1/auth.js +26 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +334 -92
- package/cosmos/auth/v1beta1/query.js +120 -0
- package/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
- package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/cosmos/auth/v1beta1/tx.d.ts +31 -10
- package/cosmos/auth/v1beta1/tx.js +13 -0
- package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +6 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +36 -0
- package/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +13 -8
- package/cosmos/bank/v1beta1/authz.js +7 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -34
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
- package/cosmos/bank/v1beta1/genesis.js +13 -0
- package/cosmos/bank/v1beta1/query.d.ts +599 -138
- package/cosmos/bank/v1beta1/query.js +179 -0
- package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
- package/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
- package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
- package/cosmos/bank/v1beta1/tx.d.ts +143 -30
- package/cosmos/bank/v1beta1/tx.js +53 -0
- package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/benchmark/module/v1/module.d.ts +102 -26
- package/cosmos/benchmark/module/v1/module.js +12 -0
- package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
- package/cosmos/benchmark/v1/benchmark.js +6 -0
- package/cosmos/benchmark/v1/tx.d.ts +36 -4
- package/cosmos/benchmark/v1/tx.js +12 -0
- package/cosmos/bundle.d.ts +2284 -2422
- package/cosmos/bundle.js +242 -261
- package/cosmos/circuit/module/v1/module.d.ts +24 -4
- package/cosmos/circuit/module/v1/module.js +6 -0
- package/cosmos/circuit/v1/query.d.ts +120 -16
- package/cosmos/circuit/v1/query.js +36 -0
- package/cosmos/circuit/v1/tx.d.ts +126 -18
- package/cosmos/circuit/v1/tx.js +36 -0
- package/cosmos/circuit/v1/types.d.ts +55 -6
- package/cosmos/circuit/v1/types.js +19 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +12 -0
- package/cosmos/consensus/v1/tx.d.ts +37 -6
- package/cosmos/consensus/v1/tx.js +13 -0
- package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/cosmos/counter/module/v1/module.d.ts +24 -4
- package/cosmos/counter/module/v1/module.js +6 -0
- package/cosmos/counter/v1/query.d.ts +36 -4
- package/cosmos/counter/v1/query.js +12 -0
- package/cosmos/counter/v1/tx.d.ts +54 -10
- package/cosmos/counter/v1/tx.js +12 -0
- package/cosmos/crisis/module/v1/module.d.ts +30 -6
- package/cosmos/crisis/module/v1/module.js +6 -0
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
- package/cosmos/crypto/hd/v1/hd.js +6 -0
- package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
- package/cosmos/crypto/keyring/v1/record.js +31 -0
- package/cosmos/crypto/multisig/keys.d.ts +14 -0
- package/cosmos/crypto/multisig/keys.js +8 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +136 -0
- package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
- package/cosmos/distribution/v1beta1/tx.js +97 -0
- package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
- package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/cosmos/epochs/module/v1/module.d.ts +18 -2
- package/cosmos/epochs/module/v1/module.js +6 -0
- package/cosmos/epochs/v1beta1/events.d.ts +36 -4
- package/cosmos/epochs/v1beta1/events.js +12 -0
- package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
- package/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/cosmos/epochs/v1beta1/query.d.ts +52 -0
- package/cosmos/epochs/v1beta1/query.js +28 -0
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
- package/cosmos/feegrant/v1beta1/query.js +36 -0
- package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
- package/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/genutil/module/v1/module.d.ts +18 -2
- package/cosmos/genutil/module/v1/module.js +6 -0
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -24
- package/cosmos/gov/v1/genesis.js +6 -0
- package/cosmos/gov/v1/gov.d.ts +341 -124
- package/cosmos/gov/v1/gov.js +59 -0
- package/cosmos/gov/v1/query.d.ts +469 -92
- package/cosmos/gov/v1/query.js +109 -0
- package/cosmos/gov/v1/tx.d.ts +368 -93
- package/cosmos/gov/v1/tx.js +88 -0
- package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +6 -0
- package/cosmos/gov/v1beta1/gov.d.ts +291 -69
- package/cosmos/gov/v1beta1/gov.js +57 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/tx.d.ts +209 -45
- package/cosmos/gov/v1beta1/tx.js +49 -0
- package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/group/module/v1/module.d.ts +18 -2
- package/cosmos/group/module/v1/module.js +6 -0
- package/cosmos/group/v1/events.d.ts +300 -56
- package/cosmos/group/v1/events.js +66 -0
- package/cosmos/group/v1/genesis.d.ts +48 -12
- package/cosmos/group/v1/genesis.js +6 -0
- package/cosmos/group/v1/query.d.ts +768 -152
- package/cosmos/group/v1/query.js +168 -0
- package/cosmos/group/v1/query.lcd.js +1 -3
- package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
- package/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/cosmos/group/v1/tx.d.ts +804 -163
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/types.d.ts +398 -91
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +6 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +39 -0
- package/cosmos/mint/v1beta1/tx.d.ts +31 -10
- package/cosmos/mint/v1beta1/tx.js +13 -0
- package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/nft/module/v1/module.d.ts +18 -2
- package/cosmos/nft/module/v1/module.js +6 -0
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +13 -0
- package/cosmos/params/v1beta1/query.d.ts +93 -22
- package/cosmos/params/v1beta1/query.js +33 -0
- package/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
- package/cosmos/protocolpool/module/v1/module.js +6 -0
- package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
- package/cosmos/protocolpool/v1/genesis.js +6 -0
- package/cosmos/protocolpool/v1/query.d.ts +138 -12
- package/cosmos/protocolpool/v1/query.js +54 -0
- package/cosmos/protocolpool/v1/tx.d.ts +217 -30
- package/cosmos/protocolpool/v1/tx.js +67 -0
- package/cosmos/protocolpool/v1/types.d.ts +54 -10
- package/cosmos/protocolpool/v1/types.js +12 -0
- package/cosmos/reflection/v1/reflection.d.ts +42 -6
- package/cosmos/reflection/v1/reflection.js +12 -0
- package/cosmos/rpc.query.d.ts +1 -9
- package/cosmos/rpc.query.js +0 -5
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +43 -15
- package/cosmos/staking/v1beta1/authz.js +13 -5
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +12 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/staking.d.ts +631 -121
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +234 -42
- package/cosmos/staking/v1beta1/tx.js +88 -0
- package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
- package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
- package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
- package/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
- package/cosmos/store/streaming/abci/grpc.js +24 -0
- package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
- package/cosmos/store/v1beta1/commit_info.js +21 -0
- package/cosmos/store/v1beta1/listening.d.ts +45 -10
- package/cosmos/store/v1beta1/listening.js +15 -0
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +355 -94
- package/cosmos/tx/v1beta1/service.js +125 -0
- package/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
- package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/cosmos/tx/v1beta1/tx.d.ts +371 -80
- package/cosmos/tx/v1beta1/tx.js +118 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
- package/cosmos/upgrade/v1beta1/query.js +70 -0
- package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
- package/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
- package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/cosmos/vesting/module/v1/module.d.ts +18 -2
- package/cosmos/vesting/module/v1/module.js +6 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
- package/cosmos/vesting/v1beta1/tx.js +40 -0
- package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
- package/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/esm/cosmos/app/v1alpha1/module.js +19 -0
- package/esm/cosmos/auth/module/v1/module.js +25 -1
- package/esm/cosmos/auth/v1beta1/auth.js +26 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +120 -0
- package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/esm/cosmos/auth/v1beta1/tx.js +13 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
- package/esm/cosmos/authz/v1beta1/query.js +36 -0
- package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +7 -0
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
- package/esm/cosmos/bank/v1beta1/query.js +179 -0
- package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
- package/esm/cosmos/bank/v1beta1/tx.js +53 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/benchmark/module/v1/module.js +12 -0
- package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
- package/esm/cosmos/benchmark/v1/tx.js +12 -0
- package/esm/cosmos/bundle.js +242 -261
- package/esm/cosmos/circuit/module/v1/module.js +6 -0
- package/esm/cosmos/circuit/v1/query.js +36 -0
- package/esm/cosmos/circuit/v1/tx.js +36 -0
- package/esm/cosmos/circuit/v1/types.js +19 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +12 -0
- package/esm/cosmos/consensus/v1/tx.js +13 -0
- package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/counter/module/v1/module.js +6 -0
- package/esm/cosmos/counter/v1/query.js +12 -0
- package/esm/cosmos/counter/v1/tx.js +12 -0
- package/esm/cosmos/crisis/module/v1/module.js +6 -0
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
- package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
- package/esm/cosmos/crypto/multisig/keys.js +8 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/esm/cosmos/distribution/v1beta1/query.js +136 -0
- package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/esm/cosmos/epochs/module/v1/module.js +6 -0
- package/esm/cosmos/epochs/v1beta1/events.js +12 -0
- package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/esm/cosmos/epochs/v1beta1/query.js +28 -0
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
- package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/genutil/module/v1/module.js +6 -0
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +6 -0
- package/esm/cosmos/gov/v1/gov.js +59 -0
- package/esm/cosmos/gov/v1/query.js +109 -0
- package/esm/cosmos/gov/v1/tx.js +88 -0
- package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
- package/esm/cosmos/gov/v1beta1/gov.js +57 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/tx.js +49 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/group/module/v1/module.js +6 -0
- package/esm/cosmos/group/v1/events.js +66 -0
- package/esm/cosmos/group/v1/genesis.js +6 -0
- package/esm/cosmos/group/v1/query.js +168 -0
- package/esm/cosmos/group/v1/query.lcd.js +1 -3
- package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +39 -0
- package/esm/cosmos/mint/v1beta1/tx.js +13 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/nft/module/v1/module.js +6 -0
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +13 -0
- package/esm/cosmos/params/v1beta1/query.js +33 -0
- package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
- package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
- package/esm/cosmos/protocolpool/v1/query.js +54 -0
- package/esm/cosmos/protocolpool/v1/tx.js +67 -0
- package/esm/cosmos/protocolpool/v1/types.js +12 -0
- package/esm/cosmos/reflection/v1/reflection.js +12 -0
- package/esm/cosmos/rpc.query.js +0 -5
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +13 -5
- package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +88 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
- package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
- package/esm/cosmos/store/v1beta1/listening.js +15 -0
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +125 -0
- package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/esm/cosmos/tx/v1beta1/tx.js +119 -1
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
- package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/esm/cosmos/vesting/module/v1/module.js +6 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/gogoproto/bundle.js +2 -2
- package/esm/google/api/http.js +283 -0
- package/esm/google/bundle.js +7 -7
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +220 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
- package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
- package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
- package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
- package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
- package/esm/ibc/applications/transfer/v1/authz.js +13 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
- package/esm/ibc/applications/transfer/v1/packet.js +8 -0
- package/esm/ibc/applications/transfer/v1/query.js +78 -0
- package/esm/ibc/applications/transfer/v1/token.js +18 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
- package/esm/ibc/applications/transfer/v1/tx.js +40 -1
- package/esm/ibc/bundle.js +196 -173
- package/esm/ibc/client.js +4 -1
- package/esm/ibc/core/channel/v1/channel.js +64 -0
- package/esm/ibc/core/channel/v1/genesis.js +13 -0
- package/esm/ibc/core/channel/v1/query.js +197 -0
- package/esm/ibc/core/channel/v1/tx.js +129 -0
- package/esm/ibc/core/channel/v2/genesis.js +21 -0
- package/esm/ibc/core/channel/v2/packet.js +29 -0
- package/esm/ibc/core/channel/v2/query.js +100 -0
- package/esm/ibc/core/channel/v2/tx.js +48 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/genesis.js +20 -0
- package/esm/ibc/core/client/v1/query.js +154 -0
- package/esm/ibc/core/client/v1/tx.amino.js +1 -6
- package/esm/ibc/core/client/v1/tx.js +86 -151
- package/esm/ibc/core/client/v1/tx.registry.js +2 -20
- package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
- package/esm/ibc/core/client/v2/config.js +9 -0
- package/esm/ibc/core/client/v2/counterparty.js +6 -0
- package/esm/ibc/core/client/v2/genesis.js +12 -0
- package/esm/ibc/core/client/v2/query.js +26 -0
- package/esm/ibc/core/client/v2/tx.js +24 -0
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/commitment/v2/commitment.js +36 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/genesis.js +6 -0
- package/esm/ibc/core/connection/v1/query.js +83 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/lcd.js +5 -0
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
- package/esm/ibc/rpc.query.js +3 -5
- package/esm/ibc/rpc.tx.js +3 -0
- package/esm/index.js +1 -1
- package/esm/sparkdream/blog/module/{module.js → v1/module.js} +9 -3
- package/esm/sparkdream/blog/{genesis.js → v1/genesis.js} +9 -3
- package/esm/sparkdream/blog/{params.js → v1/params.js} +9 -3
- package/esm/sparkdream/blog/{post.js → v1/post.js} +9 -3
- package/esm/sparkdream/blog/{query.js → v1/query.js} +50 -14
- package/esm/sparkdream/blog/{query.lcd.js → v1/query.lcd.js} +6 -6
- package/esm/sparkdream/blog/{query.rpc.Query.js → v1/query.rpc.Query.js} +6 -6
- package/esm/sparkdream/blog/{tx.amino.js → v1/tx.amino.js} +7 -7
- package/esm/sparkdream/blog/{tx.js → v1/tx.js} +66 -17
- package/esm/sparkdream/blog/{tx.registry.js → v1/tx.registry.js} +13 -13
- package/esm/sparkdream/blog/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +8 -8
- package/esm/sparkdream/bundle.js +68 -48
- package/esm/sparkdream/client.js +7 -7
- package/esm/sparkdream/lcd.js +10 -6
- package/esm/sparkdream/rpc.query.js +6 -7
- package/esm/sparkdream/rpc.tx.js +6 -2
- package/esm/sparkdream/sparkdream/module/{module.js → v1/module.js} +9 -3
- package/esm/sparkdream/sparkdream/{genesis.js → v1/genesis.js} +9 -3
- package/esm/sparkdream/sparkdream/{params.js → v1/params.js} +9 -3
- package/esm/sparkdream/sparkdream/{query.js → v1/query.js} +17 -5
- package/esm/sparkdream/sparkdream/{query.lcd.js → v1/query.lcd.js} +1 -1
- package/esm/sparkdream/sparkdream/{query.rpc.Query.js → v1/query.rpc.Query.js} +2 -2
- package/esm/sparkdream/sparkdream/{tx.amino.js → v1/tx.amino.js} +1 -1
- package/esm/sparkdream/sparkdream/{tx.js → v1/tx.js} +18 -5
- package/esm/sparkdream/sparkdream/{tx.registry.js → v1/tx.registry.js} +4 -4
- package/esm/sparkdream/sparkdream/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +2 -2
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +20 -20
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/p2p/types.js +20 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/gogoproto/bundle.js +2 -2
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/bundle.d.ts +418 -418
- package/google/bundle.js +7 -7
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +738 -90
- package/google/protobuf/descriptor.js +220 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
- package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
- package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
- package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
- package/ibc/applications/rate_limiting/v1/query.js +906 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
- package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
- package/ibc/applications/rate_limiting/v1/tx.js +729 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +13 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
- package/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
- package/ibc/applications/transfer/v1/genesis.js +6 -0
- package/ibc/applications/transfer/v1/packet.d.ts +44 -10
- package/ibc/applications/transfer/v1/packet.js +8 -0
- package/ibc/applications/transfer/v1/query.d.ts +252 -34
- package/ibc/applications/transfer/v1/query.js +78 -0
- package/ibc/applications/transfer/v1/token.d.ts +78 -14
- package/ibc/applications/transfer/v1/token.js +18 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
- package/ibc/applications/transfer/v1/transfer.js +9 -0
- package/ibc/applications/transfer/v1/tx.d.ts +135 -22
- package/ibc/applications/transfer/v1/tx.js +40 -1
- package/ibc/bundle.d.ts +3830 -3396
- package/ibc/bundle.js +196 -173
- package/ibc/client.d.ts +20 -5
- package/ibc/client.js +4 -1
- package/ibc/core/channel/v1/channel.d.ts +292 -60
- package/ibc/core/channel/v1/channel.js +64 -0
- package/ibc/core/channel/v1/genesis.d.ts +37 -4
- package/ibc/core/channel/v1/genesis.js +13 -0
- package/ibc/core/channel/v1/query.d.ts +839 -158
- package/ibc/core/channel/v1/query.js +197 -0
- package/ibc/core/channel/v1/tx.d.ts +335 -30
- package/ibc/core/channel/v1/tx.js +129 -0
- package/ibc/core/channel/v2/genesis.d.ts +81 -14
- package/ibc/core/channel/v2/genesis.js +21 -0
- package/ibc/core/channel/v2/packet.d.ts +137 -28
- package/ibc/core/channel/v2/packet.js +29 -0
- package/ibc/core/channel/v2/query.d.ts +490 -98
- package/ibc/core/channel/v2/query.js +100 -0
- package/ibc/core/channel/v2/tx.d.ts +144 -16
- package/ibc/core/channel/v2/tx.js +48 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/genesis.d.ts +82 -16
- package/ibc/core/client/v1/genesis.js +20 -0
- package/ibc/core/client/v1/query.d.ts +508 -74
- package/ibc/core/client/v1/query.js +154 -0
- package/ibc/core/client/v1/tx.amino.d.ts +1 -6
- package/ibc/core/client/v1/tx.amino.js +0 -5
- package/ibc/core/client/v1/tx.d.ts +336 -138
- package/ibc/core/client/v1/tx.js +87 -152
- package/ibc/core/client/v1/tx.registry.d.ts +1 -13
- package/ibc/core/client/v1/tx.registry.js +1 -19
- package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
- package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
- package/ibc/core/client/v2/config.d.ts +21 -2
- package/ibc/core/client/v2/config.js +9 -0
- package/ibc/core/client/v2/counterparty.d.ts +30 -6
- package/ibc/core/client/v2/counterparty.js +6 -0
- package/ibc/core/client/v2/genesis.d.ts +54 -10
- package/ibc/core/client/v2/genesis.js +12 -0
- package/ibc/core/client/v2/query.d.ts +74 -8
- package/ibc/core/client/v2/query.js +26 -0
- package/ibc/core/client/v2/tx.d.ts +108 -20
- package/ibc/core/client/v2/tx.js +24 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/commitment/v2/commitment.d.ts +42 -0
- package/ibc/core/commitment/v2/commitment.js +36 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +6 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +83 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/lcd.d.ts +3 -0
- package/ibc/lcd.js +5 -0
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
- package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
- package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
- package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +24 -0
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
- package/ibc/lightclients/wasm/v1/wasm.js +19 -74
- package/ibc/rpc.query.d.ts +11 -9
- package/ibc/rpc.query.js +3 -5
- package/ibc/rpc.tx.d.ts +3 -0
- package/ibc/rpc.tx.js +3 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/sparkdream/blog/module/v1/module.d.ts +54 -0
- package/sparkdream/{sparkdream/module → blog/module/v1}/module.js +9 -3
- package/sparkdream/{sparkdream → blog/v1}/genesis.d.ts +28 -8
- package/sparkdream/{sparkdream → blog/v1}/genesis.js +9 -3
- package/sparkdream/blog/{params.d.ts → v1/params.d.ts} +21 -5
- package/sparkdream/blog/{params.js → v1/params.js} +9 -3
- package/sparkdream/blog/{post.d.ts → v1/post.d.ts} +22 -4
- package/sparkdream/blog/{post.js → v1/post.js} +9 -3
- package/sparkdream/blog/{query.d.ts → v1/query.d.ts} +129 -21
- package/sparkdream/blog/{query.js → v1/query.js} +50 -14
- package/sparkdream/blog/{query.lcd.js → v1/query.lcd.js} +6 -6
- package/sparkdream/blog/{query.rpc.Query.d.ts → v1/query.rpc.Query.d.ts} +3 -3
- package/sparkdream/blog/{query.rpc.Query.js → v1/query.rpc.Query.js} +6 -6
- package/sparkdream/blog/{tx.amino.d.ts → v1/tx.amino.d.ts} +4 -4
- package/sparkdream/blog/{tx.amino.js → v1/tx.amino.js} +7 -7
- package/sparkdream/blog/{tx.d.ts → v1/tx.d.ts} +168 -23
- package/sparkdream/blog/{tx.js → v1/tx.js} +66 -17
- package/sparkdream/blog/{tx.registry.d.ts → v1/tx.registry.d.ts} +1 -1
- package/sparkdream/blog/{tx.registry.js → v1/tx.registry.js} +13 -13
- package/sparkdream/blog/{tx.rpc.msg.d.ts → v1/tx.rpc.msg.d.ts} +4 -1
- package/sparkdream/blog/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +8 -8
- package/sparkdream/bundle.d.ts +461 -419
- package/sparkdream/bundle.js +68 -48
- package/sparkdream/client.d.ts +15 -15
- package/sparkdream/client.js +7 -7
- package/sparkdream/lcd.d.ts +6 -2
- package/sparkdream/lcd.js +10 -6
- package/sparkdream/rpc.query.d.ts +9 -13
- package/sparkdream/rpc.query.js +6 -7
- package/sparkdream/rpc.tx.d.ts +6 -2
- package/sparkdream/rpc.tx.js +6 -2
- package/sparkdream/sparkdream/module/v1/module.d.ts +54 -0
- package/sparkdream/{blog/module → sparkdream/module/v1}/module.js +9 -3
- package/sparkdream/sparkdream/v1/genesis.d.ts +53 -0
- package/sparkdream/{blog → sparkdream/v1}/genesis.js +9 -3
- package/sparkdream/sparkdream/{params.d.ts → v1/params.d.ts} +21 -5
- package/sparkdream/sparkdream/{params.js → v1/params.js} +9 -3
- package/sparkdream/sparkdream/{query.d.ts → v1/query.d.ts} +48 -12
- package/sparkdream/sparkdream/{query.js → v1/query.js} +17 -5
- package/sparkdream/sparkdream/{query.lcd.js → v1/query.lcd.js} +1 -1
- package/sparkdream/sparkdream/{query.rpc.Query.d.ts → v1/query.rpc.Query.d.ts} +1 -1
- package/sparkdream/sparkdream/{query.rpc.Query.js → v1/query.rpc.Query.js} +2 -2
- package/sparkdream/sparkdream/{tx.amino.d.ts → v1/tx.amino.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.amino.js → v1/tx.amino.js} +1 -1
- package/sparkdream/sparkdream/{tx.d.ts → v1/tx.d.ts} +42 -9
- package/sparkdream/sparkdream/{tx.js → v1/tx.js} +18 -5
- package/sparkdream/sparkdream/{tx.registry.d.ts → v1/tx.registry.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.registry.js → v1/tx.registry.js} +4 -4
- package/sparkdream/sparkdream/{tx.rpc.msg.d.ts → v1/tx.rpc.msg.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +2 -2
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +20 -20
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +20 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
- package/cosmos/orm/module/v1alpha1/module.js +0 -62
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
- package/cosmos/orm/query/v1alpha1/query.js +0 -695
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
- package/sparkdream/blog/genesis.d.ts +0 -33
- package/sparkdream/blog/module/module.d.ts +0 -32
- package/sparkdream/sparkdream/module/module.d.ts +0 -32
- /package/sparkdream/blog/{query.lcd.d.ts → v1/query.lcd.d.ts} +0 -0
- /package/sparkdream/sparkdream/{query.lcd.d.ts → v1/query.lcd.d.ts} +0 -0
package/cosmos/circuit/v1/tx.js
CHANGED
|
@@ -11,6 +11,12 @@ function createBaseMsgAuthorizeCircuitBreaker() {
|
|
|
11
11
|
permissions: undefined
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* MsgAuthorizeCircuitBreaker defines the Msg/AuthorizeCircuitBreaker request type.
|
|
16
|
+
* @name MsgAuthorizeCircuitBreaker
|
|
17
|
+
* @package cosmos.circuit.v1
|
|
18
|
+
* @see proto type: cosmos.circuit.v1.MsgAuthorizeCircuitBreaker
|
|
19
|
+
*/
|
|
14
20
|
exports.MsgAuthorizeCircuitBreaker = {
|
|
15
21
|
typeUrl: "/cosmos.circuit.v1.MsgAuthorizeCircuitBreaker",
|
|
16
22
|
aminoType: "cosmos-sdk/MsgAuthorizeCircuitBreaker",
|
|
@@ -103,6 +109,12 @@ function createBaseMsgAuthorizeCircuitBreakerResponse() {
|
|
|
103
109
|
success: false
|
|
104
110
|
};
|
|
105
111
|
}
|
|
112
|
+
/**
|
|
113
|
+
* MsgAuthorizeCircuitBreakerResponse defines the Msg/AuthorizeCircuitBreaker response type.
|
|
114
|
+
* @name MsgAuthorizeCircuitBreakerResponse
|
|
115
|
+
* @package cosmos.circuit.v1
|
|
116
|
+
* @see proto type: cosmos.circuit.v1.MsgAuthorizeCircuitBreakerResponse
|
|
117
|
+
*/
|
|
106
118
|
exports.MsgAuthorizeCircuitBreakerResponse = {
|
|
107
119
|
typeUrl: "/cosmos.circuit.v1.MsgAuthorizeCircuitBreakerResponse",
|
|
108
120
|
aminoType: "cosmos-sdk/MsgAuthorizeCircuitBreakerResponse",
|
|
@@ -174,6 +186,12 @@ function createBaseMsgTripCircuitBreaker() {
|
|
|
174
186
|
msgTypeUrls: []
|
|
175
187
|
};
|
|
176
188
|
}
|
|
189
|
+
/**
|
|
190
|
+
* MsgTripCircuitBreaker defines the Msg/TripCircuitBreaker request type.
|
|
191
|
+
* @name MsgTripCircuitBreaker
|
|
192
|
+
* @package cosmos.circuit.v1
|
|
193
|
+
* @see proto type: cosmos.circuit.v1.MsgTripCircuitBreaker
|
|
194
|
+
*/
|
|
177
195
|
exports.MsgTripCircuitBreaker = {
|
|
178
196
|
typeUrl: "/cosmos.circuit.v1.MsgTripCircuitBreaker",
|
|
179
197
|
aminoType: "cosmos-sdk/MsgTripCircuitBreaker",
|
|
@@ -258,6 +276,12 @@ function createBaseMsgTripCircuitBreakerResponse() {
|
|
|
258
276
|
success: false
|
|
259
277
|
};
|
|
260
278
|
}
|
|
279
|
+
/**
|
|
280
|
+
* MsgTripCircuitBreakerResponse defines the Msg/TripCircuitBreaker response type.
|
|
281
|
+
* @name MsgTripCircuitBreakerResponse
|
|
282
|
+
* @package cosmos.circuit.v1
|
|
283
|
+
* @see proto type: cosmos.circuit.v1.MsgTripCircuitBreakerResponse
|
|
284
|
+
*/
|
|
261
285
|
exports.MsgTripCircuitBreakerResponse = {
|
|
262
286
|
typeUrl: "/cosmos.circuit.v1.MsgTripCircuitBreakerResponse",
|
|
263
287
|
aminoType: "cosmos-sdk/MsgTripCircuitBreakerResponse",
|
|
@@ -329,6 +353,12 @@ function createBaseMsgResetCircuitBreaker() {
|
|
|
329
353
|
msgTypeUrls: []
|
|
330
354
|
};
|
|
331
355
|
}
|
|
356
|
+
/**
|
|
357
|
+
* MsgResetCircuitBreaker defines the Msg/ResetCircuitBreaker request type.
|
|
358
|
+
* @name MsgResetCircuitBreaker
|
|
359
|
+
* @package cosmos.circuit.v1
|
|
360
|
+
* @see proto type: cosmos.circuit.v1.MsgResetCircuitBreaker
|
|
361
|
+
*/
|
|
332
362
|
exports.MsgResetCircuitBreaker = {
|
|
333
363
|
typeUrl: "/cosmos.circuit.v1.MsgResetCircuitBreaker",
|
|
334
364
|
aminoType: "cosmos-sdk/MsgResetCircuitBreaker",
|
|
@@ -413,6 +443,12 @@ function createBaseMsgResetCircuitBreakerResponse() {
|
|
|
413
443
|
success: false
|
|
414
444
|
};
|
|
415
445
|
}
|
|
446
|
+
/**
|
|
447
|
+
* MsgResetCircuitBreakerResponse defines the Msg/ResetCircuitBreaker response type.
|
|
448
|
+
* @name MsgResetCircuitBreakerResponse
|
|
449
|
+
* @package cosmos.circuit.v1
|
|
450
|
+
* @see proto type: cosmos.circuit.v1.MsgResetCircuitBreakerResponse
|
|
451
|
+
*/
|
|
416
452
|
exports.MsgResetCircuitBreakerResponse = {
|
|
417
453
|
typeUrl: "/cosmos.circuit.v1.MsgResetCircuitBreakerResponse",
|
|
418
454
|
aminoType: "cosmos-sdk/MsgResetCircuitBreakerResponse",
|
|
@@ -32,9 +32,14 @@ export declare function permissions_LevelToJSON(object: Permissions_Level): stri
|
|
|
32
32
|
/**
|
|
33
33
|
* Permissions are the permissions that an account has to trip
|
|
34
34
|
* or reset the circuit breaker.
|
|
35
|
+
* @name Permissions
|
|
36
|
+
* @package cosmos.circuit.v1
|
|
37
|
+
* @see proto type: cosmos.circuit.v1.Permissions
|
|
35
38
|
*/
|
|
36
39
|
export interface Permissions {
|
|
37
|
-
/**
|
|
40
|
+
/**
|
|
41
|
+
* level is the level of permissions granted to this account.
|
|
42
|
+
*/
|
|
38
43
|
level: Permissions_Level;
|
|
39
44
|
/**
|
|
40
45
|
* limit_type_urls is used with LEVEL_SOME_MSGS to limit the lists of Msg type
|
|
@@ -50,9 +55,14 @@ export interface PermissionsProtoMsg {
|
|
|
50
55
|
/**
|
|
51
56
|
* Permissions are the permissions that an account has to trip
|
|
52
57
|
* or reset the circuit breaker.
|
|
58
|
+
* @name PermissionsAmino
|
|
59
|
+
* @package cosmos.circuit.v1
|
|
60
|
+
* @see proto type: cosmos.circuit.v1.Permissions
|
|
53
61
|
*/
|
|
54
62
|
export interface PermissionsAmino {
|
|
55
|
-
/**
|
|
63
|
+
/**
|
|
64
|
+
* level is the level of permissions granted to this account.
|
|
65
|
+
*/
|
|
56
66
|
level?: Permissions_Level;
|
|
57
67
|
/**
|
|
58
68
|
* limit_type_urls is used with LEVEL_SOME_MSGS to limit the lists of Msg type
|
|
@@ -65,7 +75,12 @@ export interface PermissionsAminoMsg {
|
|
|
65
75
|
type: "cosmos-sdk/Permissions";
|
|
66
76
|
value: PermissionsAmino;
|
|
67
77
|
}
|
|
68
|
-
/**
|
|
78
|
+
/**
|
|
79
|
+
* GenesisAccountPermissions is the account permissions for the circuit breaker in genesis
|
|
80
|
+
* @name GenesisAccountPermissions
|
|
81
|
+
* @package cosmos.circuit.v1
|
|
82
|
+
* @see proto type: cosmos.circuit.v1.GenesisAccountPermissions
|
|
83
|
+
*/
|
|
69
84
|
export interface GenesisAccountPermissions {
|
|
70
85
|
address: string;
|
|
71
86
|
permissions?: Permissions;
|
|
@@ -74,7 +89,12 @@ export interface GenesisAccountPermissionsProtoMsg {
|
|
|
74
89
|
typeUrl: "/cosmos.circuit.v1.GenesisAccountPermissions";
|
|
75
90
|
value: Uint8Array;
|
|
76
91
|
}
|
|
77
|
-
/**
|
|
92
|
+
/**
|
|
93
|
+
* GenesisAccountPermissions is the account permissions for the circuit breaker in genesis
|
|
94
|
+
* @name GenesisAccountPermissionsAmino
|
|
95
|
+
* @package cosmos.circuit.v1
|
|
96
|
+
* @see proto type: cosmos.circuit.v1.GenesisAccountPermissions
|
|
97
|
+
*/
|
|
78
98
|
export interface GenesisAccountPermissionsAmino {
|
|
79
99
|
address?: string;
|
|
80
100
|
permissions?: PermissionsAmino;
|
|
@@ -83,7 +103,12 @@ export interface GenesisAccountPermissionsAminoMsg {
|
|
|
83
103
|
type: "cosmos-sdk/GenesisAccountPermissions";
|
|
84
104
|
value: GenesisAccountPermissionsAmino;
|
|
85
105
|
}
|
|
86
|
-
/**
|
|
106
|
+
/**
|
|
107
|
+
* GenesisState is the state that must be provided at genesis.
|
|
108
|
+
* @name GenesisState
|
|
109
|
+
* @package cosmos.circuit.v1
|
|
110
|
+
* @see proto type: cosmos.circuit.v1.GenesisState
|
|
111
|
+
*/
|
|
87
112
|
export interface GenesisState {
|
|
88
113
|
accountPermissions: GenesisAccountPermissions[];
|
|
89
114
|
disabledTypeUrls: string[];
|
|
@@ -92,7 +117,12 @@ export interface GenesisStateProtoMsg {
|
|
|
92
117
|
typeUrl: "/cosmos.circuit.v1.GenesisState";
|
|
93
118
|
value: Uint8Array;
|
|
94
119
|
}
|
|
95
|
-
/**
|
|
120
|
+
/**
|
|
121
|
+
* GenesisState is the state that must be provided at genesis.
|
|
122
|
+
* @name GenesisStateAmino
|
|
123
|
+
* @package cosmos.circuit.v1
|
|
124
|
+
* @see proto type: cosmos.circuit.v1.GenesisState
|
|
125
|
+
*/
|
|
96
126
|
export interface GenesisStateAmino {
|
|
97
127
|
account_permissions?: GenesisAccountPermissionsAmino[];
|
|
98
128
|
disabled_type_urls?: string[];
|
|
@@ -101,6 +131,13 @@ export interface GenesisStateAminoMsg {
|
|
|
101
131
|
type: "cosmos-sdk/GenesisState";
|
|
102
132
|
value: GenesisStateAmino;
|
|
103
133
|
}
|
|
134
|
+
/**
|
|
135
|
+
* Permissions are the permissions that an account has to trip
|
|
136
|
+
* or reset the circuit breaker.
|
|
137
|
+
* @name Permissions
|
|
138
|
+
* @package cosmos.circuit.v1
|
|
139
|
+
* @see proto type: cosmos.circuit.v1.Permissions
|
|
140
|
+
*/
|
|
104
141
|
export declare const Permissions: {
|
|
105
142
|
typeUrl: string;
|
|
106
143
|
aminoType: string;
|
|
@@ -115,6 +152,12 @@ export declare const Permissions: {
|
|
|
115
152
|
toProto(message: Permissions): Uint8Array;
|
|
116
153
|
toProtoMsg(message: Permissions): PermissionsProtoMsg;
|
|
117
154
|
};
|
|
155
|
+
/**
|
|
156
|
+
* GenesisAccountPermissions is the account permissions for the circuit breaker in genesis
|
|
157
|
+
* @name GenesisAccountPermissions
|
|
158
|
+
* @package cosmos.circuit.v1
|
|
159
|
+
* @see proto type: cosmos.circuit.v1.GenesisAccountPermissions
|
|
160
|
+
*/
|
|
118
161
|
export declare const GenesisAccountPermissions: {
|
|
119
162
|
typeUrl: string;
|
|
120
163
|
aminoType: string;
|
|
@@ -129,6 +172,12 @@ export declare const GenesisAccountPermissions: {
|
|
|
129
172
|
toProto(message: GenesisAccountPermissions): Uint8Array;
|
|
130
173
|
toProtoMsg(message: GenesisAccountPermissions): GenesisAccountPermissionsProtoMsg;
|
|
131
174
|
};
|
|
175
|
+
/**
|
|
176
|
+
* GenesisState is the state that must be provided at genesis.
|
|
177
|
+
* @name GenesisState
|
|
178
|
+
* @package cosmos.circuit.v1
|
|
179
|
+
* @see proto type: cosmos.circuit.v1.GenesisState
|
|
180
|
+
*/
|
|
132
181
|
export declare const GenesisState: {
|
|
133
182
|
typeUrl: string;
|
|
134
183
|
aminoType: string;
|
|
@@ -74,6 +74,13 @@ function createBasePermissions() {
|
|
|
74
74
|
limitTypeUrls: []
|
|
75
75
|
};
|
|
76
76
|
}
|
|
77
|
+
/**
|
|
78
|
+
* Permissions are the permissions that an account has to trip
|
|
79
|
+
* or reset the circuit breaker.
|
|
80
|
+
* @name Permissions
|
|
81
|
+
* @package cosmos.circuit.v1
|
|
82
|
+
* @see proto type: cosmos.circuit.v1.Permissions
|
|
83
|
+
*/
|
|
77
84
|
exports.Permissions = {
|
|
78
85
|
typeUrl: "/cosmos.circuit.v1.Permissions",
|
|
79
86
|
aminoType: "cosmos-sdk/Permissions",
|
|
@@ -159,6 +166,12 @@ function createBaseGenesisAccountPermissions() {
|
|
|
159
166
|
permissions: undefined
|
|
160
167
|
};
|
|
161
168
|
}
|
|
169
|
+
/**
|
|
170
|
+
* GenesisAccountPermissions is the account permissions for the circuit breaker in genesis
|
|
171
|
+
* @name GenesisAccountPermissions
|
|
172
|
+
* @package cosmos.circuit.v1
|
|
173
|
+
* @see proto type: cosmos.circuit.v1.GenesisAccountPermissions
|
|
174
|
+
*/
|
|
162
175
|
exports.GenesisAccountPermissions = {
|
|
163
176
|
typeUrl: "/cosmos.circuit.v1.GenesisAccountPermissions",
|
|
164
177
|
aminoType: "cosmos-sdk/GenesisAccountPermissions",
|
|
@@ -241,6 +254,12 @@ function createBaseGenesisState() {
|
|
|
241
254
|
disabledTypeUrls: []
|
|
242
255
|
};
|
|
243
256
|
}
|
|
257
|
+
/**
|
|
258
|
+
* GenesisState is the state that must be provided at genesis.
|
|
259
|
+
* @name GenesisState
|
|
260
|
+
* @package cosmos.circuit.v1
|
|
261
|
+
* @see proto type: cosmos.circuit.v1.GenesisState
|
|
262
|
+
*/
|
|
244
263
|
exports.GenesisState = {
|
|
245
264
|
typeUrl: "/cosmos.circuit.v1.GenesisState",
|
|
246
265
|
aminoType: "cosmos-sdk/GenesisState",
|
|
@@ -1,23 +1,43 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
2
2
|
import { DeepPartial } from "../../../../helpers";
|
|
3
|
-
/**
|
|
3
|
+
/**
|
|
4
|
+
* Module is the config object of the consensus module.
|
|
5
|
+
* @name Module
|
|
6
|
+
* @package cosmos.consensus.module.v1
|
|
7
|
+
* @see proto type: cosmos.consensus.module.v1.Module
|
|
8
|
+
*/
|
|
4
9
|
export interface Module {
|
|
5
|
-
/**
|
|
10
|
+
/**
|
|
11
|
+
* authority defines the custom module authority. If not set, defaults to the governance module.
|
|
12
|
+
*/
|
|
6
13
|
authority: string;
|
|
7
14
|
}
|
|
8
15
|
export interface ModuleProtoMsg {
|
|
9
16
|
typeUrl: "/cosmos.consensus.module.v1.Module";
|
|
10
17
|
value: Uint8Array;
|
|
11
18
|
}
|
|
12
|
-
/**
|
|
19
|
+
/**
|
|
20
|
+
* Module is the config object of the consensus module.
|
|
21
|
+
* @name ModuleAmino
|
|
22
|
+
* @package cosmos.consensus.module.v1
|
|
23
|
+
* @see proto type: cosmos.consensus.module.v1.Module
|
|
24
|
+
*/
|
|
13
25
|
export interface ModuleAmino {
|
|
14
|
-
/**
|
|
26
|
+
/**
|
|
27
|
+
* authority defines the custom module authority. If not set, defaults to the governance module.
|
|
28
|
+
*/
|
|
15
29
|
authority?: string;
|
|
16
30
|
}
|
|
17
31
|
export interface ModuleAminoMsg {
|
|
18
32
|
type: "cosmos-sdk/Module";
|
|
19
33
|
value: ModuleAmino;
|
|
20
34
|
}
|
|
35
|
+
/**
|
|
36
|
+
* Module is the config object of the consensus module.
|
|
37
|
+
* @name Module
|
|
38
|
+
* @package cosmos.consensus.module.v1
|
|
39
|
+
* @see proto type: cosmos.consensus.module.v1.Module
|
|
40
|
+
*/
|
|
21
41
|
export declare const Module: {
|
|
22
42
|
typeUrl: string;
|
|
23
43
|
aminoType: string;
|
|
@@ -8,6 +8,12 @@ function createBaseModule() {
|
|
|
8
8
|
authority: ""
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* Module is the config object of the consensus module.
|
|
13
|
+
* @name Module
|
|
14
|
+
* @package cosmos.consensus.module.v1
|
|
15
|
+
* @see proto type: cosmos.consensus.module.v1.Module
|
|
16
|
+
*/
|
|
11
17
|
exports.Module = {
|
|
12
18
|
typeUrl: "/cosmos.consensus.module.v1.Module",
|
|
13
19
|
aminoType: "cosmos-sdk/Module",
|
|
@@ -1,21 +1,36 @@
|
|
|
1
1
|
import { ConsensusParams, ConsensusParamsAmino } from "../../../tendermint/types/params";
|
|
2
2
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
3
|
import { DeepPartial } from "../../../helpers";
|
|
4
|
-
/**
|
|
4
|
+
/**
|
|
5
|
+
* QueryParamsRequest defines the request type for querying x/consensus parameters.
|
|
6
|
+
* @name QueryParamsRequest
|
|
7
|
+
* @package cosmos.consensus.v1
|
|
8
|
+
* @see proto type: cosmos.consensus.v1.QueryParamsRequest
|
|
9
|
+
*/
|
|
5
10
|
export interface QueryParamsRequest {
|
|
6
11
|
}
|
|
7
12
|
export interface QueryParamsRequestProtoMsg {
|
|
8
13
|
typeUrl: "/cosmos.consensus.v1.QueryParamsRequest";
|
|
9
14
|
value: Uint8Array;
|
|
10
15
|
}
|
|
11
|
-
/**
|
|
16
|
+
/**
|
|
17
|
+
* QueryParamsRequest defines the request type for querying x/consensus parameters.
|
|
18
|
+
* @name QueryParamsRequestAmino
|
|
19
|
+
* @package cosmos.consensus.v1
|
|
20
|
+
* @see proto type: cosmos.consensus.v1.QueryParamsRequest
|
|
21
|
+
*/
|
|
12
22
|
export interface QueryParamsRequestAmino {
|
|
13
23
|
}
|
|
14
24
|
export interface QueryParamsRequestAminoMsg {
|
|
15
25
|
type: "cosmos-sdk/QueryParamsRequest";
|
|
16
26
|
value: QueryParamsRequestAmino;
|
|
17
27
|
}
|
|
18
|
-
/**
|
|
28
|
+
/**
|
|
29
|
+
* QueryParamsResponse defines the response type for querying x/consensus parameters.
|
|
30
|
+
* @name QueryParamsResponse
|
|
31
|
+
* @package cosmos.consensus.v1
|
|
32
|
+
* @see proto type: cosmos.consensus.v1.QueryParamsResponse
|
|
33
|
+
*/
|
|
19
34
|
export interface QueryParamsResponse {
|
|
20
35
|
/**
|
|
21
36
|
* params are the tendermint consensus params stored in the consensus module.
|
|
@@ -28,7 +43,12 @@ export interface QueryParamsResponseProtoMsg {
|
|
|
28
43
|
typeUrl: "/cosmos.consensus.v1.QueryParamsResponse";
|
|
29
44
|
value: Uint8Array;
|
|
30
45
|
}
|
|
31
|
-
/**
|
|
46
|
+
/**
|
|
47
|
+
* QueryParamsResponse defines the response type for querying x/consensus parameters.
|
|
48
|
+
* @name QueryParamsResponseAmino
|
|
49
|
+
* @package cosmos.consensus.v1
|
|
50
|
+
* @see proto type: cosmos.consensus.v1.QueryParamsResponse
|
|
51
|
+
*/
|
|
32
52
|
export interface QueryParamsResponseAmino {
|
|
33
53
|
/**
|
|
34
54
|
* params are the tendermint consensus params stored in the consensus module.
|
|
@@ -41,6 +61,12 @@ export interface QueryParamsResponseAminoMsg {
|
|
|
41
61
|
type: "cosmos-sdk/QueryParamsResponse";
|
|
42
62
|
value: QueryParamsResponseAmino;
|
|
43
63
|
}
|
|
64
|
+
/**
|
|
65
|
+
* QueryParamsRequest defines the request type for querying x/consensus parameters.
|
|
66
|
+
* @name QueryParamsRequest
|
|
67
|
+
* @package cosmos.consensus.v1
|
|
68
|
+
* @see proto type: cosmos.consensus.v1.QueryParamsRequest
|
|
69
|
+
*/
|
|
44
70
|
export declare const QueryParamsRequest: {
|
|
45
71
|
typeUrl: string;
|
|
46
72
|
aminoType: string;
|
|
@@ -55,6 +81,12 @@ export declare const QueryParamsRequest: {
|
|
|
55
81
|
toProto(message: QueryParamsRequest): Uint8Array;
|
|
56
82
|
toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
|
|
57
83
|
};
|
|
84
|
+
/**
|
|
85
|
+
* QueryParamsResponse defines the response type for querying x/consensus parameters.
|
|
86
|
+
* @name QueryParamsResponse
|
|
87
|
+
* @package cosmos.consensus.v1
|
|
88
|
+
* @see proto type: cosmos.consensus.v1.QueryParamsResponse
|
|
89
|
+
*/
|
|
58
90
|
export declare const QueryParamsResponse: {
|
|
59
91
|
typeUrl: string;
|
|
60
92
|
aminoType: string;
|
|
@@ -7,6 +7,12 @@ const binary_1 = require("../../../binary");
|
|
|
7
7
|
function createBaseQueryParamsRequest() {
|
|
8
8
|
return {};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* QueryParamsRequest defines the request type for querying x/consensus parameters.
|
|
12
|
+
* @name QueryParamsRequest
|
|
13
|
+
* @package cosmos.consensus.v1
|
|
14
|
+
* @see proto type: cosmos.consensus.v1.QueryParamsRequest
|
|
15
|
+
*/
|
|
10
16
|
exports.QueryParamsRequest = {
|
|
11
17
|
typeUrl: "/cosmos.consensus.v1.QueryParamsRequest",
|
|
12
18
|
aminoType: "cosmos-sdk/QueryParamsRequest",
|
|
@@ -66,6 +72,12 @@ function createBaseQueryParamsResponse() {
|
|
|
66
72
|
params: undefined
|
|
67
73
|
};
|
|
68
74
|
}
|
|
75
|
+
/**
|
|
76
|
+
* QueryParamsResponse defines the response type for querying x/consensus parameters.
|
|
77
|
+
* @name QueryParamsResponse
|
|
78
|
+
* @package cosmos.consensus.v1
|
|
79
|
+
* @see proto type: cosmos.consensus.v1.QueryParamsResponse
|
|
80
|
+
*/
|
|
69
81
|
exports.QueryParamsResponse = {
|
|
70
82
|
typeUrl: "/cosmos.consensus.v1.QueryParamsResponse",
|
|
71
83
|
aminoType: "cosmos-sdk/QueryParamsResponse",
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import { BlockParams, BlockParamsAmino, EvidenceParams, EvidenceParamsAmino, ValidatorParams, ValidatorParamsAmino, ABCIParams, ABCIParamsAmino } from "../../../tendermint/types/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 cosmos.consensus.v1
|
|
8
|
+
* @see proto type: cosmos.consensus.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
|
/**
|
|
9
16
|
* params defines the x/consensus parameters to update.
|
|
@@ -15,16 +22,22 @@ export interface MsgUpdateParams {
|
|
|
15
22
|
block?: BlockParams;
|
|
16
23
|
evidence?: EvidenceParams;
|
|
17
24
|
validator?: ValidatorParams;
|
|
18
|
-
/** Since: cosmos-sdk 0.50 */
|
|
19
25
|
abci?: ABCIParams;
|
|
20
26
|
}
|
|
21
27
|
export interface MsgUpdateParamsProtoMsg {
|
|
22
28
|
typeUrl: "/cosmos.consensus.v1.MsgUpdateParams";
|
|
23
29
|
value: Uint8Array;
|
|
24
30
|
}
|
|
25
|
-
/**
|
|
31
|
+
/**
|
|
32
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
33
|
+
* @name MsgUpdateParamsAmino
|
|
34
|
+
* @package cosmos.consensus.v1
|
|
35
|
+
* @see proto type: cosmos.consensus.v1.MsgUpdateParams
|
|
36
|
+
*/
|
|
26
37
|
export interface MsgUpdateParamsAmino {
|
|
27
|
-
/**
|
|
38
|
+
/**
|
|
39
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
40
|
+
*/
|
|
28
41
|
authority?: string;
|
|
29
42
|
/**
|
|
30
43
|
* params defines the x/consensus parameters to update.
|
|
@@ -36,7 +49,6 @@ export interface MsgUpdateParamsAmino {
|
|
|
36
49
|
block?: BlockParamsAmino;
|
|
37
50
|
evidence?: EvidenceParamsAmino;
|
|
38
51
|
validator?: ValidatorParamsAmino;
|
|
39
|
-
/** Since: cosmos-sdk 0.50 */
|
|
40
52
|
abci?: ABCIParamsAmino;
|
|
41
53
|
}
|
|
42
54
|
export interface MsgUpdateParamsAminoMsg {
|
|
@@ -46,6 +58,9 @@ export interface MsgUpdateParamsAminoMsg {
|
|
|
46
58
|
/**
|
|
47
59
|
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
48
60
|
* MsgUpdateParams message.
|
|
61
|
+
* @name MsgUpdateParamsResponse
|
|
62
|
+
* @package cosmos.consensus.v1
|
|
63
|
+
* @see proto type: cosmos.consensus.v1.MsgUpdateParamsResponse
|
|
49
64
|
*/
|
|
50
65
|
export interface MsgUpdateParamsResponse {
|
|
51
66
|
}
|
|
@@ -56,6 +71,9 @@ export interface MsgUpdateParamsResponseProtoMsg {
|
|
|
56
71
|
/**
|
|
57
72
|
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
58
73
|
* MsgUpdateParams message.
|
|
74
|
+
* @name MsgUpdateParamsResponseAmino
|
|
75
|
+
* @package cosmos.consensus.v1
|
|
76
|
+
* @see proto type: cosmos.consensus.v1.MsgUpdateParamsResponse
|
|
59
77
|
*/
|
|
60
78
|
export interface MsgUpdateParamsResponseAmino {
|
|
61
79
|
}
|
|
@@ -63,6 +81,12 @@ export interface MsgUpdateParamsResponseAminoMsg {
|
|
|
63
81
|
type: "cosmos-sdk/MsgUpdateParamsResponse";
|
|
64
82
|
value: MsgUpdateParamsResponseAmino;
|
|
65
83
|
}
|
|
84
|
+
/**
|
|
85
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
86
|
+
* @name MsgUpdateParams
|
|
87
|
+
* @package cosmos.consensus.v1
|
|
88
|
+
* @see proto type: cosmos.consensus.v1.MsgUpdateParams
|
|
89
|
+
*/
|
|
66
90
|
export declare const MsgUpdateParams: {
|
|
67
91
|
typeUrl: string;
|
|
68
92
|
aminoType: string;
|
|
@@ -77,6 +101,13 @@ export declare const MsgUpdateParams: {
|
|
|
77
101
|
toProto(message: MsgUpdateParams): Uint8Array;
|
|
78
102
|
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
79
103
|
};
|
|
104
|
+
/**
|
|
105
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
106
|
+
* MsgUpdateParams message.
|
|
107
|
+
* @name MsgUpdateParamsResponse
|
|
108
|
+
* @package cosmos.consensus.v1
|
|
109
|
+
* @see proto type: cosmos.consensus.v1.MsgUpdateParamsResponse
|
|
110
|
+
*/
|
|
80
111
|
export declare const MsgUpdateParamsResponse: {
|
|
81
112
|
typeUrl: string;
|
|
82
113
|
aminoType: string;
|
|
@@ -13,6 +13,12 @@ function createBaseMsgUpdateParams() {
|
|
|
13
13
|
abci: undefined
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
18
|
+
* @name MsgUpdateParams
|
|
19
|
+
* @package cosmos.consensus.v1
|
|
20
|
+
* @see proto type: cosmos.consensus.v1.MsgUpdateParams
|
|
21
|
+
*/
|
|
16
22
|
exports.MsgUpdateParams = {
|
|
17
23
|
typeUrl: "/cosmos.consensus.v1.MsgUpdateParams",
|
|
18
24
|
aminoType: "cosmos-sdk/x/consensus/MsgUpdateParams",
|
|
@@ -125,6 +131,13 @@ exports.MsgUpdateParams = {
|
|
|
125
131
|
function createBaseMsgUpdateParamsResponse() {
|
|
126
132
|
return {};
|
|
127
133
|
}
|
|
134
|
+
/**
|
|
135
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
136
|
+
* MsgUpdateParams message.
|
|
137
|
+
* @name MsgUpdateParamsResponse
|
|
138
|
+
* @package cosmos.consensus.v1
|
|
139
|
+
* @see proto type: cosmos.consensus.v1.MsgUpdateParamsResponse
|
|
140
|
+
*/
|
|
128
141
|
exports.MsgUpdateParamsResponse = {
|
|
129
142
|
typeUrl: "/cosmos.consensus.v1.MsgUpdateParamsResponse",
|
|
130
143
|
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|
|
@@ -5,8 +5,6 @@ export interface Msg {
|
|
|
5
5
|
/**
|
|
6
6
|
* UpdateParams defines a governance operation for updating the x/consensus module parameters.
|
|
7
7
|
* The authority is defined in the keeper.
|
|
8
|
-
*
|
|
9
|
-
* Since: cosmos-sdk 0.47
|
|
10
8
|
*/
|
|
11
9
|
updateParams(request: MsgUpdateParams): Promise<MsgUpdateParamsResponse>;
|
|
12
10
|
}
|
|
@@ -9,9 +9,7 @@ class MsgClientImpl {
|
|
|
9
9
|
this.rpc = rpc;
|
|
10
10
|
}
|
|
11
11
|
/* UpdateParams defines a governance operation for updating the x/consensus module parameters.
|
|
12
|
-
The authority is defined in the keeper.
|
|
13
|
-
|
|
14
|
-
Since: cosmos-sdk 0.47 */
|
|
12
|
+
The authority is defined in the keeper. */
|
|
15
13
|
updateParams = async (request) => {
|
|
16
14
|
const data = tx_1.MsgUpdateParams.encode(request).finish();
|
|
17
15
|
const promise = this.rpc.request("cosmos.consensus.v1.Msg", "UpdateParams", data);
|
|
@@ -1,23 +1,43 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
2
2
|
import { DeepPartial } from "../../../../helpers";
|
|
3
|
-
/**
|
|
3
|
+
/**
|
|
4
|
+
* Module is the config object of the counter module.
|
|
5
|
+
* @name Module
|
|
6
|
+
* @package cosmos.counter.module.v1
|
|
7
|
+
* @see proto type: cosmos.counter.module.v1.Module
|
|
8
|
+
*/
|
|
4
9
|
export interface Module {
|
|
5
|
-
/**
|
|
10
|
+
/**
|
|
11
|
+
* authority defines the custom module authority. If not set, defaults to the governance module.
|
|
12
|
+
*/
|
|
6
13
|
authority: string;
|
|
7
14
|
}
|
|
8
15
|
export interface ModuleProtoMsg {
|
|
9
16
|
typeUrl: "/cosmos.counter.module.v1.Module";
|
|
10
17
|
value: Uint8Array;
|
|
11
18
|
}
|
|
12
|
-
/**
|
|
19
|
+
/**
|
|
20
|
+
* Module is the config object of the counter module.
|
|
21
|
+
* @name ModuleAmino
|
|
22
|
+
* @package cosmos.counter.module.v1
|
|
23
|
+
* @see proto type: cosmos.counter.module.v1.Module
|
|
24
|
+
*/
|
|
13
25
|
export interface ModuleAmino {
|
|
14
|
-
/**
|
|
26
|
+
/**
|
|
27
|
+
* authority defines the custom module authority. If not set, defaults to the governance module.
|
|
28
|
+
*/
|
|
15
29
|
authority?: string;
|
|
16
30
|
}
|
|
17
31
|
export interface ModuleAminoMsg {
|
|
18
32
|
type: "cosmos-sdk/Module";
|
|
19
33
|
value: ModuleAmino;
|
|
20
34
|
}
|
|
35
|
+
/**
|
|
36
|
+
* Module is the config object of the counter module.
|
|
37
|
+
* @name Module
|
|
38
|
+
* @package cosmos.counter.module.v1
|
|
39
|
+
* @see proto type: cosmos.counter.module.v1.Module
|
|
40
|
+
*/
|
|
21
41
|
export declare const Module: {
|
|
22
42
|
typeUrl: string;
|
|
23
43
|
aminoType: string;
|
|
@@ -8,6 +8,12 @@ function createBaseModule() {
|
|
|
8
8
|
authority: ""
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* Module is the config object of the counter module.
|
|
13
|
+
* @name Module
|
|
14
|
+
* @package cosmos.counter.module.v1
|
|
15
|
+
* @see proto type: cosmos.counter.module.v1.Module
|
|
16
|
+
*/
|
|
11
17
|
exports.Module = {
|
|
12
18
|
typeUrl: "/cosmos.counter.module.v1.Module",
|
|
13
19
|
aminoType: "cosmos-sdk/Module",
|