@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
|
@@ -1,20 +1,35 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
2
2
|
import { DeepPartial } from "../../../helpers";
|
|
3
|
-
/**
|
|
3
|
+
/**
|
|
4
|
+
* QueryGetCountRequest defines the request type for querying x/mock count.
|
|
5
|
+
* @name QueryGetCountRequest
|
|
6
|
+
* @package cosmos.counter.v1
|
|
7
|
+
* @see proto type: cosmos.counter.v1.QueryGetCountRequest
|
|
8
|
+
*/
|
|
4
9
|
export interface QueryGetCountRequest {
|
|
5
10
|
}
|
|
6
11
|
export interface QueryGetCountRequestProtoMsg {
|
|
7
12
|
typeUrl: "/cosmos.counter.v1.QueryGetCountRequest";
|
|
8
13
|
value: Uint8Array;
|
|
9
14
|
}
|
|
10
|
-
/**
|
|
15
|
+
/**
|
|
16
|
+
* QueryGetCountRequest defines the request type for querying x/mock count.
|
|
17
|
+
* @name QueryGetCountRequestAmino
|
|
18
|
+
* @package cosmos.counter.v1
|
|
19
|
+
* @see proto type: cosmos.counter.v1.QueryGetCountRequest
|
|
20
|
+
*/
|
|
11
21
|
export interface QueryGetCountRequestAmino {
|
|
12
22
|
}
|
|
13
23
|
export interface QueryGetCountRequestAminoMsg {
|
|
14
24
|
type: "cosmos-sdk/QueryGetCountRequest";
|
|
15
25
|
value: QueryGetCountRequestAmino;
|
|
16
26
|
}
|
|
17
|
-
/**
|
|
27
|
+
/**
|
|
28
|
+
* QueryGetCountResponse defines the response type for querying x/mock count.
|
|
29
|
+
* @name QueryGetCountResponse
|
|
30
|
+
* @package cosmos.counter.v1
|
|
31
|
+
* @see proto type: cosmos.counter.v1.QueryGetCountResponse
|
|
32
|
+
*/
|
|
18
33
|
export interface QueryGetCountResponse {
|
|
19
34
|
totalCount: bigint;
|
|
20
35
|
}
|
|
@@ -22,7 +37,12 @@ export interface QueryGetCountResponseProtoMsg {
|
|
|
22
37
|
typeUrl: "/cosmos.counter.v1.QueryGetCountResponse";
|
|
23
38
|
value: Uint8Array;
|
|
24
39
|
}
|
|
25
|
-
/**
|
|
40
|
+
/**
|
|
41
|
+
* QueryGetCountResponse defines the response type for querying x/mock count.
|
|
42
|
+
* @name QueryGetCountResponseAmino
|
|
43
|
+
* @package cosmos.counter.v1
|
|
44
|
+
* @see proto type: cosmos.counter.v1.QueryGetCountResponse
|
|
45
|
+
*/
|
|
26
46
|
export interface QueryGetCountResponseAmino {
|
|
27
47
|
total_count?: string;
|
|
28
48
|
}
|
|
@@ -30,6 +50,12 @@ export interface QueryGetCountResponseAminoMsg {
|
|
|
30
50
|
type: "cosmos-sdk/QueryGetCountResponse";
|
|
31
51
|
value: QueryGetCountResponseAmino;
|
|
32
52
|
}
|
|
53
|
+
/**
|
|
54
|
+
* QueryGetCountRequest defines the request type for querying x/mock count.
|
|
55
|
+
* @name QueryGetCountRequest
|
|
56
|
+
* @package cosmos.counter.v1
|
|
57
|
+
* @see proto type: cosmos.counter.v1.QueryGetCountRequest
|
|
58
|
+
*/
|
|
33
59
|
export declare const QueryGetCountRequest: {
|
|
34
60
|
typeUrl: string;
|
|
35
61
|
aminoType: string;
|
|
@@ -44,6 +70,12 @@ export declare const QueryGetCountRequest: {
|
|
|
44
70
|
toProto(message: QueryGetCountRequest): Uint8Array;
|
|
45
71
|
toProtoMsg(message: QueryGetCountRequest): QueryGetCountRequestProtoMsg;
|
|
46
72
|
};
|
|
73
|
+
/**
|
|
74
|
+
* QueryGetCountResponse defines the response type for querying x/mock count.
|
|
75
|
+
* @name QueryGetCountResponse
|
|
76
|
+
* @package cosmos.counter.v1
|
|
77
|
+
* @see proto type: cosmos.counter.v1.QueryGetCountResponse
|
|
78
|
+
*/
|
|
47
79
|
export declare const QueryGetCountResponse: {
|
|
48
80
|
typeUrl: string;
|
|
49
81
|
aminoType: string;
|
|
@@ -6,6 +6,12 @@ const binary_1 = require("../../../binary");
|
|
|
6
6
|
function createBaseQueryGetCountRequest() {
|
|
7
7
|
return {};
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* QueryGetCountRequest defines the request type for querying x/mock count.
|
|
11
|
+
* @name QueryGetCountRequest
|
|
12
|
+
* @package cosmos.counter.v1
|
|
13
|
+
* @see proto type: cosmos.counter.v1.QueryGetCountRequest
|
|
14
|
+
*/
|
|
9
15
|
exports.QueryGetCountRequest = {
|
|
10
16
|
typeUrl: "/cosmos.counter.v1.QueryGetCountRequest",
|
|
11
17
|
aminoType: "cosmos-sdk/QueryGetCountRequest",
|
|
@@ -65,6 +71,12 @@ function createBaseQueryGetCountResponse() {
|
|
|
65
71
|
totalCount: BigInt(0)
|
|
66
72
|
};
|
|
67
73
|
}
|
|
74
|
+
/**
|
|
75
|
+
* QueryGetCountResponse defines the response type for querying x/mock count.
|
|
76
|
+
* @name QueryGetCountResponse
|
|
77
|
+
* @package cosmos.counter.v1
|
|
78
|
+
* @see proto type: cosmos.counter.v1.QueryGetCountResponse
|
|
79
|
+
*/
|
|
68
80
|
exports.QueryGetCountResponse = {
|
|
69
81
|
typeUrl: "/cosmos.counter.v1.QueryGetCountResponse",
|
|
70
82
|
aminoType: "cosmos-sdk/QueryGetCountResponse",
|
|
@@ -1,45 +1,83 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
2
2
|
import { DeepPartial } from "../../../helpers";
|
|
3
|
-
/**
|
|
3
|
+
/**
|
|
4
|
+
* MsgIncreaseCounter defines a count Msg service counter.
|
|
5
|
+
* @name MsgIncreaseCounter
|
|
6
|
+
* @package cosmos.counter.v1
|
|
7
|
+
* @see proto type: cosmos.counter.v1.MsgIncreaseCounter
|
|
8
|
+
*/
|
|
4
9
|
export interface MsgIncreaseCounter {
|
|
5
|
-
/**
|
|
10
|
+
/**
|
|
11
|
+
* signer is the address that controls the module (defaults to x/gov unless overwritten).
|
|
12
|
+
*/
|
|
6
13
|
signer: string;
|
|
7
|
-
/**
|
|
14
|
+
/**
|
|
15
|
+
* count is the number of times to increment the counter.
|
|
16
|
+
*/
|
|
8
17
|
count: bigint;
|
|
9
18
|
}
|
|
10
19
|
export interface MsgIncreaseCounterProtoMsg {
|
|
11
20
|
typeUrl: "/cosmos.counter.v1.MsgIncreaseCounter";
|
|
12
21
|
value: Uint8Array;
|
|
13
22
|
}
|
|
14
|
-
/**
|
|
23
|
+
/**
|
|
24
|
+
* MsgIncreaseCounter defines a count Msg service counter.
|
|
25
|
+
* @name MsgIncreaseCounterAmino
|
|
26
|
+
* @package cosmos.counter.v1
|
|
27
|
+
* @see proto type: cosmos.counter.v1.MsgIncreaseCounter
|
|
28
|
+
*/
|
|
15
29
|
export interface MsgIncreaseCounterAmino {
|
|
16
|
-
/**
|
|
30
|
+
/**
|
|
31
|
+
* signer is the address that controls the module (defaults to x/gov unless overwritten).
|
|
32
|
+
*/
|
|
17
33
|
signer?: string;
|
|
18
|
-
/**
|
|
34
|
+
/**
|
|
35
|
+
* count is the number of times to increment the counter.
|
|
36
|
+
*/
|
|
19
37
|
count?: string;
|
|
20
38
|
}
|
|
21
39
|
export interface MsgIncreaseCounterAminoMsg {
|
|
22
40
|
type: "cosmos-sdk/increase_counter";
|
|
23
41
|
value: MsgIncreaseCounterAmino;
|
|
24
42
|
}
|
|
25
|
-
/**
|
|
43
|
+
/**
|
|
44
|
+
* MsgIncreaseCountResponse is the Msg/Counter response type.
|
|
45
|
+
* @name MsgIncreaseCountResponse
|
|
46
|
+
* @package cosmos.counter.v1
|
|
47
|
+
* @see proto type: cosmos.counter.v1.MsgIncreaseCountResponse
|
|
48
|
+
*/
|
|
26
49
|
export interface MsgIncreaseCountResponse {
|
|
27
|
-
/**
|
|
50
|
+
/**
|
|
51
|
+
* new_count is the number of times the counter was incremented.
|
|
52
|
+
*/
|
|
28
53
|
newCount: bigint;
|
|
29
54
|
}
|
|
30
55
|
export interface MsgIncreaseCountResponseProtoMsg {
|
|
31
56
|
typeUrl: "/cosmos.counter.v1.MsgIncreaseCountResponse";
|
|
32
57
|
value: Uint8Array;
|
|
33
58
|
}
|
|
34
|
-
/**
|
|
59
|
+
/**
|
|
60
|
+
* MsgIncreaseCountResponse is the Msg/Counter response type.
|
|
61
|
+
* @name MsgIncreaseCountResponseAmino
|
|
62
|
+
* @package cosmos.counter.v1
|
|
63
|
+
* @see proto type: cosmos.counter.v1.MsgIncreaseCountResponse
|
|
64
|
+
*/
|
|
35
65
|
export interface MsgIncreaseCountResponseAmino {
|
|
36
|
-
/**
|
|
66
|
+
/**
|
|
67
|
+
* new_count is the number of times the counter was incremented.
|
|
68
|
+
*/
|
|
37
69
|
new_count?: string;
|
|
38
70
|
}
|
|
39
71
|
export interface MsgIncreaseCountResponseAminoMsg {
|
|
40
72
|
type: "cosmos-sdk/MsgIncreaseCountResponse";
|
|
41
73
|
value: MsgIncreaseCountResponseAmino;
|
|
42
74
|
}
|
|
75
|
+
/**
|
|
76
|
+
* MsgIncreaseCounter defines a count Msg service counter.
|
|
77
|
+
* @name MsgIncreaseCounter
|
|
78
|
+
* @package cosmos.counter.v1
|
|
79
|
+
* @see proto type: cosmos.counter.v1.MsgIncreaseCounter
|
|
80
|
+
*/
|
|
43
81
|
export declare const MsgIncreaseCounter: {
|
|
44
82
|
typeUrl: string;
|
|
45
83
|
aminoType: string;
|
|
@@ -54,6 +92,12 @@ export declare const MsgIncreaseCounter: {
|
|
|
54
92
|
toProto(message: MsgIncreaseCounter): Uint8Array;
|
|
55
93
|
toProtoMsg(message: MsgIncreaseCounter): MsgIncreaseCounterProtoMsg;
|
|
56
94
|
};
|
|
95
|
+
/**
|
|
96
|
+
* MsgIncreaseCountResponse is the Msg/Counter response type.
|
|
97
|
+
* @name MsgIncreaseCountResponse
|
|
98
|
+
* @package cosmos.counter.v1
|
|
99
|
+
* @see proto type: cosmos.counter.v1.MsgIncreaseCountResponse
|
|
100
|
+
*/
|
|
57
101
|
export declare const MsgIncreaseCountResponse: {
|
|
58
102
|
typeUrl: string;
|
|
59
103
|
aminoType: string;
|
package/cosmos/counter/v1/tx.js
CHANGED
|
@@ -9,6 +9,12 @@ function createBaseMsgIncreaseCounter() {
|
|
|
9
9
|
count: BigInt(0)
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* MsgIncreaseCounter defines a count Msg service counter.
|
|
14
|
+
* @name MsgIncreaseCounter
|
|
15
|
+
* @package cosmos.counter.v1
|
|
16
|
+
* @see proto type: cosmos.counter.v1.MsgIncreaseCounter
|
|
17
|
+
*/
|
|
12
18
|
exports.MsgIncreaseCounter = {
|
|
13
19
|
typeUrl: "/cosmos.counter.v1.MsgIncreaseCounter",
|
|
14
20
|
aminoType: "cosmos-sdk/increase_counter",
|
|
@@ -90,6 +96,12 @@ function createBaseMsgIncreaseCountResponse() {
|
|
|
90
96
|
newCount: BigInt(0)
|
|
91
97
|
};
|
|
92
98
|
}
|
|
99
|
+
/**
|
|
100
|
+
* MsgIncreaseCountResponse is the Msg/Counter response type.
|
|
101
|
+
* @name MsgIncreaseCountResponse
|
|
102
|
+
* @package cosmos.counter.v1
|
|
103
|
+
* @see proto type: cosmos.counter.v1.MsgIncreaseCountResponse
|
|
104
|
+
*/
|
|
93
105
|
exports.MsgIncreaseCountResponse = {
|
|
94
106
|
typeUrl: "/cosmos.counter.v1.MsgIncreaseCountResponse",
|
|
95
107
|
aminoType: "cosmos-sdk/MsgIncreaseCountResponse",
|
|
@@ -1,27 +1,51 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
2
2
|
import { DeepPartial } from "../../../../helpers";
|
|
3
|
-
/**
|
|
3
|
+
/**
|
|
4
|
+
* Module is the config object of the crisis module.
|
|
5
|
+
* @name Module
|
|
6
|
+
* @package cosmos.crisis.module.v1
|
|
7
|
+
* @see proto type: cosmos.crisis.module.v1.Module
|
|
8
|
+
*/
|
|
4
9
|
export interface Module {
|
|
5
|
-
/**
|
|
10
|
+
/**
|
|
11
|
+
* fee_collector_name is the name of the FeeCollector ModuleAccount.
|
|
12
|
+
*/
|
|
6
13
|
feeCollectorName: string;
|
|
7
|
-
/**
|
|
14
|
+
/**
|
|
15
|
+
* authority defines the custom module authority. If not set, defaults to the governance module.
|
|
16
|
+
*/
|
|
8
17
|
authority: string;
|
|
9
18
|
}
|
|
10
19
|
export interface ModuleProtoMsg {
|
|
11
20
|
typeUrl: "/cosmos.crisis.module.v1.Module";
|
|
12
21
|
value: Uint8Array;
|
|
13
22
|
}
|
|
14
|
-
/**
|
|
23
|
+
/**
|
|
24
|
+
* Module is the config object of the crisis module.
|
|
25
|
+
* @name ModuleAmino
|
|
26
|
+
* @package cosmos.crisis.module.v1
|
|
27
|
+
* @see proto type: cosmos.crisis.module.v1.Module
|
|
28
|
+
*/
|
|
15
29
|
export interface ModuleAmino {
|
|
16
|
-
/**
|
|
30
|
+
/**
|
|
31
|
+
* fee_collector_name is the name of the FeeCollector ModuleAccount.
|
|
32
|
+
*/
|
|
17
33
|
fee_collector_name?: string;
|
|
18
|
-
/**
|
|
34
|
+
/**
|
|
35
|
+
* authority defines the custom module authority. If not set, defaults to the governance module.
|
|
36
|
+
*/
|
|
19
37
|
authority?: string;
|
|
20
38
|
}
|
|
21
39
|
export interface ModuleAminoMsg {
|
|
22
40
|
type: "cosmos-sdk/Module";
|
|
23
41
|
value: ModuleAmino;
|
|
24
42
|
}
|
|
43
|
+
/**
|
|
44
|
+
* Module is the config object of the crisis module.
|
|
45
|
+
* @name Module
|
|
46
|
+
* @package cosmos.crisis.module.v1
|
|
47
|
+
* @see proto type: cosmos.crisis.module.v1.Module
|
|
48
|
+
*/
|
|
25
49
|
export declare const Module: {
|
|
26
50
|
typeUrl: string;
|
|
27
51
|
aminoType: string;
|
|
@@ -9,6 +9,12 @@ function createBaseModule() {
|
|
|
9
9
|
authority: ""
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* Module is the config object of the crisis module.
|
|
14
|
+
* @name Module
|
|
15
|
+
* @package cosmos.crisis.module.v1
|
|
16
|
+
* @see proto type: cosmos.crisis.module.v1.Module
|
|
17
|
+
*/
|
|
12
18
|
exports.Module = {
|
|
13
19
|
typeUrl: "/cosmos.crisis.module.v1.Module",
|
|
14
20
|
aminoType: "cosmos-sdk/Module",
|
|
@@ -6,6 +6,9 @@ import { DeepPartial } from "../../../helpers";
|
|
|
6
6
|
* It must not be used in a non Tendermint key context because it doesn't implement
|
|
7
7
|
* ADR-28. Nevertheless, you will like to use ed25519 in app user level
|
|
8
8
|
* then you must create a new proto message and follow ADR-28 for Address construction.
|
|
9
|
+
* @name PubKey
|
|
10
|
+
* @package cosmos.crypto.ed25519
|
|
11
|
+
* @see proto type: cosmos.crypto.ed25519.PubKey
|
|
9
12
|
*/
|
|
10
13
|
export interface PubKey {
|
|
11
14
|
key: Uint8Array;
|
|
@@ -20,6 +23,9 @@ export interface PubKeyProtoMsg {
|
|
|
20
23
|
* It must not be used in a non Tendermint key context because it doesn't implement
|
|
21
24
|
* ADR-28. Nevertheless, you will like to use ed25519 in app user level
|
|
22
25
|
* then you must create a new proto message and follow ADR-28 for Address construction.
|
|
26
|
+
* @name PubKeyAmino
|
|
27
|
+
* @package cosmos.crypto.ed25519
|
|
28
|
+
* @see proto type: cosmos.crypto.ed25519.PubKey
|
|
23
29
|
*/
|
|
24
30
|
export interface PubKeyAmino {
|
|
25
31
|
key?: string;
|
|
@@ -31,6 +37,9 @@ export interface PubKeyAminoMsg {
|
|
|
31
37
|
/**
|
|
32
38
|
* PrivKey defines a ed25519 private key.
|
|
33
39
|
* NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context.
|
|
40
|
+
* @name PrivKey
|
|
41
|
+
* @package cosmos.crypto.ed25519
|
|
42
|
+
* @see proto type: cosmos.crypto.ed25519.PrivKey
|
|
34
43
|
*/
|
|
35
44
|
export interface PrivKey {
|
|
36
45
|
key: Uint8Array;
|
|
@@ -42,6 +51,9 @@ export interface PrivKeyProtoMsg {
|
|
|
42
51
|
/**
|
|
43
52
|
* PrivKey defines a ed25519 private key.
|
|
44
53
|
* NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context.
|
|
54
|
+
* @name PrivKeyAmino
|
|
55
|
+
* @package cosmos.crypto.ed25519
|
|
56
|
+
* @see proto type: cosmos.crypto.ed25519.PrivKey
|
|
45
57
|
*/
|
|
46
58
|
export interface PrivKeyAmino {
|
|
47
59
|
key?: string;
|
|
@@ -50,6 +62,16 @@ export interface PrivKeyAminoMsg {
|
|
|
50
62
|
type: "tendermint/PrivKeyEd25519";
|
|
51
63
|
value: PrivKeyAmino;
|
|
52
64
|
}
|
|
65
|
+
/**
|
|
66
|
+
* PubKey is an ed25519 public key for handling Tendermint keys in SDK.
|
|
67
|
+
* It's needed for Any serialization and SDK compatibility.
|
|
68
|
+
* It must not be used in a non Tendermint key context because it doesn't implement
|
|
69
|
+
* ADR-28. Nevertheless, you will like to use ed25519 in app user level
|
|
70
|
+
* then you must create a new proto message and follow ADR-28 for Address construction.
|
|
71
|
+
* @name PubKey
|
|
72
|
+
* @package cosmos.crypto.ed25519
|
|
73
|
+
* @see proto type: cosmos.crypto.ed25519.PubKey
|
|
74
|
+
*/
|
|
53
75
|
export declare const PubKey: {
|
|
54
76
|
typeUrl: string;
|
|
55
77
|
aminoType: string;
|
|
@@ -64,6 +86,13 @@ export declare const PubKey: {
|
|
|
64
86
|
toProto(message: PubKey): Uint8Array;
|
|
65
87
|
toProtoMsg(message: PubKey): PubKeyProtoMsg;
|
|
66
88
|
};
|
|
89
|
+
/**
|
|
90
|
+
* PrivKey defines a ed25519 private key.
|
|
91
|
+
* NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context.
|
|
92
|
+
* @name PrivKey
|
|
93
|
+
* @package cosmos.crypto.ed25519
|
|
94
|
+
* @see proto type: cosmos.crypto.ed25519.PrivKey
|
|
95
|
+
*/
|
|
67
96
|
export declare const PrivKey: {
|
|
68
97
|
typeUrl: string;
|
|
69
98
|
aminoType: string;
|
|
@@ -9,6 +9,16 @@ function createBasePubKey() {
|
|
|
9
9
|
key: new Uint8Array()
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* PubKey is an ed25519 public key for handling Tendermint keys in SDK.
|
|
14
|
+
* It's needed for Any serialization and SDK compatibility.
|
|
15
|
+
* It must not be used in a non Tendermint key context because it doesn't implement
|
|
16
|
+
* ADR-28. Nevertheless, you will like to use ed25519 in app user level
|
|
17
|
+
* then you must create a new proto message and follow ADR-28 for Address construction.
|
|
18
|
+
* @name PubKey
|
|
19
|
+
* @package cosmos.crypto.ed25519
|
|
20
|
+
* @see proto type: cosmos.crypto.ed25519.PubKey
|
|
21
|
+
*/
|
|
12
22
|
exports.PubKey = {
|
|
13
23
|
typeUrl: "/cosmos.crypto.ed25519.PubKey",
|
|
14
24
|
aminoType: "tendermint/PubKeyEd25519",
|
|
@@ -79,6 +89,13 @@ function createBasePrivKey() {
|
|
|
79
89
|
key: new Uint8Array()
|
|
80
90
|
};
|
|
81
91
|
}
|
|
92
|
+
/**
|
|
93
|
+
* PrivKey defines a ed25519 private key.
|
|
94
|
+
* NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context.
|
|
95
|
+
* @name PrivKey
|
|
96
|
+
* @package cosmos.crypto.ed25519
|
|
97
|
+
* @see proto type: cosmos.crypto.ed25519.PrivKey
|
|
98
|
+
*/
|
|
82
99
|
exports.PrivKey = {
|
|
83
100
|
typeUrl: "/cosmos.crypto.ed25519.PrivKey",
|
|
84
101
|
aminoType: "tendermint/PrivKeyEd25519",
|
|
@@ -1,45 +1,77 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
2
2
|
import { DeepPartial } from "../../../../helpers";
|
|
3
|
-
/**
|
|
3
|
+
/**
|
|
4
|
+
* BIP44Params is used as path field in ledger item in Record.
|
|
5
|
+
* @name BIP44Params
|
|
6
|
+
* @package cosmos.crypto.hd.v1
|
|
7
|
+
* @see proto type: cosmos.crypto.hd.v1.BIP44Params
|
|
8
|
+
*/
|
|
4
9
|
export interface BIP44Params {
|
|
5
|
-
/**
|
|
10
|
+
/**
|
|
11
|
+
* purpose is a constant set to 44' (or 0x8000002C) following the BIP43 recommendation
|
|
12
|
+
*/
|
|
6
13
|
purpose: number;
|
|
7
|
-
/**
|
|
14
|
+
/**
|
|
15
|
+
* coin_type is a constant that improves privacy
|
|
16
|
+
*/
|
|
8
17
|
coinType: number;
|
|
9
|
-
/**
|
|
18
|
+
/**
|
|
19
|
+
* account splits the key space into independent user identities
|
|
20
|
+
*/
|
|
10
21
|
account: number;
|
|
11
22
|
/**
|
|
12
23
|
* change is a constant used for public derivation. Constant 0 is used for external chain and constant 1 for internal
|
|
13
24
|
* chain.
|
|
14
25
|
*/
|
|
15
26
|
change: boolean;
|
|
16
|
-
/**
|
|
27
|
+
/**
|
|
28
|
+
* address_index is used as child index in BIP32 derivation
|
|
29
|
+
*/
|
|
17
30
|
addressIndex: number;
|
|
18
31
|
}
|
|
19
32
|
export interface BIP44ParamsProtoMsg {
|
|
20
33
|
typeUrl: "/cosmos.crypto.hd.v1.BIP44Params";
|
|
21
34
|
value: Uint8Array;
|
|
22
35
|
}
|
|
23
|
-
/**
|
|
36
|
+
/**
|
|
37
|
+
* BIP44Params is used as path field in ledger item in Record.
|
|
38
|
+
* @name BIP44ParamsAmino
|
|
39
|
+
* @package cosmos.crypto.hd.v1
|
|
40
|
+
* @see proto type: cosmos.crypto.hd.v1.BIP44Params
|
|
41
|
+
*/
|
|
24
42
|
export interface BIP44ParamsAmino {
|
|
25
|
-
/**
|
|
43
|
+
/**
|
|
44
|
+
* purpose is a constant set to 44' (or 0x8000002C) following the BIP43 recommendation
|
|
45
|
+
*/
|
|
26
46
|
purpose?: number;
|
|
27
|
-
/**
|
|
47
|
+
/**
|
|
48
|
+
* coin_type is a constant that improves privacy
|
|
49
|
+
*/
|
|
28
50
|
coin_type?: number;
|
|
29
|
-
/**
|
|
51
|
+
/**
|
|
52
|
+
* account splits the key space into independent user identities
|
|
53
|
+
*/
|
|
30
54
|
account?: number;
|
|
31
55
|
/**
|
|
32
56
|
* change is a constant used for public derivation. Constant 0 is used for external chain and constant 1 for internal
|
|
33
57
|
* chain.
|
|
34
58
|
*/
|
|
35
59
|
change?: boolean;
|
|
36
|
-
/**
|
|
60
|
+
/**
|
|
61
|
+
* address_index is used as child index in BIP32 derivation
|
|
62
|
+
*/
|
|
37
63
|
address_index?: number;
|
|
38
64
|
}
|
|
39
65
|
export interface BIP44ParamsAminoMsg {
|
|
40
66
|
type: "crypto/keys/hd/BIP44Params";
|
|
41
67
|
value: BIP44ParamsAmino;
|
|
42
68
|
}
|
|
69
|
+
/**
|
|
70
|
+
* BIP44Params is used as path field in ledger item in Record.
|
|
71
|
+
* @name BIP44Params
|
|
72
|
+
* @package cosmos.crypto.hd.v1
|
|
73
|
+
* @see proto type: cosmos.crypto.hd.v1.BIP44Params
|
|
74
|
+
*/
|
|
43
75
|
export declare const BIP44Params: {
|
|
44
76
|
typeUrl: string;
|
|
45
77
|
aminoType: string;
|
|
@@ -12,6 +12,12 @@ function createBaseBIP44Params() {
|
|
|
12
12
|
addressIndex: 0
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* BIP44Params is used as path field in ledger item in Record.
|
|
17
|
+
* @name BIP44Params
|
|
18
|
+
* @package cosmos.crypto.hd.v1
|
|
19
|
+
* @see proto type: cosmos.crypto.hd.v1.BIP44Params
|
|
20
|
+
*/
|
|
15
21
|
exports.BIP44Params = {
|
|
16
22
|
typeUrl: "/cosmos.crypto.hd.v1.BIP44Params",
|
|
17
23
|
aminoType: "crypto/keys/hd/BIP44Params",
|