@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
|
@@ -301,6 +301,11 @@ function createBaseRequest() {
|
|
|
301
301
|
finalizeBlock: undefined
|
|
302
302
|
};
|
|
303
303
|
}
|
|
304
|
+
/**
|
|
305
|
+
* @name Request
|
|
306
|
+
* @package tendermint.abci
|
|
307
|
+
* @see proto type: tendermint.abci.Request
|
|
308
|
+
*/
|
|
304
309
|
export const Request = {
|
|
305
310
|
typeUrl: "/tendermint.abci.Request",
|
|
306
311
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -529,6 +534,11 @@ function createBaseRequestEcho() {
|
|
|
529
534
|
message: ""
|
|
530
535
|
};
|
|
531
536
|
}
|
|
537
|
+
/**
|
|
538
|
+
* @name RequestEcho
|
|
539
|
+
* @package tendermint.abci
|
|
540
|
+
* @see proto type: tendermint.abci.RequestEcho
|
|
541
|
+
*/
|
|
532
542
|
export const RequestEcho = {
|
|
533
543
|
typeUrl: "/tendermint.abci.RequestEcho",
|
|
534
544
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -590,6 +600,11 @@ export const RequestEcho = {
|
|
|
590
600
|
function createBaseRequestFlush() {
|
|
591
601
|
return {};
|
|
592
602
|
}
|
|
603
|
+
/**
|
|
604
|
+
* @name RequestFlush
|
|
605
|
+
* @package tendermint.abci
|
|
606
|
+
* @see proto type: tendermint.abci.RequestFlush
|
|
607
|
+
*/
|
|
593
608
|
export const RequestFlush = {
|
|
594
609
|
typeUrl: "/tendermint.abci.RequestFlush",
|
|
595
610
|
encode(_, writer = BinaryWriter.create()) {
|
|
@@ -645,6 +660,11 @@ function createBaseRequestInfo() {
|
|
|
645
660
|
abciVersion: ""
|
|
646
661
|
};
|
|
647
662
|
}
|
|
663
|
+
/**
|
|
664
|
+
* @name RequestInfo
|
|
665
|
+
* @package tendermint.abci
|
|
666
|
+
* @see proto type: tendermint.abci.RequestInfo
|
|
667
|
+
*/
|
|
648
668
|
export const RequestInfo = {
|
|
649
669
|
typeUrl: "/tendermint.abci.RequestInfo",
|
|
650
670
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -746,6 +766,11 @@ function createBaseRequestInitChain() {
|
|
|
746
766
|
initialHeight: BigInt(0)
|
|
747
767
|
};
|
|
748
768
|
}
|
|
769
|
+
/**
|
|
770
|
+
* @name RequestInitChain
|
|
771
|
+
* @package tendermint.abci
|
|
772
|
+
* @see proto type: tendermint.abci.RequestInitChain
|
|
773
|
+
*/
|
|
749
774
|
export const RequestInitChain = {
|
|
750
775
|
typeUrl: "/tendermint.abci.RequestInitChain",
|
|
751
776
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -870,6 +895,11 @@ function createBaseRequestQuery() {
|
|
|
870
895
|
prove: false
|
|
871
896
|
};
|
|
872
897
|
}
|
|
898
|
+
/**
|
|
899
|
+
* @name RequestQuery
|
|
900
|
+
* @package tendermint.abci
|
|
901
|
+
* @see proto type: tendermint.abci.RequestQuery
|
|
902
|
+
*/
|
|
873
903
|
export const RequestQuery = {
|
|
874
904
|
typeUrl: "/tendermint.abci.RequestQuery",
|
|
875
905
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -967,6 +997,11 @@ function createBaseRequestCheckTx() {
|
|
|
967
997
|
type: 0
|
|
968
998
|
};
|
|
969
999
|
}
|
|
1000
|
+
/**
|
|
1001
|
+
* @name RequestCheckTx
|
|
1002
|
+
* @package tendermint.abci
|
|
1003
|
+
* @see proto type: tendermint.abci.RequestCheckTx
|
|
1004
|
+
*/
|
|
970
1005
|
export const RequestCheckTx = {
|
|
971
1006
|
typeUrl: "/tendermint.abci.RequestCheckTx",
|
|
972
1007
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -1039,6 +1074,11 @@ export const RequestCheckTx = {
|
|
|
1039
1074
|
function createBaseRequestCommit() {
|
|
1040
1075
|
return {};
|
|
1041
1076
|
}
|
|
1077
|
+
/**
|
|
1078
|
+
* @name RequestCommit
|
|
1079
|
+
* @package tendermint.abci
|
|
1080
|
+
* @see proto type: tendermint.abci.RequestCommit
|
|
1081
|
+
*/
|
|
1042
1082
|
export const RequestCommit = {
|
|
1043
1083
|
typeUrl: "/tendermint.abci.RequestCommit",
|
|
1044
1084
|
encode(_, writer = BinaryWriter.create()) {
|
|
@@ -1089,6 +1129,12 @@ export const RequestCommit = {
|
|
|
1089
1129
|
function createBaseRequestListSnapshots() {
|
|
1090
1130
|
return {};
|
|
1091
1131
|
}
|
|
1132
|
+
/**
|
|
1133
|
+
* lists available snapshots
|
|
1134
|
+
* @name RequestListSnapshots
|
|
1135
|
+
* @package tendermint.abci
|
|
1136
|
+
* @see proto type: tendermint.abci.RequestListSnapshots
|
|
1137
|
+
*/
|
|
1092
1138
|
export const RequestListSnapshots = {
|
|
1093
1139
|
typeUrl: "/tendermint.abci.RequestListSnapshots",
|
|
1094
1140
|
encode(_, writer = BinaryWriter.create()) {
|
|
@@ -1142,6 +1188,12 @@ function createBaseRequestOfferSnapshot() {
|
|
|
1142
1188
|
appHash: new Uint8Array()
|
|
1143
1189
|
};
|
|
1144
1190
|
}
|
|
1191
|
+
/**
|
|
1192
|
+
* offers a snapshot to the application
|
|
1193
|
+
* @name RequestOfferSnapshot
|
|
1194
|
+
* @package tendermint.abci
|
|
1195
|
+
* @see proto type: tendermint.abci.RequestOfferSnapshot
|
|
1196
|
+
*/
|
|
1145
1197
|
export const RequestOfferSnapshot = {
|
|
1146
1198
|
typeUrl: "/tendermint.abci.RequestOfferSnapshot",
|
|
1147
1199
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -1218,6 +1270,12 @@ function createBaseRequestLoadSnapshotChunk() {
|
|
|
1218
1270
|
chunk: 0
|
|
1219
1271
|
};
|
|
1220
1272
|
}
|
|
1273
|
+
/**
|
|
1274
|
+
* loads a snapshot chunk
|
|
1275
|
+
* @name RequestLoadSnapshotChunk
|
|
1276
|
+
* @package tendermint.abci
|
|
1277
|
+
* @see proto type: tendermint.abci.RequestLoadSnapshotChunk
|
|
1278
|
+
*/
|
|
1221
1279
|
export const RequestLoadSnapshotChunk = {
|
|
1222
1280
|
typeUrl: "/tendermint.abci.RequestLoadSnapshotChunk",
|
|
1223
1281
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -1305,6 +1363,12 @@ function createBaseRequestApplySnapshotChunk() {
|
|
|
1305
1363
|
sender: ""
|
|
1306
1364
|
};
|
|
1307
1365
|
}
|
|
1366
|
+
/**
|
|
1367
|
+
* Applies a snapshot chunk
|
|
1368
|
+
* @name RequestApplySnapshotChunk
|
|
1369
|
+
* @package tendermint.abci
|
|
1370
|
+
* @see proto type: tendermint.abci.RequestApplySnapshotChunk
|
|
1371
|
+
*/
|
|
1308
1372
|
export const RequestApplySnapshotChunk = {
|
|
1309
1373
|
typeUrl: "/tendermint.abci.RequestApplySnapshotChunk",
|
|
1310
1374
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -1397,6 +1461,11 @@ function createBaseRequestPrepareProposal() {
|
|
|
1397
1461
|
proposerAddress: new Uint8Array()
|
|
1398
1462
|
};
|
|
1399
1463
|
}
|
|
1464
|
+
/**
|
|
1465
|
+
* @name RequestPrepareProposal
|
|
1466
|
+
* @package tendermint.abci
|
|
1467
|
+
* @see proto type: tendermint.abci.RequestPrepareProposal
|
|
1468
|
+
*/
|
|
1400
1469
|
export const RequestPrepareProposal = {
|
|
1401
1470
|
typeUrl: "/tendermint.abci.RequestPrepareProposal",
|
|
1402
1471
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -1550,6 +1619,11 @@ function createBaseRequestProcessProposal() {
|
|
|
1550
1619
|
proposerAddress: new Uint8Array()
|
|
1551
1620
|
};
|
|
1552
1621
|
}
|
|
1622
|
+
/**
|
|
1623
|
+
* @name RequestProcessProposal
|
|
1624
|
+
* @package tendermint.abci
|
|
1625
|
+
* @see proto type: tendermint.abci.RequestProcessProposal
|
|
1626
|
+
*/
|
|
1553
1627
|
export const RequestProcessProposal = {
|
|
1554
1628
|
typeUrl: "/tendermint.abci.RequestProcessProposal",
|
|
1555
1629
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -1703,6 +1777,12 @@ function createBaseRequestExtendVote() {
|
|
|
1703
1777
|
proposerAddress: new Uint8Array()
|
|
1704
1778
|
};
|
|
1705
1779
|
}
|
|
1780
|
+
/**
|
|
1781
|
+
* Extends a vote with application-injected data
|
|
1782
|
+
* @name RequestExtendVote
|
|
1783
|
+
* @package tendermint.abci
|
|
1784
|
+
* @see proto type: tendermint.abci.RequestExtendVote
|
|
1785
|
+
*/
|
|
1706
1786
|
export const RequestExtendVote = {
|
|
1707
1787
|
typeUrl: "/tendermint.abci.RequestExtendVote",
|
|
1708
1788
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -1852,6 +1932,12 @@ function createBaseRequestVerifyVoteExtension() {
|
|
|
1852
1932
|
voteExtension: new Uint8Array()
|
|
1853
1933
|
};
|
|
1854
1934
|
}
|
|
1935
|
+
/**
|
|
1936
|
+
* Verify the vote extension
|
|
1937
|
+
* @name RequestVerifyVoteExtension
|
|
1938
|
+
* @package tendermint.abci
|
|
1939
|
+
* @see proto type: tendermint.abci.RequestVerifyVoteExtension
|
|
1940
|
+
*/
|
|
1855
1941
|
export const RequestVerifyVoteExtension = {
|
|
1856
1942
|
typeUrl: "/tendermint.abci.RequestVerifyVoteExtension",
|
|
1857
1943
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -1955,6 +2041,11 @@ function createBaseRequestFinalizeBlock() {
|
|
|
1955
2041
|
proposerAddress: new Uint8Array()
|
|
1956
2042
|
};
|
|
1957
2043
|
}
|
|
2044
|
+
/**
|
|
2045
|
+
* @name RequestFinalizeBlock
|
|
2046
|
+
* @package tendermint.abci
|
|
2047
|
+
* @see proto type: tendermint.abci.RequestFinalizeBlock
|
|
2048
|
+
*/
|
|
1958
2049
|
export const RequestFinalizeBlock = {
|
|
1959
2050
|
typeUrl: "/tendermint.abci.RequestFinalizeBlock",
|
|
1960
2051
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -2117,6 +2208,11 @@ function createBaseResponse() {
|
|
|
2117
2208
|
finalizeBlock: undefined
|
|
2118
2209
|
};
|
|
2119
2210
|
}
|
|
2211
|
+
/**
|
|
2212
|
+
* @name Response
|
|
2213
|
+
* @package tendermint.abci
|
|
2214
|
+
* @see proto type: tendermint.abci.Response
|
|
2215
|
+
*/
|
|
2120
2216
|
export const Response = {
|
|
2121
2217
|
typeUrl: "/tendermint.abci.Response",
|
|
2122
2218
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -2356,6 +2452,12 @@ function createBaseResponseException() {
|
|
|
2356
2452
|
error: ""
|
|
2357
2453
|
};
|
|
2358
2454
|
}
|
|
2455
|
+
/**
|
|
2456
|
+
* nondeterministic
|
|
2457
|
+
* @name ResponseException
|
|
2458
|
+
* @package tendermint.abci
|
|
2459
|
+
* @see proto type: tendermint.abci.ResponseException
|
|
2460
|
+
*/
|
|
2359
2461
|
export const ResponseException = {
|
|
2360
2462
|
typeUrl: "/tendermint.abci.ResponseException",
|
|
2361
2463
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -2419,6 +2521,11 @@ function createBaseResponseEcho() {
|
|
|
2419
2521
|
message: ""
|
|
2420
2522
|
};
|
|
2421
2523
|
}
|
|
2524
|
+
/**
|
|
2525
|
+
* @name ResponseEcho
|
|
2526
|
+
* @package tendermint.abci
|
|
2527
|
+
* @see proto type: tendermint.abci.ResponseEcho
|
|
2528
|
+
*/
|
|
2422
2529
|
export const ResponseEcho = {
|
|
2423
2530
|
typeUrl: "/tendermint.abci.ResponseEcho",
|
|
2424
2531
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -2480,6 +2587,11 @@ export const ResponseEcho = {
|
|
|
2480
2587
|
function createBaseResponseFlush() {
|
|
2481
2588
|
return {};
|
|
2482
2589
|
}
|
|
2590
|
+
/**
|
|
2591
|
+
* @name ResponseFlush
|
|
2592
|
+
* @package tendermint.abci
|
|
2593
|
+
* @see proto type: tendermint.abci.ResponseFlush
|
|
2594
|
+
*/
|
|
2483
2595
|
export const ResponseFlush = {
|
|
2484
2596
|
typeUrl: "/tendermint.abci.ResponseFlush",
|
|
2485
2597
|
encode(_, writer = BinaryWriter.create()) {
|
|
@@ -2536,6 +2648,11 @@ function createBaseResponseInfo() {
|
|
|
2536
2648
|
lastBlockAppHash: new Uint8Array()
|
|
2537
2649
|
};
|
|
2538
2650
|
}
|
|
2651
|
+
/**
|
|
2652
|
+
* @name ResponseInfo
|
|
2653
|
+
* @package tendermint.abci
|
|
2654
|
+
* @see proto type: tendermint.abci.ResponseInfo
|
|
2655
|
+
*/
|
|
2539
2656
|
export const ResponseInfo = {
|
|
2540
2657
|
typeUrl: "/tendermint.abci.ResponseInfo",
|
|
2541
2658
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -2645,6 +2762,11 @@ function createBaseResponseInitChain() {
|
|
|
2645
2762
|
appHash: new Uint8Array()
|
|
2646
2763
|
};
|
|
2647
2764
|
}
|
|
2765
|
+
/**
|
|
2766
|
+
* @name ResponseInitChain
|
|
2767
|
+
* @package tendermint.abci
|
|
2768
|
+
* @see proto type: tendermint.abci.ResponseInitChain
|
|
2769
|
+
*/
|
|
2648
2770
|
export const ResponseInitChain = {
|
|
2649
2771
|
typeUrl: "/tendermint.abci.ResponseInitChain",
|
|
2650
2772
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -2741,6 +2863,11 @@ function createBaseResponseQuery() {
|
|
|
2741
2863
|
codespace: ""
|
|
2742
2864
|
};
|
|
2743
2865
|
}
|
|
2866
|
+
/**
|
|
2867
|
+
* @name ResponseQuery
|
|
2868
|
+
* @package tendermint.abci
|
|
2869
|
+
* @see proto type: tendermint.abci.ResponseQuery
|
|
2870
|
+
*/
|
|
2744
2871
|
export const ResponseQuery = {
|
|
2745
2872
|
typeUrl: "/tendermint.abci.ResponseQuery",
|
|
2746
2873
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -2899,6 +3026,11 @@ function createBaseResponseCheckTx() {
|
|
|
2899
3026
|
codespace: ""
|
|
2900
3027
|
};
|
|
2901
3028
|
}
|
|
3029
|
+
/**
|
|
3030
|
+
* @name ResponseCheckTx
|
|
3031
|
+
* @package tendermint.abci
|
|
3032
|
+
* @see proto type: tendermint.abci.ResponseCheckTx
|
|
3033
|
+
*/
|
|
2902
3034
|
export const ResponseCheckTx = {
|
|
2903
3035
|
typeUrl: "/tendermint.abci.ResponseCheckTx",
|
|
2904
3036
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -3042,6 +3174,11 @@ function createBaseResponseCommit() {
|
|
|
3042
3174
|
retainHeight: BigInt(0)
|
|
3043
3175
|
};
|
|
3044
3176
|
}
|
|
3177
|
+
/**
|
|
3178
|
+
* @name ResponseCommit
|
|
3179
|
+
* @package tendermint.abci
|
|
3180
|
+
* @see proto type: tendermint.abci.ResponseCommit
|
|
3181
|
+
*/
|
|
3045
3182
|
export const ResponseCommit = {
|
|
3046
3183
|
typeUrl: "/tendermint.abci.ResponseCommit",
|
|
3047
3184
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -3105,6 +3242,11 @@ function createBaseResponseListSnapshots() {
|
|
|
3105
3242
|
snapshots: []
|
|
3106
3243
|
};
|
|
3107
3244
|
}
|
|
3245
|
+
/**
|
|
3246
|
+
* @name ResponseListSnapshots
|
|
3247
|
+
* @package tendermint.abci
|
|
3248
|
+
* @see proto type: tendermint.abci.ResponseListSnapshots
|
|
3249
|
+
*/
|
|
3108
3250
|
export const ResponseListSnapshots = {
|
|
3109
3251
|
typeUrl: "/tendermint.abci.ResponseListSnapshots",
|
|
3110
3252
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -3171,6 +3313,11 @@ function createBaseResponseOfferSnapshot() {
|
|
|
3171
3313
|
result: 0
|
|
3172
3314
|
};
|
|
3173
3315
|
}
|
|
3316
|
+
/**
|
|
3317
|
+
* @name ResponseOfferSnapshot
|
|
3318
|
+
* @package tendermint.abci
|
|
3319
|
+
* @see proto type: tendermint.abci.ResponseOfferSnapshot
|
|
3320
|
+
*/
|
|
3174
3321
|
export const ResponseOfferSnapshot = {
|
|
3175
3322
|
typeUrl: "/tendermint.abci.ResponseOfferSnapshot",
|
|
3176
3323
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -3234,6 +3381,11 @@ function createBaseResponseLoadSnapshotChunk() {
|
|
|
3234
3381
|
chunk: new Uint8Array()
|
|
3235
3382
|
};
|
|
3236
3383
|
}
|
|
3384
|
+
/**
|
|
3385
|
+
* @name ResponseLoadSnapshotChunk
|
|
3386
|
+
* @package tendermint.abci
|
|
3387
|
+
* @see proto type: tendermint.abci.ResponseLoadSnapshotChunk
|
|
3388
|
+
*/
|
|
3237
3389
|
export const ResponseLoadSnapshotChunk = {
|
|
3238
3390
|
typeUrl: "/tendermint.abci.ResponseLoadSnapshotChunk",
|
|
3239
3391
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -3299,6 +3451,11 @@ function createBaseResponseApplySnapshotChunk() {
|
|
|
3299
3451
|
rejectSenders: []
|
|
3300
3452
|
};
|
|
3301
3453
|
}
|
|
3454
|
+
/**
|
|
3455
|
+
* @name ResponseApplySnapshotChunk
|
|
3456
|
+
* @package tendermint.abci
|
|
3457
|
+
* @see proto type: tendermint.abci.ResponseApplySnapshotChunk
|
|
3458
|
+
*/
|
|
3302
3459
|
export const ResponseApplySnapshotChunk = {
|
|
3303
3460
|
typeUrl: "/tendermint.abci.ResponseApplySnapshotChunk",
|
|
3304
3461
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -3400,6 +3557,11 @@ function createBaseResponsePrepareProposal() {
|
|
|
3400
3557
|
txs: []
|
|
3401
3558
|
};
|
|
3402
3559
|
}
|
|
3560
|
+
/**
|
|
3561
|
+
* @name ResponsePrepareProposal
|
|
3562
|
+
* @package tendermint.abci
|
|
3563
|
+
* @see proto type: tendermint.abci.ResponsePrepareProposal
|
|
3564
|
+
*/
|
|
3403
3565
|
export const ResponsePrepareProposal = {
|
|
3404
3566
|
typeUrl: "/tendermint.abci.ResponsePrepareProposal",
|
|
3405
3567
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -3466,6 +3628,11 @@ function createBaseResponseProcessProposal() {
|
|
|
3466
3628
|
status: 0
|
|
3467
3629
|
};
|
|
3468
3630
|
}
|
|
3631
|
+
/**
|
|
3632
|
+
* @name ResponseProcessProposal
|
|
3633
|
+
* @package tendermint.abci
|
|
3634
|
+
* @see proto type: tendermint.abci.ResponseProcessProposal
|
|
3635
|
+
*/
|
|
3469
3636
|
export const ResponseProcessProposal = {
|
|
3470
3637
|
typeUrl: "/tendermint.abci.ResponseProcessProposal",
|
|
3471
3638
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -3529,6 +3696,11 @@ function createBaseResponseExtendVote() {
|
|
|
3529
3696
|
voteExtension: new Uint8Array()
|
|
3530
3697
|
};
|
|
3531
3698
|
}
|
|
3699
|
+
/**
|
|
3700
|
+
* @name ResponseExtendVote
|
|
3701
|
+
* @package tendermint.abci
|
|
3702
|
+
* @see proto type: tendermint.abci.ResponseExtendVote
|
|
3703
|
+
*/
|
|
3532
3704
|
export const ResponseExtendVote = {
|
|
3533
3705
|
typeUrl: "/tendermint.abci.ResponseExtendVote",
|
|
3534
3706
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -3592,6 +3764,11 @@ function createBaseResponseVerifyVoteExtension() {
|
|
|
3592
3764
|
status: 0
|
|
3593
3765
|
};
|
|
3594
3766
|
}
|
|
3767
|
+
/**
|
|
3768
|
+
* @name ResponseVerifyVoteExtension
|
|
3769
|
+
* @package tendermint.abci
|
|
3770
|
+
* @see proto type: tendermint.abci.ResponseVerifyVoteExtension
|
|
3771
|
+
*/
|
|
3595
3772
|
export const ResponseVerifyVoteExtension = {
|
|
3596
3773
|
typeUrl: "/tendermint.abci.ResponseVerifyVoteExtension",
|
|
3597
3774
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -3659,6 +3836,11 @@ function createBaseResponseFinalizeBlock() {
|
|
|
3659
3836
|
appHash: new Uint8Array()
|
|
3660
3837
|
};
|
|
3661
3838
|
}
|
|
3839
|
+
/**
|
|
3840
|
+
* @name ResponseFinalizeBlock
|
|
3841
|
+
* @package tendermint.abci
|
|
3842
|
+
* @see proto type: tendermint.abci.ResponseFinalizeBlock
|
|
3843
|
+
*/
|
|
3662
3844
|
export const ResponseFinalizeBlock = {
|
|
3663
3845
|
typeUrl: "/tendermint.abci.ResponseFinalizeBlock",
|
|
3664
3846
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -3776,6 +3958,11 @@ function createBaseCommitInfo() {
|
|
|
3776
3958
|
votes: []
|
|
3777
3959
|
};
|
|
3778
3960
|
}
|
|
3961
|
+
/**
|
|
3962
|
+
* @name CommitInfo
|
|
3963
|
+
* @package tendermint.abci
|
|
3964
|
+
* @see proto type: tendermint.abci.CommitInfo
|
|
3965
|
+
*/
|
|
3779
3966
|
export const CommitInfo = {
|
|
3780
3967
|
typeUrl: "/tendermint.abci.CommitInfo",
|
|
3781
3968
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -3854,6 +4041,14 @@ function createBaseExtendedCommitInfo() {
|
|
|
3854
4041
|
votes: []
|
|
3855
4042
|
};
|
|
3856
4043
|
}
|
|
4044
|
+
/**
|
|
4045
|
+
* ExtendedCommitInfo is similar to CommitInfo except that it is only used in
|
|
4046
|
+
* the PrepareProposal request such that CometBFT can provide vote extensions
|
|
4047
|
+
* to the application.
|
|
4048
|
+
* @name ExtendedCommitInfo
|
|
4049
|
+
* @package tendermint.abci
|
|
4050
|
+
* @see proto type: tendermint.abci.ExtendedCommitInfo
|
|
4051
|
+
*/
|
|
3857
4052
|
export const ExtendedCommitInfo = {
|
|
3858
4053
|
typeUrl: "/tendermint.abci.ExtendedCommitInfo",
|
|
3859
4054
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -3932,6 +4127,14 @@ function createBaseEvent() {
|
|
|
3932
4127
|
attributes: []
|
|
3933
4128
|
};
|
|
3934
4129
|
}
|
|
4130
|
+
/**
|
|
4131
|
+
* Event allows application developers to attach additional information to
|
|
4132
|
+
* ResponseFinalizeBlock and ResponseCheckTx.
|
|
4133
|
+
* Later, transactions may be queried using these events.
|
|
4134
|
+
* @name Event
|
|
4135
|
+
* @package tendermint.abci
|
|
4136
|
+
* @see proto type: tendermint.abci.Event
|
|
4137
|
+
*/
|
|
3935
4138
|
export const Event = {
|
|
3936
4139
|
typeUrl: "/tendermint.abci.Event",
|
|
3937
4140
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -4011,6 +4214,12 @@ function createBaseEventAttribute() {
|
|
|
4011
4214
|
index: false
|
|
4012
4215
|
};
|
|
4013
4216
|
}
|
|
4217
|
+
/**
|
|
4218
|
+
* EventAttribute is a single key-value pair, associated with an event.
|
|
4219
|
+
* @name EventAttribute
|
|
4220
|
+
* @package tendermint.abci
|
|
4221
|
+
* @see proto type: tendermint.abci.EventAttribute
|
|
4222
|
+
*/
|
|
4014
4223
|
export const EventAttribute = {
|
|
4015
4224
|
typeUrl: "/tendermint.abci.EventAttribute",
|
|
4016
4225
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -4103,6 +4312,14 @@ function createBaseExecTxResult() {
|
|
|
4103
4312
|
codespace: ""
|
|
4104
4313
|
};
|
|
4105
4314
|
}
|
|
4315
|
+
/**
|
|
4316
|
+
* ExecTxResult contains results of executing one individual transaction.
|
|
4317
|
+
*
|
|
4318
|
+
* * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted
|
|
4319
|
+
* @name ExecTxResult
|
|
4320
|
+
* @package tendermint.abci
|
|
4321
|
+
* @see proto type: tendermint.abci.ExecTxResult
|
|
4322
|
+
*/
|
|
4106
4323
|
export const ExecTxResult = {
|
|
4107
4324
|
typeUrl: "/tendermint.abci.ExecTxResult",
|
|
4108
4325
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -4249,6 +4466,14 @@ function createBaseTxResult() {
|
|
|
4249
4466
|
result: ExecTxResult.fromPartial({})
|
|
4250
4467
|
};
|
|
4251
4468
|
}
|
|
4469
|
+
/**
|
|
4470
|
+
* TxResult contains results of executing the transaction.
|
|
4471
|
+
*
|
|
4472
|
+
* One usage is indexing transaction results.
|
|
4473
|
+
* @name TxResult
|
|
4474
|
+
* @package tendermint.abci
|
|
4475
|
+
* @see proto type: tendermint.abci.TxResult
|
|
4476
|
+
*/
|
|
4252
4477
|
export const TxResult = {
|
|
4253
4478
|
typeUrl: "/tendermint.abci.TxResult",
|
|
4254
4479
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -4346,6 +4571,11 @@ function createBaseValidator() {
|
|
|
4346
4571
|
power: BigInt(0)
|
|
4347
4572
|
};
|
|
4348
4573
|
}
|
|
4574
|
+
/**
|
|
4575
|
+
* @name Validator
|
|
4576
|
+
* @package tendermint.abci
|
|
4577
|
+
* @see proto type: tendermint.abci.Validator
|
|
4578
|
+
*/
|
|
4349
4579
|
export const Validator = {
|
|
4350
4580
|
typeUrl: "/tendermint.abci.Validator",
|
|
4351
4581
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -4421,6 +4651,11 @@ function createBaseValidatorUpdate() {
|
|
|
4421
4651
|
power: BigInt(0)
|
|
4422
4652
|
};
|
|
4423
4653
|
}
|
|
4654
|
+
/**
|
|
4655
|
+
* @name ValidatorUpdate
|
|
4656
|
+
* @package tendermint.abci
|
|
4657
|
+
* @see proto type: tendermint.abci.ValidatorUpdate
|
|
4658
|
+
*/
|
|
4424
4659
|
export const ValidatorUpdate = {
|
|
4425
4660
|
typeUrl: "/tendermint.abci.ValidatorUpdate",
|
|
4426
4661
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -4496,6 +4731,11 @@ function createBaseVoteInfo() {
|
|
|
4496
4731
|
blockIdFlag: 0
|
|
4497
4732
|
};
|
|
4498
4733
|
}
|
|
4734
|
+
/**
|
|
4735
|
+
* @name VoteInfo
|
|
4736
|
+
* @package tendermint.abci
|
|
4737
|
+
* @see proto type: tendermint.abci.VoteInfo
|
|
4738
|
+
*/
|
|
4499
4739
|
export const VoteInfo = {
|
|
4500
4740
|
typeUrl: "/tendermint.abci.VoteInfo",
|
|
4501
4741
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -4573,6 +4813,11 @@ function createBaseExtendedVoteInfo() {
|
|
|
4573
4813
|
blockIdFlag: 0
|
|
4574
4814
|
};
|
|
4575
4815
|
}
|
|
4816
|
+
/**
|
|
4817
|
+
* @name ExtendedVoteInfo
|
|
4818
|
+
* @package tendermint.abci
|
|
4819
|
+
* @see proto type: tendermint.abci.ExtendedVoteInfo
|
|
4820
|
+
*/
|
|
4576
4821
|
export const ExtendedVoteInfo = {
|
|
4577
4822
|
typeUrl: "/tendermint.abci.ExtendedVoteInfo",
|
|
4578
4823
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -4673,6 +4918,11 @@ function createBaseMisbehavior() {
|
|
|
4673
4918
|
totalVotingPower: BigInt(0)
|
|
4674
4919
|
};
|
|
4675
4920
|
}
|
|
4921
|
+
/**
|
|
4922
|
+
* @name Misbehavior
|
|
4923
|
+
* @package tendermint.abci
|
|
4924
|
+
* @see proto type: tendermint.abci.Misbehavior
|
|
4925
|
+
*/
|
|
4676
4926
|
export const Misbehavior = {
|
|
4677
4927
|
typeUrl: "/tendermint.abci.Misbehavior",
|
|
4678
4928
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -4784,6 +5034,11 @@ function createBaseSnapshot() {
|
|
|
4784
5034
|
metadata: new Uint8Array()
|
|
4785
5035
|
};
|
|
4786
5036
|
}
|
|
5037
|
+
/**
|
|
5038
|
+
* @name Snapshot
|
|
5039
|
+
* @package tendermint.abci
|
|
5040
|
+
* @see proto type: tendermint.abci.Snapshot
|
|
5041
|
+
*/
|
|
4787
5042
|
export const Snapshot = {
|
|
4788
5043
|
typeUrl: "/tendermint.abci.Snapshot",
|
|
4789
5044
|
encode(message, writer = BinaryWriter.create()) {
|
package/esm/tendermint/bundle.js
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
//@ts-nocheck
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
5
|
-
import * as
|
|
6
|
-
import * as
|
|
7
|
-
import * as
|
|
8
|
-
import * as
|
|
9
|
-
import * as
|
|
10
|
-
import * as
|
|
11
|
-
import * as
|
|
2
|
+
import * as _186 from "./abci/types";
|
|
3
|
+
import * as _187 from "./crypto/keys";
|
|
4
|
+
import * as _188 from "./crypto/proof";
|
|
5
|
+
import * as _189 from "./p2p/types";
|
|
6
|
+
import * as _190 from "./types/block";
|
|
7
|
+
import * as _191 from "./types/evidence";
|
|
8
|
+
import * as _192 from "./types/params";
|
|
9
|
+
import * as _193 from "./types/types";
|
|
10
|
+
import * as _194 from "./types/validator";
|
|
11
|
+
import * as _195 from "./version/types";
|
|
12
12
|
export var tendermint;
|
|
13
13
|
(function (tendermint) {
|
|
14
14
|
tendermint.abci = {
|
|
15
|
-
...
|
|
15
|
+
..._186
|
|
16
16
|
};
|
|
17
17
|
tendermint.crypto = {
|
|
18
|
-
...
|
|
19
|
-
...
|
|
18
|
+
..._187,
|
|
19
|
+
..._188
|
|
20
20
|
};
|
|
21
21
|
tendermint.p2p = {
|
|
22
|
-
...
|
|
22
|
+
..._189
|
|
23
23
|
};
|
|
24
24
|
tendermint.types = {
|
|
25
|
-
...
|
|
26
|
-
...
|
|
27
|
-
...
|
|
28
|
-
...
|
|
29
|
-
...
|
|
25
|
+
..._190,
|
|
26
|
+
..._191,
|
|
27
|
+
..._192,
|
|
28
|
+
..._193,
|
|
29
|
+
..._194
|
|
30
30
|
};
|
|
31
31
|
tendermint.version = {
|
|
32
|
-
...
|
|
32
|
+
..._195
|
|
33
33
|
};
|
|
34
34
|
})(tendermint || (tendermint = {}));
|
|
@@ -7,6 +7,12 @@ function createBasePublicKey() {
|
|
|
7
7
|
secp256k1: undefined
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* PublicKey defines the keys available for use with Validators
|
|
12
|
+
* @name PublicKey
|
|
13
|
+
* @package tendermint.crypto
|
|
14
|
+
* @see proto type: tendermint.crypto.PublicKey
|
|
15
|
+
*/
|
|
10
16
|
export const PublicKey = {
|
|
11
17
|
typeUrl: "/tendermint.crypto.PublicKey",
|
|
12
18
|
encode(message, writer = BinaryWriter.create()) {
|
|
@@ -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()) {
|