@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
|
@@ -63,6 +63,12 @@ function createBasePartSetHeader() {
|
|
|
63
63
|
hash: new Uint8Array()
|
|
64
64
|
};
|
|
65
65
|
}
|
|
66
|
+
/**
|
|
67
|
+
* PartsetHeader
|
|
68
|
+
* @name PartSetHeader
|
|
69
|
+
* @package tendermint.types
|
|
70
|
+
* @see proto type: tendermint.types.PartSetHeader
|
|
71
|
+
*/
|
|
66
72
|
exports.PartSetHeader = {
|
|
67
73
|
typeUrl: "/tendermint.types.PartSetHeader",
|
|
68
74
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -139,6 +145,11 @@ function createBasePart() {
|
|
|
139
145
|
proof: proof_1.Proof.fromPartial({})
|
|
140
146
|
};
|
|
141
147
|
}
|
|
148
|
+
/**
|
|
149
|
+
* @name Part
|
|
150
|
+
* @package tendermint.types
|
|
151
|
+
* @see proto type: tendermint.types.Part
|
|
152
|
+
*/
|
|
142
153
|
exports.Part = {
|
|
143
154
|
typeUrl: "/tendermint.types.Part",
|
|
144
155
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -225,6 +236,12 @@ function createBaseBlockID() {
|
|
|
225
236
|
partSetHeader: exports.PartSetHeader.fromPartial({})
|
|
226
237
|
};
|
|
227
238
|
}
|
|
239
|
+
/**
|
|
240
|
+
* BlockID
|
|
241
|
+
* @name BlockID
|
|
242
|
+
* @package tendermint.types
|
|
243
|
+
* @see proto type: tendermint.types.BlockID
|
|
244
|
+
*/
|
|
228
245
|
exports.BlockID = {
|
|
229
246
|
typeUrl: "/tendermint.types.BlockID",
|
|
230
247
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -312,6 +329,12 @@ function createBaseHeader() {
|
|
|
312
329
|
proposerAddress: new Uint8Array()
|
|
313
330
|
};
|
|
314
331
|
}
|
|
332
|
+
/**
|
|
333
|
+
* Header defines the structure of a block header.
|
|
334
|
+
* @name Header
|
|
335
|
+
* @package tendermint.types
|
|
336
|
+
* @see proto type: tendermint.types.Header
|
|
337
|
+
*/
|
|
315
338
|
exports.Header = {
|
|
316
339
|
typeUrl: "/tendermint.types.Header",
|
|
317
340
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -518,6 +541,12 @@ function createBaseData() {
|
|
|
518
541
|
txs: []
|
|
519
542
|
};
|
|
520
543
|
}
|
|
544
|
+
/**
|
|
545
|
+
* Data contains the set of transactions included in the block
|
|
546
|
+
* @name Data
|
|
547
|
+
* @package tendermint.types
|
|
548
|
+
* @see proto type: tendermint.types.Data
|
|
549
|
+
*/
|
|
521
550
|
exports.Data = {
|
|
522
551
|
typeUrl: "/tendermint.types.Data",
|
|
523
552
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -593,6 +622,13 @@ function createBaseVote() {
|
|
|
593
622
|
extensionSignature: new Uint8Array()
|
|
594
623
|
};
|
|
595
624
|
}
|
|
625
|
+
/**
|
|
626
|
+
* Vote represents a prevote or precommit vote from validators for
|
|
627
|
+
* consensus.
|
|
628
|
+
* @name Vote
|
|
629
|
+
* @package tendermint.types
|
|
630
|
+
* @see proto type: tendermint.types.Vote
|
|
631
|
+
*/
|
|
596
632
|
exports.Vote = {
|
|
597
633
|
typeUrl: "/tendermint.types.Vote",
|
|
598
634
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -758,6 +794,12 @@ function createBaseCommit() {
|
|
|
758
794
|
signatures: []
|
|
759
795
|
};
|
|
760
796
|
}
|
|
797
|
+
/**
|
|
798
|
+
* Commit contains the evidence that a block was committed by a set of validators.
|
|
799
|
+
* @name Commit
|
|
800
|
+
* @package tendermint.types
|
|
801
|
+
* @see proto type: tendermint.types.Commit
|
|
802
|
+
*/
|
|
761
803
|
exports.Commit = {
|
|
762
804
|
typeUrl: "/tendermint.types.Commit",
|
|
763
805
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -860,6 +902,12 @@ function createBaseCommitSig() {
|
|
|
860
902
|
signature: new Uint8Array()
|
|
861
903
|
};
|
|
862
904
|
}
|
|
905
|
+
/**
|
|
906
|
+
* CommitSig is a part of the Vote included in a Commit.
|
|
907
|
+
* @name CommitSig
|
|
908
|
+
* @package tendermint.types
|
|
909
|
+
* @see proto type: tendermint.types.CommitSig
|
|
910
|
+
*/
|
|
863
911
|
exports.CommitSig = {
|
|
864
912
|
typeUrl: "/tendermint.types.CommitSig",
|
|
865
913
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -959,6 +1007,11 @@ function createBaseExtendedCommit() {
|
|
|
959
1007
|
extendedSignatures: []
|
|
960
1008
|
};
|
|
961
1009
|
}
|
|
1010
|
+
/**
|
|
1011
|
+
* @name ExtendedCommit
|
|
1012
|
+
* @package tendermint.types
|
|
1013
|
+
* @see proto type: tendermint.types.ExtendedCommit
|
|
1014
|
+
*/
|
|
962
1015
|
exports.ExtendedCommit = {
|
|
963
1016
|
typeUrl: "/tendermint.types.ExtendedCommit",
|
|
964
1017
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -1063,6 +1116,14 @@ function createBaseExtendedCommitSig() {
|
|
|
1063
1116
|
extensionSignature: new Uint8Array()
|
|
1064
1117
|
};
|
|
1065
1118
|
}
|
|
1119
|
+
/**
|
|
1120
|
+
* ExtendedCommitSig retains all the same fields as CommitSig but adds vote
|
|
1121
|
+
* extension-related fields. We use two signatures to ensure backwards compatibility.
|
|
1122
|
+
* That is the digest of the original signature is still the same in prior versions
|
|
1123
|
+
* @name ExtendedCommitSig
|
|
1124
|
+
* @package tendermint.types
|
|
1125
|
+
* @see proto type: tendermint.types.ExtendedCommitSig
|
|
1126
|
+
*/
|
|
1066
1127
|
exports.ExtendedCommitSig = {
|
|
1067
1128
|
typeUrl: "/tendermint.types.ExtendedCommitSig",
|
|
1068
1129
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -1187,6 +1248,11 @@ function createBaseProposal() {
|
|
|
1187
1248
|
signature: new Uint8Array()
|
|
1188
1249
|
};
|
|
1189
1250
|
}
|
|
1251
|
+
/**
|
|
1252
|
+
* @name Proposal
|
|
1253
|
+
* @package tendermint.types
|
|
1254
|
+
* @see proto type: tendermint.types.Proposal
|
|
1255
|
+
*/
|
|
1190
1256
|
exports.Proposal = {
|
|
1191
1257
|
typeUrl: "/tendermint.types.Proposal",
|
|
1192
1258
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -1317,6 +1383,11 @@ function createBaseSignedHeader() {
|
|
|
1317
1383
|
commit: undefined
|
|
1318
1384
|
};
|
|
1319
1385
|
}
|
|
1386
|
+
/**
|
|
1387
|
+
* @name SignedHeader
|
|
1388
|
+
* @package tendermint.types
|
|
1389
|
+
* @see proto type: tendermint.types.SignedHeader
|
|
1390
|
+
*/
|
|
1320
1391
|
exports.SignedHeader = {
|
|
1321
1392
|
typeUrl: "/tendermint.types.SignedHeader",
|
|
1322
1393
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -1392,6 +1463,11 @@ function createBaseLightBlock() {
|
|
|
1392
1463
|
validatorSet: undefined
|
|
1393
1464
|
};
|
|
1394
1465
|
}
|
|
1466
|
+
/**
|
|
1467
|
+
* @name LightBlock
|
|
1468
|
+
* @package tendermint.types
|
|
1469
|
+
* @see proto type: tendermint.types.LightBlock
|
|
1470
|
+
*/
|
|
1395
1471
|
exports.LightBlock = {
|
|
1396
1472
|
typeUrl: "/tendermint.types.LightBlock",
|
|
1397
1473
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -1469,6 +1545,11 @@ function createBaseBlockMeta() {
|
|
|
1469
1545
|
numTxs: BigInt(0)
|
|
1470
1546
|
};
|
|
1471
1547
|
}
|
|
1548
|
+
/**
|
|
1549
|
+
* @name BlockMeta
|
|
1550
|
+
* @package tendermint.types
|
|
1551
|
+
* @see proto type: tendermint.types.BlockMeta
|
|
1552
|
+
*/
|
|
1472
1553
|
exports.BlockMeta = {
|
|
1473
1554
|
typeUrl: "/tendermint.types.BlockMeta",
|
|
1474
1555
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -1567,6 +1648,12 @@ function createBaseTxProof() {
|
|
|
1567
1648
|
proof: undefined
|
|
1568
1649
|
};
|
|
1569
1650
|
}
|
|
1651
|
+
/**
|
|
1652
|
+
* TxProof represents a Merkle proof of the presence of a transaction in the Merkle tree.
|
|
1653
|
+
* @name TxProof
|
|
1654
|
+
* @package tendermint.types
|
|
1655
|
+
* @see proto type: tendermint.types.TxProof
|
|
1656
|
+
*/
|
|
1570
1657
|
exports.TxProof = {
|
|
1571
1658
|
typeUrl: "/tendermint.types.TxProof",
|
|
1572
1659
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -15,6 +15,11 @@ export declare enum BlockIDFlag {
|
|
|
15
15
|
export declare const BlockIDFlagAmino: typeof BlockIDFlag;
|
|
16
16
|
export declare function blockIDFlagFromJSON(object: any): BlockIDFlag;
|
|
17
17
|
export declare function blockIDFlagToJSON(object: BlockIDFlag): string;
|
|
18
|
+
/**
|
|
19
|
+
* @name ValidatorSet
|
|
20
|
+
* @package tendermint.types
|
|
21
|
+
* @see proto type: tendermint.types.ValidatorSet
|
|
22
|
+
*/
|
|
18
23
|
export interface ValidatorSet {
|
|
19
24
|
validators: Validator[];
|
|
20
25
|
proposer?: Validator;
|
|
@@ -24,6 +29,11 @@ export interface ValidatorSetProtoMsg {
|
|
|
24
29
|
typeUrl: "/tendermint.types.ValidatorSet";
|
|
25
30
|
value: Uint8Array;
|
|
26
31
|
}
|
|
32
|
+
/**
|
|
33
|
+
* @name ValidatorSetAmino
|
|
34
|
+
* @package tendermint.types
|
|
35
|
+
* @see proto type: tendermint.types.ValidatorSet
|
|
36
|
+
*/
|
|
27
37
|
export interface ValidatorSetAmino {
|
|
28
38
|
validators?: ValidatorAmino[];
|
|
29
39
|
proposer?: ValidatorAmino;
|
|
@@ -33,6 +43,11 @@ export interface ValidatorSetAminoMsg {
|
|
|
33
43
|
type: "/tendermint.types.ValidatorSet";
|
|
34
44
|
value: ValidatorSetAmino;
|
|
35
45
|
}
|
|
46
|
+
/**
|
|
47
|
+
* @name Validator
|
|
48
|
+
* @package tendermint.types
|
|
49
|
+
* @see proto type: tendermint.types.Validator
|
|
50
|
+
*/
|
|
36
51
|
export interface Validator {
|
|
37
52
|
address: Uint8Array;
|
|
38
53
|
pubKey: PublicKey;
|
|
@@ -43,6 +58,11 @@ export interface ValidatorProtoMsg {
|
|
|
43
58
|
typeUrl: "/tendermint.types.Validator";
|
|
44
59
|
value: Uint8Array;
|
|
45
60
|
}
|
|
61
|
+
/**
|
|
62
|
+
* @name ValidatorAmino
|
|
63
|
+
* @package tendermint.types
|
|
64
|
+
* @see proto type: tendermint.types.Validator
|
|
65
|
+
*/
|
|
46
66
|
export interface ValidatorAmino {
|
|
47
67
|
address?: string;
|
|
48
68
|
pub_key?: PublicKeyAmino;
|
|
@@ -53,6 +73,11 @@ export interface ValidatorAminoMsg {
|
|
|
53
73
|
type: "/tendermint.types.Validator";
|
|
54
74
|
value: ValidatorAmino;
|
|
55
75
|
}
|
|
76
|
+
/**
|
|
77
|
+
* @name SimpleValidator
|
|
78
|
+
* @package tendermint.types
|
|
79
|
+
* @see proto type: tendermint.types.SimpleValidator
|
|
80
|
+
*/
|
|
56
81
|
export interface SimpleValidator {
|
|
57
82
|
pubKey?: PublicKey;
|
|
58
83
|
votingPower: bigint;
|
|
@@ -61,6 +86,11 @@ export interface SimpleValidatorProtoMsg {
|
|
|
61
86
|
typeUrl: "/tendermint.types.SimpleValidator";
|
|
62
87
|
value: Uint8Array;
|
|
63
88
|
}
|
|
89
|
+
/**
|
|
90
|
+
* @name SimpleValidatorAmino
|
|
91
|
+
* @package tendermint.types
|
|
92
|
+
* @see proto type: tendermint.types.SimpleValidator
|
|
93
|
+
*/
|
|
64
94
|
export interface SimpleValidatorAmino {
|
|
65
95
|
pub_key?: PublicKeyAmino;
|
|
66
96
|
voting_power?: string;
|
|
@@ -69,6 +99,11 @@ export interface SimpleValidatorAminoMsg {
|
|
|
69
99
|
type: "/tendermint.types.SimpleValidator";
|
|
70
100
|
value: SimpleValidatorAmino;
|
|
71
101
|
}
|
|
102
|
+
/**
|
|
103
|
+
* @name ValidatorSet
|
|
104
|
+
* @package tendermint.types
|
|
105
|
+
* @see proto type: tendermint.types.ValidatorSet
|
|
106
|
+
*/
|
|
72
107
|
export declare const ValidatorSet: {
|
|
73
108
|
typeUrl: string;
|
|
74
109
|
encode(message: ValidatorSet, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -81,6 +116,11 @@ export declare const ValidatorSet: {
|
|
|
81
116
|
toProto(message: ValidatorSet): Uint8Array;
|
|
82
117
|
toProtoMsg(message: ValidatorSet): ValidatorSetProtoMsg;
|
|
83
118
|
};
|
|
119
|
+
/**
|
|
120
|
+
* @name Validator
|
|
121
|
+
* @package tendermint.types
|
|
122
|
+
* @see proto type: tendermint.types.Validator
|
|
123
|
+
*/
|
|
84
124
|
export declare const Validator: {
|
|
85
125
|
typeUrl: string;
|
|
86
126
|
encode(message: Validator, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -93,6 +133,11 @@ export declare const Validator: {
|
|
|
93
133
|
toProto(message: Validator): Uint8Array;
|
|
94
134
|
toProtoMsg(message: Validator): ValidatorProtoMsg;
|
|
95
135
|
};
|
|
136
|
+
/**
|
|
137
|
+
* @name SimpleValidator
|
|
138
|
+
* @package tendermint.types
|
|
139
|
+
* @see proto type: tendermint.types.SimpleValidator
|
|
140
|
+
*/
|
|
96
141
|
export declare const SimpleValidator: {
|
|
97
142
|
typeUrl: string;
|
|
98
143
|
encode(message: SimpleValidator, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -62,6 +62,11 @@ function createBaseValidatorSet() {
|
|
|
62
62
|
totalVotingPower: BigInt(0)
|
|
63
63
|
};
|
|
64
64
|
}
|
|
65
|
+
/**
|
|
66
|
+
* @name ValidatorSet
|
|
67
|
+
* @package tendermint.types
|
|
68
|
+
* @see proto type: tendermint.types.ValidatorSet
|
|
69
|
+
*/
|
|
65
70
|
exports.ValidatorSet = {
|
|
66
71
|
typeUrl: "/tendermint.types.ValidatorSet",
|
|
67
72
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -153,6 +158,11 @@ function createBaseValidator() {
|
|
|
153
158
|
proposerPriority: BigInt(0)
|
|
154
159
|
};
|
|
155
160
|
}
|
|
161
|
+
/**
|
|
162
|
+
* @name Validator
|
|
163
|
+
* @package tendermint.types
|
|
164
|
+
* @see proto type: tendermint.types.Validator
|
|
165
|
+
*/
|
|
156
166
|
exports.Validator = {
|
|
157
167
|
typeUrl: "/tendermint.types.Validator",
|
|
158
168
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -250,6 +260,11 @@ function createBaseSimpleValidator() {
|
|
|
250
260
|
votingPower: BigInt(0)
|
|
251
261
|
};
|
|
252
262
|
}
|
|
263
|
+
/**
|
|
264
|
+
* @name SimpleValidator
|
|
265
|
+
* @package tendermint.types
|
|
266
|
+
* @see proto type: tendermint.types.SimpleValidator
|
|
267
|
+
*/
|
|
253
268
|
exports.SimpleValidator = {
|
|
254
269
|
typeUrl: "/tendermint.types.SimpleValidator",
|
|
255
270
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -4,6 +4,9 @@ import { DeepPartial } from "../../helpers";
|
|
|
4
4
|
* App includes the protocol and software version for the application.
|
|
5
5
|
* This information is included in ResponseInfo. The App.Protocol can be
|
|
6
6
|
* updated in ResponseEndBlock.
|
|
7
|
+
* @name App
|
|
8
|
+
* @package tendermint.version
|
|
9
|
+
* @see proto type: tendermint.version.App
|
|
7
10
|
*/
|
|
8
11
|
export interface App {
|
|
9
12
|
protocol: bigint;
|
|
@@ -17,6 +20,9 @@ export interface AppProtoMsg {
|
|
|
17
20
|
* App includes the protocol and software version for the application.
|
|
18
21
|
* This information is included in ResponseInfo. The App.Protocol can be
|
|
19
22
|
* updated in ResponseEndBlock.
|
|
23
|
+
* @name AppAmino
|
|
24
|
+
* @package tendermint.version
|
|
25
|
+
* @see proto type: tendermint.version.App
|
|
20
26
|
*/
|
|
21
27
|
export interface AppAmino {
|
|
22
28
|
protocol?: string;
|
|
@@ -30,6 +36,9 @@ export interface AppAminoMsg {
|
|
|
30
36
|
* Consensus captures the consensus rules for processing a block in the blockchain,
|
|
31
37
|
* including all blockchain data structures and the rules of the application's
|
|
32
38
|
* state transition machine.
|
|
39
|
+
* @name Consensus
|
|
40
|
+
* @package tendermint.version
|
|
41
|
+
* @see proto type: tendermint.version.Consensus
|
|
33
42
|
*/
|
|
34
43
|
export interface Consensus {
|
|
35
44
|
block: bigint;
|
|
@@ -43,6 +52,9 @@ export interface ConsensusProtoMsg {
|
|
|
43
52
|
* Consensus captures the consensus rules for processing a block in the blockchain,
|
|
44
53
|
* including all blockchain data structures and the rules of the application's
|
|
45
54
|
* state transition machine.
|
|
55
|
+
* @name ConsensusAmino
|
|
56
|
+
* @package tendermint.version
|
|
57
|
+
* @see proto type: tendermint.version.Consensus
|
|
46
58
|
*/
|
|
47
59
|
export interface ConsensusAmino {
|
|
48
60
|
block?: string;
|
|
@@ -52,6 +64,14 @@ export interface ConsensusAminoMsg {
|
|
|
52
64
|
type: "/tendermint.version.Consensus";
|
|
53
65
|
value: ConsensusAmino;
|
|
54
66
|
}
|
|
67
|
+
/**
|
|
68
|
+
* App includes the protocol and software version for the application.
|
|
69
|
+
* This information is included in ResponseInfo. The App.Protocol can be
|
|
70
|
+
* updated in ResponseEndBlock.
|
|
71
|
+
* @name App
|
|
72
|
+
* @package tendermint.version
|
|
73
|
+
* @see proto type: tendermint.version.App
|
|
74
|
+
*/
|
|
55
75
|
export declare const App: {
|
|
56
76
|
typeUrl: string;
|
|
57
77
|
encode(message: App, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -64,6 +84,14 @@ export declare const App: {
|
|
|
64
84
|
toProto(message: App): Uint8Array;
|
|
65
85
|
toProtoMsg(message: App): AppProtoMsg;
|
|
66
86
|
};
|
|
87
|
+
/**
|
|
88
|
+
* Consensus captures the consensus rules for processing a block in the blockchain,
|
|
89
|
+
* including all blockchain data structures and the rules of the application's
|
|
90
|
+
* state transition machine.
|
|
91
|
+
* @name Consensus
|
|
92
|
+
* @package tendermint.version
|
|
93
|
+
* @see proto type: tendermint.version.Consensus
|
|
94
|
+
*/
|
|
67
95
|
export declare const Consensus: {
|
|
68
96
|
typeUrl: string;
|
|
69
97
|
encode(message: Consensus, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -9,6 +9,14 @@ function createBaseApp() {
|
|
|
9
9
|
software: ""
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* App includes the protocol and software version for the application.
|
|
14
|
+
* This information is included in ResponseInfo. The App.Protocol can be
|
|
15
|
+
* updated in ResponseEndBlock.
|
|
16
|
+
* @name App
|
|
17
|
+
* @package tendermint.version
|
|
18
|
+
* @see proto type: tendermint.version.App
|
|
19
|
+
*/
|
|
12
20
|
exports.App = {
|
|
13
21
|
typeUrl: "/tendermint.version.App",
|
|
14
22
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
@@ -84,6 +92,14 @@ function createBaseConsensus() {
|
|
|
84
92
|
app: BigInt(0)
|
|
85
93
|
};
|
|
86
94
|
}
|
|
95
|
+
/**
|
|
96
|
+
* Consensus captures the consensus rules for processing a block in the blockchain,
|
|
97
|
+
* including all blockchain data structures and the rules of the application's
|
|
98
|
+
* state transition machine.
|
|
99
|
+
* @name Consensus
|
|
100
|
+
* @package tendermint.version
|
|
101
|
+
* @see proto type: tendermint.version.Consensus
|
|
102
|
+
*/
|
|
87
103
|
exports.Consensus = {
|
|
88
104
|
typeUrl: "/tendermint.version.Consensus",
|
|
89
105
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
package/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
2
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.20
|
|
3
3
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
4
4
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
5
5
|
*/
|
package/types.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
//@ts-nocheck
|
|
3
3
|
/**
|
|
4
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
4
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.20
|
|
5
5
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
6
6
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
7
7
|
*/
|
package/utf8.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
2
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.20
|
|
3
3
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
4
4
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
5
5
|
*/
|
package/utf8.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
|
*/
|
package/varint.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
2
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.20
|
|
3
3
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
4
4
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
5
5
|
*/
|
package/varint.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
//@ts-nocheck
|
|
3
3
|
/**
|
|
4
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
4
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.20
|
|
5
5
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
6
6
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
7
7
|
*/
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
2
|
-
import { DeepPartial } from "../../../../helpers";
|
|
3
|
-
/**
|
|
4
|
-
* Module defines the ORM module which adds providers to the app container for
|
|
5
|
-
* ORM ModuleDB's and in the future will automatically register query
|
|
6
|
-
* services for modules that use the ORM.
|
|
7
|
-
*/
|
|
8
|
-
export interface Module {
|
|
9
|
-
}
|
|
10
|
-
export interface ModuleProtoMsg {
|
|
11
|
-
typeUrl: "/cosmos.orm.module.v1alpha1.Module";
|
|
12
|
-
value: Uint8Array;
|
|
13
|
-
}
|
|
14
|
-
/**
|
|
15
|
-
* Module defines the ORM module which adds providers to the app container for
|
|
16
|
-
* ORM ModuleDB's and in the future will automatically register query
|
|
17
|
-
* services for modules that use the ORM.
|
|
18
|
-
*/
|
|
19
|
-
export interface ModuleAmino {
|
|
20
|
-
}
|
|
21
|
-
export interface ModuleAminoMsg {
|
|
22
|
-
type: "cosmos-sdk/Module";
|
|
23
|
-
value: ModuleAmino;
|
|
24
|
-
}
|
|
25
|
-
export declare const Module: {
|
|
26
|
-
typeUrl: string;
|
|
27
|
-
aminoType: string;
|
|
28
|
-
encode(_: Module, writer?: BinaryWriter): BinaryWriter;
|
|
29
|
-
decode(input: BinaryReader | Uint8Array, length?: number): Module;
|
|
30
|
-
fromPartial(_: DeepPartial<Module>): Module;
|
|
31
|
-
fromAmino(_: ModuleAmino): Module;
|
|
32
|
-
toAmino(_: Module): ModuleAmino;
|
|
33
|
-
fromAminoMsg(object: ModuleAminoMsg): Module;
|
|
34
|
-
toAminoMsg(message: Module): ModuleAminoMsg;
|
|
35
|
-
fromProtoMsg(message: ModuleProtoMsg): Module;
|
|
36
|
-
toProto(message: Module): Uint8Array;
|
|
37
|
-
toProtoMsg(message: Module): ModuleProtoMsg;
|
|
38
|
-
};
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Module = void 0;
|
|
4
|
-
//@ts-nocheck
|
|
5
|
-
const binary_1 = require("../../../../binary");
|
|
6
|
-
function createBaseModule() {
|
|
7
|
-
return {};
|
|
8
|
-
}
|
|
9
|
-
exports.Module = {
|
|
10
|
-
typeUrl: "/cosmos.orm.module.v1alpha1.Module",
|
|
11
|
-
aminoType: "cosmos-sdk/Module",
|
|
12
|
-
encode(_, writer = binary_1.BinaryWriter.create()) {
|
|
13
|
-
return writer;
|
|
14
|
-
},
|
|
15
|
-
decode(input, length) {
|
|
16
|
-
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input);
|
|
17
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
18
|
-
const message = createBaseModule();
|
|
19
|
-
while (reader.pos < end) {
|
|
20
|
-
const tag = reader.uint32();
|
|
21
|
-
switch (tag >>> 3) {
|
|
22
|
-
default:
|
|
23
|
-
reader.skipType(tag & 7);
|
|
24
|
-
break;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
return message;
|
|
28
|
-
},
|
|
29
|
-
fromPartial(_) {
|
|
30
|
-
const message = createBaseModule();
|
|
31
|
-
return message;
|
|
32
|
-
},
|
|
33
|
-
fromAmino(_) {
|
|
34
|
-
const message = createBaseModule();
|
|
35
|
-
return message;
|
|
36
|
-
},
|
|
37
|
-
toAmino(_) {
|
|
38
|
-
const obj = {};
|
|
39
|
-
return obj;
|
|
40
|
-
},
|
|
41
|
-
fromAminoMsg(object) {
|
|
42
|
-
return exports.Module.fromAmino(object.value);
|
|
43
|
-
},
|
|
44
|
-
toAminoMsg(message) {
|
|
45
|
-
return {
|
|
46
|
-
type: "cosmos-sdk/Module",
|
|
47
|
-
value: exports.Module.toAmino(message)
|
|
48
|
-
};
|
|
49
|
-
},
|
|
50
|
-
fromProtoMsg(message) {
|
|
51
|
-
return exports.Module.decode(message.value);
|
|
52
|
-
},
|
|
53
|
-
toProto(message) {
|
|
54
|
-
return exports.Module.encode(message).finish();
|
|
55
|
-
},
|
|
56
|
-
toProtoMsg(message) {
|
|
57
|
-
return {
|
|
58
|
-
typeUrl: "/cosmos.orm.module.v1alpha1.Module",
|
|
59
|
-
value: exports.Module.encode(message).finish()
|
|
60
|
-
};
|
|
61
|
-
}
|
|
62
|
-
};
|