@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
|
@@ -2,38 +2,72 @@ import { Any, AnyAmino } from "../../../../google/protobuf/any";
|
|
|
2
2
|
import { BIP44Params, BIP44ParamsAmino } from "../../hd/v1/hd";
|
|
3
3
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
4
4
|
import { DeepPartial } from "../../../../helpers";
|
|
5
|
-
/**
|
|
5
|
+
/**
|
|
6
|
+
* Record is used for representing a key in the keyring.
|
|
7
|
+
* @name Record
|
|
8
|
+
* @package cosmos.crypto.keyring.v1
|
|
9
|
+
* @see proto type: cosmos.crypto.keyring.v1.Record
|
|
10
|
+
*/
|
|
6
11
|
export interface Record {
|
|
7
|
-
/**
|
|
12
|
+
/**
|
|
13
|
+
* name represents a name of Record
|
|
14
|
+
*/
|
|
8
15
|
name: string;
|
|
9
|
-
/**
|
|
16
|
+
/**
|
|
17
|
+
* pub_key represents a public key in any format
|
|
18
|
+
*/
|
|
10
19
|
pubKey?: Any;
|
|
11
|
-
/**
|
|
20
|
+
/**
|
|
21
|
+
* local stores the private key locally.
|
|
22
|
+
*/
|
|
12
23
|
local?: Record_Local;
|
|
13
|
-
/**
|
|
24
|
+
/**
|
|
25
|
+
* ledger stores the information about a Ledger key.
|
|
26
|
+
*/
|
|
14
27
|
ledger?: Record_Ledger;
|
|
15
|
-
/**
|
|
28
|
+
/**
|
|
29
|
+
* Multi does not store any other information.
|
|
30
|
+
*/
|
|
16
31
|
multi?: Record_Multi;
|
|
17
|
-
/**
|
|
32
|
+
/**
|
|
33
|
+
* Offline does not store any other information.
|
|
34
|
+
*/
|
|
18
35
|
offline?: Record_Offline;
|
|
19
36
|
}
|
|
20
37
|
export interface RecordProtoMsg {
|
|
21
38
|
typeUrl: "/cosmos.crypto.keyring.v1.Record";
|
|
22
39
|
value: Uint8Array;
|
|
23
40
|
}
|
|
24
|
-
/**
|
|
41
|
+
/**
|
|
42
|
+
* Record is used for representing a key in the keyring.
|
|
43
|
+
* @name RecordAmino
|
|
44
|
+
* @package cosmos.crypto.keyring.v1
|
|
45
|
+
* @see proto type: cosmos.crypto.keyring.v1.Record
|
|
46
|
+
*/
|
|
25
47
|
export interface RecordAmino {
|
|
26
|
-
/**
|
|
48
|
+
/**
|
|
49
|
+
* name represents a name of Record
|
|
50
|
+
*/
|
|
27
51
|
name?: string;
|
|
28
|
-
/**
|
|
52
|
+
/**
|
|
53
|
+
* pub_key represents a public key in any format
|
|
54
|
+
*/
|
|
29
55
|
pub_key?: AnyAmino;
|
|
30
|
-
/**
|
|
56
|
+
/**
|
|
57
|
+
* local stores the private key locally.
|
|
58
|
+
*/
|
|
31
59
|
local?: Record_LocalAmino;
|
|
32
|
-
/**
|
|
60
|
+
/**
|
|
61
|
+
* ledger stores the information about a Ledger key.
|
|
62
|
+
*/
|
|
33
63
|
ledger?: Record_LedgerAmino;
|
|
34
|
-
/**
|
|
64
|
+
/**
|
|
65
|
+
* Multi does not store any other information.
|
|
66
|
+
*/
|
|
35
67
|
multi?: Record_MultiAmino;
|
|
36
|
-
/**
|
|
68
|
+
/**
|
|
69
|
+
* Offline does not store any other information.
|
|
70
|
+
*/
|
|
37
71
|
offline?: Record_OfflineAmino;
|
|
38
72
|
}
|
|
39
73
|
export interface RecordAminoMsg {
|
|
@@ -43,6 +77,9 @@ export interface RecordAminoMsg {
|
|
|
43
77
|
/**
|
|
44
78
|
* Item is a keyring item stored in a keyring backend.
|
|
45
79
|
* Local item
|
|
80
|
+
* @name Record_Local
|
|
81
|
+
* @package cosmos.crypto.keyring.v1
|
|
82
|
+
* @see proto type: cosmos.crypto.keyring.v1.Local
|
|
46
83
|
*/
|
|
47
84
|
export interface Record_Local {
|
|
48
85
|
privKey?: Any;
|
|
@@ -54,6 +91,9 @@ export interface Record_LocalProtoMsg {
|
|
|
54
91
|
/**
|
|
55
92
|
* Item is a keyring item stored in a keyring backend.
|
|
56
93
|
* Local item
|
|
94
|
+
* @name Record_LocalAmino
|
|
95
|
+
* @package cosmos.crypto.keyring.v1
|
|
96
|
+
* @see proto type: cosmos.crypto.keyring.v1.Record_Local
|
|
57
97
|
*/
|
|
58
98
|
export interface Record_LocalAmino {
|
|
59
99
|
priv_key?: AnyAmino;
|
|
@@ -62,7 +102,12 @@ export interface Record_LocalAminoMsg {
|
|
|
62
102
|
type: "cosmos-sdk/Local";
|
|
63
103
|
value: Record_LocalAmino;
|
|
64
104
|
}
|
|
65
|
-
/**
|
|
105
|
+
/**
|
|
106
|
+
* Ledger item
|
|
107
|
+
* @name Record_Ledger
|
|
108
|
+
* @package cosmos.crypto.keyring.v1
|
|
109
|
+
* @see proto type: cosmos.crypto.keyring.v1.Ledger
|
|
110
|
+
*/
|
|
66
111
|
export interface Record_Ledger {
|
|
67
112
|
path?: BIP44Params;
|
|
68
113
|
}
|
|
@@ -70,7 +115,12 @@ export interface Record_LedgerProtoMsg {
|
|
|
70
115
|
typeUrl: "/cosmos.crypto.keyring.v1.Ledger";
|
|
71
116
|
value: Uint8Array;
|
|
72
117
|
}
|
|
73
|
-
/**
|
|
118
|
+
/**
|
|
119
|
+
* Ledger item
|
|
120
|
+
* @name Record_LedgerAmino
|
|
121
|
+
* @package cosmos.crypto.keyring.v1
|
|
122
|
+
* @see proto type: cosmos.crypto.keyring.v1.Record_Ledger
|
|
123
|
+
*/
|
|
74
124
|
export interface Record_LedgerAmino {
|
|
75
125
|
path?: BIP44ParamsAmino;
|
|
76
126
|
}
|
|
@@ -78,34 +128,60 @@ export interface Record_LedgerAminoMsg {
|
|
|
78
128
|
type: "cosmos-sdk/Ledger";
|
|
79
129
|
value: Record_LedgerAmino;
|
|
80
130
|
}
|
|
81
|
-
/**
|
|
131
|
+
/**
|
|
132
|
+
* Multi item
|
|
133
|
+
* @name Record_Multi
|
|
134
|
+
* @package cosmos.crypto.keyring.v1
|
|
135
|
+
* @see proto type: cosmos.crypto.keyring.v1.Multi
|
|
136
|
+
*/
|
|
82
137
|
export interface Record_Multi {
|
|
83
138
|
}
|
|
84
139
|
export interface Record_MultiProtoMsg {
|
|
85
140
|
typeUrl: "/cosmos.crypto.keyring.v1.Multi";
|
|
86
141
|
value: Uint8Array;
|
|
87
142
|
}
|
|
88
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* Multi item
|
|
145
|
+
* @name Record_MultiAmino
|
|
146
|
+
* @package cosmos.crypto.keyring.v1
|
|
147
|
+
* @see proto type: cosmos.crypto.keyring.v1.Record_Multi
|
|
148
|
+
*/
|
|
89
149
|
export interface Record_MultiAmino {
|
|
90
150
|
}
|
|
91
151
|
export interface Record_MultiAminoMsg {
|
|
92
152
|
type: "cosmos-sdk/Multi";
|
|
93
153
|
value: Record_MultiAmino;
|
|
94
154
|
}
|
|
95
|
-
/**
|
|
155
|
+
/**
|
|
156
|
+
* Offline item
|
|
157
|
+
* @name Record_Offline
|
|
158
|
+
* @package cosmos.crypto.keyring.v1
|
|
159
|
+
* @see proto type: cosmos.crypto.keyring.v1.Offline
|
|
160
|
+
*/
|
|
96
161
|
export interface Record_Offline {
|
|
97
162
|
}
|
|
98
163
|
export interface Record_OfflineProtoMsg {
|
|
99
164
|
typeUrl: "/cosmos.crypto.keyring.v1.Offline";
|
|
100
165
|
value: Uint8Array;
|
|
101
166
|
}
|
|
102
|
-
/**
|
|
167
|
+
/**
|
|
168
|
+
* Offline item
|
|
169
|
+
* @name Record_OfflineAmino
|
|
170
|
+
* @package cosmos.crypto.keyring.v1
|
|
171
|
+
* @see proto type: cosmos.crypto.keyring.v1.Record_Offline
|
|
172
|
+
*/
|
|
103
173
|
export interface Record_OfflineAmino {
|
|
104
174
|
}
|
|
105
175
|
export interface Record_OfflineAminoMsg {
|
|
106
176
|
type: "cosmos-sdk/Offline";
|
|
107
177
|
value: Record_OfflineAmino;
|
|
108
178
|
}
|
|
179
|
+
/**
|
|
180
|
+
* Record is used for representing a key in the keyring.
|
|
181
|
+
* @name Record
|
|
182
|
+
* @package cosmos.crypto.keyring.v1
|
|
183
|
+
* @see proto type: cosmos.crypto.keyring.v1.Record
|
|
184
|
+
*/
|
|
109
185
|
export declare const Record: {
|
|
110
186
|
typeUrl: string;
|
|
111
187
|
aminoType: string;
|
|
@@ -120,6 +196,13 @@ export declare const Record: {
|
|
|
120
196
|
toProto(message: Record): Uint8Array;
|
|
121
197
|
toProtoMsg(message: Record): RecordProtoMsg;
|
|
122
198
|
};
|
|
199
|
+
/**
|
|
200
|
+
* Item is a keyring item stored in a keyring backend.
|
|
201
|
+
* Local item
|
|
202
|
+
* @name Record_Local
|
|
203
|
+
* @package cosmos.crypto.keyring.v1
|
|
204
|
+
* @see proto type: cosmos.crypto.keyring.v1.Local
|
|
205
|
+
*/
|
|
123
206
|
export declare const Record_Local: {
|
|
124
207
|
typeUrl: string;
|
|
125
208
|
aminoType: string;
|
|
@@ -134,6 +217,12 @@ export declare const Record_Local: {
|
|
|
134
217
|
toProto(message: Record_Local): Uint8Array;
|
|
135
218
|
toProtoMsg(message: Record_Local): Record_LocalProtoMsg;
|
|
136
219
|
};
|
|
220
|
+
/**
|
|
221
|
+
* Ledger item
|
|
222
|
+
* @name Record_Ledger
|
|
223
|
+
* @package cosmos.crypto.keyring.v1
|
|
224
|
+
* @see proto type: cosmos.crypto.keyring.v1.Ledger
|
|
225
|
+
*/
|
|
137
226
|
export declare const Record_Ledger: {
|
|
138
227
|
typeUrl: string;
|
|
139
228
|
aminoType: string;
|
|
@@ -148,6 +237,12 @@ export declare const Record_Ledger: {
|
|
|
148
237
|
toProto(message: Record_Ledger): Uint8Array;
|
|
149
238
|
toProtoMsg(message: Record_Ledger): Record_LedgerProtoMsg;
|
|
150
239
|
};
|
|
240
|
+
/**
|
|
241
|
+
* Multi item
|
|
242
|
+
* @name Record_Multi
|
|
243
|
+
* @package cosmos.crypto.keyring.v1
|
|
244
|
+
* @see proto type: cosmos.crypto.keyring.v1.Multi
|
|
245
|
+
*/
|
|
151
246
|
export declare const Record_Multi: {
|
|
152
247
|
typeUrl: string;
|
|
153
248
|
aminoType: string;
|
|
@@ -162,6 +257,12 @@ export declare const Record_Multi: {
|
|
|
162
257
|
toProto(message: Record_Multi): Uint8Array;
|
|
163
258
|
toProtoMsg(message: Record_Multi): Record_MultiProtoMsg;
|
|
164
259
|
};
|
|
260
|
+
/**
|
|
261
|
+
* Offline item
|
|
262
|
+
* @name Record_Offline
|
|
263
|
+
* @package cosmos.crypto.keyring.v1
|
|
264
|
+
* @see proto type: cosmos.crypto.keyring.v1.Offline
|
|
265
|
+
*/
|
|
165
266
|
export declare const Record_Offline: {
|
|
166
267
|
typeUrl: string;
|
|
167
268
|
aminoType: string;
|
|
@@ -15,6 +15,12 @@ function createBaseRecord() {
|
|
|
15
15
|
offline: undefined
|
|
16
16
|
};
|
|
17
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* Record is used for representing a key in the keyring.
|
|
20
|
+
* @name Record
|
|
21
|
+
* @package cosmos.crypto.keyring.v1
|
|
22
|
+
* @see proto type: cosmos.crypto.keyring.v1.Record
|
|
23
|
+
*/
|
|
18
24
|
exports.Record = {
|
|
19
25
|
typeUrl: "/cosmos.crypto.keyring.v1.Record",
|
|
20
26
|
aminoType: "cosmos-sdk/Record",
|
|
@@ -140,6 +146,13 @@ function createBaseRecord_Local() {
|
|
|
140
146
|
privKey: undefined
|
|
141
147
|
};
|
|
142
148
|
}
|
|
149
|
+
/**
|
|
150
|
+
* Item is a keyring item stored in a keyring backend.
|
|
151
|
+
* Local item
|
|
152
|
+
* @name Record_Local
|
|
153
|
+
* @package cosmos.crypto.keyring.v1
|
|
154
|
+
* @see proto type: cosmos.crypto.keyring.v1.Local
|
|
155
|
+
*/
|
|
143
156
|
exports.Record_Local = {
|
|
144
157
|
typeUrl: "/cosmos.crypto.keyring.v1.Local",
|
|
145
158
|
aminoType: "cosmos-sdk/Local",
|
|
@@ -210,6 +223,12 @@ function createBaseRecord_Ledger() {
|
|
|
210
223
|
path: undefined
|
|
211
224
|
};
|
|
212
225
|
}
|
|
226
|
+
/**
|
|
227
|
+
* Ledger item
|
|
228
|
+
* @name Record_Ledger
|
|
229
|
+
* @package cosmos.crypto.keyring.v1
|
|
230
|
+
* @see proto type: cosmos.crypto.keyring.v1.Ledger
|
|
231
|
+
*/
|
|
213
232
|
exports.Record_Ledger = {
|
|
214
233
|
typeUrl: "/cosmos.crypto.keyring.v1.Ledger",
|
|
215
234
|
aminoType: "cosmos-sdk/Ledger",
|
|
@@ -278,6 +297,12 @@ exports.Record_Ledger = {
|
|
|
278
297
|
function createBaseRecord_Multi() {
|
|
279
298
|
return {};
|
|
280
299
|
}
|
|
300
|
+
/**
|
|
301
|
+
* Multi item
|
|
302
|
+
* @name Record_Multi
|
|
303
|
+
* @package cosmos.crypto.keyring.v1
|
|
304
|
+
* @see proto type: cosmos.crypto.keyring.v1.Multi
|
|
305
|
+
*/
|
|
281
306
|
exports.Record_Multi = {
|
|
282
307
|
typeUrl: "/cosmos.crypto.keyring.v1.Multi",
|
|
283
308
|
aminoType: "cosmos-sdk/Multi",
|
|
@@ -335,6 +360,12 @@ exports.Record_Multi = {
|
|
|
335
360
|
function createBaseRecord_Offline() {
|
|
336
361
|
return {};
|
|
337
362
|
}
|
|
363
|
+
/**
|
|
364
|
+
* Offline item
|
|
365
|
+
* @name Record_Offline
|
|
366
|
+
* @package cosmos.crypto.keyring.v1
|
|
367
|
+
* @see proto type: cosmos.crypto.keyring.v1.Offline
|
|
368
|
+
*/
|
|
338
369
|
exports.Record_Offline = {
|
|
339
370
|
typeUrl: "/cosmos.crypto.keyring.v1.Offline",
|
|
340
371
|
aminoType: "cosmos-sdk/Offline",
|
|
@@ -5,6 +5,9 @@ import { DeepPartial } from "../../../helpers";
|
|
|
5
5
|
* LegacyAminoPubKey specifies a public key type
|
|
6
6
|
* which nests multiple public keys and a threshold,
|
|
7
7
|
* it uses legacy amino address rules.
|
|
8
|
+
* @name LegacyAminoPubKey
|
|
9
|
+
* @package cosmos.crypto.multisig
|
|
10
|
+
* @see proto type: cosmos.crypto.multisig.LegacyAminoPubKey
|
|
8
11
|
*/
|
|
9
12
|
export interface LegacyAminoPubKey {
|
|
10
13
|
threshold: number;
|
|
@@ -18,6 +21,9 @@ export interface LegacyAminoPubKeyProtoMsg {
|
|
|
18
21
|
* LegacyAminoPubKey specifies a public key type
|
|
19
22
|
* which nests multiple public keys and a threshold,
|
|
20
23
|
* it uses legacy amino address rules.
|
|
24
|
+
* @name LegacyAminoPubKeyAmino
|
|
25
|
+
* @package cosmos.crypto.multisig
|
|
26
|
+
* @see proto type: cosmos.crypto.multisig.LegacyAminoPubKey
|
|
21
27
|
*/
|
|
22
28
|
export interface LegacyAminoPubKeyAmino {
|
|
23
29
|
threshold?: number;
|
|
@@ -27,6 +33,14 @@ export interface LegacyAminoPubKeyAminoMsg {
|
|
|
27
33
|
type: "tendermint/PubKeyMultisigThreshold";
|
|
28
34
|
value: LegacyAminoPubKeyAmino;
|
|
29
35
|
}
|
|
36
|
+
/**
|
|
37
|
+
* LegacyAminoPubKey specifies a public key type
|
|
38
|
+
* which nests multiple public keys and a threshold,
|
|
39
|
+
* it uses legacy amino address rules.
|
|
40
|
+
* @name LegacyAminoPubKey
|
|
41
|
+
* @package cosmos.crypto.multisig
|
|
42
|
+
* @see proto type: cosmos.crypto.multisig.LegacyAminoPubKey
|
|
43
|
+
*/
|
|
30
44
|
export declare const LegacyAminoPubKey: {
|
|
31
45
|
typeUrl: string;
|
|
32
46
|
aminoType: string;
|
|
@@ -10,6 +10,14 @@ function createBaseLegacyAminoPubKey() {
|
|
|
10
10
|
publicKeys: []
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* LegacyAminoPubKey specifies a public key type
|
|
15
|
+
* which nests multiple public keys and a threshold,
|
|
16
|
+
* it uses legacy amino address rules.
|
|
17
|
+
* @name LegacyAminoPubKey
|
|
18
|
+
* @package cosmos.crypto.multisig
|
|
19
|
+
* @see proto type: cosmos.crypto.multisig.LegacyAminoPubKey
|
|
20
|
+
*/
|
|
13
21
|
exports.LegacyAminoPubKey = {
|
|
14
22
|
typeUrl: "/cosmos.crypto.multisig.LegacyAminoPubKey",
|
|
15
23
|
aminoType: "tendermint/PubKeyMultisigThreshold",
|
|
@@ -4,6 +4,9 @@ import { DeepPartial } from "../../../../helpers";
|
|
|
4
4
|
* MultiSignature wraps the signatures from a multisig.LegacyAminoPubKey.
|
|
5
5
|
* See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers
|
|
6
6
|
* signed and with which modes.
|
|
7
|
+
* @name MultiSignature
|
|
8
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
9
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.MultiSignature
|
|
7
10
|
*/
|
|
8
11
|
export interface MultiSignature {
|
|
9
12
|
signatures: Uint8Array[];
|
|
@@ -16,6 +19,9 @@ export interface MultiSignatureProtoMsg {
|
|
|
16
19
|
* MultiSignature wraps the signatures from a multisig.LegacyAminoPubKey.
|
|
17
20
|
* See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers
|
|
18
21
|
* signed and with which modes.
|
|
22
|
+
* @name MultiSignatureAmino
|
|
23
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
24
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.MultiSignature
|
|
19
25
|
*/
|
|
20
26
|
export interface MultiSignatureAmino {
|
|
21
27
|
signatures?: string[];
|
|
@@ -29,6 +35,9 @@ export interface MultiSignatureAminoMsg {
|
|
|
29
35
|
* This is used to ensure that the encoded data takes up a minimal amount of
|
|
30
36
|
* space after proto encoding.
|
|
31
37
|
* This is not thread safe, and is not intended for concurrent usage.
|
|
38
|
+
* @name CompactBitArray
|
|
39
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
40
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.CompactBitArray
|
|
32
41
|
*/
|
|
33
42
|
export interface CompactBitArray {
|
|
34
43
|
extraBitsStored: number;
|
|
@@ -43,6 +52,9 @@ export interface CompactBitArrayProtoMsg {
|
|
|
43
52
|
* This is used to ensure that the encoded data takes up a minimal amount of
|
|
44
53
|
* space after proto encoding.
|
|
45
54
|
* This is not thread safe, and is not intended for concurrent usage.
|
|
55
|
+
* @name CompactBitArrayAmino
|
|
56
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
57
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.CompactBitArray
|
|
46
58
|
*/
|
|
47
59
|
export interface CompactBitArrayAmino {
|
|
48
60
|
extra_bits_stored?: number;
|
|
@@ -52,6 +64,14 @@ export interface CompactBitArrayAminoMsg {
|
|
|
52
64
|
type: "cosmos-sdk/CompactBitArray";
|
|
53
65
|
value: CompactBitArrayAmino;
|
|
54
66
|
}
|
|
67
|
+
/**
|
|
68
|
+
* MultiSignature wraps the signatures from a multisig.LegacyAminoPubKey.
|
|
69
|
+
* See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers
|
|
70
|
+
* signed and with which modes.
|
|
71
|
+
* @name MultiSignature
|
|
72
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
73
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.MultiSignature
|
|
74
|
+
*/
|
|
55
75
|
export declare const MultiSignature: {
|
|
56
76
|
typeUrl: string;
|
|
57
77
|
aminoType: string;
|
|
@@ -66,6 +86,15 @@ export declare const MultiSignature: {
|
|
|
66
86
|
toProto(message: MultiSignature): Uint8Array;
|
|
67
87
|
toProtoMsg(message: MultiSignature): MultiSignatureProtoMsg;
|
|
68
88
|
};
|
|
89
|
+
/**
|
|
90
|
+
* CompactBitArray is an implementation of a space efficient bit array.
|
|
91
|
+
* This is used to ensure that the encoded data takes up a minimal amount of
|
|
92
|
+
* space after proto encoding.
|
|
93
|
+
* This is not thread safe, and is not intended for concurrent usage.
|
|
94
|
+
* @name CompactBitArray
|
|
95
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
96
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.CompactBitArray
|
|
97
|
+
*/
|
|
69
98
|
export declare const CompactBitArray: {
|
|
70
99
|
typeUrl: string;
|
|
71
100
|
aminoType: string;
|
|
@@ -9,6 +9,14 @@ function createBaseMultiSignature() {
|
|
|
9
9
|
signatures: []
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* MultiSignature wraps the signatures from a multisig.LegacyAminoPubKey.
|
|
14
|
+
* See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers
|
|
15
|
+
* signed and with which modes.
|
|
16
|
+
* @name MultiSignature
|
|
17
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
18
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.MultiSignature
|
|
19
|
+
*/
|
|
12
20
|
exports.MultiSignature = {
|
|
13
21
|
typeUrl: "/cosmos.crypto.multisig.v1beta1.MultiSignature",
|
|
14
22
|
aminoType: "cosmos-sdk/MultiSignature",
|
|
@@ -83,6 +91,15 @@ function createBaseCompactBitArray() {
|
|
|
83
91
|
elems: new Uint8Array()
|
|
84
92
|
};
|
|
85
93
|
}
|
|
94
|
+
/**
|
|
95
|
+
* CompactBitArray is an implementation of a space efficient bit array.
|
|
96
|
+
* This is used to ensure that the encoded data takes up a minimal amount of
|
|
97
|
+
* space after proto encoding.
|
|
98
|
+
* This is not thread safe, and is not intended for concurrent usage.
|
|
99
|
+
* @name CompactBitArray
|
|
100
|
+
* @package cosmos.crypto.multisig.v1beta1
|
|
101
|
+
* @see proto type: cosmos.crypto.multisig.v1beta1.CompactBitArray
|
|
102
|
+
*/
|
|
86
103
|
exports.CompactBitArray = {
|
|
87
104
|
typeUrl: "/cosmos.crypto.multisig.v1beta1.CompactBitArray",
|
|
88
105
|
aminoType: "cosmos-sdk/CompactBitArray",
|
|
@@ -6,6 +6,9 @@ import { DeepPartial } from "../../../helpers";
|
|
|
6
6
|
* if the y-coordinate is the lexicographically largest of the two associated with
|
|
7
7
|
* the x-coordinate. Otherwise the first byte is a 0x03.
|
|
8
8
|
* This prefix is followed with the x-coordinate.
|
|
9
|
+
* @name PubKey
|
|
10
|
+
* @package cosmos.crypto.secp256k1
|
|
11
|
+
* @see proto type: cosmos.crypto.secp256k1.PubKey
|
|
9
12
|
*/
|
|
10
13
|
export interface PubKey {
|
|
11
14
|
key: Uint8Array;
|
|
@@ -20,6 +23,9 @@ export interface PubKeyProtoMsg {
|
|
|
20
23
|
* if the y-coordinate is the lexicographically largest of the two associated with
|
|
21
24
|
* the x-coordinate. Otherwise the first byte is a 0x03.
|
|
22
25
|
* This prefix is followed with the x-coordinate.
|
|
26
|
+
* @name PubKeyAmino
|
|
27
|
+
* @package cosmos.crypto.secp256k1
|
|
28
|
+
* @see proto type: cosmos.crypto.secp256k1.PubKey
|
|
23
29
|
*/
|
|
24
30
|
export interface PubKeyAmino {
|
|
25
31
|
key?: string;
|
|
@@ -28,7 +34,12 @@ export interface PubKeyAminoMsg {
|
|
|
28
34
|
type: "tendermint/PubKeySecp256k1";
|
|
29
35
|
value: PubKeyAmino;
|
|
30
36
|
}
|
|
31
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* PrivKey defines a secp256k1 private key.
|
|
39
|
+
* @name PrivKey
|
|
40
|
+
* @package cosmos.crypto.secp256k1
|
|
41
|
+
* @see proto type: cosmos.crypto.secp256k1.PrivKey
|
|
42
|
+
*/
|
|
32
43
|
export interface PrivKey {
|
|
33
44
|
key: Uint8Array;
|
|
34
45
|
}
|
|
@@ -36,7 +47,12 @@ export interface PrivKeyProtoMsg {
|
|
|
36
47
|
typeUrl: "/cosmos.crypto.secp256k1.PrivKey";
|
|
37
48
|
value: Uint8Array;
|
|
38
49
|
}
|
|
39
|
-
/**
|
|
50
|
+
/**
|
|
51
|
+
* PrivKey defines a secp256k1 private key.
|
|
52
|
+
* @name PrivKeyAmino
|
|
53
|
+
* @package cosmos.crypto.secp256k1
|
|
54
|
+
* @see proto type: cosmos.crypto.secp256k1.PrivKey
|
|
55
|
+
*/
|
|
40
56
|
export interface PrivKeyAmino {
|
|
41
57
|
key?: string;
|
|
42
58
|
}
|
|
@@ -44,6 +60,16 @@ export interface PrivKeyAminoMsg {
|
|
|
44
60
|
type: "tendermint/PrivKeySecp256k1";
|
|
45
61
|
value: PrivKeyAmino;
|
|
46
62
|
}
|
|
63
|
+
/**
|
|
64
|
+
* PubKey defines a secp256k1 public key
|
|
65
|
+
* Key is the compressed form of the pubkey. The first byte depends is a 0x02 byte
|
|
66
|
+
* if the y-coordinate is the lexicographically largest of the two associated with
|
|
67
|
+
* the x-coordinate. Otherwise the first byte is a 0x03.
|
|
68
|
+
* This prefix is followed with the x-coordinate.
|
|
69
|
+
* @name PubKey
|
|
70
|
+
* @package cosmos.crypto.secp256k1
|
|
71
|
+
* @see proto type: cosmos.crypto.secp256k1.PubKey
|
|
72
|
+
*/
|
|
47
73
|
export declare const PubKey: {
|
|
48
74
|
typeUrl: string;
|
|
49
75
|
aminoType: string;
|
|
@@ -58,6 +84,12 @@ export declare const PubKey: {
|
|
|
58
84
|
toProto(message: PubKey): Uint8Array;
|
|
59
85
|
toProtoMsg(message: PubKey): PubKeyProtoMsg;
|
|
60
86
|
};
|
|
87
|
+
/**
|
|
88
|
+
* PrivKey defines a secp256k1 private key.
|
|
89
|
+
* @name PrivKey
|
|
90
|
+
* @package cosmos.crypto.secp256k1
|
|
91
|
+
* @see proto type: cosmos.crypto.secp256k1.PrivKey
|
|
92
|
+
*/
|
|
61
93
|
export declare const PrivKey: {
|
|
62
94
|
typeUrl: string;
|
|
63
95
|
aminoType: string;
|
|
@@ -9,6 +9,16 @@ function createBasePubKey() {
|
|
|
9
9
|
key: new Uint8Array()
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* PubKey defines a secp256k1 public key
|
|
14
|
+
* Key is the compressed form of the pubkey. The first byte depends is a 0x02 byte
|
|
15
|
+
* if the y-coordinate is the lexicographically largest of the two associated with
|
|
16
|
+
* the x-coordinate. Otherwise the first byte is a 0x03.
|
|
17
|
+
* This prefix is followed with the x-coordinate.
|
|
18
|
+
* @name PubKey
|
|
19
|
+
* @package cosmos.crypto.secp256k1
|
|
20
|
+
* @see proto type: cosmos.crypto.secp256k1.PubKey
|
|
21
|
+
*/
|
|
12
22
|
exports.PubKey = {
|
|
13
23
|
typeUrl: "/cosmos.crypto.secp256k1.PubKey",
|
|
14
24
|
aminoType: "tendermint/PubKeySecp256k1",
|
|
@@ -79,6 +89,12 @@ function createBasePrivKey() {
|
|
|
79
89
|
key: new Uint8Array()
|
|
80
90
|
};
|
|
81
91
|
}
|
|
92
|
+
/**
|
|
93
|
+
* PrivKey defines a secp256k1 private key.
|
|
94
|
+
* @name PrivKey
|
|
95
|
+
* @package cosmos.crypto.secp256k1
|
|
96
|
+
* @see proto type: cosmos.crypto.secp256k1.PrivKey
|
|
97
|
+
*/
|
|
82
98
|
exports.PrivKey = {
|
|
83
99
|
typeUrl: "/cosmos.crypto.secp256k1.PrivKey",
|
|
84
100
|
aminoType: "tendermint/PrivKeySecp256k1",
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
2
2
|
import { DeepPartial } from "../../../helpers";
|
|
3
|
-
/**
|
|
3
|
+
/**
|
|
4
|
+
* PubKey defines a secp256r1 ECDSA public key.
|
|
5
|
+
* @name PubKey
|
|
6
|
+
* @package cosmos.crypto.secp256r1
|
|
7
|
+
* @see proto type: cosmos.crypto.secp256r1.PubKey
|
|
8
|
+
*/
|
|
4
9
|
export interface PubKey {
|
|
5
10
|
/**
|
|
6
11
|
* Point on secp256r1 curve in a compressed representation as specified in section
|
|
@@ -12,7 +17,12 @@ export interface PubKeyProtoMsg {
|
|
|
12
17
|
typeUrl: "/cosmos.crypto.secp256r1.PubKey";
|
|
13
18
|
value: Uint8Array;
|
|
14
19
|
}
|
|
15
|
-
/**
|
|
20
|
+
/**
|
|
21
|
+
* PubKey defines a secp256r1 ECDSA public key.
|
|
22
|
+
* @name PubKeyAmino
|
|
23
|
+
* @package cosmos.crypto.secp256r1
|
|
24
|
+
* @see proto type: cosmos.crypto.secp256r1.PubKey
|
|
25
|
+
*/
|
|
16
26
|
export interface PubKeyAmino {
|
|
17
27
|
/**
|
|
18
28
|
* Point on secp256r1 curve in a compressed representation as specified in section
|
|
@@ -24,24 +34,44 @@ export interface PubKeyAminoMsg {
|
|
|
24
34
|
type: "cosmos-sdk/PubKey";
|
|
25
35
|
value: PubKeyAmino;
|
|
26
36
|
}
|
|
27
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* PrivKey defines a secp256r1 ECDSA private key.
|
|
39
|
+
* @name PrivKey
|
|
40
|
+
* @package cosmos.crypto.secp256r1
|
|
41
|
+
* @see proto type: cosmos.crypto.secp256r1.PrivKey
|
|
42
|
+
*/
|
|
28
43
|
export interface PrivKey {
|
|
29
|
-
/**
|
|
44
|
+
/**
|
|
45
|
+
* secret number serialized using big-endian encoding
|
|
46
|
+
*/
|
|
30
47
|
secret: Uint8Array;
|
|
31
48
|
}
|
|
32
49
|
export interface PrivKeyProtoMsg {
|
|
33
50
|
typeUrl: "/cosmos.crypto.secp256r1.PrivKey";
|
|
34
51
|
value: Uint8Array;
|
|
35
52
|
}
|
|
36
|
-
/**
|
|
53
|
+
/**
|
|
54
|
+
* PrivKey defines a secp256r1 ECDSA private key.
|
|
55
|
+
* @name PrivKeyAmino
|
|
56
|
+
* @package cosmos.crypto.secp256r1
|
|
57
|
+
* @see proto type: cosmos.crypto.secp256r1.PrivKey
|
|
58
|
+
*/
|
|
37
59
|
export interface PrivKeyAmino {
|
|
38
|
-
/**
|
|
60
|
+
/**
|
|
61
|
+
* secret number serialized using big-endian encoding
|
|
62
|
+
*/
|
|
39
63
|
secret?: string;
|
|
40
64
|
}
|
|
41
65
|
export interface PrivKeyAminoMsg {
|
|
42
66
|
type: "cosmos-sdk/PrivKey";
|
|
43
67
|
value: PrivKeyAmino;
|
|
44
68
|
}
|
|
69
|
+
/**
|
|
70
|
+
* PubKey defines a secp256r1 ECDSA public key.
|
|
71
|
+
* @name PubKey
|
|
72
|
+
* @package cosmos.crypto.secp256r1
|
|
73
|
+
* @see proto type: cosmos.crypto.secp256r1.PubKey
|
|
74
|
+
*/
|
|
45
75
|
export declare const PubKey: {
|
|
46
76
|
typeUrl: string;
|
|
47
77
|
aminoType: string;
|
|
@@ -56,6 +86,12 @@ export declare const PubKey: {
|
|
|
56
86
|
toProto(message: PubKey): Uint8Array;
|
|
57
87
|
toProtoMsg(message: PubKey): PubKeyProtoMsg;
|
|
58
88
|
};
|
|
89
|
+
/**
|
|
90
|
+
* PrivKey defines a secp256r1 ECDSA private key.
|
|
91
|
+
* @name PrivKey
|
|
92
|
+
* @package cosmos.crypto.secp256r1
|
|
93
|
+
* @see proto type: cosmos.crypto.secp256r1.PrivKey
|
|
94
|
+
*/
|
|
59
95
|
export declare const PrivKey: {
|
|
60
96
|
typeUrl: string;
|
|
61
97
|
aminoType: string;
|
|
@@ -9,6 +9,12 @@ function createBasePubKey() {
|
|
|
9
9
|
key: new Uint8Array()
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* PubKey defines a secp256r1 ECDSA public key.
|
|
14
|
+
* @name PubKey
|
|
15
|
+
* @package cosmos.crypto.secp256r1
|
|
16
|
+
* @see proto type: cosmos.crypto.secp256r1.PubKey
|
|
17
|
+
*/
|
|
12
18
|
exports.PubKey = {
|
|
13
19
|
typeUrl: "/cosmos.crypto.secp256r1.PubKey",
|
|
14
20
|
aminoType: "cosmos-sdk/PubKey",
|
|
@@ -79,6 +85,12 @@ function createBasePrivKey() {
|
|
|
79
85
|
secret: new Uint8Array()
|
|
80
86
|
};
|
|
81
87
|
}
|
|
88
|
+
/**
|
|
89
|
+
* PrivKey defines a secp256r1 ECDSA private key.
|
|
90
|
+
* @name PrivKey
|
|
91
|
+
* @package cosmos.crypto.secp256r1
|
|
92
|
+
* @see proto type: cosmos.crypto.secp256r1.PrivKey
|
|
93
|
+
*/
|
|
82
94
|
exports.PrivKey = {
|
|
83
95
|
typeUrl: "/cosmos.crypto.secp256r1.PrivKey",
|
|
84
96
|
aminoType: "cosmos-sdk/PrivKey",
|