@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
- package/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +19 -0
- package/cosmos/auth/module/v1/module.d.ts +72 -12
- package/cosmos/auth/module/v1/module.js +25 -1
- package/cosmos/auth/v1beta1/auth.d.ts +68 -10
- package/cosmos/auth/v1beta1/auth.js +26 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +334 -92
- package/cosmos/auth/v1beta1/query.js +120 -0
- package/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
- package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/cosmos/auth/v1beta1/tx.d.ts +31 -10
- package/cosmos/auth/v1beta1/tx.js +13 -0
- package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +6 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +36 -0
- package/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +13 -8
- package/cosmos/bank/v1beta1/authz.js +7 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -34
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
- package/cosmos/bank/v1beta1/genesis.js +13 -0
- package/cosmos/bank/v1beta1/query.d.ts +599 -138
- package/cosmos/bank/v1beta1/query.js +179 -0
- package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
- package/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
- package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
- package/cosmos/bank/v1beta1/tx.d.ts +143 -30
- package/cosmos/bank/v1beta1/tx.js +53 -0
- package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/benchmark/module/v1/module.d.ts +102 -26
- package/cosmos/benchmark/module/v1/module.js +12 -0
- package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
- package/cosmos/benchmark/v1/benchmark.js +6 -0
- package/cosmos/benchmark/v1/tx.d.ts +36 -4
- package/cosmos/benchmark/v1/tx.js +12 -0
- package/cosmos/bundle.d.ts +2283 -2421
- package/cosmos/bundle.js +242 -261
- package/cosmos/circuit/module/v1/module.d.ts +24 -4
- package/cosmos/circuit/module/v1/module.js +6 -0
- package/cosmos/circuit/v1/query.d.ts +120 -16
- package/cosmos/circuit/v1/query.js +36 -0
- package/cosmos/circuit/v1/tx.d.ts +126 -18
- package/cosmos/circuit/v1/tx.js +36 -0
- package/cosmos/circuit/v1/types.d.ts +55 -6
- package/cosmos/circuit/v1/types.js +19 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +12 -0
- package/cosmos/consensus/v1/tx.d.ts +37 -6
- package/cosmos/consensus/v1/tx.js +13 -0
- package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/cosmos/counter/module/v1/module.d.ts +24 -4
- package/cosmos/counter/module/v1/module.js +6 -0
- package/cosmos/counter/v1/query.d.ts +36 -4
- package/cosmos/counter/v1/query.js +12 -0
- package/cosmos/counter/v1/tx.d.ts +54 -10
- package/cosmos/counter/v1/tx.js +12 -0
- package/cosmos/crisis/module/v1/module.d.ts +30 -6
- package/cosmos/crisis/module/v1/module.js +6 -0
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
- package/cosmos/crypto/hd/v1/hd.js +6 -0
- package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
- package/cosmos/crypto/keyring/v1/record.js +31 -0
- package/cosmos/crypto/multisig/keys.d.ts +14 -0
- package/cosmos/crypto/multisig/keys.js +8 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +136 -0
- package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
- package/cosmos/distribution/v1beta1/tx.js +97 -0
- package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
- package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/cosmos/epochs/module/v1/module.d.ts +18 -2
- package/cosmos/epochs/module/v1/module.js +6 -0
- package/cosmos/epochs/v1beta1/events.d.ts +36 -4
- package/cosmos/epochs/v1beta1/events.js +12 -0
- package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
- package/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/cosmos/epochs/v1beta1/query.d.ts +52 -0
- package/cosmos/epochs/v1beta1/query.js +28 -0
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
- package/cosmos/feegrant/v1beta1/query.js +36 -0
- package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
- package/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/genutil/module/v1/module.d.ts +18 -2
- package/cosmos/genutil/module/v1/module.js +6 -0
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -24
- package/cosmos/gov/v1/genesis.js +6 -0
- package/cosmos/gov/v1/gov.d.ts +341 -124
- package/cosmos/gov/v1/gov.js +59 -0
- package/cosmos/gov/v1/query.d.ts +469 -92
- package/cosmos/gov/v1/query.js +109 -0
- package/cosmos/gov/v1/tx.d.ts +368 -93
- package/cosmos/gov/v1/tx.js +88 -0
- package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +6 -0
- package/cosmos/gov/v1beta1/gov.d.ts +291 -69
- package/cosmos/gov/v1beta1/gov.js +57 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/tx.d.ts +209 -45
- package/cosmos/gov/v1beta1/tx.js +49 -0
- package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/group/module/v1/module.d.ts +18 -2
- package/cosmos/group/module/v1/module.js +6 -0
- package/cosmos/group/v1/events.d.ts +300 -56
- package/cosmos/group/v1/events.js +66 -0
- package/cosmos/group/v1/genesis.d.ts +48 -12
- package/cosmos/group/v1/genesis.js +6 -0
- package/cosmos/group/v1/query.d.ts +768 -152
- package/cosmos/group/v1/query.js +168 -0
- package/cosmos/group/v1/query.lcd.js +1 -3
- package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
- package/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/cosmos/group/v1/tx.d.ts +804 -163
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/types.d.ts +398 -91
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +6 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +39 -0
- package/cosmos/mint/v1beta1/tx.d.ts +31 -10
- package/cosmos/mint/v1beta1/tx.js +13 -0
- package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/nft/module/v1/module.d.ts +18 -2
- package/cosmos/nft/module/v1/module.js +6 -0
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +13 -0
- package/cosmos/params/v1beta1/query.d.ts +93 -22
- package/cosmos/params/v1beta1/query.js +33 -0
- package/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
- package/cosmos/protocolpool/module/v1/module.js +6 -0
- package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
- package/cosmos/protocolpool/v1/genesis.js +6 -0
- package/cosmos/protocolpool/v1/query.d.ts +138 -12
- package/cosmos/protocolpool/v1/query.js +54 -0
- package/cosmos/protocolpool/v1/tx.d.ts +217 -30
- package/cosmos/protocolpool/v1/tx.js +67 -0
- package/cosmos/protocolpool/v1/types.d.ts +54 -10
- package/cosmos/protocolpool/v1/types.js +12 -0
- package/cosmos/reflection/v1/reflection.d.ts +42 -6
- package/cosmos/reflection/v1/reflection.js +12 -0
- package/cosmos/rpc.query.d.ts +1 -9
- package/cosmos/rpc.query.js +0 -5
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +43 -15
- package/cosmos/staking/v1beta1/authz.js +13 -5
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +12 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/staking.d.ts +631 -121
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +234 -42
- package/cosmos/staking/v1beta1/tx.js +88 -0
- package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
- package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
- package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
- package/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
- package/cosmos/store/streaming/abci/grpc.js +24 -0
- package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
- package/cosmos/store/v1beta1/commit_info.js +21 -0
- package/cosmos/store/v1beta1/listening.d.ts +45 -10
- package/cosmos/store/v1beta1/listening.js +15 -0
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +355 -94
- package/cosmos/tx/v1beta1/service.js +125 -0
- package/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
- package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/cosmos/tx/v1beta1/tx.d.ts +371 -80
- package/cosmos/tx/v1beta1/tx.js +118 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
- package/cosmos/upgrade/v1beta1/query.js +70 -0
- package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
- package/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
- package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/cosmos/vesting/module/v1/module.d.ts +18 -2
- package/cosmos/vesting/module/v1/module.js +6 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
- package/cosmos/vesting/v1beta1/tx.js +40 -0
- package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
- package/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/esm/cosmos/app/v1alpha1/module.js +19 -0
- package/esm/cosmos/auth/module/v1/module.js +25 -1
- package/esm/cosmos/auth/v1beta1/auth.js +26 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +120 -0
- package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/esm/cosmos/auth/v1beta1/tx.js +13 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
- package/esm/cosmos/authz/v1beta1/query.js +36 -0
- package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +7 -0
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
- package/esm/cosmos/bank/v1beta1/query.js +179 -0
- package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
- package/esm/cosmos/bank/v1beta1/tx.js +53 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/benchmark/module/v1/module.js +12 -0
- package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
- package/esm/cosmos/benchmark/v1/tx.js +12 -0
- package/esm/cosmos/bundle.js +242 -261
- package/esm/cosmos/circuit/module/v1/module.js +6 -0
- package/esm/cosmos/circuit/v1/query.js +36 -0
- package/esm/cosmos/circuit/v1/tx.js +36 -0
- package/esm/cosmos/circuit/v1/types.js +19 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +12 -0
- package/esm/cosmos/consensus/v1/tx.js +13 -0
- package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/counter/module/v1/module.js +6 -0
- package/esm/cosmos/counter/v1/query.js +12 -0
- package/esm/cosmos/counter/v1/tx.js +12 -0
- package/esm/cosmos/crisis/module/v1/module.js +6 -0
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
- package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
- package/esm/cosmos/crypto/multisig/keys.js +8 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/esm/cosmos/distribution/v1beta1/query.js +136 -0
- package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/esm/cosmos/epochs/module/v1/module.js +6 -0
- package/esm/cosmos/epochs/v1beta1/events.js +12 -0
- package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/esm/cosmos/epochs/v1beta1/query.js +28 -0
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
- package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/genutil/module/v1/module.js +6 -0
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +6 -0
- package/esm/cosmos/gov/v1/gov.js +59 -0
- package/esm/cosmos/gov/v1/query.js +109 -0
- package/esm/cosmos/gov/v1/tx.js +88 -0
- package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
- package/esm/cosmos/gov/v1beta1/gov.js +57 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/tx.js +49 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/group/module/v1/module.js +6 -0
- package/esm/cosmos/group/v1/events.js +66 -0
- package/esm/cosmos/group/v1/genesis.js +6 -0
- package/esm/cosmos/group/v1/query.js +168 -0
- package/esm/cosmos/group/v1/query.lcd.js +1 -3
- package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +39 -0
- package/esm/cosmos/mint/v1beta1/tx.js +13 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/nft/module/v1/module.js +6 -0
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +13 -0
- package/esm/cosmos/params/v1beta1/query.js +33 -0
- package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
- package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
- package/esm/cosmos/protocolpool/v1/query.js +54 -0
- package/esm/cosmos/protocolpool/v1/tx.js +67 -0
- package/esm/cosmos/protocolpool/v1/types.js +12 -0
- package/esm/cosmos/reflection/v1/reflection.js +12 -0
- package/esm/cosmos/rpc.query.js +0 -5
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +13 -5
- package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +88 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
- package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
- package/esm/cosmos/store/v1beta1/listening.js +15 -0
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +125 -0
- package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/esm/cosmos/tx/v1beta1/tx.js +119 -1
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
- package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/esm/cosmos/vesting/module/v1/module.js +6 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/gogoproto/bundle.js +2 -2
- package/esm/google/api/http.js +283 -0
- package/esm/google/bundle.js +7 -7
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +220 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
- package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
- package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
- package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
- package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
- package/esm/ibc/applications/transfer/v1/authz.js +13 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
- package/esm/ibc/applications/transfer/v1/packet.js +8 -0
- package/esm/ibc/applications/transfer/v1/query.js +78 -0
- package/esm/ibc/applications/transfer/v1/token.js +18 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
- package/esm/ibc/applications/transfer/v1/tx.js +40 -1
- package/esm/ibc/bundle.js +196 -173
- package/esm/ibc/client.js +4 -1
- package/esm/ibc/core/channel/v1/channel.js +64 -0
- package/esm/ibc/core/channel/v1/genesis.js +13 -0
- package/esm/ibc/core/channel/v1/query.js +197 -0
- package/esm/ibc/core/channel/v1/tx.js +129 -0
- package/esm/ibc/core/channel/v2/genesis.js +21 -0
- package/esm/ibc/core/channel/v2/packet.js +29 -0
- package/esm/ibc/core/channel/v2/query.js +100 -0
- package/esm/ibc/core/channel/v2/tx.js +48 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/genesis.js +20 -0
- package/esm/ibc/core/client/v1/query.js +154 -0
- package/esm/ibc/core/client/v1/tx.amino.js +1 -6
- package/esm/ibc/core/client/v1/tx.js +86 -151
- package/esm/ibc/core/client/v1/tx.registry.js +2 -20
- package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
- package/esm/ibc/core/client/v2/config.js +9 -0
- package/esm/ibc/core/client/v2/counterparty.js +6 -0
- package/esm/ibc/core/client/v2/genesis.js +12 -0
- package/esm/ibc/core/client/v2/query.js +26 -0
- package/esm/ibc/core/client/v2/tx.js +24 -0
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/commitment/v2/commitment.js +36 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/genesis.js +6 -0
- package/esm/ibc/core/connection/v1/query.js +83 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/lcd.js +5 -0
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
- package/esm/ibc/rpc.query.js +3 -5
- package/esm/ibc/rpc.tx.js +3 -0
- package/esm/index.js +1 -1
- package/esm/sparkdream/blog/module/v1/module.js +6 -0
- package/esm/sparkdream/blog/v1/genesis.js +6 -0
- package/esm/sparkdream/blog/v1/params.js +6 -0
- package/esm/sparkdream/blog/v1/post.js +6 -0
- package/esm/sparkdream/blog/v1/query.js +36 -0
- package/esm/sparkdream/blog/v1/tx.js +49 -0
- package/esm/sparkdream/bundle.js +41 -41
- package/esm/sparkdream/rpc.query.js +0 -5
- package/esm/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/esm/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/esm/sparkdream/sparkdream/v1/params.js +6 -0
- package/esm/sparkdream/sparkdream/v1/query.js +12 -0
- package/esm/sparkdream/sparkdream/v1/tx.js +13 -0
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +18 -18
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/p2p/types.js +20 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/gogoproto/bundle.js +2 -2
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/bundle.d.ts +418 -418
- package/google/bundle.js +7 -7
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +738 -90
- package/google/protobuf/descriptor.js +220 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
- package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
- package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
- package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
- package/ibc/applications/rate_limiting/v1/query.js +906 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
- package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
- package/ibc/applications/rate_limiting/v1/tx.js +729 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +13 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
- package/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
- package/ibc/applications/transfer/v1/genesis.js +6 -0
- package/ibc/applications/transfer/v1/packet.d.ts +44 -10
- package/ibc/applications/transfer/v1/packet.js +8 -0
- package/ibc/applications/transfer/v1/query.d.ts +252 -34
- package/ibc/applications/transfer/v1/query.js +78 -0
- package/ibc/applications/transfer/v1/token.d.ts +78 -14
- package/ibc/applications/transfer/v1/token.js +18 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
- package/ibc/applications/transfer/v1/transfer.js +9 -0
- package/ibc/applications/transfer/v1/tx.d.ts +135 -22
- package/ibc/applications/transfer/v1/tx.js +40 -1
- package/ibc/bundle.d.ts +3830 -3396
- package/ibc/bundle.js +196 -173
- package/ibc/client.d.ts +20 -5
- package/ibc/client.js +4 -1
- package/ibc/core/channel/v1/channel.d.ts +292 -60
- package/ibc/core/channel/v1/channel.js +64 -0
- package/ibc/core/channel/v1/genesis.d.ts +37 -4
- package/ibc/core/channel/v1/genesis.js +13 -0
- package/ibc/core/channel/v1/query.d.ts +839 -158
- package/ibc/core/channel/v1/query.js +197 -0
- package/ibc/core/channel/v1/tx.d.ts +335 -30
- package/ibc/core/channel/v1/tx.js +129 -0
- package/ibc/core/channel/v2/genesis.d.ts +81 -14
- package/ibc/core/channel/v2/genesis.js +21 -0
- package/ibc/core/channel/v2/packet.d.ts +137 -28
- package/ibc/core/channel/v2/packet.js +29 -0
- package/ibc/core/channel/v2/query.d.ts +490 -98
- package/ibc/core/channel/v2/query.js +100 -0
- package/ibc/core/channel/v2/tx.d.ts +144 -16
- package/ibc/core/channel/v2/tx.js +48 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/genesis.d.ts +82 -16
- package/ibc/core/client/v1/genesis.js +20 -0
- package/ibc/core/client/v1/query.d.ts +508 -74
- package/ibc/core/client/v1/query.js +154 -0
- package/ibc/core/client/v1/tx.amino.d.ts +1 -6
- package/ibc/core/client/v1/tx.amino.js +0 -5
- package/ibc/core/client/v1/tx.d.ts +336 -138
- package/ibc/core/client/v1/tx.js +87 -152
- package/ibc/core/client/v1/tx.registry.d.ts +1 -13
- package/ibc/core/client/v1/tx.registry.js +1 -19
- package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
- package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
- package/ibc/core/client/v2/config.d.ts +21 -2
- package/ibc/core/client/v2/config.js +9 -0
- package/ibc/core/client/v2/counterparty.d.ts +30 -6
- package/ibc/core/client/v2/counterparty.js +6 -0
- package/ibc/core/client/v2/genesis.d.ts +54 -10
- package/ibc/core/client/v2/genesis.js +12 -0
- package/ibc/core/client/v2/query.d.ts +74 -8
- package/ibc/core/client/v2/query.js +26 -0
- package/ibc/core/client/v2/tx.d.ts +108 -20
- package/ibc/core/client/v2/tx.js +24 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/commitment/v2/commitment.d.ts +42 -0
- package/ibc/core/commitment/v2/commitment.js +36 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +6 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +83 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/lcd.d.ts +3 -0
- package/ibc/lcd.js +5 -0
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
- package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
- package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
- package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +24 -0
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
- package/ibc/lightclients/wasm/v1/wasm.js +19 -74
- package/ibc/rpc.query.d.ts +11 -9
- package/ibc/rpc.query.js +3 -5
- package/ibc/rpc.tx.d.ts +3 -0
- package/ibc/rpc.tx.js +3 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/sparkdream/blog/module/v1/module.d.ts +18 -2
- package/sparkdream/blog/module/v1/module.js +6 -0
- package/sparkdream/blog/v1/genesis.d.ts +24 -4
- package/sparkdream/blog/v1/genesis.js +6 -0
- package/sparkdream/blog/v1/params.d.ts +18 -2
- package/sparkdream/blog/v1/params.js +6 -0
- package/sparkdream/blog/v1/post.d.ts +18 -2
- package/sparkdream/blog/v1/post.js +6 -0
- package/sparkdream/blog/v1/query.d.ts +114 -14
- package/sparkdream/blog/v1/query.js +36 -0
- package/sparkdream/blog/v1/tx.d.ts +151 -18
- package/sparkdream/blog/v1/tx.js +49 -0
- package/sparkdream/bundle.d.ts +302 -310
- package/sparkdream/bundle.js +41 -41
- package/sparkdream/rpc.query.d.ts +1 -9
- package/sparkdream/rpc.query.js +0 -5
- package/sparkdream/sparkdream/module/v1/module.d.ts +18 -2
- package/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/sparkdream/sparkdream/v1/genesis.d.ts +24 -4
- package/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/sparkdream/sparkdream/v1/params.d.ts +18 -2
- package/sparkdream/sparkdream/v1/params.js +6 -0
- package/sparkdream/sparkdream/v1/query.d.ts +42 -6
- package/sparkdream/sparkdream/v1/query.js +12 -0
- package/sparkdream/sparkdream/v1/tx.d.ts +37 -4
- package/sparkdream/sparkdream/v1/tx.js +13 -0
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +18 -18
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +20 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
- package/cosmos/orm/module/v1alpha1/module.js +0 -62
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
- package/cosmos/orm/query/v1alpha1/query.js +0 -695
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
|
@@ -6,11 +6,18 @@ import { DeepPartial } from "../../../helpers";
|
|
|
6
6
|
* DelegatorWithdrawInfo is the address for where distributions rewards are
|
|
7
7
|
* withdrawn to by default this struct is only used at genesis to feed in
|
|
8
8
|
* default withdraw addresses.
|
|
9
|
+
* @name DelegatorWithdrawInfo
|
|
10
|
+
* @package cosmos.distribution.v1beta1
|
|
11
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegatorWithdrawInfo
|
|
9
12
|
*/
|
|
10
13
|
export interface DelegatorWithdrawInfo {
|
|
11
|
-
/**
|
|
14
|
+
/**
|
|
15
|
+
* delegator_address is the address of the delegator.
|
|
16
|
+
*/
|
|
12
17
|
delegatorAddress: string;
|
|
13
|
-
/**
|
|
18
|
+
/**
|
|
19
|
+
* withdraw_address is the address to withdraw the delegation rewards to.
|
|
20
|
+
*/
|
|
14
21
|
withdrawAddress: string;
|
|
15
22
|
}
|
|
16
23
|
export interface DelegatorWithdrawInfoProtoMsg {
|
|
@@ -21,33 +28,58 @@ export interface DelegatorWithdrawInfoProtoMsg {
|
|
|
21
28
|
* DelegatorWithdrawInfo is the address for where distributions rewards are
|
|
22
29
|
* withdrawn to by default this struct is only used at genesis to feed in
|
|
23
30
|
* default withdraw addresses.
|
|
31
|
+
* @name DelegatorWithdrawInfoAmino
|
|
32
|
+
* @package cosmos.distribution.v1beta1
|
|
33
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegatorWithdrawInfo
|
|
24
34
|
*/
|
|
25
35
|
export interface DelegatorWithdrawInfoAmino {
|
|
26
|
-
/**
|
|
36
|
+
/**
|
|
37
|
+
* delegator_address is the address of the delegator.
|
|
38
|
+
*/
|
|
27
39
|
delegator_address?: string;
|
|
28
|
-
/**
|
|
40
|
+
/**
|
|
41
|
+
* withdraw_address is the address to withdraw the delegation rewards to.
|
|
42
|
+
*/
|
|
29
43
|
withdraw_address?: string;
|
|
30
44
|
}
|
|
31
45
|
export interface DelegatorWithdrawInfoAminoMsg {
|
|
32
46
|
type: "cosmos-sdk/DelegatorWithdrawInfo";
|
|
33
47
|
value: DelegatorWithdrawInfoAmino;
|
|
34
48
|
}
|
|
35
|
-
/**
|
|
49
|
+
/**
|
|
50
|
+
* ValidatorOutstandingRewardsRecord is used for import/export via genesis json.
|
|
51
|
+
* @name ValidatorOutstandingRewardsRecord
|
|
52
|
+
* @package cosmos.distribution.v1beta1
|
|
53
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorOutstandingRewardsRecord
|
|
54
|
+
*/
|
|
36
55
|
export interface ValidatorOutstandingRewardsRecord {
|
|
37
|
-
/**
|
|
56
|
+
/**
|
|
57
|
+
* validator_address is the address of the validator.
|
|
58
|
+
*/
|
|
38
59
|
validatorAddress: string;
|
|
39
|
-
/**
|
|
60
|
+
/**
|
|
61
|
+
* outstanding_rewards represents the outstanding rewards of a validator.
|
|
62
|
+
*/
|
|
40
63
|
outstandingRewards: DecCoin[];
|
|
41
64
|
}
|
|
42
65
|
export interface ValidatorOutstandingRewardsRecordProtoMsg {
|
|
43
66
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorOutstandingRewardsRecord";
|
|
44
67
|
value: Uint8Array;
|
|
45
68
|
}
|
|
46
|
-
/**
|
|
69
|
+
/**
|
|
70
|
+
* ValidatorOutstandingRewardsRecord is used for import/export via genesis json.
|
|
71
|
+
* @name ValidatorOutstandingRewardsRecordAmino
|
|
72
|
+
* @package cosmos.distribution.v1beta1
|
|
73
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorOutstandingRewardsRecord
|
|
74
|
+
*/
|
|
47
75
|
export interface ValidatorOutstandingRewardsRecordAmino {
|
|
48
|
-
/**
|
|
76
|
+
/**
|
|
77
|
+
* validator_address is the address of the validator.
|
|
78
|
+
*/
|
|
49
79
|
validator_address?: string;
|
|
50
|
-
/**
|
|
80
|
+
/**
|
|
81
|
+
* outstanding_rewards represents the outstanding rewards of a validator.
|
|
82
|
+
*/
|
|
51
83
|
outstanding_rewards: DecCoinAmino[];
|
|
52
84
|
}
|
|
53
85
|
export interface ValidatorOutstandingRewardsRecordAminoMsg {
|
|
@@ -57,11 +89,18 @@ export interface ValidatorOutstandingRewardsRecordAminoMsg {
|
|
|
57
89
|
/**
|
|
58
90
|
* ValidatorAccumulatedCommissionRecord is used for import / export via genesis
|
|
59
91
|
* json.
|
|
92
|
+
* @name ValidatorAccumulatedCommissionRecord
|
|
93
|
+
* @package cosmos.distribution.v1beta1
|
|
94
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorAccumulatedCommissionRecord
|
|
60
95
|
*/
|
|
61
96
|
export interface ValidatorAccumulatedCommissionRecord {
|
|
62
|
-
/**
|
|
97
|
+
/**
|
|
98
|
+
* validator_address is the address of the validator.
|
|
99
|
+
*/
|
|
63
100
|
validatorAddress: string;
|
|
64
|
-
/**
|
|
101
|
+
/**
|
|
102
|
+
* accumulated is the accumulated commission of a validator.
|
|
103
|
+
*/
|
|
65
104
|
accumulated: ValidatorAccumulatedCommission;
|
|
66
105
|
}
|
|
67
106
|
export interface ValidatorAccumulatedCommissionRecordProtoMsg {
|
|
@@ -71,11 +110,18 @@ export interface ValidatorAccumulatedCommissionRecordProtoMsg {
|
|
|
71
110
|
/**
|
|
72
111
|
* ValidatorAccumulatedCommissionRecord is used for import / export via genesis
|
|
73
112
|
* json.
|
|
113
|
+
* @name ValidatorAccumulatedCommissionRecordAmino
|
|
114
|
+
* @package cosmos.distribution.v1beta1
|
|
115
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorAccumulatedCommissionRecord
|
|
74
116
|
*/
|
|
75
117
|
export interface ValidatorAccumulatedCommissionRecordAmino {
|
|
76
|
-
/**
|
|
118
|
+
/**
|
|
119
|
+
* validator_address is the address of the validator.
|
|
120
|
+
*/
|
|
77
121
|
validator_address?: string;
|
|
78
|
-
/**
|
|
122
|
+
/**
|
|
123
|
+
* accumulated is the accumulated commission of a validator.
|
|
124
|
+
*/
|
|
79
125
|
accumulated: ValidatorAccumulatedCommissionAmino;
|
|
80
126
|
}
|
|
81
127
|
export interface ValidatorAccumulatedCommissionRecordAminoMsg {
|
|
@@ -85,13 +131,22 @@ export interface ValidatorAccumulatedCommissionRecordAminoMsg {
|
|
|
85
131
|
/**
|
|
86
132
|
* ValidatorHistoricalRewardsRecord is used for import / export via genesis
|
|
87
133
|
* json.
|
|
134
|
+
* @name ValidatorHistoricalRewardsRecord
|
|
135
|
+
* @package cosmos.distribution.v1beta1
|
|
136
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorHistoricalRewardsRecord
|
|
88
137
|
*/
|
|
89
138
|
export interface ValidatorHistoricalRewardsRecord {
|
|
90
|
-
/**
|
|
139
|
+
/**
|
|
140
|
+
* validator_address is the address of the validator.
|
|
141
|
+
*/
|
|
91
142
|
validatorAddress: string;
|
|
92
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* period defines the period the historical rewards apply to.
|
|
145
|
+
*/
|
|
93
146
|
period: bigint;
|
|
94
|
-
/**
|
|
147
|
+
/**
|
|
148
|
+
* rewards defines the historical rewards of a validator.
|
|
149
|
+
*/
|
|
95
150
|
rewards: ValidatorHistoricalRewards;
|
|
96
151
|
}
|
|
97
152
|
export interface ValidatorHistoricalRewardsRecordProtoMsg {
|
|
@@ -101,151 +156,284 @@ export interface ValidatorHistoricalRewardsRecordProtoMsg {
|
|
|
101
156
|
/**
|
|
102
157
|
* ValidatorHistoricalRewardsRecord is used for import / export via genesis
|
|
103
158
|
* json.
|
|
159
|
+
* @name ValidatorHistoricalRewardsRecordAmino
|
|
160
|
+
* @package cosmos.distribution.v1beta1
|
|
161
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorHistoricalRewardsRecord
|
|
104
162
|
*/
|
|
105
163
|
export interface ValidatorHistoricalRewardsRecordAmino {
|
|
106
|
-
/**
|
|
164
|
+
/**
|
|
165
|
+
* validator_address is the address of the validator.
|
|
166
|
+
*/
|
|
107
167
|
validator_address?: string;
|
|
108
|
-
/**
|
|
168
|
+
/**
|
|
169
|
+
* period defines the period the historical rewards apply to.
|
|
170
|
+
*/
|
|
109
171
|
period?: string;
|
|
110
|
-
/**
|
|
172
|
+
/**
|
|
173
|
+
* rewards defines the historical rewards of a validator.
|
|
174
|
+
*/
|
|
111
175
|
rewards: ValidatorHistoricalRewardsAmino;
|
|
112
176
|
}
|
|
113
177
|
export interface ValidatorHistoricalRewardsRecordAminoMsg {
|
|
114
178
|
type: "cosmos-sdk/ValidatorHistoricalRewardsRecord";
|
|
115
179
|
value: ValidatorHistoricalRewardsRecordAmino;
|
|
116
180
|
}
|
|
117
|
-
/**
|
|
181
|
+
/**
|
|
182
|
+
* ValidatorCurrentRewardsRecord is used for import / export via genesis json.
|
|
183
|
+
* @name ValidatorCurrentRewardsRecord
|
|
184
|
+
* @package cosmos.distribution.v1beta1
|
|
185
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorCurrentRewardsRecord
|
|
186
|
+
*/
|
|
118
187
|
export interface ValidatorCurrentRewardsRecord {
|
|
119
|
-
/**
|
|
188
|
+
/**
|
|
189
|
+
* validator_address is the address of the validator.
|
|
190
|
+
*/
|
|
120
191
|
validatorAddress: string;
|
|
121
|
-
/**
|
|
192
|
+
/**
|
|
193
|
+
* rewards defines the current rewards of a validator.
|
|
194
|
+
*/
|
|
122
195
|
rewards: ValidatorCurrentRewards;
|
|
123
196
|
}
|
|
124
197
|
export interface ValidatorCurrentRewardsRecordProtoMsg {
|
|
125
198
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorCurrentRewardsRecord";
|
|
126
199
|
value: Uint8Array;
|
|
127
200
|
}
|
|
128
|
-
/**
|
|
201
|
+
/**
|
|
202
|
+
* ValidatorCurrentRewardsRecord is used for import / export via genesis json.
|
|
203
|
+
* @name ValidatorCurrentRewardsRecordAmino
|
|
204
|
+
* @package cosmos.distribution.v1beta1
|
|
205
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorCurrentRewardsRecord
|
|
206
|
+
*/
|
|
129
207
|
export interface ValidatorCurrentRewardsRecordAmino {
|
|
130
|
-
/**
|
|
208
|
+
/**
|
|
209
|
+
* validator_address is the address of the validator.
|
|
210
|
+
*/
|
|
131
211
|
validator_address?: string;
|
|
132
|
-
/**
|
|
212
|
+
/**
|
|
213
|
+
* rewards defines the current rewards of a validator.
|
|
214
|
+
*/
|
|
133
215
|
rewards: ValidatorCurrentRewardsAmino;
|
|
134
216
|
}
|
|
135
217
|
export interface ValidatorCurrentRewardsRecordAminoMsg {
|
|
136
218
|
type: "cosmos-sdk/ValidatorCurrentRewardsRecord";
|
|
137
219
|
value: ValidatorCurrentRewardsRecordAmino;
|
|
138
220
|
}
|
|
139
|
-
/**
|
|
221
|
+
/**
|
|
222
|
+
* DelegatorStartingInfoRecord used for import / export via genesis json.
|
|
223
|
+
* @name DelegatorStartingInfoRecord
|
|
224
|
+
* @package cosmos.distribution.v1beta1
|
|
225
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegatorStartingInfoRecord
|
|
226
|
+
*/
|
|
140
227
|
export interface DelegatorStartingInfoRecord {
|
|
141
|
-
/**
|
|
228
|
+
/**
|
|
229
|
+
* delegator_address is the address of the delegator.
|
|
230
|
+
*/
|
|
142
231
|
delegatorAddress: string;
|
|
143
|
-
/**
|
|
232
|
+
/**
|
|
233
|
+
* validator_address is the address of the validator.
|
|
234
|
+
*/
|
|
144
235
|
validatorAddress: string;
|
|
145
|
-
/**
|
|
236
|
+
/**
|
|
237
|
+
* starting_info defines the starting info of a delegator.
|
|
238
|
+
*/
|
|
146
239
|
startingInfo: DelegatorStartingInfo;
|
|
147
240
|
}
|
|
148
241
|
export interface DelegatorStartingInfoRecordProtoMsg {
|
|
149
242
|
typeUrl: "/cosmos.distribution.v1beta1.DelegatorStartingInfoRecord";
|
|
150
243
|
value: Uint8Array;
|
|
151
244
|
}
|
|
152
|
-
/**
|
|
245
|
+
/**
|
|
246
|
+
* DelegatorStartingInfoRecord used for import / export via genesis json.
|
|
247
|
+
* @name DelegatorStartingInfoRecordAmino
|
|
248
|
+
* @package cosmos.distribution.v1beta1
|
|
249
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegatorStartingInfoRecord
|
|
250
|
+
*/
|
|
153
251
|
export interface DelegatorStartingInfoRecordAmino {
|
|
154
|
-
/**
|
|
252
|
+
/**
|
|
253
|
+
* delegator_address is the address of the delegator.
|
|
254
|
+
*/
|
|
155
255
|
delegator_address?: string;
|
|
156
|
-
/**
|
|
256
|
+
/**
|
|
257
|
+
* validator_address is the address of the validator.
|
|
258
|
+
*/
|
|
157
259
|
validator_address?: string;
|
|
158
|
-
/**
|
|
260
|
+
/**
|
|
261
|
+
* starting_info defines the starting info of a delegator.
|
|
262
|
+
*/
|
|
159
263
|
starting_info: DelegatorStartingInfoAmino;
|
|
160
264
|
}
|
|
161
265
|
export interface DelegatorStartingInfoRecordAminoMsg {
|
|
162
266
|
type: "cosmos-sdk/DelegatorStartingInfoRecord";
|
|
163
267
|
value: DelegatorStartingInfoRecordAmino;
|
|
164
268
|
}
|
|
165
|
-
/**
|
|
269
|
+
/**
|
|
270
|
+
* ValidatorSlashEventRecord is used for import / export via genesis json.
|
|
271
|
+
* @name ValidatorSlashEventRecord
|
|
272
|
+
* @package cosmos.distribution.v1beta1
|
|
273
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEventRecord
|
|
274
|
+
*/
|
|
166
275
|
export interface ValidatorSlashEventRecord {
|
|
167
|
-
/**
|
|
276
|
+
/**
|
|
277
|
+
* validator_address is the address of the validator.
|
|
278
|
+
*/
|
|
168
279
|
validatorAddress: string;
|
|
169
|
-
/**
|
|
280
|
+
/**
|
|
281
|
+
* height defines the block height at which the slash event occurred.
|
|
282
|
+
*/
|
|
170
283
|
height: bigint;
|
|
171
|
-
/**
|
|
284
|
+
/**
|
|
285
|
+
* period is the period of the slash event.
|
|
286
|
+
*/
|
|
172
287
|
period: bigint;
|
|
173
|
-
/**
|
|
288
|
+
/**
|
|
289
|
+
* validator_slash_event describes the slash event.
|
|
290
|
+
*/
|
|
174
291
|
validatorSlashEvent: ValidatorSlashEvent;
|
|
175
292
|
}
|
|
176
293
|
export interface ValidatorSlashEventRecordProtoMsg {
|
|
177
294
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorSlashEventRecord";
|
|
178
295
|
value: Uint8Array;
|
|
179
296
|
}
|
|
180
|
-
/**
|
|
297
|
+
/**
|
|
298
|
+
* ValidatorSlashEventRecord is used for import / export via genesis json.
|
|
299
|
+
* @name ValidatorSlashEventRecordAmino
|
|
300
|
+
* @package cosmos.distribution.v1beta1
|
|
301
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEventRecord
|
|
302
|
+
*/
|
|
181
303
|
export interface ValidatorSlashEventRecordAmino {
|
|
182
|
-
/**
|
|
304
|
+
/**
|
|
305
|
+
* validator_address is the address of the validator.
|
|
306
|
+
*/
|
|
183
307
|
validator_address?: string;
|
|
184
|
-
/**
|
|
308
|
+
/**
|
|
309
|
+
* height defines the block height at which the slash event occurred.
|
|
310
|
+
*/
|
|
185
311
|
height?: string;
|
|
186
|
-
/**
|
|
312
|
+
/**
|
|
313
|
+
* period is the period of the slash event.
|
|
314
|
+
*/
|
|
187
315
|
period?: string;
|
|
188
|
-
/**
|
|
316
|
+
/**
|
|
317
|
+
* validator_slash_event describes the slash event.
|
|
318
|
+
*/
|
|
189
319
|
validator_slash_event: ValidatorSlashEventAmino;
|
|
190
320
|
}
|
|
191
321
|
export interface ValidatorSlashEventRecordAminoMsg {
|
|
192
322
|
type: "cosmos-sdk/ValidatorSlashEventRecord";
|
|
193
323
|
value: ValidatorSlashEventRecordAmino;
|
|
194
324
|
}
|
|
195
|
-
/**
|
|
325
|
+
/**
|
|
326
|
+
* GenesisState defines the distribution module's genesis state.
|
|
327
|
+
* @name GenesisState
|
|
328
|
+
* @package cosmos.distribution.v1beta1
|
|
329
|
+
* @see proto type: cosmos.distribution.v1beta1.GenesisState
|
|
330
|
+
*/
|
|
196
331
|
export interface GenesisState {
|
|
197
|
-
/**
|
|
332
|
+
/**
|
|
333
|
+
* params defines all the parameters of the module.
|
|
334
|
+
*/
|
|
198
335
|
params: Params;
|
|
199
|
-
/**
|
|
336
|
+
/**
|
|
337
|
+
* fee_pool defines the fee pool at genesis.
|
|
338
|
+
*/
|
|
200
339
|
feePool: FeePool;
|
|
201
|
-
/**
|
|
340
|
+
/**
|
|
341
|
+
* fee_pool defines the delegator withdraw infos at genesis.
|
|
342
|
+
*/
|
|
202
343
|
delegatorWithdrawInfos: DelegatorWithdrawInfo[];
|
|
203
|
-
/**
|
|
344
|
+
/**
|
|
345
|
+
* fee_pool defines the previous proposer at genesis.
|
|
346
|
+
*/
|
|
204
347
|
previousProposer: string;
|
|
205
|
-
/**
|
|
348
|
+
/**
|
|
349
|
+
* fee_pool defines the outstanding rewards of all validators at genesis.
|
|
350
|
+
*/
|
|
206
351
|
outstandingRewards: ValidatorOutstandingRewardsRecord[];
|
|
207
|
-
/**
|
|
352
|
+
/**
|
|
353
|
+
* fee_pool defines the accumulated commissions of all validators at genesis.
|
|
354
|
+
*/
|
|
208
355
|
validatorAccumulatedCommissions: ValidatorAccumulatedCommissionRecord[];
|
|
209
|
-
/**
|
|
356
|
+
/**
|
|
357
|
+
* fee_pool defines the historical rewards of all validators at genesis.
|
|
358
|
+
*/
|
|
210
359
|
validatorHistoricalRewards: ValidatorHistoricalRewardsRecord[];
|
|
211
|
-
/**
|
|
360
|
+
/**
|
|
361
|
+
* fee_pool defines the current rewards of all validators at genesis.
|
|
362
|
+
*/
|
|
212
363
|
validatorCurrentRewards: ValidatorCurrentRewardsRecord[];
|
|
213
|
-
/**
|
|
364
|
+
/**
|
|
365
|
+
* fee_pool defines the delegator starting infos at genesis.
|
|
366
|
+
*/
|
|
214
367
|
delegatorStartingInfos: DelegatorStartingInfoRecord[];
|
|
215
|
-
/**
|
|
368
|
+
/**
|
|
369
|
+
* fee_pool defines the validator slash events at genesis.
|
|
370
|
+
*/
|
|
216
371
|
validatorSlashEvents: ValidatorSlashEventRecord[];
|
|
217
372
|
}
|
|
218
373
|
export interface GenesisStateProtoMsg {
|
|
219
374
|
typeUrl: "/cosmos.distribution.v1beta1.GenesisState";
|
|
220
375
|
value: Uint8Array;
|
|
221
376
|
}
|
|
222
|
-
/**
|
|
377
|
+
/**
|
|
378
|
+
* GenesisState defines the distribution module's genesis state.
|
|
379
|
+
* @name GenesisStateAmino
|
|
380
|
+
* @package cosmos.distribution.v1beta1
|
|
381
|
+
* @see proto type: cosmos.distribution.v1beta1.GenesisState
|
|
382
|
+
*/
|
|
223
383
|
export interface GenesisStateAmino {
|
|
224
|
-
/**
|
|
384
|
+
/**
|
|
385
|
+
* params defines all the parameters of the module.
|
|
386
|
+
*/
|
|
225
387
|
params: ParamsAmino;
|
|
226
|
-
/**
|
|
388
|
+
/**
|
|
389
|
+
* fee_pool defines the fee pool at genesis.
|
|
390
|
+
*/
|
|
227
391
|
fee_pool: FeePoolAmino;
|
|
228
|
-
/**
|
|
392
|
+
/**
|
|
393
|
+
* fee_pool defines the delegator withdraw infos at genesis.
|
|
394
|
+
*/
|
|
229
395
|
delegator_withdraw_infos: DelegatorWithdrawInfoAmino[];
|
|
230
|
-
/**
|
|
396
|
+
/**
|
|
397
|
+
* fee_pool defines the previous proposer at genesis.
|
|
398
|
+
*/
|
|
231
399
|
previous_proposer?: string;
|
|
232
|
-
/**
|
|
400
|
+
/**
|
|
401
|
+
* fee_pool defines the outstanding rewards of all validators at genesis.
|
|
402
|
+
*/
|
|
233
403
|
outstanding_rewards: ValidatorOutstandingRewardsRecordAmino[];
|
|
234
|
-
/**
|
|
404
|
+
/**
|
|
405
|
+
* fee_pool defines the accumulated commissions of all validators at genesis.
|
|
406
|
+
*/
|
|
235
407
|
validator_accumulated_commissions: ValidatorAccumulatedCommissionRecordAmino[];
|
|
236
|
-
/**
|
|
408
|
+
/**
|
|
409
|
+
* fee_pool defines the historical rewards of all validators at genesis.
|
|
410
|
+
*/
|
|
237
411
|
validator_historical_rewards: ValidatorHistoricalRewardsRecordAmino[];
|
|
238
|
-
/**
|
|
412
|
+
/**
|
|
413
|
+
* fee_pool defines the current rewards of all validators at genesis.
|
|
414
|
+
*/
|
|
239
415
|
validator_current_rewards: ValidatorCurrentRewardsRecordAmino[];
|
|
240
|
-
/**
|
|
416
|
+
/**
|
|
417
|
+
* fee_pool defines the delegator starting infos at genesis.
|
|
418
|
+
*/
|
|
241
419
|
delegator_starting_infos: DelegatorStartingInfoRecordAmino[];
|
|
242
|
-
/**
|
|
420
|
+
/**
|
|
421
|
+
* fee_pool defines the validator slash events at genesis.
|
|
422
|
+
*/
|
|
243
423
|
validator_slash_events: ValidatorSlashEventRecordAmino[];
|
|
244
424
|
}
|
|
245
425
|
export interface GenesisStateAminoMsg {
|
|
246
426
|
type: "cosmos-sdk/GenesisState";
|
|
247
427
|
value: GenesisStateAmino;
|
|
248
428
|
}
|
|
429
|
+
/**
|
|
430
|
+
* DelegatorWithdrawInfo is the address for where distributions rewards are
|
|
431
|
+
* withdrawn to by default this struct is only used at genesis to feed in
|
|
432
|
+
* default withdraw addresses.
|
|
433
|
+
* @name DelegatorWithdrawInfo
|
|
434
|
+
* @package cosmos.distribution.v1beta1
|
|
435
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegatorWithdrawInfo
|
|
436
|
+
*/
|
|
249
437
|
export declare const DelegatorWithdrawInfo: {
|
|
250
438
|
typeUrl: string;
|
|
251
439
|
aminoType: string;
|
|
@@ -260,6 +448,12 @@ export declare const DelegatorWithdrawInfo: {
|
|
|
260
448
|
toProto(message: DelegatorWithdrawInfo): Uint8Array;
|
|
261
449
|
toProtoMsg(message: DelegatorWithdrawInfo): DelegatorWithdrawInfoProtoMsg;
|
|
262
450
|
};
|
|
451
|
+
/**
|
|
452
|
+
* ValidatorOutstandingRewardsRecord is used for import/export via genesis json.
|
|
453
|
+
* @name ValidatorOutstandingRewardsRecord
|
|
454
|
+
* @package cosmos.distribution.v1beta1
|
|
455
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorOutstandingRewardsRecord
|
|
456
|
+
*/
|
|
263
457
|
export declare const ValidatorOutstandingRewardsRecord: {
|
|
264
458
|
typeUrl: string;
|
|
265
459
|
aminoType: string;
|
|
@@ -274,6 +468,13 @@ export declare const ValidatorOutstandingRewardsRecord: {
|
|
|
274
468
|
toProto(message: ValidatorOutstandingRewardsRecord): Uint8Array;
|
|
275
469
|
toProtoMsg(message: ValidatorOutstandingRewardsRecord): ValidatorOutstandingRewardsRecordProtoMsg;
|
|
276
470
|
};
|
|
471
|
+
/**
|
|
472
|
+
* ValidatorAccumulatedCommissionRecord is used for import / export via genesis
|
|
473
|
+
* json.
|
|
474
|
+
* @name ValidatorAccumulatedCommissionRecord
|
|
475
|
+
* @package cosmos.distribution.v1beta1
|
|
476
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorAccumulatedCommissionRecord
|
|
477
|
+
*/
|
|
277
478
|
export declare const ValidatorAccumulatedCommissionRecord: {
|
|
278
479
|
typeUrl: string;
|
|
279
480
|
aminoType: string;
|
|
@@ -288,6 +489,13 @@ export declare const ValidatorAccumulatedCommissionRecord: {
|
|
|
288
489
|
toProto(message: ValidatorAccumulatedCommissionRecord): Uint8Array;
|
|
289
490
|
toProtoMsg(message: ValidatorAccumulatedCommissionRecord): ValidatorAccumulatedCommissionRecordProtoMsg;
|
|
290
491
|
};
|
|
492
|
+
/**
|
|
493
|
+
* ValidatorHistoricalRewardsRecord is used for import / export via genesis
|
|
494
|
+
* json.
|
|
495
|
+
* @name ValidatorHistoricalRewardsRecord
|
|
496
|
+
* @package cosmos.distribution.v1beta1
|
|
497
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorHistoricalRewardsRecord
|
|
498
|
+
*/
|
|
291
499
|
export declare const ValidatorHistoricalRewardsRecord: {
|
|
292
500
|
typeUrl: string;
|
|
293
501
|
aminoType: string;
|
|
@@ -302,6 +510,12 @@ export declare const ValidatorHistoricalRewardsRecord: {
|
|
|
302
510
|
toProto(message: ValidatorHistoricalRewardsRecord): Uint8Array;
|
|
303
511
|
toProtoMsg(message: ValidatorHistoricalRewardsRecord): ValidatorHistoricalRewardsRecordProtoMsg;
|
|
304
512
|
};
|
|
513
|
+
/**
|
|
514
|
+
* ValidatorCurrentRewardsRecord is used for import / export via genesis json.
|
|
515
|
+
* @name ValidatorCurrentRewardsRecord
|
|
516
|
+
* @package cosmos.distribution.v1beta1
|
|
517
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorCurrentRewardsRecord
|
|
518
|
+
*/
|
|
305
519
|
export declare const ValidatorCurrentRewardsRecord: {
|
|
306
520
|
typeUrl: string;
|
|
307
521
|
aminoType: string;
|
|
@@ -316,6 +530,12 @@ export declare const ValidatorCurrentRewardsRecord: {
|
|
|
316
530
|
toProto(message: ValidatorCurrentRewardsRecord): Uint8Array;
|
|
317
531
|
toProtoMsg(message: ValidatorCurrentRewardsRecord): ValidatorCurrentRewardsRecordProtoMsg;
|
|
318
532
|
};
|
|
533
|
+
/**
|
|
534
|
+
* DelegatorStartingInfoRecord used for import / export via genesis json.
|
|
535
|
+
* @name DelegatorStartingInfoRecord
|
|
536
|
+
* @package cosmos.distribution.v1beta1
|
|
537
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegatorStartingInfoRecord
|
|
538
|
+
*/
|
|
319
539
|
export declare const DelegatorStartingInfoRecord: {
|
|
320
540
|
typeUrl: string;
|
|
321
541
|
aminoType: string;
|
|
@@ -330,6 +550,12 @@ export declare const DelegatorStartingInfoRecord: {
|
|
|
330
550
|
toProto(message: DelegatorStartingInfoRecord): Uint8Array;
|
|
331
551
|
toProtoMsg(message: DelegatorStartingInfoRecord): DelegatorStartingInfoRecordProtoMsg;
|
|
332
552
|
};
|
|
553
|
+
/**
|
|
554
|
+
* ValidatorSlashEventRecord is used for import / export via genesis json.
|
|
555
|
+
* @name ValidatorSlashEventRecord
|
|
556
|
+
* @package cosmos.distribution.v1beta1
|
|
557
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEventRecord
|
|
558
|
+
*/
|
|
333
559
|
export declare const ValidatorSlashEventRecord: {
|
|
334
560
|
typeUrl: string;
|
|
335
561
|
aminoType: string;
|
|
@@ -344,6 +570,12 @@ export declare const ValidatorSlashEventRecord: {
|
|
|
344
570
|
toProto(message: ValidatorSlashEventRecord): Uint8Array;
|
|
345
571
|
toProtoMsg(message: ValidatorSlashEventRecord): ValidatorSlashEventRecordProtoMsg;
|
|
346
572
|
};
|
|
573
|
+
/**
|
|
574
|
+
* GenesisState defines the distribution module's genesis state.
|
|
575
|
+
* @name GenesisState
|
|
576
|
+
* @package cosmos.distribution.v1beta1
|
|
577
|
+
* @see proto type: cosmos.distribution.v1beta1.GenesisState
|
|
578
|
+
*/
|
|
347
579
|
export declare const GenesisState: {
|
|
348
580
|
typeUrl: string;
|
|
349
581
|
aminoType: string;
|
|
@@ -11,6 +11,14 @@ function createBaseDelegatorWithdrawInfo() {
|
|
|
11
11
|
withdrawAddress: ""
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* DelegatorWithdrawInfo is the address for where distributions rewards are
|
|
16
|
+
* withdrawn to by default this struct is only used at genesis to feed in
|
|
17
|
+
* default withdraw addresses.
|
|
18
|
+
* @name DelegatorWithdrawInfo
|
|
19
|
+
* @package cosmos.distribution.v1beta1
|
|
20
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegatorWithdrawInfo
|
|
21
|
+
*/
|
|
14
22
|
exports.DelegatorWithdrawInfo = {
|
|
15
23
|
typeUrl: "/cosmos.distribution.v1beta1.DelegatorWithdrawInfo",
|
|
16
24
|
aminoType: "cosmos-sdk/DelegatorWithdrawInfo",
|
|
@@ -93,6 +101,12 @@ function createBaseValidatorOutstandingRewardsRecord() {
|
|
|
93
101
|
outstandingRewards: []
|
|
94
102
|
};
|
|
95
103
|
}
|
|
104
|
+
/**
|
|
105
|
+
* ValidatorOutstandingRewardsRecord is used for import/export via genesis json.
|
|
106
|
+
* @name ValidatorOutstandingRewardsRecord
|
|
107
|
+
* @package cosmos.distribution.v1beta1
|
|
108
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorOutstandingRewardsRecord
|
|
109
|
+
*/
|
|
96
110
|
exports.ValidatorOutstandingRewardsRecord = {
|
|
97
111
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorOutstandingRewardsRecord",
|
|
98
112
|
aminoType: "cosmos-sdk/ValidatorOutstandingRewardsRecord",
|
|
@@ -178,6 +192,13 @@ function createBaseValidatorAccumulatedCommissionRecord() {
|
|
|
178
192
|
accumulated: distribution_1.ValidatorAccumulatedCommission.fromPartial({})
|
|
179
193
|
};
|
|
180
194
|
}
|
|
195
|
+
/**
|
|
196
|
+
* ValidatorAccumulatedCommissionRecord is used for import / export via genesis
|
|
197
|
+
* json.
|
|
198
|
+
* @name ValidatorAccumulatedCommissionRecord
|
|
199
|
+
* @package cosmos.distribution.v1beta1
|
|
200
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorAccumulatedCommissionRecord
|
|
201
|
+
*/
|
|
181
202
|
exports.ValidatorAccumulatedCommissionRecord = {
|
|
182
203
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorAccumulatedCommissionRecord",
|
|
183
204
|
aminoType: "cosmos-sdk/ValidatorAccumulatedCommissionRecord",
|
|
@@ -261,6 +282,13 @@ function createBaseValidatorHistoricalRewardsRecord() {
|
|
|
261
282
|
rewards: distribution_1.ValidatorHistoricalRewards.fromPartial({})
|
|
262
283
|
};
|
|
263
284
|
}
|
|
285
|
+
/**
|
|
286
|
+
* ValidatorHistoricalRewardsRecord is used for import / export via genesis
|
|
287
|
+
* json.
|
|
288
|
+
* @name ValidatorHistoricalRewardsRecord
|
|
289
|
+
* @package cosmos.distribution.v1beta1
|
|
290
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorHistoricalRewardsRecord
|
|
291
|
+
*/
|
|
264
292
|
exports.ValidatorHistoricalRewardsRecord = {
|
|
265
293
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorHistoricalRewardsRecord",
|
|
266
294
|
aminoType: "cosmos-sdk/ValidatorHistoricalRewardsRecord",
|
|
@@ -354,6 +382,12 @@ function createBaseValidatorCurrentRewardsRecord() {
|
|
|
354
382
|
rewards: distribution_1.ValidatorCurrentRewards.fromPartial({})
|
|
355
383
|
};
|
|
356
384
|
}
|
|
385
|
+
/**
|
|
386
|
+
* ValidatorCurrentRewardsRecord is used for import / export via genesis json.
|
|
387
|
+
* @name ValidatorCurrentRewardsRecord
|
|
388
|
+
* @package cosmos.distribution.v1beta1
|
|
389
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorCurrentRewardsRecord
|
|
390
|
+
*/
|
|
357
391
|
exports.ValidatorCurrentRewardsRecord = {
|
|
358
392
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorCurrentRewardsRecord",
|
|
359
393
|
aminoType: "cosmos-sdk/ValidatorCurrentRewardsRecord",
|
|
@@ -437,6 +471,12 @@ function createBaseDelegatorStartingInfoRecord() {
|
|
|
437
471
|
startingInfo: distribution_1.DelegatorStartingInfo.fromPartial({})
|
|
438
472
|
};
|
|
439
473
|
}
|
|
474
|
+
/**
|
|
475
|
+
* DelegatorStartingInfoRecord used for import / export via genesis json.
|
|
476
|
+
* @name DelegatorStartingInfoRecord
|
|
477
|
+
* @package cosmos.distribution.v1beta1
|
|
478
|
+
* @see proto type: cosmos.distribution.v1beta1.DelegatorStartingInfoRecord
|
|
479
|
+
*/
|
|
440
480
|
exports.DelegatorStartingInfoRecord = {
|
|
441
481
|
typeUrl: "/cosmos.distribution.v1beta1.DelegatorStartingInfoRecord",
|
|
442
482
|
aminoType: "cosmos-sdk/DelegatorStartingInfoRecord",
|
|
@@ -532,6 +572,12 @@ function createBaseValidatorSlashEventRecord() {
|
|
|
532
572
|
validatorSlashEvent: distribution_1.ValidatorSlashEvent.fromPartial({})
|
|
533
573
|
};
|
|
534
574
|
}
|
|
575
|
+
/**
|
|
576
|
+
* ValidatorSlashEventRecord is used for import / export via genesis json.
|
|
577
|
+
* @name ValidatorSlashEventRecord
|
|
578
|
+
* @package cosmos.distribution.v1beta1
|
|
579
|
+
* @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEventRecord
|
|
580
|
+
*/
|
|
535
581
|
exports.ValidatorSlashEventRecord = {
|
|
536
582
|
typeUrl: "/cosmos.distribution.v1beta1.ValidatorSlashEventRecord",
|
|
537
583
|
aminoType: "cosmos-sdk/ValidatorSlashEventRecord",
|
|
@@ -644,6 +690,12 @@ function createBaseGenesisState() {
|
|
|
644
690
|
validatorSlashEvents: []
|
|
645
691
|
};
|
|
646
692
|
}
|
|
693
|
+
/**
|
|
694
|
+
* GenesisState defines the distribution module's genesis state.
|
|
695
|
+
* @name GenesisState
|
|
696
|
+
* @package cosmos.distribution.v1beta1
|
|
697
|
+
* @see proto type: cosmos.distribution.v1beta1.GenesisState
|
|
698
|
+
*/
|
|
647
699
|
exports.GenesisState = {
|
|
648
700
|
typeUrl: "/cosmos.distribution.v1beta1.GenesisState",
|
|
649
701
|
aminoType: "cosmos-sdk/GenesisState",
|