@sparkdreamnft/sparkdreamjs 0.0.5 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
- package/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +19 -0
- package/cosmos/auth/module/v1/module.d.ts +72 -12
- package/cosmos/auth/module/v1/module.js +25 -1
- package/cosmos/auth/v1beta1/auth.d.ts +68 -10
- package/cosmos/auth/v1beta1/auth.js +26 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +334 -92
- package/cosmos/auth/v1beta1/query.js +120 -0
- package/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
- package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/cosmos/auth/v1beta1/tx.d.ts +31 -10
- package/cosmos/auth/v1beta1/tx.js +13 -0
- package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +6 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +36 -0
- package/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +13 -8
- package/cosmos/bank/v1beta1/authz.js +7 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -34
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
- package/cosmos/bank/v1beta1/genesis.js +13 -0
- package/cosmos/bank/v1beta1/query.d.ts +599 -138
- package/cosmos/bank/v1beta1/query.js +179 -0
- package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
- package/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
- package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
- package/cosmos/bank/v1beta1/tx.d.ts +143 -30
- package/cosmos/bank/v1beta1/tx.js +53 -0
- package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/benchmark/module/v1/module.d.ts +102 -26
- package/cosmos/benchmark/module/v1/module.js +12 -0
- package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
- package/cosmos/benchmark/v1/benchmark.js +6 -0
- package/cosmos/benchmark/v1/tx.d.ts +36 -4
- package/cosmos/benchmark/v1/tx.js +12 -0
- package/cosmos/bundle.d.ts +2284 -2422
- package/cosmos/bundle.js +242 -261
- package/cosmos/circuit/module/v1/module.d.ts +24 -4
- package/cosmos/circuit/module/v1/module.js +6 -0
- package/cosmos/circuit/v1/query.d.ts +120 -16
- package/cosmos/circuit/v1/query.js +36 -0
- package/cosmos/circuit/v1/tx.d.ts +126 -18
- package/cosmos/circuit/v1/tx.js +36 -0
- package/cosmos/circuit/v1/types.d.ts +55 -6
- package/cosmos/circuit/v1/types.js +19 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +12 -0
- package/cosmos/consensus/v1/tx.d.ts +37 -6
- package/cosmos/consensus/v1/tx.js +13 -0
- package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/cosmos/counter/module/v1/module.d.ts +24 -4
- package/cosmos/counter/module/v1/module.js +6 -0
- package/cosmos/counter/v1/query.d.ts +36 -4
- package/cosmos/counter/v1/query.js +12 -0
- package/cosmos/counter/v1/tx.d.ts +54 -10
- package/cosmos/counter/v1/tx.js +12 -0
- package/cosmos/crisis/module/v1/module.d.ts +30 -6
- package/cosmos/crisis/module/v1/module.js +6 -0
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
- package/cosmos/crypto/hd/v1/hd.js +6 -0
- package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
- package/cosmos/crypto/keyring/v1/record.js +31 -0
- package/cosmos/crypto/multisig/keys.d.ts +14 -0
- package/cosmos/crypto/multisig/keys.js +8 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +136 -0
- package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
- package/cosmos/distribution/v1beta1/tx.js +97 -0
- package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
- package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/cosmos/epochs/module/v1/module.d.ts +18 -2
- package/cosmos/epochs/module/v1/module.js +6 -0
- package/cosmos/epochs/v1beta1/events.d.ts +36 -4
- package/cosmos/epochs/v1beta1/events.js +12 -0
- package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
- package/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/cosmos/epochs/v1beta1/query.d.ts +52 -0
- package/cosmos/epochs/v1beta1/query.js +28 -0
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
- package/cosmos/feegrant/v1beta1/query.js +36 -0
- package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
- package/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/genutil/module/v1/module.d.ts +18 -2
- package/cosmos/genutil/module/v1/module.js +6 -0
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -24
- package/cosmos/gov/v1/genesis.js +6 -0
- package/cosmos/gov/v1/gov.d.ts +341 -124
- package/cosmos/gov/v1/gov.js +59 -0
- package/cosmos/gov/v1/query.d.ts +469 -92
- package/cosmos/gov/v1/query.js +109 -0
- package/cosmos/gov/v1/tx.d.ts +368 -93
- package/cosmos/gov/v1/tx.js +88 -0
- package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +6 -0
- package/cosmos/gov/v1beta1/gov.d.ts +291 -69
- package/cosmos/gov/v1beta1/gov.js +57 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/tx.d.ts +209 -45
- package/cosmos/gov/v1beta1/tx.js +49 -0
- package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/group/module/v1/module.d.ts +18 -2
- package/cosmos/group/module/v1/module.js +6 -0
- package/cosmos/group/v1/events.d.ts +300 -56
- package/cosmos/group/v1/events.js +66 -0
- package/cosmos/group/v1/genesis.d.ts +48 -12
- package/cosmos/group/v1/genesis.js +6 -0
- package/cosmos/group/v1/query.d.ts +768 -152
- package/cosmos/group/v1/query.js +168 -0
- package/cosmos/group/v1/query.lcd.js +1 -3
- package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
- package/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/cosmos/group/v1/tx.d.ts +804 -163
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/types.d.ts +398 -91
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +6 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +39 -0
- package/cosmos/mint/v1beta1/tx.d.ts +31 -10
- package/cosmos/mint/v1beta1/tx.js +13 -0
- package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/nft/module/v1/module.d.ts +18 -2
- package/cosmos/nft/module/v1/module.js +6 -0
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +13 -0
- package/cosmos/params/v1beta1/query.d.ts +93 -22
- package/cosmos/params/v1beta1/query.js +33 -0
- package/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
- package/cosmos/protocolpool/module/v1/module.js +6 -0
- package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
- package/cosmos/protocolpool/v1/genesis.js +6 -0
- package/cosmos/protocolpool/v1/query.d.ts +138 -12
- package/cosmos/protocolpool/v1/query.js +54 -0
- package/cosmos/protocolpool/v1/tx.d.ts +217 -30
- package/cosmos/protocolpool/v1/tx.js +67 -0
- package/cosmos/protocolpool/v1/types.d.ts +54 -10
- package/cosmos/protocolpool/v1/types.js +12 -0
- package/cosmos/reflection/v1/reflection.d.ts +42 -6
- package/cosmos/reflection/v1/reflection.js +12 -0
- package/cosmos/rpc.query.d.ts +1 -9
- package/cosmos/rpc.query.js +0 -5
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +43 -15
- package/cosmos/staking/v1beta1/authz.js +13 -5
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +12 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/staking.d.ts +631 -121
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +234 -42
- package/cosmos/staking/v1beta1/tx.js +88 -0
- package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
- package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
- package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
- package/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
- package/cosmos/store/streaming/abci/grpc.js +24 -0
- package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
- package/cosmos/store/v1beta1/commit_info.js +21 -0
- package/cosmos/store/v1beta1/listening.d.ts +45 -10
- package/cosmos/store/v1beta1/listening.js +15 -0
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +355 -94
- package/cosmos/tx/v1beta1/service.js +125 -0
- package/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
- package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/cosmos/tx/v1beta1/tx.d.ts +371 -80
- package/cosmos/tx/v1beta1/tx.js +118 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
- package/cosmos/upgrade/v1beta1/query.js +70 -0
- package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
- package/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
- package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/cosmos/vesting/module/v1/module.d.ts +18 -2
- package/cosmos/vesting/module/v1/module.js +6 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
- package/cosmos/vesting/v1beta1/tx.js +40 -0
- package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
- package/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/esm/cosmos/app/v1alpha1/module.js +19 -0
- package/esm/cosmos/auth/module/v1/module.js +25 -1
- package/esm/cosmos/auth/v1beta1/auth.js +26 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +120 -0
- package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/esm/cosmos/auth/v1beta1/tx.js +13 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
- package/esm/cosmos/authz/v1beta1/query.js +36 -0
- package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +7 -0
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
- package/esm/cosmos/bank/v1beta1/query.js +179 -0
- package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
- package/esm/cosmos/bank/v1beta1/tx.js +53 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/benchmark/module/v1/module.js +12 -0
- package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
- package/esm/cosmos/benchmark/v1/tx.js +12 -0
- package/esm/cosmos/bundle.js +242 -261
- package/esm/cosmos/circuit/module/v1/module.js +6 -0
- package/esm/cosmos/circuit/v1/query.js +36 -0
- package/esm/cosmos/circuit/v1/tx.js +36 -0
- package/esm/cosmos/circuit/v1/types.js +19 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +12 -0
- package/esm/cosmos/consensus/v1/tx.js +13 -0
- package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/counter/module/v1/module.js +6 -0
- package/esm/cosmos/counter/v1/query.js +12 -0
- package/esm/cosmos/counter/v1/tx.js +12 -0
- package/esm/cosmos/crisis/module/v1/module.js +6 -0
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
- package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
- package/esm/cosmos/crypto/multisig/keys.js +8 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/esm/cosmos/distribution/v1beta1/query.js +136 -0
- package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/esm/cosmos/epochs/module/v1/module.js +6 -0
- package/esm/cosmos/epochs/v1beta1/events.js +12 -0
- package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/esm/cosmos/epochs/v1beta1/query.js +28 -0
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
- package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/genutil/module/v1/module.js +6 -0
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +6 -0
- package/esm/cosmos/gov/v1/gov.js +59 -0
- package/esm/cosmos/gov/v1/query.js +109 -0
- package/esm/cosmos/gov/v1/tx.js +88 -0
- package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
- package/esm/cosmos/gov/v1beta1/gov.js +57 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/tx.js +49 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/group/module/v1/module.js +6 -0
- package/esm/cosmos/group/v1/events.js +66 -0
- package/esm/cosmos/group/v1/genesis.js +6 -0
- package/esm/cosmos/group/v1/query.js +168 -0
- package/esm/cosmos/group/v1/query.lcd.js +1 -3
- package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +39 -0
- package/esm/cosmos/mint/v1beta1/tx.js +13 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/nft/module/v1/module.js +6 -0
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +13 -0
- package/esm/cosmos/params/v1beta1/query.js +33 -0
- package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
- package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
- package/esm/cosmos/protocolpool/v1/query.js +54 -0
- package/esm/cosmos/protocolpool/v1/tx.js +67 -0
- package/esm/cosmos/protocolpool/v1/types.js +12 -0
- package/esm/cosmos/reflection/v1/reflection.js +12 -0
- package/esm/cosmos/rpc.query.js +0 -5
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +13 -5
- package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +88 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
- package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
- package/esm/cosmos/store/v1beta1/listening.js +15 -0
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +125 -0
- package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/esm/cosmos/tx/v1beta1/tx.js +119 -1
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
- package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/esm/cosmos/vesting/module/v1/module.js +6 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/gogoproto/bundle.js +2 -2
- package/esm/google/api/http.js +283 -0
- package/esm/google/bundle.js +7 -7
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +220 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
- package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
- package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
- package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
- package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
- package/esm/ibc/applications/transfer/v1/authz.js +13 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
- package/esm/ibc/applications/transfer/v1/packet.js +8 -0
- package/esm/ibc/applications/transfer/v1/query.js +78 -0
- package/esm/ibc/applications/transfer/v1/token.js +18 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
- package/esm/ibc/applications/transfer/v1/tx.js +40 -1
- package/esm/ibc/bundle.js +196 -173
- package/esm/ibc/client.js +4 -1
- package/esm/ibc/core/channel/v1/channel.js +64 -0
- package/esm/ibc/core/channel/v1/genesis.js +13 -0
- package/esm/ibc/core/channel/v1/query.js +197 -0
- package/esm/ibc/core/channel/v1/tx.js +129 -0
- package/esm/ibc/core/channel/v2/genesis.js +21 -0
- package/esm/ibc/core/channel/v2/packet.js +29 -0
- package/esm/ibc/core/channel/v2/query.js +100 -0
- package/esm/ibc/core/channel/v2/tx.js +48 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/genesis.js +20 -0
- package/esm/ibc/core/client/v1/query.js +154 -0
- package/esm/ibc/core/client/v1/tx.amino.js +1 -6
- package/esm/ibc/core/client/v1/tx.js +86 -151
- package/esm/ibc/core/client/v1/tx.registry.js +2 -20
- package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
- package/esm/ibc/core/client/v2/config.js +9 -0
- package/esm/ibc/core/client/v2/counterparty.js +6 -0
- package/esm/ibc/core/client/v2/genesis.js +12 -0
- package/esm/ibc/core/client/v2/query.js +26 -0
- package/esm/ibc/core/client/v2/tx.js +24 -0
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/commitment/v2/commitment.js +36 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/genesis.js +6 -0
- package/esm/ibc/core/connection/v1/query.js +83 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/lcd.js +5 -0
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
- package/esm/ibc/rpc.query.js +3 -5
- package/esm/ibc/rpc.tx.js +3 -0
- package/esm/index.js +1 -1
- package/esm/sparkdream/blog/module/{module.js → v1/module.js} +9 -3
- package/esm/sparkdream/blog/{genesis.js → v1/genesis.js} +9 -3
- package/esm/sparkdream/blog/{params.js → v1/params.js} +9 -3
- package/esm/sparkdream/blog/{post.js → v1/post.js} +9 -3
- package/esm/sparkdream/blog/{query.js → v1/query.js} +50 -14
- package/esm/sparkdream/blog/{query.lcd.js → v1/query.lcd.js} +6 -6
- package/esm/sparkdream/blog/{query.rpc.Query.js → v1/query.rpc.Query.js} +6 -6
- package/esm/sparkdream/blog/{tx.amino.js → v1/tx.amino.js} +7 -7
- package/esm/sparkdream/blog/{tx.js → v1/tx.js} +66 -17
- package/esm/sparkdream/blog/{tx.registry.js → v1/tx.registry.js} +13 -13
- package/esm/sparkdream/blog/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +8 -8
- package/esm/sparkdream/bundle.js +68 -48
- package/esm/sparkdream/client.js +7 -7
- package/esm/sparkdream/lcd.js +10 -6
- package/esm/sparkdream/rpc.query.js +6 -7
- package/esm/sparkdream/rpc.tx.js +6 -2
- package/esm/sparkdream/sparkdream/module/{module.js → v1/module.js} +9 -3
- package/esm/sparkdream/sparkdream/{genesis.js → v1/genesis.js} +9 -3
- package/esm/sparkdream/sparkdream/{params.js → v1/params.js} +9 -3
- package/esm/sparkdream/sparkdream/{query.js → v1/query.js} +17 -5
- package/esm/sparkdream/sparkdream/{query.lcd.js → v1/query.lcd.js} +1 -1
- package/esm/sparkdream/sparkdream/{query.rpc.Query.js → v1/query.rpc.Query.js} +2 -2
- package/esm/sparkdream/sparkdream/{tx.amino.js → v1/tx.amino.js} +1 -1
- package/esm/sparkdream/sparkdream/{tx.js → v1/tx.js} +18 -5
- package/esm/sparkdream/sparkdream/{tx.registry.js → v1/tx.registry.js} +4 -4
- package/esm/sparkdream/sparkdream/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +2 -2
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +20 -20
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/p2p/types.js +20 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/gogoproto/bundle.js +2 -2
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/bundle.d.ts +418 -418
- package/google/bundle.js +7 -7
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +738 -90
- package/google/protobuf/descriptor.js +220 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
- package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
- package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
- package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
- package/ibc/applications/rate_limiting/v1/query.js +906 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
- package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
- package/ibc/applications/rate_limiting/v1/tx.js +729 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +13 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
- package/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
- package/ibc/applications/transfer/v1/genesis.js +6 -0
- package/ibc/applications/transfer/v1/packet.d.ts +44 -10
- package/ibc/applications/transfer/v1/packet.js +8 -0
- package/ibc/applications/transfer/v1/query.d.ts +252 -34
- package/ibc/applications/transfer/v1/query.js +78 -0
- package/ibc/applications/transfer/v1/token.d.ts +78 -14
- package/ibc/applications/transfer/v1/token.js +18 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
- package/ibc/applications/transfer/v1/transfer.js +9 -0
- package/ibc/applications/transfer/v1/tx.d.ts +135 -22
- package/ibc/applications/transfer/v1/tx.js +40 -1
- package/ibc/bundle.d.ts +3830 -3396
- package/ibc/bundle.js +196 -173
- package/ibc/client.d.ts +20 -5
- package/ibc/client.js +4 -1
- package/ibc/core/channel/v1/channel.d.ts +292 -60
- package/ibc/core/channel/v1/channel.js +64 -0
- package/ibc/core/channel/v1/genesis.d.ts +37 -4
- package/ibc/core/channel/v1/genesis.js +13 -0
- package/ibc/core/channel/v1/query.d.ts +839 -158
- package/ibc/core/channel/v1/query.js +197 -0
- package/ibc/core/channel/v1/tx.d.ts +335 -30
- package/ibc/core/channel/v1/tx.js +129 -0
- package/ibc/core/channel/v2/genesis.d.ts +81 -14
- package/ibc/core/channel/v2/genesis.js +21 -0
- package/ibc/core/channel/v2/packet.d.ts +137 -28
- package/ibc/core/channel/v2/packet.js +29 -0
- package/ibc/core/channel/v2/query.d.ts +490 -98
- package/ibc/core/channel/v2/query.js +100 -0
- package/ibc/core/channel/v2/tx.d.ts +144 -16
- package/ibc/core/channel/v2/tx.js +48 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/genesis.d.ts +82 -16
- package/ibc/core/client/v1/genesis.js +20 -0
- package/ibc/core/client/v1/query.d.ts +508 -74
- package/ibc/core/client/v1/query.js +154 -0
- package/ibc/core/client/v1/tx.amino.d.ts +1 -6
- package/ibc/core/client/v1/tx.amino.js +0 -5
- package/ibc/core/client/v1/tx.d.ts +336 -138
- package/ibc/core/client/v1/tx.js +87 -152
- package/ibc/core/client/v1/tx.registry.d.ts +1 -13
- package/ibc/core/client/v1/tx.registry.js +1 -19
- package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
- package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
- package/ibc/core/client/v2/config.d.ts +21 -2
- package/ibc/core/client/v2/config.js +9 -0
- package/ibc/core/client/v2/counterparty.d.ts +30 -6
- package/ibc/core/client/v2/counterparty.js +6 -0
- package/ibc/core/client/v2/genesis.d.ts +54 -10
- package/ibc/core/client/v2/genesis.js +12 -0
- package/ibc/core/client/v2/query.d.ts +74 -8
- package/ibc/core/client/v2/query.js +26 -0
- package/ibc/core/client/v2/tx.d.ts +108 -20
- package/ibc/core/client/v2/tx.js +24 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/commitment/v2/commitment.d.ts +42 -0
- package/ibc/core/commitment/v2/commitment.js +36 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +6 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +83 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/lcd.d.ts +3 -0
- package/ibc/lcd.js +5 -0
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
- package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
- package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
- package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +24 -0
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
- package/ibc/lightclients/wasm/v1/wasm.js +19 -74
- package/ibc/rpc.query.d.ts +11 -9
- package/ibc/rpc.query.js +3 -5
- package/ibc/rpc.tx.d.ts +3 -0
- package/ibc/rpc.tx.js +3 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/sparkdream/blog/module/v1/module.d.ts +54 -0
- package/sparkdream/{sparkdream/module → blog/module/v1}/module.js +9 -3
- package/sparkdream/{sparkdream → blog/v1}/genesis.d.ts +28 -8
- package/sparkdream/{sparkdream → blog/v1}/genesis.js +9 -3
- package/sparkdream/blog/{params.d.ts → v1/params.d.ts} +21 -5
- package/sparkdream/blog/{params.js → v1/params.js} +9 -3
- package/sparkdream/blog/{post.d.ts → v1/post.d.ts} +22 -4
- package/sparkdream/blog/{post.js → v1/post.js} +9 -3
- package/sparkdream/blog/{query.d.ts → v1/query.d.ts} +129 -21
- package/sparkdream/blog/{query.js → v1/query.js} +50 -14
- package/sparkdream/blog/{query.lcd.js → v1/query.lcd.js} +6 -6
- package/sparkdream/blog/{query.rpc.Query.d.ts → v1/query.rpc.Query.d.ts} +3 -3
- package/sparkdream/blog/{query.rpc.Query.js → v1/query.rpc.Query.js} +6 -6
- package/sparkdream/blog/{tx.amino.d.ts → v1/tx.amino.d.ts} +4 -4
- package/sparkdream/blog/{tx.amino.js → v1/tx.amino.js} +7 -7
- package/sparkdream/blog/{tx.d.ts → v1/tx.d.ts} +168 -23
- package/sparkdream/blog/{tx.js → v1/tx.js} +66 -17
- package/sparkdream/blog/{tx.registry.d.ts → v1/tx.registry.d.ts} +1 -1
- package/sparkdream/blog/{tx.registry.js → v1/tx.registry.js} +13 -13
- package/sparkdream/blog/{tx.rpc.msg.d.ts → v1/tx.rpc.msg.d.ts} +4 -1
- package/sparkdream/blog/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +8 -8
- package/sparkdream/bundle.d.ts +461 -419
- package/sparkdream/bundle.js +68 -48
- package/sparkdream/client.d.ts +15 -15
- package/sparkdream/client.js +7 -7
- package/sparkdream/lcd.d.ts +6 -2
- package/sparkdream/lcd.js +10 -6
- package/sparkdream/rpc.query.d.ts +9 -13
- package/sparkdream/rpc.query.js +6 -7
- package/sparkdream/rpc.tx.d.ts +6 -2
- package/sparkdream/rpc.tx.js +6 -2
- package/sparkdream/sparkdream/module/v1/module.d.ts +54 -0
- package/sparkdream/{blog/module → sparkdream/module/v1}/module.js +9 -3
- package/sparkdream/sparkdream/v1/genesis.d.ts +53 -0
- package/sparkdream/{blog → sparkdream/v1}/genesis.js +9 -3
- package/sparkdream/sparkdream/{params.d.ts → v1/params.d.ts} +21 -5
- package/sparkdream/sparkdream/{params.js → v1/params.js} +9 -3
- package/sparkdream/sparkdream/{query.d.ts → v1/query.d.ts} +48 -12
- package/sparkdream/sparkdream/{query.js → v1/query.js} +17 -5
- package/sparkdream/sparkdream/{query.lcd.js → v1/query.lcd.js} +1 -1
- package/sparkdream/sparkdream/{query.rpc.Query.d.ts → v1/query.rpc.Query.d.ts} +1 -1
- package/sparkdream/sparkdream/{query.rpc.Query.js → v1/query.rpc.Query.js} +2 -2
- package/sparkdream/sparkdream/{tx.amino.d.ts → v1/tx.amino.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.amino.js → v1/tx.amino.js} +1 -1
- package/sparkdream/sparkdream/{tx.d.ts → v1/tx.d.ts} +42 -9
- package/sparkdream/sparkdream/{tx.js → v1/tx.js} +18 -5
- package/sparkdream/sparkdream/{tx.registry.d.ts → v1/tx.registry.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.registry.js → v1/tx.registry.js} +4 -4
- package/sparkdream/sparkdream/{tx.rpc.msg.d.ts → v1/tx.rpc.msg.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +2 -2
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +20 -20
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +20 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
- package/cosmos/orm/module/v1alpha1/module.js +0 -62
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
- package/cosmos/orm/query/v1alpha1/query.js +0 -695
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
- package/sparkdream/blog/genesis.d.ts +0 -33
- package/sparkdream/blog/module/module.d.ts +0 -32
- package/sparkdream/sparkdream/module/module.d.ts +0 -32
- /package/sparkdream/blog/{query.lcd.d.ts → v1/query.lcd.d.ts} +0 -0
- /package/sparkdream/sparkdream/{query.lcd.d.ts → v1/query.lcd.d.ts} +0 -0
|
@@ -5,12 +5,17 @@ import { DeepPartial } from "../../../helpers";
|
|
|
5
5
|
/**
|
|
6
6
|
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
7
7
|
* account.
|
|
8
|
+
* @name MsgCreateVestingAccount
|
|
9
|
+
* @package cosmos.vesting.v1beta1
|
|
10
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccount
|
|
8
11
|
*/
|
|
9
12
|
export interface MsgCreateVestingAccount {
|
|
10
13
|
fromAddress: string;
|
|
11
14
|
toAddress: string;
|
|
12
15
|
amount: Coin[];
|
|
13
|
-
/**
|
|
16
|
+
/**
|
|
17
|
+
* end of vesting as unix time (in seconds).
|
|
18
|
+
*/
|
|
14
19
|
endTime: bigint;
|
|
15
20
|
delayed: boolean;
|
|
16
21
|
}
|
|
@@ -21,12 +26,17 @@ export interface MsgCreateVestingAccountProtoMsg {
|
|
|
21
26
|
/**
|
|
22
27
|
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
23
28
|
* account.
|
|
29
|
+
* @name MsgCreateVestingAccountAmino
|
|
30
|
+
* @package cosmos.vesting.v1beta1
|
|
31
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccount
|
|
24
32
|
*/
|
|
25
33
|
export interface MsgCreateVestingAccountAmino {
|
|
26
34
|
from_address?: string;
|
|
27
35
|
to_address?: string;
|
|
28
36
|
amount: CoinAmino[];
|
|
29
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* end of vesting as unix time (in seconds).
|
|
39
|
+
*/
|
|
30
40
|
end_time?: string;
|
|
31
41
|
delayed?: boolean;
|
|
32
42
|
}
|
|
@@ -34,14 +44,24 @@ export interface MsgCreateVestingAccountAminoMsg {
|
|
|
34
44
|
type: "cosmos-sdk/MsgCreateVestingAccount";
|
|
35
45
|
value: MsgCreateVestingAccountAmino;
|
|
36
46
|
}
|
|
37
|
-
/**
|
|
47
|
+
/**
|
|
48
|
+
* MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type.
|
|
49
|
+
* @name MsgCreateVestingAccountResponse
|
|
50
|
+
* @package cosmos.vesting.v1beta1
|
|
51
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse
|
|
52
|
+
*/
|
|
38
53
|
export interface MsgCreateVestingAccountResponse {
|
|
39
54
|
}
|
|
40
55
|
export interface MsgCreateVestingAccountResponseProtoMsg {
|
|
41
56
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse";
|
|
42
57
|
value: Uint8Array;
|
|
43
58
|
}
|
|
44
|
-
/**
|
|
59
|
+
/**
|
|
60
|
+
* MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type.
|
|
61
|
+
* @name MsgCreateVestingAccountResponseAmino
|
|
62
|
+
* @package cosmos.vesting.v1beta1
|
|
63
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse
|
|
64
|
+
*/
|
|
45
65
|
export interface MsgCreateVestingAccountResponseAmino {
|
|
46
66
|
}
|
|
47
67
|
export interface MsgCreateVestingAccountResponseAminoMsg {
|
|
@@ -51,8 +71,9 @@ export interface MsgCreateVestingAccountResponseAminoMsg {
|
|
|
51
71
|
/**
|
|
52
72
|
* MsgCreatePermanentLockedAccount defines a message that enables creating a permanent
|
|
53
73
|
* locked account.
|
|
54
|
-
*
|
|
55
|
-
*
|
|
74
|
+
* @name MsgCreatePermanentLockedAccount
|
|
75
|
+
* @package cosmos.vesting.v1beta1
|
|
76
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount
|
|
56
77
|
*/
|
|
57
78
|
export interface MsgCreatePermanentLockedAccount {
|
|
58
79
|
fromAddress: string;
|
|
@@ -66,8 +87,9 @@ export interface MsgCreatePermanentLockedAccountProtoMsg {
|
|
|
66
87
|
/**
|
|
67
88
|
* MsgCreatePermanentLockedAccount defines a message that enables creating a permanent
|
|
68
89
|
* locked account.
|
|
69
|
-
*
|
|
70
|
-
*
|
|
90
|
+
* @name MsgCreatePermanentLockedAccountAmino
|
|
91
|
+
* @package cosmos.vesting.v1beta1
|
|
92
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount
|
|
71
93
|
*/
|
|
72
94
|
export interface MsgCreatePermanentLockedAccountAmino {
|
|
73
95
|
from_address?: string;
|
|
@@ -80,8 +102,9 @@ export interface MsgCreatePermanentLockedAccountAminoMsg {
|
|
|
80
102
|
}
|
|
81
103
|
/**
|
|
82
104
|
* MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type.
|
|
83
|
-
*
|
|
84
|
-
*
|
|
105
|
+
* @name MsgCreatePermanentLockedAccountResponse
|
|
106
|
+
* @package cosmos.vesting.v1beta1
|
|
107
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse
|
|
85
108
|
*/
|
|
86
109
|
export interface MsgCreatePermanentLockedAccountResponse {
|
|
87
110
|
}
|
|
@@ -91,8 +114,9 @@ export interface MsgCreatePermanentLockedAccountResponseProtoMsg {
|
|
|
91
114
|
}
|
|
92
115
|
/**
|
|
93
116
|
* MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type.
|
|
94
|
-
*
|
|
95
|
-
*
|
|
117
|
+
* @name MsgCreatePermanentLockedAccountResponseAmino
|
|
118
|
+
* @package cosmos.vesting.v1beta1
|
|
119
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse
|
|
96
120
|
*/
|
|
97
121
|
export interface MsgCreatePermanentLockedAccountResponseAmino {
|
|
98
122
|
}
|
|
@@ -103,13 +127,16 @@ export interface MsgCreatePermanentLockedAccountResponseAminoMsg {
|
|
|
103
127
|
/**
|
|
104
128
|
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
105
129
|
* account.
|
|
106
|
-
*
|
|
107
|
-
*
|
|
130
|
+
* @name MsgCreatePeriodicVestingAccount
|
|
131
|
+
* @package cosmos.vesting.v1beta1
|
|
132
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount
|
|
108
133
|
*/
|
|
109
134
|
export interface MsgCreatePeriodicVestingAccount {
|
|
110
135
|
fromAddress: string;
|
|
111
136
|
toAddress: string;
|
|
112
|
-
/**
|
|
137
|
+
/**
|
|
138
|
+
* start of vesting as unix time (in seconds).
|
|
139
|
+
*/
|
|
113
140
|
startTime: bigint;
|
|
114
141
|
vestingPeriods: Period[];
|
|
115
142
|
}
|
|
@@ -120,13 +147,16 @@ export interface MsgCreatePeriodicVestingAccountProtoMsg {
|
|
|
120
147
|
/**
|
|
121
148
|
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
122
149
|
* account.
|
|
123
|
-
*
|
|
124
|
-
*
|
|
150
|
+
* @name MsgCreatePeriodicVestingAccountAmino
|
|
151
|
+
* @package cosmos.vesting.v1beta1
|
|
152
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount
|
|
125
153
|
*/
|
|
126
154
|
export interface MsgCreatePeriodicVestingAccountAmino {
|
|
127
155
|
from_address?: string;
|
|
128
156
|
to_address?: string;
|
|
129
|
-
/**
|
|
157
|
+
/**
|
|
158
|
+
* start of vesting as unix time (in seconds).
|
|
159
|
+
*/
|
|
130
160
|
start_time?: string;
|
|
131
161
|
vesting_periods: PeriodAmino[];
|
|
132
162
|
}
|
|
@@ -137,8 +167,9 @@ export interface MsgCreatePeriodicVestingAccountAminoMsg {
|
|
|
137
167
|
/**
|
|
138
168
|
* MsgCreateVestingAccountResponse defines the Msg/CreatePeriodicVestingAccount
|
|
139
169
|
* response type.
|
|
140
|
-
*
|
|
141
|
-
*
|
|
170
|
+
* @name MsgCreatePeriodicVestingAccountResponse
|
|
171
|
+
* @package cosmos.vesting.v1beta1
|
|
172
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse
|
|
142
173
|
*/
|
|
143
174
|
export interface MsgCreatePeriodicVestingAccountResponse {
|
|
144
175
|
}
|
|
@@ -149,8 +180,9 @@ export interface MsgCreatePeriodicVestingAccountResponseProtoMsg {
|
|
|
149
180
|
/**
|
|
150
181
|
* MsgCreateVestingAccountResponse defines the Msg/CreatePeriodicVestingAccount
|
|
151
182
|
* response type.
|
|
152
|
-
*
|
|
153
|
-
*
|
|
183
|
+
* @name MsgCreatePeriodicVestingAccountResponseAmino
|
|
184
|
+
* @package cosmos.vesting.v1beta1
|
|
185
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse
|
|
154
186
|
*/
|
|
155
187
|
export interface MsgCreatePeriodicVestingAccountResponseAmino {
|
|
156
188
|
}
|
|
@@ -158,6 +190,13 @@ export interface MsgCreatePeriodicVestingAccountResponseAminoMsg {
|
|
|
158
190
|
type: "cosmos-sdk/MsgCreatePeriodicVestingAccountResponse";
|
|
159
191
|
value: MsgCreatePeriodicVestingAccountResponseAmino;
|
|
160
192
|
}
|
|
193
|
+
/**
|
|
194
|
+
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
195
|
+
* account.
|
|
196
|
+
* @name MsgCreateVestingAccount
|
|
197
|
+
* @package cosmos.vesting.v1beta1
|
|
198
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccount
|
|
199
|
+
*/
|
|
161
200
|
export declare const MsgCreateVestingAccount: {
|
|
162
201
|
typeUrl: string;
|
|
163
202
|
aminoType: string;
|
|
@@ -172,6 +211,12 @@ export declare const MsgCreateVestingAccount: {
|
|
|
172
211
|
toProto(message: MsgCreateVestingAccount): Uint8Array;
|
|
173
212
|
toProtoMsg(message: MsgCreateVestingAccount): MsgCreateVestingAccountProtoMsg;
|
|
174
213
|
};
|
|
214
|
+
/**
|
|
215
|
+
* MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type.
|
|
216
|
+
* @name MsgCreateVestingAccountResponse
|
|
217
|
+
* @package cosmos.vesting.v1beta1
|
|
218
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse
|
|
219
|
+
*/
|
|
175
220
|
export declare const MsgCreateVestingAccountResponse: {
|
|
176
221
|
typeUrl: string;
|
|
177
222
|
aminoType: string;
|
|
@@ -186,6 +231,13 @@ export declare const MsgCreateVestingAccountResponse: {
|
|
|
186
231
|
toProto(message: MsgCreateVestingAccountResponse): Uint8Array;
|
|
187
232
|
toProtoMsg(message: MsgCreateVestingAccountResponse): MsgCreateVestingAccountResponseProtoMsg;
|
|
188
233
|
};
|
|
234
|
+
/**
|
|
235
|
+
* MsgCreatePermanentLockedAccount defines a message that enables creating a permanent
|
|
236
|
+
* locked account.
|
|
237
|
+
* @name MsgCreatePermanentLockedAccount
|
|
238
|
+
* @package cosmos.vesting.v1beta1
|
|
239
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount
|
|
240
|
+
*/
|
|
189
241
|
export declare const MsgCreatePermanentLockedAccount: {
|
|
190
242
|
typeUrl: string;
|
|
191
243
|
aminoType: string;
|
|
@@ -200,6 +252,12 @@ export declare const MsgCreatePermanentLockedAccount: {
|
|
|
200
252
|
toProto(message: MsgCreatePermanentLockedAccount): Uint8Array;
|
|
201
253
|
toProtoMsg(message: MsgCreatePermanentLockedAccount): MsgCreatePermanentLockedAccountProtoMsg;
|
|
202
254
|
};
|
|
255
|
+
/**
|
|
256
|
+
* MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type.
|
|
257
|
+
* @name MsgCreatePermanentLockedAccountResponse
|
|
258
|
+
* @package cosmos.vesting.v1beta1
|
|
259
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse
|
|
260
|
+
*/
|
|
203
261
|
export declare const MsgCreatePermanentLockedAccountResponse: {
|
|
204
262
|
typeUrl: string;
|
|
205
263
|
aminoType: string;
|
|
@@ -214,6 +272,13 @@ export declare const MsgCreatePermanentLockedAccountResponse: {
|
|
|
214
272
|
toProto(message: MsgCreatePermanentLockedAccountResponse): Uint8Array;
|
|
215
273
|
toProtoMsg(message: MsgCreatePermanentLockedAccountResponse): MsgCreatePermanentLockedAccountResponseProtoMsg;
|
|
216
274
|
};
|
|
275
|
+
/**
|
|
276
|
+
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
277
|
+
* account.
|
|
278
|
+
* @name MsgCreatePeriodicVestingAccount
|
|
279
|
+
* @package cosmos.vesting.v1beta1
|
|
280
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount
|
|
281
|
+
*/
|
|
217
282
|
export declare const MsgCreatePeriodicVestingAccount: {
|
|
218
283
|
typeUrl: string;
|
|
219
284
|
aminoType: string;
|
|
@@ -228,6 +293,13 @@ export declare const MsgCreatePeriodicVestingAccount: {
|
|
|
228
293
|
toProto(message: MsgCreatePeriodicVestingAccount): Uint8Array;
|
|
229
294
|
toProtoMsg(message: MsgCreatePeriodicVestingAccount): MsgCreatePeriodicVestingAccountProtoMsg;
|
|
230
295
|
};
|
|
296
|
+
/**
|
|
297
|
+
* MsgCreateVestingAccountResponse defines the Msg/CreatePeriodicVestingAccount
|
|
298
|
+
* response type.
|
|
299
|
+
* @name MsgCreatePeriodicVestingAccountResponse
|
|
300
|
+
* @package cosmos.vesting.v1beta1
|
|
301
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse
|
|
302
|
+
*/
|
|
231
303
|
export declare const MsgCreatePeriodicVestingAccountResponse: {
|
|
232
304
|
typeUrl: string;
|
|
233
305
|
aminoType: string;
|
|
@@ -14,6 +14,13 @@ function createBaseMsgCreateVestingAccount() {
|
|
|
14
14
|
delayed: false
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
19
|
+
* account.
|
|
20
|
+
* @name MsgCreateVestingAccount
|
|
21
|
+
* @package cosmos.vesting.v1beta1
|
|
22
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccount
|
|
23
|
+
*/
|
|
17
24
|
exports.MsgCreateVestingAccount = {
|
|
18
25
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccount",
|
|
19
26
|
aminoType: "cosmos-sdk/MsgCreateVestingAccount",
|
|
@@ -129,6 +136,12 @@ exports.MsgCreateVestingAccount = {
|
|
|
129
136
|
function createBaseMsgCreateVestingAccountResponse() {
|
|
130
137
|
return {};
|
|
131
138
|
}
|
|
139
|
+
/**
|
|
140
|
+
* MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type.
|
|
141
|
+
* @name MsgCreateVestingAccountResponse
|
|
142
|
+
* @package cosmos.vesting.v1beta1
|
|
143
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse
|
|
144
|
+
*/
|
|
132
145
|
exports.MsgCreateVestingAccountResponse = {
|
|
133
146
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse",
|
|
134
147
|
aminoType: "cosmos-sdk/MsgCreateVestingAccountResponse",
|
|
@@ -190,6 +203,13 @@ function createBaseMsgCreatePermanentLockedAccount() {
|
|
|
190
203
|
amount: []
|
|
191
204
|
};
|
|
192
205
|
}
|
|
206
|
+
/**
|
|
207
|
+
* MsgCreatePermanentLockedAccount defines a message that enables creating a permanent
|
|
208
|
+
* locked account.
|
|
209
|
+
* @name MsgCreatePermanentLockedAccount
|
|
210
|
+
* @package cosmos.vesting.v1beta1
|
|
211
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount
|
|
212
|
+
*/
|
|
193
213
|
exports.MsgCreatePermanentLockedAccount = {
|
|
194
214
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount",
|
|
195
215
|
aminoType: "cosmos-sdk/MsgCreatePermLockedAccount",
|
|
@@ -283,6 +303,12 @@ exports.MsgCreatePermanentLockedAccount = {
|
|
|
283
303
|
function createBaseMsgCreatePermanentLockedAccountResponse() {
|
|
284
304
|
return {};
|
|
285
305
|
}
|
|
306
|
+
/**
|
|
307
|
+
* MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type.
|
|
308
|
+
* @name MsgCreatePermanentLockedAccountResponse
|
|
309
|
+
* @package cosmos.vesting.v1beta1
|
|
310
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse
|
|
311
|
+
*/
|
|
286
312
|
exports.MsgCreatePermanentLockedAccountResponse = {
|
|
287
313
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse",
|
|
288
314
|
aminoType: "cosmos-sdk/MsgCreatePermanentLockedAccountResponse",
|
|
@@ -345,6 +371,13 @@ function createBaseMsgCreatePeriodicVestingAccount() {
|
|
|
345
371
|
vestingPeriods: []
|
|
346
372
|
};
|
|
347
373
|
}
|
|
374
|
+
/**
|
|
375
|
+
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
376
|
+
* account.
|
|
377
|
+
* @name MsgCreatePeriodicVestingAccount
|
|
378
|
+
* @package cosmos.vesting.v1beta1
|
|
379
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount
|
|
380
|
+
*/
|
|
348
381
|
exports.MsgCreatePeriodicVestingAccount = {
|
|
349
382
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount",
|
|
350
383
|
aminoType: "cosmos-sdk/MsgCreatePeriodVestAccount",
|
|
@@ -449,6 +482,13 @@ exports.MsgCreatePeriodicVestingAccount = {
|
|
|
449
482
|
function createBaseMsgCreatePeriodicVestingAccountResponse() {
|
|
450
483
|
return {};
|
|
451
484
|
}
|
|
485
|
+
/**
|
|
486
|
+
* MsgCreateVestingAccountResponse defines the Msg/CreatePeriodicVestingAccount
|
|
487
|
+
* response type.
|
|
488
|
+
* @name MsgCreatePeriodicVestingAccountResponse
|
|
489
|
+
* @package cosmos.vesting.v1beta1
|
|
490
|
+
* @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse
|
|
491
|
+
*/
|
|
452
492
|
exports.MsgCreatePeriodicVestingAccountResponse = {
|
|
453
493
|
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse",
|
|
454
494
|
aminoType: "cosmos-sdk/MsgCreatePeriodicVestingAccountResponse",
|
|
@@ -10,15 +10,11 @@ export interface Msg {
|
|
|
10
10
|
/**
|
|
11
11
|
* CreatePermanentLockedAccount defines a method that enables creating a permanent
|
|
12
12
|
* locked account.
|
|
13
|
-
*
|
|
14
|
-
* Since: cosmos-sdk 0.46
|
|
15
13
|
*/
|
|
16
14
|
createPermanentLockedAccount(request: MsgCreatePermanentLockedAccount): Promise<MsgCreatePermanentLockedAccountResponse>;
|
|
17
15
|
/**
|
|
18
16
|
* CreatePeriodicVestingAccount defines a method that enables creating a
|
|
19
17
|
* periodic vesting account.
|
|
20
|
-
*
|
|
21
|
-
* Since: cosmos-sdk 0.46
|
|
22
18
|
*/
|
|
23
19
|
createPeriodicVestingAccount(request: MsgCreatePeriodicVestingAccount): Promise<MsgCreatePeriodicVestingAccountResponse>;
|
|
24
20
|
}
|
|
@@ -16,18 +16,14 @@ class MsgClientImpl {
|
|
|
16
16
|
return promise.then(data => tx_1.MsgCreateVestingAccountResponse.decode(new binary_1.BinaryReader(data)));
|
|
17
17
|
};
|
|
18
18
|
/* CreatePermanentLockedAccount defines a method that enables creating a permanent
|
|
19
|
-
locked account.
|
|
20
|
-
|
|
21
|
-
Since: cosmos-sdk 0.46 */
|
|
19
|
+
locked account. */
|
|
22
20
|
createPermanentLockedAccount = async (request) => {
|
|
23
21
|
const data = tx_1.MsgCreatePermanentLockedAccount.encode(request).finish();
|
|
24
22
|
const promise = this.rpc.request("cosmos.vesting.v1beta1.Msg", "CreatePermanentLockedAccount", data);
|
|
25
23
|
return promise.then(data => tx_1.MsgCreatePermanentLockedAccountResponse.decode(new binary_1.BinaryReader(data)));
|
|
26
24
|
};
|
|
27
25
|
/* CreatePeriodicVestingAccount defines a method that enables creating a
|
|
28
|
-
periodic vesting account.
|
|
29
|
-
|
|
30
|
-
Since: cosmos-sdk 0.46 */
|
|
26
|
+
periodic vesting account. */
|
|
31
27
|
createPeriodicVestingAccount = async (request) => {
|
|
32
28
|
const data = tx_1.MsgCreatePeriodicVestingAccount.encode(request).finish();
|
|
33
29
|
const promise = this.rpc.request("cosmos.vesting.v1beta1.Msg", "CreatePeriodicVestingAccount", data);
|
|
@@ -5,13 +5,18 @@ import { DeepPartial } from "../../../helpers";
|
|
|
5
5
|
/**
|
|
6
6
|
* BaseVestingAccount implements the VestingAccount interface. It contains all
|
|
7
7
|
* the necessary fields needed for any vesting account implementation.
|
|
8
|
+
* @name BaseVestingAccount
|
|
9
|
+
* @package cosmos.vesting.v1beta1
|
|
10
|
+
* @see proto type: cosmos.vesting.v1beta1.BaseVestingAccount
|
|
8
11
|
*/
|
|
9
12
|
export interface BaseVestingAccount {
|
|
10
13
|
baseAccount?: BaseAccount;
|
|
11
14
|
originalVesting: Coin[];
|
|
12
15
|
delegatedFree: Coin[];
|
|
13
16
|
delegatedVesting: Coin[];
|
|
14
|
-
/**
|
|
17
|
+
/**
|
|
18
|
+
* Vesting end time, as unix timestamp (in seconds).
|
|
19
|
+
*/
|
|
15
20
|
endTime: bigint;
|
|
16
21
|
}
|
|
17
22
|
export interface BaseVestingAccountProtoMsg {
|
|
@@ -21,13 +26,18 @@ export interface BaseVestingAccountProtoMsg {
|
|
|
21
26
|
/**
|
|
22
27
|
* BaseVestingAccount implements the VestingAccount interface. It contains all
|
|
23
28
|
* the necessary fields needed for any vesting account implementation.
|
|
29
|
+
* @name BaseVestingAccountAmino
|
|
30
|
+
* @package cosmos.vesting.v1beta1
|
|
31
|
+
* @see proto type: cosmos.vesting.v1beta1.BaseVestingAccount
|
|
24
32
|
*/
|
|
25
33
|
export interface BaseVestingAccountAmino {
|
|
26
34
|
base_account?: BaseAccountAmino;
|
|
27
35
|
original_vesting: CoinAmino[];
|
|
28
36
|
delegated_free: CoinAmino[];
|
|
29
37
|
delegated_vesting: CoinAmino[];
|
|
30
|
-
/**
|
|
38
|
+
/**
|
|
39
|
+
* Vesting end time, as unix timestamp (in seconds).
|
|
40
|
+
*/
|
|
31
41
|
end_time?: string;
|
|
32
42
|
}
|
|
33
43
|
export interface BaseVestingAccountAminoMsg {
|
|
@@ -37,10 +47,15 @@ export interface BaseVestingAccountAminoMsg {
|
|
|
37
47
|
/**
|
|
38
48
|
* ContinuousVestingAccount implements the VestingAccount interface. It
|
|
39
49
|
* continuously vests by unlocking coins linearly with respect to time.
|
|
50
|
+
* @name ContinuousVestingAccount
|
|
51
|
+
* @package cosmos.vesting.v1beta1
|
|
52
|
+
* @see proto type: cosmos.vesting.v1beta1.ContinuousVestingAccount
|
|
40
53
|
*/
|
|
41
54
|
export interface ContinuousVestingAccount {
|
|
42
55
|
baseVestingAccount?: BaseVestingAccount;
|
|
43
|
-
/**
|
|
56
|
+
/**
|
|
57
|
+
* Vesting start time, as unix timestamp (in seconds).
|
|
58
|
+
*/
|
|
44
59
|
startTime: bigint;
|
|
45
60
|
}
|
|
46
61
|
export interface ContinuousVestingAccountProtoMsg {
|
|
@@ -50,10 +65,15 @@ export interface ContinuousVestingAccountProtoMsg {
|
|
|
50
65
|
/**
|
|
51
66
|
* ContinuousVestingAccount implements the VestingAccount interface. It
|
|
52
67
|
* continuously vests by unlocking coins linearly with respect to time.
|
|
68
|
+
* @name ContinuousVestingAccountAmino
|
|
69
|
+
* @package cosmos.vesting.v1beta1
|
|
70
|
+
* @see proto type: cosmos.vesting.v1beta1.ContinuousVestingAccount
|
|
53
71
|
*/
|
|
54
72
|
export interface ContinuousVestingAccountAmino {
|
|
55
73
|
base_vesting_account?: BaseVestingAccountAmino;
|
|
56
|
-
/**
|
|
74
|
+
/**
|
|
75
|
+
* Vesting start time, as unix timestamp (in seconds).
|
|
76
|
+
*/
|
|
57
77
|
start_time?: string;
|
|
58
78
|
}
|
|
59
79
|
export interface ContinuousVestingAccountAminoMsg {
|
|
@@ -64,6 +84,9 @@ export interface ContinuousVestingAccountAminoMsg {
|
|
|
64
84
|
* DelayedVestingAccount implements the VestingAccount interface. It vests all
|
|
65
85
|
* coins after a specific time, but non prior. In other words, it keeps them
|
|
66
86
|
* locked until a specified time.
|
|
87
|
+
* @name DelayedVestingAccount
|
|
88
|
+
* @package cosmos.vesting.v1beta1
|
|
89
|
+
* @see proto type: cosmos.vesting.v1beta1.DelayedVestingAccount
|
|
67
90
|
*/
|
|
68
91
|
export interface DelayedVestingAccount {
|
|
69
92
|
baseVestingAccount?: BaseVestingAccount;
|
|
@@ -76,6 +99,9 @@ export interface DelayedVestingAccountProtoMsg {
|
|
|
76
99
|
* DelayedVestingAccount implements the VestingAccount interface. It vests all
|
|
77
100
|
* coins after a specific time, but non prior. In other words, it keeps them
|
|
78
101
|
* locked until a specified time.
|
|
102
|
+
* @name DelayedVestingAccountAmino
|
|
103
|
+
* @package cosmos.vesting.v1beta1
|
|
104
|
+
* @see proto type: cosmos.vesting.v1beta1.DelayedVestingAccount
|
|
79
105
|
*/
|
|
80
106
|
export interface DelayedVestingAccountAmino {
|
|
81
107
|
base_vesting_account?: BaseVestingAccountAmino;
|
|
@@ -84,9 +110,16 @@ export interface DelayedVestingAccountAminoMsg {
|
|
|
84
110
|
type: "cosmos-sdk/DelayedVestingAccount";
|
|
85
111
|
value: DelayedVestingAccountAmino;
|
|
86
112
|
}
|
|
87
|
-
/**
|
|
113
|
+
/**
|
|
114
|
+
* Period defines a length of time and amount of coins that will vest.
|
|
115
|
+
* @name Period
|
|
116
|
+
* @package cosmos.vesting.v1beta1
|
|
117
|
+
* @see proto type: cosmos.vesting.v1beta1.Period
|
|
118
|
+
*/
|
|
88
119
|
export interface Period {
|
|
89
|
-
/**
|
|
120
|
+
/**
|
|
121
|
+
* Period duration in seconds.
|
|
122
|
+
*/
|
|
90
123
|
length: bigint;
|
|
91
124
|
amount: Coin[];
|
|
92
125
|
}
|
|
@@ -94,9 +127,16 @@ export interface PeriodProtoMsg {
|
|
|
94
127
|
typeUrl: "/cosmos.vesting.v1beta1.Period";
|
|
95
128
|
value: Uint8Array;
|
|
96
129
|
}
|
|
97
|
-
/**
|
|
130
|
+
/**
|
|
131
|
+
* Period defines a length of time and amount of coins that will vest.
|
|
132
|
+
* @name PeriodAmino
|
|
133
|
+
* @package cosmos.vesting.v1beta1
|
|
134
|
+
* @see proto type: cosmos.vesting.v1beta1.Period
|
|
135
|
+
*/
|
|
98
136
|
export interface PeriodAmino {
|
|
99
|
-
/**
|
|
137
|
+
/**
|
|
138
|
+
* Period duration in seconds.
|
|
139
|
+
*/
|
|
100
140
|
length?: string;
|
|
101
141
|
amount: CoinAmino[];
|
|
102
142
|
}
|
|
@@ -107,6 +147,9 @@ export interface PeriodAminoMsg {
|
|
|
107
147
|
/**
|
|
108
148
|
* PeriodicVestingAccount implements the VestingAccount interface. It
|
|
109
149
|
* periodically vests by unlocking coins during each specified period.
|
|
150
|
+
* @name PeriodicVestingAccount
|
|
151
|
+
* @package cosmos.vesting.v1beta1
|
|
152
|
+
* @see proto type: cosmos.vesting.v1beta1.PeriodicVestingAccount
|
|
110
153
|
*/
|
|
111
154
|
export interface PeriodicVestingAccount {
|
|
112
155
|
baseVestingAccount?: BaseVestingAccount;
|
|
@@ -120,6 +163,9 @@ export interface PeriodicVestingAccountProtoMsg {
|
|
|
120
163
|
/**
|
|
121
164
|
* PeriodicVestingAccount implements the VestingAccount interface. It
|
|
122
165
|
* periodically vests by unlocking coins during each specified period.
|
|
166
|
+
* @name PeriodicVestingAccountAmino
|
|
167
|
+
* @package cosmos.vesting.v1beta1
|
|
168
|
+
* @see proto type: cosmos.vesting.v1beta1.PeriodicVestingAccount
|
|
123
169
|
*/
|
|
124
170
|
export interface PeriodicVestingAccountAmino {
|
|
125
171
|
base_vesting_account?: BaseVestingAccountAmino;
|
|
@@ -134,8 +180,9 @@ export interface PeriodicVestingAccountAminoMsg {
|
|
|
134
180
|
* PermanentLockedAccount implements the VestingAccount interface. It does
|
|
135
181
|
* not ever release coins, locking them indefinitely. Coins in this account can
|
|
136
182
|
* still be used for delegating and for governance votes even while locked.
|
|
137
|
-
*
|
|
138
|
-
*
|
|
183
|
+
* @name PermanentLockedAccount
|
|
184
|
+
* @package cosmos.vesting.v1beta1
|
|
185
|
+
* @see proto type: cosmos.vesting.v1beta1.PermanentLockedAccount
|
|
139
186
|
*/
|
|
140
187
|
export interface PermanentLockedAccount {
|
|
141
188
|
baseVestingAccount?: BaseVestingAccount;
|
|
@@ -148,8 +195,9 @@ export interface PermanentLockedAccountProtoMsg {
|
|
|
148
195
|
* PermanentLockedAccount implements the VestingAccount interface. It does
|
|
149
196
|
* not ever release coins, locking them indefinitely. Coins in this account can
|
|
150
197
|
* still be used for delegating and for governance votes even while locked.
|
|
151
|
-
*
|
|
152
|
-
*
|
|
198
|
+
* @name PermanentLockedAccountAmino
|
|
199
|
+
* @package cosmos.vesting.v1beta1
|
|
200
|
+
* @see proto type: cosmos.vesting.v1beta1.PermanentLockedAccount
|
|
153
201
|
*/
|
|
154
202
|
export interface PermanentLockedAccountAmino {
|
|
155
203
|
base_vesting_account?: BaseVestingAccountAmino;
|
|
@@ -158,6 +206,13 @@ export interface PermanentLockedAccountAminoMsg {
|
|
|
158
206
|
type: "cosmos-sdk/PermanentLockedAccount";
|
|
159
207
|
value: PermanentLockedAccountAmino;
|
|
160
208
|
}
|
|
209
|
+
/**
|
|
210
|
+
* BaseVestingAccount implements the VestingAccount interface. It contains all
|
|
211
|
+
* the necessary fields needed for any vesting account implementation.
|
|
212
|
+
* @name BaseVestingAccount
|
|
213
|
+
* @package cosmos.vesting.v1beta1
|
|
214
|
+
* @see proto type: cosmos.vesting.v1beta1.BaseVestingAccount
|
|
215
|
+
*/
|
|
161
216
|
export declare const BaseVestingAccount: {
|
|
162
217
|
typeUrl: string;
|
|
163
218
|
aminoType: string;
|
|
@@ -172,6 +227,13 @@ export declare const BaseVestingAccount: {
|
|
|
172
227
|
toProto(message: BaseVestingAccount): Uint8Array;
|
|
173
228
|
toProtoMsg(message: BaseVestingAccount): BaseVestingAccountProtoMsg;
|
|
174
229
|
};
|
|
230
|
+
/**
|
|
231
|
+
* ContinuousVestingAccount implements the VestingAccount interface. It
|
|
232
|
+
* continuously vests by unlocking coins linearly with respect to time.
|
|
233
|
+
* @name ContinuousVestingAccount
|
|
234
|
+
* @package cosmos.vesting.v1beta1
|
|
235
|
+
* @see proto type: cosmos.vesting.v1beta1.ContinuousVestingAccount
|
|
236
|
+
*/
|
|
175
237
|
export declare const ContinuousVestingAccount: {
|
|
176
238
|
typeUrl: string;
|
|
177
239
|
aminoType: string;
|
|
@@ -186,6 +248,14 @@ export declare const ContinuousVestingAccount: {
|
|
|
186
248
|
toProto(message: ContinuousVestingAccount): Uint8Array;
|
|
187
249
|
toProtoMsg(message: ContinuousVestingAccount): ContinuousVestingAccountProtoMsg;
|
|
188
250
|
};
|
|
251
|
+
/**
|
|
252
|
+
* DelayedVestingAccount implements the VestingAccount interface. It vests all
|
|
253
|
+
* coins after a specific time, but non prior. In other words, it keeps them
|
|
254
|
+
* locked until a specified time.
|
|
255
|
+
* @name DelayedVestingAccount
|
|
256
|
+
* @package cosmos.vesting.v1beta1
|
|
257
|
+
* @see proto type: cosmos.vesting.v1beta1.DelayedVestingAccount
|
|
258
|
+
*/
|
|
189
259
|
export declare const DelayedVestingAccount: {
|
|
190
260
|
typeUrl: string;
|
|
191
261
|
aminoType: string;
|
|
@@ -200,6 +270,12 @@ export declare const DelayedVestingAccount: {
|
|
|
200
270
|
toProto(message: DelayedVestingAccount): Uint8Array;
|
|
201
271
|
toProtoMsg(message: DelayedVestingAccount): DelayedVestingAccountProtoMsg;
|
|
202
272
|
};
|
|
273
|
+
/**
|
|
274
|
+
* Period defines a length of time and amount of coins that will vest.
|
|
275
|
+
* @name Period
|
|
276
|
+
* @package cosmos.vesting.v1beta1
|
|
277
|
+
* @see proto type: cosmos.vesting.v1beta1.Period
|
|
278
|
+
*/
|
|
203
279
|
export declare const Period: {
|
|
204
280
|
typeUrl: string;
|
|
205
281
|
aminoType: string;
|
|
@@ -214,6 +290,13 @@ export declare const Period: {
|
|
|
214
290
|
toProto(message: Period): Uint8Array;
|
|
215
291
|
toProtoMsg(message: Period): PeriodProtoMsg;
|
|
216
292
|
};
|
|
293
|
+
/**
|
|
294
|
+
* PeriodicVestingAccount implements the VestingAccount interface. It
|
|
295
|
+
* periodically vests by unlocking coins during each specified period.
|
|
296
|
+
* @name PeriodicVestingAccount
|
|
297
|
+
* @package cosmos.vesting.v1beta1
|
|
298
|
+
* @see proto type: cosmos.vesting.v1beta1.PeriodicVestingAccount
|
|
299
|
+
*/
|
|
217
300
|
export declare const PeriodicVestingAccount: {
|
|
218
301
|
typeUrl: string;
|
|
219
302
|
aminoType: string;
|
|
@@ -228,6 +311,14 @@ export declare const PeriodicVestingAccount: {
|
|
|
228
311
|
toProto(message: PeriodicVestingAccount): Uint8Array;
|
|
229
312
|
toProtoMsg(message: PeriodicVestingAccount): PeriodicVestingAccountProtoMsg;
|
|
230
313
|
};
|
|
314
|
+
/**
|
|
315
|
+
* PermanentLockedAccount implements the VestingAccount interface. It does
|
|
316
|
+
* not ever release coins, locking them indefinitely. Coins in this account can
|
|
317
|
+
* still be used for delegating and for governance votes even while locked.
|
|
318
|
+
* @name PermanentLockedAccount
|
|
319
|
+
* @package cosmos.vesting.v1beta1
|
|
320
|
+
* @see proto type: cosmos.vesting.v1beta1.PermanentLockedAccount
|
|
321
|
+
*/
|
|
231
322
|
export declare const PermanentLockedAccount: {
|
|
232
323
|
typeUrl: string;
|
|
233
324
|
aminoType: string;
|