@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
|
@@ -16,7 +16,12 @@ export declare enum SignedMsgType {
|
|
|
16
16
|
export declare const SignedMsgTypeAmino: typeof SignedMsgType;
|
|
17
17
|
export declare function signedMsgTypeFromJSON(object: any): SignedMsgType;
|
|
18
18
|
export declare function signedMsgTypeToJSON(object: SignedMsgType): string;
|
|
19
|
-
/**
|
|
19
|
+
/**
|
|
20
|
+
* PartsetHeader
|
|
21
|
+
* @name PartSetHeader
|
|
22
|
+
* @package tendermint.types
|
|
23
|
+
* @see proto type: tendermint.types.PartSetHeader
|
|
24
|
+
*/
|
|
20
25
|
export interface PartSetHeader {
|
|
21
26
|
total: number;
|
|
22
27
|
hash: Uint8Array;
|
|
@@ -25,7 +30,12 @@ export interface PartSetHeaderProtoMsg {
|
|
|
25
30
|
typeUrl: "/tendermint.types.PartSetHeader";
|
|
26
31
|
value: Uint8Array;
|
|
27
32
|
}
|
|
28
|
-
/**
|
|
33
|
+
/**
|
|
34
|
+
* PartsetHeader
|
|
35
|
+
* @name PartSetHeaderAmino
|
|
36
|
+
* @package tendermint.types
|
|
37
|
+
* @see proto type: tendermint.types.PartSetHeader
|
|
38
|
+
*/
|
|
29
39
|
export interface PartSetHeaderAmino {
|
|
30
40
|
total?: number;
|
|
31
41
|
hash?: string;
|
|
@@ -34,6 +44,11 @@ export interface PartSetHeaderAminoMsg {
|
|
|
34
44
|
type: "/tendermint.types.PartSetHeader";
|
|
35
45
|
value: PartSetHeaderAmino;
|
|
36
46
|
}
|
|
47
|
+
/**
|
|
48
|
+
* @name Part
|
|
49
|
+
* @package tendermint.types
|
|
50
|
+
* @see proto type: tendermint.types.Part
|
|
51
|
+
*/
|
|
37
52
|
export interface Part {
|
|
38
53
|
index: number;
|
|
39
54
|
bytes: Uint8Array;
|
|
@@ -43,6 +58,11 @@ export interface PartProtoMsg {
|
|
|
43
58
|
typeUrl: "/tendermint.types.Part";
|
|
44
59
|
value: Uint8Array;
|
|
45
60
|
}
|
|
61
|
+
/**
|
|
62
|
+
* @name PartAmino
|
|
63
|
+
* @package tendermint.types
|
|
64
|
+
* @see proto type: tendermint.types.Part
|
|
65
|
+
*/
|
|
46
66
|
export interface PartAmino {
|
|
47
67
|
index?: number;
|
|
48
68
|
bytes?: string;
|
|
@@ -52,7 +72,12 @@ export interface PartAminoMsg {
|
|
|
52
72
|
type: "/tendermint.types.Part";
|
|
53
73
|
value: PartAmino;
|
|
54
74
|
}
|
|
55
|
-
/**
|
|
75
|
+
/**
|
|
76
|
+
* BlockID
|
|
77
|
+
* @name BlockID
|
|
78
|
+
* @package tendermint.types
|
|
79
|
+
* @see proto type: tendermint.types.BlockID
|
|
80
|
+
*/
|
|
56
81
|
export interface BlockID {
|
|
57
82
|
hash: Uint8Array;
|
|
58
83
|
partSetHeader: PartSetHeader;
|
|
@@ -61,7 +86,12 @@ export interface BlockIDProtoMsg {
|
|
|
61
86
|
typeUrl: "/tendermint.types.BlockID";
|
|
62
87
|
value: Uint8Array;
|
|
63
88
|
}
|
|
64
|
-
/**
|
|
89
|
+
/**
|
|
90
|
+
* BlockID
|
|
91
|
+
* @name BlockIDAmino
|
|
92
|
+
* @package tendermint.types
|
|
93
|
+
* @see proto type: tendermint.types.BlockID
|
|
94
|
+
*/
|
|
65
95
|
export interface BlockIDAmino {
|
|
66
96
|
hash?: string;
|
|
67
97
|
part_set_header?: PartSetHeaderAmino;
|
|
@@ -70,71 +100,130 @@ export interface BlockIDAminoMsg {
|
|
|
70
100
|
type: "/tendermint.types.BlockID";
|
|
71
101
|
value: BlockIDAmino;
|
|
72
102
|
}
|
|
73
|
-
/**
|
|
103
|
+
/**
|
|
104
|
+
* Header defines the structure of a block header.
|
|
105
|
+
* @name Header
|
|
106
|
+
* @package tendermint.types
|
|
107
|
+
* @see proto type: tendermint.types.Header
|
|
108
|
+
*/
|
|
74
109
|
export interface Header {
|
|
75
|
-
/**
|
|
110
|
+
/**
|
|
111
|
+
* basic block info
|
|
112
|
+
*/
|
|
76
113
|
version: Consensus;
|
|
77
114
|
chainId: string;
|
|
78
115
|
height: bigint;
|
|
79
116
|
time: Date;
|
|
80
|
-
/**
|
|
117
|
+
/**
|
|
118
|
+
* prev block info
|
|
119
|
+
*/
|
|
81
120
|
lastBlockId: BlockID;
|
|
82
|
-
/**
|
|
121
|
+
/**
|
|
122
|
+
* hashes of block data
|
|
123
|
+
*/
|
|
83
124
|
lastCommitHash: Uint8Array;
|
|
84
|
-
/**
|
|
125
|
+
/**
|
|
126
|
+
* transactions
|
|
127
|
+
*/
|
|
85
128
|
dataHash: Uint8Array;
|
|
86
|
-
/**
|
|
129
|
+
/**
|
|
130
|
+
* hashes from the app output from the prev block
|
|
131
|
+
*/
|
|
87
132
|
validatorsHash: Uint8Array;
|
|
88
|
-
/**
|
|
133
|
+
/**
|
|
134
|
+
* validators for the next block
|
|
135
|
+
*/
|
|
89
136
|
nextValidatorsHash: Uint8Array;
|
|
90
|
-
/**
|
|
137
|
+
/**
|
|
138
|
+
* consensus params for current block
|
|
139
|
+
*/
|
|
91
140
|
consensusHash: Uint8Array;
|
|
92
|
-
/**
|
|
141
|
+
/**
|
|
142
|
+
* state after txs from the previous block
|
|
143
|
+
*/
|
|
93
144
|
appHash: Uint8Array;
|
|
94
|
-
/**
|
|
145
|
+
/**
|
|
146
|
+
* root hash of all results from the txs from the previous block
|
|
147
|
+
*/
|
|
95
148
|
lastResultsHash: Uint8Array;
|
|
96
|
-
/**
|
|
149
|
+
/**
|
|
150
|
+
* consensus info
|
|
151
|
+
*/
|
|
97
152
|
evidenceHash: Uint8Array;
|
|
98
|
-
/**
|
|
153
|
+
/**
|
|
154
|
+
* original proposer of the block
|
|
155
|
+
*/
|
|
99
156
|
proposerAddress: Uint8Array;
|
|
100
157
|
}
|
|
101
158
|
export interface HeaderProtoMsg {
|
|
102
159
|
typeUrl: "/tendermint.types.Header";
|
|
103
160
|
value: Uint8Array;
|
|
104
161
|
}
|
|
105
|
-
/**
|
|
162
|
+
/**
|
|
163
|
+
* Header defines the structure of a block header.
|
|
164
|
+
* @name HeaderAmino
|
|
165
|
+
* @package tendermint.types
|
|
166
|
+
* @see proto type: tendermint.types.Header
|
|
167
|
+
*/
|
|
106
168
|
export interface HeaderAmino {
|
|
107
|
-
/**
|
|
169
|
+
/**
|
|
170
|
+
* basic block info
|
|
171
|
+
*/
|
|
108
172
|
version?: ConsensusAmino;
|
|
109
173
|
chain_id?: string;
|
|
110
174
|
height?: string;
|
|
111
175
|
time?: string;
|
|
112
|
-
/**
|
|
176
|
+
/**
|
|
177
|
+
* prev block info
|
|
178
|
+
*/
|
|
113
179
|
last_block_id?: BlockIDAmino;
|
|
114
|
-
/**
|
|
180
|
+
/**
|
|
181
|
+
* hashes of block data
|
|
182
|
+
*/
|
|
115
183
|
last_commit_hash?: string;
|
|
116
|
-
/**
|
|
184
|
+
/**
|
|
185
|
+
* transactions
|
|
186
|
+
*/
|
|
117
187
|
data_hash?: string;
|
|
118
|
-
/**
|
|
188
|
+
/**
|
|
189
|
+
* hashes from the app output from the prev block
|
|
190
|
+
*/
|
|
119
191
|
validators_hash?: string;
|
|
120
|
-
/**
|
|
192
|
+
/**
|
|
193
|
+
* validators for the next block
|
|
194
|
+
*/
|
|
121
195
|
next_validators_hash?: string;
|
|
122
|
-
/**
|
|
196
|
+
/**
|
|
197
|
+
* consensus params for current block
|
|
198
|
+
*/
|
|
123
199
|
consensus_hash?: string;
|
|
124
|
-
/**
|
|
200
|
+
/**
|
|
201
|
+
* state after txs from the previous block
|
|
202
|
+
*/
|
|
125
203
|
app_hash?: string;
|
|
126
|
-
/**
|
|
204
|
+
/**
|
|
205
|
+
* root hash of all results from the txs from the previous block
|
|
206
|
+
*/
|
|
127
207
|
last_results_hash?: string;
|
|
128
|
-
/**
|
|
208
|
+
/**
|
|
209
|
+
* consensus info
|
|
210
|
+
*/
|
|
129
211
|
evidence_hash?: string;
|
|
130
|
-
/**
|
|
212
|
+
/**
|
|
213
|
+
* original proposer of the block
|
|
214
|
+
*/
|
|
131
215
|
proposer_address?: string;
|
|
132
216
|
}
|
|
133
217
|
export interface HeaderAminoMsg {
|
|
134
218
|
type: "/tendermint.types.Header";
|
|
135
219
|
value: HeaderAmino;
|
|
136
220
|
}
|
|
137
|
-
/**
|
|
221
|
+
/**
|
|
222
|
+
* Data contains the set of transactions included in the block
|
|
223
|
+
* @name Data
|
|
224
|
+
* @package tendermint.types
|
|
225
|
+
* @see proto type: tendermint.types.Data
|
|
226
|
+
*/
|
|
138
227
|
export interface Data {
|
|
139
228
|
/**
|
|
140
229
|
* Txs that will be applied by state @ block.Height+1.
|
|
@@ -147,7 +236,12 @@ export interface DataProtoMsg {
|
|
|
147
236
|
typeUrl: "/tendermint.types.Data";
|
|
148
237
|
value: Uint8Array;
|
|
149
238
|
}
|
|
150
|
-
/**
|
|
239
|
+
/**
|
|
240
|
+
* Data contains the set of transactions included in the block
|
|
241
|
+
* @name DataAmino
|
|
242
|
+
* @package tendermint.types
|
|
243
|
+
* @see proto type: tendermint.types.Data
|
|
244
|
+
*/
|
|
151
245
|
export interface DataAmino {
|
|
152
246
|
/**
|
|
153
247
|
* Txs that will be applied by state @ block.Height+1.
|
|
@@ -163,12 +257,17 @@ export interface DataAminoMsg {
|
|
|
163
257
|
/**
|
|
164
258
|
* Vote represents a prevote or precommit vote from validators for
|
|
165
259
|
* consensus.
|
|
260
|
+
* @name Vote
|
|
261
|
+
* @package tendermint.types
|
|
262
|
+
* @see proto type: tendermint.types.Vote
|
|
166
263
|
*/
|
|
167
264
|
export interface Vote {
|
|
168
265
|
type: SignedMsgType;
|
|
169
266
|
height: bigint;
|
|
170
267
|
round: number;
|
|
171
|
-
/**
|
|
268
|
+
/**
|
|
269
|
+
* zero if vote is nil.
|
|
270
|
+
*/
|
|
172
271
|
blockId: BlockID;
|
|
173
272
|
timestamp: Date;
|
|
174
273
|
validatorAddress: Uint8Array;
|
|
@@ -197,12 +296,17 @@ export interface VoteProtoMsg {
|
|
|
197
296
|
/**
|
|
198
297
|
* Vote represents a prevote or precommit vote from validators for
|
|
199
298
|
* consensus.
|
|
299
|
+
* @name VoteAmino
|
|
300
|
+
* @package tendermint.types
|
|
301
|
+
* @see proto type: tendermint.types.Vote
|
|
200
302
|
*/
|
|
201
303
|
export interface VoteAmino {
|
|
202
304
|
type?: SignedMsgType;
|
|
203
305
|
height?: string;
|
|
204
306
|
round?: number;
|
|
205
|
-
/**
|
|
307
|
+
/**
|
|
308
|
+
* zero if vote is nil.
|
|
309
|
+
*/
|
|
206
310
|
block_id?: BlockIDAmino;
|
|
207
311
|
timestamp?: string;
|
|
208
312
|
validator_address?: string;
|
|
@@ -228,7 +332,12 @@ export interface VoteAminoMsg {
|
|
|
228
332
|
type: "/tendermint.types.Vote";
|
|
229
333
|
value: VoteAmino;
|
|
230
334
|
}
|
|
231
|
-
/**
|
|
335
|
+
/**
|
|
336
|
+
* Commit contains the evidence that a block was committed by a set of validators.
|
|
337
|
+
* @name Commit
|
|
338
|
+
* @package tendermint.types
|
|
339
|
+
* @see proto type: tendermint.types.Commit
|
|
340
|
+
*/
|
|
232
341
|
export interface Commit {
|
|
233
342
|
height: bigint;
|
|
234
343
|
round: number;
|
|
@@ -239,7 +348,12 @@ export interface CommitProtoMsg {
|
|
|
239
348
|
typeUrl: "/tendermint.types.Commit";
|
|
240
349
|
value: Uint8Array;
|
|
241
350
|
}
|
|
242
|
-
/**
|
|
351
|
+
/**
|
|
352
|
+
* Commit contains the evidence that a block was committed by a set of validators.
|
|
353
|
+
* @name CommitAmino
|
|
354
|
+
* @package tendermint.types
|
|
355
|
+
* @see proto type: tendermint.types.Commit
|
|
356
|
+
*/
|
|
243
357
|
export interface CommitAmino {
|
|
244
358
|
height?: string;
|
|
245
359
|
round?: number;
|
|
@@ -250,7 +364,12 @@ export interface CommitAminoMsg {
|
|
|
250
364
|
type: "/tendermint.types.Commit";
|
|
251
365
|
value: CommitAmino;
|
|
252
366
|
}
|
|
253
|
-
/**
|
|
367
|
+
/**
|
|
368
|
+
* CommitSig is a part of the Vote included in a Commit.
|
|
369
|
+
* @name CommitSig
|
|
370
|
+
* @package tendermint.types
|
|
371
|
+
* @see proto type: tendermint.types.CommitSig
|
|
372
|
+
*/
|
|
254
373
|
export interface CommitSig {
|
|
255
374
|
blockIdFlag: BlockIDFlag;
|
|
256
375
|
validatorAddress: Uint8Array;
|
|
@@ -261,7 +380,12 @@ export interface CommitSigProtoMsg {
|
|
|
261
380
|
typeUrl: "/tendermint.types.CommitSig";
|
|
262
381
|
value: Uint8Array;
|
|
263
382
|
}
|
|
264
|
-
/**
|
|
383
|
+
/**
|
|
384
|
+
* CommitSig is a part of the Vote included in a Commit.
|
|
385
|
+
* @name CommitSigAmino
|
|
386
|
+
* @package tendermint.types
|
|
387
|
+
* @see proto type: tendermint.types.CommitSig
|
|
388
|
+
*/
|
|
265
389
|
export interface CommitSigAmino {
|
|
266
390
|
block_id_flag?: BlockIDFlag;
|
|
267
391
|
validator_address?: string;
|
|
@@ -272,6 +396,11 @@ export interface CommitSigAminoMsg {
|
|
|
272
396
|
type: "/tendermint.types.CommitSig";
|
|
273
397
|
value: CommitSigAmino;
|
|
274
398
|
}
|
|
399
|
+
/**
|
|
400
|
+
* @name ExtendedCommit
|
|
401
|
+
* @package tendermint.types
|
|
402
|
+
* @see proto type: tendermint.types.ExtendedCommit
|
|
403
|
+
*/
|
|
275
404
|
export interface ExtendedCommit {
|
|
276
405
|
height: bigint;
|
|
277
406
|
round: number;
|
|
@@ -282,6 +411,11 @@ export interface ExtendedCommitProtoMsg {
|
|
|
282
411
|
typeUrl: "/tendermint.types.ExtendedCommit";
|
|
283
412
|
value: Uint8Array;
|
|
284
413
|
}
|
|
414
|
+
/**
|
|
415
|
+
* @name ExtendedCommitAmino
|
|
416
|
+
* @package tendermint.types
|
|
417
|
+
* @see proto type: tendermint.types.ExtendedCommit
|
|
418
|
+
*/
|
|
285
419
|
export interface ExtendedCommitAmino {
|
|
286
420
|
height?: string;
|
|
287
421
|
round?: number;
|
|
@@ -296,15 +430,22 @@ export interface ExtendedCommitAminoMsg {
|
|
|
296
430
|
* ExtendedCommitSig retains all the same fields as CommitSig but adds vote
|
|
297
431
|
* extension-related fields. We use two signatures to ensure backwards compatibility.
|
|
298
432
|
* That is the digest of the original signature is still the same in prior versions
|
|
433
|
+
* @name ExtendedCommitSig
|
|
434
|
+
* @package tendermint.types
|
|
435
|
+
* @see proto type: tendermint.types.ExtendedCommitSig
|
|
299
436
|
*/
|
|
300
437
|
export interface ExtendedCommitSig {
|
|
301
438
|
blockIdFlag: BlockIDFlag;
|
|
302
439
|
validatorAddress: Uint8Array;
|
|
303
440
|
timestamp: Date;
|
|
304
441
|
signature: Uint8Array;
|
|
305
|
-
/**
|
|
442
|
+
/**
|
|
443
|
+
* Vote extension data
|
|
444
|
+
*/
|
|
306
445
|
extension: Uint8Array;
|
|
307
|
-
/**
|
|
446
|
+
/**
|
|
447
|
+
* Vote extension signature
|
|
448
|
+
*/
|
|
308
449
|
extensionSignature: Uint8Array;
|
|
309
450
|
}
|
|
310
451
|
export interface ExtendedCommitSigProtoMsg {
|
|
@@ -315,21 +456,33 @@ export interface ExtendedCommitSigProtoMsg {
|
|
|
315
456
|
* ExtendedCommitSig retains all the same fields as CommitSig but adds vote
|
|
316
457
|
* extension-related fields. We use two signatures to ensure backwards compatibility.
|
|
317
458
|
* That is the digest of the original signature is still the same in prior versions
|
|
459
|
+
* @name ExtendedCommitSigAmino
|
|
460
|
+
* @package tendermint.types
|
|
461
|
+
* @see proto type: tendermint.types.ExtendedCommitSig
|
|
318
462
|
*/
|
|
319
463
|
export interface ExtendedCommitSigAmino {
|
|
320
464
|
block_id_flag?: BlockIDFlag;
|
|
321
465
|
validator_address?: string;
|
|
322
466
|
timestamp?: string;
|
|
323
467
|
signature?: string;
|
|
324
|
-
/**
|
|
468
|
+
/**
|
|
469
|
+
* Vote extension data
|
|
470
|
+
*/
|
|
325
471
|
extension?: string;
|
|
326
|
-
/**
|
|
472
|
+
/**
|
|
473
|
+
* Vote extension signature
|
|
474
|
+
*/
|
|
327
475
|
extension_signature?: string;
|
|
328
476
|
}
|
|
329
477
|
export interface ExtendedCommitSigAminoMsg {
|
|
330
478
|
type: "/tendermint.types.ExtendedCommitSig";
|
|
331
479
|
value: ExtendedCommitSigAmino;
|
|
332
480
|
}
|
|
481
|
+
/**
|
|
482
|
+
* @name Proposal
|
|
483
|
+
* @package tendermint.types
|
|
484
|
+
* @see proto type: tendermint.types.Proposal
|
|
485
|
+
*/
|
|
333
486
|
export interface Proposal {
|
|
334
487
|
type: SignedMsgType;
|
|
335
488
|
height: bigint;
|
|
@@ -343,6 +496,11 @@ export interface ProposalProtoMsg {
|
|
|
343
496
|
typeUrl: "/tendermint.types.Proposal";
|
|
344
497
|
value: Uint8Array;
|
|
345
498
|
}
|
|
499
|
+
/**
|
|
500
|
+
* @name ProposalAmino
|
|
501
|
+
* @package tendermint.types
|
|
502
|
+
* @see proto type: tendermint.types.Proposal
|
|
503
|
+
*/
|
|
346
504
|
export interface ProposalAmino {
|
|
347
505
|
type?: SignedMsgType;
|
|
348
506
|
height?: string;
|
|
@@ -356,6 +514,11 @@ export interface ProposalAminoMsg {
|
|
|
356
514
|
type: "/tendermint.types.Proposal";
|
|
357
515
|
value: ProposalAmino;
|
|
358
516
|
}
|
|
517
|
+
/**
|
|
518
|
+
* @name SignedHeader
|
|
519
|
+
* @package tendermint.types
|
|
520
|
+
* @see proto type: tendermint.types.SignedHeader
|
|
521
|
+
*/
|
|
359
522
|
export interface SignedHeader {
|
|
360
523
|
header?: Header;
|
|
361
524
|
commit?: Commit;
|
|
@@ -364,6 +527,11 @@ export interface SignedHeaderProtoMsg {
|
|
|
364
527
|
typeUrl: "/tendermint.types.SignedHeader";
|
|
365
528
|
value: Uint8Array;
|
|
366
529
|
}
|
|
530
|
+
/**
|
|
531
|
+
* @name SignedHeaderAmino
|
|
532
|
+
* @package tendermint.types
|
|
533
|
+
* @see proto type: tendermint.types.SignedHeader
|
|
534
|
+
*/
|
|
367
535
|
export interface SignedHeaderAmino {
|
|
368
536
|
header?: HeaderAmino;
|
|
369
537
|
commit?: CommitAmino;
|
|
@@ -372,6 +540,11 @@ export interface SignedHeaderAminoMsg {
|
|
|
372
540
|
type: "/tendermint.types.SignedHeader";
|
|
373
541
|
value: SignedHeaderAmino;
|
|
374
542
|
}
|
|
543
|
+
/**
|
|
544
|
+
* @name LightBlock
|
|
545
|
+
* @package tendermint.types
|
|
546
|
+
* @see proto type: tendermint.types.LightBlock
|
|
547
|
+
*/
|
|
375
548
|
export interface LightBlock {
|
|
376
549
|
signedHeader?: SignedHeader;
|
|
377
550
|
validatorSet?: ValidatorSet;
|
|
@@ -380,6 +553,11 @@ export interface LightBlockProtoMsg {
|
|
|
380
553
|
typeUrl: "/tendermint.types.LightBlock";
|
|
381
554
|
value: Uint8Array;
|
|
382
555
|
}
|
|
556
|
+
/**
|
|
557
|
+
* @name LightBlockAmino
|
|
558
|
+
* @package tendermint.types
|
|
559
|
+
* @see proto type: tendermint.types.LightBlock
|
|
560
|
+
*/
|
|
383
561
|
export interface LightBlockAmino {
|
|
384
562
|
signed_header?: SignedHeaderAmino;
|
|
385
563
|
validator_set?: ValidatorSetAmino;
|
|
@@ -388,6 +566,11 @@ export interface LightBlockAminoMsg {
|
|
|
388
566
|
type: "/tendermint.types.LightBlock";
|
|
389
567
|
value: LightBlockAmino;
|
|
390
568
|
}
|
|
569
|
+
/**
|
|
570
|
+
* @name BlockMeta
|
|
571
|
+
* @package tendermint.types
|
|
572
|
+
* @see proto type: tendermint.types.BlockMeta
|
|
573
|
+
*/
|
|
391
574
|
export interface BlockMeta {
|
|
392
575
|
blockId: BlockID;
|
|
393
576
|
blockSize: bigint;
|
|
@@ -398,6 +581,11 @@ export interface BlockMetaProtoMsg {
|
|
|
398
581
|
typeUrl: "/tendermint.types.BlockMeta";
|
|
399
582
|
value: Uint8Array;
|
|
400
583
|
}
|
|
584
|
+
/**
|
|
585
|
+
* @name BlockMetaAmino
|
|
586
|
+
* @package tendermint.types
|
|
587
|
+
* @see proto type: tendermint.types.BlockMeta
|
|
588
|
+
*/
|
|
401
589
|
export interface BlockMetaAmino {
|
|
402
590
|
block_id?: BlockIDAmino;
|
|
403
591
|
block_size?: string;
|
|
@@ -408,7 +596,12 @@ export interface BlockMetaAminoMsg {
|
|
|
408
596
|
type: "/tendermint.types.BlockMeta";
|
|
409
597
|
value: BlockMetaAmino;
|
|
410
598
|
}
|
|
411
|
-
/**
|
|
599
|
+
/**
|
|
600
|
+
* TxProof represents a Merkle proof of the presence of a transaction in the Merkle tree.
|
|
601
|
+
* @name TxProof
|
|
602
|
+
* @package tendermint.types
|
|
603
|
+
* @see proto type: tendermint.types.TxProof
|
|
604
|
+
*/
|
|
412
605
|
export interface TxProof {
|
|
413
606
|
rootHash: Uint8Array;
|
|
414
607
|
data: Uint8Array;
|
|
@@ -418,7 +611,12 @@ export interface TxProofProtoMsg {
|
|
|
418
611
|
typeUrl: "/tendermint.types.TxProof";
|
|
419
612
|
value: Uint8Array;
|
|
420
613
|
}
|
|
421
|
-
/**
|
|
614
|
+
/**
|
|
615
|
+
* TxProof represents a Merkle proof of the presence of a transaction in the Merkle tree.
|
|
616
|
+
* @name TxProofAmino
|
|
617
|
+
* @package tendermint.types
|
|
618
|
+
* @see proto type: tendermint.types.TxProof
|
|
619
|
+
*/
|
|
422
620
|
export interface TxProofAmino {
|
|
423
621
|
root_hash?: string;
|
|
424
622
|
data?: string;
|
|
@@ -428,6 +626,12 @@ export interface TxProofAminoMsg {
|
|
|
428
626
|
type: "/tendermint.types.TxProof";
|
|
429
627
|
value: TxProofAmino;
|
|
430
628
|
}
|
|
629
|
+
/**
|
|
630
|
+
* PartsetHeader
|
|
631
|
+
* @name PartSetHeader
|
|
632
|
+
* @package tendermint.types
|
|
633
|
+
* @see proto type: tendermint.types.PartSetHeader
|
|
634
|
+
*/
|
|
431
635
|
export declare const PartSetHeader: {
|
|
432
636
|
typeUrl: string;
|
|
433
637
|
encode(message: PartSetHeader, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -440,6 +644,11 @@ export declare const PartSetHeader: {
|
|
|
440
644
|
toProto(message: PartSetHeader): Uint8Array;
|
|
441
645
|
toProtoMsg(message: PartSetHeader): PartSetHeaderProtoMsg;
|
|
442
646
|
};
|
|
647
|
+
/**
|
|
648
|
+
* @name Part
|
|
649
|
+
* @package tendermint.types
|
|
650
|
+
* @see proto type: tendermint.types.Part
|
|
651
|
+
*/
|
|
443
652
|
export declare const Part: {
|
|
444
653
|
typeUrl: string;
|
|
445
654
|
encode(message: Part, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -452,6 +661,12 @@ export declare const Part: {
|
|
|
452
661
|
toProto(message: Part): Uint8Array;
|
|
453
662
|
toProtoMsg(message: Part): PartProtoMsg;
|
|
454
663
|
};
|
|
664
|
+
/**
|
|
665
|
+
* BlockID
|
|
666
|
+
* @name BlockID
|
|
667
|
+
* @package tendermint.types
|
|
668
|
+
* @see proto type: tendermint.types.BlockID
|
|
669
|
+
*/
|
|
455
670
|
export declare const BlockID: {
|
|
456
671
|
typeUrl: string;
|
|
457
672
|
encode(message: BlockID, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -464,6 +679,12 @@ export declare const BlockID: {
|
|
|
464
679
|
toProto(message: BlockID): Uint8Array;
|
|
465
680
|
toProtoMsg(message: BlockID): BlockIDProtoMsg;
|
|
466
681
|
};
|
|
682
|
+
/**
|
|
683
|
+
* Header defines the structure of a block header.
|
|
684
|
+
* @name Header
|
|
685
|
+
* @package tendermint.types
|
|
686
|
+
* @see proto type: tendermint.types.Header
|
|
687
|
+
*/
|
|
467
688
|
export declare const Header: {
|
|
468
689
|
typeUrl: string;
|
|
469
690
|
encode(message: Header, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -476,6 +697,12 @@ export declare const Header: {
|
|
|
476
697
|
toProto(message: Header): Uint8Array;
|
|
477
698
|
toProtoMsg(message: Header): HeaderProtoMsg;
|
|
478
699
|
};
|
|
700
|
+
/**
|
|
701
|
+
* Data contains the set of transactions included in the block
|
|
702
|
+
* @name Data
|
|
703
|
+
* @package tendermint.types
|
|
704
|
+
* @see proto type: tendermint.types.Data
|
|
705
|
+
*/
|
|
479
706
|
export declare const Data: {
|
|
480
707
|
typeUrl: string;
|
|
481
708
|
encode(message: Data, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -488,6 +715,13 @@ export declare const Data: {
|
|
|
488
715
|
toProto(message: Data): Uint8Array;
|
|
489
716
|
toProtoMsg(message: Data): DataProtoMsg;
|
|
490
717
|
};
|
|
718
|
+
/**
|
|
719
|
+
* Vote represents a prevote or precommit vote from validators for
|
|
720
|
+
* consensus.
|
|
721
|
+
* @name Vote
|
|
722
|
+
* @package tendermint.types
|
|
723
|
+
* @see proto type: tendermint.types.Vote
|
|
724
|
+
*/
|
|
491
725
|
export declare const Vote: {
|
|
492
726
|
typeUrl: string;
|
|
493
727
|
encode(message: Vote, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -500,6 +734,12 @@ export declare const Vote: {
|
|
|
500
734
|
toProto(message: Vote): Uint8Array;
|
|
501
735
|
toProtoMsg(message: Vote): VoteProtoMsg;
|
|
502
736
|
};
|
|
737
|
+
/**
|
|
738
|
+
* Commit contains the evidence that a block was committed by a set of validators.
|
|
739
|
+
* @name Commit
|
|
740
|
+
* @package tendermint.types
|
|
741
|
+
* @see proto type: tendermint.types.Commit
|
|
742
|
+
*/
|
|
503
743
|
export declare const Commit: {
|
|
504
744
|
typeUrl: string;
|
|
505
745
|
encode(message: Commit, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -512,6 +752,12 @@ export declare const Commit: {
|
|
|
512
752
|
toProto(message: Commit): Uint8Array;
|
|
513
753
|
toProtoMsg(message: Commit): CommitProtoMsg;
|
|
514
754
|
};
|
|
755
|
+
/**
|
|
756
|
+
* CommitSig is a part of the Vote included in a Commit.
|
|
757
|
+
* @name CommitSig
|
|
758
|
+
* @package tendermint.types
|
|
759
|
+
* @see proto type: tendermint.types.CommitSig
|
|
760
|
+
*/
|
|
515
761
|
export declare const CommitSig: {
|
|
516
762
|
typeUrl: string;
|
|
517
763
|
encode(message: CommitSig, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -524,6 +770,11 @@ export declare const CommitSig: {
|
|
|
524
770
|
toProto(message: CommitSig): Uint8Array;
|
|
525
771
|
toProtoMsg(message: CommitSig): CommitSigProtoMsg;
|
|
526
772
|
};
|
|
773
|
+
/**
|
|
774
|
+
* @name ExtendedCommit
|
|
775
|
+
* @package tendermint.types
|
|
776
|
+
* @see proto type: tendermint.types.ExtendedCommit
|
|
777
|
+
*/
|
|
527
778
|
export declare const ExtendedCommit: {
|
|
528
779
|
typeUrl: string;
|
|
529
780
|
encode(message: ExtendedCommit, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -536,6 +787,14 @@ export declare const ExtendedCommit: {
|
|
|
536
787
|
toProto(message: ExtendedCommit): Uint8Array;
|
|
537
788
|
toProtoMsg(message: ExtendedCommit): ExtendedCommitProtoMsg;
|
|
538
789
|
};
|
|
790
|
+
/**
|
|
791
|
+
* ExtendedCommitSig retains all the same fields as CommitSig but adds vote
|
|
792
|
+
* extension-related fields. We use two signatures to ensure backwards compatibility.
|
|
793
|
+
* That is the digest of the original signature is still the same in prior versions
|
|
794
|
+
* @name ExtendedCommitSig
|
|
795
|
+
* @package tendermint.types
|
|
796
|
+
* @see proto type: tendermint.types.ExtendedCommitSig
|
|
797
|
+
*/
|
|
539
798
|
export declare const ExtendedCommitSig: {
|
|
540
799
|
typeUrl: string;
|
|
541
800
|
encode(message: ExtendedCommitSig, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -548,6 +807,11 @@ export declare const ExtendedCommitSig: {
|
|
|
548
807
|
toProto(message: ExtendedCommitSig): Uint8Array;
|
|
549
808
|
toProtoMsg(message: ExtendedCommitSig): ExtendedCommitSigProtoMsg;
|
|
550
809
|
};
|
|
810
|
+
/**
|
|
811
|
+
* @name Proposal
|
|
812
|
+
* @package tendermint.types
|
|
813
|
+
* @see proto type: tendermint.types.Proposal
|
|
814
|
+
*/
|
|
551
815
|
export declare const Proposal: {
|
|
552
816
|
typeUrl: string;
|
|
553
817
|
encode(message: Proposal, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -560,6 +824,11 @@ export declare const Proposal: {
|
|
|
560
824
|
toProto(message: Proposal): Uint8Array;
|
|
561
825
|
toProtoMsg(message: Proposal): ProposalProtoMsg;
|
|
562
826
|
};
|
|
827
|
+
/**
|
|
828
|
+
* @name SignedHeader
|
|
829
|
+
* @package tendermint.types
|
|
830
|
+
* @see proto type: tendermint.types.SignedHeader
|
|
831
|
+
*/
|
|
563
832
|
export declare const SignedHeader: {
|
|
564
833
|
typeUrl: string;
|
|
565
834
|
encode(message: SignedHeader, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -572,6 +841,11 @@ export declare const SignedHeader: {
|
|
|
572
841
|
toProto(message: SignedHeader): Uint8Array;
|
|
573
842
|
toProtoMsg(message: SignedHeader): SignedHeaderProtoMsg;
|
|
574
843
|
};
|
|
844
|
+
/**
|
|
845
|
+
* @name LightBlock
|
|
846
|
+
* @package tendermint.types
|
|
847
|
+
* @see proto type: tendermint.types.LightBlock
|
|
848
|
+
*/
|
|
575
849
|
export declare const LightBlock: {
|
|
576
850
|
typeUrl: string;
|
|
577
851
|
encode(message: LightBlock, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -584,6 +858,11 @@ export declare const LightBlock: {
|
|
|
584
858
|
toProto(message: LightBlock): Uint8Array;
|
|
585
859
|
toProtoMsg(message: LightBlock): LightBlockProtoMsg;
|
|
586
860
|
};
|
|
861
|
+
/**
|
|
862
|
+
* @name BlockMeta
|
|
863
|
+
* @package tendermint.types
|
|
864
|
+
* @see proto type: tendermint.types.BlockMeta
|
|
865
|
+
*/
|
|
587
866
|
export declare const BlockMeta: {
|
|
588
867
|
typeUrl: string;
|
|
589
868
|
encode(message: BlockMeta, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -596,6 +875,12 @@ export declare const BlockMeta: {
|
|
|
596
875
|
toProto(message: BlockMeta): Uint8Array;
|
|
597
876
|
toProtoMsg(message: BlockMeta): BlockMetaProtoMsg;
|
|
598
877
|
};
|
|
878
|
+
/**
|
|
879
|
+
* TxProof represents a Merkle proof of the presence of a transaction in the Merkle tree.
|
|
880
|
+
* @name TxProof
|
|
881
|
+
* @package tendermint.types
|
|
882
|
+
* @see proto type: tendermint.types.TxProof
|
|
883
|
+
*/
|
|
599
884
|
export declare const TxProof: {
|
|
600
885
|
typeUrl: string;
|
|
601
886
|
encode(message: TxProof, writer?: BinaryWriter): BinaryWriter;
|