@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
- package/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +19 -0
- package/cosmos/auth/module/v1/module.d.ts +72 -12
- package/cosmos/auth/module/v1/module.js +25 -1
- package/cosmos/auth/v1beta1/auth.d.ts +68 -10
- package/cosmos/auth/v1beta1/auth.js +26 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +334 -92
- package/cosmos/auth/v1beta1/query.js +120 -0
- package/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
- package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/cosmos/auth/v1beta1/tx.d.ts +31 -10
- package/cosmos/auth/v1beta1/tx.js +13 -0
- package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +6 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +36 -0
- package/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +13 -8
- package/cosmos/bank/v1beta1/authz.js +7 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -34
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
- package/cosmos/bank/v1beta1/genesis.js +13 -0
- package/cosmos/bank/v1beta1/query.d.ts +599 -138
- package/cosmos/bank/v1beta1/query.js +179 -0
- package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
- package/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
- package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
- package/cosmos/bank/v1beta1/tx.d.ts +143 -30
- package/cosmos/bank/v1beta1/tx.js +53 -0
- package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/benchmark/module/v1/module.d.ts +102 -26
- package/cosmos/benchmark/module/v1/module.js +12 -0
- package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
- package/cosmos/benchmark/v1/benchmark.js +6 -0
- package/cosmos/benchmark/v1/tx.d.ts +36 -4
- package/cosmos/benchmark/v1/tx.js +12 -0
- package/cosmos/bundle.d.ts +2283 -2421
- package/cosmos/bundle.js +242 -261
- package/cosmos/circuit/module/v1/module.d.ts +24 -4
- package/cosmos/circuit/module/v1/module.js +6 -0
- package/cosmos/circuit/v1/query.d.ts +120 -16
- package/cosmos/circuit/v1/query.js +36 -0
- package/cosmos/circuit/v1/tx.d.ts +126 -18
- package/cosmos/circuit/v1/tx.js +36 -0
- package/cosmos/circuit/v1/types.d.ts +55 -6
- package/cosmos/circuit/v1/types.js +19 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +12 -0
- package/cosmos/consensus/v1/tx.d.ts +37 -6
- package/cosmos/consensus/v1/tx.js +13 -0
- package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/cosmos/counter/module/v1/module.d.ts +24 -4
- package/cosmos/counter/module/v1/module.js +6 -0
- package/cosmos/counter/v1/query.d.ts +36 -4
- package/cosmos/counter/v1/query.js +12 -0
- package/cosmos/counter/v1/tx.d.ts +54 -10
- package/cosmos/counter/v1/tx.js +12 -0
- package/cosmos/crisis/module/v1/module.d.ts +30 -6
- package/cosmos/crisis/module/v1/module.js +6 -0
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
- package/cosmos/crypto/hd/v1/hd.js +6 -0
- package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
- package/cosmos/crypto/keyring/v1/record.js +31 -0
- package/cosmos/crypto/multisig/keys.d.ts +14 -0
- package/cosmos/crypto/multisig/keys.js +8 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +136 -0
- package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
- package/cosmos/distribution/v1beta1/tx.js +97 -0
- package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
- package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/cosmos/epochs/module/v1/module.d.ts +18 -2
- package/cosmos/epochs/module/v1/module.js +6 -0
- package/cosmos/epochs/v1beta1/events.d.ts +36 -4
- package/cosmos/epochs/v1beta1/events.js +12 -0
- package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
- package/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/cosmos/epochs/v1beta1/query.d.ts +52 -0
- package/cosmos/epochs/v1beta1/query.js +28 -0
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
- package/cosmos/feegrant/v1beta1/query.js +36 -0
- package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
- package/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/genutil/module/v1/module.d.ts +18 -2
- package/cosmos/genutil/module/v1/module.js +6 -0
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -24
- package/cosmos/gov/v1/genesis.js +6 -0
- package/cosmos/gov/v1/gov.d.ts +341 -124
- package/cosmos/gov/v1/gov.js +59 -0
- package/cosmos/gov/v1/query.d.ts +469 -92
- package/cosmos/gov/v1/query.js +109 -0
- package/cosmos/gov/v1/tx.d.ts +368 -93
- package/cosmos/gov/v1/tx.js +88 -0
- package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +6 -0
- package/cosmos/gov/v1beta1/gov.d.ts +291 -69
- package/cosmos/gov/v1beta1/gov.js +57 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/tx.d.ts +209 -45
- package/cosmos/gov/v1beta1/tx.js +49 -0
- package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/group/module/v1/module.d.ts +18 -2
- package/cosmos/group/module/v1/module.js +6 -0
- package/cosmos/group/v1/events.d.ts +300 -56
- package/cosmos/group/v1/events.js +66 -0
- package/cosmos/group/v1/genesis.d.ts +48 -12
- package/cosmos/group/v1/genesis.js +6 -0
- package/cosmos/group/v1/query.d.ts +768 -152
- package/cosmos/group/v1/query.js +168 -0
- package/cosmos/group/v1/query.lcd.js +1 -3
- package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
- package/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/cosmos/group/v1/tx.d.ts +804 -163
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/types.d.ts +398 -91
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +6 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +39 -0
- package/cosmos/mint/v1beta1/tx.d.ts +31 -10
- package/cosmos/mint/v1beta1/tx.js +13 -0
- package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/nft/module/v1/module.d.ts +18 -2
- package/cosmos/nft/module/v1/module.js +6 -0
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +13 -0
- package/cosmos/params/v1beta1/query.d.ts +93 -22
- package/cosmos/params/v1beta1/query.js +33 -0
- package/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
- package/cosmos/protocolpool/module/v1/module.js +6 -0
- package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
- package/cosmos/protocolpool/v1/genesis.js +6 -0
- package/cosmos/protocolpool/v1/query.d.ts +138 -12
- package/cosmos/protocolpool/v1/query.js +54 -0
- package/cosmos/protocolpool/v1/tx.d.ts +217 -30
- package/cosmos/protocolpool/v1/tx.js +67 -0
- package/cosmos/protocolpool/v1/types.d.ts +54 -10
- package/cosmos/protocolpool/v1/types.js +12 -0
- package/cosmos/reflection/v1/reflection.d.ts +42 -6
- package/cosmos/reflection/v1/reflection.js +12 -0
- package/cosmos/rpc.query.d.ts +1 -9
- package/cosmos/rpc.query.js +0 -5
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +43 -15
- package/cosmos/staking/v1beta1/authz.js +13 -5
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +12 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/staking.d.ts +631 -121
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +234 -42
- package/cosmos/staking/v1beta1/tx.js +88 -0
- package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
- package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
- package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
- package/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
- package/cosmos/store/streaming/abci/grpc.js +24 -0
- package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
- package/cosmos/store/v1beta1/commit_info.js +21 -0
- package/cosmos/store/v1beta1/listening.d.ts +45 -10
- package/cosmos/store/v1beta1/listening.js +15 -0
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +355 -94
- package/cosmos/tx/v1beta1/service.js +125 -0
- package/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
- package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/cosmos/tx/v1beta1/tx.d.ts +371 -80
- package/cosmos/tx/v1beta1/tx.js +118 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
- package/cosmos/upgrade/v1beta1/query.js +70 -0
- package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
- package/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
- package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/cosmos/vesting/module/v1/module.d.ts +18 -2
- package/cosmos/vesting/module/v1/module.js +6 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
- package/cosmos/vesting/v1beta1/tx.js +40 -0
- package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
- package/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/esm/cosmos/app/v1alpha1/module.js +19 -0
- package/esm/cosmos/auth/module/v1/module.js +25 -1
- package/esm/cosmos/auth/v1beta1/auth.js +26 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +120 -0
- package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/esm/cosmos/auth/v1beta1/tx.js +13 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
- package/esm/cosmos/authz/v1beta1/query.js +36 -0
- package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +7 -0
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
- package/esm/cosmos/bank/v1beta1/query.js +179 -0
- package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
- package/esm/cosmos/bank/v1beta1/tx.js +53 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/benchmark/module/v1/module.js +12 -0
- package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
- package/esm/cosmos/benchmark/v1/tx.js +12 -0
- package/esm/cosmos/bundle.js +242 -261
- package/esm/cosmos/circuit/module/v1/module.js +6 -0
- package/esm/cosmos/circuit/v1/query.js +36 -0
- package/esm/cosmos/circuit/v1/tx.js +36 -0
- package/esm/cosmos/circuit/v1/types.js +19 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +12 -0
- package/esm/cosmos/consensus/v1/tx.js +13 -0
- package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/counter/module/v1/module.js +6 -0
- package/esm/cosmos/counter/v1/query.js +12 -0
- package/esm/cosmos/counter/v1/tx.js +12 -0
- package/esm/cosmos/crisis/module/v1/module.js +6 -0
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
- package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
- package/esm/cosmos/crypto/multisig/keys.js +8 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/esm/cosmos/distribution/v1beta1/query.js +136 -0
- package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/esm/cosmos/epochs/module/v1/module.js +6 -0
- package/esm/cosmos/epochs/v1beta1/events.js +12 -0
- package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/esm/cosmos/epochs/v1beta1/query.js +28 -0
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
- package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/genutil/module/v1/module.js +6 -0
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +6 -0
- package/esm/cosmos/gov/v1/gov.js +59 -0
- package/esm/cosmos/gov/v1/query.js +109 -0
- package/esm/cosmos/gov/v1/tx.js +88 -0
- package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
- package/esm/cosmos/gov/v1beta1/gov.js +57 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/tx.js +49 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/group/module/v1/module.js +6 -0
- package/esm/cosmos/group/v1/events.js +66 -0
- package/esm/cosmos/group/v1/genesis.js +6 -0
- package/esm/cosmos/group/v1/query.js +168 -0
- package/esm/cosmos/group/v1/query.lcd.js +1 -3
- package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +39 -0
- package/esm/cosmos/mint/v1beta1/tx.js +13 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/nft/module/v1/module.js +6 -0
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +13 -0
- package/esm/cosmos/params/v1beta1/query.js +33 -0
- package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
- package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
- package/esm/cosmos/protocolpool/v1/query.js +54 -0
- package/esm/cosmos/protocolpool/v1/tx.js +67 -0
- package/esm/cosmos/protocolpool/v1/types.js +12 -0
- package/esm/cosmos/reflection/v1/reflection.js +12 -0
- package/esm/cosmos/rpc.query.js +0 -5
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +13 -5
- package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +88 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
- package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
- package/esm/cosmos/store/v1beta1/listening.js +15 -0
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +125 -0
- package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/esm/cosmos/tx/v1beta1/tx.js +119 -1
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
- package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/esm/cosmos/vesting/module/v1/module.js +6 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/gogoproto/bundle.js +2 -2
- package/esm/google/api/http.js +283 -0
- package/esm/google/bundle.js +7 -7
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +220 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
- package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
- package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
- package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
- package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
- package/esm/ibc/applications/transfer/v1/authz.js +13 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
- package/esm/ibc/applications/transfer/v1/packet.js +8 -0
- package/esm/ibc/applications/transfer/v1/query.js +78 -0
- package/esm/ibc/applications/transfer/v1/token.js +18 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
- package/esm/ibc/applications/transfer/v1/tx.js +40 -1
- package/esm/ibc/bundle.js +196 -173
- package/esm/ibc/client.js +4 -1
- package/esm/ibc/core/channel/v1/channel.js +64 -0
- package/esm/ibc/core/channel/v1/genesis.js +13 -0
- package/esm/ibc/core/channel/v1/query.js +197 -0
- package/esm/ibc/core/channel/v1/tx.js +129 -0
- package/esm/ibc/core/channel/v2/genesis.js +21 -0
- package/esm/ibc/core/channel/v2/packet.js +29 -0
- package/esm/ibc/core/channel/v2/query.js +100 -0
- package/esm/ibc/core/channel/v2/tx.js +48 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/genesis.js +20 -0
- package/esm/ibc/core/client/v1/query.js +154 -0
- package/esm/ibc/core/client/v1/tx.amino.js +1 -6
- package/esm/ibc/core/client/v1/tx.js +86 -151
- package/esm/ibc/core/client/v1/tx.registry.js +2 -20
- package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
- package/esm/ibc/core/client/v2/config.js +9 -0
- package/esm/ibc/core/client/v2/counterparty.js +6 -0
- package/esm/ibc/core/client/v2/genesis.js +12 -0
- package/esm/ibc/core/client/v2/query.js +26 -0
- package/esm/ibc/core/client/v2/tx.js +24 -0
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/commitment/v2/commitment.js +36 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/genesis.js +6 -0
- package/esm/ibc/core/connection/v1/query.js +83 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/lcd.js +5 -0
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
- package/esm/ibc/rpc.query.js +3 -5
- package/esm/ibc/rpc.tx.js +3 -0
- package/esm/index.js +1 -1
- package/esm/sparkdream/blog/module/v1/module.js +6 -0
- package/esm/sparkdream/blog/v1/genesis.js +6 -0
- package/esm/sparkdream/blog/v1/params.js +6 -0
- package/esm/sparkdream/blog/v1/post.js +6 -0
- package/esm/sparkdream/blog/v1/query.js +36 -0
- package/esm/sparkdream/blog/v1/tx.js +49 -0
- package/esm/sparkdream/bundle.js +41 -41
- package/esm/sparkdream/rpc.query.js +0 -5
- package/esm/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/esm/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/esm/sparkdream/sparkdream/v1/params.js +6 -0
- package/esm/sparkdream/sparkdream/v1/query.js +12 -0
- package/esm/sparkdream/sparkdream/v1/tx.js +13 -0
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +18 -18
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/p2p/types.js +20 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/gogoproto/bundle.js +2 -2
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/bundle.d.ts +418 -418
- package/google/bundle.js +7 -7
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +738 -90
- package/google/protobuf/descriptor.js +220 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
- package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
- package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
- package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
- package/ibc/applications/rate_limiting/v1/query.js +906 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
- package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
- package/ibc/applications/rate_limiting/v1/tx.js +729 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +13 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
- package/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
- package/ibc/applications/transfer/v1/genesis.js +6 -0
- package/ibc/applications/transfer/v1/packet.d.ts +44 -10
- package/ibc/applications/transfer/v1/packet.js +8 -0
- package/ibc/applications/transfer/v1/query.d.ts +252 -34
- package/ibc/applications/transfer/v1/query.js +78 -0
- package/ibc/applications/transfer/v1/token.d.ts +78 -14
- package/ibc/applications/transfer/v1/token.js +18 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
- package/ibc/applications/transfer/v1/transfer.js +9 -0
- package/ibc/applications/transfer/v1/tx.d.ts +135 -22
- package/ibc/applications/transfer/v1/tx.js +40 -1
- package/ibc/bundle.d.ts +3830 -3396
- package/ibc/bundle.js +196 -173
- package/ibc/client.d.ts +20 -5
- package/ibc/client.js +4 -1
- package/ibc/core/channel/v1/channel.d.ts +292 -60
- package/ibc/core/channel/v1/channel.js +64 -0
- package/ibc/core/channel/v1/genesis.d.ts +37 -4
- package/ibc/core/channel/v1/genesis.js +13 -0
- package/ibc/core/channel/v1/query.d.ts +839 -158
- package/ibc/core/channel/v1/query.js +197 -0
- package/ibc/core/channel/v1/tx.d.ts +335 -30
- package/ibc/core/channel/v1/tx.js +129 -0
- package/ibc/core/channel/v2/genesis.d.ts +81 -14
- package/ibc/core/channel/v2/genesis.js +21 -0
- package/ibc/core/channel/v2/packet.d.ts +137 -28
- package/ibc/core/channel/v2/packet.js +29 -0
- package/ibc/core/channel/v2/query.d.ts +490 -98
- package/ibc/core/channel/v2/query.js +100 -0
- package/ibc/core/channel/v2/tx.d.ts +144 -16
- package/ibc/core/channel/v2/tx.js +48 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/genesis.d.ts +82 -16
- package/ibc/core/client/v1/genesis.js +20 -0
- package/ibc/core/client/v1/query.d.ts +508 -74
- package/ibc/core/client/v1/query.js +154 -0
- package/ibc/core/client/v1/tx.amino.d.ts +1 -6
- package/ibc/core/client/v1/tx.amino.js +0 -5
- package/ibc/core/client/v1/tx.d.ts +336 -138
- package/ibc/core/client/v1/tx.js +87 -152
- package/ibc/core/client/v1/tx.registry.d.ts +1 -13
- package/ibc/core/client/v1/tx.registry.js +1 -19
- package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
- package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
- package/ibc/core/client/v2/config.d.ts +21 -2
- package/ibc/core/client/v2/config.js +9 -0
- package/ibc/core/client/v2/counterparty.d.ts +30 -6
- package/ibc/core/client/v2/counterparty.js +6 -0
- package/ibc/core/client/v2/genesis.d.ts +54 -10
- package/ibc/core/client/v2/genesis.js +12 -0
- package/ibc/core/client/v2/query.d.ts +74 -8
- package/ibc/core/client/v2/query.js +26 -0
- package/ibc/core/client/v2/tx.d.ts +108 -20
- package/ibc/core/client/v2/tx.js +24 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/commitment/v2/commitment.d.ts +42 -0
- package/ibc/core/commitment/v2/commitment.js +36 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +6 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +83 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/lcd.d.ts +3 -0
- package/ibc/lcd.js +5 -0
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
- package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
- package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
- package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +24 -0
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
- package/ibc/lightclients/wasm/v1/wasm.js +19 -74
- package/ibc/rpc.query.d.ts +11 -9
- package/ibc/rpc.query.js +3 -5
- package/ibc/rpc.tx.d.ts +3 -0
- package/ibc/rpc.tx.js +3 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/sparkdream/blog/module/v1/module.d.ts +18 -2
- package/sparkdream/blog/module/v1/module.js +6 -0
- package/sparkdream/blog/v1/genesis.d.ts +24 -4
- package/sparkdream/blog/v1/genesis.js +6 -0
- package/sparkdream/blog/v1/params.d.ts +18 -2
- package/sparkdream/blog/v1/params.js +6 -0
- package/sparkdream/blog/v1/post.d.ts +18 -2
- package/sparkdream/blog/v1/post.js +6 -0
- package/sparkdream/blog/v1/query.d.ts +114 -14
- package/sparkdream/blog/v1/query.js +36 -0
- package/sparkdream/blog/v1/tx.d.ts +151 -18
- package/sparkdream/blog/v1/tx.js +49 -0
- package/sparkdream/bundle.d.ts +302 -310
- package/sparkdream/bundle.js +41 -41
- package/sparkdream/rpc.query.d.ts +1 -9
- package/sparkdream/rpc.query.js +0 -5
- package/sparkdream/sparkdream/module/v1/module.d.ts +18 -2
- package/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/sparkdream/sparkdream/v1/genesis.d.ts +24 -4
- package/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/sparkdream/sparkdream/v1/params.d.ts +18 -2
- package/sparkdream/sparkdream/v1/params.js +6 -0
- package/sparkdream/sparkdream/v1/query.d.ts +42 -6
- package/sparkdream/sparkdream/v1/query.js +12 -0
- package/sparkdream/sparkdream/v1/tx.d.ts +37 -4
- package/sparkdream/sparkdream/v1/tx.js +13 -0
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +18 -18
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +20 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
- package/cosmos/orm/module/v1alpha1/module.js +0 -62
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
- package/cosmos/orm/query/v1alpha1/query.js +0 -695
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
|
@@ -9,6 +9,11 @@ function createBaseProof() {
|
|
|
9
9
|
aunts: []
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* @name Proof
|
|
14
|
+
* @package tendermint.crypto
|
|
15
|
+
* @see proto type: tendermint.crypto.Proof
|
|
16
|
+
*/
|
|
12
17
|
export const Proof = {
|
|
13
18
|
typeUrl: "/tendermint.crypto.Proof",
|
|
14
19
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -109,6 +114,11 @@ function createBaseValueOp() {
|
|
|
109
114
|
proof: undefined
|
|
110
115
|
};
|
|
111
116
|
}
|
|
117
|
+
/**
|
|
118
|
+
* @name ValueOp
|
|
119
|
+
* @package tendermint.crypto
|
|
120
|
+
* @see proto type: tendermint.crypto.ValueOp
|
|
121
|
+
*/
|
|
112
122
|
export const ValueOp = {
|
|
113
123
|
typeUrl: "/tendermint.crypto.ValueOp",
|
|
114
124
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -185,6 +195,11 @@ function createBaseDominoOp() {
|
|
|
185
195
|
output: ""
|
|
186
196
|
};
|
|
187
197
|
}
|
|
198
|
+
/**
|
|
199
|
+
* @name DominoOp
|
|
200
|
+
* @package tendermint.crypto
|
|
201
|
+
* @see proto type: tendermint.crypto.DominoOp
|
|
202
|
+
*/
|
|
188
203
|
export const DominoOp = {
|
|
189
204
|
typeUrl: "/tendermint.crypto.DominoOp",
|
|
190
205
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -272,6 +287,14 @@ function createBaseProofOp() {
|
|
|
272
287
|
data: new Uint8Array()
|
|
273
288
|
};
|
|
274
289
|
}
|
|
290
|
+
/**
|
|
291
|
+
* ProofOp defines an operation used for calculating Merkle root
|
|
292
|
+
* The data could be arbitrary format, providing nessecary data
|
|
293
|
+
* for example neighbouring node hash
|
|
294
|
+
* @name ProofOp
|
|
295
|
+
* @package tendermint.crypto
|
|
296
|
+
* @see proto type: tendermint.crypto.ProofOp
|
|
297
|
+
*/
|
|
275
298
|
export const ProofOp = {
|
|
276
299
|
typeUrl: "/tendermint.crypto.ProofOp",
|
|
277
300
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -357,6 +380,12 @@ function createBaseProofOps() {
|
|
|
357
380
|
ops: []
|
|
358
381
|
};
|
|
359
382
|
}
|
|
383
|
+
/**
|
|
384
|
+
* ProofOps is Merkle proof defined by the list of ProofOps
|
|
385
|
+
* @name ProofOps
|
|
386
|
+
* @package tendermint.crypto
|
|
387
|
+
* @see proto type: tendermint.crypto.ProofOps
|
|
388
|
+
*/
|
|
360
389
|
export const ProofOps = {
|
|
361
390
|
typeUrl: "/tendermint.crypto.ProofOps",
|
|
362
391
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -8,6 +8,11 @@ function createBaseNetAddress() {
|
|
|
8
8
|
port: 0
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* @name NetAddress
|
|
13
|
+
* @package tendermint.p2p
|
|
14
|
+
* @see proto type: tendermint.p2p.NetAddress
|
|
15
|
+
*/
|
|
11
16
|
export const NetAddress = {
|
|
12
17
|
typeUrl: "/tendermint.p2p.NetAddress",
|
|
13
18
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -95,6 +100,11 @@ function createBaseProtocolVersion() {
|
|
|
95
100
|
app: BigInt(0)
|
|
96
101
|
};
|
|
97
102
|
}
|
|
103
|
+
/**
|
|
104
|
+
* @name ProtocolVersion
|
|
105
|
+
* @package tendermint.p2p
|
|
106
|
+
* @see proto type: tendermint.p2p.ProtocolVersion
|
|
107
|
+
*/
|
|
98
108
|
export const ProtocolVersion = {
|
|
99
109
|
typeUrl: "/tendermint.p2p.ProtocolVersion",
|
|
100
110
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -187,6 +197,11 @@ function createBaseDefaultNodeInfo() {
|
|
|
187
197
|
other: DefaultNodeInfoOther.fromPartial({})
|
|
188
198
|
};
|
|
189
199
|
}
|
|
200
|
+
/**
|
|
201
|
+
* @name DefaultNodeInfo
|
|
202
|
+
* @package tendermint.p2p
|
|
203
|
+
* @see proto type: tendermint.p2p.DefaultNodeInfo
|
|
204
|
+
*/
|
|
190
205
|
export const DefaultNodeInfo = {
|
|
191
206
|
typeUrl: "/tendermint.p2p.DefaultNodeInfo",
|
|
192
207
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -328,6 +343,11 @@ function createBaseDefaultNodeInfoOther() {
|
|
|
328
343
|
rpcAddress: ""
|
|
329
344
|
};
|
|
330
345
|
}
|
|
346
|
+
/**
|
|
347
|
+
* @name DefaultNodeInfoOther
|
|
348
|
+
* @package tendermint.p2p
|
|
349
|
+
* @see proto type: tendermint.p2p.DefaultNodeInfoOther
|
|
350
|
+
*/
|
|
331
351
|
export const DefaultNodeInfoOther = {
|
|
332
352
|
typeUrl: "/tendermint.p2p.DefaultNodeInfoOther",
|
|
333
353
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -10,6 +10,11 @@ function createBaseBlock() {
|
|
|
10
10
|
lastCommit: undefined
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* @name Block
|
|
15
|
+
* @package tendermint.types
|
|
16
|
+
* @see proto type: tendermint.types.Block
|
|
17
|
+
*/
|
|
13
18
|
export const Block = {
|
|
14
19
|
typeUrl: "/tendermint.types.Block",
|
|
15
20
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -10,6 +10,11 @@ function createBaseEvidence() {
|
|
|
10
10
|
lightClientAttackEvidence: undefined
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* @name Evidence
|
|
15
|
+
* @package tendermint.types
|
|
16
|
+
* @see proto type: tendermint.types.Evidence
|
|
17
|
+
*/
|
|
13
18
|
export const Evidence = {
|
|
14
19
|
typeUrl: "/tendermint.types.Evidence",
|
|
15
20
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -88,6 +93,12 @@ function createBaseDuplicateVoteEvidence() {
|
|
|
88
93
|
timestamp: new Date()
|
|
89
94
|
};
|
|
90
95
|
}
|
|
96
|
+
/**
|
|
97
|
+
* DuplicateVoteEvidence contains evidence of a validator signed two conflicting votes.
|
|
98
|
+
* @name DuplicateVoteEvidence
|
|
99
|
+
* @package tendermint.types
|
|
100
|
+
* @see proto type: tendermint.types.DuplicateVoteEvidence
|
|
101
|
+
*/
|
|
91
102
|
export const DuplicateVoteEvidence = {
|
|
92
103
|
typeUrl: "/tendermint.types.DuplicateVoteEvidence",
|
|
93
104
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -199,6 +210,12 @@ function createBaseLightClientAttackEvidence() {
|
|
|
199
210
|
timestamp: new Date()
|
|
200
211
|
};
|
|
201
212
|
}
|
|
213
|
+
/**
|
|
214
|
+
* LightClientAttackEvidence contains evidence of a set of validators attempting to mislead a light client.
|
|
215
|
+
* @name LightClientAttackEvidence
|
|
216
|
+
* @package tendermint.types
|
|
217
|
+
* @see proto type: tendermint.types.LightClientAttackEvidence
|
|
218
|
+
*/
|
|
202
219
|
export const LightClientAttackEvidence = {
|
|
203
220
|
typeUrl: "/tendermint.types.LightClientAttackEvidence",
|
|
204
221
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -309,6 +326,11 @@ function createBaseEvidenceList() {
|
|
|
309
326
|
evidence: []
|
|
310
327
|
};
|
|
311
328
|
}
|
|
329
|
+
/**
|
|
330
|
+
* @name EvidenceList
|
|
331
|
+
* @package tendermint.types
|
|
332
|
+
* @see proto type: tendermint.types.EvidenceList
|
|
333
|
+
*/
|
|
312
334
|
export const EvidenceList = {
|
|
313
335
|
typeUrl: "/tendermint.types.EvidenceList",
|
|
314
336
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -10,6 +10,13 @@ function createBaseConsensusParams() {
|
|
|
10
10
|
abci: undefined
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* ConsensusParams contains consensus critical parameters that determine the
|
|
15
|
+
* validity of blocks.
|
|
16
|
+
* @name ConsensusParams
|
|
17
|
+
* @package tendermint.types
|
|
18
|
+
* @see proto type: tendermint.types.ConsensusParams
|
|
19
|
+
*/
|
|
13
20
|
export const ConsensusParams = {
|
|
14
21
|
typeUrl: "/tendermint.types.ConsensusParams",
|
|
15
22
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -118,6 +125,12 @@ function createBaseBlockParams() {
|
|
|
118
125
|
maxGas: BigInt(0)
|
|
119
126
|
};
|
|
120
127
|
}
|
|
128
|
+
/**
|
|
129
|
+
* BlockParams contains limits on the block size.
|
|
130
|
+
* @name BlockParams
|
|
131
|
+
* @package tendermint.types
|
|
132
|
+
* @see proto type: tendermint.types.BlockParams
|
|
133
|
+
*/
|
|
121
134
|
export const BlockParams = {
|
|
122
135
|
typeUrl: "/tendermint.types.BlockParams",
|
|
123
136
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -194,6 +207,12 @@ function createBaseEvidenceParams() {
|
|
|
194
207
|
maxBytes: BigInt(0)
|
|
195
208
|
};
|
|
196
209
|
}
|
|
210
|
+
/**
|
|
211
|
+
* EvidenceParams determine how we handle evidence of malfeasance.
|
|
212
|
+
* @name EvidenceParams
|
|
213
|
+
* @package tendermint.types
|
|
214
|
+
* @see proto type: tendermint.types.EvidenceParams
|
|
215
|
+
*/
|
|
197
216
|
export const EvidenceParams = {
|
|
198
217
|
typeUrl: "/tendermint.types.EvidenceParams",
|
|
199
218
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -279,6 +298,13 @@ function createBaseValidatorParams() {
|
|
|
279
298
|
pubKeyTypes: []
|
|
280
299
|
};
|
|
281
300
|
}
|
|
301
|
+
/**
|
|
302
|
+
* ValidatorParams restrict the public key types validators can use.
|
|
303
|
+
* NOTE: uses ABCI pubkey naming, not Amino names.
|
|
304
|
+
* @name ValidatorParams
|
|
305
|
+
* @package tendermint.types
|
|
306
|
+
* @see proto type: tendermint.types.ValidatorParams
|
|
307
|
+
*/
|
|
282
308
|
export const ValidatorParams = {
|
|
283
309
|
typeUrl: "/tendermint.types.ValidatorParams",
|
|
284
310
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -345,6 +371,12 @@ function createBaseVersionParams() {
|
|
|
345
371
|
app: BigInt(0)
|
|
346
372
|
};
|
|
347
373
|
}
|
|
374
|
+
/**
|
|
375
|
+
* VersionParams contains the ABCI application version.
|
|
376
|
+
* @name VersionParams
|
|
377
|
+
* @package tendermint.types
|
|
378
|
+
* @see proto type: tendermint.types.VersionParams
|
|
379
|
+
*/
|
|
348
380
|
export const VersionParams = {
|
|
349
381
|
typeUrl: "/tendermint.types.VersionParams",
|
|
350
382
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -409,6 +441,14 @@ function createBaseHashedParams() {
|
|
|
409
441
|
blockMaxGas: BigInt(0)
|
|
410
442
|
};
|
|
411
443
|
}
|
|
444
|
+
/**
|
|
445
|
+
* HashedParams is a subset of ConsensusParams.
|
|
446
|
+
*
|
|
447
|
+
* It is hashed into the Header.ConsensusHash.
|
|
448
|
+
* @name HashedParams
|
|
449
|
+
* @package tendermint.types
|
|
450
|
+
* @see proto type: tendermint.types.HashedParams
|
|
451
|
+
*/
|
|
412
452
|
export const HashedParams = {
|
|
413
453
|
typeUrl: "/tendermint.types.HashedParams",
|
|
414
454
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -483,6 +523,12 @@ function createBaseABCIParams() {
|
|
|
483
523
|
voteExtensionsEnableHeight: BigInt(0)
|
|
484
524
|
};
|
|
485
525
|
}
|
|
526
|
+
/**
|
|
527
|
+
* ABCIParams configure functionality specific to the Application Blockchain Interface.
|
|
528
|
+
* @name ABCIParams
|
|
529
|
+
* @package tendermint.types
|
|
530
|
+
* @see proto type: tendermint.types.ABCIParams
|
|
531
|
+
*/
|
|
486
532
|
export const ABCIParams = {
|
|
487
533
|
typeUrl: "/tendermint.types.ABCIParams",
|
|
488
534
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -58,6 +58,12 @@ function createBasePartSetHeader() {
|
|
|
58
58
|
hash: new Uint8Array()
|
|
59
59
|
};
|
|
60
60
|
}
|
|
61
|
+
/**
|
|
62
|
+
* PartsetHeader
|
|
63
|
+
* @name PartSetHeader
|
|
64
|
+
* @package tendermint.types
|
|
65
|
+
* @see proto type: tendermint.types.PartSetHeader
|
|
66
|
+
*/
|
|
61
67
|
export const PartSetHeader = {
|
|
62
68
|
typeUrl: "/tendermint.types.PartSetHeader",
|
|
63
69
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -134,6 +140,11 @@ function createBasePart() {
|
|
|
134
140
|
proof: Proof.fromPartial({})
|
|
135
141
|
};
|
|
136
142
|
}
|
|
143
|
+
/**
|
|
144
|
+
* @name Part
|
|
145
|
+
* @package tendermint.types
|
|
146
|
+
* @see proto type: tendermint.types.Part
|
|
147
|
+
*/
|
|
137
148
|
export const Part = {
|
|
138
149
|
typeUrl: "/tendermint.types.Part",
|
|
139
150
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -220,6 +231,12 @@ function createBaseBlockID() {
|
|
|
220
231
|
partSetHeader: PartSetHeader.fromPartial({})
|
|
221
232
|
};
|
|
222
233
|
}
|
|
234
|
+
/**
|
|
235
|
+
* BlockID
|
|
236
|
+
* @name BlockID
|
|
237
|
+
* @package tendermint.types
|
|
238
|
+
* @see proto type: tendermint.types.BlockID
|
|
239
|
+
*/
|
|
223
240
|
export const BlockID = {
|
|
224
241
|
typeUrl: "/tendermint.types.BlockID",
|
|
225
242
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -307,6 +324,12 @@ function createBaseHeader() {
|
|
|
307
324
|
proposerAddress: new Uint8Array()
|
|
308
325
|
};
|
|
309
326
|
}
|
|
327
|
+
/**
|
|
328
|
+
* Header defines the structure of a block header.
|
|
329
|
+
* @name Header
|
|
330
|
+
* @package tendermint.types
|
|
331
|
+
* @see proto type: tendermint.types.Header
|
|
332
|
+
*/
|
|
310
333
|
export const Header = {
|
|
311
334
|
typeUrl: "/tendermint.types.Header",
|
|
312
335
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -513,6 +536,12 @@ function createBaseData() {
|
|
|
513
536
|
txs: []
|
|
514
537
|
};
|
|
515
538
|
}
|
|
539
|
+
/**
|
|
540
|
+
* Data contains the set of transactions included in the block
|
|
541
|
+
* @name Data
|
|
542
|
+
* @package tendermint.types
|
|
543
|
+
* @see proto type: tendermint.types.Data
|
|
544
|
+
*/
|
|
516
545
|
export const Data = {
|
|
517
546
|
typeUrl: "/tendermint.types.Data",
|
|
518
547
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -588,6 +617,13 @@ function createBaseVote() {
|
|
|
588
617
|
extensionSignature: new Uint8Array()
|
|
589
618
|
};
|
|
590
619
|
}
|
|
620
|
+
/**
|
|
621
|
+
* Vote represents a prevote or precommit vote from validators for
|
|
622
|
+
* consensus.
|
|
623
|
+
* @name Vote
|
|
624
|
+
* @package tendermint.types
|
|
625
|
+
* @see proto type: tendermint.types.Vote
|
|
626
|
+
*/
|
|
591
627
|
export const Vote = {
|
|
592
628
|
typeUrl: "/tendermint.types.Vote",
|
|
593
629
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -753,6 +789,12 @@ function createBaseCommit() {
|
|
|
753
789
|
signatures: []
|
|
754
790
|
};
|
|
755
791
|
}
|
|
792
|
+
/**
|
|
793
|
+
* Commit contains the evidence that a block was committed by a set of validators.
|
|
794
|
+
* @name Commit
|
|
795
|
+
* @package tendermint.types
|
|
796
|
+
* @see proto type: tendermint.types.Commit
|
|
797
|
+
*/
|
|
756
798
|
export const Commit = {
|
|
757
799
|
typeUrl: "/tendermint.types.Commit",
|
|
758
800
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -855,6 +897,12 @@ function createBaseCommitSig() {
|
|
|
855
897
|
signature: new Uint8Array()
|
|
856
898
|
};
|
|
857
899
|
}
|
|
900
|
+
/**
|
|
901
|
+
* CommitSig is a part of the Vote included in a Commit.
|
|
902
|
+
* @name CommitSig
|
|
903
|
+
* @package tendermint.types
|
|
904
|
+
* @see proto type: tendermint.types.CommitSig
|
|
905
|
+
*/
|
|
858
906
|
export const CommitSig = {
|
|
859
907
|
typeUrl: "/tendermint.types.CommitSig",
|
|
860
908
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -954,6 +1002,11 @@ function createBaseExtendedCommit() {
|
|
|
954
1002
|
extendedSignatures: []
|
|
955
1003
|
};
|
|
956
1004
|
}
|
|
1005
|
+
/**
|
|
1006
|
+
* @name ExtendedCommit
|
|
1007
|
+
* @package tendermint.types
|
|
1008
|
+
* @see proto type: tendermint.types.ExtendedCommit
|
|
1009
|
+
*/
|
|
957
1010
|
export const ExtendedCommit = {
|
|
958
1011
|
typeUrl: "/tendermint.types.ExtendedCommit",
|
|
959
1012
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -1058,6 +1111,14 @@ function createBaseExtendedCommitSig() {
|
|
|
1058
1111
|
extensionSignature: new Uint8Array()
|
|
1059
1112
|
};
|
|
1060
1113
|
}
|
|
1114
|
+
/**
|
|
1115
|
+
* ExtendedCommitSig retains all the same fields as CommitSig but adds vote
|
|
1116
|
+
* extension-related fields. We use two signatures to ensure backwards compatibility.
|
|
1117
|
+
* That is the digest of the original signature is still the same in prior versions
|
|
1118
|
+
* @name ExtendedCommitSig
|
|
1119
|
+
* @package tendermint.types
|
|
1120
|
+
* @see proto type: tendermint.types.ExtendedCommitSig
|
|
1121
|
+
*/
|
|
1061
1122
|
export const ExtendedCommitSig = {
|
|
1062
1123
|
typeUrl: "/tendermint.types.ExtendedCommitSig",
|
|
1063
1124
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -1182,6 +1243,11 @@ function createBaseProposal() {
|
|
|
1182
1243
|
signature: new Uint8Array()
|
|
1183
1244
|
};
|
|
1184
1245
|
}
|
|
1246
|
+
/**
|
|
1247
|
+
* @name Proposal
|
|
1248
|
+
* @package tendermint.types
|
|
1249
|
+
* @see proto type: tendermint.types.Proposal
|
|
1250
|
+
*/
|
|
1185
1251
|
export const Proposal = {
|
|
1186
1252
|
typeUrl: "/tendermint.types.Proposal",
|
|
1187
1253
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -1312,6 +1378,11 @@ function createBaseSignedHeader() {
|
|
|
1312
1378
|
commit: undefined
|
|
1313
1379
|
};
|
|
1314
1380
|
}
|
|
1381
|
+
/**
|
|
1382
|
+
* @name SignedHeader
|
|
1383
|
+
* @package tendermint.types
|
|
1384
|
+
* @see proto type: tendermint.types.SignedHeader
|
|
1385
|
+
*/
|
|
1315
1386
|
export const SignedHeader = {
|
|
1316
1387
|
typeUrl: "/tendermint.types.SignedHeader",
|
|
1317
1388
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -1387,6 +1458,11 @@ function createBaseLightBlock() {
|
|
|
1387
1458
|
validatorSet: undefined
|
|
1388
1459
|
};
|
|
1389
1460
|
}
|
|
1461
|
+
/**
|
|
1462
|
+
* @name LightBlock
|
|
1463
|
+
* @package tendermint.types
|
|
1464
|
+
* @see proto type: tendermint.types.LightBlock
|
|
1465
|
+
*/
|
|
1390
1466
|
export const LightBlock = {
|
|
1391
1467
|
typeUrl: "/tendermint.types.LightBlock",
|
|
1392
1468
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -1464,6 +1540,11 @@ function createBaseBlockMeta() {
|
|
|
1464
1540
|
numTxs: BigInt(0)
|
|
1465
1541
|
};
|
|
1466
1542
|
}
|
|
1543
|
+
/**
|
|
1544
|
+
* @name BlockMeta
|
|
1545
|
+
* @package tendermint.types
|
|
1546
|
+
* @see proto type: tendermint.types.BlockMeta
|
|
1547
|
+
*/
|
|
1467
1548
|
export const BlockMeta = {
|
|
1468
1549
|
typeUrl: "/tendermint.types.BlockMeta",
|
|
1469
1550
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -1562,6 +1643,12 @@ function createBaseTxProof() {
|
|
|
1562
1643
|
proof: undefined
|
|
1563
1644
|
};
|
|
1564
1645
|
}
|
|
1646
|
+
/**
|
|
1647
|
+
* TxProof represents a Merkle proof of the presence of a transaction in the Merkle tree.
|
|
1648
|
+
* @name TxProof
|
|
1649
|
+
* @package tendermint.types
|
|
1650
|
+
* @see proto type: tendermint.types.TxProof
|
|
1651
|
+
*/
|
|
1565
1652
|
export const TxProof = {
|
|
1566
1653
|
typeUrl: "/tendermint.types.TxProof",
|
|
1567
1654
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -57,6 +57,11 @@ function createBaseValidatorSet() {
|
|
|
57
57
|
totalVotingPower: BigInt(0)
|
|
58
58
|
};
|
|
59
59
|
}
|
|
60
|
+
/**
|
|
61
|
+
* @name ValidatorSet
|
|
62
|
+
* @package tendermint.types
|
|
63
|
+
* @see proto type: tendermint.types.ValidatorSet
|
|
64
|
+
*/
|
|
60
65
|
export const ValidatorSet = {
|
|
61
66
|
typeUrl: "/tendermint.types.ValidatorSet",
|
|
62
67
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -148,6 +153,11 @@ function createBaseValidator() {
|
|
|
148
153
|
proposerPriority: BigInt(0)
|
|
149
154
|
};
|
|
150
155
|
}
|
|
156
|
+
/**
|
|
157
|
+
* @name Validator
|
|
158
|
+
* @package tendermint.types
|
|
159
|
+
* @see proto type: tendermint.types.Validator
|
|
160
|
+
*/
|
|
151
161
|
export const Validator = {
|
|
152
162
|
typeUrl: "/tendermint.types.Validator",
|
|
153
163
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -245,6 +255,11 @@ function createBaseSimpleValidator() {
|
|
|
245
255
|
votingPower: BigInt(0)
|
|
246
256
|
};
|
|
247
257
|
}
|
|
258
|
+
/**
|
|
259
|
+
* @name SimpleValidator
|
|
260
|
+
* @package tendermint.types
|
|
261
|
+
* @see proto type: tendermint.types.SimpleValidator
|
|
262
|
+
*/
|
|
248
263
|
export const SimpleValidator = {
|
|
249
264
|
typeUrl: "/tendermint.types.SimpleValidator",
|
|
250
265
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -6,6 +6,14 @@ function createBaseApp() {
|
|
|
6
6
|
software: ""
|
|
7
7
|
};
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* App includes the protocol and software version for the application.
|
|
11
|
+
* This information is included in ResponseInfo. The App.Protocol can be
|
|
12
|
+
* updated in ResponseEndBlock.
|
|
13
|
+
* @name App
|
|
14
|
+
* @package tendermint.version
|
|
15
|
+
* @see proto type: tendermint.version.App
|
|
16
|
+
*/
|
|
9
17
|
export const App = {
|
|
10
18
|
typeUrl: "/tendermint.version.App",
|
|
11
19
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -81,6 +89,14 @@ function createBaseConsensus() {
|
|
|
81
89
|
app: BigInt(0)
|
|
82
90
|
};
|
|
83
91
|
}
|
|
92
|
+
/**
|
|
93
|
+
* Consensus captures the consensus rules for processing a block in the blockchain,
|
|
94
|
+
* including all blockchain data structures and the rules of the application's
|
|
95
|
+
* state transition machine.
|
|
96
|
+
* @name Consensus
|
|
97
|
+
* @package tendermint.version
|
|
98
|
+
* @see proto type: tendermint.version.Consensus
|
|
99
|
+
*/
|
|
84
100
|
export const Consensus = {
|
|
85
101
|
typeUrl: "/tendermint.version.Consensus",
|
|
86
102
|
encode(message, writer = BinaryWriter.create()) {
|
package/esm/types.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/esm/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/esm/varint.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/gogoproto/bundle.js
CHANGED
|
@@ -35,7 +35,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
36
|
exports.gogoproto = void 0;
|
|
37
37
|
//@ts-nocheck
|
|
38
|
-
const
|
|
38
|
+
const _117 = __importStar(require("./gogo"));
|
|
39
39
|
exports.gogoproto = {
|
|
40
|
-
...
|
|
40
|
+
..._117
|
|
41
41
|
};
|