@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,6 +5,9 @@ import { DeepPartial } from "../../../helpers";
|
|
|
5
5
|
/**
|
|
6
6
|
* MsgFundCommunityPool allows an account to directly
|
|
7
7
|
* fund the community pool.
|
|
8
|
+
* @name MsgFundCommunityPool
|
|
9
|
+
* @package cosmos.protocolpool.v1
|
|
10
|
+
* @see proto type: cosmos.protocolpool.v1.MsgFundCommunityPool
|
|
8
11
|
*/
|
|
9
12
|
export interface MsgFundCommunityPool {
|
|
10
13
|
depositor: string;
|
|
@@ -17,6 +20,9 @@ export interface MsgFundCommunityPoolProtoMsg {
|
|
|
17
20
|
/**
|
|
18
21
|
* MsgFundCommunityPool allows an account to directly
|
|
19
22
|
* fund the community pool.
|
|
23
|
+
* @name MsgFundCommunityPoolAmino
|
|
24
|
+
* @package cosmos.protocolpool.v1
|
|
25
|
+
* @see proto type: cosmos.protocolpool.v1.MsgFundCommunityPool
|
|
20
26
|
*/
|
|
21
27
|
export interface MsgFundCommunityPoolAmino {
|
|
22
28
|
depositor?: string;
|
|
@@ -26,14 +32,24 @@ export interface MsgFundCommunityPoolAminoMsg {
|
|
|
26
32
|
type: "cosmos-sdk/MsgFundCommunityPool";
|
|
27
33
|
value: MsgFundCommunityPoolAmino;
|
|
28
34
|
}
|
|
29
|
-
/**
|
|
35
|
+
/**
|
|
36
|
+
* MsgFundCommunityPoolResponse defines the Msg/FundCommunityPool response type.
|
|
37
|
+
* @name MsgFundCommunityPoolResponse
|
|
38
|
+
* @package cosmos.protocolpool.v1
|
|
39
|
+
* @see proto type: cosmos.protocolpool.v1.MsgFundCommunityPoolResponse
|
|
40
|
+
*/
|
|
30
41
|
export interface MsgFundCommunityPoolResponse {
|
|
31
42
|
}
|
|
32
43
|
export interface MsgFundCommunityPoolResponseProtoMsg {
|
|
33
44
|
typeUrl: "/cosmos.protocolpool.v1.MsgFundCommunityPoolResponse";
|
|
34
45
|
value: Uint8Array;
|
|
35
46
|
}
|
|
36
|
-
/**
|
|
47
|
+
/**
|
|
48
|
+
* MsgFundCommunityPoolResponse defines the Msg/FundCommunityPool response type.
|
|
49
|
+
* @name MsgFundCommunityPoolResponseAmino
|
|
50
|
+
* @package cosmos.protocolpool.v1
|
|
51
|
+
* @see proto type: cosmos.protocolpool.v1.MsgFundCommunityPoolResponse
|
|
52
|
+
*/
|
|
37
53
|
export interface MsgFundCommunityPoolResponseAmino {
|
|
38
54
|
}
|
|
39
55
|
export interface MsgFundCommunityPoolResponseAminoMsg {
|
|
@@ -44,9 +60,14 @@ export interface MsgFundCommunityPoolResponseAminoMsg {
|
|
|
44
60
|
* MsgCommunityPoolSpend defines a message for sending tokens from the community
|
|
45
61
|
* pool to another account. This message is typically executed via a governance
|
|
46
62
|
* proposal with the governance module being the executing authority.
|
|
63
|
+
* @name MsgCommunityPoolSpend
|
|
64
|
+
* @package cosmos.protocolpool.v1
|
|
65
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCommunityPoolSpend
|
|
47
66
|
*/
|
|
48
67
|
export interface MsgCommunityPoolSpend {
|
|
49
|
-
/**
|
|
68
|
+
/**
|
|
69
|
+
* Authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
70
|
+
*/
|
|
50
71
|
authority: string;
|
|
51
72
|
recipient: string;
|
|
52
73
|
amount: Coin[];
|
|
@@ -59,9 +80,14 @@ export interface MsgCommunityPoolSpendProtoMsg {
|
|
|
59
80
|
* MsgCommunityPoolSpend defines a message for sending tokens from the community
|
|
60
81
|
* pool to another account. This message is typically executed via a governance
|
|
61
82
|
* proposal with the governance module being the executing authority.
|
|
83
|
+
* @name MsgCommunityPoolSpendAmino
|
|
84
|
+
* @package cosmos.protocolpool.v1
|
|
85
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCommunityPoolSpend
|
|
62
86
|
*/
|
|
63
87
|
export interface MsgCommunityPoolSpendAmino {
|
|
64
|
-
/**
|
|
88
|
+
/**
|
|
89
|
+
* Authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
90
|
+
*/
|
|
65
91
|
authority?: string;
|
|
66
92
|
recipient?: string;
|
|
67
93
|
amount?: CoinAmino[];
|
|
@@ -73,6 +99,9 @@ export interface MsgCommunityPoolSpendAminoMsg {
|
|
|
73
99
|
/**
|
|
74
100
|
* MsgCommunityPoolSpendResponse defines the response to executing a
|
|
75
101
|
* MsgCommunityPoolSpend message.
|
|
102
|
+
* @name MsgCommunityPoolSpendResponse
|
|
103
|
+
* @package cosmos.protocolpool.v1
|
|
104
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCommunityPoolSpendResponse
|
|
76
105
|
*/
|
|
77
106
|
export interface MsgCommunityPoolSpendResponse {
|
|
78
107
|
}
|
|
@@ -83,6 +112,9 @@ export interface MsgCommunityPoolSpendResponseProtoMsg {
|
|
|
83
112
|
/**
|
|
84
113
|
* MsgCommunityPoolSpendResponse defines the response to executing a
|
|
85
114
|
* MsgCommunityPoolSpend message.
|
|
115
|
+
* @name MsgCommunityPoolSpendResponseAmino
|
|
116
|
+
* @package cosmos.protocolpool.v1
|
|
117
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCommunityPoolSpendResponse
|
|
86
118
|
*/
|
|
87
119
|
export interface MsgCommunityPoolSpendResponseAmino {
|
|
88
120
|
}
|
|
@@ -90,30 +122,56 @@ export interface MsgCommunityPoolSpendResponseAminoMsg {
|
|
|
90
122
|
type: "cosmos-sdk/MsgCommunityPoolSpendResponse";
|
|
91
123
|
value: MsgCommunityPoolSpendResponseAmino;
|
|
92
124
|
}
|
|
93
|
-
/**
|
|
125
|
+
/**
|
|
126
|
+
* MsgCreateContinuousFund defines a message for adding continuous funds.
|
|
127
|
+
* @name MsgCreateContinuousFund
|
|
128
|
+
* @package cosmos.protocolpool.v1
|
|
129
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCreateContinuousFund
|
|
130
|
+
*/
|
|
94
131
|
export interface MsgCreateContinuousFund {
|
|
95
|
-
/**
|
|
132
|
+
/**
|
|
133
|
+
* Authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
134
|
+
*/
|
|
96
135
|
authority: string;
|
|
97
|
-
/**
|
|
136
|
+
/**
|
|
137
|
+
* Recipient address of the account receiving funds.
|
|
138
|
+
*/
|
|
98
139
|
recipient: string;
|
|
99
|
-
/**
|
|
140
|
+
/**
|
|
141
|
+
* Percentage is the percentage of funds to be allocated from Community pool.
|
|
142
|
+
*/
|
|
100
143
|
percentage: string;
|
|
101
|
-
/**
|
|
144
|
+
/**
|
|
145
|
+
* Optional, if expiry is set, removes the state object when expired.
|
|
146
|
+
*/
|
|
102
147
|
expiry?: Date;
|
|
103
148
|
}
|
|
104
149
|
export interface MsgCreateContinuousFundProtoMsg {
|
|
105
150
|
typeUrl: "/cosmos.protocolpool.v1.MsgCreateContinuousFund";
|
|
106
151
|
value: Uint8Array;
|
|
107
152
|
}
|
|
108
|
-
/**
|
|
153
|
+
/**
|
|
154
|
+
* MsgCreateContinuousFund defines a message for adding continuous funds.
|
|
155
|
+
* @name MsgCreateContinuousFundAmino
|
|
156
|
+
* @package cosmos.protocolpool.v1
|
|
157
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCreateContinuousFund
|
|
158
|
+
*/
|
|
109
159
|
export interface MsgCreateContinuousFundAmino {
|
|
110
|
-
/**
|
|
160
|
+
/**
|
|
161
|
+
* Authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
162
|
+
*/
|
|
111
163
|
authority?: string;
|
|
112
|
-
/**
|
|
164
|
+
/**
|
|
165
|
+
* Recipient address of the account receiving funds.
|
|
166
|
+
*/
|
|
113
167
|
recipient?: string;
|
|
114
|
-
/**
|
|
168
|
+
/**
|
|
169
|
+
* Percentage is the percentage of funds to be allocated from Community pool.
|
|
170
|
+
*/
|
|
115
171
|
percentage?: string;
|
|
116
|
-
/**
|
|
172
|
+
/**
|
|
173
|
+
* Optional, if expiry is set, removes the state object when expired.
|
|
174
|
+
*/
|
|
117
175
|
expiry?: string;
|
|
118
176
|
}
|
|
119
177
|
export interface MsgCreateContinuousFundAminoMsg {
|
|
@@ -123,6 +181,9 @@ export interface MsgCreateContinuousFundAminoMsg {
|
|
|
123
181
|
/**
|
|
124
182
|
* MsgCreateContinuousFundResponse defines the response to executing a
|
|
125
183
|
* MsgCreateContinuousFund message.
|
|
184
|
+
* @name MsgCreateContinuousFundResponse
|
|
185
|
+
* @package cosmos.protocolpool.v1
|
|
186
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCreateContinuousFundResponse
|
|
126
187
|
*/
|
|
127
188
|
export interface MsgCreateContinuousFundResponse {
|
|
128
189
|
}
|
|
@@ -133,6 +194,9 @@ export interface MsgCreateContinuousFundResponseProtoMsg {
|
|
|
133
194
|
/**
|
|
134
195
|
* MsgCreateContinuousFundResponse defines the response to executing a
|
|
135
196
|
* MsgCreateContinuousFund message.
|
|
197
|
+
* @name MsgCreateContinuousFundResponseAmino
|
|
198
|
+
* @package cosmos.protocolpool.v1
|
|
199
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCreateContinuousFundResponse
|
|
136
200
|
*/
|
|
137
201
|
export interface MsgCreateContinuousFundResponseAmino {
|
|
138
202
|
}
|
|
@@ -140,22 +204,40 @@ export interface MsgCreateContinuousFundResponseAminoMsg {
|
|
|
140
204
|
type: "cosmos-sdk/MsgCreateContinuousFundResponse";
|
|
141
205
|
value: MsgCreateContinuousFundResponseAmino;
|
|
142
206
|
}
|
|
143
|
-
/**
|
|
207
|
+
/**
|
|
208
|
+
* MsgCancelContinuousFund defines a message to cancel continuous funds for a specific recipient.
|
|
209
|
+
* @name MsgCancelContinuousFund
|
|
210
|
+
* @package cosmos.protocolpool.v1
|
|
211
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCancelContinuousFund
|
|
212
|
+
*/
|
|
144
213
|
export interface MsgCancelContinuousFund {
|
|
145
|
-
/**
|
|
214
|
+
/**
|
|
215
|
+
* Authority is the account address of authority.
|
|
216
|
+
*/
|
|
146
217
|
authority: string;
|
|
147
|
-
/**
|
|
218
|
+
/**
|
|
219
|
+
* Recipient is the account address string of the recipient whose funds are to be cancelled.
|
|
220
|
+
*/
|
|
148
221
|
recipient: string;
|
|
149
222
|
}
|
|
150
223
|
export interface MsgCancelContinuousFundProtoMsg {
|
|
151
224
|
typeUrl: "/cosmos.protocolpool.v1.MsgCancelContinuousFund";
|
|
152
225
|
value: Uint8Array;
|
|
153
226
|
}
|
|
154
|
-
/**
|
|
227
|
+
/**
|
|
228
|
+
* MsgCancelContinuousFund defines a message to cancel continuous funds for a specific recipient.
|
|
229
|
+
* @name MsgCancelContinuousFundAmino
|
|
230
|
+
* @package cosmos.protocolpool.v1
|
|
231
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCancelContinuousFund
|
|
232
|
+
*/
|
|
155
233
|
export interface MsgCancelContinuousFundAmino {
|
|
156
|
-
/**
|
|
234
|
+
/**
|
|
235
|
+
* Authority is the account address of authority.
|
|
236
|
+
*/
|
|
157
237
|
authority?: string;
|
|
158
|
-
/**
|
|
238
|
+
/**
|
|
239
|
+
* Recipient is the account address string of the recipient whose funds are to be cancelled.
|
|
240
|
+
*/
|
|
159
241
|
recipient?: string;
|
|
160
242
|
}
|
|
161
243
|
export interface MsgCancelContinuousFundAminoMsg {
|
|
@@ -165,13 +247,22 @@ export interface MsgCancelContinuousFundAminoMsg {
|
|
|
165
247
|
/**
|
|
166
248
|
* MsgCancelContinuousFundResponse defines the response to executing a
|
|
167
249
|
* MsgCancelContinuousFund message.
|
|
250
|
+
* @name MsgCancelContinuousFundResponse
|
|
251
|
+
* @package cosmos.protocolpool.v1
|
|
252
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCancelContinuousFundResponse
|
|
168
253
|
*/
|
|
169
254
|
export interface MsgCancelContinuousFundResponse {
|
|
170
|
-
/**
|
|
255
|
+
/**
|
|
256
|
+
* CanceledTime is the canceled time.
|
|
257
|
+
*/
|
|
171
258
|
canceledTime: Date;
|
|
172
|
-
/**
|
|
259
|
+
/**
|
|
260
|
+
* CanceledHeight defines the canceled block height.
|
|
261
|
+
*/
|
|
173
262
|
canceledHeight: bigint;
|
|
174
|
-
/**
|
|
263
|
+
/**
|
|
264
|
+
* Recipient is the account address string of the recipient whose funds are cancelled.
|
|
265
|
+
*/
|
|
175
266
|
recipient: string;
|
|
176
267
|
}
|
|
177
268
|
export interface MsgCancelContinuousFundResponseProtoMsg {
|
|
@@ -181,22 +272,38 @@ export interface MsgCancelContinuousFundResponseProtoMsg {
|
|
|
181
272
|
/**
|
|
182
273
|
* MsgCancelContinuousFundResponse defines the response to executing a
|
|
183
274
|
* MsgCancelContinuousFund message.
|
|
275
|
+
* @name MsgCancelContinuousFundResponseAmino
|
|
276
|
+
* @package cosmos.protocolpool.v1
|
|
277
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCancelContinuousFundResponse
|
|
184
278
|
*/
|
|
185
279
|
export interface MsgCancelContinuousFundResponseAmino {
|
|
186
|
-
/**
|
|
280
|
+
/**
|
|
281
|
+
* CanceledTime is the canceled time.
|
|
282
|
+
*/
|
|
187
283
|
canceled_time?: string;
|
|
188
|
-
/**
|
|
284
|
+
/**
|
|
285
|
+
* CanceledHeight defines the canceled block height.
|
|
286
|
+
*/
|
|
189
287
|
canceled_height?: string;
|
|
190
|
-
/**
|
|
288
|
+
/**
|
|
289
|
+
* Recipient is the account address string of the recipient whose funds are cancelled.
|
|
290
|
+
*/
|
|
191
291
|
recipient?: string;
|
|
192
292
|
}
|
|
193
293
|
export interface MsgCancelContinuousFundResponseAminoMsg {
|
|
194
294
|
type: "cosmos-sdk/MsgCancelContinuousFundResponse";
|
|
195
295
|
value: MsgCancelContinuousFundResponseAmino;
|
|
196
296
|
}
|
|
197
|
-
/**
|
|
297
|
+
/**
|
|
298
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
299
|
+
* @name MsgUpdateParams
|
|
300
|
+
* @package cosmos.protocolpool.v1
|
|
301
|
+
* @see proto type: cosmos.protocolpool.v1.MsgUpdateParams
|
|
302
|
+
*/
|
|
198
303
|
export interface MsgUpdateParams {
|
|
199
|
-
/**
|
|
304
|
+
/**
|
|
305
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
306
|
+
*/
|
|
200
307
|
authority: string;
|
|
201
308
|
/**
|
|
202
309
|
* params defines the x/protocolpool parameters to update.
|
|
@@ -209,9 +316,16 @@ export interface MsgUpdateParamsProtoMsg {
|
|
|
209
316
|
typeUrl: "/cosmos.protocolpool.v1.MsgUpdateParams";
|
|
210
317
|
value: Uint8Array;
|
|
211
318
|
}
|
|
212
|
-
/**
|
|
319
|
+
/**
|
|
320
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
321
|
+
* @name MsgUpdateParamsAmino
|
|
322
|
+
* @package cosmos.protocolpool.v1
|
|
323
|
+
* @see proto type: cosmos.protocolpool.v1.MsgUpdateParams
|
|
324
|
+
*/
|
|
213
325
|
export interface MsgUpdateParamsAmino {
|
|
214
|
-
/**
|
|
326
|
+
/**
|
|
327
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
328
|
+
*/
|
|
215
329
|
authority?: string;
|
|
216
330
|
/**
|
|
217
331
|
* params defines the x/protocolpool parameters to update.
|
|
@@ -227,6 +341,9 @@ export interface MsgUpdateParamsAminoMsg {
|
|
|
227
341
|
/**
|
|
228
342
|
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
229
343
|
* MsgUpdateParams message.
|
|
344
|
+
* @name MsgUpdateParamsResponse
|
|
345
|
+
* @package cosmos.protocolpool.v1
|
|
346
|
+
* @see proto type: cosmos.protocolpool.v1.MsgUpdateParamsResponse
|
|
230
347
|
*/
|
|
231
348
|
export interface MsgUpdateParamsResponse {
|
|
232
349
|
}
|
|
@@ -237,6 +354,9 @@ export interface MsgUpdateParamsResponseProtoMsg {
|
|
|
237
354
|
/**
|
|
238
355
|
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
239
356
|
* MsgUpdateParams message.
|
|
357
|
+
* @name MsgUpdateParamsResponseAmino
|
|
358
|
+
* @package cosmos.protocolpool.v1
|
|
359
|
+
* @see proto type: cosmos.protocolpool.v1.MsgUpdateParamsResponse
|
|
240
360
|
*/
|
|
241
361
|
export interface MsgUpdateParamsResponseAmino {
|
|
242
362
|
}
|
|
@@ -244,6 +364,13 @@ export interface MsgUpdateParamsResponseAminoMsg {
|
|
|
244
364
|
type: "cosmos-sdk/MsgUpdateParamsResponse";
|
|
245
365
|
value: MsgUpdateParamsResponseAmino;
|
|
246
366
|
}
|
|
367
|
+
/**
|
|
368
|
+
* MsgFundCommunityPool allows an account to directly
|
|
369
|
+
* fund the community pool.
|
|
370
|
+
* @name MsgFundCommunityPool
|
|
371
|
+
* @package cosmos.protocolpool.v1
|
|
372
|
+
* @see proto type: cosmos.protocolpool.v1.MsgFundCommunityPool
|
|
373
|
+
*/
|
|
247
374
|
export declare const MsgFundCommunityPool: {
|
|
248
375
|
typeUrl: string;
|
|
249
376
|
aminoType: string;
|
|
@@ -258,6 +385,12 @@ export declare const MsgFundCommunityPool: {
|
|
|
258
385
|
toProto(message: MsgFundCommunityPool): Uint8Array;
|
|
259
386
|
toProtoMsg(message: MsgFundCommunityPool): MsgFundCommunityPoolProtoMsg;
|
|
260
387
|
};
|
|
388
|
+
/**
|
|
389
|
+
* MsgFundCommunityPoolResponse defines the Msg/FundCommunityPool response type.
|
|
390
|
+
* @name MsgFundCommunityPoolResponse
|
|
391
|
+
* @package cosmos.protocolpool.v1
|
|
392
|
+
* @see proto type: cosmos.protocolpool.v1.MsgFundCommunityPoolResponse
|
|
393
|
+
*/
|
|
261
394
|
export declare const MsgFundCommunityPoolResponse: {
|
|
262
395
|
typeUrl: string;
|
|
263
396
|
aminoType: string;
|
|
@@ -272,6 +405,14 @@ export declare const MsgFundCommunityPoolResponse: {
|
|
|
272
405
|
toProto(message: MsgFundCommunityPoolResponse): Uint8Array;
|
|
273
406
|
toProtoMsg(message: MsgFundCommunityPoolResponse): MsgFundCommunityPoolResponseProtoMsg;
|
|
274
407
|
};
|
|
408
|
+
/**
|
|
409
|
+
* MsgCommunityPoolSpend defines a message for sending tokens from the community
|
|
410
|
+
* pool to another account. This message is typically executed via a governance
|
|
411
|
+
* proposal with the governance module being the executing authority.
|
|
412
|
+
* @name MsgCommunityPoolSpend
|
|
413
|
+
* @package cosmos.protocolpool.v1
|
|
414
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCommunityPoolSpend
|
|
415
|
+
*/
|
|
275
416
|
export declare const MsgCommunityPoolSpend: {
|
|
276
417
|
typeUrl: string;
|
|
277
418
|
aminoType: string;
|
|
@@ -286,6 +427,13 @@ export declare const MsgCommunityPoolSpend: {
|
|
|
286
427
|
toProto(message: MsgCommunityPoolSpend): Uint8Array;
|
|
287
428
|
toProtoMsg(message: MsgCommunityPoolSpend): MsgCommunityPoolSpendProtoMsg;
|
|
288
429
|
};
|
|
430
|
+
/**
|
|
431
|
+
* MsgCommunityPoolSpendResponse defines the response to executing a
|
|
432
|
+
* MsgCommunityPoolSpend message.
|
|
433
|
+
* @name MsgCommunityPoolSpendResponse
|
|
434
|
+
* @package cosmos.protocolpool.v1
|
|
435
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCommunityPoolSpendResponse
|
|
436
|
+
*/
|
|
289
437
|
export declare const MsgCommunityPoolSpendResponse: {
|
|
290
438
|
typeUrl: string;
|
|
291
439
|
aminoType: string;
|
|
@@ -300,6 +448,12 @@ export declare const MsgCommunityPoolSpendResponse: {
|
|
|
300
448
|
toProto(message: MsgCommunityPoolSpendResponse): Uint8Array;
|
|
301
449
|
toProtoMsg(message: MsgCommunityPoolSpendResponse): MsgCommunityPoolSpendResponseProtoMsg;
|
|
302
450
|
};
|
|
451
|
+
/**
|
|
452
|
+
* MsgCreateContinuousFund defines a message for adding continuous funds.
|
|
453
|
+
* @name MsgCreateContinuousFund
|
|
454
|
+
* @package cosmos.protocolpool.v1
|
|
455
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCreateContinuousFund
|
|
456
|
+
*/
|
|
303
457
|
export declare const MsgCreateContinuousFund: {
|
|
304
458
|
typeUrl: string;
|
|
305
459
|
aminoType: string;
|
|
@@ -314,6 +468,13 @@ export declare const MsgCreateContinuousFund: {
|
|
|
314
468
|
toProto(message: MsgCreateContinuousFund): Uint8Array;
|
|
315
469
|
toProtoMsg(message: MsgCreateContinuousFund): MsgCreateContinuousFundProtoMsg;
|
|
316
470
|
};
|
|
471
|
+
/**
|
|
472
|
+
* MsgCreateContinuousFundResponse defines the response to executing a
|
|
473
|
+
* MsgCreateContinuousFund message.
|
|
474
|
+
* @name MsgCreateContinuousFundResponse
|
|
475
|
+
* @package cosmos.protocolpool.v1
|
|
476
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCreateContinuousFundResponse
|
|
477
|
+
*/
|
|
317
478
|
export declare const MsgCreateContinuousFundResponse: {
|
|
318
479
|
typeUrl: string;
|
|
319
480
|
aminoType: string;
|
|
@@ -328,6 +489,12 @@ export declare const MsgCreateContinuousFundResponse: {
|
|
|
328
489
|
toProto(message: MsgCreateContinuousFundResponse): Uint8Array;
|
|
329
490
|
toProtoMsg(message: MsgCreateContinuousFundResponse): MsgCreateContinuousFundResponseProtoMsg;
|
|
330
491
|
};
|
|
492
|
+
/**
|
|
493
|
+
* MsgCancelContinuousFund defines a message to cancel continuous funds for a specific recipient.
|
|
494
|
+
* @name MsgCancelContinuousFund
|
|
495
|
+
* @package cosmos.protocolpool.v1
|
|
496
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCancelContinuousFund
|
|
497
|
+
*/
|
|
331
498
|
export declare const MsgCancelContinuousFund: {
|
|
332
499
|
typeUrl: string;
|
|
333
500
|
aminoType: string;
|
|
@@ -342,6 +509,13 @@ export declare const MsgCancelContinuousFund: {
|
|
|
342
509
|
toProto(message: MsgCancelContinuousFund): Uint8Array;
|
|
343
510
|
toProtoMsg(message: MsgCancelContinuousFund): MsgCancelContinuousFundProtoMsg;
|
|
344
511
|
};
|
|
512
|
+
/**
|
|
513
|
+
* MsgCancelContinuousFundResponse defines the response to executing a
|
|
514
|
+
* MsgCancelContinuousFund message.
|
|
515
|
+
* @name MsgCancelContinuousFundResponse
|
|
516
|
+
* @package cosmos.protocolpool.v1
|
|
517
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCancelContinuousFundResponse
|
|
518
|
+
*/
|
|
345
519
|
export declare const MsgCancelContinuousFundResponse: {
|
|
346
520
|
typeUrl: string;
|
|
347
521
|
aminoType: string;
|
|
@@ -356,6 +530,12 @@ export declare const MsgCancelContinuousFundResponse: {
|
|
|
356
530
|
toProto(message: MsgCancelContinuousFundResponse): Uint8Array;
|
|
357
531
|
toProtoMsg(message: MsgCancelContinuousFundResponse): MsgCancelContinuousFundResponseProtoMsg;
|
|
358
532
|
};
|
|
533
|
+
/**
|
|
534
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
535
|
+
* @name MsgUpdateParams
|
|
536
|
+
* @package cosmos.protocolpool.v1
|
|
537
|
+
* @see proto type: cosmos.protocolpool.v1.MsgUpdateParams
|
|
538
|
+
*/
|
|
359
539
|
export declare const MsgUpdateParams: {
|
|
360
540
|
typeUrl: string;
|
|
361
541
|
aminoType: string;
|
|
@@ -370,6 +550,13 @@ export declare const MsgUpdateParams: {
|
|
|
370
550
|
toProto(message: MsgUpdateParams): Uint8Array;
|
|
371
551
|
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
372
552
|
};
|
|
553
|
+
/**
|
|
554
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
555
|
+
* MsgUpdateParams message.
|
|
556
|
+
* @name MsgUpdateParamsResponse
|
|
557
|
+
* @package cosmos.protocolpool.v1
|
|
558
|
+
* @see proto type: cosmos.protocolpool.v1.MsgUpdateParamsResponse
|
|
559
|
+
*/
|
|
373
560
|
export declare const MsgUpdateParamsResponse: {
|
|
374
561
|
typeUrl: string;
|
|
375
562
|
aminoType: string;
|
|
@@ -14,6 +14,13 @@ function createBaseMsgFundCommunityPool() {
|
|
|
14
14
|
amount: []
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* MsgFundCommunityPool allows an account to directly
|
|
19
|
+
* fund the community pool.
|
|
20
|
+
* @name MsgFundCommunityPool
|
|
21
|
+
* @package cosmos.protocolpool.v1
|
|
22
|
+
* @see proto type: cosmos.protocolpool.v1.MsgFundCommunityPool
|
|
23
|
+
*/
|
|
17
24
|
exports.MsgFundCommunityPool = {
|
|
18
25
|
typeUrl: "/cosmos.protocolpool.v1.MsgFundCommunityPool",
|
|
19
26
|
aminoType: "cosmos-sdk/MsgFundCommunityPool",
|
|
@@ -96,6 +103,12 @@ exports.MsgFundCommunityPool = {
|
|
|
96
103
|
function createBaseMsgFundCommunityPoolResponse() {
|
|
97
104
|
return {};
|
|
98
105
|
}
|
|
106
|
+
/**
|
|
107
|
+
* MsgFundCommunityPoolResponse defines the Msg/FundCommunityPool response type.
|
|
108
|
+
* @name MsgFundCommunityPoolResponse
|
|
109
|
+
* @package cosmos.protocolpool.v1
|
|
110
|
+
* @see proto type: cosmos.protocolpool.v1.MsgFundCommunityPoolResponse
|
|
111
|
+
*/
|
|
99
112
|
exports.MsgFundCommunityPoolResponse = {
|
|
100
113
|
typeUrl: "/cosmos.protocolpool.v1.MsgFundCommunityPoolResponse",
|
|
101
114
|
aminoType: "cosmos-sdk/MsgFundCommunityPoolResponse",
|
|
@@ -157,6 +170,14 @@ function createBaseMsgCommunityPoolSpend() {
|
|
|
157
170
|
amount: []
|
|
158
171
|
};
|
|
159
172
|
}
|
|
173
|
+
/**
|
|
174
|
+
* MsgCommunityPoolSpend defines a message for sending tokens from the community
|
|
175
|
+
* pool to another account. This message is typically executed via a governance
|
|
176
|
+
* proposal with the governance module being the executing authority.
|
|
177
|
+
* @name MsgCommunityPoolSpend
|
|
178
|
+
* @package cosmos.protocolpool.v1
|
|
179
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCommunityPoolSpend
|
|
180
|
+
*/
|
|
160
181
|
exports.MsgCommunityPoolSpend = {
|
|
161
182
|
typeUrl: "/cosmos.protocolpool.v1.MsgCommunityPoolSpend",
|
|
162
183
|
aminoType: "cosmos-sdk/MsgCommunityPoolSpend",
|
|
@@ -250,6 +271,13 @@ exports.MsgCommunityPoolSpend = {
|
|
|
250
271
|
function createBaseMsgCommunityPoolSpendResponse() {
|
|
251
272
|
return {};
|
|
252
273
|
}
|
|
274
|
+
/**
|
|
275
|
+
* MsgCommunityPoolSpendResponse defines the response to executing a
|
|
276
|
+
* MsgCommunityPoolSpend message.
|
|
277
|
+
* @name MsgCommunityPoolSpendResponse
|
|
278
|
+
* @package cosmos.protocolpool.v1
|
|
279
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCommunityPoolSpendResponse
|
|
280
|
+
*/
|
|
253
281
|
exports.MsgCommunityPoolSpendResponse = {
|
|
254
282
|
typeUrl: "/cosmos.protocolpool.v1.MsgCommunityPoolSpendResponse",
|
|
255
283
|
aminoType: "cosmos-sdk/MsgCommunityPoolSpendResponse",
|
|
@@ -312,6 +340,12 @@ function createBaseMsgCreateContinuousFund() {
|
|
|
312
340
|
expiry: undefined
|
|
313
341
|
};
|
|
314
342
|
}
|
|
343
|
+
/**
|
|
344
|
+
* MsgCreateContinuousFund defines a message for adding continuous funds.
|
|
345
|
+
* @name MsgCreateContinuousFund
|
|
346
|
+
* @package cosmos.protocolpool.v1
|
|
347
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCreateContinuousFund
|
|
348
|
+
*/
|
|
315
349
|
exports.MsgCreateContinuousFund = {
|
|
316
350
|
typeUrl: "/cosmos.protocolpool.v1.MsgCreateContinuousFund",
|
|
317
351
|
aminoType: "cosmos-sdk/MsgCreateContinuousFund",
|
|
@@ -413,6 +447,13 @@ exports.MsgCreateContinuousFund = {
|
|
|
413
447
|
function createBaseMsgCreateContinuousFundResponse() {
|
|
414
448
|
return {};
|
|
415
449
|
}
|
|
450
|
+
/**
|
|
451
|
+
* MsgCreateContinuousFundResponse defines the response to executing a
|
|
452
|
+
* MsgCreateContinuousFund message.
|
|
453
|
+
* @name MsgCreateContinuousFundResponse
|
|
454
|
+
* @package cosmos.protocolpool.v1
|
|
455
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCreateContinuousFundResponse
|
|
456
|
+
*/
|
|
416
457
|
exports.MsgCreateContinuousFundResponse = {
|
|
417
458
|
typeUrl: "/cosmos.protocolpool.v1.MsgCreateContinuousFundResponse",
|
|
418
459
|
aminoType: "cosmos-sdk/MsgCreateContinuousFundResponse",
|
|
@@ -473,6 +514,12 @@ function createBaseMsgCancelContinuousFund() {
|
|
|
473
514
|
recipient: ""
|
|
474
515
|
};
|
|
475
516
|
}
|
|
517
|
+
/**
|
|
518
|
+
* MsgCancelContinuousFund defines a message to cancel continuous funds for a specific recipient.
|
|
519
|
+
* @name MsgCancelContinuousFund
|
|
520
|
+
* @package cosmos.protocolpool.v1
|
|
521
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCancelContinuousFund
|
|
522
|
+
*/
|
|
476
523
|
exports.MsgCancelContinuousFund = {
|
|
477
524
|
typeUrl: "/cosmos.protocolpool.v1.MsgCancelContinuousFund",
|
|
478
525
|
aminoType: "cosmos-sdk/MsgCancelContinuousFund",
|
|
@@ -556,6 +603,13 @@ function createBaseMsgCancelContinuousFundResponse() {
|
|
|
556
603
|
recipient: ""
|
|
557
604
|
};
|
|
558
605
|
}
|
|
606
|
+
/**
|
|
607
|
+
* MsgCancelContinuousFundResponse defines the response to executing a
|
|
608
|
+
* MsgCancelContinuousFund message.
|
|
609
|
+
* @name MsgCancelContinuousFundResponse
|
|
610
|
+
* @package cosmos.protocolpool.v1
|
|
611
|
+
* @see proto type: cosmos.protocolpool.v1.MsgCancelContinuousFundResponse
|
|
612
|
+
*/
|
|
559
613
|
exports.MsgCancelContinuousFundResponse = {
|
|
560
614
|
typeUrl: "/cosmos.protocolpool.v1.MsgCancelContinuousFundResponse",
|
|
561
615
|
aminoType: "cosmos-sdk/MsgCancelContinuousFundResponse",
|
|
@@ -649,6 +703,12 @@ function createBaseMsgUpdateParams() {
|
|
|
649
703
|
params: types_1.Params.fromPartial({})
|
|
650
704
|
};
|
|
651
705
|
}
|
|
706
|
+
/**
|
|
707
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
708
|
+
* @name MsgUpdateParams
|
|
709
|
+
* @package cosmos.protocolpool.v1
|
|
710
|
+
* @see proto type: cosmos.protocolpool.v1.MsgUpdateParams
|
|
711
|
+
*/
|
|
652
712
|
exports.MsgUpdateParams = {
|
|
653
713
|
typeUrl: "/cosmos.protocolpool.v1.MsgUpdateParams",
|
|
654
714
|
aminoType: "cosmos-sdk/MsgUpdateParams",
|
|
@@ -728,6 +788,13 @@ exports.MsgUpdateParams = {
|
|
|
728
788
|
function createBaseMsgUpdateParamsResponse() {
|
|
729
789
|
return {};
|
|
730
790
|
}
|
|
791
|
+
/**
|
|
792
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
793
|
+
* MsgUpdateParams message.
|
|
794
|
+
* @name MsgUpdateParamsResponse
|
|
795
|
+
* @package cosmos.protocolpool.v1
|
|
796
|
+
* @see proto type: cosmos.protocolpool.v1.MsgUpdateParamsResponse
|
|
797
|
+
*/
|
|
731
798
|
exports.MsgUpdateParamsResponse = {
|
|
732
799
|
typeUrl: "/cosmos.protocolpool.v1.MsgUpdateParamsResponse",
|
|
733
800
|
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|