@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.8
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/v1/module.js +6 -0
- package/esm/sparkdream/blog/v1/genesis.js +93 -1
- package/esm/sparkdream/blog/v1/params.js +439 -5
- package/esm/sparkdream/blog/v1/post.js +211 -2
- package/esm/sparkdream/blog/v1/query.js +1399 -0
- package/esm/sparkdream/blog/v1/query.lcd.js +105 -2
- package/esm/sparkdream/blog/v1/query.rpc.Query.js +75 -3
- package/esm/sparkdream/blog/v1/tx.amino.js +61 -1
- package/esm/sparkdream/blog/v1/tx.js +1910 -3
- package/esm/sparkdream/blog/v1/tx.registry.js +218 -2
- package/esm/sparkdream/blog/v1/tx.rpc.msg.js +77 -4
- package/esm/sparkdream/blog/v1/types.js +809 -0
- package/esm/sparkdream/bundle.js +558 -45
- package/esm/sparkdream/client.js +38 -2
- package/esm/sparkdream/collect/module/v1/module.js +71 -0
- package/esm/sparkdream/collect/v1/genesis.js +271 -0
- package/esm/sparkdream/collect/v1/params.js +763 -0
- package/esm/sparkdream/collect/v1/query.js +3790 -0
- package/esm/sparkdream/collect/v1/query.lcd.js +223 -0
- package/esm/sparkdream/collect/v1/query.rpc.Query.js +252 -0
- package/esm/sparkdream/collect/v1/tx.amino.js +149 -0
- package/esm/sparkdream/collect/v1/tx.js +4767 -0
- package/esm/sparkdream/collect/v1/tx.registry.js +537 -0
- package/esm/sparkdream/collect/v1/tx.rpc.msg.js +185 -0
- package/esm/sparkdream/collect/v1/types.js +3434 -0
- package/esm/sparkdream/common/v1/content_type.js +96 -0
- package/esm/sparkdream/common/v1/flag_record.js +119 -0
- package/esm/sparkdream/common/v1/moderation_reason.js +115 -0
- package/esm/sparkdream/common/v1/reserved_tag.js +96 -0
- package/esm/sparkdream/common/v1/tag.js +120 -0
- package/esm/sparkdream/commons/module/v1/module.js +71 -0
- package/esm/sparkdream/commons/v1/genesis.js +533 -0
- package/esm/sparkdream/commons/v1/group.js +1116 -0
- package/esm/sparkdream/commons/v1/params.js +78 -0
- package/esm/sparkdream/commons/v1/policy_permissions.js +86 -0
- package/esm/sparkdream/commons/v1/query.js +1337 -0
- package/esm/sparkdream/commons/v1/query.lcd.js +78 -0
- package/esm/sparkdream/commons/v1/query.rpc.Query.js +100 -0
- package/esm/sparkdream/commons/v1/tx.amino.js +94 -0
- package/esm/sparkdream/commons/v1/tx.js +3282 -0
- package/esm/sparkdream/commons/v1/tx.registry.js +339 -0
- package/esm/sparkdream/commons/v1/tx.rpc.msg.js +122 -0
- package/esm/sparkdream/ecosystem/module/v1/module.js +71 -0
- package/esm/sparkdream/ecosystem/v1/genesis.js +72 -0
- package/esm/sparkdream/ecosystem/v1/params.js +65 -0
- package/esm/sparkdream/ecosystem/v1/query.js +128 -0
- package/esm/sparkdream/ecosystem/v1/query.lcd.js +11 -0
- package/esm/sparkdream/ecosystem/v1/query.rpc.Query.js +24 -0
- package/esm/sparkdream/ecosystem/v1/tx.amino.js +14 -0
- package/esm/sparkdream/ecosystem/v1/tx.js +308 -0
- package/esm/sparkdream/ecosystem/v1/tx.registry.js +51 -0
- package/esm/sparkdream/ecosystem/v1/tx.rpc.msg.js +24 -0
- package/esm/sparkdream/forum/module/v1/module.js +71 -0
- package/esm/sparkdream/forum/v1/archive_metadata.js +119 -0
- package/esm/sparkdream/forum/v1/bounty.js +183 -0
- package/esm/sparkdream/forum/v1/category.js +119 -0
- package/esm/sparkdream/forum/v1/genesis.js +516 -0
- package/esm/sparkdream/forum/v1/gov_action_appeal.js +202 -0
- package/esm/sparkdream/forum/v1/hide_record.js +154 -0
- package/esm/sparkdream/forum/v1/jury_participation.js +131 -0
- package/esm/sparkdream/forum/v1/member_report.js +219 -0
- package/esm/sparkdream/forum/v1/member_salvation_status.js +119 -0
- package/esm/sparkdream/forum/v1/member_warning.js +156 -0
- package/esm/sparkdream/forum/v1/params.js +867 -0
- package/esm/sparkdream/forum/v1/post.js +397 -0
- package/esm/sparkdream/forum/v1/post_flag.js +254 -0
- package/esm/sparkdream/forum/v1/query.js +12470 -0
- package/esm/sparkdream/forum/v1/query.lcd.js +730 -0
- package/esm/sparkdream/forum/v1/query.rpc.Query.js +799 -0
- package/esm/sparkdream/forum/v1/sentinel_activity.js +490 -0
- package/esm/sparkdream/forum/v1/tag_budget.js +143 -0
- package/esm/sparkdream/forum/v1/tag_budget_award.js +155 -0
- package/esm/sparkdream/forum/v1/tag_report.js +122 -0
- package/esm/sparkdream/forum/v1/thread_follow.js +95 -0
- package/esm/sparkdream/forum/v1/thread_follow_count.js +83 -0
- package/esm/sparkdream/forum/v1/thread_lock_record.js +155 -0
- package/esm/sparkdream/forum/v1/thread_metadata.js +184 -0
- package/esm/sparkdream/forum/v1/thread_move_record.js +179 -0
- package/esm/sparkdream/forum/v1/tx.amino.js +254 -0
- package/esm/sparkdream/forum/v1/tx.js +7464 -0
- package/esm/sparkdream/forum/v1/tx.registry.js +915 -0
- package/esm/sparkdream/forum/v1/tx.rpc.msg.js +313 -0
- package/esm/sparkdream/forum/v1/types.js +758 -0
- package/esm/sparkdream/forum/v1/user_rate_limit.js +119 -0
- package/esm/sparkdream/forum/v1/user_reaction_limit.js +107 -0
- package/esm/sparkdream/futarchy/module/v1/module.js +71 -0
- package/esm/sparkdream/futarchy/v1/genesis.js +88 -0
- package/esm/sparkdream/futarchy/v1/market.js +240 -0
- package/esm/sparkdream/futarchy/v1/params.js +241 -0
- package/esm/sparkdream/futarchy/v1/query.js +596 -0
- package/esm/sparkdream/futarchy/v1/query.lcd.js +45 -0
- package/esm/sparkdream/futarchy/v1/query.rpc.Query.js +53 -0
- package/esm/sparkdream/futarchy/v1/tx.amino.js +39 -0
- package/esm/sparkdream/futarchy/v1/tx.js +1097 -0
- package/esm/sparkdream/futarchy/v1/tx.registry.js +141 -0
- package/esm/sparkdream/futarchy/v1/tx.rpc.msg.js +55 -0
- package/esm/sparkdream/lcd.js +60 -0
- package/esm/sparkdream/name/module/v1/module.js +71 -0
- package/esm/sparkdream/name/v1/dispute.js +341 -0
- package/esm/sparkdream/name/v1/genesis.js +120 -0
- package/esm/sparkdream/name/v1/name_record.js +95 -0
- package/esm/sparkdream/name/v1/owner_info.js +95 -0
- package/esm/sparkdream/name/v1/params.js +306 -0
- package/esm/sparkdream/name/v1/query.js +863 -0
- package/esm/sparkdream/name/v1/query.lcd.js +52 -0
- package/esm/sparkdream/name/v1/query.rpc.Query.js +71 -0
- package/esm/sparkdream/name/v1/tx.amino.js +44 -0
- package/esm/sparkdream/name/v1/tx.js +1222 -0
- package/esm/sparkdream/name/v1/tx.registry.js +159 -0
- package/esm/sparkdream/name/v1/tx.rpc.msg.js +62 -0
- package/esm/{cosmos/orm/module/v1alpha1 → sparkdream/rep/module/v1}/module.js +26 -14
- package/esm/sparkdream/rep/v1/challenge.js +226 -0
- package/esm/sparkdream/rep/v1/content_challenge.js +303 -0
- package/esm/sparkdream/rep/v1/genesis.js +481 -0
- package/esm/sparkdream/rep/v1/initiative.js +558 -0
- package/esm/sparkdream/rep/v1/interim.js +426 -0
- package/esm/sparkdream/rep/v1/interim_template.js +291 -0
- package/esm/sparkdream/rep/v1/invitation.js +251 -0
- package/esm/sparkdream/rep/v1/jury_review.js +635 -0
- package/esm/sparkdream/rep/v1/member.js +857 -0
- package/esm/sparkdream/rep/v1/params.js +1819 -0
- package/esm/sparkdream/rep/v1/project.js +545 -0
- package/esm/sparkdream/rep/v1/query.js +6896 -0
- package/esm/sparkdream/rep/v1/query.lcd.js +377 -0
- package/esm/sparkdream/rep/v1/query.rpc.Query.js +424 -0
- package/esm/sparkdream/rep/v1/stake.js +575 -0
- package/esm/sparkdream/rep/v1/tx.amino.js +159 -0
- package/esm/sparkdream/rep/v1/tx.js +5198 -0
- package/esm/sparkdream/rep/v1/tx.registry.js +573 -0
- package/esm/sparkdream/rep/v1/tx.rpc.msg.js +199 -0
- package/esm/sparkdream/reveal/module/v1/module.js +71 -0
- package/esm/sparkdream/reveal/v1/genesis.js +142 -0
- package/esm/sparkdream/reveal/v1/params.js +235 -0
- package/esm/sparkdream/reveal/v1/query.js +1700 -0
- package/esm/sparkdream/reveal/v1/query.lcd.js +101 -0
- package/esm/sparkdream/reveal/v1/query.rpc.Query.js +116 -0
- package/esm/sparkdream/reveal/v1/tx.amino.js +54 -0
- package/esm/sparkdream/reveal/v1/tx.js +1699 -0
- package/esm/sparkdream/reveal/v1/tx.registry.js +195 -0
- package/esm/sparkdream/reveal/v1/tx.rpc.msg.js +72 -0
- package/esm/sparkdream/reveal/v1/types.js +1141 -0
- package/esm/sparkdream/rpc.query.js +36 -5
- package/esm/sparkdream/rpc.tx.js +36 -0
- package/esm/sparkdream/season/module/v1/module.js +71 -0
- package/esm/sparkdream/season/v1/achievement.js +142 -0
- package/esm/sparkdream/season/v1/display_name_appeal_stake.js +95 -0
- package/esm/sparkdream/season/v1/display_name_moderation.js +155 -0
- package/esm/sparkdream/season/v1/display_name_report_stake.js +95 -0
- package/esm/sparkdream/season/v1/enums.js +391 -0
- package/esm/sparkdream/season/v1/epoch_xp_tracker.js +119 -0
- package/esm/sparkdream/season/v1/forum_xp_cooldown.js +83 -0
- package/esm/sparkdream/season/v1/genesis.js +482 -0
- package/esm/sparkdream/season/v1/guild.js +172 -0
- package/esm/sparkdream/season/v1/guild_invite.js +107 -0
- package/esm/sparkdream/season/v1/guild_membership.js +119 -0
- package/esm/sparkdream/season/v1/member_profile.js +296 -0
- package/esm/sparkdream/season/v1/member_quest_progress.js +132 -0
- package/esm/sparkdream/season/v1/member_registration.js +83 -0
- package/esm/sparkdream/season/v1/member_season_snapshot.js +238 -0
- package/esm/sparkdream/season/v1/next_season_info.js +83 -0
- package/esm/sparkdream/season/v1/nomination.js +428 -0
- package/esm/sparkdream/season/v1/params.js +1597 -0
- package/esm/sparkdream/season/v1/query.js +10569 -0
- package/esm/sparkdream/season/v1/query.lcd.js +598 -0
- package/esm/sparkdream/season/v1/query.rpc.Query.js +673 -0
- package/esm/sparkdream/season/v1/quest.js +334 -0
- package/esm/sparkdream/season/v1/season.js +166 -0
- package/esm/sparkdream/season/v1/season_snapshot.js +83 -0
- package/esm/sparkdream/season/v1/season_title_eligibility.js +194 -0
- package/esm/sparkdream/season/v1/season_transition_state.js +130 -0
- package/esm/sparkdream/season/v1/title.js +154 -0
- package/esm/sparkdream/season/v1/transition_recovery_state.js +118 -0
- package/esm/sparkdream/season/v1/tx.amino.js +219 -0
- package/esm/sparkdream/season/v1/tx.js +6823 -0
- package/esm/sparkdream/season/v1/tx.registry.js +789 -0
- package/esm/sparkdream/season/v1/tx.rpc.msg.js +272 -0
- package/esm/sparkdream/season/v1/vote_xp_record.js +83 -0
- package/esm/sparkdream/session/module/v1/module.js +71 -0
- package/esm/sparkdream/session/v1/genesis.js +88 -0
- package/esm/sparkdream/session/v1/params.js +275 -0
- package/esm/sparkdream/session/v1/query.js +743 -0
- package/esm/sparkdream/session/v1/query.lcd.js +45 -0
- package/esm/sparkdream/session/v1/query.rpc.Query.js +60 -0
- package/esm/sparkdream/session/v1/session.js +185 -0
- package/esm/sparkdream/session/v1/tx.amino.js +29 -0
- package/esm/sparkdream/session/v1/tx.js +768 -0
- package/esm/sparkdream/session/v1/tx.registry.js +105 -0
- package/esm/sparkdream/session/v1/tx.rpc.msg.js +43 -0
- package/esm/sparkdream/shield/module/v1/module.js +71 -0
- package/esm/sparkdream/shield/v1/genesis.js +301 -0
- package/esm/sparkdream/shield/v1/params.js +282 -0
- package/esm/sparkdream/shield/v1/query.js +2323 -0
- package/esm/sparkdream/shield/v1/query.lcd.js +110 -0
- package/esm/sparkdream/shield/v1/query.rpc.Query.js +170 -0
- package/esm/sparkdream/shield/v1/tx.amino.js +29 -0
- package/esm/sparkdream/shield/v1/tx.js +838 -0
- package/esm/sparkdream/shield/v1/tx.registry.js +105 -0
- package/esm/sparkdream/shield/v1/tx.rpc.msg.js +43 -0
- package/esm/sparkdream/shield/v1/types.js +2385 -0
- package/esm/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/esm/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/esm/sparkdream/sparkdream/v1/params.js +6 -0
- package/esm/sparkdream/sparkdream/v1/query.js +12 -0
- package/esm/sparkdream/sparkdream/v1/tx.js +13 -0
- package/esm/sparkdream/split/module/v1/module.js +71 -0
- package/esm/sparkdream/split/v1/genesis.js +88 -0
- package/esm/sparkdream/split/v1/params.js +65 -0
- package/esm/sparkdream/split/v1/query.js +421 -0
- package/esm/sparkdream/split/v1/query.lcd.js +31 -0
- package/esm/sparkdream/split/v1/query.rpc.Query.js +44 -0
- package/esm/sparkdream/split/v1/share.js +83 -0
- package/esm/sparkdream/split/v1/tx.amino.js +9 -0
- package/esm/sparkdream/split/v1/tx.js +148 -0
- package/esm/sparkdream/split/v1/tx.registry.js +33 -0
- package/esm/sparkdream/split/v1/tx.rpc.msg.js +18 -0
- 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 +18 -2
- package/sparkdream/blog/module/v1/module.js +6 -0
- package/sparkdream/blog/v1/genesis.d.ts +74 -4
- package/sparkdream/blog/v1/genesis.js +93 -1
- package/sparkdream/blog/v1/params.d.ts +310 -6
- package/sparkdream/blog/v1/params.js +440 -6
- package/sparkdream/blog/v1/post.d.ts +180 -2
- package/sparkdream/blog/v1/post.js +211 -2
- package/sparkdream/blog/v1/query.d.ts +865 -14
- package/sparkdream/blog/v1/query.js +1400 -1
- package/sparkdream/blog/v1/query.lcd.d.ts +9 -1
- package/sparkdream/blog/v1/query.lcd.js +105 -2
- package/sparkdream/blog/v1/query.rpc.Query.d.ts +35 -3
- package/sparkdream/blog/v1/query.rpc.Query.js +74 -2
- package/sparkdream/blog/v1/tx.amino.d.ts +61 -1
- package/sparkdream/blog/v1/tx.amino.js +60 -0
- package/sparkdream/blog/v1/tx.d.ts +1306 -19
- package/sparkdream/blog/v1/tx.js +1910 -3
- package/sparkdream/blog/v1/tx.registry.d.ts +145 -1
- package/sparkdream/blog/v1/tx.registry.js +217 -1
- package/sparkdream/blog/v1/tx.rpc.msg.d.ts +43 -4
- package/sparkdream/blog/v1/tx.rpc.msg.js +76 -3
- package/sparkdream/blog/v1/types.d.ts +463 -0
- package/sparkdream/blog/v1/types.js +818 -0
- package/sparkdream/bundle.d.ts +19938 -325
- package/sparkdream/bundle.js +558 -45
- package/sparkdream/client.d.ts +1105 -0
- package/sparkdream/client.js +38 -2
- package/sparkdream/collect/module/v1/module.d.ts +54 -0
- package/sparkdream/collect/module/v1/module.js +74 -0
- package/sparkdream/collect/v1/genesis.d.ts +82 -0
- package/sparkdream/collect/v1/genesis.js +274 -0
- package/sparkdream/collect/v1/params.d.ts +240 -0
- package/sparkdream/collect/v1/params.js +766 -0
- package/sparkdream/collect/v1/query.d.ts +2157 -0
- package/sparkdream/collect/v1/query.js +3793 -0
- package/sparkdream/collect/v1/query.lcd.d.ts +33 -0
- package/sparkdream/collect/v1/query.lcd.js +227 -0
- package/sparkdream/collect/v1/query.rpc.Query.d.ts +101 -0
- package/sparkdream/collect/v1/query.rpc.Query.js +257 -0
- package/sparkdream/collect/v1/tx.amino.d.ts +148 -0
- package/sparkdream/collect/v1/tx.amino.js +152 -0
- package/sparkdream/collect/v1/tx.d.ts +2581 -0
- package/sparkdream/collect/v1/tx.js +4771 -0
- package/sparkdream/collect/v1/tx.registry.d.ts +361 -0
- package/sparkdream/collect/v1/tx.registry.js +541 -0
- package/sparkdream/collect/v1/tx.rpc.msg.d.ts +76 -0
- package/sparkdream/collect/v1/tx.rpc.msg.js +190 -0
- package/sparkdream/collect/v1/types.d.ts +1205 -0
- package/sparkdream/collect/v1/types.js +3453 -0
- package/sparkdream/common/v1/content_type.d.ts +31 -0
- package/sparkdream/common/v1/content_type.js +101 -0
- package/sparkdream/common/v1/flag_record.d.ts +58 -0
- package/sparkdream/common/v1/flag_record.js +122 -0
- package/sparkdream/common/v1/moderation_reason.d.ts +35 -0
- package/sparkdream/common/v1/moderation_reason.js +120 -0
- package/sparkdream/common/v1/reserved_tag.d.ts +53 -0
- package/sparkdream/common/v1/reserved_tag.js +99 -0
- package/sparkdream/common/v1/tag.d.ts +57 -0
- package/sparkdream/common/v1/tag.js +123 -0
- package/sparkdream/commons/module/v1/module.d.ts +54 -0
- package/sparkdream/commons/module/v1/module.js +74 -0
- package/sparkdream/commons/v1/genesis.d.ts +299 -0
- package/sparkdream/commons/v1/genesis.js +536 -0
- package/sparkdream/commons/v1/group.d.ts +529 -0
- package/sparkdream/commons/v1/group.js +1123 -0
- package/sparkdream/commons/v1/params.d.ts +48 -0
- package/sparkdream/commons/v1/params.js +81 -0
- package/sparkdream/commons/v1/policy_permissions.d.ts +48 -0
- package/sparkdream/commons/v1/policy_permissions.js +89 -0
- package/sparkdream/commons/v1/query.d.ts +822 -0
- package/sparkdream/commons/v1/query.js +1340 -0
- package/sparkdream/commons/v1/query.lcd.d.ts +17 -0
- package/sparkdream/commons/v1/query.lcd.js +82 -0
- package/sparkdream/commons/v1/query.rpc.Query.d.ts +48 -0
- package/sparkdream/commons/v1/query.rpc.Query.js +105 -0
- package/sparkdream/commons/v1/tx.amino.d.ts +93 -0
- package/sparkdream/commons/v1/tx.amino.js +97 -0
- package/sparkdream/commons/v1/tx.d.ts +1930 -0
- package/sparkdream/commons/v1/tx.js +3285 -0
- package/sparkdream/commons/v1/tx.registry.d.ts +229 -0
- package/sparkdream/commons/v1/tx.registry.js +343 -0
- package/sparkdream/commons/v1/tx.rpc.msg.d.ts +73 -0
- package/sparkdream/commons/v1/tx.rpc.msg.js +127 -0
- package/sparkdream/ecosystem/module/v1/module.d.ts +54 -0
- package/sparkdream/ecosystem/module/v1/module.js +74 -0
- package/sparkdream/ecosystem/v1/genesis.d.ts +53 -0
- package/sparkdream/ecosystem/v1/genesis.js +75 -0
- package/sparkdream/ecosystem/v1/params.d.ts +46 -0
- package/sparkdream/ecosystem/v1/params.js +68 -0
- package/sparkdream/ecosystem/v1/query.d.ts +95 -0
- package/sparkdream/ecosystem/v1/query.js +131 -0
- package/sparkdream/ecosystem/v1/query.lcd.d.ts +9 -0
- package/sparkdream/ecosystem/v1/query.lcd.js +15 -0
- package/sparkdream/ecosystem/v1/query.rpc.Query.d.ts +16 -0
- package/sparkdream/ecosystem/v1/query.rpc.Query.js +29 -0
- package/sparkdream/ecosystem/v1/tx.amino.d.ts +13 -0
- package/sparkdream/ecosystem/v1/tx.amino.js +17 -0
- package/sparkdream/ecosystem/v1/tx.d.ts +201 -0
- package/sparkdream/ecosystem/v1/tx.js +311 -0
- package/sparkdream/ecosystem/v1/tx.registry.d.ts +37 -0
- package/sparkdream/ecosystem/v1/tx.registry.js +55 -0
- package/sparkdream/ecosystem/v1/tx.rpc.msg.d.ts +19 -0
- package/sparkdream/ecosystem/v1/tx.rpc.msg.js +29 -0
- package/sparkdream/forum/module/v1/module.d.ts +54 -0
- package/sparkdream/forum/module/v1/module.js +74 -0
- package/sparkdream/forum/v1/archive_metadata.d.ts +54 -0
- package/sparkdream/forum/v1/archive_metadata.js +122 -0
- package/sparkdream/forum/v1/bounty.d.ts +65 -0
- package/sparkdream/forum/v1/bounty.js +186 -0
- package/sparkdream/forum/v1/category.d.ts +54 -0
- package/sparkdream/forum/v1/category.js +122 -0
- package/sparkdream/forum/v1/genesis.d.ts +135 -0
- package/sparkdream/forum/v1/genesis.js +519 -0
- package/sparkdream/forum/v1/gov_action_appeal.d.ts +69 -0
- package/sparkdream/forum/v1/gov_action_appeal.js +205 -0
- package/sparkdream/forum/v1/hide_record.d.ts +61 -0
- package/sparkdream/forum/v1/hide_record.js +157 -0
- package/sparkdream/forum/v1/jury_participation.d.ts +56 -0
- package/sparkdream/forum/v1/jury_participation.js +134 -0
- package/sparkdream/forum/v1/member_report.d.ts +67 -0
- package/sparkdream/forum/v1/member_report.js +222 -0
- package/sparkdream/forum/v1/member_salvation_status.d.ts +54 -0
- package/sparkdream/forum/v1/member_salvation_status.js +122 -0
- package/sparkdream/forum/v1/member_warning.d.ts +58 -0
- package/sparkdream/forum/v1/member_warning.js +159 -0
- package/sparkdream/forum/v1/params.d.ts +450 -0
- package/sparkdream/forum/v1/params.js +870 -0
- package/sparkdream/forum/v1/post.d.ts +102 -0
- package/sparkdream/forum/v1/post.js +400 -0
- package/sparkdream/forum/v1/post_flag.d.ts +106 -0
- package/sparkdream/forum/v1/post_flag.js +257 -0
- package/sparkdream/forum/v1/query.d.ts +7296 -0
- package/sparkdream/forum/v1/query.js +12476 -0
- package/sparkdream/forum/v1/query.lcd.d.ts +88 -0
- package/sparkdream/forum/v1/query.lcd.js +734 -0
- package/sparkdream/forum/v1/query.rpc.Query.d.ts +332 -0
- package/sparkdream/forum/v1/query.rpc.Query.js +804 -0
- package/sparkdream/forum/v1/sentinel_activity.d.ts +117 -0
- package/sparkdream/forum/v1/sentinel_activity.js +493 -0
- package/sparkdream/forum/v1/tag_budget.d.ts +58 -0
- package/sparkdream/forum/v1/tag_budget.js +146 -0
- package/sparkdream/forum/v1/tag_budget_award.d.ts +60 -0
- package/sparkdream/forum/v1/tag_budget_award.js +158 -0
- package/sparkdream/forum/v1/tag_report.d.ts +54 -0
- package/sparkdream/forum/v1/tag_report.js +125 -0
- package/sparkdream/forum/v1/thread_follow.d.ts +50 -0
- package/sparkdream/forum/v1/thread_follow.js +98 -0
- package/sparkdream/forum/v1/thread_follow_count.d.ts +48 -0
- package/sparkdream/forum/v1/thread_follow_count.js +86 -0
- package/sparkdream/forum/v1/thread_lock_record.d.ts +60 -0
- package/sparkdream/forum/v1/thread_lock_record.js +158 -0
- package/sparkdream/forum/v1/thread_metadata.d.ts +63 -0
- package/sparkdream/forum/v1/thread_metadata.js +187 -0
- package/sparkdream/forum/v1/thread_move_record.d.ts +64 -0
- package/sparkdream/forum/v1/thread_move_record.js +182 -0
- package/sparkdream/forum/v1/tx.amino.d.ts +253 -0
- package/sparkdream/forum/v1/tx.amino.js +257 -0
- package/sparkdream/forum/v1/tx.d.ts +4551 -0
- package/sparkdream/forum/v1/tx.js +7468 -0
- package/sparkdream/forum/v1/tx.registry.d.ts +613 -0
- package/sparkdream/forum/v1/tx.registry.js +919 -0
- package/sparkdream/forum/v1/tx.rpc.msg.d.ts +166 -0
- package/sparkdream/forum/v1/tx.rpc.msg.js +318 -0
- package/sparkdream/forum/v1/types.d.ts +221 -0
- package/sparkdream/forum/v1/types.js +777 -0
- package/sparkdream/forum/v1/user_rate_limit.d.ts +54 -0
- package/sparkdream/forum/v1/user_rate_limit.js +122 -0
- package/sparkdream/forum/v1/user_reaction_limit.d.ts +52 -0
- package/sparkdream/forum/v1/user_reaction_limit.js +110 -0
- package/sparkdream/futarchy/module/v1/module.d.ts +54 -0
- package/sparkdream/futarchy/module/v1/module.js +74 -0
- package/sparkdream/futarchy/v1/genesis.d.ts +56 -0
- package/sparkdream/futarchy/v1/genesis.js +91 -0
- package/sparkdream/futarchy/v1/market.d.ts +104 -0
- package/sparkdream/futarchy/v1/market.js +243 -0
- package/sparkdream/futarchy/v1/params.d.ts +171 -0
- package/sparkdream/futarchy/v1/params.js +244 -0
- package/sparkdream/futarchy/v1/query.d.ts +381 -0
- package/sparkdream/futarchy/v1/query.js +599 -0
- package/sparkdream/futarchy/v1/query.lcd.d.ts +12 -0
- package/sparkdream/futarchy/v1/query.lcd.js +49 -0
- package/sparkdream/futarchy/v1/query.rpc.Query.d.ts +28 -0
- package/sparkdream/futarchy/v1/query.rpc.Query.js +58 -0
- package/sparkdream/futarchy/v1/tx.amino.d.ts +38 -0
- package/sparkdream/futarchy/v1/tx.amino.js +42 -0
- package/sparkdream/futarchy/v1/tx.d.ts +688 -0
- package/sparkdream/futarchy/v1/tx.js +1100 -0
- package/sparkdream/futarchy/v1/tx.registry.d.ts +97 -0
- package/sparkdream/futarchy/v1/tx.registry.js +145 -0
- package/sparkdream/futarchy/v1/tx.rpc.msg.d.ts +37 -0
- package/sparkdream/futarchy/v1/tx.rpc.msg.js +60 -0
- package/sparkdream/lcd.d.ts +36 -0
- package/sparkdream/lcd.js +60 -0
- package/sparkdream/name/module/v1/module.d.ts +54 -0
- package/sparkdream/name/module/v1/module.js +74 -0
- package/sparkdream/name/v1/dispute.d.ts +216 -0
- package/sparkdream/name/v1/dispute.js +344 -0
- package/sparkdream/name/v1/genesis.d.ts +62 -0
- package/sparkdream/name/v1/genesis.js +123 -0
- package/sparkdream/name/v1/name_record.d.ts +50 -0
- package/sparkdream/name/v1/name_record.js +98 -0
- package/sparkdream/name/v1/owner_info.d.ts +50 -0
- package/sparkdream/name/v1/owner_info.js +98 -0
- package/sparkdream/name/v1/params.d.ts +165 -0
- package/sparkdream/name/v1/params.js +309 -0
- package/sparkdream/name/v1/query.d.ts +544 -0
- package/sparkdream/name/v1/query.js +866 -0
- package/sparkdream/name/v1/query.lcd.d.ts +14 -0
- package/sparkdream/name/v1/query.lcd.js +56 -0
- package/sparkdream/name/v1/query.rpc.Query.d.ts +36 -0
- package/sparkdream/name/v1/query.rpc.Query.js +76 -0
- package/sparkdream/name/v1/tx.amino.d.ts +43 -0
- package/sparkdream/name/v1/tx.amino.js +47 -0
- package/sparkdream/name/v1/tx.d.ts +804 -0
- package/sparkdream/name/v1/tx.js +1225 -0
- package/sparkdream/name/v1/tx.registry.d.ts +109 -0
- package/sparkdream/name/v1/tx.registry.js +163 -0
- package/sparkdream/name/v1/tx.rpc.msg.d.ts +43 -0
- package/sparkdream/name/v1/tx.rpc.msg.js +67 -0
- package/sparkdream/rep/module/v1/module.d.ts +54 -0
- package/{cosmos/orm/module/v1alpha1 → sparkdream/rep/module/v1}/module.js +26 -14
- package/sparkdream/rep/v1/challenge.d.ts +74 -0
- package/sparkdream/rep/v1/challenge.js +231 -0
- package/sparkdream/rep/v1/content_challenge.d.ts +154 -0
- package/sparkdream/rep/v1/content_challenge.js +308 -0
- package/sparkdream/rep/v1/genesis.d.ts +185 -0
- package/sparkdream/rep/v1/genesis.js +484 -0
- package/sparkdream/rep/v1/initiative.d.ts +140 -0
- package/sparkdream/rep/v1/initiative.js +567 -0
- package/sparkdream/rep/v1/interim.d.ts +163 -0
- package/sparkdream/rep/v1/interim.js +435 -0
- package/sparkdream/rep/v1/interim_template.d.ts +114 -0
- package/sparkdream/rep/v1/interim_template.js +296 -0
- package/sparkdream/rep/v1/invitation.d.ts +78 -0
- package/sparkdream/rep/v1/invitation.js +256 -0
- package/sparkdream/rep/v1/jury_review.d.ts +235 -0
- package/sparkdream/rep/v1/jury_review.js +640 -0
- package/sparkdream/rep/v1/member.d.ts +408 -0
- package/sparkdream/rep/v1/member.js +864 -0
- package/sparkdream/rep/v1/params.d.ts +730 -0
- package/sparkdream/rep/v1/params.js +1822 -0
- package/sparkdream/rep/v1/project.d.ts +162 -0
- package/sparkdream/rep/v1/project.js +554 -0
- package/sparkdream/rep/v1/query.d.ts +4030 -0
- package/sparkdream/rep/v1/query.js +6900 -0
- package/sparkdream/rep/v1/query.lcd.d.ts +51 -0
- package/sparkdream/rep/v1/query.lcd.js +381 -0
- package/sparkdream/rep/v1/query.rpc.Query.d.ts +184 -0
- package/sparkdream/rep/v1/query.rpc.Query.js +429 -0
- package/sparkdream/rep/v1/stake.d.ts +266 -0
- package/sparkdream/rep/v1/stake.js +580 -0
- package/sparkdream/rep/v1/tx.amino.d.ts +158 -0
- package/sparkdream/rep/v1/tx.amino.js +162 -0
- package/sparkdream/rep/v1/tx.d.ts +2940 -0
- package/sparkdream/rep/v1/tx.js +5204 -0
- package/sparkdream/rep/v1/tx.registry.d.ts +385 -0
- package/sparkdream/rep/v1/tx.registry.js +577 -0
- package/sparkdream/rep/v1/tx.rpc.msg.d.ts +109 -0
- package/sparkdream/rep/v1/tx.rpc.msg.js +204 -0
- package/sparkdream/reveal/module/v1/module.d.ts +54 -0
- package/sparkdream/reveal/module/v1/module.js +74 -0
- package/sparkdream/reveal/v1/genesis.d.ts +64 -0
- package/sparkdream/reveal/v1/genesis.js +145 -0
- package/sparkdream/reveal/v1/params.d.ts +140 -0
- package/sparkdream/reveal/v1/params.js +238 -0
- package/sparkdream/reveal/v1/query.d.ts +949 -0
- package/sparkdream/reveal/v1/query.js +1703 -0
- package/sparkdream/reveal/v1/query.lcd.d.ts +19 -0
- package/sparkdream/reveal/v1/query.lcd.js +105 -0
- package/sparkdream/reveal/v1/query.rpc.Query.d.ts +56 -0
- package/sparkdream/reveal/v1/query.rpc.Query.js +121 -0
- package/sparkdream/reveal/v1/tx.amino.d.ts +53 -0
- package/sparkdream/reveal/v1/tx.amino.js +57 -0
- package/sparkdream/reveal/v1/tx.d.ts +1043 -0
- package/sparkdream/reveal/v1/tx.js +1702 -0
- package/sparkdream/reveal/v1/tx.registry.d.ts +133 -0
- package/sparkdream/reveal/v1/tx.registry.js +199 -0
- package/sparkdream/reveal/v1/tx.rpc.msg.d.ts +43 -0
- package/sparkdream/reveal/v1/tx.rpc.msg.js +77 -0
- package/sparkdream/reveal/v1/types.d.ts +455 -0
- package/sparkdream/reveal/v1/types.js +1150 -0
- package/sparkdream/rpc.query.d.ts +329 -9
- package/sparkdream/rpc.query.js +36 -5
- package/sparkdream/rpc.tx.d.ts +36 -0
- package/sparkdream/rpc.tx.js +36 -0
- package/sparkdream/season/module/v1/module.d.ts +54 -0
- package/sparkdream/season/module/v1/module.js +74 -0
- package/sparkdream/season/v1/achievement.d.ts +101 -0
- package/sparkdream/season/v1/achievement.js +145 -0
- package/sparkdream/season/v1/display_name_appeal_stake.d.ts +68 -0
- package/sparkdream/season/v1/display_name_appeal_stake.js +98 -0
- package/sparkdream/season/v1/display_name_moderation.d.ts +60 -0
- package/sparkdream/season/v1/display_name_moderation.js +158 -0
- package/sparkdream/season/v1/display_name_report_stake.d.ts +68 -0
- package/sparkdream/season/v1/display_name_report_stake.js +98 -0
- package/sparkdream/season/v1/enums.d.ts +86 -0
- package/sparkdream/season/v1/enums.js +406 -0
- package/sparkdream/season/v1/epoch_xp_tracker.d.ts +54 -0
- package/sparkdream/season/v1/epoch_xp_tracker.js +122 -0
- package/sparkdream/season/v1/forum_xp_cooldown.d.ts +48 -0
- package/sparkdream/season/v1/forum_xp_cooldown.js +86 -0
- package/sparkdream/season/v1/genesis.d.ts +136 -0
- package/sparkdream/season/v1/genesis.js +485 -0
- package/sparkdream/season/v1/guild.d.ts +117 -0
- package/sparkdream/season/v1/guild.js +175 -0
- package/sparkdream/season/v1/guild_invite.d.ts +52 -0
- package/sparkdream/season/v1/guild_invite.js +110 -0
- package/sparkdream/season/v1/guild_membership.d.ts +54 -0
- package/sparkdream/season/v1/guild_membership.js +122 -0
- package/sparkdream/season/v1/member_profile.d.ts +196 -0
- package/sparkdream/season/v1/member_profile.js +299 -0
- package/sparkdream/season/v1/member_quest_progress.d.ts +84 -0
- package/sparkdream/season/v1/member_quest_progress.js +135 -0
- package/sparkdream/season/v1/member_registration.d.ts +48 -0
- package/sparkdream/season/v1/member_registration.js +86 -0
- package/sparkdream/season/v1/member_season_snapshot.d.ts +145 -0
- package/sparkdream/season/v1/member_season_snapshot.js +241 -0
- package/sparkdream/season/v1/next_season_info.d.ts +48 -0
- package/sparkdream/season/v1/next_season_info.js +86 -0
- package/sparkdream/season/v1/nomination.d.ts +194 -0
- package/sparkdream/season/v1/nomination.js +431 -0
- package/sparkdream/season/v1/params.d.ts +611 -0
- package/sparkdream/season/v1/params.js +1600 -0
- package/sparkdream/season/v1/query.d.ts +6199 -0
- package/sparkdream/season/v1/query.js +10574 -0
- package/sparkdream/season/v1/query.lcd.d.ts +76 -0
- package/sparkdream/season/v1/query.lcd.js +602 -0
- package/sparkdream/season/v1/query.rpc.Query.d.ts +284 -0
- package/sparkdream/season/v1/query.rpc.Query.js +678 -0
- package/sparkdream/season/v1/quest.d.ts +231 -0
- package/sparkdream/season/v1/quest.js +337 -0
- package/sparkdream/season/v1/season.d.ts +117 -0
- package/sparkdream/season/v1/season.js +169 -0
- package/sparkdream/season/v1/season_snapshot.d.ts +48 -0
- package/sparkdream/season/v1/season_snapshot.js +86 -0
- package/sparkdream/season/v1/season_title_eligibility.d.ts +134 -0
- package/sparkdream/season/v1/season_title_eligibility.js +197 -0
- package/sparkdream/season/v1/season_transition_state.d.ts +93 -0
- package/sparkdream/season/v1/season_transition_state.js +133 -0
- package/sparkdream/season/v1/title.d.ts +109 -0
- package/sparkdream/season/v1/title.js +157 -0
- package/sparkdream/season/v1/transition_recovery_state.d.ts +85 -0
- package/sparkdream/season/v1/transition_recovery_state.js +121 -0
- package/sparkdream/season/v1/tx.amino.d.ts +218 -0
- package/sparkdream/season/v1/tx.amino.js +222 -0
- package/sparkdream/season/v1/tx.d.ts +4133 -0
- package/sparkdream/season/v1/tx.js +6827 -0
- package/sparkdream/season/v1/tx.registry.d.ts +529 -0
- package/sparkdream/season/v1/tx.registry.js +793 -0
- package/sparkdream/season/v1/tx.rpc.msg.d.ts +144 -0
- package/sparkdream/season/v1/tx.rpc.msg.js +277 -0
- package/sparkdream/season/v1/vote_xp_record.d.ts +48 -0
- package/sparkdream/season/v1/vote_xp_record.js +86 -0
- package/sparkdream/session/module/v1/module.d.ts +54 -0
- package/sparkdream/session/module/v1/module.js +74 -0
- package/sparkdream/session/v1/genesis.d.ts +62 -0
- package/sparkdream/session/v1/genesis.js +91 -0
- package/sparkdream/session/v1/params.d.ts +168 -0
- package/sparkdream/session/v1/params.js +278 -0
- package/sparkdream/session/v1/query.d.ts +423 -0
- package/sparkdream/session/v1/query.js +746 -0
- package/sparkdream/session/v1/query.lcd.d.ts +13 -0
- package/sparkdream/session/v1/query.lcd.js +49 -0
- package/sparkdream/session/v1/query.rpc.Query.d.ts +32 -0
- package/sparkdream/session/v1/query.rpc.Query.js +65 -0
- package/sparkdream/session/v1/session.d.ts +125 -0
- package/sparkdream/session/v1/session.js +188 -0
- package/sparkdream/session/v1/tx.amino.d.ts +28 -0
- package/sparkdream/session/v1/tx.amino.js +32 -0
- package/sparkdream/session/v1/tx.d.ts +481 -0
- package/sparkdream/session/v1/tx.js +771 -0
- package/sparkdream/session/v1/tx.registry.d.ts +73 -0
- package/sparkdream/session/v1/tx.registry.js +109 -0
- package/sparkdream/session/v1/tx.rpc.msg.d.ts +31 -0
- package/sparkdream/session/v1/tx.rpc.msg.js +48 -0
- package/sparkdream/shield/module/v1/module.d.ts +54 -0
- package/sparkdream/shield/module/v1/module.js +74 -0
- package/sparkdream/shield/v1/genesis.d.ts +182 -0
- package/sparkdream/shield/v1/genesis.js +304 -0
- package/sparkdream/shield/v1/params.d.ts +192 -0
- package/sparkdream/shield/v1/params.js +285 -0
- package/sparkdream/shield/v1/query.d.ts +1406 -0
- package/sparkdream/shield/v1/query.js +2326 -0
- package/sparkdream/shield/v1/query.lcd.d.ts +25 -0
- package/sparkdream/shield/v1/query.lcd.js +114 -0
- package/sparkdream/shield/v1/query.rpc.Query.d.ts +80 -0
- package/sparkdream/shield/v1/query.rpc.Query.js +175 -0
- package/sparkdream/shield/v1/tx.amino.d.ts +28 -0
- package/sparkdream/shield/v1/tx.amino.js +32 -0
- package/sparkdream/shield/v1/tx.d.ts +542 -0
- package/sparkdream/shield/v1/tx.js +841 -0
- package/sparkdream/shield/v1/tx.registry.d.ts +73 -0
- package/sparkdream/shield/v1/tx.registry.js +109 -0
- package/sparkdream/shield/v1/tx.rpc.msg.d.ts +29 -0
- package/sparkdream/shield/v1/tx.rpc.msg.js +48 -0
- package/sparkdream/shield/v1/types.d.ts +1412 -0
- package/sparkdream/shield/v1/types.js +2398 -0
- package/sparkdream/sparkdream/module/v1/module.d.ts +18 -2
- package/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/sparkdream/sparkdream/v1/genesis.d.ts +24 -4
- package/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/sparkdream/sparkdream/v1/params.d.ts +18 -2
- package/sparkdream/sparkdream/v1/params.js +6 -0
- package/sparkdream/sparkdream/v1/query.d.ts +42 -6
- package/sparkdream/sparkdream/v1/query.js +12 -0
- package/sparkdream/sparkdream/v1/tx.d.ts +37 -4
- package/sparkdream/sparkdream/v1/tx.js +13 -0
- package/sparkdream/split/module/v1/module.d.ts +54 -0
- package/sparkdream/split/module/v1/module.js +74 -0
- package/sparkdream/split/v1/genesis.d.ts +56 -0
- package/sparkdream/split/v1/genesis.js +91 -0
- package/sparkdream/split/v1/params.d.ts +46 -0
- package/sparkdream/split/v1/params.js +68 -0
- package/sparkdream/split/v1/query.d.ts +275 -0
- package/sparkdream/split/v1/query.js +424 -0
- package/sparkdream/split/v1/query.lcd.d.ts +11 -0
- package/sparkdream/split/v1/query.lcd.js +35 -0
- package/sparkdream/split/v1/query.rpc.Query.d.ts +24 -0
- package/sparkdream/split/v1/query.rpc.Query.js +49 -0
- package/sparkdream/split/v1/share.d.ts +48 -0
- package/sparkdream/split/v1/share.js +86 -0
- package/sparkdream/split/v1/tx.amino.d.ts +8 -0
- package/sparkdream/split/v1/tx.amino.js +12 -0
- package/sparkdream/split/v1/tx.d.ts +108 -0
- package/sparkdream/split/v1/tx.js +151 -0
- package/sparkdream/split/v1/tx.registry.d.ts +25 -0
- package/sparkdream/split/v1/tx.registry.js +37 -0
- package/sparkdream/split/v1/tx.rpc.msg.d.ts +16 -0
- package/sparkdream/split/v1/tx.rpc.msg.js +23 -0
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +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/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/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
|
@@ -81,6 +81,11 @@ export declare enum MisbehaviorType {
|
|
|
81
81
|
export declare const MisbehaviorTypeAmino: typeof MisbehaviorType;
|
|
82
82
|
export declare function misbehaviorTypeFromJSON(object: any): MisbehaviorType;
|
|
83
83
|
export declare function misbehaviorTypeToJSON(object: MisbehaviorType): string;
|
|
84
|
+
/**
|
|
85
|
+
* @name Request
|
|
86
|
+
* @package tendermint.abci
|
|
87
|
+
* @see proto type: tendermint.abci.Request
|
|
88
|
+
*/
|
|
84
89
|
export interface Request {
|
|
85
90
|
echo?: RequestEcho;
|
|
86
91
|
flush?: RequestFlush;
|
|
@@ -103,6 +108,11 @@ export interface RequestProtoMsg {
|
|
|
103
108
|
typeUrl: "/tendermint.abci.Request";
|
|
104
109
|
value: Uint8Array;
|
|
105
110
|
}
|
|
111
|
+
/**
|
|
112
|
+
* @name RequestAmino
|
|
113
|
+
* @package tendermint.abci
|
|
114
|
+
* @see proto type: tendermint.abci.Request
|
|
115
|
+
*/
|
|
106
116
|
export interface RequestAmino {
|
|
107
117
|
echo?: RequestEchoAmino;
|
|
108
118
|
flush?: RequestFlushAmino;
|
|
@@ -125,6 +135,11 @@ export interface RequestAminoMsg {
|
|
|
125
135
|
type: "/tendermint.abci.Request";
|
|
126
136
|
value: RequestAmino;
|
|
127
137
|
}
|
|
138
|
+
/**
|
|
139
|
+
* @name RequestEcho
|
|
140
|
+
* @package tendermint.abci
|
|
141
|
+
* @see proto type: tendermint.abci.RequestEcho
|
|
142
|
+
*/
|
|
128
143
|
export interface RequestEcho {
|
|
129
144
|
message: string;
|
|
130
145
|
}
|
|
@@ -132,6 +147,11 @@ export interface RequestEchoProtoMsg {
|
|
|
132
147
|
typeUrl: "/tendermint.abci.RequestEcho";
|
|
133
148
|
value: Uint8Array;
|
|
134
149
|
}
|
|
150
|
+
/**
|
|
151
|
+
* @name RequestEchoAmino
|
|
152
|
+
* @package tendermint.abci
|
|
153
|
+
* @see proto type: tendermint.abci.RequestEcho
|
|
154
|
+
*/
|
|
135
155
|
export interface RequestEchoAmino {
|
|
136
156
|
message?: string;
|
|
137
157
|
}
|
|
@@ -139,18 +159,33 @@ export interface RequestEchoAminoMsg {
|
|
|
139
159
|
type: "/tendermint.abci.RequestEcho";
|
|
140
160
|
value: RequestEchoAmino;
|
|
141
161
|
}
|
|
162
|
+
/**
|
|
163
|
+
* @name RequestFlush
|
|
164
|
+
* @package tendermint.abci
|
|
165
|
+
* @see proto type: tendermint.abci.RequestFlush
|
|
166
|
+
*/
|
|
142
167
|
export interface RequestFlush {
|
|
143
168
|
}
|
|
144
169
|
export interface RequestFlushProtoMsg {
|
|
145
170
|
typeUrl: "/tendermint.abci.RequestFlush";
|
|
146
171
|
value: Uint8Array;
|
|
147
172
|
}
|
|
173
|
+
/**
|
|
174
|
+
* @name RequestFlushAmino
|
|
175
|
+
* @package tendermint.abci
|
|
176
|
+
* @see proto type: tendermint.abci.RequestFlush
|
|
177
|
+
*/
|
|
148
178
|
export interface RequestFlushAmino {
|
|
149
179
|
}
|
|
150
180
|
export interface RequestFlushAminoMsg {
|
|
151
181
|
type: "/tendermint.abci.RequestFlush";
|
|
152
182
|
value: RequestFlushAmino;
|
|
153
183
|
}
|
|
184
|
+
/**
|
|
185
|
+
* @name RequestInfo
|
|
186
|
+
* @package tendermint.abci
|
|
187
|
+
* @see proto type: tendermint.abci.RequestInfo
|
|
188
|
+
*/
|
|
154
189
|
export interface RequestInfo {
|
|
155
190
|
version: string;
|
|
156
191
|
blockVersion: bigint;
|
|
@@ -161,6 +196,11 @@ export interface RequestInfoProtoMsg {
|
|
|
161
196
|
typeUrl: "/tendermint.abci.RequestInfo";
|
|
162
197
|
value: Uint8Array;
|
|
163
198
|
}
|
|
199
|
+
/**
|
|
200
|
+
* @name RequestInfoAmino
|
|
201
|
+
* @package tendermint.abci
|
|
202
|
+
* @see proto type: tendermint.abci.RequestInfo
|
|
203
|
+
*/
|
|
164
204
|
export interface RequestInfoAmino {
|
|
165
205
|
version?: string;
|
|
166
206
|
block_version?: string;
|
|
@@ -171,6 +211,11 @@ export interface RequestInfoAminoMsg {
|
|
|
171
211
|
type: "/tendermint.abci.RequestInfo";
|
|
172
212
|
value: RequestInfoAmino;
|
|
173
213
|
}
|
|
214
|
+
/**
|
|
215
|
+
* @name RequestInitChain
|
|
216
|
+
* @package tendermint.abci
|
|
217
|
+
* @see proto type: tendermint.abci.RequestInitChain
|
|
218
|
+
*/
|
|
174
219
|
export interface RequestInitChain {
|
|
175
220
|
time: Date;
|
|
176
221
|
chainId: string;
|
|
@@ -183,6 +228,11 @@ export interface RequestInitChainProtoMsg {
|
|
|
183
228
|
typeUrl: "/tendermint.abci.RequestInitChain";
|
|
184
229
|
value: Uint8Array;
|
|
185
230
|
}
|
|
231
|
+
/**
|
|
232
|
+
* @name RequestInitChainAmino
|
|
233
|
+
* @package tendermint.abci
|
|
234
|
+
* @see proto type: tendermint.abci.RequestInitChain
|
|
235
|
+
*/
|
|
186
236
|
export interface RequestInitChainAmino {
|
|
187
237
|
time?: string;
|
|
188
238
|
chain_id?: string;
|
|
@@ -195,6 +245,11 @@ export interface RequestInitChainAminoMsg {
|
|
|
195
245
|
type: "/tendermint.abci.RequestInitChain";
|
|
196
246
|
value: RequestInitChainAmino;
|
|
197
247
|
}
|
|
248
|
+
/**
|
|
249
|
+
* @name RequestQuery
|
|
250
|
+
* @package tendermint.abci
|
|
251
|
+
* @see proto type: tendermint.abci.RequestQuery
|
|
252
|
+
*/
|
|
198
253
|
export interface RequestQuery {
|
|
199
254
|
data: Uint8Array;
|
|
200
255
|
path: string;
|
|
@@ -205,6 +260,11 @@ export interface RequestQueryProtoMsg {
|
|
|
205
260
|
typeUrl: "/tendermint.abci.RequestQuery";
|
|
206
261
|
value: Uint8Array;
|
|
207
262
|
}
|
|
263
|
+
/**
|
|
264
|
+
* @name RequestQueryAmino
|
|
265
|
+
* @package tendermint.abci
|
|
266
|
+
* @see proto type: tendermint.abci.RequestQuery
|
|
267
|
+
*/
|
|
208
268
|
export interface RequestQueryAmino {
|
|
209
269
|
data?: string;
|
|
210
270
|
path?: string;
|
|
@@ -215,6 +275,11 @@ export interface RequestQueryAminoMsg {
|
|
|
215
275
|
type: "/tendermint.abci.RequestQuery";
|
|
216
276
|
value: RequestQueryAmino;
|
|
217
277
|
}
|
|
278
|
+
/**
|
|
279
|
+
* @name RequestCheckTx
|
|
280
|
+
* @package tendermint.abci
|
|
281
|
+
* @see proto type: tendermint.abci.RequestCheckTx
|
|
282
|
+
*/
|
|
218
283
|
export interface RequestCheckTx {
|
|
219
284
|
tx: Uint8Array;
|
|
220
285
|
type: CheckTxType;
|
|
@@ -223,6 +288,11 @@ export interface RequestCheckTxProtoMsg {
|
|
|
223
288
|
typeUrl: "/tendermint.abci.RequestCheckTx";
|
|
224
289
|
value: Uint8Array;
|
|
225
290
|
}
|
|
291
|
+
/**
|
|
292
|
+
* @name RequestCheckTxAmino
|
|
293
|
+
* @package tendermint.abci
|
|
294
|
+
* @see proto type: tendermint.abci.RequestCheckTx
|
|
295
|
+
*/
|
|
226
296
|
export interface RequestCheckTxAmino {
|
|
227
297
|
tx?: string;
|
|
228
298
|
type?: CheckTxType;
|
|
@@ -231,55 +301,98 @@ export interface RequestCheckTxAminoMsg {
|
|
|
231
301
|
type: "/tendermint.abci.RequestCheckTx";
|
|
232
302
|
value: RequestCheckTxAmino;
|
|
233
303
|
}
|
|
304
|
+
/**
|
|
305
|
+
* @name RequestCommit
|
|
306
|
+
* @package tendermint.abci
|
|
307
|
+
* @see proto type: tendermint.abci.RequestCommit
|
|
308
|
+
*/
|
|
234
309
|
export interface RequestCommit {
|
|
235
310
|
}
|
|
236
311
|
export interface RequestCommitProtoMsg {
|
|
237
312
|
typeUrl: "/tendermint.abci.RequestCommit";
|
|
238
313
|
value: Uint8Array;
|
|
239
314
|
}
|
|
315
|
+
/**
|
|
316
|
+
* @name RequestCommitAmino
|
|
317
|
+
* @package tendermint.abci
|
|
318
|
+
* @see proto type: tendermint.abci.RequestCommit
|
|
319
|
+
*/
|
|
240
320
|
export interface RequestCommitAmino {
|
|
241
321
|
}
|
|
242
322
|
export interface RequestCommitAminoMsg {
|
|
243
323
|
type: "/tendermint.abci.RequestCommit";
|
|
244
324
|
value: RequestCommitAmino;
|
|
245
325
|
}
|
|
246
|
-
/**
|
|
326
|
+
/**
|
|
327
|
+
* lists available snapshots
|
|
328
|
+
* @name RequestListSnapshots
|
|
329
|
+
* @package tendermint.abci
|
|
330
|
+
* @see proto type: tendermint.abci.RequestListSnapshots
|
|
331
|
+
*/
|
|
247
332
|
export interface RequestListSnapshots {
|
|
248
333
|
}
|
|
249
334
|
export interface RequestListSnapshotsProtoMsg {
|
|
250
335
|
typeUrl: "/tendermint.abci.RequestListSnapshots";
|
|
251
336
|
value: Uint8Array;
|
|
252
337
|
}
|
|
253
|
-
/**
|
|
338
|
+
/**
|
|
339
|
+
* lists available snapshots
|
|
340
|
+
* @name RequestListSnapshotsAmino
|
|
341
|
+
* @package tendermint.abci
|
|
342
|
+
* @see proto type: tendermint.abci.RequestListSnapshots
|
|
343
|
+
*/
|
|
254
344
|
export interface RequestListSnapshotsAmino {
|
|
255
345
|
}
|
|
256
346
|
export interface RequestListSnapshotsAminoMsg {
|
|
257
347
|
type: "/tendermint.abci.RequestListSnapshots";
|
|
258
348
|
value: RequestListSnapshotsAmino;
|
|
259
349
|
}
|
|
260
|
-
/**
|
|
350
|
+
/**
|
|
351
|
+
* offers a snapshot to the application
|
|
352
|
+
* @name RequestOfferSnapshot
|
|
353
|
+
* @package tendermint.abci
|
|
354
|
+
* @see proto type: tendermint.abci.RequestOfferSnapshot
|
|
355
|
+
*/
|
|
261
356
|
export interface RequestOfferSnapshot {
|
|
262
|
-
/**
|
|
357
|
+
/**
|
|
358
|
+
* snapshot offered by peers
|
|
359
|
+
*/
|
|
263
360
|
snapshot?: Snapshot;
|
|
264
|
-
/**
|
|
361
|
+
/**
|
|
362
|
+
* light client-verified app hash for snapshot height
|
|
363
|
+
*/
|
|
265
364
|
appHash: Uint8Array;
|
|
266
365
|
}
|
|
267
366
|
export interface RequestOfferSnapshotProtoMsg {
|
|
268
367
|
typeUrl: "/tendermint.abci.RequestOfferSnapshot";
|
|
269
368
|
value: Uint8Array;
|
|
270
369
|
}
|
|
271
|
-
/**
|
|
370
|
+
/**
|
|
371
|
+
* offers a snapshot to the application
|
|
372
|
+
* @name RequestOfferSnapshotAmino
|
|
373
|
+
* @package tendermint.abci
|
|
374
|
+
* @see proto type: tendermint.abci.RequestOfferSnapshot
|
|
375
|
+
*/
|
|
272
376
|
export interface RequestOfferSnapshotAmino {
|
|
273
|
-
/**
|
|
377
|
+
/**
|
|
378
|
+
* snapshot offered by peers
|
|
379
|
+
*/
|
|
274
380
|
snapshot?: SnapshotAmino;
|
|
275
|
-
/**
|
|
381
|
+
/**
|
|
382
|
+
* light client-verified app hash for snapshot height
|
|
383
|
+
*/
|
|
276
384
|
app_hash?: string;
|
|
277
385
|
}
|
|
278
386
|
export interface RequestOfferSnapshotAminoMsg {
|
|
279
387
|
type: "/tendermint.abci.RequestOfferSnapshot";
|
|
280
388
|
value: RequestOfferSnapshotAmino;
|
|
281
389
|
}
|
|
282
|
-
/**
|
|
390
|
+
/**
|
|
391
|
+
* loads a snapshot chunk
|
|
392
|
+
* @name RequestLoadSnapshotChunk
|
|
393
|
+
* @package tendermint.abci
|
|
394
|
+
* @see proto type: tendermint.abci.RequestLoadSnapshotChunk
|
|
395
|
+
*/
|
|
283
396
|
export interface RequestLoadSnapshotChunk {
|
|
284
397
|
height: bigint;
|
|
285
398
|
format: number;
|
|
@@ -289,7 +402,12 @@ export interface RequestLoadSnapshotChunkProtoMsg {
|
|
|
289
402
|
typeUrl: "/tendermint.abci.RequestLoadSnapshotChunk";
|
|
290
403
|
value: Uint8Array;
|
|
291
404
|
}
|
|
292
|
-
/**
|
|
405
|
+
/**
|
|
406
|
+
* loads a snapshot chunk
|
|
407
|
+
* @name RequestLoadSnapshotChunkAmino
|
|
408
|
+
* @package tendermint.abci
|
|
409
|
+
* @see proto type: tendermint.abci.RequestLoadSnapshotChunk
|
|
410
|
+
*/
|
|
293
411
|
export interface RequestLoadSnapshotChunkAmino {
|
|
294
412
|
height?: string;
|
|
295
413
|
format?: number;
|
|
@@ -299,7 +417,12 @@ export interface RequestLoadSnapshotChunkAminoMsg {
|
|
|
299
417
|
type: "/tendermint.abci.RequestLoadSnapshotChunk";
|
|
300
418
|
value: RequestLoadSnapshotChunkAmino;
|
|
301
419
|
}
|
|
302
|
-
/**
|
|
420
|
+
/**
|
|
421
|
+
* Applies a snapshot chunk
|
|
422
|
+
* @name RequestApplySnapshotChunk
|
|
423
|
+
* @package tendermint.abci
|
|
424
|
+
* @see proto type: tendermint.abci.RequestApplySnapshotChunk
|
|
425
|
+
*/
|
|
303
426
|
export interface RequestApplySnapshotChunk {
|
|
304
427
|
index: number;
|
|
305
428
|
chunk: Uint8Array;
|
|
@@ -309,7 +432,12 @@ export interface RequestApplySnapshotChunkProtoMsg {
|
|
|
309
432
|
typeUrl: "/tendermint.abci.RequestApplySnapshotChunk";
|
|
310
433
|
value: Uint8Array;
|
|
311
434
|
}
|
|
312
|
-
/**
|
|
435
|
+
/**
|
|
436
|
+
* Applies a snapshot chunk
|
|
437
|
+
* @name RequestApplySnapshotChunkAmino
|
|
438
|
+
* @package tendermint.abci
|
|
439
|
+
* @see proto type: tendermint.abci.RequestApplySnapshotChunk
|
|
440
|
+
*/
|
|
313
441
|
export interface RequestApplySnapshotChunkAmino {
|
|
314
442
|
index?: number;
|
|
315
443
|
chunk?: string;
|
|
@@ -319,8 +447,15 @@ export interface RequestApplySnapshotChunkAminoMsg {
|
|
|
319
447
|
type: "/tendermint.abci.RequestApplySnapshotChunk";
|
|
320
448
|
value: RequestApplySnapshotChunkAmino;
|
|
321
449
|
}
|
|
450
|
+
/**
|
|
451
|
+
* @name RequestPrepareProposal
|
|
452
|
+
* @package tendermint.abci
|
|
453
|
+
* @see proto type: tendermint.abci.RequestPrepareProposal
|
|
454
|
+
*/
|
|
322
455
|
export interface RequestPrepareProposal {
|
|
323
|
-
/**
|
|
456
|
+
/**
|
|
457
|
+
* the modified transactions cannot exceed this size.
|
|
458
|
+
*/
|
|
324
459
|
maxTxBytes: bigint;
|
|
325
460
|
/**
|
|
326
461
|
* txs is an array of transactions that will be included in a block,
|
|
@@ -332,15 +467,24 @@ export interface RequestPrepareProposal {
|
|
|
332
467
|
height: bigint;
|
|
333
468
|
time: Date;
|
|
334
469
|
nextValidatorsHash: Uint8Array;
|
|
335
|
-
/**
|
|
470
|
+
/**
|
|
471
|
+
* address of the public key of the validator proposing the block.
|
|
472
|
+
*/
|
|
336
473
|
proposerAddress: Uint8Array;
|
|
337
474
|
}
|
|
338
475
|
export interface RequestPrepareProposalProtoMsg {
|
|
339
476
|
typeUrl: "/tendermint.abci.RequestPrepareProposal";
|
|
340
477
|
value: Uint8Array;
|
|
341
478
|
}
|
|
479
|
+
/**
|
|
480
|
+
* @name RequestPrepareProposalAmino
|
|
481
|
+
* @package tendermint.abci
|
|
482
|
+
* @see proto type: tendermint.abci.RequestPrepareProposal
|
|
483
|
+
*/
|
|
342
484
|
export interface RequestPrepareProposalAmino {
|
|
343
|
-
/**
|
|
485
|
+
/**
|
|
486
|
+
* the modified transactions cannot exceed this size.
|
|
487
|
+
*/
|
|
344
488
|
max_tx_bytes?: string;
|
|
345
489
|
/**
|
|
346
490
|
* txs is an array of transactions that will be included in a block,
|
|
@@ -352,88 +496,143 @@ export interface RequestPrepareProposalAmino {
|
|
|
352
496
|
height?: string;
|
|
353
497
|
time?: string;
|
|
354
498
|
next_validators_hash?: string;
|
|
355
|
-
/**
|
|
499
|
+
/**
|
|
500
|
+
* address of the public key of the validator proposing the block.
|
|
501
|
+
*/
|
|
356
502
|
proposer_address?: string;
|
|
357
503
|
}
|
|
358
504
|
export interface RequestPrepareProposalAminoMsg {
|
|
359
505
|
type: "/tendermint.abci.RequestPrepareProposal";
|
|
360
506
|
value: RequestPrepareProposalAmino;
|
|
361
507
|
}
|
|
508
|
+
/**
|
|
509
|
+
* @name RequestProcessProposal
|
|
510
|
+
* @package tendermint.abci
|
|
511
|
+
* @see proto type: tendermint.abci.RequestProcessProposal
|
|
512
|
+
*/
|
|
362
513
|
export interface RequestProcessProposal {
|
|
363
514
|
txs: Uint8Array[];
|
|
364
515
|
proposedLastCommit: CommitInfo;
|
|
365
516
|
misbehavior: Misbehavior[];
|
|
366
|
-
/**
|
|
517
|
+
/**
|
|
518
|
+
* hash is the merkle root hash of the fields of the proposed block.
|
|
519
|
+
*/
|
|
367
520
|
hash: Uint8Array;
|
|
368
521
|
height: bigint;
|
|
369
522
|
time: Date;
|
|
370
523
|
nextValidatorsHash: Uint8Array;
|
|
371
|
-
/**
|
|
524
|
+
/**
|
|
525
|
+
* address of the public key of the original proposer of the block.
|
|
526
|
+
*/
|
|
372
527
|
proposerAddress: Uint8Array;
|
|
373
528
|
}
|
|
374
529
|
export interface RequestProcessProposalProtoMsg {
|
|
375
530
|
typeUrl: "/tendermint.abci.RequestProcessProposal";
|
|
376
531
|
value: Uint8Array;
|
|
377
532
|
}
|
|
533
|
+
/**
|
|
534
|
+
* @name RequestProcessProposalAmino
|
|
535
|
+
* @package tendermint.abci
|
|
536
|
+
* @see proto type: tendermint.abci.RequestProcessProposal
|
|
537
|
+
*/
|
|
378
538
|
export interface RequestProcessProposalAmino {
|
|
379
539
|
txs?: string[];
|
|
380
540
|
proposed_last_commit?: CommitInfoAmino;
|
|
381
541
|
misbehavior?: MisbehaviorAmino[];
|
|
382
|
-
/**
|
|
542
|
+
/**
|
|
543
|
+
* hash is the merkle root hash of the fields of the proposed block.
|
|
544
|
+
*/
|
|
383
545
|
hash?: string;
|
|
384
546
|
height?: string;
|
|
385
547
|
time?: string;
|
|
386
548
|
next_validators_hash?: string;
|
|
387
|
-
/**
|
|
549
|
+
/**
|
|
550
|
+
* address of the public key of the original proposer of the block.
|
|
551
|
+
*/
|
|
388
552
|
proposer_address?: string;
|
|
389
553
|
}
|
|
390
554
|
export interface RequestProcessProposalAminoMsg {
|
|
391
555
|
type: "/tendermint.abci.RequestProcessProposal";
|
|
392
556
|
value: RequestProcessProposalAmino;
|
|
393
557
|
}
|
|
394
|
-
/**
|
|
558
|
+
/**
|
|
559
|
+
* Extends a vote with application-injected data
|
|
560
|
+
* @name RequestExtendVote
|
|
561
|
+
* @package tendermint.abci
|
|
562
|
+
* @see proto type: tendermint.abci.RequestExtendVote
|
|
563
|
+
*/
|
|
395
564
|
export interface RequestExtendVote {
|
|
396
|
-
/**
|
|
565
|
+
/**
|
|
566
|
+
* the hash of the block that this vote may be referring to
|
|
567
|
+
*/
|
|
397
568
|
hash: Uint8Array;
|
|
398
|
-
/**
|
|
569
|
+
/**
|
|
570
|
+
* the height of the extended vote
|
|
571
|
+
*/
|
|
399
572
|
height: bigint;
|
|
400
|
-
/**
|
|
573
|
+
/**
|
|
574
|
+
* info of the block that this vote may be referring to
|
|
575
|
+
*/
|
|
401
576
|
time: Date;
|
|
402
577
|
txs: Uint8Array[];
|
|
403
578
|
proposedLastCommit: CommitInfo;
|
|
404
579
|
misbehavior: Misbehavior[];
|
|
405
580
|
nextValidatorsHash: Uint8Array;
|
|
406
|
-
/**
|
|
581
|
+
/**
|
|
582
|
+
* address of the public key of the original proposer of the block.
|
|
583
|
+
*/
|
|
407
584
|
proposerAddress: Uint8Array;
|
|
408
585
|
}
|
|
409
586
|
export interface RequestExtendVoteProtoMsg {
|
|
410
587
|
typeUrl: "/tendermint.abci.RequestExtendVote";
|
|
411
588
|
value: Uint8Array;
|
|
412
589
|
}
|
|
413
|
-
/**
|
|
590
|
+
/**
|
|
591
|
+
* Extends a vote with application-injected data
|
|
592
|
+
* @name RequestExtendVoteAmino
|
|
593
|
+
* @package tendermint.abci
|
|
594
|
+
* @see proto type: tendermint.abci.RequestExtendVote
|
|
595
|
+
*/
|
|
414
596
|
export interface RequestExtendVoteAmino {
|
|
415
|
-
/**
|
|
597
|
+
/**
|
|
598
|
+
* the hash of the block that this vote may be referring to
|
|
599
|
+
*/
|
|
416
600
|
hash?: string;
|
|
417
|
-
/**
|
|
601
|
+
/**
|
|
602
|
+
* the height of the extended vote
|
|
603
|
+
*/
|
|
418
604
|
height?: string;
|
|
419
|
-
/**
|
|
605
|
+
/**
|
|
606
|
+
* info of the block that this vote may be referring to
|
|
607
|
+
*/
|
|
420
608
|
time?: string;
|
|
421
609
|
txs?: string[];
|
|
422
610
|
proposed_last_commit?: CommitInfoAmino;
|
|
423
611
|
misbehavior?: MisbehaviorAmino[];
|
|
424
612
|
next_validators_hash?: string;
|
|
425
|
-
/**
|
|
613
|
+
/**
|
|
614
|
+
* address of the public key of the original proposer of the block.
|
|
615
|
+
*/
|
|
426
616
|
proposer_address?: string;
|
|
427
617
|
}
|
|
428
618
|
export interface RequestExtendVoteAminoMsg {
|
|
429
619
|
type: "/tendermint.abci.RequestExtendVote";
|
|
430
620
|
value: RequestExtendVoteAmino;
|
|
431
621
|
}
|
|
432
|
-
/**
|
|
622
|
+
/**
|
|
623
|
+
* Verify the vote extension
|
|
624
|
+
* @name RequestVerifyVoteExtension
|
|
625
|
+
* @package tendermint.abci
|
|
626
|
+
* @see proto type: tendermint.abci.RequestVerifyVoteExtension
|
|
627
|
+
*/
|
|
433
628
|
export interface RequestVerifyVoteExtension {
|
|
434
|
-
/**
|
|
629
|
+
/**
|
|
630
|
+
* the hash of the block that this received vote corresponds to
|
|
631
|
+
*/
|
|
435
632
|
hash: Uint8Array;
|
|
436
|
-
/**
|
|
633
|
+
/**
|
|
634
|
+
* the validator that signed the vote extension
|
|
635
|
+
*/
|
|
437
636
|
validatorAddress: Uint8Array;
|
|
438
637
|
height: bigint;
|
|
439
638
|
voteExtension: Uint8Array;
|
|
@@ -442,11 +641,20 @@ export interface RequestVerifyVoteExtensionProtoMsg {
|
|
|
442
641
|
typeUrl: "/tendermint.abci.RequestVerifyVoteExtension";
|
|
443
642
|
value: Uint8Array;
|
|
444
643
|
}
|
|
445
|
-
/**
|
|
644
|
+
/**
|
|
645
|
+
* Verify the vote extension
|
|
646
|
+
* @name RequestVerifyVoteExtensionAmino
|
|
647
|
+
* @package tendermint.abci
|
|
648
|
+
* @see proto type: tendermint.abci.RequestVerifyVoteExtension
|
|
649
|
+
*/
|
|
446
650
|
export interface RequestVerifyVoteExtensionAmino {
|
|
447
|
-
/**
|
|
651
|
+
/**
|
|
652
|
+
* the hash of the block that this received vote corresponds to
|
|
653
|
+
*/
|
|
448
654
|
hash?: string;
|
|
449
|
-
/**
|
|
655
|
+
/**
|
|
656
|
+
* the validator that signed the vote extension
|
|
657
|
+
*/
|
|
450
658
|
validator_address?: string;
|
|
451
659
|
height?: string;
|
|
452
660
|
vote_extension?: string;
|
|
@@ -455,38 +663,61 @@ export interface RequestVerifyVoteExtensionAminoMsg {
|
|
|
455
663
|
type: "/tendermint.abci.RequestVerifyVoteExtension";
|
|
456
664
|
value: RequestVerifyVoteExtensionAmino;
|
|
457
665
|
}
|
|
666
|
+
/**
|
|
667
|
+
* @name RequestFinalizeBlock
|
|
668
|
+
* @package tendermint.abci
|
|
669
|
+
* @see proto type: tendermint.abci.RequestFinalizeBlock
|
|
670
|
+
*/
|
|
458
671
|
export interface RequestFinalizeBlock {
|
|
459
672
|
txs: Uint8Array[];
|
|
460
673
|
decidedLastCommit: CommitInfo;
|
|
461
674
|
misbehavior: Misbehavior[];
|
|
462
|
-
/**
|
|
675
|
+
/**
|
|
676
|
+
* hash is the merkle root hash of the fields of the decided block.
|
|
677
|
+
*/
|
|
463
678
|
hash: Uint8Array;
|
|
464
679
|
height: bigint;
|
|
465
680
|
time: Date;
|
|
466
681
|
nextValidatorsHash: Uint8Array;
|
|
467
|
-
/**
|
|
682
|
+
/**
|
|
683
|
+
* proposer_address is the address of the public key of the original proposer of the block.
|
|
684
|
+
*/
|
|
468
685
|
proposerAddress: Uint8Array;
|
|
469
686
|
}
|
|
470
687
|
export interface RequestFinalizeBlockProtoMsg {
|
|
471
688
|
typeUrl: "/tendermint.abci.RequestFinalizeBlock";
|
|
472
689
|
value: Uint8Array;
|
|
473
690
|
}
|
|
691
|
+
/**
|
|
692
|
+
* @name RequestFinalizeBlockAmino
|
|
693
|
+
* @package tendermint.abci
|
|
694
|
+
* @see proto type: tendermint.abci.RequestFinalizeBlock
|
|
695
|
+
*/
|
|
474
696
|
export interface RequestFinalizeBlockAmino {
|
|
475
697
|
txs?: string[];
|
|
476
698
|
decided_last_commit?: CommitInfoAmino;
|
|
477
699
|
misbehavior?: MisbehaviorAmino[];
|
|
478
|
-
/**
|
|
700
|
+
/**
|
|
701
|
+
* hash is the merkle root hash of the fields of the decided block.
|
|
702
|
+
*/
|
|
479
703
|
hash?: string;
|
|
480
704
|
height?: string;
|
|
481
705
|
time?: string;
|
|
482
706
|
next_validators_hash?: string;
|
|
483
|
-
/**
|
|
707
|
+
/**
|
|
708
|
+
* proposer_address is the address of the public key of the original proposer of the block.
|
|
709
|
+
*/
|
|
484
710
|
proposer_address?: string;
|
|
485
711
|
}
|
|
486
712
|
export interface RequestFinalizeBlockAminoMsg {
|
|
487
713
|
type: "/tendermint.abci.RequestFinalizeBlock";
|
|
488
714
|
value: RequestFinalizeBlockAmino;
|
|
489
715
|
}
|
|
716
|
+
/**
|
|
717
|
+
* @name Response
|
|
718
|
+
* @package tendermint.abci
|
|
719
|
+
* @see proto type: tendermint.abci.Response
|
|
720
|
+
*/
|
|
490
721
|
export interface Response {
|
|
491
722
|
exception?: ResponseException;
|
|
492
723
|
echo?: ResponseEcho;
|
|
@@ -510,6 +741,11 @@ export interface ResponseProtoMsg {
|
|
|
510
741
|
typeUrl: "/tendermint.abci.Response";
|
|
511
742
|
value: Uint8Array;
|
|
512
743
|
}
|
|
744
|
+
/**
|
|
745
|
+
* @name ResponseAmino
|
|
746
|
+
* @package tendermint.abci
|
|
747
|
+
* @see proto type: tendermint.abci.Response
|
|
748
|
+
*/
|
|
513
749
|
export interface ResponseAmino {
|
|
514
750
|
exception?: ResponseExceptionAmino;
|
|
515
751
|
echo?: ResponseEchoAmino;
|
|
@@ -533,7 +769,12 @@ export interface ResponseAminoMsg {
|
|
|
533
769
|
type: "/tendermint.abci.Response";
|
|
534
770
|
value: ResponseAmino;
|
|
535
771
|
}
|
|
536
|
-
/**
|
|
772
|
+
/**
|
|
773
|
+
* nondeterministic
|
|
774
|
+
* @name ResponseException
|
|
775
|
+
* @package tendermint.abci
|
|
776
|
+
* @see proto type: tendermint.abci.ResponseException
|
|
777
|
+
*/
|
|
537
778
|
export interface ResponseException {
|
|
538
779
|
error: string;
|
|
539
780
|
}
|
|
@@ -541,7 +782,12 @@ export interface ResponseExceptionProtoMsg {
|
|
|
541
782
|
typeUrl: "/tendermint.abci.ResponseException";
|
|
542
783
|
value: Uint8Array;
|
|
543
784
|
}
|
|
544
|
-
/**
|
|
785
|
+
/**
|
|
786
|
+
* nondeterministic
|
|
787
|
+
* @name ResponseExceptionAmino
|
|
788
|
+
* @package tendermint.abci
|
|
789
|
+
* @see proto type: tendermint.abci.ResponseException
|
|
790
|
+
*/
|
|
545
791
|
export interface ResponseExceptionAmino {
|
|
546
792
|
error?: string;
|
|
547
793
|
}
|
|
@@ -549,6 +795,11 @@ export interface ResponseExceptionAminoMsg {
|
|
|
549
795
|
type: "/tendermint.abci.ResponseException";
|
|
550
796
|
value: ResponseExceptionAmino;
|
|
551
797
|
}
|
|
798
|
+
/**
|
|
799
|
+
* @name ResponseEcho
|
|
800
|
+
* @package tendermint.abci
|
|
801
|
+
* @see proto type: tendermint.abci.ResponseEcho
|
|
802
|
+
*/
|
|
552
803
|
export interface ResponseEcho {
|
|
553
804
|
message: string;
|
|
554
805
|
}
|
|
@@ -556,6 +807,11 @@ export interface ResponseEchoProtoMsg {
|
|
|
556
807
|
typeUrl: "/tendermint.abci.ResponseEcho";
|
|
557
808
|
value: Uint8Array;
|
|
558
809
|
}
|
|
810
|
+
/**
|
|
811
|
+
* @name ResponseEchoAmino
|
|
812
|
+
* @package tendermint.abci
|
|
813
|
+
* @see proto type: tendermint.abci.ResponseEcho
|
|
814
|
+
*/
|
|
559
815
|
export interface ResponseEchoAmino {
|
|
560
816
|
message?: string;
|
|
561
817
|
}
|
|
@@ -563,18 +819,33 @@ export interface ResponseEchoAminoMsg {
|
|
|
563
819
|
type: "/tendermint.abci.ResponseEcho";
|
|
564
820
|
value: ResponseEchoAmino;
|
|
565
821
|
}
|
|
822
|
+
/**
|
|
823
|
+
* @name ResponseFlush
|
|
824
|
+
* @package tendermint.abci
|
|
825
|
+
* @see proto type: tendermint.abci.ResponseFlush
|
|
826
|
+
*/
|
|
566
827
|
export interface ResponseFlush {
|
|
567
828
|
}
|
|
568
829
|
export interface ResponseFlushProtoMsg {
|
|
569
830
|
typeUrl: "/tendermint.abci.ResponseFlush";
|
|
570
831
|
value: Uint8Array;
|
|
571
832
|
}
|
|
833
|
+
/**
|
|
834
|
+
* @name ResponseFlushAmino
|
|
835
|
+
* @package tendermint.abci
|
|
836
|
+
* @see proto type: tendermint.abci.ResponseFlush
|
|
837
|
+
*/
|
|
572
838
|
export interface ResponseFlushAmino {
|
|
573
839
|
}
|
|
574
840
|
export interface ResponseFlushAminoMsg {
|
|
575
841
|
type: "/tendermint.abci.ResponseFlush";
|
|
576
842
|
value: ResponseFlushAmino;
|
|
577
843
|
}
|
|
844
|
+
/**
|
|
845
|
+
* @name ResponseInfo
|
|
846
|
+
* @package tendermint.abci
|
|
847
|
+
* @see proto type: tendermint.abci.ResponseInfo
|
|
848
|
+
*/
|
|
578
849
|
export interface ResponseInfo {
|
|
579
850
|
data: string;
|
|
580
851
|
version: string;
|
|
@@ -586,6 +857,11 @@ export interface ResponseInfoProtoMsg {
|
|
|
586
857
|
typeUrl: "/tendermint.abci.ResponseInfo";
|
|
587
858
|
value: Uint8Array;
|
|
588
859
|
}
|
|
860
|
+
/**
|
|
861
|
+
* @name ResponseInfoAmino
|
|
862
|
+
* @package tendermint.abci
|
|
863
|
+
* @see proto type: tendermint.abci.ResponseInfo
|
|
864
|
+
*/
|
|
589
865
|
export interface ResponseInfoAmino {
|
|
590
866
|
data?: string;
|
|
591
867
|
version?: string;
|
|
@@ -597,6 +873,11 @@ export interface ResponseInfoAminoMsg {
|
|
|
597
873
|
type: "/tendermint.abci.ResponseInfo";
|
|
598
874
|
value: ResponseInfoAmino;
|
|
599
875
|
}
|
|
876
|
+
/**
|
|
877
|
+
* @name ResponseInitChain
|
|
878
|
+
* @package tendermint.abci
|
|
879
|
+
* @see proto type: tendermint.abci.ResponseInitChain
|
|
880
|
+
*/
|
|
600
881
|
export interface ResponseInitChain {
|
|
601
882
|
consensusParams?: ConsensusParams;
|
|
602
883
|
validators: ValidatorUpdate[];
|
|
@@ -606,6 +887,11 @@ export interface ResponseInitChainProtoMsg {
|
|
|
606
887
|
typeUrl: "/tendermint.abci.ResponseInitChain";
|
|
607
888
|
value: Uint8Array;
|
|
608
889
|
}
|
|
890
|
+
/**
|
|
891
|
+
* @name ResponseInitChainAmino
|
|
892
|
+
* @package tendermint.abci
|
|
893
|
+
* @see proto type: tendermint.abci.ResponseInitChain
|
|
894
|
+
*/
|
|
609
895
|
export interface ResponseInitChainAmino {
|
|
610
896
|
consensus_params?: ConsensusParamsAmino;
|
|
611
897
|
validators?: ValidatorUpdateAmino[];
|
|
@@ -615,11 +901,20 @@ export interface ResponseInitChainAminoMsg {
|
|
|
615
901
|
type: "/tendermint.abci.ResponseInitChain";
|
|
616
902
|
value: ResponseInitChainAmino;
|
|
617
903
|
}
|
|
904
|
+
/**
|
|
905
|
+
* @name ResponseQuery
|
|
906
|
+
* @package tendermint.abci
|
|
907
|
+
* @see proto type: tendermint.abci.ResponseQuery
|
|
908
|
+
*/
|
|
618
909
|
export interface ResponseQuery {
|
|
619
910
|
code: number;
|
|
620
|
-
/**
|
|
911
|
+
/**
|
|
912
|
+
* bytes data = 2; // use "value" instead.
|
|
913
|
+
*/
|
|
621
914
|
log: string;
|
|
622
|
-
/**
|
|
915
|
+
/**
|
|
916
|
+
* nondeterministic
|
|
917
|
+
*/
|
|
623
918
|
info: string;
|
|
624
919
|
index: bigint;
|
|
625
920
|
key: Uint8Array;
|
|
@@ -632,11 +927,20 @@ export interface ResponseQueryProtoMsg {
|
|
|
632
927
|
typeUrl: "/tendermint.abci.ResponseQuery";
|
|
633
928
|
value: Uint8Array;
|
|
634
929
|
}
|
|
930
|
+
/**
|
|
931
|
+
* @name ResponseQueryAmino
|
|
932
|
+
* @package tendermint.abci
|
|
933
|
+
* @see proto type: tendermint.abci.ResponseQuery
|
|
934
|
+
*/
|
|
635
935
|
export interface ResponseQueryAmino {
|
|
636
936
|
code?: number;
|
|
637
|
-
/**
|
|
937
|
+
/**
|
|
938
|
+
* bytes data = 2; // use "value" instead.
|
|
939
|
+
*/
|
|
638
940
|
log?: string;
|
|
639
|
-
/**
|
|
941
|
+
/**
|
|
942
|
+
* nondeterministic
|
|
943
|
+
*/
|
|
640
944
|
info?: string;
|
|
641
945
|
index?: string;
|
|
642
946
|
key?: string;
|
|
@@ -649,12 +953,21 @@ export interface ResponseQueryAminoMsg {
|
|
|
649
953
|
type: "/tendermint.abci.ResponseQuery";
|
|
650
954
|
value: ResponseQueryAmino;
|
|
651
955
|
}
|
|
956
|
+
/**
|
|
957
|
+
* @name ResponseCheckTx
|
|
958
|
+
* @package tendermint.abci
|
|
959
|
+
* @see proto type: tendermint.abci.ResponseCheckTx
|
|
960
|
+
*/
|
|
652
961
|
export interface ResponseCheckTx {
|
|
653
962
|
code: number;
|
|
654
963
|
data: Uint8Array;
|
|
655
|
-
/**
|
|
964
|
+
/**
|
|
965
|
+
* nondeterministic
|
|
966
|
+
*/
|
|
656
967
|
log: string;
|
|
657
|
-
/**
|
|
968
|
+
/**
|
|
969
|
+
* nondeterministic
|
|
970
|
+
*/
|
|
658
971
|
info: string;
|
|
659
972
|
gasWanted: bigint;
|
|
660
973
|
gasUsed: bigint;
|
|
@@ -665,12 +978,21 @@ export interface ResponseCheckTxProtoMsg {
|
|
|
665
978
|
typeUrl: "/tendermint.abci.ResponseCheckTx";
|
|
666
979
|
value: Uint8Array;
|
|
667
980
|
}
|
|
981
|
+
/**
|
|
982
|
+
* @name ResponseCheckTxAmino
|
|
983
|
+
* @package tendermint.abci
|
|
984
|
+
* @see proto type: tendermint.abci.ResponseCheckTx
|
|
985
|
+
*/
|
|
668
986
|
export interface ResponseCheckTxAmino {
|
|
669
987
|
code?: number;
|
|
670
988
|
data?: string;
|
|
671
|
-
/**
|
|
989
|
+
/**
|
|
990
|
+
* nondeterministic
|
|
991
|
+
*/
|
|
672
992
|
log?: string;
|
|
673
|
-
/**
|
|
993
|
+
/**
|
|
994
|
+
* nondeterministic
|
|
995
|
+
*/
|
|
674
996
|
info?: string;
|
|
675
997
|
gas_wanted?: string;
|
|
676
998
|
gas_used?: string;
|
|
@@ -681,6 +1003,11 @@ export interface ResponseCheckTxAminoMsg {
|
|
|
681
1003
|
type: "/tendermint.abci.ResponseCheckTx";
|
|
682
1004
|
value: ResponseCheckTxAmino;
|
|
683
1005
|
}
|
|
1006
|
+
/**
|
|
1007
|
+
* @name ResponseCommit
|
|
1008
|
+
* @package tendermint.abci
|
|
1009
|
+
* @see proto type: tendermint.abci.ResponseCommit
|
|
1010
|
+
*/
|
|
684
1011
|
export interface ResponseCommit {
|
|
685
1012
|
retainHeight: bigint;
|
|
686
1013
|
}
|
|
@@ -688,6 +1015,11 @@ export interface ResponseCommitProtoMsg {
|
|
|
688
1015
|
typeUrl: "/tendermint.abci.ResponseCommit";
|
|
689
1016
|
value: Uint8Array;
|
|
690
1017
|
}
|
|
1018
|
+
/**
|
|
1019
|
+
* @name ResponseCommitAmino
|
|
1020
|
+
* @package tendermint.abci
|
|
1021
|
+
* @see proto type: tendermint.abci.ResponseCommit
|
|
1022
|
+
*/
|
|
691
1023
|
export interface ResponseCommitAmino {
|
|
692
1024
|
retain_height?: string;
|
|
693
1025
|
}
|
|
@@ -695,6 +1027,11 @@ export interface ResponseCommitAminoMsg {
|
|
|
695
1027
|
type: "/tendermint.abci.ResponseCommit";
|
|
696
1028
|
value: ResponseCommitAmino;
|
|
697
1029
|
}
|
|
1030
|
+
/**
|
|
1031
|
+
* @name ResponseListSnapshots
|
|
1032
|
+
* @package tendermint.abci
|
|
1033
|
+
* @see proto type: tendermint.abci.ResponseListSnapshots
|
|
1034
|
+
*/
|
|
698
1035
|
export interface ResponseListSnapshots {
|
|
699
1036
|
snapshots: Snapshot[];
|
|
700
1037
|
}
|
|
@@ -702,6 +1039,11 @@ export interface ResponseListSnapshotsProtoMsg {
|
|
|
702
1039
|
typeUrl: "/tendermint.abci.ResponseListSnapshots";
|
|
703
1040
|
value: Uint8Array;
|
|
704
1041
|
}
|
|
1042
|
+
/**
|
|
1043
|
+
* @name ResponseListSnapshotsAmino
|
|
1044
|
+
* @package tendermint.abci
|
|
1045
|
+
* @see proto type: tendermint.abci.ResponseListSnapshots
|
|
1046
|
+
*/
|
|
705
1047
|
export interface ResponseListSnapshotsAmino {
|
|
706
1048
|
snapshots?: SnapshotAmino[];
|
|
707
1049
|
}
|
|
@@ -709,6 +1051,11 @@ export interface ResponseListSnapshotsAminoMsg {
|
|
|
709
1051
|
type: "/tendermint.abci.ResponseListSnapshots";
|
|
710
1052
|
value: ResponseListSnapshotsAmino;
|
|
711
1053
|
}
|
|
1054
|
+
/**
|
|
1055
|
+
* @name ResponseOfferSnapshot
|
|
1056
|
+
* @package tendermint.abci
|
|
1057
|
+
* @see proto type: tendermint.abci.ResponseOfferSnapshot
|
|
1058
|
+
*/
|
|
712
1059
|
export interface ResponseOfferSnapshot {
|
|
713
1060
|
result: ResponseOfferSnapshot_Result;
|
|
714
1061
|
}
|
|
@@ -716,6 +1063,11 @@ export interface ResponseOfferSnapshotProtoMsg {
|
|
|
716
1063
|
typeUrl: "/tendermint.abci.ResponseOfferSnapshot";
|
|
717
1064
|
value: Uint8Array;
|
|
718
1065
|
}
|
|
1066
|
+
/**
|
|
1067
|
+
* @name ResponseOfferSnapshotAmino
|
|
1068
|
+
* @package tendermint.abci
|
|
1069
|
+
* @see proto type: tendermint.abci.ResponseOfferSnapshot
|
|
1070
|
+
*/
|
|
719
1071
|
export interface ResponseOfferSnapshotAmino {
|
|
720
1072
|
result?: ResponseOfferSnapshot_Result;
|
|
721
1073
|
}
|
|
@@ -723,6 +1075,11 @@ export interface ResponseOfferSnapshotAminoMsg {
|
|
|
723
1075
|
type: "/tendermint.abci.ResponseOfferSnapshot";
|
|
724
1076
|
value: ResponseOfferSnapshotAmino;
|
|
725
1077
|
}
|
|
1078
|
+
/**
|
|
1079
|
+
* @name ResponseLoadSnapshotChunk
|
|
1080
|
+
* @package tendermint.abci
|
|
1081
|
+
* @see proto type: tendermint.abci.ResponseLoadSnapshotChunk
|
|
1082
|
+
*/
|
|
726
1083
|
export interface ResponseLoadSnapshotChunk {
|
|
727
1084
|
chunk: Uint8Array;
|
|
728
1085
|
}
|
|
@@ -730,6 +1087,11 @@ export interface ResponseLoadSnapshotChunkProtoMsg {
|
|
|
730
1087
|
typeUrl: "/tendermint.abci.ResponseLoadSnapshotChunk";
|
|
731
1088
|
value: Uint8Array;
|
|
732
1089
|
}
|
|
1090
|
+
/**
|
|
1091
|
+
* @name ResponseLoadSnapshotChunkAmino
|
|
1092
|
+
* @package tendermint.abci
|
|
1093
|
+
* @see proto type: tendermint.abci.ResponseLoadSnapshotChunk
|
|
1094
|
+
*/
|
|
733
1095
|
export interface ResponseLoadSnapshotChunkAmino {
|
|
734
1096
|
chunk?: string;
|
|
735
1097
|
}
|
|
@@ -737,28 +1099,51 @@ export interface ResponseLoadSnapshotChunkAminoMsg {
|
|
|
737
1099
|
type: "/tendermint.abci.ResponseLoadSnapshotChunk";
|
|
738
1100
|
value: ResponseLoadSnapshotChunkAmino;
|
|
739
1101
|
}
|
|
1102
|
+
/**
|
|
1103
|
+
* @name ResponseApplySnapshotChunk
|
|
1104
|
+
* @package tendermint.abci
|
|
1105
|
+
* @see proto type: tendermint.abci.ResponseApplySnapshotChunk
|
|
1106
|
+
*/
|
|
740
1107
|
export interface ResponseApplySnapshotChunk {
|
|
741
1108
|
result: ResponseApplySnapshotChunk_Result;
|
|
742
|
-
/**
|
|
1109
|
+
/**
|
|
1110
|
+
* Chunks to refetch and reapply
|
|
1111
|
+
*/
|
|
743
1112
|
refetchChunks: number[];
|
|
744
|
-
/**
|
|
1113
|
+
/**
|
|
1114
|
+
* Chunk senders to reject and ban
|
|
1115
|
+
*/
|
|
745
1116
|
rejectSenders: string[];
|
|
746
1117
|
}
|
|
747
1118
|
export interface ResponseApplySnapshotChunkProtoMsg {
|
|
748
1119
|
typeUrl: "/tendermint.abci.ResponseApplySnapshotChunk";
|
|
749
1120
|
value: Uint8Array;
|
|
750
1121
|
}
|
|
1122
|
+
/**
|
|
1123
|
+
* @name ResponseApplySnapshotChunkAmino
|
|
1124
|
+
* @package tendermint.abci
|
|
1125
|
+
* @see proto type: tendermint.abci.ResponseApplySnapshotChunk
|
|
1126
|
+
*/
|
|
751
1127
|
export interface ResponseApplySnapshotChunkAmino {
|
|
752
1128
|
result?: ResponseApplySnapshotChunk_Result;
|
|
753
|
-
/**
|
|
1129
|
+
/**
|
|
1130
|
+
* Chunks to refetch and reapply
|
|
1131
|
+
*/
|
|
754
1132
|
refetch_chunks?: number[];
|
|
755
|
-
/**
|
|
1133
|
+
/**
|
|
1134
|
+
* Chunk senders to reject and ban
|
|
1135
|
+
*/
|
|
756
1136
|
reject_senders?: string[];
|
|
757
1137
|
}
|
|
758
1138
|
export interface ResponseApplySnapshotChunkAminoMsg {
|
|
759
1139
|
type: "/tendermint.abci.ResponseApplySnapshotChunk";
|
|
760
1140
|
value: ResponseApplySnapshotChunkAmino;
|
|
761
1141
|
}
|
|
1142
|
+
/**
|
|
1143
|
+
* @name ResponsePrepareProposal
|
|
1144
|
+
* @package tendermint.abci
|
|
1145
|
+
* @see proto type: tendermint.abci.ResponsePrepareProposal
|
|
1146
|
+
*/
|
|
762
1147
|
export interface ResponsePrepareProposal {
|
|
763
1148
|
txs: Uint8Array[];
|
|
764
1149
|
}
|
|
@@ -766,6 +1151,11 @@ export interface ResponsePrepareProposalProtoMsg {
|
|
|
766
1151
|
typeUrl: "/tendermint.abci.ResponsePrepareProposal";
|
|
767
1152
|
value: Uint8Array;
|
|
768
1153
|
}
|
|
1154
|
+
/**
|
|
1155
|
+
* @name ResponsePrepareProposalAmino
|
|
1156
|
+
* @package tendermint.abci
|
|
1157
|
+
* @see proto type: tendermint.abci.ResponsePrepareProposal
|
|
1158
|
+
*/
|
|
769
1159
|
export interface ResponsePrepareProposalAmino {
|
|
770
1160
|
txs?: string[];
|
|
771
1161
|
}
|
|
@@ -773,6 +1163,11 @@ export interface ResponsePrepareProposalAminoMsg {
|
|
|
773
1163
|
type: "/tendermint.abci.ResponsePrepareProposal";
|
|
774
1164
|
value: ResponsePrepareProposalAmino;
|
|
775
1165
|
}
|
|
1166
|
+
/**
|
|
1167
|
+
* @name ResponseProcessProposal
|
|
1168
|
+
* @package tendermint.abci
|
|
1169
|
+
* @see proto type: tendermint.abci.ResponseProcessProposal
|
|
1170
|
+
*/
|
|
776
1171
|
export interface ResponseProcessProposal {
|
|
777
1172
|
status: ResponseProcessProposal_ProposalStatus;
|
|
778
1173
|
}
|
|
@@ -780,6 +1175,11 @@ export interface ResponseProcessProposalProtoMsg {
|
|
|
780
1175
|
typeUrl: "/tendermint.abci.ResponseProcessProposal";
|
|
781
1176
|
value: Uint8Array;
|
|
782
1177
|
}
|
|
1178
|
+
/**
|
|
1179
|
+
* @name ResponseProcessProposalAmino
|
|
1180
|
+
* @package tendermint.abci
|
|
1181
|
+
* @see proto type: tendermint.abci.ResponseProcessProposal
|
|
1182
|
+
*/
|
|
783
1183
|
export interface ResponseProcessProposalAmino {
|
|
784
1184
|
status?: ResponseProcessProposal_ProposalStatus;
|
|
785
1185
|
}
|
|
@@ -787,6 +1187,11 @@ export interface ResponseProcessProposalAminoMsg {
|
|
|
787
1187
|
type: "/tendermint.abci.ResponseProcessProposal";
|
|
788
1188
|
value: ResponseProcessProposalAmino;
|
|
789
1189
|
}
|
|
1190
|
+
/**
|
|
1191
|
+
* @name ResponseExtendVote
|
|
1192
|
+
* @package tendermint.abci
|
|
1193
|
+
* @see proto type: tendermint.abci.ResponseExtendVote
|
|
1194
|
+
*/
|
|
790
1195
|
export interface ResponseExtendVote {
|
|
791
1196
|
voteExtension: Uint8Array;
|
|
792
1197
|
}
|
|
@@ -794,6 +1199,11 @@ export interface ResponseExtendVoteProtoMsg {
|
|
|
794
1199
|
typeUrl: "/tendermint.abci.ResponseExtendVote";
|
|
795
1200
|
value: Uint8Array;
|
|
796
1201
|
}
|
|
1202
|
+
/**
|
|
1203
|
+
* @name ResponseExtendVoteAmino
|
|
1204
|
+
* @package tendermint.abci
|
|
1205
|
+
* @see proto type: tendermint.abci.ResponseExtendVote
|
|
1206
|
+
*/
|
|
797
1207
|
export interface ResponseExtendVoteAmino {
|
|
798
1208
|
vote_extension?: string;
|
|
799
1209
|
}
|
|
@@ -801,6 +1211,11 @@ export interface ResponseExtendVoteAminoMsg {
|
|
|
801
1211
|
type: "/tendermint.abci.ResponseExtendVote";
|
|
802
1212
|
value: ResponseExtendVoteAmino;
|
|
803
1213
|
}
|
|
1214
|
+
/**
|
|
1215
|
+
* @name ResponseVerifyVoteExtension
|
|
1216
|
+
* @package tendermint.abci
|
|
1217
|
+
* @see proto type: tendermint.abci.ResponseVerifyVoteExtension
|
|
1218
|
+
*/
|
|
804
1219
|
export interface ResponseVerifyVoteExtension {
|
|
805
1220
|
status: ResponseVerifyVoteExtension_VerifyStatus;
|
|
806
1221
|
}
|
|
@@ -808,6 +1223,11 @@ export interface ResponseVerifyVoteExtensionProtoMsg {
|
|
|
808
1223
|
typeUrl: "/tendermint.abci.ResponseVerifyVoteExtension";
|
|
809
1224
|
value: Uint8Array;
|
|
810
1225
|
}
|
|
1226
|
+
/**
|
|
1227
|
+
* @name ResponseVerifyVoteExtensionAmino
|
|
1228
|
+
* @package tendermint.abci
|
|
1229
|
+
* @see proto type: tendermint.abci.ResponseVerifyVoteExtension
|
|
1230
|
+
*/
|
|
811
1231
|
export interface ResponseVerifyVoteExtensionAmino {
|
|
812
1232
|
status?: ResponseVerifyVoteExtension_VerifyStatus;
|
|
813
1233
|
}
|
|
@@ -815,8 +1235,15 @@ export interface ResponseVerifyVoteExtensionAminoMsg {
|
|
|
815
1235
|
type: "/tendermint.abci.ResponseVerifyVoteExtension";
|
|
816
1236
|
value: ResponseVerifyVoteExtensionAmino;
|
|
817
1237
|
}
|
|
1238
|
+
/**
|
|
1239
|
+
* @name ResponseFinalizeBlock
|
|
1240
|
+
* @package tendermint.abci
|
|
1241
|
+
* @see proto type: tendermint.abci.ResponseFinalizeBlock
|
|
1242
|
+
*/
|
|
818
1243
|
export interface ResponseFinalizeBlock {
|
|
819
|
-
/**
|
|
1244
|
+
/**
|
|
1245
|
+
* set of block events emmitted as part of executing the block
|
|
1246
|
+
*/
|
|
820
1247
|
events: Event[];
|
|
821
1248
|
/**
|
|
822
1249
|
* the result of executing each transaction including the events
|
|
@@ -824,9 +1251,13 @@ export interface ResponseFinalizeBlock {
|
|
|
824
1251
|
* of the transactions delivered in the block itself
|
|
825
1252
|
*/
|
|
826
1253
|
txResults: ExecTxResult[];
|
|
827
|
-
/**
|
|
1254
|
+
/**
|
|
1255
|
+
* a list of updates to the validator set. These will reflect the validator set at current height + 2.
|
|
1256
|
+
*/
|
|
828
1257
|
validatorUpdates: ValidatorUpdate[];
|
|
829
|
-
/**
|
|
1258
|
+
/**
|
|
1259
|
+
* updates to the consensus params, if any.
|
|
1260
|
+
*/
|
|
830
1261
|
consensusParamUpdates?: ConsensusParams;
|
|
831
1262
|
/**
|
|
832
1263
|
* app_hash is the hash of the applications' state which is used to confirm that execution of the transactions was
|
|
@@ -838,8 +1269,15 @@ export interface ResponseFinalizeBlockProtoMsg {
|
|
|
838
1269
|
typeUrl: "/tendermint.abci.ResponseFinalizeBlock";
|
|
839
1270
|
value: Uint8Array;
|
|
840
1271
|
}
|
|
1272
|
+
/**
|
|
1273
|
+
* @name ResponseFinalizeBlockAmino
|
|
1274
|
+
* @package tendermint.abci
|
|
1275
|
+
* @see proto type: tendermint.abci.ResponseFinalizeBlock
|
|
1276
|
+
*/
|
|
841
1277
|
export interface ResponseFinalizeBlockAmino {
|
|
842
|
-
/**
|
|
1278
|
+
/**
|
|
1279
|
+
* set of block events emmitted as part of executing the block
|
|
1280
|
+
*/
|
|
843
1281
|
events?: EventAmino[];
|
|
844
1282
|
/**
|
|
845
1283
|
* the result of executing each transaction including the events
|
|
@@ -847,9 +1285,13 @@ export interface ResponseFinalizeBlockAmino {
|
|
|
847
1285
|
* of the transactions delivered in the block itself
|
|
848
1286
|
*/
|
|
849
1287
|
tx_results?: ExecTxResultAmino[];
|
|
850
|
-
/**
|
|
1288
|
+
/**
|
|
1289
|
+
* a list of updates to the validator set. These will reflect the validator set at current height + 2.
|
|
1290
|
+
*/
|
|
851
1291
|
validator_updates?: ValidatorUpdateAmino[];
|
|
852
|
-
/**
|
|
1292
|
+
/**
|
|
1293
|
+
* updates to the consensus params, if any.
|
|
1294
|
+
*/
|
|
853
1295
|
consensus_param_updates?: ConsensusParamsAmino;
|
|
854
1296
|
/**
|
|
855
1297
|
* app_hash is the hash of the applications' state which is used to confirm that execution of the transactions was
|
|
@@ -861,6 +1303,11 @@ export interface ResponseFinalizeBlockAminoMsg {
|
|
|
861
1303
|
type: "/tendermint.abci.ResponseFinalizeBlock";
|
|
862
1304
|
value: ResponseFinalizeBlockAmino;
|
|
863
1305
|
}
|
|
1306
|
+
/**
|
|
1307
|
+
* @name CommitInfo
|
|
1308
|
+
* @package tendermint.abci
|
|
1309
|
+
* @see proto type: tendermint.abci.CommitInfo
|
|
1310
|
+
*/
|
|
864
1311
|
export interface CommitInfo {
|
|
865
1312
|
round: number;
|
|
866
1313
|
votes: VoteInfo[];
|
|
@@ -869,6 +1316,11 @@ export interface CommitInfoProtoMsg {
|
|
|
869
1316
|
typeUrl: "/tendermint.abci.CommitInfo";
|
|
870
1317
|
value: Uint8Array;
|
|
871
1318
|
}
|
|
1319
|
+
/**
|
|
1320
|
+
* @name CommitInfoAmino
|
|
1321
|
+
* @package tendermint.abci
|
|
1322
|
+
* @see proto type: tendermint.abci.CommitInfo
|
|
1323
|
+
*/
|
|
872
1324
|
export interface CommitInfoAmino {
|
|
873
1325
|
round?: number;
|
|
874
1326
|
votes?: VoteInfoAmino[];
|
|
@@ -881,9 +1333,14 @@ export interface CommitInfoAminoMsg {
|
|
|
881
1333
|
* ExtendedCommitInfo is similar to CommitInfo except that it is only used in
|
|
882
1334
|
* the PrepareProposal request such that CometBFT can provide vote extensions
|
|
883
1335
|
* to the application.
|
|
1336
|
+
* @name ExtendedCommitInfo
|
|
1337
|
+
* @package tendermint.abci
|
|
1338
|
+
* @see proto type: tendermint.abci.ExtendedCommitInfo
|
|
884
1339
|
*/
|
|
885
1340
|
export interface ExtendedCommitInfo {
|
|
886
|
-
/**
|
|
1341
|
+
/**
|
|
1342
|
+
* The round at which the block proposer decided in the previous height.
|
|
1343
|
+
*/
|
|
887
1344
|
round: number;
|
|
888
1345
|
/**
|
|
889
1346
|
* List of validators' addresses in the last validator set with their voting
|
|
@@ -899,9 +1356,14 @@ export interface ExtendedCommitInfoProtoMsg {
|
|
|
899
1356
|
* ExtendedCommitInfo is similar to CommitInfo except that it is only used in
|
|
900
1357
|
* the PrepareProposal request such that CometBFT can provide vote extensions
|
|
901
1358
|
* to the application.
|
|
1359
|
+
* @name ExtendedCommitInfoAmino
|
|
1360
|
+
* @package tendermint.abci
|
|
1361
|
+
* @see proto type: tendermint.abci.ExtendedCommitInfo
|
|
902
1362
|
*/
|
|
903
1363
|
export interface ExtendedCommitInfoAmino {
|
|
904
|
-
/**
|
|
1364
|
+
/**
|
|
1365
|
+
* The round at which the block proposer decided in the previous height.
|
|
1366
|
+
*/
|
|
905
1367
|
round?: number;
|
|
906
1368
|
/**
|
|
907
1369
|
* List of validators' addresses in the last validator set with their voting
|
|
@@ -917,6 +1379,9 @@ export interface ExtendedCommitInfoAminoMsg {
|
|
|
917
1379
|
* Event allows application developers to attach additional information to
|
|
918
1380
|
* ResponseFinalizeBlock and ResponseCheckTx.
|
|
919
1381
|
* Later, transactions may be queried using these events.
|
|
1382
|
+
* @name Event
|
|
1383
|
+
* @package tendermint.abci
|
|
1384
|
+
* @see proto type: tendermint.abci.Event
|
|
920
1385
|
*/
|
|
921
1386
|
export interface Event {
|
|
922
1387
|
type: string;
|
|
@@ -930,6 +1395,9 @@ export interface EventProtoMsg {
|
|
|
930
1395
|
* Event allows application developers to attach additional information to
|
|
931
1396
|
* ResponseFinalizeBlock and ResponseCheckTx.
|
|
932
1397
|
* Later, transactions may be queried using these events.
|
|
1398
|
+
* @name EventAmino
|
|
1399
|
+
* @package tendermint.abci
|
|
1400
|
+
* @see proto type: tendermint.abci.Event
|
|
933
1401
|
*/
|
|
934
1402
|
export interface EventAmino {
|
|
935
1403
|
type?: string;
|
|
@@ -939,22 +1407,36 @@ export interface EventAminoMsg {
|
|
|
939
1407
|
type: "/tendermint.abci.Event";
|
|
940
1408
|
value: EventAmino;
|
|
941
1409
|
}
|
|
942
|
-
/**
|
|
1410
|
+
/**
|
|
1411
|
+
* EventAttribute is a single key-value pair, associated with an event.
|
|
1412
|
+
* @name EventAttribute
|
|
1413
|
+
* @package tendermint.abci
|
|
1414
|
+
* @see proto type: tendermint.abci.EventAttribute
|
|
1415
|
+
*/
|
|
943
1416
|
export interface EventAttribute {
|
|
944
1417
|
key: string;
|
|
945
1418
|
value: string;
|
|
946
|
-
/**
|
|
1419
|
+
/**
|
|
1420
|
+
* nondeterministic
|
|
1421
|
+
*/
|
|
947
1422
|
index: boolean;
|
|
948
1423
|
}
|
|
949
1424
|
export interface EventAttributeProtoMsg {
|
|
950
1425
|
typeUrl: "/tendermint.abci.EventAttribute";
|
|
951
1426
|
value: Uint8Array;
|
|
952
1427
|
}
|
|
953
|
-
/**
|
|
1428
|
+
/**
|
|
1429
|
+
* EventAttribute is a single key-value pair, associated with an event.
|
|
1430
|
+
* @name EventAttributeAmino
|
|
1431
|
+
* @package tendermint.abci
|
|
1432
|
+
* @see proto type: tendermint.abci.EventAttribute
|
|
1433
|
+
*/
|
|
954
1434
|
export interface EventAttributeAmino {
|
|
955
1435
|
key?: string;
|
|
956
1436
|
value?: string;
|
|
957
|
-
/**
|
|
1437
|
+
/**
|
|
1438
|
+
* nondeterministic
|
|
1439
|
+
*/
|
|
958
1440
|
index?: boolean;
|
|
959
1441
|
}
|
|
960
1442
|
export interface EventAttributeAminoMsg {
|
|
@@ -965,13 +1447,20 @@ export interface EventAttributeAminoMsg {
|
|
|
965
1447
|
* ExecTxResult contains results of executing one individual transaction.
|
|
966
1448
|
*
|
|
967
1449
|
* * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted
|
|
1450
|
+
* @name ExecTxResult
|
|
1451
|
+
* @package tendermint.abci
|
|
1452
|
+
* @see proto type: tendermint.abci.ExecTxResult
|
|
968
1453
|
*/
|
|
969
1454
|
export interface ExecTxResult {
|
|
970
1455
|
code: number;
|
|
971
1456
|
data: Uint8Array;
|
|
972
|
-
/**
|
|
1457
|
+
/**
|
|
1458
|
+
* nondeterministic
|
|
1459
|
+
*/
|
|
973
1460
|
log: string;
|
|
974
|
-
/**
|
|
1461
|
+
/**
|
|
1462
|
+
* nondeterministic
|
|
1463
|
+
*/
|
|
975
1464
|
info: string;
|
|
976
1465
|
gasWanted: bigint;
|
|
977
1466
|
gasUsed: bigint;
|
|
@@ -986,13 +1475,20 @@ export interface ExecTxResultProtoMsg {
|
|
|
986
1475
|
* ExecTxResult contains results of executing one individual transaction.
|
|
987
1476
|
*
|
|
988
1477
|
* * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted
|
|
1478
|
+
* @name ExecTxResultAmino
|
|
1479
|
+
* @package tendermint.abci
|
|
1480
|
+
* @see proto type: tendermint.abci.ExecTxResult
|
|
989
1481
|
*/
|
|
990
1482
|
export interface ExecTxResultAmino {
|
|
991
1483
|
code?: number;
|
|
992
1484
|
data?: string;
|
|
993
|
-
/**
|
|
1485
|
+
/**
|
|
1486
|
+
* nondeterministic
|
|
1487
|
+
*/
|
|
994
1488
|
log?: string;
|
|
995
|
-
/**
|
|
1489
|
+
/**
|
|
1490
|
+
* nondeterministic
|
|
1491
|
+
*/
|
|
996
1492
|
info?: string;
|
|
997
1493
|
gas_wanted?: string;
|
|
998
1494
|
gas_used?: string;
|
|
@@ -1007,6 +1503,9 @@ export interface ExecTxResultAminoMsg {
|
|
|
1007
1503
|
* TxResult contains results of executing the transaction.
|
|
1008
1504
|
*
|
|
1009
1505
|
* One usage is indexing transaction results.
|
|
1506
|
+
* @name TxResult
|
|
1507
|
+
* @package tendermint.abci
|
|
1508
|
+
* @see proto type: tendermint.abci.TxResult
|
|
1010
1509
|
*/
|
|
1011
1510
|
export interface TxResult {
|
|
1012
1511
|
height: bigint;
|
|
@@ -1022,6 +1521,9 @@ export interface TxResultProtoMsg {
|
|
|
1022
1521
|
* TxResult contains results of executing the transaction.
|
|
1023
1522
|
*
|
|
1024
1523
|
* One usage is indexing transaction results.
|
|
1524
|
+
* @name TxResultAmino
|
|
1525
|
+
* @package tendermint.abci
|
|
1526
|
+
* @see proto type: tendermint.abci.TxResult
|
|
1025
1527
|
*/
|
|
1026
1528
|
export interface TxResultAmino {
|
|
1027
1529
|
height?: string;
|
|
@@ -1033,26 +1535,49 @@ export interface TxResultAminoMsg {
|
|
|
1033
1535
|
type: "/tendermint.abci.TxResult";
|
|
1034
1536
|
value: TxResultAmino;
|
|
1035
1537
|
}
|
|
1538
|
+
/**
|
|
1539
|
+
* @name Validator
|
|
1540
|
+
* @package tendermint.abci
|
|
1541
|
+
* @see proto type: tendermint.abci.Validator
|
|
1542
|
+
*/
|
|
1036
1543
|
export interface Validator {
|
|
1037
|
-
/**
|
|
1544
|
+
/**
|
|
1545
|
+
* The first 20 bytes of SHA256(public key)
|
|
1546
|
+
*/
|
|
1038
1547
|
address: Uint8Array;
|
|
1039
|
-
/**
|
|
1548
|
+
/**
|
|
1549
|
+
* PubKey pub_key = 2 [(gogoproto.nullable)=false];
|
|
1550
|
+
*/
|
|
1040
1551
|
power: bigint;
|
|
1041
1552
|
}
|
|
1042
1553
|
export interface ValidatorProtoMsg {
|
|
1043
1554
|
typeUrl: "/tendermint.abci.Validator";
|
|
1044
1555
|
value: Uint8Array;
|
|
1045
1556
|
}
|
|
1557
|
+
/**
|
|
1558
|
+
* @name ValidatorAmino
|
|
1559
|
+
* @package tendermint.abci
|
|
1560
|
+
* @see proto type: tendermint.abci.Validator
|
|
1561
|
+
*/
|
|
1046
1562
|
export interface ValidatorAmino {
|
|
1047
|
-
/**
|
|
1563
|
+
/**
|
|
1564
|
+
* The first 20 bytes of SHA256(public key)
|
|
1565
|
+
*/
|
|
1048
1566
|
address?: string;
|
|
1049
|
-
/**
|
|
1567
|
+
/**
|
|
1568
|
+
* PubKey pub_key = 2 [(gogoproto.nullable)=false];
|
|
1569
|
+
*/
|
|
1050
1570
|
power?: string;
|
|
1051
1571
|
}
|
|
1052
1572
|
export interface ValidatorAminoMsg {
|
|
1053
1573
|
type: "/tendermint.abci.Validator";
|
|
1054
1574
|
value: ValidatorAmino;
|
|
1055
1575
|
}
|
|
1576
|
+
/**
|
|
1577
|
+
* @name ValidatorUpdate
|
|
1578
|
+
* @package tendermint.abci
|
|
1579
|
+
* @see proto type: tendermint.abci.ValidatorUpdate
|
|
1580
|
+
*/
|
|
1056
1581
|
export interface ValidatorUpdate {
|
|
1057
1582
|
pubKey: PublicKey;
|
|
1058
1583
|
power: bigint;
|
|
@@ -1061,6 +1586,11 @@ export interface ValidatorUpdateProtoMsg {
|
|
|
1061
1586
|
typeUrl: "/tendermint.abci.ValidatorUpdate";
|
|
1062
1587
|
value: Uint8Array;
|
|
1063
1588
|
}
|
|
1589
|
+
/**
|
|
1590
|
+
* @name ValidatorUpdateAmino
|
|
1591
|
+
* @package tendermint.abci
|
|
1592
|
+
* @see proto type: tendermint.abci.ValidatorUpdate
|
|
1593
|
+
*/
|
|
1064
1594
|
export interface ValidatorUpdateAmino {
|
|
1065
1595
|
pub_key?: PublicKeyAmino;
|
|
1066
1596
|
power?: string;
|
|
@@ -1069,6 +1599,11 @@ export interface ValidatorUpdateAminoMsg {
|
|
|
1069
1599
|
type: "/tendermint.abci.ValidatorUpdate";
|
|
1070
1600
|
value: ValidatorUpdateAmino;
|
|
1071
1601
|
}
|
|
1602
|
+
/**
|
|
1603
|
+
* @name VoteInfo
|
|
1604
|
+
* @package tendermint.abci
|
|
1605
|
+
* @see proto type: tendermint.abci.VoteInfo
|
|
1606
|
+
*/
|
|
1072
1607
|
export interface VoteInfo {
|
|
1073
1608
|
validator: Validator;
|
|
1074
1609
|
blockIdFlag: BlockIDFlag;
|
|
@@ -1077,6 +1612,11 @@ export interface VoteInfoProtoMsg {
|
|
|
1077
1612
|
typeUrl: "/tendermint.abci.VoteInfo";
|
|
1078
1613
|
value: Uint8Array;
|
|
1079
1614
|
}
|
|
1615
|
+
/**
|
|
1616
|
+
* @name VoteInfoAmino
|
|
1617
|
+
* @package tendermint.abci
|
|
1618
|
+
* @see proto type: tendermint.abci.VoteInfo
|
|
1619
|
+
*/
|
|
1080
1620
|
export interface VoteInfoAmino {
|
|
1081
1621
|
validator?: ValidatorAmino;
|
|
1082
1622
|
block_id_flag?: BlockIDFlag;
|
|
@@ -1085,41 +1625,78 @@ export interface VoteInfoAminoMsg {
|
|
|
1085
1625
|
type: "/tendermint.abci.VoteInfo";
|
|
1086
1626
|
value: VoteInfoAmino;
|
|
1087
1627
|
}
|
|
1628
|
+
/**
|
|
1629
|
+
* @name ExtendedVoteInfo
|
|
1630
|
+
* @package tendermint.abci
|
|
1631
|
+
* @see proto type: tendermint.abci.ExtendedVoteInfo
|
|
1632
|
+
*/
|
|
1088
1633
|
export interface ExtendedVoteInfo {
|
|
1089
|
-
/**
|
|
1634
|
+
/**
|
|
1635
|
+
* The validator that sent the vote.
|
|
1636
|
+
*/
|
|
1090
1637
|
validator: Validator;
|
|
1091
|
-
/**
|
|
1638
|
+
/**
|
|
1639
|
+
* Non-deterministic extension provided by the sending validator's application.
|
|
1640
|
+
*/
|
|
1092
1641
|
voteExtension: Uint8Array;
|
|
1093
|
-
/**
|
|
1642
|
+
/**
|
|
1643
|
+
* Vote extension signature created by CometBFT
|
|
1644
|
+
*/
|
|
1094
1645
|
extensionSignature: Uint8Array;
|
|
1095
|
-
/**
|
|
1646
|
+
/**
|
|
1647
|
+
* block_id_flag indicates whether the validator voted for a block, nil, or did not vote at all
|
|
1648
|
+
*/
|
|
1096
1649
|
blockIdFlag: BlockIDFlag;
|
|
1097
1650
|
}
|
|
1098
1651
|
export interface ExtendedVoteInfoProtoMsg {
|
|
1099
1652
|
typeUrl: "/tendermint.abci.ExtendedVoteInfo";
|
|
1100
1653
|
value: Uint8Array;
|
|
1101
1654
|
}
|
|
1655
|
+
/**
|
|
1656
|
+
* @name ExtendedVoteInfoAmino
|
|
1657
|
+
* @package tendermint.abci
|
|
1658
|
+
* @see proto type: tendermint.abci.ExtendedVoteInfo
|
|
1659
|
+
*/
|
|
1102
1660
|
export interface ExtendedVoteInfoAmino {
|
|
1103
|
-
/**
|
|
1661
|
+
/**
|
|
1662
|
+
* The validator that sent the vote.
|
|
1663
|
+
*/
|
|
1104
1664
|
validator?: ValidatorAmino;
|
|
1105
|
-
/**
|
|
1665
|
+
/**
|
|
1666
|
+
* Non-deterministic extension provided by the sending validator's application.
|
|
1667
|
+
*/
|
|
1106
1668
|
vote_extension?: string;
|
|
1107
|
-
/**
|
|
1669
|
+
/**
|
|
1670
|
+
* Vote extension signature created by CometBFT
|
|
1671
|
+
*/
|
|
1108
1672
|
extension_signature?: string;
|
|
1109
|
-
/**
|
|
1673
|
+
/**
|
|
1674
|
+
* block_id_flag indicates whether the validator voted for a block, nil, or did not vote at all
|
|
1675
|
+
*/
|
|
1110
1676
|
block_id_flag?: BlockIDFlag;
|
|
1111
1677
|
}
|
|
1112
1678
|
export interface ExtendedVoteInfoAminoMsg {
|
|
1113
1679
|
type: "/tendermint.abci.ExtendedVoteInfo";
|
|
1114
1680
|
value: ExtendedVoteInfoAmino;
|
|
1115
1681
|
}
|
|
1682
|
+
/**
|
|
1683
|
+
* @name Misbehavior
|
|
1684
|
+
* @package tendermint.abci
|
|
1685
|
+
* @see proto type: tendermint.abci.Misbehavior
|
|
1686
|
+
*/
|
|
1116
1687
|
export interface Misbehavior {
|
|
1117
1688
|
type: MisbehaviorType;
|
|
1118
|
-
/**
|
|
1689
|
+
/**
|
|
1690
|
+
* The offending validator
|
|
1691
|
+
*/
|
|
1119
1692
|
validator: Validator;
|
|
1120
|
-
/**
|
|
1693
|
+
/**
|
|
1694
|
+
* The height when the offense occurred
|
|
1695
|
+
*/
|
|
1121
1696
|
height: bigint;
|
|
1122
|
-
/**
|
|
1697
|
+
/**
|
|
1698
|
+
* The corresponding time where the offense occurred
|
|
1699
|
+
*/
|
|
1123
1700
|
time: Date;
|
|
1124
1701
|
/**
|
|
1125
1702
|
* Total voting power of the validator set in case the ABCI application does
|
|
@@ -1132,13 +1709,24 @@ export interface MisbehaviorProtoMsg {
|
|
|
1132
1709
|
typeUrl: "/tendermint.abci.Misbehavior";
|
|
1133
1710
|
value: Uint8Array;
|
|
1134
1711
|
}
|
|
1712
|
+
/**
|
|
1713
|
+
* @name MisbehaviorAmino
|
|
1714
|
+
* @package tendermint.abci
|
|
1715
|
+
* @see proto type: tendermint.abci.Misbehavior
|
|
1716
|
+
*/
|
|
1135
1717
|
export interface MisbehaviorAmino {
|
|
1136
1718
|
type?: MisbehaviorType;
|
|
1137
|
-
/**
|
|
1719
|
+
/**
|
|
1720
|
+
* The offending validator
|
|
1721
|
+
*/
|
|
1138
1722
|
validator?: ValidatorAmino;
|
|
1139
|
-
/**
|
|
1723
|
+
/**
|
|
1724
|
+
* The height when the offense occurred
|
|
1725
|
+
*/
|
|
1140
1726
|
height?: string;
|
|
1141
|
-
/**
|
|
1727
|
+
/**
|
|
1728
|
+
* The corresponding time where the offense occurred
|
|
1729
|
+
*/
|
|
1142
1730
|
time?: string;
|
|
1143
1731
|
/**
|
|
1144
1732
|
* Total voting power of the validator set in case the ABCI application does
|
|
@@ -1151,38 +1739,73 @@ export interface MisbehaviorAminoMsg {
|
|
|
1151
1739
|
type: "/tendermint.abci.Misbehavior";
|
|
1152
1740
|
value: MisbehaviorAmino;
|
|
1153
1741
|
}
|
|
1742
|
+
/**
|
|
1743
|
+
* @name Snapshot
|
|
1744
|
+
* @package tendermint.abci
|
|
1745
|
+
* @see proto type: tendermint.abci.Snapshot
|
|
1746
|
+
*/
|
|
1154
1747
|
export interface Snapshot {
|
|
1155
|
-
/**
|
|
1748
|
+
/**
|
|
1749
|
+
* The height at which the snapshot was taken
|
|
1750
|
+
*/
|
|
1156
1751
|
height: bigint;
|
|
1157
|
-
/**
|
|
1752
|
+
/**
|
|
1753
|
+
* The application-specific snapshot format
|
|
1754
|
+
*/
|
|
1158
1755
|
format: number;
|
|
1159
|
-
/**
|
|
1756
|
+
/**
|
|
1757
|
+
* Number of chunks in the snapshot
|
|
1758
|
+
*/
|
|
1160
1759
|
chunks: number;
|
|
1161
|
-
/**
|
|
1760
|
+
/**
|
|
1761
|
+
* Arbitrary snapshot hash, equal only if identical
|
|
1762
|
+
*/
|
|
1162
1763
|
hash: Uint8Array;
|
|
1163
|
-
/**
|
|
1764
|
+
/**
|
|
1765
|
+
* Arbitrary application metadata
|
|
1766
|
+
*/
|
|
1164
1767
|
metadata: Uint8Array;
|
|
1165
1768
|
}
|
|
1166
1769
|
export interface SnapshotProtoMsg {
|
|
1167
1770
|
typeUrl: "/tendermint.abci.Snapshot";
|
|
1168
1771
|
value: Uint8Array;
|
|
1169
1772
|
}
|
|
1773
|
+
/**
|
|
1774
|
+
* @name SnapshotAmino
|
|
1775
|
+
* @package tendermint.abci
|
|
1776
|
+
* @see proto type: tendermint.abci.Snapshot
|
|
1777
|
+
*/
|
|
1170
1778
|
export interface SnapshotAmino {
|
|
1171
|
-
/**
|
|
1779
|
+
/**
|
|
1780
|
+
* The height at which the snapshot was taken
|
|
1781
|
+
*/
|
|
1172
1782
|
height?: string;
|
|
1173
|
-
/**
|
|
1783
|
+
/**
|
|
1784
|
+
* The application-specific snapshot format
|
|
1785
|
+
*/
|
|
1174
1786
|
format?: number;
|
|
1175
|
-
/**
|
|
1787
|
+
/**
|
|
1788
|
+
* Number of chunks in the snapshot
|
|
1789
|
+
*/
|
|
1176
1790
|
chunks?: number;
|
|
1177
|
-
/**
|
|
1791
|
+
/**
|
|
1792
|
+
* Arbitrary snapshot hash, equal only if identical
|
|
1793
|
+
*/
|
|
1178
1794
|
hash?: string;
|
|
1179
|
-
/**
|
|
1795
|
+
/**
|
|
1796
|
+
* Arbitrary application metadata
|
|
1797
|
+
*/
|
|
1180
1798
|
metadata?: string;
|
|
1181
1799
|
}
|
|
1182
1800
|
export interface SnapshotAminoMsg {
|
|
1183
1801
|
type: "/tendermint.abci.Snapshot";
|
|
1184
1802
|
value: SnapshotAmino;
|
|
1185
1803
|
}
|
|
1804
|
+
/**
|
|
1805
|
+
* @name Request
|
|
1806
|
+
* @package tendermint.abci
|
|
1807
|
+
* @see proto type: tendermint.abci.Request
|
|
1808
|
+
*/
|
|
1186
1809
|
export declare const Request: {
|
|
1187
1810
|
typeUrl: string;
|
|
1188
1811
|
encode(message: Request, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1195,6 +1818,11 @@ export declare const Request: {
|
|
|
1195
1818
|
toProto(message: Request): Uint8Array;
|
|
1196
1819
|
toProtoMsg(message: Request): RequestProtoMsg;
|
|
1197
1820
|
};
|
|
1821
|
+
/**
|
|
1822
|
+
* @name RequestEcho
|
|
1823
|
+
* @package tendermint.abci
|
|
1824
|
+
* @see proto type: tendermint.abci.RequestEcho
|
|
1825
|
+
*/
|
|
1198
1826
|
export declare const RequestEcho: {
|
|
1199
1827
|
typeUrl: string;
|
|
1200
1828
|
encode(message: RequestEcho, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1207,6 +1835,11 @@ export declare const RequestEcho: {
|
|
|
1207
1835
|
toProto(message: RequestEcho): Uint8Array;
|
|
1208
1836
|
toProtoMsg(message: RequestEcho): RequestEchoProtoMsg;
|
|
1209
1837
|
};
|
|
1838
|
+
/**
|
|
1839
|
+
* @name RequestFlush
|
|
1840
|
+
* @package tendermint.abci
|
|
1841
|
+
* @see proto type: tendermint.abci.RequestFlush
|
|
1842
|
+
*/
|
|
1210
1843
|
export declare const RequestFlush: {
|
|
1211
1844
|
typeUrl: string;
|
|
1212
1845
|
encode(_: RequestFlush, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1219,6 +1852,11 @@ export declare const RequestFlush: {
|
|
|
1219
1852
|
toProto(message: RequestFlush): Uint8Array;
|
|
1220
1853
|
toProtoMsg(message: RequestFlush): RequestFlushProtoMsg;
|
|
1221
1854
|
};
|
|
1855
|
+
/**
|
|
1856
|
+
* @name RequestInfo
|
|
1857
|
+
* @package tendermint.abci
|
|
1858
|
+
* @see proto type: tendermint.abci.RequestInfo
|
|
1859
|
+
*/
|
|
1222
1860
|
export declare const RequestInfo: {
|
|
1223
1861
|
typeUrl: string;
|
|
1224
1862
|
encode(message: RequestInfo, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1231,6 +1869,11 @@ export declare const RequestInfo: {
|
|
|
1231
1869
|
toProto(message: RequestInfo): Uint8Array;
|
|
1232
1870
|
toProtoMsg(message: RequestInfo): RequestInfoProtoMsg;
|
|
1233
1871
|
};
|
|
1872
|
+
/**
|
|
1873
|
+
* @name RequestInitChain
|
|
1874
|
+
* @package tendermint.abci
|
|
1875
|
+
* @see proto type: tendermint.abci.RequestInitChain
|
|
1876
|
+
*/
|
|
1234
1877
|
export declare const RequestInitChain: {
|
|
1235
1878
|
typeUrl: string;
|
|
1236
1879
|
encode(message: RequestInitChain, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1243,6 +1886,11 @@ export declare const RequestInitChain: {
|
|
|
1243
1886
|
toProto(message: RequestInitChain): Uint8Array;
|
|
1244
1887
|
toProtoMsg(message: RequestInitChain): RequestInitChainProtoMsg;
|
|
1245
1888
|
};
|
|
1889
|
+
/**
|
|
1890
|
+
* @name RequestQuery
|
|
1891
|
+
* @package tendermint.abci
|
|
1892
|
+
* @see proto type: tendermint.abci.RequestQuery
|
|
1893
|
+
*/
|
|
1246
1894
|
export declare const RequestQuery: {
|
|
1247
1895
|
typeUrl: string;
|
|
1248
1896
|
encode(message: RequestQuery, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1255,6 +1903,11 @@ export declare const RequestQuery: {
|
|
|
1255
1903
|
toProto(message: RequestQuery): Uint8Array;
|
|
1256
1904
|
toProtoMsg(message: RequestQuery): RequestQueryProtoMsg;
|
|
1257
1905
|
};
|
|
1906
|
+
/**
|
|
1907
|
+
* @name RequestCheckTx
|
|
1908
|
+
* @package tendermint.abci
|
|
1909
|
+
* @see proto type: tendermint.abci.RequestCheckTx
|
|
1910
|
+
*/
|
|
1258
1911
|
export declare const RequestCheckTx: {
|
|
1259
1912
|
typeUrl: string;
|
|
1260
1913
|
encode(message: RequestCheckTx, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1267,6 +1920,11 @@ export declare const RequestCheckTx: {
|
|
|
1267
1920
|
toProto(message: RequestCheckTx): Uint8Array;
|
|
1268
1921
|
toProtoMsg(message: RequestCheckTx): RequestCheckTxProtoMsg;
|
|
1269
1922
|
};
|
|
1923
|
+
/**
|
|
1924
|
+
* @name RequestCommit
|
|
1925
|
+
* @package tendermint.abci
|
|
1926
|
+
* @see proto type: tendermint.abci.RequestCommit
|
|
1927
|
+
*/
|
|
1270
1928
|
export declare const RequestCommit: {
|
|
1271
1929
|
typeUrl: string;
|
|
1272
1930
|
encode(_: RequestCommit, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1279,6 +1937,12 @@ export declare const RequestCommit: {
|
|
|
1279
1937
|
toProto(message: RequestCommit): Uint8Array;
|
|
1280
1938
|
toProtoMsg(message: RequestCommit): RequestCommitProtoMsg;
|
|
1281
1939
|
};
|
|
1940
|
+
/**
|
|
1941
|
+
* lists available snapshots
|
|
1942
|
+
* @name RequestListSnapshots
|
|
1943
|
+
* @package tendermint.abci
|
|
1944
|
+
* @see proto type: tendermint.abci.RequestListSnapshots
|
|
1945
|
+
*/
|
|
1282
1946
|
export declare const RequestListSnapshots: {
|
|
1283
1947
|
typeUrl: string;
|
|
1284
1948
|
encode(_: RequestListSnapshots, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1291,6 +1955,12 @@ export declare const RequestListSnapshots: {
|
|
|
1291
1955
|
toProto(message: RequestListSnapshots): Uint8Array;
|
|
1292
1956
|
toProtoMsg(message: RequestListSnapshots): RequestListSnapshotsProtoMsg;
|
|
1293
1957
|
};
|
|
1958
|
+
/**
|
|
1959
|
+
* offers a snapshot to the application
|
|
1960
|
+
* @name RequestOfferSnapshot
|
|
1961
|
+
* @package tendermint.abci
|
|
1962
|
+
* @see proto type: tendermint.abci.RequestOfferSnapshot
|
|
1963
|
+
*/
|
|
1294
1964
|
export declare const RequestOfferSnapshot: {
|
|
1295
1965
|
typeUrl: string;
|
|
1296
1966
|
encode(message: RequestOfferSnapshot, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1303,6 +1973,12 @@ export declare const RequestOfferSnapshot: {
|
|
|
1303
1973
|
toProto(message: RequestOfferSnapshot): Uint8Array;
|
|
1304
1974
|
toProtoMsg(message: RequestOfferSnapshot): RequestOfferSnapshotProtoMsg;
|
|
1305
1975
|
};
|
|
1976
|
+
/**
|
|
1977
|
+
* loads a snapshot chunk
|
|
1978
|
+
* @name RequestLoadSnapshotChunk
|
|
1979
|
+
* @package tendermint.abci
|
|
1980
|
+
* @see proto type: tendermint.abci.RequestLoadSnapshotChunk
|
|
1981
|
+
*/
|
|
1306
1982
|
export declare const RequestLoadSnapshotChunk: {
|
|
1307
1983
|
typeUrl: string;
|
|
1308
1984
|
encode(message: RequestLoadSnapshotChunk, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1315,6 +1991,12 @@ export declare const RequestLoadSnapshotChunk: {
|
|
|
1315
1991
|
toProto(message: RequestLoadSnapshotChunk): Uint8Array;
|
|
1316
1992
|
toProtoMsg(message: RequestLoadSnapshotChunk): RequestLoadSnapshotChunkProtoMsg;
|
|
1317
1993
|
};
|
|
1994
|
+
/**
|
|
1995
|
+
* Applies a snapshot chunk
|
|
1996
|
+
* @name RequestApplySnapshotChunk
|
|
1997
|
+
* @package tendermint.abci
|
|
1998
|
+
* @see proto type: tendermint.abci.RequestApplySnapshotChunk
|
|
1999
|
+
*/
|
|
1318
2000
|
export declare const RequestApplySnapshotChunk: {
|
|
1319
2001
|
typeUrl: string;
|
|
1320
2002
|
encode(message: RequestApplySnapshotChunk, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1327,6 +2009,11 @@ export declare const RequestApplySnapshotChunk: {
|
|
|
1327
2009
|
toProto(message: RequestApplySnapshotChunk): Uint8Array;
|
|
1328
2010
|
toProtoMsg(message: RequestApplySnapshotChunk): RequestApplySnapshotChunkProtoMsg;
|
|
1329
2011
|
};
|
|
2012
|
+
/**
|
|
2013
|
+
* @name RequestPrepareProposal
|
|
2014
|
+
* @package tendermint.abci
|
|
2015
|
+
* @see proto type: tendermint.abci.RequestPrepareProposal
|
|
2016
|
+
*/
|
|
1330
2017
|
export declare const RequestPrepareProposal: {
|
|
1331
2018
|
typeUrl: string;
|
|
1332
2019
|
encode(message: RequestPrepareProposal, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1339,6 +2026,11 @@ export declare const RequestPrepareProposal: {
|
|
|
1339
2026
|
toProto(message: RequestPrepareProposal): Uint8Array;
|
|
1340
2027
|
toProtoMsg(message: RequestPrepareProposal): RequestPrepareProposalProtoMsg;
|
|
1341
2028
|
};
|
|
2029
|
+
/**
|
|
2030
|
+
* @name RequestProcessProposal
|
|
2031
|
+
* @package tendermint.abci
|
|
2032
|
+
* @see proto type: tendermint.abci.RequestProcessProposal
|
|
2033
|
+
*/
|
|
1342
2034
|
export declare const RequestProcessProposal: {
|
|
1343
2035
|
typeUrl: string;
|
|
1344
2036
|
encode(message: RequestProcessProposal, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1351,6 +2043,12 @@ export declare const RequestProcessProposal: {
|
|
|
1351
2043
|
toProto(message: RequestProcessProposal): Uint8Array;
|
|
1352
2044
|
toProtoMsg(message: RequestProcessProposal): RequestProcessProposalProtoMsg;
|
|
1353
2045
|
};
|
|
2046
|
+
/**
|
|
2047
|
+
* Extends a vote with application-injected data
|
|
2048
|
+
* @name RequestExtendVote
|
|
2049
|
+
* @package tendermint.abci
|
|
2050
|
+
* @see proto type: tendermint.abci.RequestExtendVote
|
|
2051
|
+
*/
|
|
1354
2052
|
export declare const RequestExtendVote: {
|
|
1355
2053
|
typeUrl: string;
|
|
1356
2054
|
encode(message: RequestExtendVote, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1363,6 +2061,12 @@ export declare const RequestExtendVote: {
|
|
|
1363
2061
|
toProto(message: RequestExtendVote): Uint8Array;
|
|
1364
2062
|
toProtoMsg(message: RequestExtendVote): RequestExtendVoteProtoMsg;
|
|
1365
2063
|
};
|
|
2064
|
+
/**
|
|
2065
|
+
* Verify the vote extension
|
|
2066
|
+
* @name RequestVerifyVoteExtension
|
|
2067
|
+
* @package tendermint.abci
|
|
2068
|
+
* @see proto type: tendermint.abci.RequestVerifyVoteExtension
|
|
2069
|
+
*/
|
|
1366
2070
|
export declare const RequestVerifyVoteExtension: {
|
|
1367
2071
|
typeUrl: string;
|
|
1368
2072
|
encode(message: RequestVerifyVoteExtension, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1375,6 +2079,11 @@ export declare const RequestVerifyVoteExtension: {
|
|
|
1375
2079
|
toProto(message: RequestVerifyVoteExtension): Uint8Array;
|
|
1376
2080
|
toProtoMsg(message: RequestVerifyVoteExtension): RequestVerifyVoteExtensionProtoMsg;
|
|
1377
2081
|
};
|
|
2082
|
+
/**
|
|
2083
|
+
* @name RequestFinalizeBlock
|
|
2084
|
+
* @package tendermint.abci
|
|
2085
|
+
* @see proto type: tendermint.abci.RequestFinalizeBlock
|
|
2086
|
+
*/
|
|
1378
2087
|
export declare const RequestFinalizeBlock: {
|
|
1379
2088
|
typeUrl: string;
|
|
1380
2089
|
encode(message: RequestFinalizeBlock, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1387,6 +2096,11 @@ export declare const RequestFinalizeBlock: {
|
|
|
1387
2096
|
toProto(message: RequestFinalizeBlock): Uint8Array;
|
|
1388
2097
|
toProtoMsg(message: RequestFinalizeBlock): RequestFinalizeBlockProtoMsg;
|
|
1389
2098
|
};
|
|
2099
|
+
/**
|
|
2100
|
+
* @name Response
|
|
2101
|
+
* @package tendermint.abci
|
|
2102
|
+
* @see proto type: tendermint.abci.Response
|
|
2103
|
+
*/
|
|
1390
2104
|
export declare const Response: {
|
|
1391
2105
|
typeUrl: string;
|
|
1392
2106
|
encode(message: Response, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1399,6 +2113,12 @@ export declare const Response: {
|
|
|
1399
2113
|
toProto(message: Response): Uint8Array;
|
|
1400
2114
|
toProtoMsg(message: Response): ResponseProtoMsg;
|
|
1401
2115
|
};
|
|
2116
|
+
/**
|
|
2117
|
+
* nondeterministic
|
|
2118
|
+
* @name ResponseException
|
|
2119
|
+
* @package tendermint.abci
|
|
2120
|
+
* @see proto type: tendermint.abci.ResponseException
|
|
2121
|
+
*/
|
|
1402
2122
|
export declare const ResponseException: {
|
|
1403
2123
|
typeUrl: string;
|
|
1404
2124
|
encode(message: ResponseException, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1411,6 +2131,11 @@ export declare const ResponseException: {
|
|
|
1411
2131
|
toProto(message: ResponseException): Uint8Array;
|
|
1412
2132
|
toProtoMsg(message: ResponseException): ResponseExceptionProtoMsg;
|
|
1413
2133
|
};
|
|
2134
|
+
/**
|
|
2135
|
+
* @name ResponseEcho
|
|
2136
|
+
* @package tendermint.abci
|
|
2137
|
+
* @see proto type: tendermint.abci.ResponseEcho
|
|
2138
|
+
*/
|
|
1414
2139
|
export declare const ResponseEcho: {
|
|
1415
2140
|
typeUrl: string;
|
|
1416
2141
|
encode(message: ResponseEcho, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1423,6 +2148,11 @@ export declare const ResponseEcho: {
|
|
|
1423
2148
|
toProto(message: ResponseEcho): Uint8Array;
|
|
1424
2149
|
toProtoMsg(message: ResponseEcho): ResponseEchoProtoMsg;
|
|
1425
2150
|
};
|
|
2151
|
+
/**
|
|
2152
|
+
* @name ResponseFlush
|
|
2153
|
+
* @package tendermint.abci
|
|
2154
|
+
* @see proto type: tendermint.abci.ResponseFlush
|
|
2155
|
+
*/
|
|
1426
2156
|
export declare const ResponseFlush: {
|
|
1427
2157
|
typeUrl: string;
|
|
1428
2158
|
encode(_: ResponseFlush, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1435,6 +2165,11 @@ export declare const ResponseFlush: {
|
|
|
1435
2165
|
toProto(message: ResponseFlush): Uint8Array;
|
|
1436
2166
|
toProtoMsg(message: ResponseFlush): ResponseFlushProtoMsg;
|
|
1437
2167
|
};
|
|
2168
|
+
/**
|
|
2169
|
+
* @name ResponseInfo
|
|
2170
|
+
* @package tendermint.abci
|
|
2171
|
+
* @see proto type: tendermint.abci.ResponseInfo
|
|
2172
|
+
*/
|
|
1438
2173
|
export declare const ResponseInfo: {
|
|
1439
2174
|
typeUrl: string;
|
|
1440
2175
|
encode(message: ResponseInfo, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1447,6 +2182,11 @@ export declare const ResponseInfo: {
|
|
|
1447
2182
|
toProto(message: ResponseInfo): Uint8Array;
|
|
1448
2183
|
toProtoMsg(message: ResponseInfo): ResponseInfoProtoMsg;
|
|
1449
2184
|
};
|
|
2185
|
+
/**
|
|
2186
|
+
* @name ResponseInitChain
|
|
2187
|
+
* @package tendermint.abci
|
|
2188
|
+
* @see proto type: tendermint.abci.ResponseInitChain
|
|
2189
|
+
*/
|
|
1450
2190
|
export declare const ResponseInitChain: {
|
|
1451
2191
|
typeUrl: string;
|
|
1452
2192
|
encode(message: ResponseInitChain, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1459,6 +2199,11 @@ export declare const ResponseInitChain: {
|
|
|
1459
2199
|
toProto(message: ResponseInitChain): Uint8Array;
|
|
1460
2200
|
toProtoMsg(message: ResponseInitChain): ResponseInitChainProtoMsg;
|
|
1461
2201
|
};
|
|
2202
|
+
/**
|
|
2203
|
+
* @name ResponseQuery
|
|
2204
|
+
* @package tendermint.abci
|
|
2205
|
+
* @see proto type: tendermint.abci.ResponseQuery
|
|
2206
|
+
*/
|
|
1462
2207
|
export declare const ResponseQuery: {
|
|
1463
2208
|
typeUrl: string;
|
|
1464
2209
|
encode(message: ResponseQuery, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1471,6 +2216,11 @@ export declare const ResponseQuery: {
|
|
|
1471
2216
|
toProto(message: ResponseQuery): Uint8Array;
|
|
1472
2217
|
toProtoMsg(message: ResponseQuery): ResponseQueryProtoMsg;
|
|
1473
2218
|
};
|
|
2219
|
+
/**
|
|
2220
|
+
* @name ResponseCheckTx
|
|
2221
|
+
* @package tendermint.abci
|
|
2222
|
+
* @see proto type: tendermint.abci.ResponseCheckTx
|
|
2223
|
+
*/
|
|
1474
2224
|
export declare const ResponseCheckTx: {
|
|
1475
2225
|
typeUrl: string;
|
|
1476
2226
|
encode(message: ResponseCheckTx, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1483,6 +2233,11 @@ export declare const ResponseCheckTx: {
|
|
|
1483
2233
|
toProto(message: ResponseCheckTx): Uint8Array;
|
|
1484
2234
|
toProtoMsg(message: ResponseCheckTx): ResponseCheckTxProtoMsg;
|
|
1485
2235
|
};
|
|
2236
|
+
/**
|
|
2237
|
+
* @name ResponseCommit
|
|
2238
|
+
* @package tendermint.abci
|
|
2239
|
+
* @see proto type: tendermint.abci.ResponseCommit
|
|
2240
|
+
*/
|
|
1486
2241
|
export declare const ResponseCommit: {
|
|
1487
2242
|
typeUrl: string;
|
|
1488
2243
|
encode(message: ResponseCommit, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1495,6 +2250,11 @@ export declare const ResponseCommit: {
|
|
|
1495
2250
|
toProto(message: ResponseCommit): Uint8Array;
|
|
1496
2251
|
toProtoMsg(message: ResponseCommit): ResponseCommitProtoMsg;
|
|
1497
2252
|
};
|
|
2253
|
+
/**
|
|
2254
|
+
* @name ResponseListSnapshots
|
|
2255
|
+
* @package tendermint.abci
|
|
2256
|
+
* @see proto type: tendermint.abci.ResponseListSnapshots
|
|
2257
|
+
*/
|
|
1498
2258
|
export declare const ResponseListSnapshots: {
|
|
1499
2259
|
typeUrl: string;
|
|
1500
2260
|
encode(message: ResponseListSnapshots, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1507,6 +2267,11 @@ export declare const ResponseListSnapshots: {
|
|
|
1507
2267
|
toProto(message: ResponseListSnapshots): Uint8Array;
|
|
1508
2268
|
toProtoMsg(message: ResponseListSnapshots): ResponseListSnapshotsProtoMsg;
|
|
1509
2269
|
};
|
|
2270
|
+
/**
|
|
2271
|
+
* @name ResponseOfferSnapshot
|
|
2272
|
+
* @package tendermint.abci
|
|
2273
|
+
* @see proto type: tendermint.abci.ResponseOfferSnapshot
|
|
2274
|
+
*/
|
|
1510
2275
|
export declare const ResponseOfferSnapshot: {
|
|
1511
2276
|
typeUrl: string;
|
|
1512
2277
|
encode(message: ResponseOfferSnapshot, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1519,6 +2284,11 @@ export declare const ResponseOfferSnapshot: {
|
|
|
1519
2284
|
toProto(message: ResponseOfferSnapshot): Uint8Array;
|
|
1520
2285
|
toProtoMsg(message: ResponseOfferSnapshot): ResponseOfferSnapshotProtoMsg;
|
|
1521
2286
|
};
|
|
2287
|
+
/**
|
|
2288
|
+
* @name ResponseLoadSnapshotChunk
|
|
2289
|
+
* @package tendermint.abci
|
|
2290
|
+
* @see proto type: tendermint.abci.ResponseLoadSnapshotChunk
|
|
2291
|
+
*/
|
|
1522
2292
|
export declare const ResponseLoadSnapshotChunk: {
|
|
1523
2293
|
typeUrl: string;
|
|
1524
2294
|
encode(message: ResponseLoadSnapshotChunk, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1531,6 +2301,11 @@ export declare const ResponseLoadSnapshotChunk: {
|
|
|
1531
2301
|
toProto(message: ResponseLoadSnapshotChunk): Uint8Array;
|
|
1532
2302
|
toProtoMsg(message: ResponseLoadSnapshotChunk): ResponseLoadSnapshotChunkProtoMsg;
|
|
1533
2303
|
};
|
|
2304
|
+
/**
|
|
2305
|
+
* @name ResponseApplySnapshotChunk
|
|
2306
|
+
* @package tendermint.abci
|
|
2307
|
+
* @see proto type: tendermint.abci.ResponseApplySnapshotChunk
|
|
2308
|
+
*/
|
|
1534
2309
|
export declare const ResponseApplySnapshotChunk: {
|
|
1535
2310
|
typeUrl: string;
|
|
1536
2311
|
encode(message: ResponseApplySnapshotChunk, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1543,6 +2318,11 @@ export declare const ResponseApplySnapshotChunk: {
|
|
|
1543
2318
|
toProto(message: ResponseApplySnapshotChunk): Uint8Array;
|
|
1544
2319
|
toProtoMsg(message: ResponseApplySnapshotChunk): ResponseApplySnapshotChunkProtoMsg;
|
|
1545
2320
|
};
|
|
2321
|
+
/**
|
|
2322
|
+
* @name ResponsePrepareProposal
|
|
2323
|
+
* @package tendermint.abci
|
|
2324
|
+
* @see proto type: tendermint.abci.ResponsePrepareProposal
|
|
2325
|
+
*/
|
|
1546
2326
|
export declare const ResponsePrepareProposal: {
|
|
1547
2327
|
typeUrl: string;
|
|
1548
2328
|
encode(message: ResponsePrepareProposal, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1555,6 +2335,11 @@ export declare const ResponsePrepareProposal: {
|
|
|
1555
2335
|
toProto(message: ResponsePrepareProposal): Uint8Array;
|
|
1556
2336
|
toProtoMsg(message: ResponsePrepareProposal): ResponsePrepareProposalProtoMsg;
|
|
1557
2337
|
};
|
|
2338
|
+
/**
|
|
2339
|
+
* @name ResponseProcessProposal
|
|
2340
|
+
* @package tendermint.abci
|
|
2341
|
+
* @see proto type: tendermint.abci.ResponseProcessProposal
|
|
2342
|
+
*/
|
|
1558
2343
|
export declare const ResponseProcessProposal: {
|
|
1559
2344
|
typeUrl: string;
|
|
1560
2345
|
encode(message: ResponseProcessProposal, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1567,6 +2352,11 @@ export declare const ResponseProcessProposal: {
|
|
|
1567
2352
|
toProto(message: ResponseProcessProposal): Uint8Array;
|
|
1568
2353
|
toProtoMsg(message: ResponseProcessProposal): ResponseProcessProposalProtoMsg;
|
|
1569
2354
|
};
|
|
2355
|
+
/**
|
|
2356
|
+
* @name ResponseExtendVote
|
|
2357
|
+
* @package tendermint.abci
|
|
2358
|
+
* @see proto type: tendermint.abci.ResponseExtendVote
|
|
2359
|
+
*/
|
|
1570
2360
|
export declare const ResponseExtendVote: {
|
|
1571
2361
|
typeUrl: string;
|
|
1572
2362
|
encode(message: ResponseExtendVote, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1579,6 +2369,11 @@ export declare const ResponseExtendVote: {
|
|
|
1579
2369
|
toProto(message: ResponseExtendVote): Uint8Array;
|
|
1580
2370
|
toProtoMsg(message: ResponseExtendVote): ResponseExtendVoteProtoMsg;
|
|
1581
2371
|
};
|
|
2372
|
+
/**
|
|
2373
|
+
* @name ResponseVerifyVoteExtension
|
|
2374
|
+
* @package tendermint.abci
|
|
2375
|
+
* @see proto type: tendermint.abci.ResponseVerifyVoteExtension
|
|
2376
|
+
*/
|
|
1582
2377
|
export declare const ResponseVerifyVoteExtension: {
|
|
1583
2378
|
typeUrl: string;
|
|
1584
2379
|
encode(message: ResponseVerifyVoteExtension, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1591,6 +2386,11 @@ export declare const ResponseVerifyVoteExtension: {
|
|
|
1591
2386
|
toProto(message: ResponseVerifyVoteExtension): Uint8Array;
|
|
1592
2387
|
toProtoMsg(message: ResponseVerifyVoteExtension): ResponseVerifyVoteExtensionProtoMsg;
|
|
1593
2388
|
};
|
|
2389
|
+
/**
|
|
2390
|
+
* @name ResponseFinalizeBlock
|
|
2391
|
+
* @package tendermint.abci
|
|
2392
|
+
* @see proto type: tendermint.abci.ResponseFinalizeBlock
|
|
2393
|
+
*/
|
|
1594
2394
|
export declare const ResponseFinalizeBlock: {
|
|
1595
2395
|
typeUrl: string;
|
|
1596
2396
|
encode(message: ResponseFinalizeBlock, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1603,6 +2403,11 @@ export declare const ResponseFinalizeBlock: {
|
|
|
1603
2403
|
toProto(message: ResponseFinalizeBlock): Uint8Array;
|
|
1604
2404
|
toProtoMsg(message: ResponseFinalizeBlock): ResponseFinalizeBlockProtoMsg;
|
|
1605
2405
|
};
|
|
2406
|
+
/**
|
|
2407
|
+
* @name CommitInfo
|
|
2408
|
+
* @package tendermint.abci
|
|
2409
|
+
* @see proto type: tendermint.abci.CommitInfo
|
|
2410
|
+
*/
|
|
1606
2411
|
export declare const CommitInfo: {
|
|
1607
2412
|
typeUrl: string;
|
|
1608
2413
|
encode(message: CommitInfo, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1615,6 +2420,14 @@ export declare const CommitInfo: {
|
|
|
1615
2420
|
toProto(message: CommitInfo): Uint8Array;
|
|
1616
2421
|
toProtoMsg(message: CommitInfo): CommitInfoProtoMsg;
|
|
1617
2422
|
};
|
|
2423
|
+
/**
|
|
2424
|
+
* ExtendedCommitInfo is similar to CommitInfo except that it is only used in
|
|
2425
|
+
* the PrepareProposal request such that CometBFT can provide vote extensions
|
|
2426
|
+
* to the application.
|
|
2427
|
+
* @name ExtendedCommitInfo
|
|
2428
|
+
* @package tendermint.abci
|
|
2429
|
+
* @see proto type: tendermint.abci.ExtendedCommitInfo
|
|
2430
|
+
*/
|
|
1618
2431
|
export declare const ExtendedCommitInfo: {
|
|
1619
2432
|
typeUrl: string;
|
|
1620
2433
|
encode(message: ExtendedCommitInfo, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1627,6 +2440,14 @@ export declare const ExtendedCommitInfo: {
|
|
|
1627
2440
|
toProto(message: ExtendedCommitInfo): Uint8Array;
|
|
1628
2441
|
toProtoMsg(message: ExtendedCommitInfo): ExtendedCommitInfoProtoMsg;
|
|
1629
2442
|
};
|
|
2443
|
+
/**
|
|
2444
|
+
* Event allows application developers to attach additional information to
|
|
2445
|
+
* ResponseFinalizeBlock and ResponseCheckTx.
|
|
2446
|
+
* Later, transactions may be queried using these events.
|
|
2447
|
+
* @name Event
|
|
2448
|
+
* @package tendermint.abci
|
|
2449
|
+
* @see proto type: tendermint.abci.Event
|
|
2450
|
+
*/
|
|
1630
2451
|
export declare const Event: {
|
|
1631
2452
|
typeUrl: string;
|
|
1632
2453
|
encode(message: Event, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1639,6 +2460,12 @@ export declare const Event: {
|
|
|
1639
2460
|
toProto(message: Event): Uint8Array;
|
|
1640
2461
|
toProtoMsg(message: Event): EventProtoMsg;
|
|
1641
2462
|
};
|
|
2463
|
+
/**
|
|
2464
|
+
* EventAttribute is a single key-value pair, associated with an event.
|
|
2465
|
+
* @name EventAttribute
|
|
2466
|
+
* @package tendermint.abci
|
|
2467
|
+
* @see proto type: tendermint.abci.EventAttribute
|
|
2468
|
+
*/
|
|
1642
2469
|
export declare const EventAttribute: {
|
|
1643
2470
|
typeUrl: string;
|
|
1644
2471
|
encode(message: EventAttribute, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1651,6 +2478,14 @@ export declare const EventAttribute: {
|
|
|
1651
2478
|
toProto(message: EventAttribute): Uint8Array;
|
|
1652
2479
|
toProtoMsg(message: EventAttribute): EventAttributeProtoMsg;
|
|
1653
2480
|
};
|
|
2481
|
+
/**
|
|
2482
|
+
* ExecTxResult contains results of executing one individual transaction.
|
|
2483
|
+
*
|
|
2484
|
+
* * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted
|
|
2485
|
+
* @name ExecTxResult
|
|
2486
|
+
* @package tendermint.abci
|
|
2487
|
+
* @see proto type: tendermint.abci.ExecTxResult
|
|
2488
|
+
*/
|
|
1654
2489
|
export declare const ExecTxResult: {
|
|
1655
2490
|
typeUrl: string;
|
|
1656
2491
|
encode(message: ExecTxResult, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1663,6 +2498,14 @@ export declare const ExecTxResult: {
|
|
|
1663
2498
|
toProto(message: ExecTxResult): Uint8Array;
|
|
1664
2499
|
toProtoMsg(message: ExecTxResult): ExecTxResultProtoMsg;
|
|
1665
2500
|
};
|
|
2501
|
+
/**
|
|
2502
|
+
* TxResult contains results of executing the transaction.
|
|
2503
|
+
*
|
|
2504
|
+
* One usage is indexing transaction results.
|
|
2505
|
+
* @name TxResult
|
|
2506
|
+
* @package tendermint.abci
|
|
2507
|
+
* @see proto type: tendermint.abci.TxResult
|
|
2508
|
+
*/
|
|
1666
2509
|
export declare const TxResult: {
|
|
1667
2510
|
typeUrl: string;
|
|
1668
2511
|
encode(message: TxResult, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1675,6 +2518,11 @@ export declare const TxResult: {
|
|
|
1675
2518
|
toProto(message: TxResult): Uint8Array;
|
|
1676
2519
|
toProtoMsg(message: TxResult): TxResultProtoMsg;
|
|
1677
2520
|
};
|
|
2521
|
+
/**
|
|
2522
|
+
* @name Validator
|
|
2523
|
+
* @package tendermint.abci
|
|
2524
|
+
* @see proto type: tendermint.abci.Validator
|
|
2525
|
+
*/
|
|
1678
2526
|
export declare const Validator: {
|
|
1679
2527
|
typeUrl: string;
|
|
1680
2528
|
encode(message: Validator, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1687,6 +2535,11 @@ export declare const Validator: {
|
|
|
1687
2535
|
toProto(message: Validator): Uint8Array;
|
|
1688
2536
|
toProtoMsg(message: Validator): ValidatorProtoMsg;
|
|
1689
2537
|
};
|
|
2538
|
+
/**
|
|
2539
|
+
* @name ValidatorUpdate
|
|
2540
|
+
* @package tendermint.abci
|
|
2541
|
+
* @see proto type: tendermint.abci.ValidatorUpdate
|
|
2542
|
+
*/
|
|
1690
2543
|
export declare const ValidatorUpdate: {
|
|
1691
2544
|
typeUrl: string;
|
|
1692
2545
|
encode(message: ValidatorUpdate, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1699,6 +2552,11 @@ export declare const ValidatorUpdate: {
|
|
|
1699
2552
|
toProto(message: ValidatorUpdate): Uint8Array;
|
|
1700
2553
|
toProtoMsg(message: ValidatorUpdate): ValidatorUpdateProtoMsg;
|
|
1701
2554
|
};
|
|
2555
|
+
/**
|
|
2556
|
+
* @name VoteInfo
|
|
2557
|
+
* @package tendermint.abci
|
|
2558
|
+
* @see proto type: tendermint.abci.VoteInfo
|
|
2559
|
+
*/
|
|
1702
2560
|
export declare const VoteInfo: {
|
|
1703
2561
|
typeUrl: string;
|
|
1704
2562
|
encode(message: VoteInfo, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1711,6 +2569,11 @@ export declare const VoteInfo: {
|
|
|
1711
2569
|
toProto(message: VoteInfo): Uint8Array;
|
|
1712
2570
|
toProtoMsg(message: VoteInfo): VoteInfoProtoMsg;
|
|
1713
2571
|
};
|
|
2572
|
+
/**
|
|
2573
|
+
* @name ExtendedVoteInfo
|
|
2574
|
+
* @package tendermint.abci
|
|
2575
|
+
* @see proto type: tendermint.abci.ExtendedVoteInfo
|
|
2576
|
+
*/
|
|
1714
2577
|
export declare const ExtendedVoteInfo: {
|
|
1715
2578
|
typeUrl: string;
|
|
1716
2579
|
encode(message: ExtendedVoteInfo, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1723,6 +2586,11 @@ export declare const ExtendedVoteInfo: {
|
|
|
1723
2586
|
toProto(message: ExtendedVoteInfo): Uint8Array;
|
|
1724
2587
|
toProtoMsg(message: ExtendedVoteInfo): ExtendedVoteInfoProtoMsg;
|
|
1725
2588
|
};
|
|
2589
|
+
/**
|
|
2590
|
+
* @name Misbehavior
|
|
2591
|
+
* @package tendermint.abci
|
|
2592
|
+
* @see proto type: tendermint.abci.Misbehavior
|
|
2593
|
+
*/
|
|
1726
2594
|
export declare const Misbehavior: {
|
|
1727
2595
|
typeUrl: string;
|
|
1728
2596
|
encode(message: Misbehavior, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -1735,6 +2603,11 @@ export declare const Misbehavior: {
|
|
|
1735
2603
|
toProto(message: Misbehavior): Uint8Array;
|
|
1736
2604
|
toProtoMsg(message: Misbehavior): MisbehaviorProtoMsg;
|
|
1737
2605
|
};
|
|
2606
|
+
/**
|
|
2607
|
+
* @name Snapshot
|
|
2608
|
+
* @package tendermint.abci
|
|
2609
|
+
* @see proto type: tendermint.abci.Snapshot
|
|
2610
|
+
*/
|
|
1738
2611
|
export declare const Snapshot: {
|
|
1739
2612
|
typeUrl: string;
|
|
1740
2613
|
encode(message: Snapshot, writer?: BinaryWriter): BinaryWriter;
|