@sparkdreamnft/sparkdreamjs 0.0.5 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
- package/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +19 -0
- package/cosmos/auth/module/v1/module.d.ts +72 -12
- package/cosmos/auth/module/v1/module.js +25 -1
- package/cosmos/auth/v1beta1/auth.d.ts +68 -10
- package/cosmos/auth/v1beta1/auth.js +26 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +334 -92
- package/cosmos/auth/v1beta1/query.js +120 -0
- package/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
- package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/cosmos/auth/v1beta1/tx.d.ts +31 -10
- package/cosmos/auth/v1beta1/tx.js +13 -0
- package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +6 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +36 -0
- package/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +13 -8
- package/cosmos/bank/v1beta1/authz.js +7 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -34
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
- package/cosmos/bank/v1beta1/genesis.js +13 -0
- package/cosmos/bank/v1beta1/query.d.ts +599 -138
- package/cosmos/bank/v1beta1/query.js +179 -0
- package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
- package/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
- package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
- package/cosmos/bank/v1beta1/tx.d.ts +143 -30
- package/cosmos/bank/v1beta1/tx.js +53 -0
- package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/benchmark/module/v1/module.d.ts +102 -26
- package/cosmos/benchmark/module/v1/module.js +12 -0
- package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
- package/cosmos/benchmark/v1/benchmark.js +6 -0
- package/cosmos/benchmark/v1/tx.d.ts +36 -4
- package/cosmos/benchmark/v1/tx.js +12 -0
- package/cosmos/bundle.d.ts +2284 -2422
- package/cosmos/bundle.js +242 -261
- package/cosmos/circuit/module/v1/module.d.ts +24 -4
- package/cosmos/circuit/module/v1/module.js +6 -0
- package/cosmos/circuit/v1/query.d.ts +120 -16
- package/cosmos/circuit/v1/query.js +36 -0
- package/cosmos/circuit/v1/tx.d.ts +126 -18
- package/cosmos/circuit/v1/tx.js +36 -0
- package/cosmos/circuit/v1/types.d.ts +55 -6
- package/cosmos/circuit/v1/types.js +19 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +12 -0
- package/cosmos/consensus/v1/tx.d.ts +37 -6
- package/cosmos/consensus/v1/tx.js +13 -0
- package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/cosmos/counter/module/v1/module.d.ts +24 -4
- package/cosmos/counter/module/v1/module.js +6 -0
- package/cosmos/counter/v1/query.d.ts +36 -4
- package/cosmos/counter/v1/query.js +12 -0
- package/cosmos/counter/v1/tx.d.ts +54 -10
- package/cosmos/counter/v1/tx.js +12 -0
- package/cosmos/crisis/module/v1/module.d.ts +30 -6
- package/cosmos/crisis/module/v1/module.js +6 -0
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
- package/cosmos/crypto/hd/v1/hd.js +6 -0
- package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
- package/cosmos/crypto/keyring/v1/record.js +31 -0
- package/cosmos/crypto/multisig/keys.d.ts +14 -0
- package/cosmos/crypto/multisig/keys.js +8 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +136 -0
- package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
- package/cosmos/distribution/v1beta1/tx.js +97 -0
- package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
- package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/cosmos/epochs/module/v1/module.d.ts +18 -2
- package/cosmos/epochs/module/v1/module.js +6 -0
- package/cosmos/epochs/v1beta1/events.d.ts +36 -4
- package/cosmos/epochs/v1beta1/events.js +12 -0
- package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
- package/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/cosmos/epochs/v1beta1/query.d.ts +52 -0
- package/cosmos/epochs/v1beta1/query.js +28 -0
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
- package/cosmos/feegrant/v1beta1/query.js +36 -0
- package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
- package/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/genutil/module/v1/module.d.ts +18 -2
- package/cosmos/genutil/module/v1/module.js +6 -0
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -24
- package/cosmos/gov/v1/genesis.js +6 -0
- package/cosmos/gov/v1/gov.d.ts +341 -124
- package/cosmos/gov/v1/gov.js +59 -0
- package/cosmos/gov/v1/query.d.ts +469 -92
- package/cosmos/gov/v1/query.js +109 -0
- package/cosmos/gov/v1/tx.d.ts +368 -93
- package/cosmos/gov/v1/tx.js +88 -0
- package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +6 -0
- package/cosmos/gov/v1beta1/gov.d.ts +291 -69
- package/cosmos/gov/v1beta1/gov.js +57 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/tx.d.ts +209 -45
- package/cosmos/gov/v1beta1/tx.js +49 -0
- package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/group/module/v1/module.d.ts +18 -2
- package/cosmos/group/module/v1/module.js +6 -0
- package/cosmos/group/v1/events.d.ts +300 -56
- package/cosmos/group/v1/events.js +66 -0
- package/cosmos/group/v1/genesis.d.ts +48 -12
- package/cosmos/group/v1/genesis.js +6 -0
- package/cosmos/group/v1/query.d.ts +768 -152
- package/cosmos/group/v1/query.js +168 -0
- package/cosmos/group/v1/query.lcd.js +1 -3
- package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
- package/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/cosmos/group/v1/tx.d.ts +804 -163
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/types.d.ts +398 -91
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +6 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +39 -0
- package/cosmos/mint/v1beta1/tx.d.ts +31 -10
- package/cosmos/mint/v1beta1/tx.js +13 -0
- package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/nft/module/v1/module.d.ts +18 -2
- package/cosmos/nft/module/v1/module.js +6 -0
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +13 -0
- package/cosmos/params/v1beta1/query.d.ts +93 -22
- package/cosmos/params/v1beta1/query.js +33 -0
- package/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
- package/cosmos/protocolpool/module/v1/module.js +6 -0
- package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
- package/cosmos/protocolpool/v1/genesis.js +6 -0
- package/cosmos/protocolpool/v1/query.d.ts +138 -12
- package/cosmos/protocolpool/v1/query.js +54 -0
- package/cosmos/protocolpool/v1/tx.d.ts +217 -30
- package/cosmos/protocolpool/v1/tx.js +67 -0
- package/cosmos/protocolpool/v1/types.d.ts +54 -10
- package/cosmos/protocolpool/v1/types.js +12 -0
- package/cosmos/reflection/v1/reflection.d.ts +42 -6
- package/cosmos/reflection/v1/reflection.js +12 -0
- package/cosmos/rpc.query.d.ts +1 -9
- package/cosmos/rpc.query.js +0 -5
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +43 -15
- package/cosmos/staking/v1beta1/authz.js +13 -5
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +12 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/staking.d.ts +631 -121
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +234 -42
- package/cosmos/staking/v1beta1/tx.js +88 -0
- package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
- package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
- package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
- package/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
- package/cosmos/store/streaming/abci/grpc.js +24 -0
- package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
- package/cosmos/store/v1beta1/commit_info.js +21 -0
- package/cosmos/store/v1beta1/listening.d.ts +45 -10
- package/cosmos/store/v1beta1/listening.js +15 -0
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +355 -94
- package/cosmos/tx/v1beta1/service.js +125 -0
- package/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
- package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/cosmos/tx/v1beta1/tx.d.ts +371 -80
- package/cosmos/tx/v1beta1/tx.js +118 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
- package/cosmos/upgrade/v1beta1/query.js +70 -0
- package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
- package/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
- package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/cosmos/vesting/module/v1/module.d.ts +18 -2
- package/cosmos/vesting/module/v1/module.js +6 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
- package/cosmos/vesting/v1beta1/tx.js +40 -0
- package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
- package/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/esm/cosmos/app/v1alpha1/module.js +19 -0
- package/esm/cosmos/auth/module/v1/module.js +25 -1
- package/esm/cosmos/auth/v1beta1/auth.js +26 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +120 -0
- package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/esm/cosmos/auth/v1beta1/tx.js +13 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
- package/esm/cosmos/authz/v1beta1/query.js +36 -0
- package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +7 -0
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
- package/esm/cosmos/bank/v1beta1/query.js +179 -0
- package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
- package/esm/cosmos/bank/v1beta1/tx.js +53 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/benchmark/module/v1/module.js +12 -0
- package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
- package/esm/cosmos/benchmark/v1/tx.js +12 -0
- package/esm/cosmos/bundle.js +242 -261
- package/esm/cosmos/circuit/module/v1/module.js +6 -0
- package/esm/cosmos/circuit/v1/query.js +36 -0
- package/esm/cosmos/circuit/v1/tx.js +36 -0
- package/esm/cosmos/circuit/v1/types.js +19 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +12 -0
- package/esm/cosmos/consensus/v1/tx.js +13 -0
- package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/counter/module/v1/module.js +6 -0
- package/esm/cosmos/counter/v1/query.js +12 -0
- package/esm/cosmos/counter/v1/tx.js +12 -0
- package/esm/cosmos/crisis/module/v1/module.js +6 -0
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
- package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
- package/esm/cosmos/crypto/multisig/keys.js +8 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/esm/cosmos/distribution/v1beta1/query.js +136 -0
- package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/esm/cosmos/epochs/module/v1/module.js +6 -0
- package/esm/cosmos/epochs/v1beta1/events.js +12 -0
- package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/esm/cosmos/epochs/v1beta1/query.js +28 -0
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
- package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/genutil/module/v1/module.js +6 -0
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +6 -0
- package/esm/cosmos/gov/v1/gov.js +59 -0
- package/esm/cosmos/gov/v1/query.js +109 -0
- package/esm/cosmos/gov/v1/tx.js +88 -0
- package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
- package/esm/cosmos/gov/v1beta1/gov.js +57 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/tx.js +49 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/group/module/v1/module.js +6 -0
- package/esm/cosmos/group/v1/events.js +66 -0
- package/esm/cosmos/group/v1/genesis.js +6 -0
- package/esm/cosmos/group/v1/query.js +168 -0
- package/esm/cosmos/group/v1/query.lcd.js +1 -3
- package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +39 -0
- package/esm/cosmos/mint/v1beta1/tx.js +13 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/nft/module/v1/module.js +6 -0
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +13 -0
- package/esm/cosmos/params/v1beta1/query.js +33 -0
- package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
- package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
- package/esm/cosmos/protocolpool/v1/query.js +54 -0
- package/esm/cosmos/protocolpool/v1/tx.js +67 -0
- package/esm/cosmos/protocolpool/v1/types.js +12 -0
- package/esm/cosmos/reflection/v1/reflection.js +12 -0
- package/esm/cosmos/rpc.query.js +0 -5
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +13 -5
- package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +88 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
- package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
- package/esm/cosmos/store/v1beta1/listening.js +15 -0
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +125 -0
- package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/esm/cosmos/tx/v1beta1/tx.js +119 -1
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
- package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/esm/cosmos/vesting/module/v1/module.js +6 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/gogoproto/bundle.js +2 -2
- package/esm/google/api/http.js +283 -0
- package/esm/google/bundle.js +7 -7
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +220 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
- package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
- package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
- package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
- package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
- package/esm/ibc/applications/transfer/v1/authz.js +13 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
- package/esm/ibc/applications/transfer/v1/packet.js +8 -0
- package/esm/ibc/applications/transfer/v1/query.js +78 -0
- package/esm/ibc/applications/transfer/v1/token.js +18 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
- package/esm/ibc/applications/transfer/v1/tx.js +40 -1
- package/esm/ibc/bundle.js +196 -173
- package/esm/ibc/client.js +4 -1
- package/esm/ibc/core/channel/v1/channel.js +64 -0
- package/esm/ibc/core/channel/v1/genesis.js +13 -0
- package/esm/ibc/core/channel/v1/query.js +197 -0
- package/esm/ibc/core/channel/v1/tx.js +129 -0
- package/esm/ibc/core/channel/v2/genesis.js +21 -0
- package/esm/ibc/core/channel/v2/packet.js +29 -0
- package/esm/ibc/core/channel/v2/query.js +100 -0
- package/esm/ibc/core/channel/v2/tx.js +48 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/genesis.js +20 -0
- package/esm/ibc/core/client/v1/query.js +154 -0
- package/esm/ibc/core/client/v1/tx.amino.js +1 -6
- package/esm/ibc/core/client/v1/tx.js +86 -151
- package/esm/ibc/core/client/v1/tx.registry.js +2 -20
- package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
- package/esm/ibc/core/client/v2/config.js +9 -0
- package/esm/ibc/core/client/v2/counterparty.js +6 -0
- package/esm/ibc/core/client/v2/genesis.js +12 -0
- package/esm/ibc/core/client/v2/query.js +26 -0
- package/esm/ibc/core/client/v2/tx.js +24 -0
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/commitment/v2/commitment.js +36 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/genesis.js +6 -0
- package/esm/ibc/core/connection/v1/query.js +83 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/lcd.js +5 -0
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
- package/esm/ibc/rpc.query.js +3 -5
- package/esm/ibc/rpc.tx.js +3 -0
- package/esm/index.js +1 -1
- package/esm/sparkdream/blog/module/{module.js → v1/module.js} +9 -3
- package/esm/sparkdream/blog/{genesis.js → v1/genesis.js} +9 -3
- package/esm/sparkdream/blog/{params.js → v1/params.js} +9 -3
- package/esm/sparkdream/blog/{post.js → v1/post.js} +9 -3
- package/esm/sparkdream/blog/{query.js → v1/query.js} +50 -14
- package/esm/sparkdream/blog/{query.lcd.js → v1/query.lcd.js} +6 -6
- package/esm/sparkdream/blog/{query.rpc.Query.js → v1/query.rpc.Query.js} +6 -6
- package/esm/sparkdream/blog/{tx.amino.js → v1/tx.amino.js} +7 -7
- package/esm/sparkdream/blog/{tx.js → v1/tx.js} +66 -17
- package/esm/sparkdream/blog/{tx.registry.js → v1/tx.registry.js} +13 -13
- package/esm/sparkdream/blog/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +8 -8
- package/esm/sparkdream/bundle.js +68 -48
- package/esm/sparkdream/client.js +7 -7
- package/esm/sparkdream/lcd.js +10 -6
- package/esm/sparkdream/rpc.query.js +6 -7
- package/esm/sparkdream/rpc.tx.js +6 -2
- package/esm/sparkdream/sparkdream/module/{module.js → v1/module.js} +9 -3
- package/esm/sparkdream/sparkdream/{genesis.js → v1/genesis.js} +9 -3
- package/esm/sparkdream/sparkdream/{params.js → v1/params.js} +9 -3
- package/esm/sparkdream/sparkdream/{query.js → v1/query.js} +17 -5
- package/esm/sparkdream/sparkdream/{query.lcd.js → v1/query.lcd.js} +1 -1
- package/esm/sparkdream/sparkdream/{query.rpc.Query.js → v1/query.rpc.Query.js} +2 -2
- package/esm/sparkdream/sparkdream/{tx.amino.js → v1/tx.amino.js} +1 -1
- package/esm/sparkdream/sparkdream/{tx.js → v1/tx.js} +18 -5
- package/esm/sparkdream/sparkdream/{tx.registry.js → v1/tx.registry.js} +4 -4
- package/esm/sparkdream/sparkdream/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +2 -2
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +20 -20
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/p2p/types.js +20 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/gogoproto/bundle.js +2 -2
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/bundle.d.ts +418 -418
- package/google/bundle.js +7 -7
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +738 -90
- package/google/protobuf/descriptor.js +220 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
- package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
- package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
- package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
- package/ibc/applications/rate_limiting/v1/query.js +906 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
- package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
- package/ibc/applications/rate_limiting/v1/tx.js +729 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +13 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
- package/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
- package/ibc/applications/transfer/v1/genesis.js +6 -0
- package/ibc/applications/transfer/v1/packet.d.ts +44 -10
- package/ibc/applications/transfer/v1/packet.js +8 -0
- package/ibc/applications/transfer/v1/query.d.ts +252 -34
- package/ibc/applications/transfer/v1/query.js +78 -0
- package/ibc/applications/transfer/v1/token.d.ts +78 -14
- package/ibc/applications/transfer/v1/token.js +18 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
- package/ibc/applications/transfer/v1/transfer.js +9 -0
- package/ibc/applications/transfer/v1/tx.d.ts +135 -22
- package/ibc/applications/transfer/v1/tx.js +40 -1
- package/ibc/bundle.d.ts +3830 -3396
- package/ibc/bundle.js +196 -173
- package/ibc/client.d.ts +20 -5
- package/ibc/client.js +4 -1
- package/ibc/core/channel/v1/channel.d.ts +292 -60
- package/ibc/core/channel/v1/channel.js +64 -0
- package/ibc/core/channel/v1/genesis.d.ts +37 -4
- package/ibc/core/channel/v1/genesis.js +13 -0
- package/ibc/core/channel/v1/query.d.ts +839 -158
- package/ibc/core/channel/v1/query.js +197 -0
- package/ibc/core/channel/v1/tx.d.ts +335 -30
- package/ibc/core/channel/v1/tx.js +129 -0
- package/ibc/core/channel/v2/genesis.d.ts +81 -14
- package/ibc/core/channel/v2/genesis.js +21 -0
- package/ibc/core/channel/v2/packet.d.ts +137 -28
- package/ibc/core/channel/v2/packet.js +29 -0
- package/ibc/core/channel/v2/query.d.ts +490 -98
- package/ibc/core/channel/v2/query.js +100 -0
- package/ibc/core/channel/v2/tx.d.ts +144 -16
- package/ibc/core/channel/v2/tx.js +48 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/genesis.d.ts +82 -16
- package/ibc/core/client/v1/genesis.js +20 -0
- package/ibc/core/client/v1/query.d.ts +508 -74
- package/ibc/core/client/v1/query.js +154 -0
- package/ibc/core/client/v1/tx.amino.d.ts +1 -6
- package/ibc/core/client/v1/tx.amino.js +0 -5
- package/ibc/core/client/v1/tx.d.ts +336 -138
- package/ibc/core/client/v1/tx.js +87 -152
- package/ibc/core/client/v1/tx.registry.d.ts +1 -13
- package/ibc/core/client/v1/tx.registry.js +1 -19
- package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
- package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
- package/ibc/core/client/v2/config.d.ts +21 -2
- package/ibc/core/client/v2/config.js +9 -0
- package/ibc/core/client/v2/counterparty.d.ts +30 -6
- package/ibc/core/client/v2/counterparty.js +6 -0
- package/ibc/core/client/v2/genesis.d.ts +54 -10
- package/ibc/core/client/v2/genesis.js +12 -0
- package/ibc/core/client/v2/query.d.ts +74 -8
- package/ibc/core/client/v2/query.js +26 -0
- package/ibc/core/client/v2/tx.d.ts +108 -20
- package/ibc/core/client/v2/tx.js +24 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/commitment/v2/commitment.d.ts +42 -0
- package/ibc/core/commitment/v2/commitment.js +36 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +6 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +83 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/lcd.d.ts +3 -0
- package/ibc/lcd.js +5 -0
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
- package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
- package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
- package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +24 -0
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
- package/ibc/lightclients/wasm/v1/wasm.js +19 -74
- package/ibc/rpc.query.d.ts +11 -9
- package/ibc/rpc.query.js +3 -5
- package/ibc/rpc.tx.d.ts +3 -0
- package/ibc/rpc.tx.js +3 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/sparkdream/blog/module/v1/module.d.ts +54 -0
- package/sparkdream/{sparkdream/module → blog/module/v1}/module.js +9 -3
- package/sparkdream/{sparkdream → blog/v1}/genesis.d.ts +28 -8
- package/sparkdream/{sparkdream → blog/v1}/genesis.js +9 -3
- package/sparkdream/blog/{params.d.ts → v1/params.d.ts} +21 -5
- package/sparkdream/blog/{params.js → v1/params.js} +9 -3
- package/sparkdream/blog/{post.d.ts → v1/post.d.ts} +22 -4
- package/sparkdream/blog/{post.js → v1/post.js} +9 -3
- package/sparkdream/blog/{query.d.ts → v1/query.d.ts} +129 -21
- package/sparkdream/blog/{query.js → v1/query.js} +50 -14
- package/sparkdream/blog/{query.lcd.js → v1/query.lcd.js} +6 -6
- package/sparkdream/blog/{query.rpc.Query.d.ts → v1/query.rpc.Query.d.ts} +3 -3
- package/sparkdream/blog/{query.rpc.Query.js → v1/query.rpc.Query.js} +6 -6
- package/sparkdream/blog/{tx.amino.d.ts → v1/tx.amino.d.ts} +4 -4
- package/sparkdream/blog/{tx.amino.js → v1/tx.amino.js} +7 -7
- package/sparkdream/blog/{tx.d.ts → v1/tx.d.ts} +168 -23
- package/sparkdream/blog/{tx.js → v1/tx.js} +66 -17
- package/sparkdream/blog/{tx.registry.d.ts → v1/tx.registry.d.ts} +1 -1
- package/sparkdream/blog/{tx.registry.js → v1/tx.registry.js} +13 -13
- package/sparkdream/blog/{tx.rpc.msg.d.ts → v1/tx.rpc.msg.d.ts} +4 -1
- package/sparkdream/blog/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +8 -8
- package/sparkdream/bundle.d.ts +461 -419
- package/sparkdream/bundle.js +68 -48
- package/sparkdream/client.d.ts +15 -15
- package/sparkdream/client.js +7 -7
- package/sparkdream/lcd.d.ts +6 -2
- package/sparkdream/lcd.js +10 -6
- package/sparkdream/rpc.query.d.ts +9 -13
- package/sparkdream/rpc.query.js +6 -7
- package/sparkdream/rpc.tx.d.ts +6 -2
- package/sparkdream/rpc.tx.js +6 -2
- package/sparkdream/sparkdream/module/v1/module.d.ts +54 -0
- package/sparkdream/{blog/module → sparkdream/module/v1}/module.js +9 -3
- package/sparkdream/sparkdream/v1/genesis.d.ts +53 -0
- package/sparkdream/{blog → sparkdream/v1}/genesis.js +9 -3
- package/sparkdream/sparkdream/{params.d.ts → v1/params.d.ts} +21 -5
- package/sparkdream/sparkdream/{params.js → v1/params.js} +9 -3
- package/sparkdream/sparkdream/{query.d.ts → v1/query.d.ts} +48 -12
- package/sparkdream/sparkdream/{query.js → v1/query.js} +17 -5
- package/sparkdream/sparkdream/{query.lcd.js → v1/query.lcd.js} +1 -1
- package/sparkdream/sparkdream/{query.rpc.Query.d.ts → v1/query.rpc.Query.d.ts} +1 -1
- package/sparkdream/sparkdream/{query.rpc.Query.js → v1/query.rpc.Query.js} +2 -2
- package/sparkdream/sparkdream/{tx.amino.d.ts → v1/tx.amino.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.amino.js → v1/tx.amino.js} +1 -1
- package/sparkdream/sparkdream/{tx.d.ts → v1/tx.d.ts} +42 -9
- package/sparkdream/sparkdream/{tx.js → v1/tx.js} +18 -5
- package/sparkdream/sparkdream/{tx.registry.d.ts → v1/tx.registry.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.registry.js → v1/tx.registry.js} +4 -4
- package/sparkdream/sparkdream/{tx.rpc.msg.d.ts → v1/tx.rpc.msg.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +2 -2
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +20 -20
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +20 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
- package/cosmos/orm/module/v1alpha1/module.js +0 -62
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
- package/cosmos/orm/query/v1alpha1/query.js +0 -695
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
- package/sparkdream/blog/genesis.d.ts +0 -33
- package/sparkdream/blog/module/module.d.ts +0 -32
- package/sparkdream/sparkdream/module/module.d.ts +0 -32
- /package/sparkdream/blog/{query.lcd.d.ts → v1/query.lcd.d.ts} +0 -0
- /package/sparkdream/sparkdream/{query.lcd.d.ts → v1/query.lcd.d.ts} +0 -0
|
@@ -4,7 +4,12 @@ import { Coin, CoinAmino } from "../../base/v1beta1/coin";
|
|
|
4
4
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
5
5
|
import { DeepPartial } from "../../../helpers";
|
|
6
6
|
import { Pubkey } from "@cosmjs/amino";
|
|
7
|
-
/**
|
|
7
|
+
/**
|
|
8
|
+
* MsgCreateValidator defines a SDK message for creating a new validator.
|
|
9
|
+
* @name MsgCreateValidator
|
|
10
|
+
* @package cosmos.staking.v1beta1
|
|
11
|
+
* @see proto type: cosmos.staking.v1beta1.MsgCreateValidator
|
|
12
|
+
*/
|
|
8
13
|
export interface MsgCreateValidator {
|
|
9
14
|
description: Description;
|
|
10
15
|
commission: CommissionRates;
|
|
@@ -13,8 +18,8 @@ export interface MsgCreateValidator {
|
|
|
13
18
|
* Deprecated: Use of Delegator Address in MsgCreateValidator is deprecated.
|
|
14
19
|
* The validator address bytes and delegator address bytes refer to the same account while creating validator (defer
|
|
15
20
|
* only in bech32 notation).
|
|
21
|
+
* @deprecated
|
|
16
22
|
*/
|
|
17
|
-
/** @deprecated */
|
|
18
23
|
delegatorAddress: string;
|
|
19
24
|
validatorAddress: string;
|
|
20
25
|
pubkey?: Any | undefined;
|
|
@@ -27,7 +32,12 @@ export interface MsgCreateValidatorProtoMsg {
|
|
|
27
32
|
export type MsgCreateValidatorEncoded = Omit<MsgCreateValidator, "pubkey"> & {
|
|
28
33
|
pubkey?: AnyProtoMsg | undefined;
|
|
29
34
|
};
|
|
30
|
-
/**
|
|
35
|
+
/**
|
|
36
|
+
* MsgCreateValidator defines a SDK message for creating a new validator.
|
|
37
|
+
* @name MsgCreateValidatorAmino
|
|
38
|
+
* @package cosmos.staking.v1beta1
|
|
39
|
+
* @see proto type: cosmos.staking.v1beta1.MsgCreateValidator
|
|
40
|
+
*/
|
|
31
41
|
export interface MsgCreateValidatorAmino {
|
|
32
42
|
description: DescriptionAmino;
|
|
33
43
|
commission: CommissionRatesAmino;
|
|
@@ -36,8 +46,8 @@ export interface MsgCreateValidatorAmino {
|
|
|
36
46
|
* Deprecated: Use of Delegator Address in MsgCreateValidator is deprecated.
|
|
37
47
|
* The validator address bytes and delegator address bytes refer to the same account while creating validator (defer
|
|
38
48
|
* only in bech32 notation).
|
|
49
|
+
* @deprecated
|
|
39
50
|
*/
|
|
40
|
-
/** @deprecated */
|
|
41
51
|
delegator_address?: string;
|
|
42
52
|
validator_address?: string;
|
|
43
53
|
pubkey?: AnyAmino;
|
|
@@ -47,21 +57,36 @@ export interface MsgCreateValidatorAminoMsg {
|
|
|
47
57
|
type: "cosmos-sdk/MsgCreateValidator";
|
|
48
58
|
value: MsgCreateValidatorAmino;
|
|
49
59
|
}
|
|
50
|
-
/**
|
|
60
|
+
/**
|
|
61
|
+
* MsgCreateValidatorResponse defines the Msg/CreateValidator response type.
|
|
62
|
+
* @name MsgCreateValidatorResponse
|
|
63
|
+
* @package cosmos.staking.v1beta1
|
|
64
|
+
* @see proto type: cosmos.staking.v1beta1.MsgCreateValidatorResponse
|
|
65
|
+
*/
|
|
51
66
|
export interface MsgCreateValidatorResponse {
|
|
52
67
|
}
|
|
53
68
|
export interface MsgCreateValidatorResponseProtoMsg {
|
|
54
69
|
typeUrl: "/cosmos.staking.v1beta1.MsgCreateValidatorResponse";
|
|
55
70
|
value: Uint8Array;
|
|
56
71
|
}
|
|
57
|
-
/**
|
|
72
|
+
/**
|
|
73
|
+
* MsgCreateValidatorResponse defines the Msg/CreateValidator response type.
|
|
74
|
+
* @name MsgCreateValidatorResponseAmino
|
|
75
|
+
* @package cosmos.staking.v1beta1
|
|
76
|
+
* @see proto type: cosmos.staking.v1beta1.MsgCreateValidatorResponse
|
|
77
|
+
*/
|
|
58
78
|
export interface MsgCreateValidatorResponseAmino {
|
|
59
79
|
}
|
|
60
80
|
export interface MsgCreateValidatorResponseAminoMsg {
|
|
61
81
|
type: "cosmos-sdk/MsgCreateValidatorResponse";
|
|
62
82
|
value: MsgCreateValidatorResponseAmino;
|
|
63
83
|
}
|
|
64
|
-
/**
|
|
84
|
+
/**
|
|
85
|
+
* MsgEditValidator defines a SDK message for editing an existing validator.
|
|
86
|
+
* @name MsgEditValidator
|
|
87
|
+
* @package cosmos.staking.v1beta1
|
|
88
|
+
* @see proto type: cosmos.staking.v1beta1.MsgEditValidator
|
|
89
|
+
*/
|
|
65
90
|
export interface MsgEditValidator {
|
|
66
91
|
description: Description;
|
|
67
92
|
validatorAddress: string;
|
|
@@ -78,7 +103,12 @@ export interface MsgEditValidatorProtoMsg {
|
|
|
78
103
|
typeUrl: "/cosmos.staking.v1beta1.MsgEditValidator";
|
|
79
104
|
value: Uint8Array;
|
|
80
105
|
}
|
|
81
|
-
/**
|
|
106
|
+
/**
|
|
107
|
+
* MsgEditValidator defines a SDK message for editing an existing validator.
|
|
108
|
+
* @name MsgEditValidatorAmino
|
|
109
|
+
* @package cosmos.staking.v1beta1
|
|
110
|
+
* @see proto type: cosmos.staking.v1beta1.MsgEditValidator
|
|
111
|
+
*/
|
|
82
112
|
export interface MsgEditValidatorAmino {
|
|
83
113
|
description: DescriptionAmino;
|
|
84
114
|
validator_address?: string;
|
|
@@ -95,14 +125,24 @@ export interface MsgEditValidatorAminoMsg {
|
|
|
95
125
|
type: "cosmos-sdk/MsgEditValidator";
|
|
96
126
|
value: MsgEditValidatorAmino;
|
|
97
127
|
}
|
|
98
|
-
/**
|
|
128
|
+
/**
|
|
129
|
+
* MsgEditValidatorResponse defines the Msg/EditValidator response type.
|
|
130
|
+
* @name MsgEditValidatorResponse
|
|
131
|
+
* @package cosmos.staking.v1beta1
|
|
132
|
+
* @see proto type: cosmos.staking.v1beta1.MsgEditValidatorResponse
|
|
133
|
+
*/
|
|
99
134
|
export interface MsgEditValidatorResponse {
|
|
100
135
|
}
|
|
101
136
|
export interface MsgEditValidatorResponseProtoMsg {
|
|
102
137
|
typeUrl: "/cosmos.staking.v1beta1.MsgEditValidatorResponse";
|
|
103
138
|
value: Uint8Array;
|
|
104
139
|
}
|
|
105
|
-
/**
|
|
140
|
+
/**
|
|
141
|
+
* MsgEditValidatorResponse defines the Msg/EditValidator response type.
|
|
142
|
+
* @name MsgEditValidatorResponseAmino
|
|
143
|
+
* @package cosmos.staking.v1beta1
|
|
144
|
+
* @see proto type: cosmos.staking.v1beta1.MsgEditValidatorResponse
|
|
145
|
+
*/
|
|
106
146
|
export interface MsgEditValidatorResponseAmino {
|
|
107
147
|
}
|
|
108
148
|
export interface MsgEditValidatorResponseAminoMsg {
|
|
@@ -112,6 +152,9 @@ export interface MsgEditValidatorResponseAminoMsg {
|
|
|
112
152
|
/**
|
|
113
153
|
* MsgDelegate defines a SDK message for performing a delegation of coins
|
|
114
154
|
* from a delegator to a validator.
|
|
155
|
+
* @name MsgDelegate
|
|
156
|
+
* @package cosmos.staking.v1beta1
|
|
157
|
+
* @see proto type: cosmos.staking.v1beta1.MsgDelegate
|
|
115
158
|
*/
|
|
116
159
|
export interface MsgDelegate {
|
|
117
160
|
delegatorAddress: string;
|
|
@@ -125,6 +168,9 @@ export interface MsgDelegateProtoMsg {
|
|
|
125
168
|
/**
|
|
126
169
|
* MsgDelegate defines a SDK message for performing a delegation of coins
|
|
127
170
|
* from a delegator to a validator.
|
|
171
|
+
* @name MsgDelegateAmino
|
|
172
|
+
* @package cosmos.staking.v1beta1
|
|
173
|
+
* @see proto type: cosmos.staking.v1beta1.MsgDelegate
|
|
128
174
|
*/
|
|
129
175
|
export interface MsgDelegateAmino {
|
|
130
176
|
delegator_address?: string;
|
|
@@ -135,14 +181,24 @@ export interface MsgDelegateAminoMsg {
|
|
|
135
181
|
type: "cosmos-sdk/MsgDelegate";
|
|
136
182
|
value: MsgDelegateAmino;
|
|
137
183
|
}
|
|
138
|
-
/**
|
|
184
|
+
/**
|
|
185
|
+
* MsgDelegateResponse defines the Msg/Delegate response type.
|
|
186
|
+
* @name MsgDelegateResponse
|
|
187
|
+
* @package cosmos.staking.v1beta1
|
|
188
|
+
* @see proto type: cosmos.staking.v1beta1.MsgDelegateResponse
|
|
189
|
+
*/
|
|
139
190
|
export interface MsgDelegateResponse {
|
|
140
191
|
}
|
|
141
192
|
export interface MsgDelegateResponseProtoMsg {
|
|
142
193
|
typeUrl: "/cosmos.staking.v1beta1.MsgDelegateResponse";
|
|
143
194
|
value: Uint8Array;
|
|
144
195
|
}
|
|
145
|
-
/**
|
|
196
|
+
/**
|
|
197
|
+
* MsgDelegateResponse defines the Msg/Delegate response type.
|
|
198
|
+
* @name MsgDelegateResponseAmino
|
|
199
|
+
* @package cosmos.staking.v1beta1
|
|
200
|
+
* @see proto type: cosmos.staking.v1beta1.MsgDelegateResponse
|
|
201
|
+
*/
|
|
146
202
|
export interface MsgDelegateResponseAmino {
|
|
147
203
|
}
|
|
148
204
|
export interface MsgDelegateResponseAminoMsg {
|
|
@@ -152,6 +208,9 @@ export interface MsgDelegateResponseAminoMsg {
|
|
|
152
208
|
/**
|
|
153
209
|
* MsgBeginRedelegate defines a SDK message for performing a redelegation
|
|
154
210
|
* of coins from a delegator and source validator to a destination validator.
|
|
211
|
+
* @name MsgBeginRedelegate
|
|
212
|
+
* @package cosmos.staking.v1beta1
|
|
213
|
+
* @see proto type: cosmos.staking.v1beta1.MsgBeginRedelegate
|
|
155
214
|
*/
|
|
156
215
|
export interface MsgBeginRedelegate {
|
|
157
216
|
delegatorAddress: string;
|
|
@@ -166,6 +225,9 @@ export interface MsgBeginRedelegateProtoMsg {
|
|
|
166
225
|
/**
|
|
167
226
|
* MsgBeginRedelegate defines a SDK message for performing a redelegation
|
|
168
227
|
* of coins from a delegator and source validator to a destination validator.
|
|
228
|
+
* @name MsgBeginRedelegateAmino
|
|
229
|
+
* @package cosmos.staking.v1beta1
|
|
230
|
+
* @see proto type: cosmos.staking.v1beta1.MsgBeginRedelegate
|
|
169
231
|
*/
|
|
170
232
|
export interface MsgBeginRedelegateAmino {
|
|
171
233
|
delegator_address?: string;
|
|
@@ -177,7 +239,12 @@ export interface MsgBeginRedelegateAminoMsg {
|
|
|
177
239
|
type: "cosmos-sdk/MsgBeginRedelegate";
|
|
178
240
|
value: MsgBeginRedelegateAmino;
|
|
179
241
|
}
|
|
180
|
-
/**
|
|
242
|
+
/**
|
|
243
|
+
* MsgBeginRedelegateResponse defines the Msg/BeginRedelegate response type.
|
|
244
|
+
* @name MsgBeginRedelegateResponse
|
|
245
|
+
* @package cosmos.staking.v1beta1
|
|
246
|
+
* @see proto type: cosmos.staking.v1beta1.MsgBeginRedelegateResponse
|
|
247
|
+
*/
|
|
181
248
|
export interface MsgBeginRedelegateResponse {
|
|
182
249
|
completionTime: Date;
|
|
183
250
|
}
|
|
@@ -185,7 +252,12 @@ export interface MsgBeginRedelegateResponseProtoMsg {
|
|
|
185
252
|
typeUrl: "/cosmos.staking.v1beta1.MsgBeginRedelegateResponse";
|
|
186
253
|
value: Uint8Array;
|
|
187
254
|
}
|
|
188
|
-
/**
|
|
255
|
+
/**
|
|
256
|
+
* MsgBeginRedelegateResponse defines the Msg/BeginRedelegate response type.
|
|
257
|
+
* @name MsgBeginRedelegateResponseAmino
|
|
258
|
+
* @package cosmos.staking.v1beta1
|
|
259
|
+
* @see proto type: cosmos.staking.v1beta1.MsgBeginRedelegateResponse
|
|
260
|
+
*/
|
|
189
261
|
export interface MsgBeginRedelegateResponseAmino {
|
|
190
262
|
completion_time: string;
|
|
191
263
|
}
|
|
@@ -196,6 +268,9 @@ export interface MsgBeginRedelegateResponseAminoMsg {
|
|
|
196
268
|
/**
|
|
197
269
|
* MsgUndelegate defines a SDK message for performing an undelegation from a
|
|
198
270
|
* delegate and a validator.
|
|
271
|
+
* @name MsgUndelegate
|
|
272
|
+
* @package cosmos.staking.v1beta1
|
|
273
|
+
* @see proto type: cosmos.staking.v1beta1.MsgUndelegate
|
|
199
274
|
*/
|
|
200
275
|
export interface MsgUndelegate {
|
|
201
276
|
delegatorAddress: string;
|
|
@@ -209,6 +284,9 @@ export interface MsgUndelegateProtoMsg {
|
|
|
209
284
|
/**
|
|
210
285
|
* MsgUndelegate defines a SDK message for performing an undelegation from a
|
|
211
286
|
* delegate and a validator.
|
|
287
|
+
* @name MsgUndelegateAmino
|
|
288
|
+
* @package cosmos.staking.v1beta1
|
|
289
|
+
* @see proto type: cosmos.staking.v1beta1.MsgUndelegate
|
|
212
290
|
*/
|
|
213
291
|
export interface MsgUndelegateAmino {
|
|
214
292
|
delegator_address?: string;
|
|
@@ -219,13 +297,16 @@ export interface MsgUndelegateAminoMsg {
|
|
|
219
297
|
type: "cosmos-sdk/MsgUndelegate";
|
|
220
298
|
value: MsgUndelegateAmino;
|
|
221
299
|
}
|
|
222
|
-
/**
|
|
300
|
+
/**
|
|
301
|
+
* MsgUndelegateResponse defines the Msg/Undelegate response type.
|
|
302
|
+
* @name MsgUndelegateResponse
|
|
303
|
+
* @package cosmos.staking.v1beta1
|
|
304
|
+
* @see proto type: cosmos.staking.v1beta1.MsgUndelegateResponse
|
|
305
|
+
*/
|
|
223
306
|
export interface MsgUndelegateResponse {
|
|
224
307
|
completionTime: Date;
|
|
225
308
|
/**
|
|
226
309
|
* amount returns the amount of undelegated coins
|
|
227
|
-
*
|
|
228
|
-
* Since: cosmos-sdk 0.50
|
|
229
310
|
*/
|
|
230
311
|
amount: Coin;
|
|
231
312
|
}
|
|
@@ -233,13 +314,16 @@ export interface MsgUndelegateResponseProtoMsg {
|
|
|
233
314
|
typeUrl: "/cosmos.staking.v1beta1.MsgUndelegateResponse";
|
|
234
315
|
value: Uint8Array;
|
|
235
316
|
}
|
|
236
|
-
/**
|
|
317
|
+
/**
|
|
318
|
+
* MsgUndelegateResponse defines the Msg/Undelegate response type.
|
|
319
|
+
* @name MsgUndelegateResponseAmino
|
|
320
|
+
* @package cosmos.staking.v1beta1
|
|
321
|
+
* @see proto type: cosmos.staking.v1beta1.MsgUndelegateResponse
|
|
322
|
+
*/
|
|
237
323
|
export interface MsgUndelegateResponseAmino {
|
|
238
324
|
completion_time: string;
|
|
239
325
|
/**
|
|
240
326
|
* amount returns the amount of undelegated coins
|
|
241
|
-
*
|
|
242
|
-
* Since: cosmos-sdk 0.50
|
|
243
327
|
*/
|
|
244
328
|
amount: CoinAmino;
|
|
245
329
|
}
|
|
@@ -249,15 +333,20 @@ export interface MsgUndelegateResponseAminoMsg {
|
|
|
249
333
|
}
|
|
250
334
|
/**
|
|
251
335
|
* MsgCancelUnbondingDelegation defines the SDK message for performing a cancel unbonding delegation for delegator
|
|
252
|
-
*
|
|
253
|
-
*
|
|
336
|
+
* @name MsgCancelUnbondingDelegation
|
|
337
|
+
* @package cosmos.staking.v1beta1
|
|
338
|
+
* @see proto type: cosmos.staking.v1beta1.MsgCancelUnbondingDelegation
|
|
254
339
|
*/
|
|
255
340
|
export interface MsgCancelUnbondingDelegation {
|
|
256
341
|
delegatorAddress: string;
|
|
257
342
|
validatorAddress: string;
|
|
258
|
-
/**
|
|
343
|
+
/**
|
|
344
|
+
* amount is always less than or equal to unbonding delegation entry balance
|
|
345
|
+
*/
|
|
259
346
|
amount: Coin;
|
|
260
|
-
/**
|
|
347
|
+
/**
|
|
348
|
+
* creation_height is the height which the unbonding took place.
|
|
349
|
+
*/
|
|
261
350
|
creationHeight: bigint;
|
|
262
351
|
}
|
|
263
352
|
export interface MsgCancelUnbondingDelegationProtoMsg {
|
|
@@ -266,15 +355,20 @@ export interface MsgCancelUnbondingDelegationProtoMsg {
|
|
|
266
355
|
}
|
|
267
356
|
/**
|
|
268
357
|
* MsgCancelUnbondingDelegation defines the SDK message for performing a cancel unbonding delegation for delegator
|
|
269
|
-
*
|
|
270
|
-
*
|
|
358
|
+
* @name MsgCancelUnbondingDelegationAmino
|
|
359
|
+
* @package cosmos.staking.v1beta1
|
|
360
|
+
* @see proto type: cosmos.staking.v1beta1.MsgCancelUnbondingDelegation
|
|
271
361
|
*/
|
|
272
362
|
export interface MsgCancelUnbondingDelegationAmino {
|
|
273
363
|
delegator_address?: string;
|
|
274
364
|
validator_address?: string;
|
|
275
|
-
/**
|
|
365
|
+
/**
|
|
366
|
+
* amount is always less than or equal to unbonding delegation entry balance
|
|
367
|
+
*/
|
|
276
368
|
amount: CoinAmino;
|
|
277
|
-
/**
|
|
369
|
+
/**
|
|
370
|
+
* creation_height is the height which the unbonding took place.
|
|
371
|
+
*/
|
|
278
372
|
creation_height?: string;
|
|
279
373
|
}
|
|
280
374
|
export interface MsgCancelUnbondingDelegationAminoMsg {
|
|
@@ -283,8 +377,9 @@ export interface MsgCancelUnbondingDelegationAminoMsg {
|
|
|
283
377
|
}
|
|
284
378
|
/**
|
|
285
379
|
* MsgCancelUnbondingDelegationResponse
|
|
286
|
-
*
|
|
287
|
-
*
|
|
380
|
+
* @name MsgCancelUnbondingDelegationResponse
|
|
381
|
+
* @package cosmos.staking.v1beta1
|
|
382
|
+
* @see proto type: cosmos.staking.v1beta1.MsgCancelUnbondingDelegationResponse
|
|
288
383
|
*/
|
|
289
384
|
export interface MsgCancelUnbondingDelegationResponse {
|
|
290
385
|
}
|
|
@@ -294,8 +389,9 @@ export interface MsgCancelUnbondingDelegationResponseProtoMsg {
|
|
|
294
389
|
}
|
|
295
390
|
/**
|
|
296
391
|
* MsgCancelUnbondingDelegationResponse
|
|
297
|
-
*
|
|
298
|
-
*
|
|
392
|
+
* @name MsgCancelUnbondingDelegationResponseAmino
|
|
393
|
+
* @package cosmos.staking.v1beta1
|
|
394
|
+
* @see proto type: cosmos.staking.v1beta1.MsgCancelUnbondingDelegationResponse
|
|
299
395
|
*/
|
|
300
396
|
export interface MsgCancelUnbondingDelegationResponseAmino {
|
|
301
397
|
}
|
|
@@ -305,11 +401,14 @@ export interface MsgCancelUnbondingDelegationResponseAminoMsg {
|
|
|
305
401
|
}
|
|
306
402
|
/**
|
|
307
403
|
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
308
|
-
*
|
|
309
|
-
*
|
|
404
|
+
* @name MsgUpdateParams
|
|
405
|
+
* @package cosmos.staking.v1beta1
|
|
406
|
+
* @see proto type: cosmos.staking.v1beta1.MsgUpdateParams
|
|
310
407
|
*/
|
|
311
408
|
export interface MsgUpdateParams {
|
|
312
|
-
/**
|
|
409
|
+
/**
|
|
410
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
411
|
+
*/
|
|
313
412
|
authority: string;
|
|
314
413
|
/**
|
|
315
414
|
* params defines the x/staking parameters to update.
|
|
@@ -324,11 +423,14 @@ export interface MsgUpdateParamsProtoMsg {
|
|
|
324
423
|
}
|
|
325
424
|
/**
|
|
326
425
|
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
327
|
-
*
|
|
328
|
-
*
|
|
426
|
+
* @name MsgUpdateParamsAmino
|
|
427
|
+
* @package cosmos.staking.v1beta1
|
|
428
|
+
* @see proto type: cosmos.staking.v1beta1.MsgUpdateParams
|
|
329
429
|
*/
|
|
330
430
|
export interface MsgUpdateParamsAmino {
|
|
331
|
-
/**
|
|
431
|
+
/**
|
|
432
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
433
|
+
*/
|
|
332
434
|
authority?: string;
|
|
333
435
|
/**
|
|
334
436
|
* params defines the x/staking parameters to update.
|
|
@@ -344,8 +446,9 @@ export interface MsgUpdateParamsAminoMsg {
|
|
|
344
446
|
/**
|
|
345
447
|
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
346
448
|
* MsgUpdateParams message.
|
|
347
|
-
*
|
|
348
|
-
*
|
|
449
|
+
* @name MsgUpdateParamsResponse
|
|
450
|
+
* @package cosmos.staking.v1beta1
|
|
451
|
+
* @see proto type: cosmos.staking.v1beta1.MsgUpdateParamsResponse
|
|
349
452
|
*/
|
|
350
453
|
export interface MsgUpdateParamsResponse {
|
|
351
454
|
}
|
|
@@ -356,8 +459,9 @@ export interface MsgUpdateParamsResponseProtoMsg {
|
|
|
356
459
|
/**
|
|
357
460
|
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
358
461
|
* MsgUpdateParams message.
|
|
359
|
-
*
|
|
360
|
-
*
|
|
462
|
+
* @name MsgUpdateParamsResponseAmino
|
|
463
|
+
* @package cosmos.staking.v1beta1
|
|
464
|
+
* @see proto type: cosmos.staking.v1beta1.MsgUpdateParamsResponse
|
|
361
465
|
*/
|
|
362
466
|
export interface MsgUpdateParamsResponseAmino {
|
|
363
467
|
}
|
|
@@ -365,6 +469,12 @@ export interface MsgUpdateParamsResponseAminoMsg {
|
|
|
365
469
|
type: "cosmos-sdk/MsgUpdateParamsResponse";
|
|
366
470
|
value: MsgUpdateParamsResponseAmino;
|
|
367
471
|
}
|
|
472
|
+
/**
|
|
473
|
+
* MsgCreateValidator defines a SDK message for creating a new validator.
|
|
474
|
+
* @name MsgCreateValidator
|
|
475
|
+
* @package cosmos.staking.v1beta1
|
|
476
|
+
* @see proto type: cosmos.staking.v1beta1.MsgCreateValidator
|
|
477
|
+
*/
|
|
368
478
|
export declare const MsgCreateValidator: {
|
|
369
479
|
typeUrl: string;
|
|
370
480
|
aminoType: string;
|
|
@@ -379,6 +489,12 @@ export declare const MsgCreateValidator: {
|
|
|
379
489
|
toProto(message: MsgCreateValidator): Uint8Array;
|
|
380
490
|
toProtoMsg(message: MsgCreateValidator): MsgCreateValidatorProtoMsg;
|
|
381
491
|
};
|
|
492
|
+
/**
|
|
493
|
+
* MsgCreateValidatorResponse defines the Msg/CreateValidator response type.
|
|
494
|
+
* @name MsgCreateValidatorResponse
|
|
495
|
+
* @package cosmos.staking.v1beta1
|
|
496
|
+
* @see proto type: cosmos.staking.v1beta1.MsgCreateValidatorResponse
|
|
497
|
+
*/
|
|
382
498
|
export declare const MsgCreateValidatorResponse: {
|
|
383
499
|
typeUrl: string;
|
|
384
500
|
aminoType: string;
|
|
@@ -393,6 +509,12 @@ export declare const MsgCreateValidatorResponse: {
|
|
|
393
509
|
toProto(message: MsgCreateValidatorResponse): Uint8Array;
|
|
394
510
|
toProtoMsg(message: MsgCreateValidatorResponse): MsgCreateValidatorResponseProtoMsg;
|
|
395
511
|
};
|
|
512
|
+
/**
|
|
513
|
+
* MsgEditValidator defines a SDK message for editing an existing validator.
|
|
514
|
+
* @name MsgEditValidator
|
|
515
|
+
* @package cosmos.staking.v1beta1
|
|
516
|
+
* @see proto type: cosmos.staking.v1beta1.MsgEditValidator
|
|
517
|
+
*/
|
|
396
518
|
export declare const MsgEditValidator: {
|
|
397
519
|
typeUrl: string;
|
|
398
520
|
aminoType: string;
|
|
@@ -407,6 +529,12 @@ export declare const MsgEditValidator: {
|
|
|
407
529
|
toProto(message: MsgEditValidator): Uint8Array;
|
|
408
530
|
toProtoMsg(message: MsgEditValidator): MsgEditValidatorProtoMsg;
|
|
409
531
|
};
|
|
532
|
+
/**
|
|
533
|
+
* MsgEditValidatorResponse defines the Msg/EditValidator response type.
|
|
534
|
+
* @name MsgEditValidatorResponse
|
|
535
|
+
* @package cosmos.staking.v1beta1
|
|
536
|
+
* @see proto type: cosmos.staking.v1beta1.MsgEditValidatorResponse
|
|
537
|
+
*/
|
|
410
538
|
export declare const MsgEditValidatorResponse: {
|
|
411
539
|
typeUrl: string;
|
|
412
540
|
aminoType: string;
|
|
@@ -421,6 +549,13 @@ export declare const MsgEditValidatorResponse: {
|
|
|
421
549
|
toProto(message: MsgEditValidatorResponse): Uint8Array;
|
|
422
550
|
toProtoMsg(message: MsgEditValidatorResponse): MsgEditValidatorResponseProtoMsg;
|
|
423
551
|
};
|
|
552
|
+
/**
|
|
553
|
+
* MsgDelegate defines a SDK message for performing a delegation of coins
|
|
554
|
+
* from a delegator to a validator.
|
|
555
|
+
* @name MsgDelegate
|
|
556
|
+
* @package cosmos.staking.v1beta1
|
|
557
|
+
* @see proto type: cosmos.staking.v1beta1.MsgDelegate
|
|
558
|
+
*/
|
|
424
559
|
export declare const MsgDelegate: {
|
|
425
560
|
typeUrl: string;
|
|
426
561
|
aminoType: string;
|
|
@@ -435,6 +570,12 @@ export declare const MsgDelegate: {
|
|
|
435
570
|
toProto(message: MsgDelegate): Uint8Array;
|
|
436
571
|
toProtoMsg(message: MsgDelegate): MsgDelegateProtoMsg;
|
|
437
572
|
};
|
|
573
|
+
/**
|
|
574
|
+
* MsgDelegateResponse defines the Msg/Delegate response type.
|
|
575
|
+
* @name MsgDelegateResponse
|
|
576
|
+
* @package cosmos.staking.v1beta1
|
|
577
|
+
* @see proto type: cosmos.staking.v1beta1.MsgDelegateResponse
|
|
578
|
+
*/
|
|
438
579
|
export declare const MsgDelegateResponse: {
|
|
439
580
|
typeUrl: string;
|
|
440
581
|
aminoType: string;
|
|
@@ -449,6 +590,13 @@ export declare const MsgDelegateResponse: {
|
|
|
449
590
|
toProto(message: MsgDelegateResponse): Uint8Array;
|
|
450
591
|
toProtoMsg(message: MsgDelegateResponse): MsgDelegateResponseProtoMsg;
|
|
451
592
|
};
|
|
593
|
+
/**
|
|
594
|
+
* MsgBeginRedelegate defines a SDK message for performing a redelegation
|
|
595
|
+
* of coins from a delegator and source validator to a destination validator.
|
|
596
|
+
* @name MsgBeginRedelegate
|
|
597
|
+
* @package cosmos.staking.v1beta1
|
|
598
|
+
* @see proto type: cosmos.staking.v1beta1.MsgBeginRedelegate
|
|
599
|
+
*/
|
|
452
600
|
export declare const MsgBeginRedelegate: {
|
|
453
601
|
typeUrl: string;
|
|
454
602
|
aminoType: string;
|
|
@@ -463,6 +611,12 @@ export declare const MsgBeginRedelegate: {
|
|
|
463
611
|
toProto(message: MsgBeginRedelegate): Uint8Array;
|
|
464
612
|
toProtoMsg(message: MsgBeginRedelegate): MsgBeginRedelegateProtoMsg;
|
|
465
613
|
};
|
|
614
|
+
/**
|
|
615
|
+
* MsgBeginRedelegateResponse defines the Msg/BeginRedelegate response type.
|
|
616
|
+
* @name MsgBeginRedelegateResponse
|
|
617
|
+
* @package cosmos.staking.v1beta1
|
|
618
|
+
* @see proto type: cosmos.staking.v1beta1.MsgBeginRedelegateResponse
|
|
619
|
+
*/
|
|
466
620
|
export declare const MsgBeginRedelegateResponse: {
|
|
467
621
|
typeUrl: string;
|
|
468
622
|
aminoType: string;
|
|
@@ -477,6 +631,13 @@ export declare const MsgBeginRedelegateResponse: {
|
|
|
477
631
|
toProto(message: MsgBeginRedelegateResponse): Uint8Array;
|
|
478
632
|
toProtoMsg(message: MsgBeginRedelegateResponse): MsgBeginRedelegateResponseProtoMsg;
|
|
479
633
|
};
|
|
634
|
+
/**
|
|
635
|
+
* MsgUndelegate defines a SDK message for performing an undelegation from a
|
|
636
|
+
* delegate and a validator.
|
|
637
|
+
* @name MsgUndelegate
|
|
638
|
+
* @package cosmos.staking.v1beta1
|
|
639
|
+
* @see proto type: cosmos.staking.v1beta1.MsgUndelegate
|
|
640
|
+
*/
|
|
480
641
|
export declare const MsgUndelegate: {
|
|
481
642
|
typeUrl: string;
|
|
482
643
|
aminoType: string;
|
|
@@ -491,6 +652,12 @@ export declare const MsgUndelegate: {
|
|
|
491
652
|
toProto(message: MsgUndelegate): Uint8Array;
|
|
492
653
|
toProtoMsg(message: MsgUndelegate): MsgUndelegateProtoMsg;
|
|
493
654
|
};
|
|
655
|
+
/**
|
|
656
|
+
* MsgUndelegateResponse defines the Msg/Undelegate response type.
|
|
657
|
+
* @name MsgUndelegateResponse
|
|
658
|
+
* @package cosmos.staking.v1beta1
|
|
659
|
+
* @see proto type: cosmos.staking.v1beta1.MsgUndelegateResponse
|
|
660
|
+
*/
|
|
494
661
|
export declare const MsgUndelegateResponse: {
|
|
495
662
|
typeUrl: string;
|
|
496
663
|
aminoType: string;
|
|
@@ -505,6 +672,12 @@ export declare const MsgUndelegateResponse: {
|
|
|
505
672
|
toProto(message: MsgUndelegateResponse): Uint8Array;
|
|
506
673
|
toProtoMsg(message: MsgUndelegateResponse): MsgUndelegateResponseProtoMsg;
|
|
507
674
|
};
|
|
675
|
+
/**
|
|
676
|
+
* MsgCancelUnbondingDelegation defines the SDK message for performing a cancel unbonding delegation for delegator
|
|
677
|
+
* @name MsgCancelUnbondingDelegation
|
|
678
|
+
* @package cosmos.staking.v1beta1
|
|
679
|
+
* @see proto type: cosmos.staking.v1beta1.MsgCancelUnbondingDelegation
|
|
680
|
+
*/
|
|
508
681
|
export declare const MsgCancelUnbondingDelegation: {
|
|
509
682
|
typeUrl: string;
|
|
510
683
|
aminoType: string;
|
|
@@ -519,6 +692,12 @@ export declare const MsgCancelUnbondingDelegation: {
|
|
|
519
692
|
toProto(message: MsgCancelUnbondingDelegation): Uint8Array;
|
|
520
693
|
toProtoMsg(message: MsgCancelUnbondingDelegation): MsgCancelUnbondingDelegationProtoMsg;
|
|
521
694
|
};
|
|
695
|
+
/**
|
|
696
|
+
* MsgCancelUnbondingDelegationResponse
|
|
697
|
+
* @name MsgCancelUnbondingDelegationResponse
|
|
698
|
+
* @package cosmos.staking.v1beta1
|
|
699
|
+
* @see proto type: cosmos.staking.v1beta1.MsgCancelUnbondingDelegationResponse
|
|
700
|
+
*/
|
|
522
701
|
export declare const MsgCancelUnbondingDelegationResponse: {
|
|
523
702
|
typeUrl: string;
|
|
524
703
|
aminoType: string;
|
|
@@ -533,6 +712,12 @@ export declare const MsgCancelUnbondingDelegationResponse: {
|
|
|
533
712
|
toProto(message: MsgCancelUnbondingDelegationResponse): Uint8Array;
|
|
534
713
|
toProtoMsg(message: MsgCancelUnbondingDelegationResponse): MsgCancelUnbondingDelegationResponseProtoMsg;
|
|
535
714
|
};
|
|
715
|
+
/**
|
|
716
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
717
|
+
* @name MsgUpdateParams
|
|
718
|
+
* @package cosmos.staking.v1beta1
|
|
719
|
+
* @see proto type: cosmos.staking.v1beta1.MsgUpdateParams
|
|
720
|
+
*/
|
|
536
721
|
export declare const MsgUpdateParams: {
|
|
537
722
|
typeUrl: string;
|
|
538
723
|
aminoType: string;
|
|
@@ -547,6 +732,13 @@ export declare const MsgUpdateParams: {
|
|
|
547
732
|
toProto(message: MsgUpdateParams): Uint8Array;
|
|
548
733
|
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
549
734
|
};
|
|
735
|
+
/**
|
|
736
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
737
|
+
* MsgUpdateParams message.
|
|
738
|
+
* @name MsgUpdateParamsResponse
|
|
739
|
+
* @package cosmos.staking.v1beta1
|
|
740
|
+
* @see proto type: cosmos.staking.v1beta1.MsgUpdateParamsResponse
|
|
741
|
+
*/
|
|
550
742
|
export declare const MsgUpdateParamsResponse: {
|
|
551
743
|
typeUrl: string;
|
|
552
744
|
aminoType: string;
|