@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.8
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/v1/module.js +6 -0
- package/esm/sparkdream/blog/v1/genesis.js +93 -1
- package/esm/sparkdream/blog/v1/params.js +439 -5
- package/esm/sparkdream/blog/v1/post.js +211 -2
- package/esm/sparkdream/blog/v1/query.js +1399 -0
- package/esm/sparkdream/blog/v1/query.lcd.js +105 -2
- package/esm/sparkdream/blog/v1/query.rpc.Query.js +75 -3
- package/esm/sparkdream/blog/v1/tx.amino.js +61 -1
- package/esm/sparkdream/blog/v1/tx.js +1910 -3
- package/esm/sparkdream/blog/v1/tx.registry.js +218 -2
- package/esm/sparkdream/blog/v1/tx.rpc.msg.js +77 -4
- package/esm/sparkdream/blog/v1/types.js +809 -0
- package/esm/sparkdream/bundle.js +558 -45
- package/esm/sparkdream/client.js +38 -2
- package/esm/sparkdream/collect/module/v1/module.js +71 -0
- package/esm/sparkdream/collect/v1/genesis.js +271 -0
- package/esm/sparkdream/collect/v1/params.js +763 -0
- package/esm/sparkdream/collect/v1/query.js +3790 -0
- package/esm/sparkdream/collect/v1/query.lcd.js +223 -0
- package/esm/sparkdream/collect/v1/query.rpc.Query.js +252 -0
- package/esm/sparkdream/collect/v1/tx.amino.js +149 -0
- package/esm/sparkdream/collect/v1/tx.js +4767 -0
- package/esm/sparkdream/collect/v1/tx.registry.js +537 -0
- package/esm/sparkdream/collect/v1/tx.rpc.msg.js +185 -0
- package/esm/sparkdream/collect/v1/types.js +3434 -0
- package/esm/sparkdream/common/v1/content_type.js +96 -0
- package/esm/sparkdream/common/v1/flag_record.js +119 -0
- package/esm/sparkdream/common/v1/moderation_reason.js +115 -0
- package/esm/sparkdream/common/v1/reserved_tag.js +96 -0
- package/esm/sparkdream/common/v1/tag.js +120 -0
- package/esm/sparkdream/commons/module/v1/module.js +71 -0
- package/esm/sparkdream/commons/v1/genesis.js +533 -0
- package/esm/sparkdream/commons/v1/group.js +1116 -0
- package/esm/sparkdream/commons/v1/params.js +78 -0
- package/esm/sparkdream/commons/v1/policy_permissions.js +86 -0
- package/esm/sparkdream/commons/v1/query.js +1337 -0
- package/esm/sparkdream/commons/v1/query.lcd.js +78 -0
- package/esm/sparkdream/commons/v1/query.rpc.Query.js +100 -0
- package/esm/sparkdream/commons/v1/tx.amino.js +94 -0
- package/esm/sparkdream/commons/v1/tx.js +3282 -0
- package/esm/sparkdream/commons/v1/tx.registry.js +339 -0
- package/esm/sparkdream/commons/v1/tx.rpc.msg.js +122 -0
- package/esm/sparkdream/ecosystem/module/v1/module.js +71 -0
- package/esm/sparkdream/ecosystem/v1/genesis.js +72 -0
- package/esm/sparkdream/ecosystem/v1/params.js +65 -0
- package/esm/sparkdream/ecosystem/v1/query.js +128 -0
- package/esm/sparkdream/ecosystem/v1/query.lcd.js +11 -0
- package/esm/sparkdream/ecosystem/v1/query.rpc.Query.js +24 -0
- package/esm/sparkdream/ecosystem/v1/tx.amino.js +14 -0
- package/esm/sparkdream/ecosystem/v1/tx.js +308 -0
- package/esm/sparkdream/ecosystem/v1/tx.registry.js +51 -0
- package/esm/sparkdream/ecosystem/v1/tx.rpc.msg.js +24 -0
- package/esm/sparkdream/forum/module/v1/module.js +71 -0
- package/esm/sparkdream/forum/v1/archive_metadata.js +119 -0
- package/esm/sparkdream/forum/v1/bounty.js +183 -0
- package/esm/sparkdream/forum/v1/category.js +119 -0
- package/esm/sparkdream/forum/v1/genesis.js +516 -0
- package/esm/sparkdream/forum/v1/gov_action_appeal.js +202 -0
- package/esm/sparkdream/forum/v1/hide_record.js +154 -0
- package/esm/sparkdream/forum/v1/jury_participation.js +131 -0
- package/esm/sparkdream/forum/v1/member_report.js +219 -0
- package/esm/sparkdream/forum/v1/member_salvation_status.js +119 -0
- package/esm/sparkdream/forum/v1/member_warning.js +156 -0
- package/esm/sparkdream/forum/v1/params.js +867 -0
- package/esm/sparkdream/forum/v1/post.js +397 -0
- package/esm/sparkdream/forum/v1/post_flag.js +254 -0
- package/esm/sparkdream/forum/v1/query.js +12470 -0
- package/esm/sparkdream/forum/v1/query.lcd.js +730 -0
- package/esm/sparkdream/forum/v1/query.rpc.Query.js +799 -0
- package/esm/sparkdream/forum/v1/sentinel_activity.js +490 -0
- package/esm/sparkdream/forum/v1/tag_budget.js +143 -0
- package/esm/sparkdream/forum/v1/tag_budget_award.js +155 -0
- package/esm/sparkdream/forum/v1/tag_report.js +122 -0
- package/esm/sparkdream/forum/v1/thread_follow.js +95 -0
- package/esm/sparkdream/forum/v1/thread_follow_count.js +83 -0
- package/esm/sparkdream/forum/v1/thread_lock_record.js +155 -0
- package/esm/sparkdream/forum/v1/thread_metadata.js +184 -0
- package/esm/sparkdream/forum/v1/thread_move_record.js +179 -0
- package/esm/sparkdream/forum/v1/tx.amino.js +254 -0
- package/esm/sparkdream/forum/v1/tx.js +7464 -0
- package/esm/sparkdream/forum/v1/tx.registry.js +915 -0
- package/esm/sparkdream/forum/v1/tx.rpc.msg.js +313 -0
- package/esm/sparkdream/forum/v1/types.js +758 -0
- package/esm/sparkdream/forum/v1/user_rate_limit.js +119 -0
- package/esm/sparkdream/forum/v1/user_reaction_limit.js +107 -0
- package/esm/sparkdream/futarchy/module/v1/module.js +71 -0
- package/esm/sparkdream/futarchy/v1/genesis.js +88 -0
- package/esm/sparkdream/futarchy/v1/market.js +240 -0
- package/esm/sparkdream/futarchy/v1/params.js +241 -0
- package/esm/sparkdream/futarchy/v1/query.js +596 -0
- package/esm/sparkdream/futarchy/v1/query.lcd.js +45 -0
- package/esm/sparkdream/futarchy/v1/query.rpc.Query.js +53 -0
- package/esm/sparkdream/futarchy/v1/tx.amino.js +39 -0
- package/esm/sparkdream/futarchy/v1/tx.js +1097 -0
- package/esm/sparkdream/futarchy/v1/tx.registry.js +141 -0
- package/esm/sparkdream/futarchy/v1/tx.rpc.msg.js +55 -0
- package/esm/sparkdream/lcd.js +60 -0
- package/esm/sparkdream/name/module/v1/module.js +71 -0
- package/esm/sparkdream/name/v1/dispute.js +341 -0
- package/esm/sparkdream/name/v1/genesis.js +120 -0
- package/esm/sparkdream/name/v1/name_record.js +95 -0
- package/esm/sparkdream/name/v1/owner_info.js +95 -0
- package/esm/sparkdream/name/v1/params.js +306 -0
- package/esm/sparkdream/name/v1/query.js +863 -0
- package/esm/sparkdream/name/v1/query.lcd.js +52 -0
- package/esm/sparkdream/name/v1/query.rpc.Query.js +71 -0
- package/esm/sparkdream/name/v1/tx.amino.js +44 -0
- package/esm/sparkdream/name/v1/tx.js +1222 -0
- package/esm/sparkdream/name/v1/tx.registry.js +159 -0
- package/esm/sparkdream/name/v1/tx.rpc.msg.js +62 -0
- package/esm/{cosmos/orm/module/v1alpha1 → sparkdream/rep/module/v1}/module.js +26 -14
- package/esm/sparkdream/rep/v1/challenge.js +226 -0
- package/esm/sparkdream/rep/v1/content_challenge.js +303 -0
- package/esm/sparkdream/rep/v1/genesis.js +481 -0
- package/esm/sparkdream/rep/v1/initiative.js +558 -0
- package/esm/sparkdream/rep/v1/interim.js +426 -0
- package/esm/sparkdream/rep/v1/interim_template.js +291 -0
- package/esm/sparkdream/rep/v1/invitation.js +251 -0
- package/esm/sparkdream/rep/v1/jury_review.js +635 -0
- package/esm/sparkdream/rep/v1/member.js +857 -0
- package/esm/sparkdream/rep/v1/params.js +1819 -0
- package/esm/sparkdream/rep/v1/project.js +545 -0
- package/esm/sparkdream/rep/v1/query.js +6896 -0
- package/esm/sparkdream/rep/v1/query.lcd.js +377 -0
- package/esm/sparkdream/rep/v1/query.rpc.Query.js +424 -0
- package/esm/sparkdream/rep/v1/stake.js +575 -0
- package/esm/sparkdream/rep/v1/tx.amino.js +159 -0
- package/esm/sparkdream/rep/v1/tx.js +5198 -0
- package/esm/sparkdream/rep/v1/tx.registry.js +573 -0
- package/esm/sparkdream/rep/v1/tx.rpc.msg.js +199 -0
- package/esm/sparkdream/reveal/module/v1/module.js +71 -0
- package/esm/sparkdream/reveal/v1/genesis.js +142 -0
- package/esm/sparkdream/reveal/v1/params.js +235 -0
- package/esm/sparkdream/reveal/v1/query.js +1700 -0
- package/esm/sparkdream/reveal/v1/query.lcd.js +101 -0
- package/esm/sparkdream/reveal/v1/query.rpc.Query.js +116 -0
- package/esm/sparkdream/reveal/v1/tx.amino.js +54 -0
- package/esm/sparkdream/reveal/v1/tx.js +1699 -0
- package/esm/sparkdream/reveal/v1/tx.registry.js +195 -0
- package/esm/sparkdream/reveal/v1/tx.rpc.msg.js +72 -0
- package/esm/sparkdream/reveal/v1/types.js +1141 -0
- package/esm/sparkdream/rpc.query.js +36 -5
- package/esm/sparkdream/rpc.tx.js +36 -0
- package/esm/sparkdream/season/module/v1/module.js +71 -0
- package/esm/sparkdream/season/v1/achievement.js +142 -0
- package/esm/sparkdream/season/v1/display_name_appeal_stake.js +95 -0
- package/esm/sparkdream/season/v1/display_name_moderation.js +155 -0
- package/esm/sparkdream/season/v1/display_name_report_stake.js +95 -0
- package/esm/sparkdream/season/v1/enums.js +391 -0
- package/esm/sparkdream/season/v1/epoch_xp_tracker.js +119 -0
- package/esm/sparkdream/season/v1/forum_xp_cooldown.js +83 -0
- package/esm/sparkdream/season/v1/genesis.js +482 -0
- package/esm/sparkdream/season/v1/guild.js +172 -0
- package/esm/sparkdream/season/v1/guild_invite.js +107 -0
- package/esm/sparkdream/season/v1/guild_membership.js +119 -0
- package/esm/sparkdream/season/v1/member_profile.js +296 -0
- package/esm/sparkdream/season/v1/member_quest_progress.js +132 -0
- package/esm/sparkdream/season/v1/member_registration.js +83 -0
- package/esm/sparkdream/season/v1/member_season_snapshot.js +238 -0
- package/esm/sparkdream/season/v1/next_season_info.js +83 -0
- package/esm/sparkdream/season/v1/nomination.js +428 -0
- package/esm/sparkdream/season/v1/params.js +1597 -0
- package/esm/sparkdream/season/v1/query.js +10569 -0
- package/esm/sparkdream/season/v1/query.lcd.js +598 -0
- package/esm/sparkdream/season/v1/query.rpc.Query.js +673 -0
- package/esm/sparkdream/season/v1/quest.js +334 -0
- package/esm/sparkdream/season/v1/season.js +166 -0
- package/esm/sparkdream/season/v1/season_snapshot.js +83 -0
- package/esm/sparkdream/season/v1/season_title_eligibility.js +194 -0
- package/esm/sparkdream/season/v1/season_transition_state.js +130 -0
- package/esm/sparkdream/season/v1/title.js +154 -0
- package/esm/sparkdream/season/v1/transition_recovery_state.js +118 -0
- package/esm/sparkdream/season/v1/tx.amino.js +219 -0
- package/esm/sparkdream/season/v1/tx.js +6823 -0
- package/esm/sparkdream/season/v1/tx.registry.js +789 -0
- package/esm/sparkdream/season/v1/tx.rpc.msg.js +272 -0
- package/esm/sparkdream/season/v1/vote_xp_record.js +83 -0
- package/esm/sparkdream/session/module/v1/module.js +71 -0
- package/esm/sparkdream/session/v1/genesis.js +88 -0
- package/esm/sparkdream/session/v1/params.js +275 -0
- package/esm/sparkdream/session/v1/query.js +743 -0
- package/esm/sparkdream/session/v1/query.lcd.js +45 -0
- package/esm/sparkdream/session/v1/query.rpc.Query.js +60 -0
- package/esm/sparkdream/session/v1/session.js +185 -0
- package/esm/sparkdream/session/v1/tx.amino.js +29 -0
- package/esm/sparkdream/session/v1/tx.js +768 -0
- package/esm/sparkdream/session/v1/tx.registry.js +105 -0
- package/esm/sparkdream/session/v1/tx.rpc.msg.js +43 -0
- package/esm/sparkdream/shield/module/v1/module.js +71 -0
- package/esm/sparkdream/shield/v1/genesis.js +301 -0
- package/esm/sparkdream/shield/v1/params.js +282 -0
- package/esm/sparkdream/shield/v1/query.js +2323 -0
- package/esm/sparkdream/shield/v1/query.lcd.js +110 -0
- package/esm/sparkdream/shield/v1/query.rpc.Query.js +170 -0
- package/esm/sparkdream/shield/v1/tx.amino.js +29 -0
- package/esm/sparkdream/shield/v1/tx.js +838 -0
- package/esm/sparkdream/shield/v1/tx.registry.js +105 -0
- package/esm/sparkdream/shield/v1/tx.rpc.msg.js +43 -0
- package/esm/sparkdream/shield/v1/types.js +2385 -0
- package/esm/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/esm/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/esm/sparkdream/sparkdream/v1/params.js +6 -0
- package/esm/sparkdream/sparkdream/v1/query.js +12 -0
- package/esm/sparkdream/sparkdream/v1/tx.js +13 -0
- package/esm/sparkdream/split/module/v1/module.js +71 -0
- package/esm/sparkdream/split/v1/genesis.js +88 -0
- package/esm/sparkdream/split/v1/params.js +65 -0
- package/esm/sparkdream/split/v1/query.js +421 -0
- package/esm/sparkdream/split/v1/query.lcd.js +31 -0
- package/esm/sparkdream/split/v1/query.rpc.Query.js +44 -0
- package/esm/sparkdream/split/v1/share.js +83 -0
- package/esm/sparkdream/split/v1/tx.amino.js +9 -0
- package/esm/sparkdream/split/v1/tx.js +148 -0
- package/esm/sparkdream/split/v1/tx.registry.js +33 -0
- package/esm/sparkdream/split/v1/tx.rpc.msg.js +18 -0
- 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 +18 -2
- package/sparkdream/blog/module/v1/module.js +6 -0
- package/sparkdream/blog/v1/genesis.d.ts +74 -4
- package/sparkdream/blog/v1/genesis.js +93 -1
- package/sparkdream/blog/v1/params.d.ts +310 -6
- package/sparkdream/blog/v1/params.js +440 -6
- package/sparkdream/blog/v1/post.d.ts +180 -2
- package/sparkdream/blog/v1/post.js +211 -2
- package/sparkdream/blog/v1/query.d.ts +865 -14
- package/sparkdream/blog/v1/query.js +1400 -1
- package/sparkdream/blog/v1/query.lcd.d.ts +9 -1
- package/sparkdream/blog/v1/query.lcd.js +105 -2
- package/sparkdream/blog/v1/query.rpc.Query.d.ts +35 -3
- package/sparkdream/blog/v1/query.rpc.Query.js +74 -2
- package/sparkdream/blog/v1/tx.amino.d.ts +61 -1
- package/sparkdream/blog/v1/tx.amino.js +60 -0
- package/sparkdream/blog/v1/tx.d.ts +1306 -19
- package/sparkdream/blog/v1/tx.js +1910 -3
- package/sparkdream/blog/v1/tx.registry.d.ts +145 -1
- package/sparkdream/blog/v1/tx.registry.js +217 -1
- package/sparkdream/blog/v1/tx.rpc.msg.d.ts +43 -4
- package/sparkdream/blog/v1/tx.rpc.msg.js +76 -3
- package/sparkdream/blog/v1/types.d.ts +463 -0
- package/sparkdream/blog/v1/types.js +818 -0
- package/sparkdream/bundle.d.ts +19938 -325
- package/sparkdream/bundle.js +558 -45
- package/sparkdream/client.d.ts +1105 -0
- package/sparkdream/client.js +38 -2
- package/sparkdream/collect/module/v1/module.d.ts +54 -0
- package/sparkdream/collect/module/v1/module.js +74 -0
- package/sparkdream/collect/v1/genesis.d.ts +82 -0
- package/sparkdream/collect/v1/genesis.js +274 -0
- package/sparkdream/collect/v1/params.d.ts +240 -0
- package/sparkdream/collect/v1/params.js +766 -0
- package/sparkdream/collect/v1/query.d.ts +2157 -0
- package/sparkdream/collect/v1/query.js +3793 -0
- package/sparkdream/collect/v1/query.lcd.d.ts +33 -0
- package/sparkdream/collect/v1/query.lcd.js +227 -0
- package/sparkdream/collect/v1/query.rpc.Query.d.ts +101 -0
- package/sparkdream/collect/v1/query.rpc.Query.js +257 -0
- package/sparkdream/collect/v1/tx.amino.d.ts +148 -0
- package/sparkdream/collect/v1/tx.amino.js +152 -0
- package/sparkdream/collect/v1/tx.d.ts +2581 -0
- package/sparkdream/collect/v1/tx.js +4771 -0
- package/sparkdream/collect/v1/tx.registry.d.ts +361 -0
- package/sparkdream/collect/v1/tx.registry.js +541 -0
- package/sparkdream/collect/v1/tx.rpc.msg.d.ts +76 -0
- package/sparkdream/collect/v1/tx.rpc.msg.js +190 -0
- package/sparkdream/collect/v1/types.d.ts +1205 -0
- package/sparkdream/collect/v1/types.js +3453 -0
- package/sparkdream/common/v1/content_type.d.ts +31 -0
- package/sparkdream/common/v1/content_type.js +101 -0
- package/sparkdream/common/v1/flag_record.d.ts +58 -0
- package/sparkdream/common/v1/flag_record.js +122 -0
- package/sparkdream/common/v1/moderation_reason.d.ts +35 -0
- package/sparkdream/common/v1/moderation_reason.js +120 -0
- package/sparkdream/common/v1/reserved_tag.d.ts +53 -0
- package/sparkdream/common/v1/reserved_tag.js +99 -0
- package/sparkdream/common/v1/tag.d.ts +57 -0
- package/sparkdream/common/v1/tag.js +123 -0
- package/sparkdream/commons/module/v1/module.d.ts +54 -0
- package/sparkdream/commons/module/v1/module.js +74 -0
- package/sparkdream/commons/v1/genesis.d.ts +299 -0
- package/sparkdream/commons/v1/genesis.js +536 -0
- package/sparkdream/commons/v1/group.d.ts +529 -0
- package/sparkdream/commons/v1/group.js +1123 -0
- package/sparkdream/commons/v1/params.d.ts +48 -0
- package/sparkdream/commons/v1/params.js +81 -0
- package/sparkdream/commons/v1/policy_permissions.d.ts +48 -0
- package/sparkdream/commons/v1/policy_permissions.js +89 -0
- package/sparkdream/commons/v1/query.d.ts +822 -0
- package/sparkdream/commons/v1/query.js +1340 -0
- package/sparkdream/commons/v1/query.lcd.d.ts +17 -0
- package/sparkdream/commons/v1/query.lcd.js +82 -0
- package/sparkdream/commons/v1/query.rpc.Query.d.ts +48 -0
- package/sparkdream/commons/v1/query.rpc.Query.js +105 -0
- package/sparkdream/commons/v1/tx.amino.d.ts +93 -0
- package/sparkdream/commons/v1/tx.amino.js +97 -0
- package/sparkdream/commons/v1/tx.d.ts +1930 -0
- package/sparkdream/commons/v1/tx.js +3285 -0
- package/sparkdream/commons/v1/tx.registry.d.ts +229 -0
- package/sparkdream/commons/v1/tx.registry.js +343 -0
- package/sparkdream/commons/v1/tx.rpc.msg.d.ts +73 -0
- package/sparkdream/commons/v1/tx.rpc.msg.js +127 -0
- package/sparkdream/ecosystem/module/v1/module.d.ts +54 -0
- package/sparkdream/ecosystem/module/v1/module.js +74 -0
- package/sparkdream/ecosystem/v1/genesis.d.ts +53 -0
- package/sparkdream/ecosystem/v1/genesis.js +75 -0
- package/sparkdream/ecosystem/v1/params.d.ts +46 -0
- package/sparkdream/ecosystem/v1/params.js +68 -0
- package/sparkdream/ecosystem/v1/query.d.ts +95 -0
- package/sparkdream/ecosystem/v1/query.js +131 -0
- package/sparkdream/ecosystem/v1/query.lcd.d.ts +9 -0
- package/sparkdream/ecosystem/v1/query.lcd.js +15 -0
- package/sparkdream/ecosystem/v1/query.rpc.Query.d.ts +16 -0
- package/sparkdream/ecosystem/v1/query.rpc.Query.js +29 -0
- package/sparkdream/ecosystem/v1/tx.amino.d.ts +13 -0
- package/sparkdream/ecosystem/v1/tx.amino.js +17 -0
- package/sparkdream/ecosystem/v1/tx.d.ts +201 -0
- package/sparkdream/ecosystem/v1/tx.js +311 -0
- package/sparkdream/ecosystem/v1/tx.registry.d.ts +37 -0
- package/sparkdream/ecosystem/v1/tx.registry.js +55 -0
- package/sparkdream/ecosystem/v1/tx.rpc.msg.d.ts +19 -0
- package/sparkdream/ecosystem/v1/tx.rpc.msg.js +29 -0
- package/sparkdream/forum/module/v1/module.d.ts +54 -0
- package/sparkdream/forum/module/v1/module.js +74 -0
- package/sparkdream/forum/v1/archive_metadata.d.ts +54 -0
- package/sparkdream/forum/v1/archive_metadata.js +122 -0
- package/sparkdream/forum/v1/bounty.d.ts +65 -0
- package/sparkdream/forum/v1/bounty.js +186 -0
- package/sparkdream/forum/v1/category.d.ts +54 -0
- package/sparkdream/forum/v1/category.js +122 -0
- package/sparkdream/forum/v1/genesis.d.ts +135 -0
- package/sparkdream/forum/v1/genesis.js +519 -0
- package/sparkdream/forum/v1/gov_action_appeal.d.ts +69 -0
- package/sparkdream/forum/v1/gov_action_appeal.js +205 -0
- package/sparkdream/forum/v1/hide_record.d.ts +61 -0
- package/sparkdream/forum/v1/hide_record.js +157 -0
- package/sparkdream/forum/v1/jury_participation.d.ts +56 -0
- package/sparkdream/forum/v1/jury_participation.js +134 -0
- package/sparkdream/forum/v1/member_report.d.ts +67 -0
- package/sparkdream/forum/v1/member_report.js +222 -0
- package/sparkdream/forum/v1/member_salvation_status.d.ts +54 -0
- package/sparkdream/forum/v1/member_salvation_status.js +122 -0
- package/sparkdream/forum/v1/member_warning.d.ts +58 -0
- package/sparkdream/forum/v1/member_warning.js +159 -0
- package/sparkdream/forum/v1/params.d.ts +450 -0
- package/sparkdream/forum/v1/params.js +870 -0
- package/sparkdream/forum/v1/post.d.ts +102 -0
- package/sparkdream/forum/v1/post.js +400 -0
- package/sparkdream/forum/v1/post_flag.d.ts +106 -0
- package/sparkdream/forum/v1/post_flag.js +257 -0
- package/sparkdream/forum/v1/query.d.ts +7296 -0
- package/sparkdream/forum/v1/query.js +12476 -0
- package/sparkdream/forum/v1/query.lcd.d.ts +88 -0
- package/sparkdream/forum/v1/query.lcd.js +734 -0
- package/sparkdream/forum/v1/query.rpc.Query.d.ts +332 -0
- package/sparkdream/forum/v1/query.rpc.Query.js +804 -0
- package/sparkdream/forum/v1/sentinel_activity.d.ts +117 -0
- package/sparkdream/forum/v1/sentinel_activity.js +493 -0
- package/sparkdream/forum/v1/tag_budget.d.ts +58 -0
- package/sparkdream/forum/v1/tag_budget.js +146 -0
- package/sparkdream/forum/v1/tag_budget_award.d.ts +60 -0
- package/sparkdream/forum/v1/tag_budget_award.js +158 -0
- package/sparkdream/forum/v1/tag_report.d.ts +54 -0
- package/sparkdream/forum/v1/tag_report.js +125 -0
- package/sparkdream/forum/v1/thread_follow.d.ts +50 -0
- package/sparkdream/forum/v1/thread_follow.js +98 -0
- package/sparkdream/forum/v1/thread_follow_count.d.ts +48 -0
- package/sparkdream/forum/v1/thread_follow_count.js +86 -0
- package/sparkdream/forum/v1/thread_lock_record.d.ts +60 -0
- package/sparkdream/forum/v1/thread_lock_record.js +158 -0
- package/sparkdream/forum/v1/thread_metadata.d.ts +63 -0
- package/sparkdream/forum/v1/thread_metadata.js +187 -0
- package/sparkdream/forum/v1/thread_move_record.d.ts +64 -0
- package/sparkdream/forum/v1/thread_move_record.js +182 -0
- package/sparkdream/forum/v1/tx.amino.d.ts +253 -0
- package/sparkdream/forum/v1/tx.amino.js +257 -0
- package/sparkdream/forum/v1/tx.d.ts +4551 -0
- package/sparkdream/forum/v1/tx.js +7468 -0
- package/sparkdream/forum/v1/tx.registry.d.ts +613 -0
- package/sparkdream/forum/v1/tx.registry.js +919 -0
- package/sparkdream/forum/v1/tx.rpc.msg.d.ts +166 -0
- package/sparkdream/forum/v1/tx.rpc.msg.js +318 -0
- package/sparkdream/forum/v1/types.d.ts +221 -0
- package/sparkdream/forum/v1/types.js +777 -0
- package/sparkdream/forum/v1/user_rate_limit.d.ts +54 -0
- package/sparkdream/forum/v1/user_rate_limit.js +122 -0
- package/sparkdream/forum/v1/user_reaction_limit.d.ts +52 -0
- package/sparkdream/forum/v1/user_reaction_limit.js +110 -0
- package/sparkdream/futarchy/module/v1/module.d.ts +54 -0
- package/sparkdream/futarchy/module/v1/module.js +74 -0
- package/sparkdream/futarchy/v1/genesis.d.ts +56 -0
- package/sparkdream/futarchy/v1/genesis.js +91 -0
- package/sparkdream/futarchy/v1/market.d.ts +104 -0
- package/sparkdream/futarchy/v1/market.js +243 -0
- package/sparkdream/futarchy/v1/params.d.ts +171 -0
- package/sparkdream/futarchy/v1/params.js +244 -0
- package/sparkdream/futarchy/v1/query.d.ts +381 -0
- package/sparkdream/futarchy/v1/query.js +599 -0
- package/sparkdream/futarchy/v1/query.lcd.d.ts +12 -0
- package/sparkdream/futarchy/v1/query.lcd.js +49 -0
- package/sparkdream/futarchy/v1/query.rpc.Query.d.ts +28 -0
- package/sparkdream/futarchy/v1/query.rpc.Query.js +58 -0
- package/sparkdream/futarchy/v1/tx.amino.d.ts +38 -0
- package/sparkdream/futarchy/v1/tx.amino.js +42 -0
- package/sparkdream/futarchy/v1/tx.d.ts +688 -0
- package/sparkdream/futarchy/v1/tx.js +1100 -0
- package/sparkdream/futarchy/v1/tx.registry.d.ts +97 -0
- package/sparkdream/futarchy/v1/tx.registry.js +145 -0
- package/sparkdream/futarchy/v1/tx.rpc.msg.d.ts +37 -0
- package/sparkdream/futarchy/v1/tx.rpc.msg.js +60 -0
- package/sparkdream/lcd.d.ts +36 -0
- package/sparkdream/lcd.js +60 -0
- package/sparkdream/name/module/v1/module.d.ts +54 -0
- package/sparkdream/name/module/v1/module.js +74 -0
- package/sparkdream/name/v1/dispute.d.ts +216 -0
- package/sparkdream/name/v1/dispute.js +344 -0
- package/sparkdream/name/v1/genesis.d.ts +62 -0
- package/sparkdream/name/v1/genesis.js +123 -0
- package/sparkdream/name/v1/name_record.d.ts +50 -0
- package/sparkdream/name/v1/name_record.js +98 -0
- package/sparkdream/name/v1/owner_info.d.ts +50 -0
- package/sparkdream/name/v1/owner_info.js +98 -0
- package/sparkdream/name/v1/params.d.ts +165 -0
- package/sparkdream/name/v1/params.js +309 -0
- package/sparkdream/name/v1/query.d.ts +544 -0
- package/sparkdream/name/v1/query.js +866 -0
- package/sparkdream/name/v1/query.lcd.d.ts +14 -0
- package/sparkdream/name/v1/query.lcd.js +56 -0
- package/sparkdream/name/v1/query.rpc.Query.d.ts +36 -0
- package/sparkdream/name/v1/query.rpc.Query.js +76 -0
- package/sparkdream/name/v1/tx.amino.d.ts +43 -0
- package/sparkdream/name/v1/tx.amino.js +47 -0
- package/sparkdream/name/v1/tx.d.ts +804 -0
- package/sparkdream/name/v1/tx.js +1225 -0
- package/sparkdream/name/v1/tx.registry.d.ts +109 -0
- package/sparkdream/name/v1/tx.registry.js +163 -0
- package/sparkdream/name/v1/tx.rpc.msg.d.ts +43 -0
- package/sparkdream/name/v1/tx.rpc.msg.js +67 -0
- package/sparkdream/rep/module/v1/module.d.ts +54 -0
- package/{cosmos/orm/module/v1alpha1 → sparkdream/rep/module/v1}/module.js +26 -14
- package/sparkdream/rep/v1/challenge.d.ts +74 -0
- package/sparkdream/rep/v1/challenge.js +231 -0
- package/sparkdream/rep/v1/content_challenge.d.ts +154 -0
- package/sparkdream/rep/v1/content_challenge.js +308 -0
- package/sparkdream/rep/v1/genesis.d.ts +185 -0
- package/sparkdream/rep/v1/genesis.js +484 -0
- package/sparkdream/rep/v1/initiative.d.ts +140 -0
- package/sparkdream/rep/v1/initiative.js +567 -0
- package/sparkdream/rep/v1/interim.d.ts +163 -0
- package/sparkdream/rep/v1/interim.js +435 -0
- package/sparkdream/rep/v1/interim_template.d.ts +114 -0
- package/sparkdream/rep/v1/interim_template.js +296 -0
- package/sparkdream/rep/v1/invitation.d.ts +78 -0
- package/sparkdream/rep/v1/invitation.js +256 -0
- package/sparkdream/rep/v1/jury_review.d.ts +235 -0
- package/sparkdream/rep/v1/jury_review.js +640 -0
- package/sparkdream/rep/v1/member.d.ts +408 -0
- package/sparkdream/rep/v1/member.js +864 -0
- package/sparkdream/rep/v1/params.d.ts +730 -0
- package/sparkdream/rep/v1/params.js +1822 -0
- package/sparkdream/rep/v1/project.d.ts +162 -0
- package/sparkdream/rep/v1/project.js +554 -0
- package/sparkdream/rep/v1/query.d.ts +4030 -0
- package/sparkdream/rep/v1/query.js +6900 -0
- package/sparkdream/rep/v1/query.lcd.d.ts +51 -0
- package/sparkdream/rep/v1/query.lcd.js +381 -0
- package/sparkdream/rep/v1/query.rpc.Query.d.ts +184 -0
- package/sparkdream/rep/v1/query.rpc.Query.js +429 -0
- package/sparkdream/rep/v1/stake.d.ts +266 -0
- package/sparkdream/rep/v1/stake.js +580 -0
- package/sparkdream/rep/v1/tx.amino.d.ts +158 -0
- package/sparkdream/rep/v1/tx.amino.js +162 -0
- package/sparkdream/rep/v1/tx.d.ts +2940 -0
- package/sparkdream/rep/v1/tx.js +5204 -0
- package/sparkdream/rep/v1/tx.registry.d.ts +385 -0
- package/sparkdream/rep/v1/tx.registry.js +577 -0
- package/sparkdream/rep/v1/tx.rpc.msg.d.ts +109 -0
- package/sparkdream/rep/v1/tx.rpc.msg.js +204 -0
- package/sparkdream/reveal/module/v1/module.d.ts +54 -0
- package/sparkdream/reveal/module/v1/module.js +74 -0
- package/sparkdream/reveal/v1/genesis.d.ts +64 -0
- package/sparkdream/reveal/v1/genesis.js +145 -0
- package/sparkdream/reveal/v1/params.d.ts +140 -0
- package/sparkdream/reveal/v1/params.js +238 -0
- package/sparkdream/reveal/v1/query.d.ts +949 -0
- package/sparkdream/reveal/v1/query.js +1703 -0
- package/sparkdream/reveal/v1/query.lcd.d.ts +19 -0
- package/sparkdream/reveal/v1/query.lcd.js +105 -0
- package/sparkdream/reveal/v1/query.rpc.Query.d.ts +56 -0
- package/sparkdream/reveal/v1/query.rpc.Query.js +121 -0
- package/sparkdream/reveal/v1/tx.amino.d.ts +53 -0
- package/sparkdream/reveal/v1/tx.amino.js +57 -0
- package/sparkdream/reveal/v1/tx.d.ts +1043 -0
- package/sparkdream/reveal/v1/tx.js +1702 -0
- package/sparkdream/reveal/v1/tx.registry.d.ts +133 -0
- package/sparkdream/reveal/v1/tx.registry.js +199 -0
- package/sparkdream/reveal/v1/tx.rpc.msg.d.ts +43 -0
- package/sparkdream/reveal/v1/tx.rpc.msg.js +77 -0
- package/sparkdream/reveal/v1/types.d.ts +455 -0
- package/sparkdream/reveal/v1/types.js +1150 -0
- package/sparkdream/rpc.query.d.ts +329 -9
- package/sparkdream/rpc.query.js +36 -5
- package/sparkdream/rpc.tx.d.ts +36 -0
- package/sparkdream/rpc.tx.js +36 -0
- package/sparkdream/season/module/v1/module.d.ts +54 -0
- package/sparkdream/season/module/v1/module.js +74 -0
- package/sparkdream/season/v1/achievement.d.ts +101 -0
- package/sparkdream/season/v1/achievement.js +145 -0
- package/sparkdream/season/v1/display_name_appeal_stake.d.ts +68 -0
- package/sparkdream/season/v1/display_name_appeal_stake.js +98 -0
- package/sparkdream/season/v1/display_name_moderation.d.ts +60 -0
- package/sparkdream/season/v1/display_name_moderation.js +158 -0
- package/sparkdream/season/v1/display_name_report_stake.d.ts +68 -0
- package/sparkdream/season/v1/display_name_report_stake.js +98 -0
- package/sparkdream/season/v1/enums.d.ts +86 -0
- package/sparkdream/season/v1/enums.js +406 -0
- package/sparkdream/season/v1/epoch_xp_tracker.d.ts +54 -0
- package/sparkdream/season/v1/epoch_xp_tracker.js +122 -0
- package/sparkdream/season/v1/forum_xp_cooldown.d.ts +48 -0
- package/sparkdream/season/v1/forum_xp_cooldown.js +86 -0
- package/sparkdream/season/v1/genesis.d.ts +136 -0
- package/sparkdream/season/v1/genesis.js +485 -0
- package/sparkdream/season/v1/guild.d.ts +117 -0
- package/sparkdream/season/v1/guild.js +175 -0
- package/sparkdream/season/v1/guild_invite.d.ts +52 -0
- package/sparkdream/season/v1/guild_invite.js +110 -0
- package/sparkdream/season/v1/guild_membership.d.ts +54 -0
- package/sparkdream/season/v1/guild_membership.js +122 -0
- package/sparkdream/season/v1/member_profile.d.ts +196 -0
- package/sparkdream/season/v1/member_profile.js +299 -0
- package/sparkdream/season/v1/member_quest_progress.d.ts +84 -0
- package/sparkdream/season/v1/member_quest_progress.js +135 -0
- package/sparkdream/season/v1/member_registration.d.ts +48 -0
- package/sparkdream/season/v1/member_registration.js +86 -0
- package/sparkdream/season/v1/member_season_snapshot.d.ts +145 -0
- package/sparkdream/season/v1/member_season_snapshot.js +241 -0
- package/sparkdream/season/v1/next_season_info.d.ts +48 -0
- package/sparkdream/season/v1/next_season_info.js +86 -0
- package/sparkdream/season/v1/nomination.d.ts +194 -0
- package/sparkdream/season/v1/nomination.js +431 -0
- package/sparkdream/season/v1/params.d.ts +611 -0
- package/sparkdream/season/v1/params.js +1600 -0
- package/sparkdream/season/v1/query.d.ts +6199 -0
- package/sparkdream/season/v1/query.js +10574 -0
- package/sparkdream/season/v1/query.lcd.d.ts +76 -0
- package/sparkdream/season/v1/query.lcd.js +602 -0
- package/sparkdream/season/v1/query.rpc.Query.d.ts +284 -0
- package/sparkdream/season/v1/query.rpc.Query.js +678 -0
- package/sparkdream/season/v1/quest.d.ts +231 -0
- package/sparkdream/season/v1/quest.js +337 -0
- package/sparkdream/season/v1/season.d.ts +117 -0
- package/sparkdream/season/v1/season.js +169 -0
- package/sparkdream/season/v1/season_snapshot.d.ts +48 -0
- package/sparkdream/season/v1/season_snapshot.js +86 -0
- package/sparkdream/season/v1/season_title_eligibility.d.ts +134 -0
- package/sparkdream/season/v1/season_title_eligibility.js +197 -0
- package/sparkdream/season/v1/season_transition_state.d.ts +93 -0
- package/sparkdream/season/v1/season_transition_state.js +133 -0
- package/sparkdream/season/v1/title.d.ts +109 -0
- package/sparkdream/season/v1/title.js +157 -0
- package/sparkdream/season/v1/transition_recovery_state.d.ts +85 -0
- package/sparkdream/season/v1/transition_recovery_state.js +121 -0
- package/sparkdream/season/v1/tx.amino.d.ts +218 -0
- package/sparkdream/season/v1/tx.amino.js +222 -0
- package/sparkdream/season/v1/tx.d.ts +4133 -0
- package/sparkdream/season/v1/tx.js +6827 -0
- package/sparkdream/season/v1/tx.registry.d.ts +529 -0
- package/sparkdream/season/v1/tx.registry.js +793 -0
- package/sparkdream/season/v1/tx.rpc.msg.d.ts +144 -0
- package/sparkdream/season/v1/tx.rpc.msg.js +277 -0
- package/sparkdream/season/v1/vote_xp_record.d.ts +48 -0
- package/sparkdream/season/v1/vote_xp_record.js +86 -0
- package/sparkdream/session/module/v1/module.d.ts +54 -0
- package/sparkdream/session/module/v1/module.js +74 -0
- package/sparkdream/session/v1/genesis.d.ts +62 -0
- package/sparkdream/session/v1/genesis.js +91 -0
- package/sparkdream/session/v1/params.d.ts +168 -0
- package/sparkdream/session/v1/params.js +278 -0
- package/sparkdream/session/v1/query.d.ts +423 -0
- package/sparkdream/session/v1/query.js +746 -0
- package/sparkdream/session/v1/query.lcd.d.ts +13 -0
- package/sparkdream/session/v1/query.lcd.js +49 -0
- package/sparkdream/session/v1/query.rpc.Query.d.ts +32 -0
- package/sparkdream/session/v1/query.rpc.Query.js +65 -0
- package/sparkdream/session/v1/session.d.ts +125 -0
- package/sparkdream/session/v1/session.js +188 -0
- package/sparkdream/session/v1/tx.amino.d.ts +28 -0
- package/sparkdream/session/v1/tx.amino.js +32 -0
- package/sparkdream/session/v1/tx.d.ts +481 -0
- package/sparkdream/session/v1/tx.js +771 -0
- package/sparkdream/session/v1/tx.registry.d.ts +73 -0
- package/sparkdream/session/v1/tx.registry.js +109 -0
- package/sparkdream/session/v1/tx.rpc.msg.d.ts +31 -0
- package/sparkdream/session/v1/tx.rpc.msg.js +48 -0
- package/sparkdream/shield/module/v1/module.d.ts +54 -0
- package/sparkdream/shield/module/v1/module.js +74 -0
- package/sparkdream/shield/v1/genesis.d.ts +182 -0
- package/sparkdream/shield/v1/genesis.js +304 -0
- package/sparkdream/shield/v1/params.d.ts +192 -0
- package/sparkdream/shield/v1/params.js +285 -0
- package/sparkdream/shield/v1/query.d.ts +1406 -0
- package/sparkdream/shield/v1/query.js +2326 -0
- package/sparkdream/shield/v1/query.lcd.d.ts +25 -0
- package/sparkdream/shield/v1/query.lcd.js +114 -0
- package/sparkdream/shield/v1/query.rpc.Query.d.ts +80 -0
- package/sparkdream/shield/v1/query.rpc.Query.js +175 -0
- package/sparkdream/shield/v1/tx.amino.d.ts +28 -0
- package/sparkdream/shield/v1/tx.amino.js +32 -0
- package/sparkdream/shield/v1/tx.d.ts +542 -0
- package/sparkdream/shield/v1/tx.js +841 -0
- package/sparkdream/shield/v1/tx.registry.d.ts +73 -0
- package/sparkdream/shield/v1/tx.registry.js +109 -0
- package/sparkdream/shield/v1/tx.rpc.msg.d.ts +29 -0
- package/sparkdream/shield/v1/tx.rpc.msg.js +48 -0
- package/sparkdream/shield/v1/types.d.ts +1412 -0
- package/sparkdream/shield/v1/types.js +2398 -0
- package/sparkdream/sparkdream/module/v1/module.d.ts +18 -2
- package/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/sparkdream/sparkdream/v1/genesis.d.ts +24 -4
- package/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/sparkdream/sparkdream/v1/params.d.ts +18 -2
- package/sparkdream/sparkdream/v1/params.js +6 -0
- package/sparkdream/sparkdream/v1/query.d.ts +42 -6
- package/sparkdream/sparkdream/v1/query.js +12 -0
- package/sparkdream/sparkdream/v1/tx.d.ts +37 -4
- package/sparkdream/sparkdream/v1/tx.js +13 -0
- package/sparkdream/split/module/v1/module.d.ts +54 -0
- package/sparkdream/split/module/v1/module.js +74 -0
- package/sparkdream/split/v1/genesis.d.ts +56 -0
- package/sparkdream/split/v1/genesis.js +91 -0
- package/sparkdream/split/v1/params.d.ts +46 -0
- package/sparkdream/split/v1/params.js +68 -0
- package/sparkdream/split/v1/query.d.ts +275 -0
- package/sparkdream/split/v1/query.js +424 -0
- package/sparkdream/split/v1/query.lcd.d.ts +11 -0
- package/sparkdream/split/v1/query.lcd.js +35 -0
- package/sparkdream/split/v1/query.rpc.Query.d.ts +24 -0
- package/sparkdream/split/v1/query.rpc.Query.js +49 -0
- package/sparkdream/split/v1/share.d.ts +48 -0
- package/sparkdream/split/v1/share.js +86 -0
- package/sparkdream/split/v1/tx.amino.d.ts +8 -0
- package/sparkdream/split/v1/tx.amino.js +12 -0
- package/sparkdream/split/v1/tx.d.ts +108 -0
- package/sparkdream/split/v1/tx.js +151 -0
- package/sparkdream/split/v1/tx.registry.d.ts +25 -0
- package/sparkdream/split/v1/tx.registry.js +37 -0
- package/sparkdream/split/v1/tx.rpc.msg.d.ts +16 -0
- package/sparkdream/split/v1/tx.rpc.msg.js +23 -0
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +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/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/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
|
@@ -0,0 +1,2940 @@
|
|
|
1
|
+
import { Params, ParamsAmino, RepOperationalParams, RepOperationalParamsAmino } from "./params";
|
|
2
|
+
import { InterimType, InterimComplexity } from "./interim";
|
|
3
|
+
import { ProjectCategory } from "./project";
|
|
4
|
+
import { CriteriaVote, CriteriaVoteAmino, Verdict } from "./jury_review";
|
|
5
|
+
import { StakeTargetType } from "./stake";
|
|
6
|
+
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
7
|
+
import { DeepPartial } from "../../../helpers";
|
|
8
|
+
export declare enum TransferPurpose {
|
|
9
|
+
TRANSFER_PURPOSE_TIP = 0,
|
|
10
|
+
TRANSFER_PURPOSE_GIFT = 1,
|
|
11
|
+
TRANSFER_PURPOSE_BOUNTY = 2,
|
|
12
|
+
UNRECOGNIZED = -1
|
|
13
|
+
}
|
|
14
|
+
export declare const TransferPurposeAmino: typeof TransferPurpose;
|
|
15
|
+
export declare function transferPurposeFromJSON(object: any): TransferPurpose;
|
|
16
|
+
export declare function transferPurposeToJSON(object: TransferPurpose): string;
|
|
17
|
+
/**
|
|
18
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
19
|
+
* @name MsgUpdateParams
|
|
20
|
+
* @package sparkdream.rep.v1
|
|
21
|
+
* @see proto type: sparkdream.rep.v1.MsgUpdateParams
|
|
22
|
+
*/
|
|
23
|
+
export interface MsgUpdateParams {
|
|
24
|
+
/**
|
|
25
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
26
|
+
*/
|
|
27
|
+
authority: string;
|
|
28
|
+
/**
|
|
29
|
+
* NOTE: All parameters must be supplied.
|
|
30
|
+
*/
|
|
31
|
+
params: Params;
|
|
32
|
+
}
|
|
33
|
+
export interface MsgUpdateParamsProtoMsg {
|
|
34
|
+
typeUrl: "/sparkdream.rep.v1.MsgUpdateParams";
|
|
35
|
+
value: Uint8Array;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
39
|
+
* @name MsgUpdateParamsAmino
|
|
40
|
+
* @package sparkdream.rep.v1
|
|
41
|
+
* @see proto type: sparkdream.rep.v1.MsgUpdateParams
|
|
42
|
+
*/
|
|
43
|
+
export interface MsgUpdateParamsAmino {
|
|
44
|
+
/**
|
|
45
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
46
|
+
*/
|
|
47
|
+
authority?: string;
|
|
48
|
+
/**
|
|
49
|
+
* NOTE: All parameters must be supplied.
|
|
50
|
+
*/
|
|
51
|
+
params: ParamsAmino;
|
|
52
|
+
}
|
|
53
|
+
export interface MsgUpdateParamsAminoMsg {
|
|
54
|
+
type: "sparkdream/x/rep/MsgUpdateParams";
|
|
55
|
+
value: MsgUpdateParamsAmino;
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
59
|
+
* MsgUpdateParams message.
|
|
60
|
+
* @name MsgUpdateParamsResponse
|
|
61
|
+
* @package sparkdream.rep.v1
|
|
62
|
+
* @see proto type: sparkdream.rep.v1.MsgUpdateParamsResponse
|
|
63
|
+
*/
|
|
64
|
+
export interface MsgUpdateParamsResponse {
|
|
65
|
+
}
|
|
66
|
+
export interface MsgUpdateParamsResponseProtoMsg {
|
|
67
|
+
typeUrl: "/sparkdream.rep.v1.MsgUpdateParamsResponse";
|
|
68
|
+
value: Uint8Array;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
72
|
+
* MsgUpdateParams message.
|
|
73
|
+
* @name MsgUpdateParamsResponseAmino
|
|
74
|
+
* @package sparkdream.rep.v1
|
|
75
|
+
* @see proto type: sparkdream.rep.v1.MsgUpdateParamsResponse
|
|
76
|
+
*/
|
|
77
|
+
export interface MsgUpdateParamsResponseAmino {
|
|
78
|
+
}
|
|
79
|
+
export interface MsgUpdateParamsResponseAminoMsg {
|
|
80
|
+
type: "/sparkdream.rep.v1.MsgUpdateParamsResponse";
|
|
81
|
+
value: MsgUpdateParamsResponseAmino;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* MsgUpdateOperationalParams is the Msg/UpdateOperationalParams request type.
|
|
85
|
+
* @name MsgUpdateOperationalParams
|
|
86
|
+
* @package sparkdream.rep.v1
|
|
87
|
+
* @see proto type: sparkdream.rep.v1.MsgUpdateOperationalParams
|
|
88
|
+
*/
|
|
89
|
+
export interface MsgUpdateOperationalParams {
|
|
90
|
+
/**
|
|
91
|
+
* authority is the address that controls operational params
|
|
92
|
+
* (committee/council authority).
|
|
93
|
+
*/
|
|
94
|
+
authority: string;
|
|
95
|
+
/**
|
|
96
|
+
* operational_params defines the operational parameters to update.
|
|
97
|
+
*/
|
|
98
|
+
operationalParams: RepOperationalParams;
|
|
99
|
+
}
|
|
100
|
+
export interface MsgUpdateOperationalParamsProtoMsg {
|
|
101
|
+
typeUrl: "/sparkdream.rep.v1.MsgUpdateOperationalParams";
|
|
102
|
+
value: Uint8Array;
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* MsgUpdateOperationalParams is the Msg/UpdateOperationalParams request type.
|
|
106
|
+
* @name MsgUpdateOperationalParamsAmino
|
|
107
|
+
* @package sparkdream.rep.v1
|
|
108
|
+
* @see proto type: sparkdream.rep.v1.MsgUpdateOperationalParams
|
|
109
|
+
*/
|
|
110
|
+
export interface MsgUpdateOperationalParamsAmino {
|
|
111
|
+
/**
|
|
112
|
+
* authority is the address that controls operational params
|
|
113
|
+
* (committee/council authority).
|
|
114
|
+
*/
|
|
115
|
+
authority?: string;
|
|
116
|
+
/**
|
|
117
|
+
* operational_params defines the operational parameters to update.
|
|
118
|
+
*/
|
|
119
|
+
operational_params: RepOperationalParamsAmino;
|
|
120
|
+
}
|
|
121
|
+
export interface MsgUpdateOperationalParamsAminoMsg {
|
|
122
|
+
type: "sparkdream/x/rep/MsgUpdateOperationalParams";
|
|
123
|
+
value: MsgUpdateOperationalParamsAmino;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* MsgUpdateOperationalParamsResponse defines the response structure for
|
|
127
|
+
* executing a MsgUpdateOperationalParams message.
|
|
128
|
+
* @name MsgUpdateOperationalParamsResponse
|
|
129
|
+
* @package sparkdream.rep.v1
|
|
130
|
+
* @see proto type: sparkdream.rep.v1.MsgUpdateOperationalParamsResponse
|
|
131
|
+
*/
|
|
132
|
+
export interface MsgUpdateOperationalParamsResponse {
|
|
133
|
+
}
|
|
134
|
+
export interface MsgUpdateOperationalParamsResponseProtoMsg {
|
|
135
|
+
typeUrl: "/sparkdream.rep.v1.MsgUpdateOperationalParamsResponse";
|
|
136
|
+
value: Uint8Array;
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* MsgUpdateOperationalParamsResponse defines the response structure for
|
|
140
|
+
* executing a MsgUpdateOperationalParams message.
|
|
141
|
+
* @name MsgUpdateOperationalParamsResponseAmino
|
|
142
|
+
* @package sparkdream.rep.v1
|
|
143
|
+
* @see proto type: sparkdream.rep.v1.MsgUpdateOperationalParamsResponse
|
|
144
|
+
*/
|
|
145
|
+
export interface MsgUpdateOperationalParamsResponseAmino {
|
|
146
|
+
}
|
|
147
|
+
export interface MsgUpdateOperationalParamsResponseAminoMsg {
|
|
148
|
+
type: "/sparkdream.rep.v1.MsgUpdateOperationalParamsResponse";
|
|
149
|
+
value: MsgUpdateOperationalParamsResponseAmino;
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* MsgInviteMember defines the MsgInviteMember message.
|
|
153
|
+
* @name MsgInviteMember
|
|
154
|
+
* @package sparkdream.rep.v1
|
|
155
|
+
* @see proto type: sparkdream.rep.v1.MsgInviteMember
|
|
156
|
+
*/
|
|
157
|
+
export interface MsgInviteMember {
|
|
158
|
+
inviter: string;
|
|
159
|
+
inviteeAddress: string;
|
|
160
|
+
stakedDream: string;
|
|
161
|
+
vouchedTags: string[];
|
|
162
|
+
}
|
|
163
|
+
export interface MsgInviteMemberProtoMsg {
|
|
164
|
+
typeUrl: "/sparkdream.rep.v1.MsgInviteMember";
|
|
165
|
+
value: Uint8Array;
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
* MsgInviteMember defines the MsgInviteMember message.
|
|
169
|
+
* @name MsgInviteMemberAmino
|
|
170
|
+
* @package sparkdream.rep.v1
|
|
171
|
+
* @see proto type: sparkdream.rep.v1.MsgInviteMember
|
|
172
|
+
*/
|
|
173
|
+
export interface MsgInviteMemberAmino {
|
|
174
|
+
inviter?: string;
|
|
175
|
+
invitee_address?: string;
|
|
176
|
+
staked_dream?: string;
|
|
177
|
+
vouched_tags?: string[];
|
|
178
|
+
}
|
|
179
|
+
export interface MsgInviteMemberAminoMsg {
|
|
180
|
+
type: "/sparkdream.rep.v1.MsgInviteMember";
|
|
181
|
+
value: MsgInviteMemberAmino;
|
|
182
|
+
}
|
|
183
|
+
/**
|
|
184
|
+
* MsgInviteMemberResponse defines the MsgInviteMemberResponse message.
|
|
185
|
+
* @name MsgInviteMemberResponse
|
|
186
|
+
* @package sparkdream.rep.v1
|
|
187
|
+
* @see proto type: sparkdream.rep.v1.MsgInviteMemberResponse
|
|
188
|
+
*/
|
|
189
|
+
export interface MsgInviteMemberResponse {
|
|
190
|
+
}
|
|
191
|
+
export interface MsgInviteMemberResponseProtoMsg {
|
|
192
|
+
typeUrl: "/sparkdream.rep.v1.MsgInviteMemberResponse";
|
|
193
|
+
value: Uint8Array;
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* MsgInviteMemberResponse defines the MsgInviteMemberResponse message.
|
|
197
|
+
* @name MsgInviteMemberResponseAmino
|
|
198
|
+
* @package sparkdream.rep.v1
|
|
199
|
+
* @see proto type: sparkdream.rep.v1.MsgInviteMemberResponse
|
|
200
|
+
*/
|
|
201
|
+
export interface MsgInviteMemberResponseAmino {
|
|
202
|
+
}
|
|
203
|
+
export interface MsgInviteMemberResponseAminoMsg {
|
|
204
|
+
type: "/sparkdream.rep.v1.MsgInviteMemberResponse";
|
|
205
|
+
value: MsgInviteMemberResponseAmino;
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* MsgAcceptInvitation defines the MsgAcceptInvitation message.
|
|
209
|
+
* @name MsgAcceptInvitation
|
|
210
|
+
* @package sparkdream.rep.v1
|
|
211
|
+
* @see proto type: sparkdream.rep.v1.MsgAcceptInvitation
|
|
212
|
+
*/
|
|
213
|
+
export interface MsgAcceptInvitation {
|
|
214
|
+
invitee: string;
|
|
215
|
+
invitationId: bigint;
|
|
216
|
+
}
|
|
217
|
+
export interface MsgAcceptInvitationProtoMsg {
|
|
218
|
+
typeUrl: "/sparkdream.rep.v1.MsgAcceptInvitation";
|
|
219
|
+
value: Uint8Array;
|
|
220
|
+
}
|
|
221
|
+
/**
|
|
222
|
+
* MsgAcceptInvitation defines the MsgAcceptInvitation message.
|
|
223
|
+
* @name MsgAcceptInvitationAmino
|
|
224
|
+
* @package sparkdream.rep.v1
|
|
225
|
+
* @see proto type: sparkdream.rep.v1.MsgAcceptInvitation
|
|
226
|
+
*/
|
|
227
|
+
export interface MsgAcceptInvitationAmino {
|
|
228
|
+
invitee?: string;
|
|
229
|
+
invitation_id?: string;
|
|
230
|
+
}
|
|
231
|
+
export interface MsgAcceptInvitationAminoMsg {
|
|
232
|
+
type: "/sparkdream.rep.v1.MsgAcceptInvitation";
|
|
233
|
+
value: MsgAcceptInvitationAmino;
|
|
234
|
+
}
|
|
235
|
+
/**
|
|
236
|
+
* MsgAcceptInvitationResponse defines the MsgAcceptInvitationResponse message.
|
|
237
|
+
* @name MsgAcceptInvitationResponse
|
|
238
|
+
* @package sparkdream.rep.v1
|
|
239
|
+
* @see proto type: sparkdream.rep.v1.MsgAcceptInvitationResponse
|
|
240
|
+
*/
|
|
241
|
+
export interface MsgAcceptInvitationResponse {
|
|
242
|
+
}
|
|
243
|
+
export interface MsgAcceptInvitationResponseProtoMsg {
|
|
244
|
+
typeUrl: "/sparkdream.rep.v1.MsgAcceptInvitationResponse";
|
|
245
|
+
value: Uint8Array;
|
|
246
|
+
}
|
|
247
|
+
/**
|
|
248
|
+
* MsgAcceptInvitationResponse defines the MsgAcceptInvitationResponse message.
|
|
249
|
+
* @name MsgAcceptInvitationResponseAmino
|
|
250
|
+
* @package sparkdream.rep.v1
|
|
251
|
+
* @see proto type: sparkdream.rep.v1.MsgAcceptInvitationResponse
|
|
252
|
+
*/
|
|
253
|
+
export interface MsgAcceptInvitationResponseAmino {
|
|
254
|
+
}
|
|
255
|
+
export interface MsgAcceptInvitationResponseAminoMsg {
|
|
256
|
+
type: "/sparkdream.rep.v1.MsgAcceptInvitationResponse";
|
|
257
|
+
value: MsgAcceptInvitationResponseAmino;
|
|
258
|
+
}
|
|
259
|
+
/**
|
|
260
|
+
* MsgTransferDream defines the MsgTransferDream message.
|
|
261
|
+
* @name MsgTransferDream
|
|
262
|
+
* @package sparkdream.rep.v1
|
|
263
|
+
* @see proto type: sparkdream.rep.v1.MsgTransferDream
|
|
264
|
+
*/
|
|
265
|
+
export interface MsgTransferDream {
|
|
266
|
+
sender: string;
|
|
267
|
+
recipient: string;
|
|
268
|
+
amount: string;
|
|
269
|
+
purpose: TransferPurpose;
|
|
270
|
+
reference: string;
|
|
271
|
+
}
|
|
272
|
+
export interface MsgTransferDreamProtoMsg {
|
|
273
|
+
typeUrl: "/sparkdream.rep.v1.MsgTransferDream";
|
|
274
|
+
value: Uint8Array;
|
|
275
|
+
}
|
|
276
|
+
/**
|
|
277
|
+
* MsgTransferDream defines the MsgTransferDream message.
|
|
278
|
+
* @name MsgTransferDreamAmino
|
|
279
|
+
* @package sparkdream.rep.v1
|
|
280
|
+
* @see proto type: sparkdream.rep.v1.MsgTransferDream
|
|
281
|
+
*/
|
|
282
|
+
export interface MsgTransferDreamAmino {
|
|
283
|
+
sender?: string;
|
|
284
|
+
recipient?: string;
|
|
285
|
+
amount?: string;
|
|
286
|
+
purpose?: TransferPurpose;
|
|
287
|
+
reference?: string;
|
|
288
|
+
}
|
|
289
|
+
export interface MsgTransferDreamAminoMsg {
|
|
290
|
+
type: "/sparkdream.rep.v1.MsgTransferDream";
|
|
291
|
+
value: MsgTransferDreamAmino;
|
|
292
|
+
}
|
|
293
|
+
/**
|
|
294
|
+
* MsgTransferDreamResponse defines the MsgTransferDreamResponse message.
|
|
295
|
+
* @name MsgTransferDreamResponse
|
|
296
|
+
* @package sparkdream.rep.v1
|
|
297
|
+
* @see proto type: sparkdream.rep.v1.MsgTransferDreamResponse
|
|
298
|
+
*/
|
|
299
|
+
export interface MsgTransferDreamResponse {
|
|
300
|
+
}
|
|
301
|
+
export interface MsgTransferDreamResponseProtoMsg {
|
|
302
|
+
typeUrl: "/sparkdream.rep.v1.MsgTransferDreamResponse";
|
|
303
|
+
value: Uint8Array;
|
|
304
|
+
}
|
|
305
|
+
/**
|
|
306
|
+
* MsgTransferDreamResponse defines the MsgTransferDreamResponse message.
|
|
307
|
+
* @name MsgTransferDreamResponseAmino
|
|
308
|
+
* @package sparkdream.rep.v1
|
|
309
|
+
* @see proto type: sparkdream.rep.v1.MsgTransferDreamResponse
|
|
310
|
+
*/
|
|
311
|
+
export interface MsgTransferDreamResponseAmino {
|
|
312
|
+
}
|
|
313
|
+
export interface MsgTransferDreamResponseAminoMsg {
|
|
314
|
+
type: "/sparkdream.rep.v1.MsgTransferDreamResponse";
|
|
315
|
+
value: MsgTransferDreamResponseAmino;
|
|
316
|
+
}
|
|
317
|
+
/**
|
|
318
|
+
* MsgCreateInterim defines the MsgCreateInterim message.
|
|
319
|
+
* @name MsgCreateInterim
|
|
320
|
+
* @package sparkdream.rep.v1
|
|
321
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateInterim
|
|
322
|
+
*/
|
|
323
|
+
export interface MsgCreateInterim {
|
|
324
|
+
creator: string;
|
|
325
|
+
interimType: InterimType;
|
|
326
|
+
referenceId: bigint;
|
|
327
|
+
referenceType: string;
|
|
328
|
+
complexity: InterimComplexity;
|
|
329
|
+
deadline: bigint;
|
|
330
|
+
}
|
|
331
|
+
export interface MsgCreateInterimProtoMsg {
|
|
332
|
+
typeUrl: "/sparkdream.rep.v1.MsgCreateInterim";
|
|
333
|
+
value: Uint8Array;
|
|
334
|
+
}
|
|
335
|
+
/**
|
|
336
|
+
* MsgCreateInterim defines the MsgCreateInterim message.
|
|
337
|
+
* @name MsgCreateInterimAmino
|
|
338
|
+
* @package sparkdream.rep.v1
|
|
339
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateInterim
|
|
340
|
+
*/
|
|
341
|
+
export interface MsgCreateInterimAmino {
|
|
342
|
+
creator?: string;
|
|
343
|
+
interim_type?: InterimType;
|
|
344
|
+
reference_id?: string;
|
|
345
|
+
reference_type?: string;
|
|
346
|
+
complexity?: InterimComplexity;
|
|
347
|
+
deadline?: string;
|
|
348
|
+
}
|
|
349
|
+
export interface MsgCreateInterimAminoMsg {
|
|
350
|
+
type: "/sparkdream.rep.v1.MsgCreateInterim";
|
|
351
|
+
value: MsgCreateInterimAmino;
|
|
352
|
+
}
|
|
353
|
+
/**
|
|
354
|
+
* MsgCreateInterimResponse defines the MsgCreateInterimResponse message.
|
|
355
|
+
* @name MsgCreateInterimResponse
|
|
356
|
+
* @package sparkdream.rep.v1
|
|
357
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateInterimResponse
|
|
358
|
+
*/
|
|
359
|
+
export interface MsgCreateInterimResponse {
|
|
360
|
+
}
|
|
361
|
+
export interface MsgCreateInterimResponseProtoMsg {
|
|
362
|
+
typeUrl: "/sparkdream.rep.v1.MsgCreateInterimResponse";
|
|
363
|
+
value: Uint8Array;
|
|
364
|
+
}
|
|
365
|
+
/**
|
|
366
|
+
* MsgCreateInterimResponse defines the MsgCreateInterimResponse message.
|
|
367
|
+
* @name MsgCreateInterimResponseAmino
|
|
368
|
+
* @package sparkdream.rep.v1
|
|
369
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateInterimResponse
|
|
370
|
+
*/
|
|
371
|
+
export interface MsgCreateInterimResponseAmino {
|
|
372
|
+
}
|
|
373
|
+
export interface MsgCreateInterimResponseAminoMsg {
|
|
374
|
+
type: "/sparkdream.rep.v1.MsgCreateInterimResponse";
|
|
375
|
+
value: MsgCreateInterimResponseAmino;
|
|
376
|
+
}
|
|
377
|
+
/**
|
|
378
|
+
* MsgAssignInterim defines the MsgAssignInterim message.
|
|
379
|
+
* @name MsgAssignInterim
|
|
380
|
+
* @package sparkdream.rep.v1
|
|
381
|
+
* @see proto type: sparkdream.rep.v1.MsgAssignInterim
|
|
382
|
+
*/
|
|
383
|
+
export interface MsgAssignInterim {
|
|
384
|
+
creator: string;
|
|
385
|
+
interimId: bigint;
|
|
386
|
+
assignee: string;
|
|
387
|
+
}
|
|
388
|
+
export interface MsgAssignInterimProtoMsg {
|
|
389
|
+
typeUrl: "/sparkdream.rep.v1.MsgAssignInterim";
|
|
390
|
+
value: Uint8Array;
|
|
391
|
+
}
|
|
392
|
+
/**
|
|
393
|
+
* MsgAssignInterim defines the MsgAssignInterim message.
|
|
394
|
+
* @name MsgAssignInterimAmino
|
|
395
|
+
* @package sparkdream.rep.v1
|
|
396
|
+
* @see proto type: sparkdream.rep.v1.MsgAssignInterim
|
|
397
|
+
*/
|
|
398
|
+
export interface MsgAssignInterimAmino {
|
|
399
|
+
creator?: string;
|
|
400
|
+
interim_id?: string;
|
|
401
|
+
assignee?: string;
|
|
402
|
+
}
|
|
403
|
+
export interface MsgAssignInterimAminoMsg {
|
|
404
|
+
type: "/sparkdream.rep.v1.MsgAssignInterim";
|
|
405
|
+
value: MsgAssignInterimAmino;
|
|
406
|
+
}
|
|
407
|
+
/**
|
|
408
|
+
* MsgAssignInterimResponse defines the MsgAssignInterimResponse message.
|
|
409
|
+
* @name MsgAssignInterimResponse
|
|
410
|
+
* @package sparkdream.rep.v1
|
|
411
|
+
* @see proto type: sparkdream.rep.v1.MsgAssignInterimResponse
|
|
412
|
+
*/
|
|
413
|
+
export interface MsgAssignInterimResponse {
|
|
414
|
+
}
|
|
415
|
+
export interface MsgAssignInterimResponseProtoMsg {
|
|
416
|
+
typeUrl: "/sparkdream.rep.v1.MsgAssignInterimResponse";
|
|
417
|
+
value: Uint8Array;
|
|
418
|
+
}
|
|
419
|
+
/**
|
|
420
|
+
* MsgAssignInterimResponse defines the MsgAssignInterimResponse message.
|
|
421
|
+
* @name MsgAssignInterimResponseAmino
|
|
422
|
+
* @package sparkdream.rep.v1
|
|
423
|
+
* @see proto type: sparkdream.rep.v1.MsgAssignInterimResponse
|
|
424
|
+
*/
|
|
425
|
+
export interface MsgAssignInterimResponseAmino {
|
|
426
|
+
}
|
|
427
|
+
export interface MsgAssignInterimResponseAminoMsg {
|
|
428
|
+
type: "/sparkdream.rep.v1.MsgAssignInterimResponse";
|
|
429
|
+
value: MsgAssignInterimResponseAmino;
|
|
430
|
+
}
|
|
431
|
+
/**
|
|
432
|
+
* MsgSubmitInterimWork defines the MsgSubmitInterimWork message.
|
|
433
|
+
* @name MsgSubmitInterimWork
|
|
434
|
+
* @package sparkdream.rep.v1
|
|
435
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitInterimWork
|
|
436
|
+
*/
|
|
437
|
+
export interface MsgSubmitInterimWork {
|
|
438
|
+
creator: string;
|
|
439
|
+
interimId: bigint;
|
|
440
|
+
deliverableUri: string;
|
|
441
|
+
comments: string;
|
|
442
|
+
}
|
|
443
|
+
export interface MsgSubmitInterimWorkProtoMsg {
|
|
444
|
+
typeUrl: "/sparkdream.rep.v1.MsgSubmitInterimWork";
|
|
445
|
+
value: Uint8Array;
|
|
446
|
+
}
|
|
447
|
+
/**
|
|
448
|
+
* MsgSubmitInterimWork defines the MsgSubmitInterimWork message.
|
|
449
|
+
* @name MsgSubmitInterimWorkAmino
|
|
450
|
+
* @package sparkdream.rep.v1
|
|
451
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitInterimWork
|
|
452
|
+
*/
|
|
453
|
+
export interface MsgSubmitInterimWorkAmino {
|
|
454
|
+
creator?: string;
|
|
455
|
+
interim_id?: string;
|
|
456
|
+
deliverable_uri?: string;
|
|
457
|
+
comments?: string;
|
|
458
|
+
}
|
|
459
|
+
export interface MsgSubmitInterimWorkAminoMsg {
|
|
460
|
+
type: "/sparkdream.rep.v1.MsgSubmitInterimWork";
|
|
461
|
+
value: MsgSubmitInterimWorkAmino;
|
|
462
|
+
}
|
|
463
|
+
/**
|
|
464
|
+
* MsgSubmitInterimWorkResponse defines the MsgSubmitInterimWorkResponse message.
|
|
465
|
+
* @name MsgSubmitInterimWorkResponse
|
|
466
|
+
* @package sparkdream.rep.v1
|
|
467
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitInterimWorkResponse
|
|
468
|
+
*/
|
|
469
|
+
export interface MsgSubmitInterimWorkResponse {
|
|
470
|
+
}
|
|
471
|
+
export interface MsgSubmitInterimWorkResponseProtoMsg {
|
|
472
|
+
typeUrl: "/sparkdream.rep.v1.MsgSubmitInterimWorkResponse";
|
|
473
|
+
value: Uint8Array;
|
|
474
|
+
}
|
|
475
|
+
/**
|
|
476
|
+
* MsgSubmitInterimWorkResponse defines the MsgSubmitInterimWorkResponse message.
|
|
477
|
+
* @name MsgSubmitInterimWorkResponseAmino
|
|
478
|
+
* @package sparkdream.rep.v1
|
|
479
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitInterimWorkResponse
|
|
480
|
+
*/
|
|
481
|
+
export interface MsgSubmitInterimWorkResponseAmino {
|
|
482
|
+
}
|
|
483
|
+
export interface MsgSubmitInterimWorkResponseAminoMsg {
|
|
484
|
+
type: "/sparkdream.rep.v1.MsgSubmitInterimWorkResponse";
|
|
485
|
+
value: MsgSubmitInterimWorkResponseAmino;
|
|
486
|
+
}
|
|
487
|
+
/**
|
|
488
|
+
* MsgApproveInterim defines the MsgApproveInterim message.
|
|
489
|
+
* @name MsgApproveInterim
|
|
490
|
+
* @package sparkdream.rep.v1
|
|
491
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveInterim
|
|
492
|
+
*/
|
|
493
|
+
export interface MsgApproveInterim {
|
|
494
|
+
creator: string;
|
|
495
|
+
interimId: bigint;
|
|
496
|
+
approved: boolean;
|
|
497
|
+
comments: string;
|
|
498
|
+
}
|
|
499
|
+
export interface MsgApproveInterimProtoMsg {
|
|
500
|
+
typeUrl: "/sparkdream.rep.v1.MsgApproveInterim";
|
|
501
|
+
value: Uint8Array;
|
|
502
|
+
}
|
|
503
|
+
/**
|
|
504
|
+
* MsgApproveInterim defines the MsgApproveInterim message.
|
|
505
|
+
* @name MsgApproveInterimAmino
|
|
506
|
+
* @package sparkdream.rep.v1
|
|
507
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveInterim
|
|
508
|
+
*/
|
|
509
|
+
export interface MsgApproveInterimAmino {
|
|
510
|
+
creator?: string;
|
|
511
|
+
interim_id?: string;
|
|
512
|
+
approved?: boolean;
|
|
513
|
+
comments?: string;
|
|
514
|
+
}
|
|
515
|
+
export interface MsgApproveInterimAminoMsg {
|
|
516
|
+
type: "/sparkdream.rep.v1.MsgApproveInterim";
|
|
517
|
+
value: MsgApproveInterimAmino;
|
|
518
|
+
}
|
|
519
|
+
/**
|
|
520
|
+
* MsgApproveInterimResponse defines the MsgApproveInterimResponse message.
|
|
521
|
+
* @name MsgApproveInterimResponse
|
|
522
|
+
* @package sparkdream.rep.v1
|
|
523
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveInterimResponse
|
|
524
|
+
*/
|
|
525
|
+
export interface MsgApproveInterimResponse {
|
|
526
|
+
}
|
|
527
|
+
export interface MsgApproveInterimResponseProtoMsg {
|
|
528
|
+
typeUrl: "/sparkdream.rep.v1.MsgApproveInterimResponse";
|
|
529
|
+
value: Uint8Array;
|
|
530
|
+
}
|
|
531
|
+
/**
|
|
532
|
+
* MsgApproveInterimResponse defines the MsgApproveInterimResponse message.
|
|
533
|
+
* @name MsgApproveInterimResponseAmino
|
|
534
|
+
* @package sparkdream.rep.v1
|
|
535
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveInterimResponse
|
|
536
|
+
*/
|
|
537
|
+
export interface MsgApproveInterimResponseAmino {
|
|
538
|
+
}
|
|
539
|
+
export interface MsgApproveInterimResponseAminoMsg {
|
|
540
|
+
type: "/sparkdream.rep.v1.MsgApproveInterimResponse";
|
|
541
|
+
value: MsgApproveInterimResponseAmino;
|
|
542
|
+
}
|
|
543
|
+
/**
|
|
544
|
+
* MsgAbandonInterim defines the MsgAbandonInterim message.
|
|
545
|
+
* @name MsgAbandonInterim
|
|
546
|
+
* @package sparkdream.rep.v1
|
|
547
|
+
* @see proto type: sparkdream.rep.v1.MsgAbandonInterim
|
|
548
|
+
*/
|
|
549
|
+
export interface MsgAbandonInterim {
|
|
550
|
+
creator: string;
|
|
551
|
+
interimId: bigint;
|
|
552
|
+
reason: string;
|
|
553
|
+
}
|
|
554
|
+
export interface MsgAbandonInterimProtoMsg {
|
|
555
|
+
typeUrl: "/sparkdream.rep.v1.MsgAbandonInterim";
|
|
556
|
+
value: Uint8Array;
|
|
557
|
+
}
|
|
558
|
+
/**
|
|
559
|
+
* MsgAbandonInterim defines the MsgAbandonInterim message.
|
|
560
|
+
* @name MsgAbandonInterimAmino
|
|
561
|
+
* @package sparkdream.rep.v1
|
|
562
|
+
* @see proto type: sparkdream.rep.v1.MsgAbandonInterim
|
|
563
|
+
*/
|
|
564
|
+
export interface MsgAbandonInterimAmino {
|
|
565
|
+
creator?: string;
|
|
566
|
+
interim_id?: string;
|
|
567
|
+
reason?: string;
|
|
568
|
+
}
|
|
569
|
+
export interface MsgAbandonInterimAminoMsg {
|
|
570
|
+
type: "/sparkdream.rep.v1.MsgAbandonInterim";
|
|
571
|
+
value: MsgAbandonInterimAmino;
|
|
572
|
+
}
|
|
573
|
+
/**
|
|
574
|
+
* MsgAbandonInterimResponse defines the MsgAbandonInterimResponse message.
|
|
575
|
+
* @name MsgAbandonInterimResponse
|
|
576
|
+
* @package sparkdream.rep.v1
|
|
577
|
+
* @see proto type: sparkdream.rep.v1.MsgAbandonInterimResponse
|
|
578
|
+
*/
|
|
579
|
+
export interface MsgAbandonInterimResponse {
|
|
580
|
+
}
|
|
581
|
+
export interface MsgAbandonInterimResponseProtoMsg {
|
|
582
|
+
typeUrl: "/sparkdream.rep.v1.MsgAbandonInterimResponse";
|
|
583
|
+
value: Uint8Array;
|
|
584
|
+
}
|
|
585
|
+
/**
|
|
586
|
+
* MsgAbandonInterimResponse defines the MsgAbandonInterimResponse message.
|
|
587
|
+
* @name MsgAbandonInterimResponseAmino
|
|
588
|
+
* @package sparkdream.rep.v1
|
|
589
|
+
* @see proto type: sparkdream.rep.v1.MsgAbandonInterimResponse
|
|
590
|
+
*/
|
|
591
|
+
export interface MsgAbandonInterimResponseAmino {
|
|
592
|
+
}
|
|
593
|
+
export interface MsgAbandonInterimResponseAminoMsg {
|
|
594
|
+
type: "/sparkdream.rep.v1.MsgAbandonInterimResponse";
|
|
595
|
+
value: MsgAbandonInterimResponseAmino;
|
|
596
|
+
}
|
|
597
|
+
/**
|
|
598
|
+
* MsgCompleteInterim defines the MsgCompleteInterim message.
|
|
599
|
+
* @name MsgCompleteInterim
|
|
600
|
+
* @package sparkdream.rep.v1
|
|
601
|
+
* @see proto type: sparkdream.rep.v1.MsgCompleteInterim
|
|
602
|
+
*/
|
|
603
|
+
export interface MsgCompleteInterim {
|
|
604
|
+
creator: string;
|
|
605
|
+
interimId: bigint;
|
|
606
|
+
completionNotes: string;
|
|
607
|
+
}
|
|
608
|
+
export interface MsgCompleteInterimProtoMsg {
|
|
609
|
+
typeUrl: "/sparkdream.rep.v1.MsgCompleteInterim";
|
|
610
|
+
value: Uint8Array;
|
|
611
|
+
}
|
|
612
|
+
/**
|
|
613
|
+
* MsgCompleteInterim defines the MsgCompleteInterim message.
|
|
614
|
+
* @name MsgCompleteInterimAmino
|
|
615
|
+
* @package sparkdream.rep.v1
|
|
616
|
+
* @see proto type: sparkdream.rep.v1.MsgCompleteInterim
|
|
617
|
+
*/
|
|
618
|
+
export interface MsgCompleteInterimAmino {
|
|
619
|
+
creator?: string;
|
|
620
|
+
interim_id?: string;
|
|
621
|
+
completion_notes?: string;
|
|
622
|
+
}
|
|
623
|
+
export interface MsgCompleteInterimAminoMsg {
|
|
624
|
+
type: "/sparkdream.rep.v1.MsgCompleteInterim";
|
|
625
|
+
value: MsgCompleteInterimAmino;
|
|
626
|
+
}
|
|
627
|
+
/**
|
|
628
|
+
* MsgCompleteInterimResponse defines the MsgCompleteInterimResponse message.
|
|
629
|
+
* @name MsgCompleteInterimResponse
|
|
630
|
+
* @package sparkdream.rep.v1
|
|
631
|
+
* @see proto type: sparkdream.rep.v1.MsgCompleteInterimResponse
|
|
632
|
+
*/
|
|
633
|
+
export interface MsgCompleteInterimResponse {
|
|
634
|
+
}
|
|
635
|
+
export interface MsgCompleteInterimResponseProtoMsg {
|
|
636
|
+
typeUrl: "/sparkdream.rep.v1.MsgCompleteInterimResponse";
|
|
637
|
+
value: Uint8Array;
|
|
638
|
+
}
|
|
639
|
+
/**
|
|
640
|
+
* MsgCompleteInterimResponse defines the MsgCompleteInterimResponse message.
|
|
641
|
+
* @name MsgCompleteInterimResponseAmino
|
|
642
|
+
* @package sparkdream.rep.v1
|
|
643
|
+
* @see proto type: sparkdream.rep.v1.MsgCompleteInterimResponse
|
|
644
|
+
*/
|
|
645
|
+
export interface MsgCompleteInterimResponseAmino {
|
|
646
|
+
}
|
|
647
|
+
export interface MsgCompleteInterimResponseAminoMsg {
|
|
648
|
+
type: "/sparkdream.rep.v1.MsgCompleteInterimResponse";
|
|
649
|
+
value: MsgCompleteInterimResponseAmino;
|
|
650
|
+
}
|
|
651
|
+
/**
|
|
652
|
+
* MsgProposeProject defines the MsgProposeProject message.
|
|
653
|
+
* @name MsgProposeProject
|
|
654
|
+
* @package sparkdream.rep.v1
|
|
655
|
+
* @see proto type: sparkdream.rep.v1.MsgProposeProject
|
|
656
|
+
*/
|
|
657
|
+
export interface MsgProposeProject {
|
|
658
|
+
creator: string;
|
|
659
|
+
name: string;
|
|
660
|
+
description: string;
|
|
661
|
+
tags: string[];
|
|
662
|
+
category: ProjectCategory;
|
|
663
|
+
council: string;
|
|
664
|
+
requestedBudget: string;
|
|
665
|
+
requestedSpark: string;
|
|
666
|
+
deliverables: string[];
|
|
667
|
+
milestones: string[];
|
|
668
|
+
}
|
|
669
|
+
export interface MsgProposeProjectProtoMsg {
|
|
670
|
+
typeUrl: "/sparkdream.rep.v1.MsgProposeProject";
|
|
671
|
+
value: Uint8Array;
|
|
672
|
+
}
|
|
673
|
+
/**
|
|
674
|
+
* MsgProposeProject defines the MsgProposeProject message.
|
|
675
|
+
* @name MsgProposeProjectAmino
|
|
676
|
+
* @package sparkdream.rep.v1
|
|
677
|
+
* @see proto type: sparkdream.rep.v1.MsgProposeProject
|
|
678
|
+
*/
|
|
679
|
+
export interface MsgProposeProjectAmino {
|
|
680
|
+
creator?: string;
|
|
681
|
+
name?: string;
|
|
682
|
+
description?: string;
|
|
683
|
+
tags?: string[];
|
|
684
|
+
category?: ProjectCategory;
|
|
685
|
+
council?: string;
|
|
686
|
+
requested_budget?: string;
|
|
687
|
+
requested_spark?: string;
|
|
688
|
+
deliverables?: string[];
|
|
689
|
+
milestones?: string[];
|
|
690
|
+
}
|
|
691
|
+
export interface MsgProposeProjectAminoMsg {
|
|
692
|
+
type: "/sparkdream.rep.v1.MsgProposeProject";
|
|
693
|
+
value: MsgProposeProjectAmino;
|
|
694
|
+
}
|
|
695
|
+
/**
|
|
696
|
+
* MsgProposeProjectResponse defines the MsgProposeProjectResponse message.
|
|
697
|
+
* @name MsgProposeProjectResponse
|
|
698
|
+
* @package sparkdream.rep.v1
|
|
699
|
+
* @see proto type: sparkdream.rep.v1.MsgProposeProjectResponse
|
|
700
|
+
*/
|
|
701
|
+
export interface MsgProposeProjectResponse {
|
|
702
|
+
}
|
|
703
|
+
export interface MsgProposeProjectResponseProtoMsg {
|
|
704
|
+
typeUrl: "/sparkdream.rep.v1.MsgProposeProjectResponse";
|
|
705
|
+
value: Uint8Array;
|
|
706
|
+
}
|
|
707
|
+
/**
|
|
708
|
+
* MsgProposeProjectResponse defines the MsgProposeProjectResponse message.
|
|
709
|
+
* @name MsgProposeProjectResponseAmino
|
|
710
|
+
* @package sparkdream.rep.v1
|
|
711
|
+
* @see proto type: sparkdream.rep.v1.MsgProposeProjectResponse
|
|
712
|
+
*/
|
|
713
|
+
export interface MsgProposeProjectResponseAmino {
|
|
714
|
+
}
|
|
715
|
+
export interface MsgProposeProjectResponseAminoMsg {
|
|
716
|
+
type: "/sparkdream.rep.v1.MsgProposeProjectResponse";
|
|
717
|
+
value: MsgProposeProjectResponseAmino;
|
|
718
|
+
}
|
|
719
|
+
/**
|
|
720
|
+
* MsgApproveProjectBudget defines the MsgApproveProjectBudget message.
|
|
721
|
+
* @name MsgApproveProjectBudget
|
|
722
|
+
* @package sparkdream.rep.v1
|
|
723
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveProjectBudget
|
|
724
|
+
*/
|
|
725
|
+
export interface MsgApproveProjectBudget {
|
|
726
|
+
approver: string;
|
|
727
|
+
projectId: bigint;
|
|
728
|
+
approvedBudget: string;
|
|
729
|
+
approvedSpark: string;
|
|
730
|
+
}
|
|
731
|
+
export interface MsgApproveProjectBudgetProtoMsg {
|
|
732
|
+
typeUrl: "/sparkdream.rep.v1.MsgApproveProjectBudget";
|
|
733
|
+
value: Uint8Array;
|
|
734
|
+
}
|
|
735
|
+
/**
|
|
736
|
+
* MsgApproveProjectBudget defines the MsgApproveProjectBudget message.
|
|
737
|
+
* @name MsgApproveProjectBudgetAmino
|
|
738
|
+
* @package sparkdream.rep.v1
|
|
739
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveProjectBudget
|
|
740
|
+
*/
|
|
741
|
+
export interface MsgApproveProjectBudgetAmino {
|
|
742
|
+
approver?: string;
|
|
743
|
+
project_id?: string;
|
|
744
|
+
approved_budget?: string;
|
|
745
|
+
approved_spark?: string;
|
|
746
|
+
}
|
|
747
|
+
export interface MsgApproveProjectBudgetAminoMsg {
|
|
748
|
+
type: "/sparkdream.rep.v1.MsgApproveProjectBudget";
|
|
749
|
+
value: MsgApproveProjectBudgetAmino;
|
|
750
|
+
}
|
|
751
|
+
/**
|
|
752
|
+
* MsgApproveProjectBudgetResponse defines the MsgApproveProjectBudgetResponse message.
|
|
753
|
+
* @name MsgApproveProjectBudgetResponse
|
|
754
|
+
* @package sparkdream.rep.v1
|
|
755
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveProjectBudgetResponse
|
|
756
|
+
*/
|
|
757
|
+
export interface MsgApproveProjectBudgetResponse {
|
|
758
|
+
}
|
|
759
|
+
export interface MsgApproveProjectBudgetResponseProtoMsg {
|
|
760
|
+
typeUrl: "/sparkdream.rep.v1.MsgApproveProjectBudgetResponse";
|
|
761
|
+
value: Uint8Array;
|
|
762
|
+
}
|
|
763
|
+
/**
|
|
764
|
+
* MsgApproveProjectBudgetResponse defines the MsgApproveProjectBudgetResponse message.
|
|
765
|
+
* @name MsgApproveProjectBudgetResponseAmino
|
|
766
|
+
* @package sparkdream.rep.v1
|
|
767
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveProjectBudgetResponse
|
|
768
|
+
*/
|
|
769
|
+
export interface MsgApproveProjectBudgetResponseAmino {
|
|
770
|
+
}
|
|
771
|
+
export interface MsgApproveProjectBudgetResponseAminoMsg {
|
|
772
|
+
type: "/sparkdream.rep.v1.MsgApproveProjectBudgetResponse";
|
|
773
|
+
value: MsgApproveProjectBudgetResponseAmino;
|
|
774
|
+
}
|
|
775
|
+
/**
|
|
776
|
+
* MsgCancelProject defines the MsgCancelProject message.
|
|
777
|
+
* @name MsgCancelProject
|
|
778
|
+
* @package sparkdream.rep.v1
|
|
779
|
+
* @see proto type: sparkdream.rep.v1.MsgCancelProject
|
|
780
|
+
*/
|
|
781
|
+
export interface MsgCancelProject {
|
|
782
|
+
creator: string;
|
|
783
|
+
projectId: bigint;
|
|
784
|
+
reason: string;
|
|
785
|
+
}
|
|
786
|
+
export interface MsgCancelProjectProtoMsg {
|
|
787
|
+
typeUrl: "/sparkdream.rep.v1.MsgCancelProject";
|
|
788
|
+
value: Uint8Array;
|
|
789
|
+
}
|
|
790
|
+
/**
|
|
791
|
+
* MsgCancelProject defines the MsgCancelProject message.
|
|
792
|
+
* @name MsgCancelProjectAmino
|
|
793
|
+
* @package sparkdream.rep.v1
|
|
794
|
+
* @see proto type: sparkdream.rep.v1.MsgCancelProject
|
|
795
|
+
*/
|
|
796
|
+
export interface MsgCancelProjectAmino {
|
|
797
|
+
creator?: string;
|
|
798
|
+
project_id?: string;
|
|
799
|
+
reason?: string;
|
|
800
|
+
}
|
|
801
|
+
export interface MsgCancelProjectAminoMsg {
|
|
802
|
+
type: "/sparkdream.rep.v1.MsgCancelProject";
|
|
803
|
+
value: MsgCancelProjectAmino;
|
|
804
|
+
}
|
|
805
|
+
/**
|
|
806
|
+
* MsgCancelProjectResponse defines the MsgCancelProjectResponse message.
|
|
807
|
+
* @name MsgCancelProjectResponse
|
|
808
|
+
* @package sparkdream.rep.v1
|
|
809
|
+
* @see proto type: sparkdream.rep.v1.MsgCancelProjectResponse
|
|
810
|
+
*/
|
|
811
|
+
export interface MsgCancelProjectResponse {
|
|
812
|
+
}
|
|
813
|
+
export interface MsgCancelProjectResponseProtoMsg {
|
|
814
|
+
typeUrl: "/sparkdream.rep.v1.MsgCancelProjectResponse";
|
|
815
|
+
value: Uint8Array;
|
|
816
|
+
}
|
|
817
|
+
/**
|
|
818
|
+
* MsgCancelProjectResponse defines the MsgCancelProjectResponse message.
|
|
819
|
+
* @name MsgCancelProjectResponseAmino
|
|
820
|
+
* @package sparkdream.rep.v1
|
|
821
|
+
* @see proto type: sparkdream.rep.v1.MsgCancelProjectResponse
|
|
822
|
+
*/
|
|
823
|
+
export interface MsgCancelProjectResponseAmino {
|
|
824
|
+
}
|
|
825
|
+
export interface MsgCancelProjectResponseAminoMsg {
|
|
826
|
+
type: "/sparkdream.rep.v1.MsgCancelProjectResponse";
|
|
827
|
+
value: MsgCancelProjectResponseAmino;
|
|
828
|
+
}
|
|
829
|
+
/**
|
|
830
|
+
* MsgCreateInitiative defines the MsgCreateInitiative message.
|
|
831
|
+
* @name MsgCreateInitiative
|
|
832
|
+
* @package sparkdream.rep.v1
|
|
833
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateInitiative
|
|
834
|
+
*/
|
|
835
|
+
export interface MsgCreateInitiative {
|
|
836
|
+
creator: string;
|
|
837
|
+
projectId: bigint;
|
|
838
|
+
title: string;
|
|
839
|
+
description: string;
|
|
840
|
+
tags: string[];
|
|
841
|
+
tier: bigint;
|
|
842
|
+
category: bigint;
|
|
843
|
+
templateId: string;
|
|
844
|
+
budget: string;
|
|
845
|
+
}
|
|
846
|
+
export interface MsgCreateInitiativeProtoMsg {
|
|
847
|
+
typeUrl: "/sparkdream.rep.v1.MsgCreateInitiative";
|
|
848
|
+
value: Uint8Array;
|
|
849
|
+
}
|
|
850
|
+
/**
|
|
851
|
+
* MsgCreateInitiative defines the MsgCreateInitiative message.
|
|
852
|
+
* @name MsgCreateInitiativeAmino
|
|
853
|
+
* @package sparkdream.rep.v1
|
|
854
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateInitiative
|
|
855
|
+
*/
|
|
856
|
+
export interface MsgCreateInitiativeAmino {
|
|
857
|
+
creator?: string;
|
|
858
|
+
project_id?: string;
|
|
859
|
+
title?: string;
|
|
860
|
+
description?: string;
|
|
861
|
+
tags?: string[];
|
|
862
|
+
tier?: string;
|
|
863
|
+
category?: string;
|
|
864
|
+
template_id?: string;
|
|
865
|
+
budget?: string;
|
|
866
|
+
}
|
|
867
|
+
export interface MsgCreateInitiativeAminoMsg {
|
|
868
|
+
type: "/sparkdream.rep.v1.MsgCreateInitiative";
|
|
869
|
+
value: MsgCreateInitiativeAmino;
|
|
870
|
+
}
|
|
871
|
+
/**
|
|
872
|
+
* MsgCreateInitiativeResponse defines the MsgCreateInitiativeResponse message.
|
|
873
|
+
* @name MsgCreateInitiativeResponse
|
|
874
|
+
* @package sparkdream.rep.v1
|
|
875
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateInitiativeResponse
|
|
876
|
+
*/
|
|
877
|
+
export interface MsgCreateInitiativeResponse {
|
|
878
|
+
initiativeId: bigint;
|
|
879
|
+
}
|
|
880
|
+
export interface MsgCreateInitiativeResponseProtoMsg {
|
|
881
|
+
typeUrl: "/sparkdream.rep.v1.MsgCreateInitiativeResponse";
|
|
882
|
+
value: Uint8Array;
|
|
883
|
+
}
|
|
884
|
+
/**
|
|
885
|
+
* MsgCreateInitiativeResponse defines the MsgCreateInitiativeResponse message.
|
|
886
|
+
* @name MsgCreateInitiativeResponseAmino
|
|
887
|
+
* @package sparkdream.rep.v1
|
|
888
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateInitiativeResponse
|
|
889
|
+
*/
|
|
890
|
+
export interface MsgCreateInitiativeResponseAmino {
|
|
891
|
+
initiative_id?: string;
|
|
892
|
+
}
|
|
893
|
+
export interface MsgCreateInitiativeResponseAminoMsg {
|
|
894
|
+
type: "/sparkdream.rep.v1.MsgCreateInitiativeResponse";
|
|
895
|
+
value: MsgCreateInitiativeResponseAmino;
|
|
896
|
+
}
|
|
897
|
+
/**
|
|
898
|
+
* MsgAssignInitiative defines the MsgAssignInitiative message.
|
|
899
|
+
* @name MsgAssignInitiative
|
|
900
|
+
* @package sparkdream.rep.v1
|
|
901
|
+
* @see proto type: sparkdream.rep.v1.MsgAssignInitiative
|
|
902
|
+
*/
|
|
903
|
+
export interface MsgAssignInitiative {
|
|
904
|
+
creator: string;
|
|
905
|
+
initiativeId: bigint;
|
|
906
|
+
assignee: string;
|
|
907
|
+
}
|
|
908
|
+
export interface MsgAssignInitiativeProtoMsg {
|
|
909
|
+
typeUrl: "/sparkdream.rep.v1.MsgAssignInitiative";
|
|
910
|
+
value: Uint8Array;
|
|
911
|
+
}
|
|
912
|
+
/**
|
|
913
|
+
* MsgAssignInitiative defines the MsgAssignInitiative message.
|
|
914
|
+
* @name MsgAssignInitiativeAmino
|
|
915
|
+
* @package sparkdream.rep.v1
|
|
916
|
+
* @see proto type: sparkdream.rep.v1.MsgAssignInitiative
|
|
917
|
+
*/
|
|
918
|
+
export interface MsgAssignInitiativeAmino {
|
|
919
|
+
creator?: string;
|
|
920
|
+
initiative_id?: string;
|
|
921
|
+
assignee?: string;
|
|
922
|
+
}
|
|
923
|
+
export interface MsgAssignInitiativeAminoMsg {
|
|
924
|
+
type: "/sparkdream.rep.v1.MsgAssignInitiative";
|
|
925
|
+
value: MsgAssignInitiativeAmino;
|
|
926
|
+
}
|
|
927
|
+
/**
|
|
928
|
+
* MsgAssignInitiativeResponse defines the MsgAssignInitiativeResponse message.
|
|
929
|
+
* @name MsgAssignInitiativeResponse
|
|
930
|
+
* @package sparkdream.rep.v1
|
|
931
|
+
* @see proto type: sparkdream.rep.v1.MsgAssignInitiativeResponse
|
|
932
|
+
*/
|
|
933
|
+
export interface MsgAssignInitiativeResponse {
|
|
934
|
+
}
|
|
935
|
+
export interface MsgAssignInitiativeResponseProtoMsg {
|
|
936
|
+
typeUrl: "/sparkdream.rep.v1.MsgAssignInitiativeResponse";
|
|
937
|
+
value: Uint8Array;
|
|
938
|
+
}
|
|
939
|
+
/**
|
|
940
|
+
* MsgAssignInitiativeResponse defines the MsgAssignInitiativeResponse message.
|
|
941
|
+
* @name MsgAssignInitiativeResponseAmino
|
|
942
|
+
* @package sparkdream.rep.v1
|
|
943
|
+
* @see proto type: sparkdream.rep.v1.MsgAssignInitiativeResponse
|
|
944
|
+
*/
|
|
945
|
+
export interface MsgAssignInitiativeResponseAmino {
|
|
946
|
+
}
|
|
947
|
+
export interface MsgAssignInitiativeResponseAminoMsg {
|
|
948
|
+
type: "/sparkdream.rep.v1.MsgAssignInitiativeResponse";
|
|
949
|
+
value: MsgAssignInitiativeResponseAmino;
|
|
950
|
+
}
|
|
951
|
+
/**
|
|
952
|
+
* MsgSubmitInitiativeWork defines the MsgSubmitInitiativeWork message.
|
|
953
|
+
* @name MsgSubmitInitiativeWork
|
|
954
|
+
* @package sparkdream.rep.v1
|
|
955
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitInitiativeWork
|
|
956
|
+
*/
|
|
957
|
+
export interface MsgSubmitInitiativeWork {
|
|
958
|
+
creator: string;
|
|
959
|
+
initiativeId: bigint;
|
|
960
|
+
deliverableUri: string;
|
|
961
|
+
comments: string;
|
|
962
|
+
}
|
|
963
|
+
export interface MsgSubmitInitiativeWorkProtoMsg {
|
|
964
|
+
typeUrl: "/sparkdream.rep.v1.MsgSubmitInitiativeWork";
|
|
965
|
+
value: Uint8Array;
|
|
966
|
+
}
|
|
967
|
+
/**
|
|
968
|
+
* MsgSubmitInitiativeWork defines the MsgSubmitInitiativeWork message.
|
|
969
|
+
* @name MsgSubmitInitiativeWorkAmino
|
|
970
|
+
* @package sparkdream.rep.v1
|
|
971
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitInitiativeWork
|
|
972
|
+
*/
|
|
973
|
+
export interface MsgSubmitInitiativeWorkAmino {
|
|
974
|
+
creator?: string;
|
|
975
|
+
initiative_id?: string;
|
|
976
|
+
deliverable_uri?: string;
|
|
977
|
+
comments?: string;
|
|
978
|
+
}
|
|
979
|
+
export interface MsgSubmitInitiativeWorkAminoMsg {
|
|
980
|
+
type: "/sparkdream.rep.v1.MsgSubmitInitiativeWork";
|
|
981
|
+
value: MsgSubmitInitiativeWorkAmino;
|
|
982
|
+
}
|
|
983
|
+
/**
|
|
984
|
+
* MsgSubmitInitiativeWorkResponse defines the MsgSubmitInitiativeWorkResponse message.
|
|
985
|
+
* @name MsgSubmitInitiativeWorkResponse
|
|
986
|
+
* @package sparkdream.rep.v1
|
|
987
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitInitiativeWorkResponse
|
|
988
|
+
*/
|
|
989
|
+
export interface MsgSubmitInitiativeWorkResponse {
|
|
990
|
+
}
|
|
991
|
+
export interface MsgSubmitInitiativeWorkResponseProtoMsg {
|
|
992
|
+
typeUrl: "/sparkdream.rep.v1.MsgSubmitInitiativeWorkResponse";
|
|
993
|
+
value: Uint8Array;
|
|
994
|
+
}
|
|
995
|
+
/**
|
|
996
|
+
* MsgSubmitInitiativeWorkResponse defines the MsgSubmitInitiativeWorkResponse message.
|
|
997
|
+
* @name MsgSubmitInitiativeWorkResponseAmino
|
|
998
|
+
* @package sparkdream.rep.v1
|
|
999
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitInitiativeWorkResponse
|
|
1000
|
+
*/
|
|
1001
|
+
export interface MsgSubmitInitiativeWorkResponseAmino {
|
|
1002
|
+
}
|
|
1003
|
+
export interface MsgSubmitInitiativeWorkResponseAminoMsg {
|
|
1004
|
+
type: "/sparkdream.rep.v1.MsgSubmitInitiativeWorkResponse";
|
|
1005
|
+
value: MsgSubmitInitiativeWorkResponseAmino;
|
|
1006
|
+
}
|
|
1007
|
+
/**
|
|
1008
|
+
* MsgApproveInitiative defines the MsgApproveInitiative message.
|
|
1009
|
+
* @name MsgApproveInitiative
|
|
1010
|
+
* @package sparkdream.rep.v1
|
|
1011
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveInitiative
|
|
1012
|
+
*/
|
|
1013
|
+
export interface MsgApproveInitiative {
|
|
1014
|
+
creator: string;
|
|
1015
|
+
initiativeId: bigint;
|
|
1016
|
+
criteriaVotes: CriteriaVote[];
|
|
1017
|
+
approved: boolean;
|
|
1018
|
+
comments: string;
|
|
1019
|
+
}
|
|
1020
|
+
export interface MsgApproveInitiativeProtoMsg {
|
|
1021
|
+
typeUrl: "/sparkdream.rep.v1.MsgApproveInitiative";
|
|
1022
|
+
value: Uint8Array;
|
|
1023
|
+
}
|
|
1024
|
+
/**
|
|
1025
|
+
* MsgApproveInitiative defines the MsgApproveInitiative message.
|
|
1026
|
+
* @name MsgApproveInitiativeAmino
|
|
1027
|
+
* @package sparkdream.rep.v1
|
|
1028
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveInitiative
|
|
1029
|
+
*/
|
|
1030
|
+
export interface MsgApproveInitiativeAmino {
|
|
1031
|
+
creator?: string;
|
|
1032
|
+
initiative_id?: string;
|
|
1033
|
+
criteria_votes?: CriteriaVoteAmino[];
|
|
1034
|
+
approved?: boolean;
|
|
1035
|
+
comments?: string;
|
|
1036
|
+
}
|
|
1037
|
+
export interface MsgApproveInitiativeAminoMsg {
|
|
1038
|
+
type: "/sparkdream.rep.v1.MsgApproveInitiative";
|
|
1039
|
+
value: MsgApproveInitiativeAmino;
|
|
1040
|
+
}
|
|
1041
|
+
/**
|
|
1042
|
+
* MsgApproveInitiativeResponse defines the MsgApproveInitiativeResponse message.
|
|
1043
|
+
* @name MsgApproveInitiativeResponse
|
|
1044
|
+
* @package sparkdream.rep.v1
|
|
1045
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveInitiativeResponse
|
|
1046
|
+
*/
|
|
1047
|
+
export interface MsgApproveInitiativeResponse {
|
|
1048
|
+
}
|
|
1049
|
+
export interface MsgApproveInitiativeResponseProtoMsg {
|
|
1050
|
+
typeUrl: "/sparkdream.rep.v1.MsgApproveInitiativeResponse";
|
|
1051
|
+
value: Uint8Array;
|
|
1052
|
+
}
|
|
1053
|
+
/**
|
|
1054
|
+
* MsgApproveInitiativeResponse defines the MsgApproveInitiativeResponse message.
|
|
1055
|
+
* @name MsgApproveInitiativeResponseAmino
|
|
1056
|
+
* @package sparkdream.rep.v1
|
|
1057
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveInitiativeResponse
|
|
1058
|
+
*/
|
|
1059
|
+
export interface MsgApproveInitiativeResponseAmino {
|
|
1060
|
+
}
|
|
1061
|
+
export interface MsgApproveInitiativeResponseAminoMsg {
|
|
1062
|
+
type: "/sparkdream.rep.v1.MsgApproveInitiativeResponse";
|
|
1063
|
+
value: MsgApproveInitiativeResponseAmino;
|
|
1064
|
+
}
|
|
1065
|
+
/**
|
|
1066
|
+
* MsgAbandonInitiative defines the MsgAbandonInitiative message.
|
|
1067
|
+
* @name MsgAbandonInitiative
|
|
1068
|
+
* @package sparkdream.rep.v1
|
|
1069
|
+
* @see proto type: sparkdream.rep.v1.MsgAbandonInitiative
|
|
1070
|
+
*/
|
|
1071
|
+
export interface MsgAbandonInitiative {
|
|
1072
|
+
creator: string;
|
|
1073
|
+
initiativeId: bigint;
|
|
1074
|
+
reason: string;
|
|
1075
|
+
}
|
|
1076
|
+
export interface MsgAbandonInitiativeProtoMsg {
|
|
1077
|
+
typeUrl: "/sparkdream.rep.v1.MsgAbandonInitiative";
|
|
1078
|
+
value: Uint8Array;
|
|
1079
|
+
}
|
|
1080
|
+
/**
|
|
1081
|
+
* MsgAbandonInitiative defines the MsgAbandonInitiative message.
|
|
1082
|
+
* @name MsgAbandonInitiativeAmino
|
|
1083
|
+
* @package sparkdream.rep.v1
|
|
1084
|
+
* @see proto type: sparkdream.rep.v1.MsgAbandonInitiative
|
|
1085
|
+
*/
|
|
1086
|
+
export interface MsgAbandonInitiativeAmino {
|
|
1087
|
+
creator?: string;
|
|
1088
|
+
initiative_id?: string;
|
|
1089
|
+
reason?: string;
|
|
1090
|
+
}
|
|
1091
|
+
export interface MsgAbandonInitiativeAminoMsg {
|
|
1092
|
+
type: "/sparkdream.rep.v1.MsgAbandonInitiative";
|
|
1093
|
+
value: MsgAbandonInitiativeAmino;
|
|
1094
|
+
}
|
|
1095
|
+
/**
|
|
1096
|
+
* MsgAbandonInitiativeResponse defines the MsgAbandonInitiativeResponse message.
|
|
1097
|
+
* @name MsgAbandonInitiativeResponse
|
|
1098
|
+
* @package sparkdream.rep.v1
|
|
1099
|
+
* @see proto type: sparkdream.rep.v1.MsgAbandonInitiativeResponse
|
|
1100
|
+
*/
|
|
1101
|
+
export interface MsgAbandonInitiativeResponse {
|
|
1102
|
+
}
|
|
1103
|
+
export interface MsgAbandonInitiativeResponseProtoMsg {
|
|
1104
|
+
typeUrl: "/sparkdream.rep.v1.MsgAbandonInitiativeResponse";
|
|
1105
|
+
value: Uint8Array;
|
|
1106
|
+
}
|
|
1107
|
+
/**
|
|
1108
|
+
* MsgAbandonInitiativeResponse defines the MsgAbandonInitiativeResponse message.
|
|
1109
|
+
* @name MsgAbandonInitiativeResponseAmino
|
|
1110
|
+
* @package sparkdream.rep.v1
|
|
1111
|
+
* @see proto type: sparkdream.rep.v1.MsgAbandonInitiativeResponse
|
|
1112
|
+
*/
|
|
1113
|
+
export interface MsgAbandonInitiativeResponseAmino {
|
|
1114
|
+
}
|
|
1115
|
+
export interface MsgAbandonInitiativeResponseAminoMsg {
|
|
1116
|
+
type: "/sparkdream.rep.v1.MsgAbandonInitiativeResponse";
|
|
1117
|
+
value: MsgAbandonInitiativeResponseAmino;
|
|
1118
|
+
}
|
|
1119
|
+
/**
|
|
1120
|
+
* MsgCompleteInitiative defines the MsgCompleteInitiative message.
|
|
1121
|
+
* @name MsgCompleteInitiative
|
|
1122
|
+
* @package sparkdream.rep.v1
|
|
1123
|
+
* @see proto type: sparkdream.rep.v1.MsgCompleteInitiative
|
|
1124
|
+
*/
|
|
1125
|
+
export interface MsgCompleteInitiative {
|
|
1126
|
+
creator: string;
|
|
1127
|
+
initiativeId: bigint;
|
|
1128
|
+
completionNotes: string;
|
|
1129
|
+
}
|
|
1130
|
+
export interface MsgCompleteInitiativeProtoMsg {
|
|
1131
|
+
typeUrl: "/sparkdream.rep.v1.MsgCompleteInitiative";
|
|
1132
|
+
value: Uint8Array;
|
|
1133
|
+
}
|
|
1134
|
+
/**
|
|
1135
|
+
* MsgCompleteInitiative defines the MsgCompleteInitiative message.
|
|
1136
|
+
* @name MsgCompleteInitiativeAmino
|
|
1137
|
+
* @package sparkdream.rep.v1
|
|
1138
|
+
* @see proto type: sparkdream.rep.v1.MsgCompleteInitiative
|
|
1139
|
+
*/
|
|
1140
|
+
export interface MsgCompleteInitiativeAmino {
|
|
1141
|
+
creator?: string;
|
|
1142
|
+
initiative_id?: string;
|
|
1143
|
+
completion_notes?: string;
|
|
1144
|
+
}
|
|
1145
|
+
export interface MsgCompleteInitiativeAminoMsg {
|
|
1146
|
+
type: "/sparkdream.rep.v1.MsgCompleteInitiative";
|
|
1147
|
+
value: MsgCompleteInitiativeAmino;
|
|
1148
|
+
}
|
|
1149
|
+
/**
|
|
1150
|
+
* MsgCompleteInitiativeResponse defines the MsgCompleteInitiativeResponse message.
|
|
1151
|
+
* @name MsgCompleteInitiativeResponse
|
|
1152
|
+
* @package sparkdream.rep.v1
|
|
1153
|
+
* @see proto type: sparkdream.rep.v1.MsgCompleteInitiativeResponse
|
|
1154
|
+
*/
|
|
1155
|
+
export interface MsgCompleteInitiativeResponse {
|
|
1156
|
+
}
|
|
1157
|
+
export interface MsgCompleteInitiativeResponseProtoMsg {
|
|
1158
|
+
typeUrl: "/sparkdream.rep.v1.MsgCompleteInitiativeResponse";
|
|
1159
|
+
value: Uint8Array;
|
|
1160
|
+
}
|
|
1161
|
+
/**
|
|
1162
|
+
* MsgCompleteInitiativeResponse defines the MsgCompleteInitiativeResponse message.
|
|
1163
|
+
* @name MsgCompleteInitiativeResponseAmino
|
|
1164
|
+
* @package sparkdream.rep.v1
|
|
1165
|
+
* @see proto type: sparkdream.rep.v1.MsgCompleteInitiativeResponse
|
|
1166
|
+
*/
|
|
1167
|
+
export interface MsgCompleteInitiativeResponseAmino {
|
|
1168
|
+
}
|
|
1169
|
+
export interface MsgCompleteInitiativeResponseAminoMsg {
|
|
1170
|
+
type: "/sparkdream.rep.v1.MsgCompleteInitiativeResponse";
|
|
1171
|
+
value: MsgCompleteInitiativeResponseAmino;
|
|
1172
|
+
}
|
|
1173
|
+
/**
|
|
1174
|
+
* MsgStake defines the MsgStake message.
|
|
1175
|
+
* @name MsgStake
|
|
1176
|
+
* @package sparkdream.rep.v1
|
|
1177
|
+
* @see proto type: sparkdream.rep.v1.MsgStake
|
|
1178
|
+
*/
|
|
1179
|
+
export interface MsgStake {
|
|
1180
|
+
staker: string;
|
|
1181
|
+
targetType: StakeTargetType;
|
|
1182
|
+
/**
|
|
1183
|
+
* For INITIATIVE/PROJECT
|
|
1184
|
+
*/
|
|
1185
|
+
targetId: bigint;
|
|
1186
|
+
/**
|
|
1187
|
+
* For MEMBER (address) or TAG (name)
|
|
1188
|
+
*/
|
|
1189
|
+
targetIdentifier: string;
|
|
1190
|
+
amount: string;
|
|
1191
|
+
}
|
|
1192
|
+
export interface MsgStakeProtoMsg {
|
|
1193
|
+
typeUrl: "/sparkdream.rep.v1.MsgStake";
|
|
1194
|
+
value: Uint8Array;
|
|
1195
|
+
}
|
|
1196
|
+
/**
|
|
1197
|
+
* MsgStake defines the MsgStake message.
|
|
1198
|
+
* @name MsgStakeAmino
|
|
1199
|
+
* @package sparkdream.rep.v1
|
|
1200
|
+
* @see proto type: sparkdream.rep.v1.MsgStake
|
|
1201
|
+
*/
|
|
1202
|
+
export interface MsgStakeAmino {
|
|
1203
|
+
staker?: string;
|
|
1204
|
+
target_type?: StakeTargetType;
|
|
1205
|
+
/**
|
|
1206
|
+
* For INITIATIVE/PROJECT
|
|
1207
|
+
*/
|
|
1208
|
+
target_id?: string;
|
|
1209
|
+
/**
|
|
1210
|
+
* For MEMBER (address) or TAG (name)
|
|
1211
|
+
*/
|
|
1212
|
+
target_identifier?: string;
|
|
1213
|
+
amount?: string;
|
|
1214
|
+
}
|
|
1215
|
+
export interface MsgStakeAminoMsg {
|
|
1216
|
+
type: "/sparkdream.rep.v1.MsgStake";
|
|
1217
|
+
value: MsgStakeAmino;
|
|
1218
|
+
}
|
|
1219
|
+
/**
|
|
1220
|
+
* MsgStakeResponse defines the MsgStakeResponse message.
|
|
1221
|
+
* @name MsgStakeResponse
|
|
1222
|
+
* @package sparkdream.rep.v1
|
|
1223
|
+
* @see proto type: sparkdream.rep.v1.MsgStakeResponse
|
|
1224
|
+
*/
|
|
1225
|
+
export interface MsgStakeResponse {
|
|
1226
|
+
stakeId: bigint;
|
|
1227
|
+
}
|
|
1228
|
+
export interface MsgStakeResponseProtoMsg {
|
|
1229
|
+
typeUrl: "/sparkdream.rep.v1.MsgStakeResponse";
|
|
1230
|
+
value: Uint8Array;
|
|
1231
|
+
}
|
|
1232
|
+
/**
|
|
1233
|
+
* MsgStakeResponse defines the MsgStakeResponse message.
|
|
1234
|
+
* @name MsgStakeResponseAmino
|
|
1235
|
+
* @package sparkdream.rep.v1
|
|
1236
|
+
* @see proto type: sparkdream.rep.v1.MsgStakeResponse
|
|
1237
|
+
*/
|
|
1238
|
+
export interface MsgStakeResponseAmino {
|
|
1239
|
+
stake_id?: string;
|
|
1240
|
+
}
|
|
1241
|
+
export interface MsgStakeResponseAminoMsg {
|
|
1242
|
+
type: "/sparkdream.rep.v1.MsgStakeResponse";
|
|
1243
|
+
value: MsgStakeResponseAmino;
|
|
1244
|
+
}
|
|
1245
|
+
/**
|
|
1246
|
+
* MsgUnstake defines the MsgUnstake message.
|
|
1247
|
+
* @name MsgUnstake
|
|
1248
|
+
* @package sparkdream.rep.v1
|
|
1249
|
+
* @see proto type: sparkdream.rep.v1.MsgUnstake
|
|
1250
|
+
*/
|
|
1251
|
+
export interface MsgUnstake {
|
|
1252
|
+
staker: string;
|
|
1253
|
+
stakeId: bigint;
|
|
1254
|
+
amount: string;
|
|
1255
|
+
}
|
|
1256
|
+
export interface MsgUnstakeProtoMsg {
|
|
1257
|
+
typeUrl: "/sparkdream.rep.v1.MsgUnstake";
|
|
1258
|
+
value: Uint8Array;
|
|
1259
|
+
}
|
|
1260
|
+
/**
|
|
1261
|
+
* MsgUnstake defines the MsgUnstake message.
|
|
1262
|
+
* @name MsgUnstakeAmino
|
|
1263
|
+
* @package sparkdream.rep.v1
|
|
1264
|
+
* @see proto type: sparkdream.rep.v1.MsgUnstake
|
|
1265
|
+
*/
|
|
1266
|
+
export interface MsgUnstakeAmino {
|
|
1267
|
+
staker?: string;
|
|
1268
|
+
stake_id?: string;
|
|
1269
|
+
amount?: string;
|
|
1270
|
+
}
|
|
1271
|
+
export interface MsgUnstakeAminoMsg {
|
|
1272
|
+
type: "/sparkdream.rep.v1.MsgUnstake";
|
|
1273
|
+
value: MsgUnstakeAmino;
|
|
1274
|
+
}
|
|
1275
|
+
/**
|
|
1276
|
+
* MsgUnstakeResponse defines the MsgUnstakeResponse message.
|
|
1277
|
+
* @name MsgUnstakeResponse
|
|
1278
|
+
* @package sparkdream.rep.v1
|
|
1279
|
+
* @see proto type: sparkdream.rep.v1.MsgUnstakeResponse
|
|
1280
|
+
*/
|
|
1281
|
+
export interface MsgUnstakeResponse {
|
|
1282
|
+
returnedAmount: string;
|
|
1283
|
+
rewardAmount: string;
|
|
1284
|
+
}
|
|
1285
|
+
export interface MsgUnstakeResponseProtoMsg {
|
|
1286
|
+
typeUrl: "/sparkdream.rep.v1.MsgUnstakeResponse";
|
|
1287
|
+
value: Uint8Array;
|
|
1288
|
+
}
|
|
1289
|
+
/**
|
|
1290
|
+
* MsgUnstakeResponse defines the MsgUnstakeResponse message.
|
|
1291
|
+
* @name MsgUnstakeResponseAmino
|
|
1292
|
+
* @package sparkdream.rep.v1
|
|
1293
|
+
* @see proto type: sparkdream.rep.v1.MsgUnstakeResponse
|
|
1294
|
+
*/
|
|
1295
|
+
export interface MsgUnstakeResponseAmino {
|
|
1296
|
+
returned_amount?: string;
|
|
1297
|
+
reward_amount?: string;
|
|
1298
|
+
}
|
|
1299
|
+
export interface MsgUnstakeResponseAminoMsg {
|
|
1300
|
+
type: "/sparkdream.rep.v1.MsgUnstakeResponse";
|
|
1301
|
+
value: MsgUnstakeResponseAmino;
|
|
1302
|
+
}
|
|
1303
|
+
/**
|
|
1304
|
+
* MsgClaimStakingRewards defines the MsgClaimStakingRewards message.
|
|
1305
|
+
* @name MsgClaimStakingRewards
|
|
1306
|
+
* @package sparkdream.rep.v1
|
|
1307
|
+
* @see proto type: sparkdream.rep.v1.MsgClaimStakingRewards
|
|
1308
|
+
*/
|
|
1309
|
+
export interface MsgClaimStakingRewards {
|
|
1310
|
+
staker: string;
|
|
1311
|
+
stakeId: bigint;
|
|
1312
|
+
}
|
|
1313
|
+
export interface MsgClaimStakingRewardsProtoMsg {
|
|
1314
|
+
typeUrl: "/sparkdream.rep.v1.MsgClaimStakingRewards";
|
|
1315
|
+
value: Uint8Array;
|
|
1316
|
+
}
|
|
1317
|
+
/**
|
|
1318
|
+
* MsgClaimStakingRewards defines the MsgClaimStakingRewards message.
|
|
1319
|
+
* @name MsgClaimStakingRewardsAmino
|
|
1320
|
+
* @package sparkdream.rep.v1
|
|
1321
|
+
* @see proto type: sparkdream.rep.v1.MsgClaimStakingRewards
|
|
1322
|
+
*/
|
|
1323
|
+
export interface MsgClaimStakingRewardsAmino {
|
|
1324
|
+
staker?: string;
|
|
1325
|
+
stake_id?: string;
|
|
1326
|
+
}
|
|
1327
|
+
export interface MsgClaimStakingRewardsAminoMsg {
|
|
1328
|
+
type: "/sparkdream.rep.v1.MsgClaimStakingRewards";
|
|
1329
|
+
value: MsgClaimStakingRewardsAmino;
|
|
1330
|
+
}
|
|
1331
|
+
/**
|
|
1332
|
+
* MsgClaimStakingRewardsResponse defines the MsgClaimStakingRewardsResponse message.
|
|
1333
|
+
* @name MsgClaimStakingRewardsResponse
|
|
1334
|
+
* @package sparkdream.rep.v1
|
|
1335
|
+
* @see proto type: sparkdream.rep.v1.MsgClaimStakingRewardsResponse
|
|
1336
|
+
*/
|
|
1337
|
+
export interface MsgClaimStakingRewardsResponse {
|
|
1338
|
+
claimedAmount: string;
|
|
1339
|
+
}
|
|
1340
|
+
export interface MsgClaimStakingRewardsResponseProtoMsg {
|
|
1341
|
+
typeUrl: "/sparkdream.rep.v1.MsgClaimStakingRewardsResponse";
|
|
1342
|
+
value: Uint8Array;
|
|
1343
|
+
}
|
|
1344
|
+
/**
|
|
1345
|
+
* MsgClaimStakingRewardsResponse defines the MsgClaimStakingRewardsResponse message.
|
|
1346
|
+
* @name MsgClaimStakingRewardsResponseAmino
|
|
1347
|
+
* @package sparkdream.rep.v1
|
|
1348
|
+
* @see proto type: sparkdream.rep.v1.MsgClaimStakingRewardsResponse
|
|
1349
|
+
*/
|
|
1350
|
+
export interface MsgClaimStakingRewardsResponseAmino {
|
|
1351
|
+
claimed_amount?: string;
|
|
1352
|
+
}
|
|
1353
|
+
export interface MsgClaimStakingRewardsResponseAminoMsg {
|
|
1354
|
+
type: "/sparkdream.rep.v1.MsgClaimStakingRewardsResponse";
|
|
1355
|
+
value: MsgClaimStakingRewardsResponseAmino;
|
|
1356
|
+
}
|
|
1357
|
+
/**
|
|
1358
|
+
* MsgCompoundStakingRewards defines the MsgCompoundStakingRewards message.
|
|
1359
|
+
* @name MsgCompoundStakingRewards
|
|
1360
|
+
* @package sparkdream.rep.v1
|
|
1361
|
+
* @see proto type: sparkdream.rep.v1.MsgCompoundStakingRewards
|
|
1362
|
+
*/
|
|
1363
|
+
export interface MsgCompoundStakingRewards {
|
|
1364
|
+
staker: string;
|
|
1365
|
+
stakeId: bigint;
|
|
1366
|
+
}
|
|
1367
|
+
export interface MsgCompoundStakingRewardsProtoMsg {
|
|
1368
|
+
typeUrl: "/sparkdream.rep.v1.MsgCompoundStakingRewards";
|
|
1369
|
+
value: Uint8Array;
|
|
1370
|
+
}
|
|
1371
|
+
/**
|
|
1372
|
+
* MsgCompoundStakingRewards defines the MsgCompoundStakingRewards message.
|
|
1373
|
+
* @name MsgCompoundStakingRewardsAmino
|
|
1374
|
+
* @package sparkdream.rep.v1
|
|
1375
|
+
* @see proto type: sparkdream.rep.v1.MsgCompoundStakingRewards
|
|
1376
|
+
*/
|
|
1377
|
+
export interface MsgCompoundStakingRewardsAmino {
|
|
1378
|
+
staker?: string;
|
|
1379
|
+
stake_id?: string;
|
|
1380
|
+
}
|
|
1381
|
+
export interface MsgCompoundStakingRewardsAminoMsg {
|
|
1382
|
+
type: "/sparkdream.rep.v1.MsgCompoundStakingRewards";
|
|
1383
|
+
value: MsgCompoundStakingRewardsAmino;
|
|
1384
|
+
}
|
|
1385
|
+
/**
|
|
1386
|
+
* MsgCompoundStakingRewardsResponse defines the MsgCompoundStakingRewardsResponse message.
|
|
1387
|
+
* @name MsgCompoundStakingRewardsResponse
|
|
1388
|
+
* @package sparkdream.rep.v1
|
|
1389
|
+
* @see proto type: sparkdream.rep.v1.MsgCompoundStakingRewardsResponse
|
|
1390
|
+
*/
|
|
1391
|
+
export interface MsgCompoundStakingRewardsResponse {
|
|
1392
|
+
compoundedAmount: string;
|
|
1393
|
+
newStakeAmount: string;
|
|
1394
|
+
}
|
|
1395
|
+
export interface MsgCompoundStakingRewardsResponseProtoMsg {
|
|
1396
|
+
typeUrl: "/sparkdream.rep.v1.MsgCompoundStakingRewardsResponse";
|
|
1397
|
+
value: Uint8Array;
|
|
1398
|
+
}
|
|
1399
|
+
/**
|
|
1400
|
+
* MsgCompoundStakingRewardsResponse defines the MsgCompoundStakingRewardsResponse message.
|
|
1401
|
+
* @name MsgCompoundStakingRewardsResponseAmino
|
|
1402
|
+
* @package sparkdream.rep.v1
|
|
1403
|
+
* @see proto type: sparkdream.rep.v1.MsgCompoundStakingRewardsResponse
|
|
1404
|
+
*/
|
|
1405
|
+
export interface MsgCompoundStakingRewardsResponseAmino {
|
|
1406
|
+
compounded_amount?: string;
|
|
1407
|
+
new_stake_amount?: string;
|
|
1408
|
+
}
|
|
1409
|
+
export interface MsgCompoundStakingRewardsResponseAminoMsg {
|
|
1410
|
+
type: "/sparkdream.rep.v1.MsgCompoundStakingRewardsResponse";
|
|
1411
|
+
value: MsgCompoundStakingRewardsResponseAmino;
|
|
1412
|
+
}
|
|
1413
|
+
/**
|
|
1414
|
+
* MsgCreateChallenge defines the MsgCreateChallenge message.
|
|
1415
|
+
* @name MsgCreateChallenge
|
|
1416
|
+
* @package sparkdream.rep.v1
|
|
1417
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateChallenge
|
|
1418
|
+
*/
|
|
1419
|
+
export interface MsgCreateChallenge {
|
|
1420
|
+
challenger: string;
|
|
1421
|
+
initiativeId: bigint;
|
|
1422
|
+
reason: string;
|
|
1423
|
+
evidence: string[];
|
|
1424
|
+
stakedDream: string;
|
|
1425
|
+
}
|
|
1426
|
+
export interface MsgCreateChallengeProtoMsg {
|
|
1427
|
+
typeUrl: "/sparkdream.rep.v1.MsgCreateChallenge";
|
|
1428
|
+
value: Uint8Array;
|
|
1429
|
+
}
|
|
1430
|
+
/**
|
|
1431
|
+
* MsgCreateChallenge defines the MsgCreateChallenge message.
|
|
1432
|
+
* @name MsgCreateChallengeAmino
|
|
1433
|
+
* @package sparkdream.rep.v1
|
|
1434
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateChallenge
|
|
1435
|
+
*/
|
|
1436
|
+
export interface MsgCreateChallengeAmino {
|
|
1437
|
+
challenger?: string;
|
|
1438
|
+
initiative_id?: string;
|
|
1439
|
+
reason?: string;
|
|
1440
|
+
evidence?: string[];
|
|
1441
|
+
staked_dream?: string;
|
|
1442
|
+
}
|
|
1443
|
+
export interface MsgCreateChallengeAminoMsg {
|
|
1444
|
+
type: "/sparkdream.rep.v1.MsgCreateChallenge";
|
|
1445
|
+
value: MsgCreateChallengeAmino;
|
|
1446
|
+
}
|
|
1447
|
+
/**
|
|
1448
|
+
* MsgCreateChallengeResponse defines the MsgCreateChallengeResponse message.
|
|
1449
|
+
* @name MsgCreateChallengeResponse
|
|
1450
|
+
* @package sparkdream.rep.v1
|
|
1451
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateChallengeResponse
|
|
1452
|
+
*/
|
|
1453
|
+
export interface MsgCreateChallengeResponse {
|
|
1454
|
+
}
|
|
1455
|
+
export interface MsgCreateChallengeResponseProtoMsg {
|
|
1456
|
+
typeUrl: "/sparkdream.rep.v1.MsgCreateChallengeResponse";
|
|
1457
|
+
value: Uint8Array;
|
|
1458
|
+
}
|
|
1459
|
+
/**
|
|
1460
|
+
* MsgCreateChallengeResponse defines the MsgCreateChallengeResponse message.
|
|
1461
|
+
* @name MsgCreateChallengeResponseAmino
|
|
1462
|
+
* @package sparkdream.rep.v1
|
|
1463
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateChallengeResponse
|
|
1464
|
+
*/
|
|
1465
|
+
export interface MsgCreateChallengeResponseAmino {
|
|
1466
|
+
}
|
|
1467
|
+
export interface MsgCreateChallengeResponseAminoMsg {
|
|
1468
|
+
type: "/sparkdream.rep.v1.MsgCreateChallengeResponse";
|
|
1469
|
+
value: MsgCreateChallengeResponseAmino;
|
|
1470
|
+
}
|
|
1471
|
+
/**
|
|
1472
|
+
* MsgRespondToChallenge defines the MsgRespondToChallenge message.
|
|
1473
|
+
* @name MsgRespondToChallenge
|
|
1474
|
+
* @package sparkdream.rep.v1
|
|
1475
|
+
* @see proto type: sparkdream.rep.v1.MsgRespondToChallenge
|
|
1476
|
+
*/
|
|
1477
|
+
export interface MsgRespondToChallenge {
|
|
1478
|
+
assignee: string;
|
|
1479
|
+
challengeId: bigint;
|
|
1480
|
+
response: string;
|
|
1481
|
+
evidence: string[];
|
|
1482
|
+
}
|
|
1483
|
+
export interface MsgRespondToChallengeProtoMsg {
|
|
1484
|
+
typeUrl: "/sparkdream.rep.v1.MsgRespondToChallenge";
|
|
1485
|
+
value: Uint8Array;
|
|
1486
|
+
}
|
|
1487
|
+
/**
|
|
1488
|
+
* MsgRespondToChallenge defines the MsgRespondToChallenge message.
|
|
1489
|
+
* @name MsgRespondToChallengeAmino
|
|
1490
|
+
* @package sparkdream.rep.v1
|
|
1491
|
+
* @see proto type: sparkdream.rep.v1.MsgRespondToChallenge
|
|
1492
|
+
*/
|
|
1493
|
+
export interface MsgRespondToChallengeAmino {
|
|
1494
|
+
assignee?: string;
|
|
1495
|
+
challenge_id?: string;
|
|
1496
|
+
response?: string;
|
|
1497
|
+
evidence?: string[];
|
|
1498
|
+
}
|
|
1499
|
+
export interface MsgRespondToChallengeAminoMsg {
|
|
1500
|
+
type: "/sparkdream.rep.v1.MsgRespondToChallenge";
|
|
1501
|
+
value: MsgRespondToChallengeAmino;
|
|
1502
|
+
}
|
|
1503
|
+
/**
|
|
1504
|
+
* MsgRespondToChallengeResponse defines the MsgRespondToChallengeResponse message.
|
|
1505
|
+
* @name MsgRespondToChallengeResponse
|
|
1506
|
+
* @package sparkdream.rep.v1
|
|
1507
|
+
* @see proto type: sparkdream.rep.v1.MsgRespondToChallengeResponse
|
|
1508
|
+
*/
|
|
1509
|
+
export interface MsgRespondToChallengeResponse {
|
|
1510
|
+
}
|
|
1511
|
+
export interface MsgRespondToChallengeResponseProtoMsg {
|
|
1512
|
+
typeUrl: "/sparkdream.rep.v1.MsgRespondToChallengeResponse";
|
|
1513
|
+
value: Uint8Array;
|
|
1514
|
+
}
|
|
1515
|
+
/**
|
|
1516
|
+
* MsgRespondToChallengeResponse defines the MsgRespondToChallengeResponse message.
|
|
1517
|
+
* @name MsgRespondToChallengeResponseAmino
|
|
1518
|
+
* @package sparkdream.rep.v1
|
|
1519
|
+
* @see proto type: sparkdream.rep.v1.MsgRespondToChallengeResponse
|
|
1520
|
+
*/
|
|
1521
|
+
export interface MsgRespondToChallengeResponseAmino {
|
|
1522
|
+
}
|
|
1523
|
+
export interface MsgRespondToChallengeResponseAminoMsg {
|
|
1524
|
+
type: "/sparkdream.rep.v1.MsgRespondToChallengeResponse";
|
|
1525
|
+
value: MsgRespondToChallengeResponseAmino;
|
|
1526
|
+
}
|
|
1527
|
+
/**
|
|
1528
|
+
* MsgSubmitJurorVote defines the MsgSubmitJurorVote message.
|
|
1529
|
+
* @name MsgSubmitJurorVote
|
|
1530
|
+
* @package sparkdream.rep.v1
|
|
1531
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitJurorVote
|
|
1532
|
+
*/
|
|
1533
|
+
export interface MsgSubmitJurorVote {
|
|
1534
|
+
juror: string;
|
|
1535
|
+
juryReviewId: bigint;
|
|
1536
|
+
criteriaVotes: CriteriaVote[];
|
|
1537
|
+
verdict: Verdict;
|
|
1538
|
+
confidence: string;
|
|
1539
|
+
reasoning: string;
|
|
1540
|
+
}
|
|
1541
|
+
export interface MsgSubmitJurorVoteProtoMsg {
|
|
1542
|
+
typeUrl: "/sparkdream.rep.v1.MsgSubmitJurorVote";
|
|
1543
|
+
value: Uint8Array;
|
|
1544
|
+
}
|
|
1545
|
+
/**
|
|
1546
|
+
* MsgSubmitJurorVote defines the MsgSubmitJurorVote message.
|
|
1547
|
+
* @name MsgSubmitJurorVoteAmino
|
|
1548
|
+
* @package sparkdream.rep.v1
|
|
1549
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitJurorVote
|
|
1550
|
+
*/
|
|
1551
|
+
export interface MsgSubmitJurorVoteAmino {
|
|
1552
|
+
juror?: string;
|
|
1553
|
+
jury_review_id?: string;
|
|
1554
|
+
criteria_votes?: CriteriaVoteAmino[];
|
|
1555
|
+
verdict?: Verdict;
|
|
1556
|
+
confidence?: string;
|
|
1557
|
+
reasoning?: string;
|
|
1558
|
+
}
|
|
1559
|
+
export interface MsgSubmitJurorVoteAminoMsg {
|
|
1560
|
+
type: "/sparkdream.rep.v1.MsgSubmitJurorVote";
|
|
1561
|
+
value: MsgSubmitJurorVoteAmino;
|
|
1562
|
+
}
|
|
1563
|
+
/**
|
|
1564
|
+
* MsgSubmitJurorVoteResponse defines the MsgSubmitJurorVoteResponse message.
|
|
1565
|
+
* @name MsgSubmitJurorVoteResponse
|
|
1566
|
+
* @package sparkdream.rep.v1
|
|
1567
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitJurorVoteResponse
|
|
1568
|
+
*/
|
|
1569
|
+
export interface MsgSubmitJurorVoteResponse {
|
|
1570
|
+
}
|
|
1571
|
+
export interface MsgSubmitJurorVoteResponseProtoMsg {
|
|
1572
|
+
typeUrl: "/sparkdream.rep.v1.MsgSubmitJurorVoteResponse";
|
|
1573
|
+
value: Uint8Array;
|
|
1574
|
+
}
|
|
1575
|
+
/**
|
|
1576
|
+
* MsgSubmitJurorVoteResponse defines the MsgSubmitJurorVoteResponse message.
|
|
1577
|
+
* @name MsgSubmitJurorVoteResponseAmino
|
|
1578
|
+
* @package sparkdream.rep.v1
|
|
1579
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitJurorVoteResponse
|
|
1580
|
+
*/
|
|
1581
|
+
export interface MsgSubmitJurorVoteResponseAmino {
|
|
1582
|
+
}
|
|
1583
|
+
export interface MsgSubmitJurorVoteResponseAminoMsg {
|
|
1584
|
+
type: "/sparkdream.rep.v1.MsgSubmitJurorVoteResponse";
|
|
1585
|
+
value: MsgSubmitJurorVoteResponseAmino;
|
|
1586
|
+
}
|
|
1587
|
+
/**
|
|
1588
|
+
* MsgSubmitExpertTestimony defines the MsgSubmitExpertTestimony message.
|
|
1589
|
+
* @name MsgSubmitExpertTestimony
|
|
1590
|
+
* @package sparkdream.rep.v1
|
|
1591
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitExpertTestimony
|
|
1592
|
+
*/
|
|
1593
|
+
export interface MsgSubmitExpertTestimony {
|
|
1594
|
+
expert: string;
|
|
1595
|
+
juryReviewId: bigint;
|
|
1596
|
+
opinion: string;
|
|
1597
|
+
reasoning: string;
|
|
1598
|
+
}
|
|
1599
|
+
export interface MsgSubmitExpertTestimonyProtoMsg {
|
|
1600
|
+
typeUrl: "/sparkdream.rep.v1.MsgSubmitExpertTestimony";
|
|
1601
|
+
value: Uint8Array;
|
|
1602
|
+
}
|
|
1603
|
+
/**
|
|
1604
|
+
* MsgSubmitExpertTestimony defines the MsgSubmitExpertTestimony message.
|
|
1605
|
+
* @name MsgSubmitExpertTestimonyAmino
|
|
1606
|
+
* @package sparkdream.rep.v1
|
|
1607
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitExpertTestimony
|
|
1608
|
+
*/
|
|
1609
|
+
export interface MsgSubmitExpertTestimonyAmino {
|
|
1610
|
+
expert?: string;
|
|
1611
|
+
jury_review_id?: string;
|
|
1612
|
+
opinion?: string;
|
|
1613
|
+
reasoning?: string;
|
|
1614
|
+
}
|
|
1615
|
+
export interface MsgSubmitExpertTestimonyAminoMsg {
|
|
1616
|
+
type: "/sparkdream.rep.v1.MsgSubmitExpertTestimony";
|
|
1617
|
+
value: MsgSubmitExpertTestimonyAmino;
|
|
1618
|
+
}
|
|
1619
|
+
/**
|
|
1620
|
+
* MsgSubmitExpertTestimonyResponse defines the MsgSubmitExpertTestimonyResponse message.
|
|
1621
|
+
* @name MsgSubmitExpertTestimonyResponse
|
|
1622
|
+
* @package sparkdream.rep.v1
|
|
1623
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitExpertTestimonyResponse
|
|
1624
|
+
*/
|
|
1625
|
+
export interface MsgSubmitExpertTestimonyResponse {
|
|
1626
|
+
}
|
|
1627
|
+
export interface MsgSubmitExpertTestimonyResponseProtoMsg {
|
|
1628
|
+
typeUrl: "/sparkdream.rep.v1.MsgSubmitExpertTestimonyResponse";
|
|
1629
|
+
value: Uint8Array;
|
|
1630
|
+
}
|
|
1631
|
+
/**
|
|
1632
|
+
* MsgSubmitExpertTestimonyResponse defines the MsgSubmitExpertTestimonyResponse message.
|
|
1633
|
+
* @name MsgSubmitExpertTestimonyResponseAmino
|
|
1634
|
+
* @package sparkdream.rep.v1
|
|
1635
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitExpertTestimonyResponse
|
|
1636
|
+
*/
|
|
1637
|
+
export interface MsgSubmitExpertTestimonyResponseAmino {
|
|
1638
|
+
}
|
|
1639
|
+
export interface MsgSubmitExpertTestimonyResponseAminoMsg {
|
|
1640
|
+
type: "/sparkdream.rep.v1.MsgSubmitExpertTestimonyResponse";
|
|
1641
|
+
value: MsgSubmitExpertTestimonyResponseAmino;
|
|
1642
|
+
}
|
|
1643
|
+
/**
|
|
1644
|
+
* MsgChallengeContent creates a challenge against bonded content.
|
|
1645
|
+
* @name MsgChallengeContent
|
|
1646
|
+
* @package sparkdream.rep.v1
|
|
1647
|
+
* @see proto type: sparkdream.rep.v1.MsgChallengeContent
|
|
1648
|
+
*/
|
|
1649
|
+
export interface MsgChallengeContent {
|
|
1650
|
+
challenger: string;
|
|
1651
|
+
/**
|
|
1652
|
+
* StakeTargetType (7=BLOG_AUTHOR_BOND, 8=FORUM_AUTHOR_BOND, 9=COLLECTION_AUTHOR_BOND)
|
|
1653
|
+
*/
|
|
1654
|
+
targetType: bigint;
|
|
1655
|
+
targetId: bigint;
|
|
1656
|
+
reason: string;
|
|
1657
|
+
evidence: string[];
|
|
1658
|
+
stakedDream?: string;
|
|
1659
|
+
}
|
|
1660
|
+
export interface MsgChallengeContentProtoMsg {
|
|
1661
|
+
typeUrl: "/sparkdream.rep.v1.MsgChallengeContent";
|
|
1662
|
+
value: Uint8Array;
|
|
1663
|
+
}
|
|
1664
|
+
/**
|
|
1665
|
+
* MsgChallengeContent creates a challenge against bonded content.
|
|
1666
|
+
* @name MsgChallengeContentAmino
|
|
1667
|
+
* @package sparkdream.rep.v1
|
|
1668
|
+
* @see proto type: sparkdream.rep.v1.MsgChallengeContent
|
|
1669
|
+
*/
|
|
1670
|
+
export interface MsgChallengeContentAmino {
|
|
1671
|
+
challenger?: string;
|
|
1672
|
+
/**
|
|
1673
|
+
* StakeTargetType (7=BLOG_AUTHOR_BOND, 8=FORUM_AUTHOR_BOND, 9=COLLECTION_AUTHOR_BOND)
|
|
1674
|
+
*/
|
|
1675
|
+
target_type?: string;
|
|
1676
|
+
target_id?: string;
|
|
1677
|
+
reason?: string;
|
|
1678
|
+
evidence?: string[];
|
|
1679
|
+
staked_dream?: string;
|
|
1680
|
+
}
|
|
1681
|
+
export interface MsgChallengeContentAminoMsg {
|
|
1682
|
+
type: "/sparkdream.rep.v1.MsgChallengeContent";
|
|
1683
|
+
value: MsgChallengeContentAmino;
|
|
1684
|
+
}
|
|
1685
|
+
/**
|
|
1686
|
+
* MsgChallengeContentResponse defines the response for ChallengeContent.
|
|
1687
|
+
* @name MsgChallengeContentResponse
|
|
1688
|
+
* @package sparkdream.rep.v1
|
|
1689
|
+
* @see proto type: sparkdream.rep.v1.MsgChallengeContentResponse
|
|
1690
|
+
*/
|
|
1691
|
+
export interface MsgChallengeContentResponse {
|
|
1692
|
+
contentChallengeId: bigint;
|
|
1693
|
+
}
|
|
1694
|
+
export interface MsgChallengeContentResponseProtoMsg {
|
|
1695
|
+
typeUrl: "/sparkdream.rep.v1.MsgChallengeContentResponse";
|
|
1696
|
+
value: Uint8Array;
|
|
1697
|
+
}
|
|
1698
|
+
/**
|
|
1699
|
+
* MsgChallengeContentResponse defines the response for ChallengeContent.
|
|
1700
|
+
* @name MsgChallengeContentResponseAmino
|
|
1701
|
+
* @package sparkdream.rep.v1
|
|
1702
|
+
* @see proto type: sparkdream.rep.v1.MsgChallengeContentResponse
|
|
1703
|
+
*/
|
|
1704
|
+
export interface MsgChallengeContentResponseAmino {
|
|
1705
|
+
content_challenge_id?: string;
|
|
1706
|
+
}
|
|
1707
|
+
export interface MsgChallengeContentResponseAminoMsg {
|
|
1708
|
+
type: "/sparkdream.rep.v1.MsgChallengeContentResponse";
|
|
1709
|
+
value: MsgChallengeContentResponseAmino;
|
|
1710
|
+
}
|
|
1711
|
+
/**
|
|
1712
|
+
* MsgRespondToContentChallenge allows the content author to respond to a challenge.
|
|
1713
|
+
* @name MsgRespondToContentChallenge
|
|
1714
|
+
* @package sparkdream.rep.v1
|
|
1715
|
+
* @see proto type: sparkdream.rep.v1.MsgRespondToContentChallenge
|
|
1716
|
+
*/
|
|
1717
|
+
export interface MsgRespondToContentChallenge {
|
|
1718
|
+
author: string;
|
|
1719
|
+
contentChallengeId: bigint;
|
|
1720
|
+
response: string;
|
|
1721
|
+
evidence: string[];
|
|
1722
|
+
}
|
|
1723
|
+
export interface MsgRespondToContentChallengeProtoMsg {
|
|
1724
|
+
typeUrl: "/sparkdream.rep.v1.MsgRespondToContentChallenge";
|
|
1725
|
+
value: Uint8Array;
|
|
1726
|
+
}
|
|
1727
|
+
/**
|
|
1728
|
+
* MsgRespondToContentChallenge allows the content author to respond to a challenge.
|
|
1729
|
+
* @name MsgRespondToContentChallengeAmino
|
|
1730
|
+
* @package sparkdream.rep.v1
|
|
1731
|
+
* @see proto type: sparkdream.rep.v1.MsgRespondToContentChallenge
|
|
1732
|
+
*/
|
|
1733
|
+
export interface MsgRespondToContentChallengeAmino {
|
|
1734
|
+
author?: string;
|
|
1735
|
+
content_challenge_id?: string;
|
|
1736
|
+
response?: string;
|
|
1737
|
+
evidence?: string[];
|
|
1738
|
+
}
|
|
1739
|
+
export interface MsgRespondToContentChallengeAminoMsg {
|
|
1740
|
+
type: "/sparkdream.rep.v1.MsgRespondToContentChallenge";
|
|
1741
|
+
value: MsgRespondToContentChallengeAmino;
|
|
1742
|
+
}
|
|
1743
|
+
/**
|
|
1744
|
+
* MsgRespondToContentChallengeResponse defines the response for RespondToContentChallenge.
|
|
1745
|
+
* @name MsgRespondToContentChallengeResponse
|
|
1746
|
+
* @package sparkdream.rep.v1
|
|
1747
|
+
* @see proto type: sparkdream.rep.v1.MsgRespondToContentChallengeResponse
|
|
1748
|
+
*/
|
|
1749
|
+
export interface MsgRespondToContentChallengeResponse {
|
|
1750
|
+
}
|
|
1751
|
+
export interface MsgRespondToContentChallengeResponseProtoMsg {
|
|
1752
|
+
typeUrl: "/sparkdream.rep.v1.MsgRespondToContentChallengeResponse";
|
|
1753
|
+
value: Uint8Array;
|
|
1754
|
+
}
|
|
1755
|
+
/**
|
|
1756
|
+
* MsgRespondToContentChallengeResponse defines the response for RespondToContentChallenge.
|
|
1757
|
+
* @name MsgRespondToContentChallengeResponseAmino
|
|
1758
|
+
* @package sparkdream.rep.v1
|
|
1759
|
+
* @see proto type: sparkdream.rep.v1.MsgRespondToContentChallengeResponse
|
|
1760
|
+
*/
|
|
1761
|
+
export interface MsgRespondToContentChallengeResponseAmino {
|
|
1762
|
+
}
|
|
1763
|
+
export interface MsgRespondToContentChallengeResponseAminoMsg {
|
|
1764
|
+
type: "/sparkdream.rep.v1.MsgRespondToContentChallengeResponse";
|
|
1765
|
+
value: MsgRespondToContentChallengeResponseAmino;
|
|
1766
|
+
}
|
|
1767
|
+
/**
|
|
1768
|
+
* MsgRegisterZkPublicKey defines the MsgRegisterZkPublicKey message.
|
|
1769
|
+
* @name MsgRegisterZkPublicKey
|
|
1770
|
+
* @package sparkdream.rep.v1
|
|
1771
|
+
* @see proto type: sparkdream.rep.v1.MsgRegisterZkPublicKey
|
|
1772
|
+
*/
|
|
1773
|
+
export interface MsgRegisterZkPublicKey {
|
|
1774
|
+
member: string;
|
|
1775
|
+
zkPublicKey: Uint8Array;
|
|
1776
|
+
}
|
|
1777
|
+
export interface MsgRegisterZkPublicKeyProtoMsg {
|
|
1778
|
+
typeUrl: "/sparkdream.rep.v1.MsgRegisterZkPublicKey";
|
|
1779
|
+
value: Uint8Array;
|
|
1780
|
+
}
|
|
1781
|
+
/**
|
|
1782
|
+
* MsgRegisterZkPublicKey defines the MsgRegisterZkPublicKey message.
|
|
1783
|
+
* @name MsgRegisterZkPublicKeyAmino
|
|
1784
|
+
* @package sparkdream.rep.v1
|
|
1785
|
+
* @see proto type: sparkdream.rep.v1.MsgRegisterZkPublicKey
|
|
1786
|
+
*/
|
|
1787
|
+
export interface MsgRegisterZkPublicKeyAmino {
|
|
1788
|
+
member?: string;
|
|
1789
|
+
zk_public_key?: string;
|
|
1790
|
+
}
|
|
1791
|
+
export interface MsgRegisterZkPublicKeyAminoMsg {
|
|
1792
|
+
type: "/sparkdream.rep.v1.MsgRegisterZkPublicKey";
|
|
1793
|
+
value: MsgRegisterZkPublicKeyAmino;
|
|
1794
|
+
}
|
|
1795
|
+
/**
|
|
1796
|
+
* MsgRegisterZkPublicKeyResponse defines the MsgRegisterZkPublicKeyResponse message.
|
|
1797
|
+
* @name MsgRegisterZkPublicKeyResponse
|
|
1798
|
+
* @package sparkdream.rep.v1
|
|
1799
|
+
* @see proto type: sparkdream.rep.v1.MsgRegisterZkPublicKeyResponse
|
|
1800
|
+
*/
|
|
1801
|
+
export interface MsgRegisterZkPublicKeyResponse {
|
|
1802
|
+
}
|
|
1803
|
+
export interface MsgRegisterZkPublicKeyResponseProtoMsg {
|
|
1804
|
+
typeUrl: "/sparkdream.rep.v1.MsgRegisterZkPublicKeyResponse";
|
|
1805
|
+
value: Uint8Array;
|
|
1806
|
+
}
|
|
1807
|
+
/**
|
|
1808
|
+
* MsgRegisterZkPublicKeyResponse defines the MsgRegisterZkPublicKeyResponse message.
|
|
1809
|
+
* @name MsgRegisterZkPublicKeyResponseAmino
|
|
1810
|
+
* @package sparkdream.rep.v1
|
|
1811
|
+
* @see proto type: sparkdream.rep.v1.MsgRegisterZkPublicKeyResponse
|
|
1812
|
+
*/
|
|
1813
|
+
export interface MsgRegisterZkPublicKeyResponseAmino {
|
|
1814
|
+
}
|
|
1815
|
+
export interface MsgRegisterZkPublicKeyResponseAminoMsg {
|
|
1816
|
+
type: "/sparkdream.rep.v1.MsgRegisterZkPublicKeyResponse";
|
|
1817
|
+
value: MsgRegisterZkPublicKeyResponseAmino;
|
|
1818
|
+
}
|
|
1819
|
+
/**
|
|
1820
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
1821
|
+
* @name MsgUpdateParams
|
|
1822
|
+
* @package sparkdream.rep.v1
|
|
1823
|
+
* @see proto type: sparkdream.rep.v1.MsgUpdateParams
|
|
1824
|
+
*/
|
|
1825
|
+
export declare const MsgUpdateParams: {
|
|
1826
|
+
typeUrl: string;
|
|
1827
|
+
aminoType: string;
|
|
1828
|
+
encode(message: MsgUpdateParams, writer?: BinaryWriter): BinaryWriter;
|
|
1829
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParams;
|
|
1830
|
+
fromPartial(object: DeepPartial<MsgUpdateParams>): MsgUpdateParams;
|
|
1831
|
+
fromAmino(object: MsgUpdateParamsAmino): MsgUpdateParams;
|
|
1832
|
+
toAmino(message: MsgUpdateParams): MsgUpdateParamsAmino;
|
|
1833
|
+
fromAminoMsg(object: MsgUpdateParamsAminoMsg): MsgUpdateParams;
|
|
1834
|
+
toAminoMsg(message: MsgUpdateParams): MsgUpdateParamsAminoMsg;
|
|
1835
|
+
fromProtoMsg(message: MsgUpdateParamsProtoMsg): MsgUpdateParams;
|
|
1836
|
+
toProto(message: MsgUpdateParams): Uint8Array;
|
|
1837
|
+
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
1838
|
+
};
|
|
1839
|
+
/**
|
|
1840
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
1841
|
+
* MsgUpdateParams message.
|
|
1842
|
+
* @name MsgUpdateParamsResponse
|
|
1843
|
+
* @package sparkdream.rep.v1
|
|
1844
|
+
* @see proto type: sparkdream.rep.v1.MsgUpdateParamsResponse
|
|
1845
|
+
*/
|
|
1846
|
+
export declare const MsgUpdateParamsResponse: {
|
|
1847
|
+
typeUrl: string;
|
|
1848
|
+
encode(_: MsgUpdateParamsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1849
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParamsResponse;
|
|
1850
|
+
fromPartial(_: DeepPartial<MsgUpdateParamsResponse>): MsgUpdateParamsResponse;
|
|
1851
|
+
fromAmino(_: MsgUpdateParamsResponseAmino): MsgUpdateParamsResponse;
|
|
1852
|
+
toAmino(_: MsgUpdateParamsResponse): MsgUpdateParamsResponseAmino;
|
|
1853
|
+
fromAminoMsg(object: MsgUpdateParamsResponseAminoMsg): MsgUpdateParamsResponse;
|
|
1854
|
+
fromProtoMsg(message: MsgUpdateParamsResponseProtoMsg): MsgUpdateParamsResponse;
|
|
1855
|
+
toProto(message: MsgUpdateParamsResponse): Uint8Array;
|
|
1856
|
+
toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
|
|
1857
|
+
};
|
|
1858
|
+
/**
|
|
1859
|
+
* MsgUpdateOperationalParams is the Msg/UpdateOperationalParams request type.
|
|
1860
|
+
* @name MsgUpdateOperationalParams
|
|
1861
|
+
* @package sparkdream.rep.v1
|
|
1862
|
+
* @see proto type: sparkdream.rep.v1.MsgUpdateOperationalParams
|
|
1863
|
+
*/
|
|
1864
|
+
export declare const MsgUpdateOperationalParams: {
|
|
1865
|
+
typeUrl: string;
|
|
1866
|
+
aminoType: string;
|
|
1867
|
+
encode(message: MsgUpdateOperationalParams, writer?: BinaryWriter): BinaryWriter;
|
|
1868
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateOperationalParams;
|
|
1869
|
+
fromPartial(object: DeepPartial<MsgUpdateOperationalParams>): MsgUpdateOperationalParams;
|
|
1870
|
+
fromAmino(object: MsgUpdateOperationalParamsAmino): MsgUpdateOperationalParams;
|
|
1871
|
+
toAmino(message: MsgUpdateOperationalParams): MsgUpdateOperationalParamsAmino;
|
|
1872
|
+
fromAminoMsg(object: MsgUpdateOperationalParamsAminoMsg): MsgUpdateOperationalParams;
|
|
1873
|
+
toAminoMsg(message: MsgUpdateOperationalParams): MsgUpdateOperationalParamsAminoMsg;
|
|
1874
|
+
fromProtoMsg(message: MsgUpdateOperationalParamsProtoMsg): MsgUpdateOperationalParams;
|
|
1875
|
+
toProto(message: MsgUpdateOperationalParams): Uint8Array;
|
|
1876
|
+
toProtoMsg(message: MsgUpdateOperationalParams): MsgUpdateOperationalParamsProtoMsg;
|
|
1877
|
+
};
|
|
1878
|
+
/**
|
|
1879
|
+
* MsgUpdateOperationalParamsResponse defines the response structure for
|
|
1880
|
+
* executing a MsgUpdateOperationalParams message.
|
|
1881
|
+
* @name MsgUpdateOperationalParamsResponse
|
|
1882
|
+
* @package sparkdream.rep.v1
|
|
1883
|
+
* @see proto type: sparkdream.rep.v1.MsgUpdateOperationalParamsResponse
|
|
1884
|
+
*/
|
|
1885
|
+
export declare const MsgUpdateOperationalParamsResponse: {
|
|
1886
|
+
typeUrl: string;
|
|
1887
|
+
encode(_: MsgUpdateOperationalParamsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1888
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateOperationalParamsResponse;
|
|
1889
|
+
fromPartial(_: DeepPartial<MsgUpdateOperationalParamsResponse>): MsgUpdateOperationalParamsResponse;
|
|
1890
|
+
fromAmino(_: MsgUpdateOperationalParamsResponseAmino): MsgUpdateOperationalParamsResponse;
|
|
1891
|
+
toAmino(_: MsgUpdateOperationalParamsResponse): MsgUpdateOperationalParamsResponseAmino;
|
|
1892
|
+
fromAminoMsg(object: MsgUpdateOperationalParamsResponseAminoMsg): MsgUpdateOperationalParamsResponse;
|
|
1893
|
+
fromProtoMsg(message: MsgUpdateOperationalParamsResponseProtoMsg): MsgUpdateOperationalParamsResponse;
|
|
1894
|
+
toProto(message: MsgUpdateOperationalParamsResponse): Uint8Array;
|
|
1895
|
+
toProtoMsg(message: MsgUpdateOperationalParamsResponse): MsgUpdateOperationalParamsResponseProtoMsg;
|
|
1896
|
+
};
|
|
1897
|
+
/**
|
|
1898
|
+
* MsgInviteMember defines the MsgInviteMember message.
|
|
1899
|
+
* @name MsgInviteMember
|
|
1900
|
+
* @package sparkdream.rep.v1
|
|
1901
|
+
* @see proto type: sparkdream.rep.v1.MsgInviteMember
|
|
1902
|
+
*/
|
|
1903
|
+
export declare const MsgInviteMember: {
|
|
1904
|
+
typeUrl: string;
|
|
1905
|
+
encode(message: MsgInviteMember, writer?: BinaryWriter): BinaryWriter;
|
|
1906
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgInviteMember;
|
|
1907
|
+
fromPartial(object: DeepPartial<MsgInviteMember>): MsgInviteMember;
|
|
1908
|
+
fromAmino(object: MsgInviteMemberAmino): MsgInviteMember;
|
|
1909
|
+
toAmino(message: MsgInviteMember): MsgInviteMemberAmino;
|
|
1910
|
+
fromAminoMsg(object: MsgInviteMemberAminoMsg): MsgInviteMember;
|
|
1911
|
+
fromProtoMsg(message: MsgInviteMemberProtoMsg): MsgInviteMember;
|
|
1912
|
+
toProto(message: MsgInviteMember): Uint8Array;
|
|
1913
|
+
toProtoMsg(message: MsgInviteMember): MsgInviteMemberProtoMsg;
|
|
1914
|
+
};
|
|
1915
|
+
/**
|
|
1916
|
+
* MsgInviteMemberResponse defines the MsgInviteMemberResponse message.
|
|
1917
|
+
* @name MsgInviteMemberResponse
|
|
1918
|
+
* @package sparkdream.rep.v1
|
|
1919
|
+
* @see proto type: sparkdream.rep.v1.MsgInviteMemberResponse
|
|
1920
|
+
*/
|
|
1921
|
+
export declare const MsgInviteMemberResponse: {
|
|
1922
|
+
typeUrl: string;
|
|
1923
|
+
encode(_: MsgInviteMemberResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1924
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgInviteMemberResponse;
|
|
1925
|
+
fromPartial(_: DeepPartial<MsgInviteMemberResponse>): MsgInviteMemberResponse;
|
|
1926
|
+
fromAmino(_: MsgInviteMemberResponseAmino): MsgInviteMemberResponse;
|
|
1927
|
+
toAmino(_: MsgInviteMemberResponse): MsgInviteMemberResponseAmino;
|
|
1928
|
+
fromAminoMsg(object: MsgInviteMemberResponseAminoMsg): MsgInviteMemberResponse;
|
|
1929
|
+
fromProtoMsg(message: MsgInviteMemberResponseProtoMsg): MsgInviteMemberResponse;
|
|
1930
|
+
toProto(message: MsgInviteMemberResponse): Uint8Array;
|
|
1931
|
+
toProtoMsg(message: MsgInviteMemberResponse): MsgInviteMemberResponseProtoMsg;
|
|
1932
|
+
};
|
|
1933
|
+
/**
|
|
1934
|
+
* MsgAcceptInvitation defines the MsgAcceptInvitation message.
|
|
1935
|
+
* @name MsgAcceptInvitation
|
|
1936
|
+
* @package sparkdream.rep.v1
|
|
1937
|
+
* @see proto type: sparkdream.rep.v1.MsgAcceptInvitation
|
|
1938
|
+
*/
|
|
1939
|
+
export declare const MsgAcceptInvitation: {
|
|
1940
|
+
typeUrl: string;
|
|
1941
|
+
encode(message: MsgAcceptInvitation, writer?: BinaryWriter): BinaryWriter;
|
|
1942
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgAcceptInvitation;
|
|
1943
|
+
fromPartial(object: DeepPartial<MsgAcceptInvitation>): MsgAcceptInvitation;
|
|
1944
|
+
fromAmino(object: MsgAcceptInvitationAmino): MsgAcceptInvitation;
|
|
1945
|
+
toAmino(message: MsgAcceptInvitation): MsgAcceptInvitationAmino;
|
|
1946
|
+
fromAminoMsg(object: MsgAcceptInvitationAminoMsg): MsgAcceptInvitation;
|
|
1947
|
+
fromProtoMsg(message: MsgAcceptInvitationProtoMsg): MsgAcceptInvitation;
|
|
1948
|
+
toProto(message: MsgAcceptInvitation): Uint8Array;
|
|
1949
|
+
toProtoMsg(message: MsgAcceptInvitation): MsgAcceptInvitationProtoMsg;
|
|
1950
|
+
};
|
|
1951
|
+
/**
|
|
1952
|
+
* MsgAcceptInvitationResponse defines the MsgAcceptInvitationResponse message.
|
|
1953
|
+
* @name MsgAcceptInvitationResponse
|
|
1954
|
+
* @package sparkdream.rep.v1
|
|
1955
|
+
* @see proto type: sparkdream.rep.v1.MsgAcceptInvitationResponse
|
|
1956
|
+
*/
|
|
1957
|
+
export declare const MsgAcceptInvitationResponse: {
|
|
1958
|
+
typeUrl: string;
|
|
1959
|
+
encode(_: MsgAcceptInvitationResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1960
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgAcceptInvitationResponse;
|
|
1961
|
+
fromPartial(_: DeepPartial<MsgAcceptInvitationResponse>): MsgAcceptInvitationResponse;
|
|
1962
|
+
fromAmino(_: MsgAcceptInvitationResponseAmino): MsgAcceptInvitationResponse;
|
|
1963
|
+
toAmino(_: MsgAcceptInvitationResponse): MsgAcceptInvitationResponseAmino;
|
|
1964
|
+
fromAminoMsg(object: MsgAcceptInvitationResponseAminoMsg): MsgAcceptInvitationResponse;
|
|
1965
|
+
fromProtoMsg(message: MsgAcceptInvitationResponseProtoMsg): MsgAcceptInvitationResponse;
|
|
1966
|
+
toProto(message: MsgAcceptInvitationResponse): Uint8Array;
|
|
1967
|
+
toProtoMsg(message: MsgAcceptInvitationResponse): MsgAcceptInvitationResponseProtoMsg;
|
|
1968
|
+
};
|
|
1969
|
+
/**
|
|
1970
|
+
* MsgTransferDream defines the MsgTransferDream message.
|
|
1971
|
+
* @name MsgTransferDream
|
|
1972
|
+
* @package sparkdream.rep.v1
|
|
1973
|
+
* @see proto type: sparkdream.rep.v1.MsgTransferDream
|
|
1974
|
+
*/
|
|
1975
|
+
export declare const MsgTransferDream: {
|
|
1976
|
+
typeUrl: string;
|
|
1977
|
+
encode(message: MsgTransferDream, writer?: BinaryWriter): BinaryWriter;
|
|
1978
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgTransferDream;
|
|
1979
|
+
fromPartial(object: DeepPartial<MsgTransferDream>): MsgTransferDream;
|
|
1980
|
+
fromAmino(object: MsgTransferDreamAmino): MsgTransferDream;
|
|
1981
|
+
toAmino(message: MsgTransferDream): MsgTransferDreamAmino;
|
|
1982
|
+
fromAminoMsg(object: MsgTransferDreamAminoMsg): MsgTransferDream;
|
|
1983
|
+
fromProtoMsg(message: MsgTransferDreamProtoMsg): MsgTransferDream;
|
|
1984
|
+
toProto(message: MsgTransferDream): Uint8Array;
|
|
1985
|
+
toProtoMsg(message: MsgTransferDream): MsgTransferDreamProtoMsg;
|
|
1986
|
+
};
|
|
1987
|
+
/**
|
|
1988
|
+
* MsgTransferDreamResponse defines the MsgTransferDreamResponse message.
|
|
1989
|
+
* @name MsgTransferDreamResponse
|
|
1990
|
+
* @package sparkdream.rep.v1
|
|
1991
|
+
* @see proto type: sparkdream.rep.v1.MsgTransferDreamResponse
|
|
1992
|
+
*/
|
|
1993
|
+
export declare const MsgTransferDreamResponse: {
|
|
1994
|
+
typeUrl: string;
|
|
1995
|
+
encode(_: MsgTransferDreamResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1996
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgTransferDreamResponse;
|
|
1997
|
+
fromPartial(_: DeepPartial<MsgTransferDreamResponse>): MsgTransferDreamResponse;
|
|
1998
|
+
fromAmino(_: MsgTransferDreamResponseAmino): MsgTransferDreamResponse;
|
|
1999
|
+
toAmino(_: MsgTransferDreamResponse): MsgTransferDreamResponseAmino;
|
|
2000
|
+
fromAminoMsg(object: MsgTransferDreamResponseAminoMsg): MsgTransferDreamResponse;
|
|
2001
|
+
fromProtoMsg(message: MsgTransferDreamResponseProtoMsg): MsgTransferDreamResponse;
|
|
2002
|
+
toProto(message: MsgTransferDreamResponse): Uint8Array;
|
|
2003
|
+
toProtoMsg(message: MsgTransferDreamResponse): MsgTransferDreamResponseProtoMsg;
|
|
2004
|
+
};
|
|
2005
|
+
/**
|
|
2006
|
+
* MsgCreateInterim defines the MsgCreateInterim message.
|
|
2007
|
+
* @name MsgCreateInterim
|
|
2008
|
+
* @package sparkdream.rep.v1
|
|
2009
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateInterim
|
|
2010
|
+
*/
|
|
2011
|
+
export declare const MsgCreateInterim: {
|
|
2012
|
+
typeUrl: string;
|
|
2013
|
+
encode(message: MsgCreateInterim, writer?: BinaryWriter): BinaryWriter;
|
|
2014
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateInterim;
|
|
2015
|
+
fromPartial(object: DeepPartial<MsgCreateInterim>): MsgCreateInterim;
|
|
2016
|
+
fromAmino(object: MsgCreateInterimAmino): MsgCreateInterim;
|
|
2017
|
+
toAmino(message: MsgCreateInterim): MsgCreateInterimAmino;
|
|
2018
|
+
fromAminoMsg(object: MsgCreateInterimAminoMsg): MsgCreateInterim;
|
|
2019
|
+
fromProtoMsg(message: MsgCreateInterimProtoMsg): MsgCreateInterim;
|
|
2020
|
+
toProto(message: MsgCreateInterim): Uint8Array;
|
|
2021
|
+
toProtoMsg(message: MsgCreateInterim): MsgCreateInterimProtoMsg;
|
|
2022
|
+
};
|
|
2023
|
+
/**
|
|
2024
|
+
* MsgCreateInterimResponse defines the MsgCreateInterimResponse message.
|
|
2025
|
+
* @name MsgCreateInterimResponse
|
|
2026
|
+
* @package sparkdream.rep.v1
|
|
2027
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateInterimResponse
|
|
2028
|
+
*/
|
|
2029
|
+
export declare const MsgCreateInterimResponse: {
|
|
2030
|
+
typeUrl: string;
|
|
2031
|
+
encode(_: MsgCreateInterimResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2032
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateInterimResponse;
|
|
2033
|
+
fromPartial(_: DeepPartial<MsgCreateInterimResponse>): MsgCreateInterimResponse;
|
|
2034
|
+
fromAmino(_: MsgCreateInterimResponseAmino): MsgCreateInterimResponse;
|
|
2035
|
+
toAmino(_: MsgCreateInterimResponse): MsgCreateInterimResponseAmino;
|
|
2036
|
+
fromAminoMsg(object: MsgCreateInterimResponseAminoMsg): MsgCreateInterimResponse;
|
|
2037
|
+
fromProtoMsg(message: MsgCreateInterimResponseProtoMsg): MsgCreateInterimResponse;
|
|
2038
|
+
toProto(message: MsgCreateInterimResponse): Uint8Array;
|
|
2039
|
+
toProtoMsg(message: MsgCreateInterimResponse): MsgCreateInterimResponseProtoMsg;
|
|
2040
|
+
};
|
|
2041
|
+
/**
|
|
2042
|
+
* MsgAssignInterim defines the MsgAssignInterim message.
|
|
2043
|
+
* @name MsgAssignInterim
|
|
2044
|
+
* @package sparkdream.rep.v1
|
|
2045
|
+
* @see proto type: sparkdream.rep.v1.MsgAssignInterim
|
|
2046
|
+
*/
|
|
2047
|
+
export declare const MsgAssignInterim: {
|
|
2048
|
+
typeUrl: string;
|
|
2049
|
+
encode(message: MsgAssignInterim, writer?: BinaryWriter): BinaryWriter;
|
|
2050
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgAssignInterim;
|
|
2051
|
+
fromPartial(object: DeepPartial<MsgAssignInterim>): MsgAssignInterim;
|
|
2052
|
+
fromAmino(object: MsgAssignInterimAmino): MsgAssignInterim;
|
|
2053
|
+
toAmino(message: MsgAssignInterim): MsgAssignInterimAmino;
|
|
2054
|
+
fromAminoMsg(object: MsgAssignInterimAminoMsg): MsgAssignInterim;
|
|
2055
|
+
fromProtoMsg(message: MsgAssignInterimProtoMsg): MsgAssignInterim;
|
|
2056
|
+
toProto(message: MsgAssignInterim): Uint8Array;
|
|
2057
|
+
toProtoMsg(message: MsgAssignInterim): MsgAssignInterimProtoMsg;
|
|
2058
|
+
};
|
|
2059
|
+
/**
|
|
2060
|
+
* MsgAssignInterimResponse defines the MsgAssignInterimResponse message.
|
|
2061
|
+
* @name MsgAssignInterimResponse
|
|
2062
|
+
* @package sparkdream.rep.v1
|
|
2063
|
+
* @see proto type: sparkdream.rep.v1.MsgAssignInterimResponse
|
|
2064
|
+
*/
|
|
2065
|
+
export declare const MsgAssignInterimResponse: {
|
|
2066
|
+
typeUrl: string;
|
|
2067
|
+
encode(_: MsgAssignInterimResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2068
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgAssignInterimResponse;
|
|
2069
|
+
fromPartial(_: DeepPartial<MsgAssignInterimResponse>): MsgAssignInterimResponse;
|
|
2070
|
+
fromAmino(_: MsgAssignInterimResponseAmino): MsgAssignInterimResponse;
|
|
2071
|
+
toAmino(_: MsgAssignInterimResponse): MsgAssignInterimResponseAmino;
|
|
2072
|
+
fromAminoMsg(object: MsgAssignInterimResponseAminoMsg): MsgAssignInterimResponse;
|
|
2073
|
+
fromProtoMsg(message: MsgAssignInterimResponseProtoMsg): MsgAssignInterimResponse;
|
|
2074
|
+
toProto(message: MsgAssignInterimResponse): Uint8Array;
|
|
2075
|
+
toProtoMsg(message: MsgAssignInterimResponse): MsgAssignInterimResponseProtoMsg;
|
|
2076
|
+
};
|
|
2077
|
+
/**
|
|
2078
|
+
* MsgSubmitInterimWork defines the MsgSubmitInterimWork message.
|
|
2079
|
+
* @name MsgSubmitInterimWork
|
|
2080
|
+
* @package sparkdream.rep.v1
|
|
2081
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitInterimWork
|
|
2082
|
+
*/
|
|
2083
|
+
export declare const MsgSubmitInterimWork: {
|
|
2084
|
+
typeUrl: string;
|
|
2085
|
+
encode(message: MsgSubmitInterimWork, writer?: BinaryWriter): BinaryWriter;
|
|
2086
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitInterimWork;
|
|
2087
|
+
fromPartial(object: DeepPartial<MsgSubmitInterimWork>): MsgSubmitInterimWork;
|
|
2088
|
+
fromAmino(object: MsgSubmitInterimWorkAmino): MsgSubmitInterimWork;
|
|
2089
|
+
toAmino(message: MsgSubmitInterimWork): MsgSubmitInterimWorkAmino;
|
|
2090
|
+
fromAminoMsg(object: MsgSubmitInterimWorkAminoMsg): MsgSubmitInterimWork;
|
|
2091
|
+
fromProtoMsg(message: MsgSubmitInterimWorkProtoMsg): MsgSubmitInterimWork;
|
|
2092
|
+
toProto(message: MsgSubmitInterimWork): Uint8Array;
|
|
2093
|
+
toProtoMsg(message: MsgSubmitInterimWork): MsgSubmitInterimWorkProtoMsg;
|
|
2094
|
+
};
|
|
2095
|
+
/**
|
|
2096
|
+
* MsgSubmitInterimWorkResponse defines the MsgSubmitInterimWorkResponse message.
|
|
2097
|
+
* @name MsgSubmitInterimWorkResponse
|
|
2098
|
+
* @package sparkdream.rep.v1
|
|
2099
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitInterimWorkResponse
|
|
2100
|
+
*/
|
|
2101
|
+
export declare const MsgSubmitInterimWorkResponse: {
|
|
2102
|
+
typeUrl: string;
|
|
2103
|
+
encode(_: MsgSubmitInterimWorkResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2104
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitInterimWorkResponse;
|
|
2105
|
+
fromPartial(_: DeepPartial<MsgSubmitInterimWorkResponse>): MsgSubmitInterimWorkResponse;
|
|
2106
|
+
fromAmino(_: MsgSubmitInterimWorkResponseAmino): MsgSubmitInterimWorkResponse;
|
|
2107
|
+
toAmino(_: MsgSubmitInterimWorkResponse): MsgSubmitInterimWorkResponseAmino;
|
|
2108
|
+
fromAminoMsg(object: MsgSubmitInterimWorkResponseAminoMsg): MsgSubmitInterimWorkResponse;
|
|
2109
|
+
fromProtoMsg(message: MsgSubmitInterimWorkResponseProtoMsg): MsgSubmitInterimWorkResponse;
|
|
2110
|
+
toProto(message: MsgSubmitInterimWorkResponse): Uint8Array;
|
|
2111
|
+
toProtoMsg(message: MsgSubmitInterimWorkResponse): MsgSubmitInterimWorkResponseProtoMsg;
|
|
2112
|
+
};
|
|
2113
|
+
/**
|
|
2114
|
+
* MsgApproveInterim defines the MsgApproveInterim message.
|
|
2115
|
+
* @name MsgApproveInterim
|
|
2116
|
+
* @package sparkdream.rep.v1
|
|
2117
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveInterim
|
|
2118
|
+
*/
|
|
2119
|
+
export declare const MsgApproveInterim: {
|
|
2120
|
+
typeUrl: string;
|
|
2121
|
+
encode(message: MsgApproveInterim, writer?: BinaryWriter): BinaryWriter;
|
|
2122
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgApproveInterim;
|
|
2123
|
+
fromPartial(object: DeepPartial<MsgApproveInterim>): MsgApproveInterim;
|
|
2124
|
+
fromAmino(object: MsgApproveInterimAmino): MsgApproveInterim;
|
|
2125
|
+
toAmino(message: MsgApproveInterim): MsgApproveInterimAmino;
|
|
2126
|
+
fromAminoMsg(object: MsgApproveInterimAminoMsg): MsgApproveInterim;
|
|
2127
|
+
fromProtoMsg(message: MsgApproveInterimProtoMsg): MsgApproveInterim;
|
|
2128
|
+
toProto(message: MsgApproveInterim): Uint8Array;
|
|
2129
|
+
toProtoMsg(message: MsgApproveInterim): MsgApproveInterimProtoMsg;
|
|
2130
|
+
};
|
|
2131
|
+
/**
|
|
2132
|
+
* MsgApproveInterimResponse defines the MsgApproveInterimResponse message.
|
|
2133
|
+
* @name MsgApproveInterimResponse
|
|
2134
|
+
* @package sparkdream.rep.v1
|
|
2135
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveInterimResponse
|
|
2136
|
+
*/
|
|
2137
|
+
export declare const MsgApproveInterimResponse: {
|
|
2138
|
+
typeUrl: string;
|
|
2139
|
+
encode(_: MsgApproveInterimResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2140
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgApproveInterimResponse;
|
|
2141
|
+
fromPartial(_: DeepPartial<MsgApproveInterimResponse>): MsgApproveInterimResponse;
|
|
2142
|
+
fromAmino(_: MsgApproveInterimResponseAmino): MsgApproveInterimResponse;
|
|
2143
|
+
toAmino(_: MsgApproveInterimResponse): MsgApproveInterimResponseAmino;
|
|
2144
|
+
fromAminoMsg(object: MsgApproveInterimResponseAminoMsg): MsgApproveInterimResponse;
|
|
2145
|
+
fromProtoMsg(message: MsgApproveInterimResponseProtoMsg): MsgApproveInterimResponse;
|
|
2146
|
+
toProto(message: MsgApproveInterimResponse): Uint8Array;
|
|
2147
|
+
toProtoMsg(message: MsgApproveInterimResponse): MsgApproveInterimResponseProtoMsg;
|
|
2148
|
+
};
|
|
2149
|
+
/**
|
|
2150
|
+
* MsgAbandonInterim defines the MsgAbandonInterim message.
|
|
2151
|
+
* @name MsgAbandonInterim
|
|
2152
|
+
* @package sparkdream.rep.v1
|
|
2153
|
+
* @see proto type: sparkdream.rep.v1.MsgAbandonInterim
|
|
2154
|
+
*/
|
|
2155
|
+
export declare const MsgAbandonInterim: {
|
|
2156
|
+
typeUrl: string;
|
|
2157
|
+
encode(message: MsgAbandonInterim, writer?: BinaryWriter): BinaryWriter;
|
|
2158
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgAbandonInterim;
|
|
2159
|
+
fromPartial(object: DeepPartial<MsgAbandonInterim>): MsgAbandonInterim;
|
|
2160
|
+
fromAmino(object: MsgAbandonInterimAmino): MsgAbandonInterim;
|
|
2161
|
+
toAmino(message: MsgAbandonInterim): MsgAbandonInterimAmino;
|
|
2162
|
+
fromAminoMsg(object: MsgAbandonInterimAminoMsg): MsgAbandonInterim;
|
|
2163
|
+
fromProtoMsg(message: MsgAbandonInterimProtoMsg): MsgAbandonInterim;
|
|
2164
|
+
toProto(message: MsgAbandonInterim): Uint8Array;
|
|
2165
|
+
toProtoMsg(message: MsgAbandonInterim): MsgAbandonInterimProtoMsg;
|
|
2166
|
+
};
|
|
2167
|
+
/**
|
|
2168
|
+
* MsgAbandonInterimResponse defines the MsgAbandonInterimResponse message.
|
|
2169
|
+
* @name MsgAbandonInterimResponse
|
|
2170
|
+
* @package sparkdream.rep.v1
|
|
2171
|
+
* @see proto type: sparkdream.rep.v1.MsgAbandonInterimResponse
|
|
2172
|
+
*/
|
|
2173
|
+
export declare const MsgAbandonInterimResponse: {
|
|
2174
|
+
typeUrl: string;
|
|
2175
|
+
encode(_: MsgAbandonInterimResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2176
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgAbandonInterimResponse;
|
|
2177
|
+
fromPartial(_: DeepPartial<MsgAbandonInterimResponse>): MsgAbandonInterimResponse;
|
|
2178
|
+
fromAmino(_: MsgAbandonInterimResponseAmino): MsgAbandonInterimResponse;
|
|
2179
|
+
toAmino(_: MsgAbandonInterimResponse): MsgAbandonInterimResponseAmino;
|
|
2180
|
+
fromAminoMsg(object: MsgAbandonInterimResponseAminoMsg): MsgAbandonInterimResponse;
|
|
2181
|
+
fromProtoMsg(message: MsgAbandonInterimResponseProtoMsg): MsgAbandonInterimResponse;
|
|
2182
|
+
toProto(message: MsgAbandonInterimResponse): Uint8Array;
|
|
2183
|
+
toProtoMsg(message: MsgAbandonInterimResponse): MsgAbandonInterimResponseProtoMsg;
|
|
2184
|
+
};
|
|
2185
|
+
/**
|
|
2186
|
+
* MsgCompleteInterim defines the MsgCompleteInterim message.
|
|
2187
|
+
* @name MsgCompleteInterim
|
|
2188
|
+
* @package sparkdream.rep.v1
|
|
2189
|
+
* @see proto type: sparkdream.rep.v1.MsgCompleteInterim
|
|
2190
|
+
*/
|
|
2191
|
+
export declare const MsgCompleteInterim: {
|
|
2192
|
+
typeUrl: string;
|
|
2193
|
+
encode(message: MsgCompleteInterim, writer?: BinaryWriter): BinaryWriter;
|
|
2194
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCompleteInterim;
|
|
2195
|
+
fromPartial(object: DeepPartial<MsgCompleteInterim>): MsgCompleteInterim;
|
|
2196
|
+
fromAmino(object: MsgCompleteInterimAmino): MsgCompleteInterim;
|
|
2197
|
+
toAmino(message: MsgCompleteInterim): MsgCompleteInterimAmino;
|
|
2198
|
+
fromAminoMsg(object: MsgCompleteInterimAminoMsg): MsgCompleteInterim;
|
|
2199
|
+
fromProtoMsg(message: MsgCompleteInterimProtoMsg): MsgCompleteInterim;
|
|
2200
|
+
toProto(message: MsgCompleteInterim): Uint8Array;
|
|
2201
|
+
toProtoMsg(message: MsgCompleteInterim): MsgCompleteInterimProtoMsg;
|
|
2202
|
+
};
|
|
2203
|
+
/**
|
|
2204
|
+
* MsgCompleteInterimResponse defines the MsgCompleteInterimResponse message.
|
|
2205
|
+
* @name MsgCompleteInterimResponse
|
|
2206
|
+
* @package sparkdream.rep.v1
|
|
2207
|
+
* @see proto type: sparkdream.rep.v1.MsgCompleteInterimResponse
|
|
2208
|
+
*/
|
|
2209
|
+
export declare const MsgCompleteInterimResponse: {
|
|
2210
|
+
typeUrl: string;
|
|
2211
|
+
encode(_: MsgCompleteInterimResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2212
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCompleteInterimResponse;
|
|
2213
|
+
fromPartial(_: DeepPartial<MsgCompleteInterimResponse>): MsgCompleteInterimResponse;
|
|
2214
|
+
fromAmino(_: MsgCompleteInterimResponseAmino): MsgCompleteInterimResponse;
|
|
2215
|
+
toAmino(_: MsgCompleteInterimResponse): MsgCompleteInterimResponseAmino;
|
|
2216
|
+
fromAminoMsg(object: MsgCompleteInterimResponseAminoMsg): MsgCompleteInterimResponse;
|
|
2217
|
+
fromProtoMsg(message: MsgCompleteInterimResponseProtoMsg): MsgCompleteInterimResponse;
|
|
2218
|
+
toProto(message: MsgCompleteInterimResponse): Uint8Array;
|
|
2219
|
+
toProtoMsg(message: MsgCompleteInterimResponse): MsgCompleteInterimResponseProtoMsg;
|
|
2220
|
+
};
|
|
2221
|
+
/**
|
|
2222
|
+
* MsgProposeProject defines the MsgProposeProject message.
|
|
2223
|
+
* @name MsgProposeProject
|
|
2224
|
+
* @package sparkdream.rep.v1
|
|
2225
|
+
* @see proto type: sparkdream.rep.v1.MsgProposeProject
|
|
2226
|
+
*/
|
|
2227
|
+
export declare const MsgProposeProject: {
|
|
2228
|
+
typeUrl: string;
|
|
2229
|
+
encode(message: MsgProposeProject, writer?: BinaryWriter): BinaryWriter;
|
|
2230
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgProposeProject;
|
|
2231
|
+
fromPartial(object: DeepPartial<MsgProposeProject>): MsgProposeProject;
|
|
2232
|
+
fromAmino(object: MsgProposeProjectAmino): MsgProposeProject;
|
|
2233
|
+
toAmino(message: MsgProposeProject): MsgProposeProjectAmino;
|
|
2234
|
+
fromAminoMsg(object: MsgProposeProjectAminoMsg): MsgProposeProject;
|
|
2235
|
+
fromProtoMsg(message: MsgProposeProjectProtoMsg): MsgProposeProject;
|
|
2236
|
+
toProto(message: MsgProposeProject): Uint8Array;
|
|
2237
|
+
toProtoMsg(message: MsgProposeProject): MsgProposeProjectProtoMsg;
|
|
2238
|
+
};
|
|
2239
|
+
/**
|
|
2240
|
+
* MsgProposeProjectResponse defines the MsgProposeProjectResponse message.
|
|
2241
|
+
* @name MsgProposeProjectResponse
|
|
2242
|
+
* @package sparkdream.rep.v1
|
|
2243
|
+
* @see proto type: sparkdream.rep.v1.MsgProposeProjectResponse
|
|
2244
|
+
*/
|
|
2245
|
+
export declare const MsgProposeProjectResponse: {
|
|
2246
|
+
typeUrl: string;
|
|
2247
|
+
encode(_: MsgProposeProjectResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2248
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgProposeProjectResponse;
|
|
2249
|
+
fromPartial(_: DeepPartial<MsgProposeProjectResponse>): MsgProposeProjectResponse;
|
|
2250
|
+
fromAmino(_: MsgProposeProjectResponseAmino): MsgProposeProjectResponse;
|
|
2251
|
+
toAmino(_: MsgProposeProjectResponse): MsgProposeProjectResponseAmino;
|
|
2252
|
+
fromAminoMsg(object: MsgProposeProjectResponseAminoMsg): MsgProposeProjectResponse;
|
|
2253
|
+
fromProtoMsg(message: MsgProposeProjectResponseProtoMsg): MsgProposeProjectResponse;
|
|
2254
|
+
toProto(message: MsgProposeProjectResponse): Uint8Array;
|
|
2255
|
+
toProtoMsg(message: MsgProposeProjectResponse): MsgProposeProjectResponseProtoMsg;
|
|
2256
|
+
};
|
|
2257
|
+
/**
|
|
2258
|
+
* MsgApproveProjectBudget defines the MsgApproveProjectBudget message.
|
|
2259
|
+
* @name MsgApproveProjectBudget
|
|
2260
|
+
* @package sparkdream.rep.v1
|
|
2261
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveProjectBudget
|
|
2262
|
+
*/
|
|
2263
|
+
export declare const MsgApproveProjectBudget: {
|
|
2264
|
+
typeUrl: string;
|
|
2265
|
+
encode(message: MsgApproveProjectBudget, writer?: BinaryWriter): BinaryWriter;
|
|
2266
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgApproveProjectBudget;
|
|
2267
|
+
fromPartial(object: DeepPartial<MsgApproveProjectBudget>): MsgApproveProjectBudget;
|
|
2268
|
+
fromAmino(object: MsgApproveProjectBudgetAmino): MsgApproveProjectBudget;
|
|
2269
|
+
toAmino(message: MsgApproveProjectBudget): MsgApproveProjectBudgetAmino;
|
|
2270
|
+
fromAminoMsg(object: MsgApproveProjectBudgetAminoMsg): MsgApproveProjectBudget;
|
|
2271
|
+
fromProtoMsg(message: MsgApproveProjectBudgetProtoMsg): MsgApproveProjectBudget;
|
|
2272
|
+
toProto(message: MsgApproveProjectBudget): Uint8Array;
|
|
2273
|
+
toProtoMsg(message: MsgApproveProjectBudget): MsgApproveProjectBudgetProtoMsg;
|
|
2274
|
+
};
|
|
2275
|
+
/**
|
|
2276
|
+
* MsgApproveProjectBudgetResponse defines the MsgApproveProjectBudgetResponse message.
|
|
2277
|
+
* @name MsgApproveProjectBudgetResponse
|
|
2278
|
+
* @package sparkdream.rep.v1
|
|
2279
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveProjectBudgetResponse
|
|
2280
|
+
*/
|
|
2281
|
+
export declare const MsgApproveProjectBudgetResponse: {
|
|
2282
|
+
typeUrl: string;
|
|
2283
|
+
encode(_: MsgApproveProjectBudgetResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2284
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgApproveProjectBudgetResponse;
|
|
2285
|
+
fromPartial(_: DeepPartial<MsgApproveProjectBudgetResponse>): MsgApproveProjectBudgetResponse;
|
|
2286
|
+
fromAmino(_: MsgApproveProjectBudgetResponseAmino): MsgApproveProjectBudgetResponse;
|
|
2287
|
+
toAmino(_: MsgApproveProjectBudgetResponse): MsgApproveProjectBudgetResponseAmino;
|
|
2288
|
+
fromAminoMsg(object: MsgApproveProjectBudgetResponseAminoMsg): MsgApproveProjectBudgetResponse;
|
|
2289
|
+
fromProtoMsg(message: MsgApproveProjectBudgetResponseProtoMsg): MsgApproveProjectBudgetResponse;
|
|
2290
|
+
toProto(message: MsgApproveProjectBudgetResponse): Uint8Array;
|
|
2291
|
+
toProtoMsg(message: MsgApproveProjectBudgetResponse): MsgApproveProjectBudgetResponseProtoMsg;
|
|
2292
|
+
};
|
|
2293
|
+
/**
|
|
2294
|
+
* MsgCancelProject defines the MsgCancelProject message.
|
|
2295
|
+
* @name MsgCancelProject
|
|
2296
|
+
* @package sparkdream.rep.v1
|
|
2297
|
+
* @see proto type: sparkdream.rep.v1.MsgCancelProject
|
|
2298
|
+
*/
|
|
2299
|
+
export declare const MsgCancelProject: {
|
|
2300
|
+
typeUrl: string;
|
|
2301
|
+
encode(message: MsgCancelProject, writer?: BinaryWriter): BinaryWriter;
|
|
2302
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCancelProject;
|
|
2303
|
+
fromPartial(object: DeepPartial<MsgCancelProject>): MsgCancelProject;
|
|
2304
|
+
fromAmino(object: MsgCancelProjectAmino): MsgCancelProject;
|
|
2305
|
+
toAmino(message: MsgCancelProject): MsgCancelProjectAmino;
|
|
2306
|
+
fromAminoMsg(object: MsgCancelProjectAminoMsg): MsgCancelProject;
|
|
2307
|
+
fromProtoMsg(message: MsgCancelProjectProtoMsg): MsgCancelProject;
|
|
2308
|
+
toProto(message: MsgCancelProject): Uint8Array;
|
|
2309
|
+
toProtoMsg(message: MsgCancelProject): MsgCancelProjectProtoMsg;
|
|
2310
|
+
};
|
|
2311
|
+
/**
|
|
2312
|
+
* MsgCancelProjectResponse defines the MsgCancelProjectResponse message.
|
|
2313
|
+
* @name MsgCancelProjectResponse
|
|
2314
|
+
* @package sparkdream.rep.v1
|
|
2315
|
+
* @see proto type: sparkdream.rep.v1.MsgCancelProjectResponse
|
|
2316
|
+
*/
|
|
2317
|
+
export declare const MsgCancelProjectResponse: {
|
|
2318
|
+
typeUrl: string;
|
|
2319
|
+
encode(_: MsgCancelProjectResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2320
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCancelProjectResponse;
|
|
2321
|
+
fromPartial(_: DeepPartial<MsgCancelProjectResponse>): MsgCancelProjectResponse;
|
|
2322
|
+
fromAmino(_: MsgCancelProjectResponseAmino): MsgCancelProjectResponse;
|
|
2323
|
+
toAmino(_: MsgCancelProjectResponse): MsgCancelProjectResponseAmino;
|
|
2324
|
+
fromAminoMsg(object: MsgCancelProjectResponseAminoMsg): MsgCancelProjectResponse;
|
|
2325
|
+
fromProtoMsg(message: MsgCancelProjectResponseProtoMsg): MsgCancelProjectResponse;
|
|
2326
|
+
toProto(message: MsgCancelProjectResponse): Uint8Array;
|
|
2327
|
+
toProtoMsg(message: MsgCancelProjectResponse): MsgCancelProjectResponseProtoMsg;
|
|
2328
|
+
};
|
|
2329
|
+
/**
|
|
2330
|
+
* MsgCreateInitiative defines the MsgCreateInitiative message.
|
|
2331
|
+
* @name MsgCreateInitiative
|
|
2332
|
+
* @package sparkdream.rep.v1
|
|
2333
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateInitiative
|
|
2334
|
+
*/
|
|
2335
|
+
export declare const MsgCreateInitiative: {
|
|
2336
|
+
typeUrl: string;
|
|
2337
|
+
encode(message: MsgCreateInitiative, writer?: BinaryWriter): BinaryWriter;
|
|
2338
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateInitiative;
|
|
2339
|
+
fromPartial(object: DeepPartial<MsgCreateInitiative>): MsgCreateInitiative;
|
|
2340
|
+
fromAmino(object: MsgCreateInitiativeAmino): MsgCreateInitiative;
|
|
2341
|
+
toAmino(message: MsgCreateInitiative): MsgCreateInitiativeAmino;
|
|
2342
|
+
fromAminoMsg(object: MsgCreateInitiativeAminoMsg): MsgCreateInitiative;
|
|
2343
|
+
fromProtoMsg(message: MsgCreateInitiativeProtoMsg): MsgCreateInitiative;
|
|
2344
|
+
toProto(message: MsgCreateInitiative): Uint8Array;
|
|
2345
|
+
toProtoMsg(message: MsgCreateInitiative): MsgCreateInitiativeProtoMsg;
|
|
2346
|
+
};
|
|
2347
|
+
/**
|
|
2348
|
+
* MsgCreateInitiativeResponse defines the MsgCreateInitiativeResponse message.
|
|
2349
|
+
* @name MsgCreateInitiativeResponse
|
|
2350
|
+
* @package sparkdream.rep.v1
|
|
2351
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateInitiativeResponse
|
|
2352
|
+
*/
|
|
2353
|
+
export declare const MsgCreateInitiativeResponse: {
|
|
2354
|
+
typeUrl: string;
|
|
2355
|
+
encode(message: MsgCreateInitiativeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2356
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateInitiativeResponse;
|
|
2357
|
+
fromPartial(object: DeepPartial<MsgCreateInitiativeResponse>): MsgCreateInitiativeResponse;
|
|
2358
|
+
fromAmino(object: MsgCreateInitiativeResponseAmino): MsgCreateInitiativeResponse;
|
|
2359
|
+
toAmino(message: MsgCreateInitiativeResponse): MsgCreateInitiativeResponseAmino;
|
|
2360
|
+
fromAminoMsg(object: MsgCreateInitiativeResponseAminoMsg): MsgCreateInitiativeResponse;
|
|
2361
|
+
fromProtoMsg(message: MsgCreateInitiativeResponseProtoMsg): MsgCreateInitiativeResponse;
|
|
2362
|
+
toProto(message: MsgCreateInitiativeResponse): Uint8Array;
|
|
2363
|
+
toProtoMsg(message: MsgCreateInitiativeResponse): MsgCreateInitiativeResponseProtoMsg;
|
|
2364
|
+
};
|
|
2365
|
+
/**
|
|
2366
|
+
* MsgAssignInitiative defines the MsgAssignInitiative message.
|
|
2367
|
+
* @name MsgAssignInitiative
|
|
2368
|
+
* @package sparkdream.rep.v1
|
|
2369
|
+
* @see proto type: sparkdream.rep.v1.MsgAssignInitiative
|
|
2370
|
+
*/
|
|
2371
|
+
export declare const MsgAssignInitiative: {
|
|
2372
|
+
typeUrl: string;
|
|
2373
|
+
encode(message: MsgAssignInitiative, writer?: BinaryWriter): BinaryWriter;
|
|
2374
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgAssignInitiative;
|
|
2375
|
+
fromPartial(object: DeepPartial<MsgAssignInitiative>): MsgAssignInitiative;
|
|
2376
|
+
fromAmino(object: MsgAssignInitiativeAmino): MsgAssignInitiative;
|
|
2377
|
+
toAmino(message: MsgAssignInitiative): MsgAssignInitiativeAmino;
|
|
2378
|
+
fromAminoMsg(object: MsgAssignInitiativeAminoMsg): MsgAssignInitiative;
|
|
2379
|
+
fromProtoMsg(message: MsgAssignInitiativeProtoMsg): MsgAssignInitiative;
|
|
2380
|
+
toProto(message: MsgAssignInitiative): Uint8Array;
|
|
2381
|
+
toProtoMsg(message: MsgAssignInitiative): MsgAssignInitiativeProtoMsg;
|
|
2382
|
+
};
|
|
2383
|
+
/**
|
|
2384
|
+
* MsgAssignInitiativeResponse defines the MsgAssignInitiativeResponse message.
|
|
2385
|
+
* @name MsgAssignInitiativeResponse
|
|
2386
|
+
* @package sparkdream.rep.v1
|
|
2387
|
+
* @see proto type: sparkdream.rep.v1.MsgAssignInitiativeResponse
|
|
2388
|
+
*/
|
|
2389
|
+
export declare const MsgAssignInitiativeResponse: {
|
|
2390
|
+
typeUrl: string;
|
|
2391
|
+
encode(_: MsgAssignInitiativeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2392
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgAssignInitiativeResponse;
|
|
2393
|
+
fromPartial(_: DeepPartial<MsgAssignInitiativeResponse>): MsgAssignInitiativeResponse;
|
|
2394
|
+
fromAmino(_: MsgAssignInitiativeResponseAmino): MsgAssignInitiativeResponse;
|
|
2395
|
+
toAmino(_: MsgAssignInitiativeResponse): MsgAssignInitiativeResponseAmino;
|
|
2396
|
+
fromAminoMsg(object: MsgAssignInitiativeResponseAminoMsg): MsgAssignInitiativeResponse;
|
|
2397
|
+
fromProtoMsg(message: MsgAssignInitiativeResponseProtoMsg): MsgAssignInitiativeResponse;
|
|
2398
|
+
toProto(message: MsgAssignInitiativeResponse): Uint8Array;
|
|
2399
|
+
toProtoMsg(message: MsgAssignInitiativeResponse): MsgAssignInitiativeResponseProtoMsg;
|
|
2400
|
+
};
|
|
2401
|
+
/**
|
|
2402
|
+
* MsgSubmitInitiativeWork defines the MsgSubmitInitiativeWork message.
|
|
2403
|
+
* @name MsgSubmitInitiativeWork
|
|
2404
|
+
* @package sparkdream.rep.v1
|
|
2405
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitInitiativeWork
|
|
2406
|
+
*/
|
|
2407
|
+
export declare const MsgSubmitInitiativeWork: {
|
|
2408
|
+
typeUrl: string;
|
|
2409
|
+
encode(message: MsgSubmitInitiativeWork, writer?: BinaryWriter): BinaryWriter;
|
|
2410
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitInitiativeWork;
|
|
2411
|
+
fromPartial(object: DeepPartial<MsgSubmitInitiativeWork>): MsgSubmitInitiativeWork;
|
|
2412
|
+
fromAmino(object: MsgSubmitInitiativeWorkAmino): MsgSubmitInitiativeWork;
|
|
2413
|
+
toAmino(message: MsgSubmitInitiativeWork): MsgSubmitInitiativeWorkAmino;
|
|
2414
|
+
fromAminoMsg(object: MsgSubmitInitiativeWorkAminoMsg): MsgSubmitInitiativeWork;
|
|
2415
|
+
fromProtoMsg(message: MsgSubmitInitiativeWorkProtoMsg): MsgSubmitInitiativeWork;
|
|
2416
|
+
toProto(message: MsgSubmitInitiativeWork): Uint8Array;
|
|
2417
|
+
toProtoMsg(message: MsgSubmitInitiativeWork): MsgSubmitInitiativeWorkProtoMsg;
|
|
2418
|
+
};
|
|
2419
|
+
/**
|
|
2420
|
+
* MsgSubmitInitiativeWorkResponse defines the MsgSubmitInitiativeWorkResponse message.
|
|
2421
|
+
* @name MsgSubmitInitiativeWorkResponse
|
|
2422
|
+
* @package sparkdream.rep.v1
|
|
2423
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitInitiativeWorkResponse
|
|
2424
|
+
*/
|
|
2425
|
+
export declare const MsgSubmitInitiativeWorkResponse: {
|
|
2426
|
+
typeUrl: string;
|
|
2427
|
+
encode(_: MsgSubmitInitiativeWorkResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2428
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitInitiativeWorkResponse;
|
|
2429
|
+
fromPartial(_: DeepPartial<MsgSubmitInitiativeWorkResponse>): MsgSubmitInitiativeWorkResponse;
|
|
2430
|
+
fromAmino(_: MsgSubmitInitiativeWorkResponseAmino): MsgSubmitInitiativeWorkResponse;
|
|
2431
|
+
toAmino(_: MsgSubmitInitiativeWorkResponse): MsgSubmitInitiativeWorkResponseAmino;
|
|
2432
|
+
fromAminoMsg(object: MsgSubmitInitiativeWorkResponseAminoMsg): MsgSubmitInitiativeWorkResponse;
|
|
2433
|
+
fromProtoMsg(message: MsgSubmitInitiativeWorkResponseProtoMsg): MsgSubmitInitiativeWorkResponse;
|
|
2434
|
+
toProto(message: MsgSubmitInitiativeWorkResponse): Uint8Array;
|
|
2435
|
+
toProtoMsg(message: MsgSubmitInitiativeWorkResponse): MsgSubmitInitiativeWorkResponseProtoMsg;
|
|
2436
|
+
};
|
|
2437
|
+
/**
|
|
2438
|
+
* MsgApproveInitiative defines the MsgApproveInitiative message.
|
|
2439
|
+
* @name MsgApproveInitiative
|
|
2440
|
+
* @package sparkdream.rep.v1
|
|
2441
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveInitiative
|
|
2442
|
+
*/
|
|
2443
|
+
export declare const MsgApproveInitiative: {
|
|
2444
|
+
typeUrl: string;
|
|
2445
|
+
encode(message: MsgApproveInitiative, writer?: BinaryWriter): BinaryWriter;
|
|
2446
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgApproveInitiative;
|
|
2447
|
+
fromPartial(object: DeepPartial<MsgApproveInitiative>): MsgApproveInitiative;
|
|
2448
|
+
fromAmino(object: MsgApproveInitiativeAmino): MsgApproveInitiative;
|
|
2449
|
+
toAmino(message: MsgApproveInitiative): MsgApproveInitiativeAmino;
|
|
2450
|
+
fromAminoMsg(object: MsgApproveInitiativeAminoMsg): MsgApproveInitiative;
|
|
2451
|
+
fromProtoMsg(message: MsgApproveInitiativeProtoMsg): MsgApproveInitiative;
|
|
2452
|
+
toProto(message: MsgApproveInitiative): Uint8Array;
|
|
2453
|
+
toProtoMsg(message: MsgApproveInitiative): MsgApproveInitiativeProtoMsg;
|
|
2454
|
+
};
|
|
2455
|
+
/**
|
|
2456
|
+
* MsgApproveInitiativeResponse defines the MsgApproveInitiativeResponse message.
|
|
2457
|
+
* @name MsgApproveInitiativeResponse
|
|
2458
|
+
* @package sparkdream.rep.v1
|
|
2459
|
+
* @see proto type: sparkdream.rep.v1.MsgApproveInitiativeResponse
|
|
2460
|
+
*/
|
|
2461
|
+
export declare const MsgApproveInitiativeResponse: {
|
|
2462
|
+
typeUrl: string;
|
|
2463
|
+
encode(_: MsgApproveInitiativeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2464
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgApproveInitiativeResponse;
|
|
2465
|
+
fromPartial(_: DeepPartial<MsgApproveInitiativeResponse>): MsgApproveInitiativeResponse;
|
|
2466
|
+
fromAmino(_: MsgApproveInitiativeResponseAmino): MsgApproveInitiativeResponse;
|
|
2467
|
+
toAmino(_: MsgApproveInitiativeResponse): MsgApproveInitiativeResponseAmino;
|
|
2468
|
+
fromAminoMsg(object: MsgApproveInitiativeResponseAminoMsg): MsgApproveInitiativeResponse;
|
|
2469
|
+
fromProtoMsg(message: MsgApproveInitiativeResponseProtoMsg): MsgApproveInitiativeResponse;
|
|
2470
|
+
toProto(message: MsgApproveInitiativeResponse): Uint8Array;
|
|
2471
|
+
toProtoMsg(message: MsgApproveInitiativeResponse): MsgApproveInitiativeResponseProtoMsg;
|
|
2472
|
+
};
|
|
2473
|
+
/**
|
|
2474
|
+
* MsgAbandonInitiative defines the MsgAbandonInitiative message.
|
|
2475
|
+
* @name MsgAbandonInitiative
|
|
2476
|
+
* @package sparkdream.rep.v1
|
|
2477
|
+
* @see proto type: sparkdream.rep.v1.MsgAbandonInitiative
|
|
2478
|
+
*/
|
|
2479
|
+
export declare const MsgAbandonInitiative: {
|
|
2480
|
+
typeUrl: string;
|
|
2481
|
+
encode(message: MsgAbandonInitiative, writer?: BinaryWriter): BinaryWriter;
|
|
2482
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgAbandonInitiative;
|
|
2483
|
+
fromPartial(object: DeepPartial<MsgAbandonInitiative>): MsgAbandonInitiative;
|
|
2484
|
+
fromAmino(object: MsgAbandonInitiativeAmino): MsgAbandonInitiative;
|
|
2485
|
+
toAmino(message: MsgAbandonInitiative): MsgAbandonInitiativeAmino;
|
|
2486
|
+
fromAminoMsg(object: MsgAbandonInitiativeAminoMsg): MsgAbandonInitiative;
|
|
2487
|
+
fromProtoMsg(message: MsgAbandonInitiativeProtoMsg): MsgAbandonInitiative;
|
|
2488
|
+
toProto(message: MsgAbandonInitiative): Uint8Array;
|
|
2489
|
+
toProtoMsg(message: MsgAbandonInitiative): MsgAbandonInitiativeProtoMsg;
|
|
2490
|
+
};
|
|
2491
|
+
/**
|
|
2492
|
+
* MsgAbandonInitiativeResponse defines the MsgAbandonInitiativeResponse message.
|
|
2493
|
+
* @name MsgAbandonInitiativeResponse
|
|
2494
|
+
* @package sparkdream.rep.v1
|
|
2495
|
+
* @see proto type: sparkdream.rep.v1.MsgAbandonInitiativeResponse
|
|
2496
|
+
*/
|
|
2497
|
+
export declare const MsgAbandonInitiativeResponse: {
|
|
2498
|
+
typeUrl: string;
|
|
2499
|
+
encode(_: MsgAbandonInitiativeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2500
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgAbandonInitiativeResponse;
|
|
2501
|
+
fromPartial(_: DeepPartial<MsgAbandonInitiativeResponse>): MsgAbandonInitiativeResponse;
|
|
2502
|
+
fromAmino(_: MsgAbandonInitiativeResponseAmino): MsgAbandonInitiativeResponse;
|
|
2503
|
+
toAmino(_: MsgAbandonInitiativeResponse): MsgAbandonInitiativeResponseAmino;
|
|
2504
|
+
fromAminoMsg(object: MsgAbandonInitiativeResponseAminoMsg): MsgAbandonInitiativeResponse;
|
|
2505
|
+
fromProtoMsg(message: MsgAbandonInitiativeResponseProtoMsg): MsgAbandonInitiativeResponse;
|
|
2506
|
+
toProto(message: MsgAbandonInitiativeResponse): Uint8Array;
|
|
2507
|
+
toProtoMsg(message: MsgAbandonInitiativeResponse): MsgAbandonInitiativeResponseProtoMsg;
|
|
2508
|
+
};
|
|
2509
|
+
/**
|
|
2510
|
+
* MsgCompleteInitiative defines the MsgCompleteInitiative message.
|
|
2511
|
+
* @name MsgCompleteInitiative
|
|
2512
|
+
* @package sparkdream.rep.v1
|
|
2513
|
+
* @see proto type: sparkdream.rep.v1.MsgCompleteInitiative
|
|
2514
|
+
*/
|
|
2515
|
+
export declare const MsgCompleteInitiative: {
|
|
2516
|
+
typeUrl: string;
|
|
2517
|
+
encode(message: MsgCompleteInitiative, writer?: BinaryWriter): BinaryWriter;
|
|
2518
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCompleteInitiative;
|
|
2519
|
+
fromPartial(object: DeepPartial<MsgCompleteInitiative>): MsgCompleteInitiative;
|
|
2520
|
+
fromAmino(object: MsgCompleteInitiativeAmino): MsgCompleteInitiative;
|
|
2521
|
+
toAmino(message: MsgCompleteInitiative): MsgCompleteInitiativeAmino;
|
|
2522
|
+
fromAminoMsg(object: MsgCompleteInitiativeAminoMsg): MsgCompleteInitiative;
|
|
2523
|
+
fromProtoMsg(message: MsgCompleteInitiativeProtoMsg): MsgCompleteInitiative;
|
|
2524
|
+
toProto(message: MsgCompleteInitiative): Uint8Array;
|
|
2525
|
+
toProtoMsg(message: MsgCompleteInitiative): MsgCompleteInitiativeProtoMsg;
|
|
2526
|
+
};
|
|
2527
|
+
/**
|
|
2528
|
+
* MsgCompleteInitiativeResponse defines the MsgCompleteInitiativeResponse message.
|
|
2529
|
+
* @name MsgCompleteInitiativeResponse
|
|
2530
|
+
* @package sparkdream.rep.v1
|
|
2531
|
+
* @see proto type: sparkdream.rep.v1.MsgCompleteInitiativeResponse
|
|
2532
|
+
*/
|
|
2533
|
+
export declare const MsgCompleteInitiativeResponse: {
|
|
2534
|
+
typeUrl: string;
|
|
2535
|
+
encode(_: MsgCompleteInitiativeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2536
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCompleteInitiativeResponse;
|
|
2537
|
+
fromPartial(_: DeepPartial<MsgCompleteInitiativeResponse>): MsgCompleteInitiativeResponse;
|
|
2538
|
+
fromAmino(_: MsgCompleteInitiativeResponseAmino): MsgCompleteInitiativeResponse;
|
|
2539
|
+
toAmino(_: MsgCompleteInitiativeResponse): MsgCompleteInitiativeResponseAmino;
|
|
2540
|
+
fromAminoMsg(object: MsgCompleteInitiativeResponseAminoMsg): MsgCompleteInitiativeResponse;
|
|
2541
|
+
fromProtoMsg(message: MsgCompleteInitiativeResponseProtoMsg): MsgCompleteInitiativeResponse;
|
|
2542
|
+
toProto(message: MsgCompleteInitiativeResponse): Uint8Array;
|
|
2543
|
+
toProtoMsg(message: MsgCompleteInitiativeResponse): MsgCompleteInitiativeResponseProtoMsg;
|
|
2544
|
+
};
|
|
2545
|
+
/**
|
|
2546
|
+
* MsgStake defines the MsgStake message.
|
|
2547
|
+
* @name MsgStake
|
|
2548
|
+
* @package sparkdream.rep.v1
|
|
2549
|
+
* @see proto type: sparkdream.rep.v1.MsgStake
|
|
2550
|
+
*/
|
|
2551
|
+
export declare const MsgStake: {
|
|
2552
|
+
typeUrl: string;
|
|
2553
|
+
encode(message: MsgStake, writer?: BinaryWriter): BinaryWriter;
|
|
2554
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgStake;
|
|
2555
|
+
fromPartial(object: DeepPartial<MsgStake>): MsgStake;
|
|
2556
|
+
fromAmino(object: MsgStakeAmino): MsgStake;
|
|
2557
|
+
toAmino(message: MsgStake): MsgStakeAmino;
|
|
2558
|
+
fromAminoMsg(object: MsgStakeAminoMsg): MsgStake;
|
|
2559
|
+
fromProtoMsg(message: MsgStakeProtoMsg): MsgStake;
|
|
2560
|
+
toProto(message: MsgStake): Uint8Array;
|
|
2561
|
+
toProtoMsg(message: MsgStake): MsgStakeProtoMsg;
|
|
2562
|
+
};
|
|
2563
|
+
/**
|
|
2564
|
+
* MsgStakeResponse defines the MsgStakeResponse message.
|
|
2565
|
+
* @name MsgStakeResponse
|
|
2566
|
+
* @package sparkdream.rep.v1
|
|
2567
|
+
* @see proto type: sparkdream.rep.v1.MsgStakeResponse
|
|
2568
|
+
*/
|
|
2569
|
+
export declare const MsgStakeResponse: {
|
|
2570
|
+
typeUrl: string;
|
|
2571
|
+
encode(message: MsgStakeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2572
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgStakeResponse;
|
|
2573
|
+
fromPartial(object: DeepPartial<MsgStakeResponse>): MsgStakeResponse;
|
|
2574
|
+
fromAmino(object: MsgStakeResponseAmino): MsgStakeResponse;
|
|
2575
|
+
toAmino(message: MsgStakeResponse): MsgStakeResponseAmino;
|
|
2576
|
+
fromAminoMsg(object: MsgStakeResponseAminoMsg): MsgStakeResponse;
|
|
2577
|
+
fromProtoMsg(message: MsgStakeResponseProtoMsg): MsgStakeResponse;
|
|
2578
|
+
toProto(message: MsgStakeResponse): Uint8Array;
|
|
2579
|
+
toProtoMsg(message: MsgStakeResponse): MsgStakeResponseProtoMsg;
|
|
2580
|
+
};
|
|
2581
|
+
/**
|
|
2582
|
+
* MsgUnstake defines the MsgUnstake message.
|
|
2583
|
+
* @name MsgUnstake
|
|
2584
|
+
* @package sparkdream.rep.v1
|
|
2585
|
+
* @see proto type: sparkdream.rep.v1.MsgUnstake
|
|
2586
|
+
*/
|
|
2587
|
+
export declare const MsgUnstake: {
|
|
2588
|
+
typeUrl: string;
|
|
2589
|
+
encode(message: MsgUnstake, writer?: BinaryWriter): BinaryWriter;
|
|
2590
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnstake;
|
|
2591
|
+
fromPartial(object: DeepPartial<MsgUnstake>): MsgUnstake;
|
|
2592
|
+
fromAmino(object: MsgUnstakeAmino): MsgUnstake;
|
|
2593
|
+
toAmino(message: MsgUnstake): MsgUnstakeAmino;
|
|
2594
|
+
fromAminoMsg(object: MsgUnstakeAminoMsg): MsgUnstake;
|
|
2595
|
+
fromProtoMsg(message: MsgUnstakeProtoMsg): MsgUnstake;
|
|
2596
|
+
toProto(message: MsgUnstake): Uint8Array;
|
|
2597
|
+
toProtoMsg(message: MsgUnstake): MsgUnstakeProtoMsg;
|
|
2598
|
+
};
|
|
2599
|
+
/**
|
|
2600
|
+
* MsgUnstakeResponse defines the MsgUnstakeResponse message.
|
|
2601
|
+
* @name MsgUnstakeResponse
|
|
2602
|
+
* @package sparkdream.rep.v1
|
|
2603
|
+
* @see proto type: sparkdream.rep.v1.MsgUnstakeResponse
|
|
2604
|
+
*/
|
|
2605
|
+
export declare const MsgUnstakeResponse: {
|
|
2606
|
+
typeUrl: string;
|
|
2607
|
+
encode(message: MsgUnstakeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2608
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnstakeResponse;
|
|
2609
|
+
fromPartial(object: DeepPartial<MsgUnstakeResponse>): MsgUnstakeResponse;
|
|
2610
|
+
fromAmino(object: MsgUnstakeResponseAmino): MsgUnstakeResponse;
|
|
2611
|
+
toAmino(message: MsgUnstakeResponse): MsgUnstakeResponseAmino;
|
|
2612
|
+
fromAminoMsg(object: MsgUnstakeResponseAminoMsg): MsgUnstakeResponse;
|
|
2613
|
+
fromProtoMsg(message: MsgUnstakeResponseProtoMsg): MsgUnstakeResponse;
|
|
2614
|
+
toProto(message: MsgUnstakeResponse): Uint8Array;
|
|
2615
|
+
toProtoMsg(message: MsgUnstakeResponse): MsgUnstakeResponseProtoMsg;
|
|
2616
|
+
};
|
|
2617
|
+
/**
|
|
2618
|
+
* MsgClaimStakingRewards defines the MsgClaimStakingRewards message.
|
|
2619
|
+
* @name MsgClaimStakingRewards
|
|
2620
|
+
* @package sparkdream.rep.v1
|
|
2621
|
+
* @see proto type: sparkdream.rep.v1.MsgClaimStakingRewards
|
|
2622
|
+
*/
|
|
2623
|
+
export declare const MsgClaimStakingRewards: {
|
|
2624
|
+
typeUrl: string;
|
|
2625
|
+
encode(message: MsgClaimStakingRewards, writer?: BinaryWriter): BinaryWriter;
|
|
2626
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgClaimStakingRewards;
|
|
2627
|
+
fromPartial(object: DeepPartial<MsgClaimStakingRewards>): MsgClaimStakingRewards;
|
|
2628
|
+
fromAmino(object: MsgClaimStakingRewardsAmino): MsgClaimStakingRewards;
|
|
2629
|
+
toAmino(message: MsgClaimStakingRewards): MsgClaimStakingRewardsAmino;
|
|
2630
|
+
fromAminoMsg(object: MsgClaimStakingRewardsAminoMsg): MsgClaimStakingRewards;
|
|
2631
|
+
fromProtoMsg(message: MsgClaimStakingRewardsProtoMsg): MsgClaimStakingRewards;
|
|
2632
|
+
toProto(message: MsgClaimStakingRewards): Uint8Array;
|
|
2633
|
+
toProtoMsg(message: MsgClaimStakingRewards): MsgClaimStakingRewardsProtoMsg;
|
|
2634
|
+
};
|
|
2635
|
+
/**
|
|
2636
|
+
* MsgClaimStakingRewardsResponse defines the MsgClaimStakingRewardsResponse message.
|
|
2637
|
+
* @name MsgClaimStakingRewardsResponse
|
|
2638
|
+
* @package sparkdream.rep.v1
|
|
2639
|
+
* @see proto type: sparkdream.rep.v1.MsgClaimStakingRewardsResponse
|
|
2640
|
+
*/
|
|
2641
|
+
export declare const MsgClaimStakingRewardsResponse: {
|
|
2642
|
+
typeUrl: string;
|
|
2643
|
+
encode(message: MsgClaimStakingRewardsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2644
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgClaimStakingRewardsResponse;
|
|
2645
|
+
fromPartial(object: DeepPartial<MsgClaimStakingRewardsResponse>): MsgClaimStakingRewardsResponse;
|
|
2646
|
+
fromAmino(object: MsgClaimStakingRewardsResponseAmino): MsgClaimStakingRewardsResponse;
|
|
2647
|
+
toAmino(message: MsgClaimStakingRewardsResponse): MsgClaimStakingRewardsResponseAmino;
|
|
2648
|
+
fromAminoMsg(object: MsgClaimStakingRewardsResponseAminoMsg): MsgClaimStakingRewardsResponse;
|
|
2649
|
+
fromProtoMsg(message: MsgClaimStakingRewardsResponseProtoMsg): MsgClaimStakingRewardsResponse;
|
|
2650
|
+
toProto(message: MsgClaimStakingRewardsResponse): Uint8Array;
|
|
2651
|
+
toProtoMsg(message: MsgClaimStakingRewardsResponse): MsgClaimStakingRewardsResponseProtoMsg;
|
|
2652
|
+
};
|
|
2653
|
+
/**
|
|
2654
|
+
* MsgCompoundStakingRewards defines the MsgCompoundStakingRewards message.
|
|
2655
|
+
* @name MsgCompoundStakingRewards
|
|
2656
|
+
* @package sparkdream.rep.v1
|
|
2657
|
+
* @see proto type: sparkdream.rep.v1.MsgCompoundStakingRewards
|
|
2658
|
+
*/
|
|
2659
|
+
export declare const MsgCompoundStakingRewards: {
|
|
2660
|
+
typeUrl: string;
|
|
2661
|
+
encode(message: MsgCompoundStakingRewards, writer?: BinaryWriter): BinaryWriter;
|
|
2662
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCompoundStakingRewards;
|
|
2663
|
+
fromPartial(object: DeepPartial<MsgCompoundStakingRewards>): MsgCompoundStakingRewards;
|
|
2664
|
+
fromAmino(object: MsgCompoundStakingRewardsAmino): MsgCompoundStakingRewards;
|
|
2665
|
+
toAmino(message: MsgCompoundStakingRewards): MsgCompoundStakingRewardsAmino;
|
|
2666
|
+
fromAminoMsg(object: MsgCompoundStakingRewardsAminoMsg): MsgCompoundStakingRewards;
|
|
2667
|
+
fromProtoMsg(message: MsgCompoundStakingRewardsProtoMsg): MsgCompoundStakingRewards;
|
|
2668
|
+
toProto(message: MsgCompoundStakingRewards): Uint8Array;
|
|
2669
|
+
toProtoMsg(message: MsgCompoundStakingRewards): MsgCompoundStakingRewardsProtoMsg;
|
|
2670
|
+
};
|
|
2671
|
+
/**
|
|
2672
|
+
* MsgCompoundStakingRewardsResponse defines the MsgCompoundStakingRewardsResponse message.
|
|
2673
|
+
* @name MsgCompoundStakingRewardsResponse
|
|
2674
|
+
* @package sparkdream.rep.v1
|
|
2675
|
+
* @see proto type: sparkdream.rep.v1.MsgCompoundStakingRewardsResponse
|
|
2676
|
+
*/
|
|
2677
|
+
export declare const MsgCompoundStakingRewardsResponse: {
|
|
2678
|
+
typeUrl: string;
|
|
2679
|
+
encode(message: MsgCompoundStakingRewardsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2680
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCompoundStakingRewardsResponse;
|
|
2681
|
+
fromPartial(object: DeepPartial<MsgCompoundStakingRewardsResponse>): MsgCompoundStakingRewardsResponse;
|
|
2682
|
+
fromAmino(object: MsgCompoundStakingRewardsResponseAmino): MsgCompoundStakingRewardsResponse;
|
|
2683
|
+
toAmino(message: MsgCompoundStakingRewardsResponse): MsgCompoundStakingRewardsResponseAmino;
|
|
2684
|
+
fromAminoMsg(object: MsgCompoundStakingRewardsResponseAminoMsg): MsgCompoundStakingRewardsResponse;
|
|
2685
|
+
fromProtoMsg(message: MsgCompoundStakingRewardsResponseProtoMsg): MsgCompoundStakingRewardsResponse;
|
|
2686
|
+
toProto(message: MsgCompoundStakingRewardsResponse): Uint8Array;
|
|
2687
|
+
toProtoMsg(message: MsgCompoundStakingRewardsResponse): MsgCompoundStakingRewardsResponseProtoMsg;
|
|
2688
|
+
};
|
|
2689
|
+
/**
|
|
2690
|
+
* MsgCreateChallenge defines the MsgCreateChallenge message.
|
|
2691
|
+
* @name MsgCreateChallenge
|
|
2692
|
+
* @package sparkdream.rep.v1
|
|
2693
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateChallenge
|
|
2694
|
+
*/
|
|
2695
|
+
export declare const MsgCreateChallenge: {
|
|
2696
|
+
typeUrl: string;
|
|
2697
|
+
encode(message: MsgCreateChallenge, writer?: BinaryWriter): BinaryWriter;
|
|
2698
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateChallenge;
|
|
2699
|
+
fromPartial(object: DeepPartial<MsgCreateChallenge>): MsgCreateChallenge;
|
|
2700
|
+
fromAmino(object: MsgCreateChallengeAmino): MsgCreateChallenge;
|
|
2701
|
+
toAmino(message: MsgCreateChallenge): MsgCreateChallengeAmino;
|
|
2702
|
+
fromAminoMsg(object: MsgCreateChallengeAminoMsg): MsgCreateChallenge;
|
|
2703
|
+
fromProtoMsg(message: MsgCreateChallengeProtoMsg): MsgCreateChallenge;
|
|
2704
|
+
toProto(message: MsgCreateChallenge): Uint8Array;
|
|
2705
|
+
toProtoMsg(message: MsgCreateChallenge): MsgCreateChallengeProtoMsg;
|
|
2706
|
+
};
|
|
2707
|
+
/**
|
|
2708
|
+
* MsgCreateChallengeResponse defines the MsgCreateChallengeResponse message.
|
|
2709
|
+
* @name MsgCreateChallengeResponse
|
|
2710
|
+
* @package sparkdream.rep.v1
|
|
2711
|
+
* @see proto type: sparkdream.rep.v1.MsgCreateChallengeResponse
|
|
2712
|
+
*/
|
|
2713
|
+
export declare const MsgCreateChallengeResponse: {
|
|
2714
|
+
typeUrl: string;
|
|
2715
|
+
encode(_: MsgCreateChallengeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2716
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateChallengeResponse;
|
|
2717
|
+
fromPartial(_: DeepPartial<MsgCreateChallengeResponse>): MsgCreateChallengeResponse;
|
|
2718
|
+
fromAmino(_: MsgCreateChallengeResponseAmino): MsgCreateChallengeResponse;
|
|
2719
|
+
toAmino(_: MsgCreateChallengeResponse): MsgCreateChallengeResponseAmino;
|
|
2720
|
+
fromAminoMsg(object: MsgCreateChallengeResponseAminoMsg): MsgCreateChallengeResponse;
|
|
2721
|
+
fromProtoMsg(message: MsgCreateChallengeResponseProtoMsg): MsgCreateChallengeResponse;
|
|
2722
|
+
toProto(message: MsgCreateChallengeResponse): Uint8Array;
|
|
2723
|
+
toProtoMsg(message: MsgCreateChallengeResponse): MsgCreateChallengeResponseProtoMsg;
|
|
2724
|
+
};
|
|
2725
|
+
/**
|
|
2726
|
+
* MsgRespondToChallenge defines the MsgRespondToChallenge message.
|
|
2727
|
+
* @name MsgRespondToChallenge
|
|
2728
|
+
* @package sparkdream.rep.v1
|
|
2729
|
+
* @see proto type: sparkdream.rep.v1.MsgRespondToChallenge
|
|
2730
|
+
*/
|
|
2731
|
+
export declare const MsgRespondToChallenge: {
|
|
2732
|
+
typeUrl: string;
|
|
2733
|
+
encode(message: MsgRespondToChallenge, writer?: BinaryWriter): BinaryWriter;
|
|
2734
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRespondToChallenge;
|
|
2735
|
+
fromPartial(object: DeepPartial<MsgRespondToChallenge>): MsgRespondToChallenge;
|
|
2736
|
+
fromAmino(object: MsgRespondToChallengeAmino): MsgRespondToChallenge;
|
|
2737
|
+
toAmino(message: MsgRespondToChallenge): MsgRespondToChallengeAmino;
|
|
2738
|
+
fromAminoMsg(object: MsgRespondToChallengeAminoMsg): MsgRespondToChallenge;
|
|
2739
|
+
fromProtoMsg(message: MsgRespondToChallengeProtoMsg): MsgRespondToChallenge;
|
|
2740
|
+
toProto(message: MsgRespondToChallenge): Uint8Array;
|
|
2741
|
+
toProtoMsg(message: MsgRespondToChallenge): MsgRespondToChallengeProtoMsg;
|
|
2742
|
+
};
|
|
2743
|
+
/**
|
|
2744
|
+
* MsgRespondToChallengeResponse defines the MsgRespondToChallengeResponse message.
|
|
2745
|
+
* @name MsgRespondToChallengeResponse
|
|
2746
|
+
* @package sparkdream.rep.v1
|
|
2747
|
+
* @see proto type: sparkdream.rep.v1.MsgRespondToChallengeResponse
|
|
2748
|
+
*/
|
|
2749
|
+
export declare const MsgRespondToChallengeResponse: {
|
|
2750
|
+
typeUrl: string;
|
|
2751
|
+
encode(_: MsgRespondToChallengeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2752
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRespondToChallengeResponse;
|
|
2753
|
+
fromPartial(_: DeepPartial<MsgRespondToChallengeResponse>): MsgRespondToChallengeResponse;
|
|
2754
|
+
fromAmino(_: MsgRespondToChallengeResponseAmino): MsgRespondToChallengeResponse;
|
|
2755
|
+
toAmino(_: MsgRespondToChallengeResponse): MsgRespondToChallengeResponseAmino;
|
|
2756
|
+
fromAminoMsg(object: MsgRespondToChallengeResponseAminoMsg): MsgRespondToChallengeResponse;
|
|
2757
|
+
fromProtoMsg(message: MsgRespondToChallengeResponseProtoMsg): MsgRespondToChallengeResponse;
|
|
2758
|
+
toProto(message: MsgRespondToChallengeResponse): Uint8Array;
|
|
2759
|
+
toProtoMsg(message: MsgRespondToChallengeResponse): MsgRespondToChallengeResponseProtoMsg;
|
|
2760
|
+
};
|
|
2761
|
+
/**
|
|
2762
|
+
* MsgSubmitJurorVote defines the MsgSubmitJurorVote message.
|
|
2763
|
+
* @name MsgSubmitJurorVote
|
|
2764
|
+
* @package sparkdream.rep.v1
|
|
2765
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitJurorVote
|
|
2766
|
+
*/
|
|
2767
|
+
export declare const MsgSubmitJurorVote: {
|
|
2768
|
+
typeUrl: string;
|
|
2769
|
+
encode(message: MsgSubmitJurorVote, writer?: BinaryWriter): BinaryWriter;
|
|
2770
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitJurorVote;
|
|
2771
|
+
fromPartial(object: DeepPartial<MsgSubmitJurorVote>): MsgSubmitJurorVote;
|
|
2772
|
+
fromAmino(object: MsgSubmitJurorVoteAmino): MsgSubmitJurorVote;
|
|
2773
|
+
toAmino(message: MsgSubmitJurorVote): MsgSubmitJurorVoteAmino;
|
|
2774
|
+
fromAminoMsg(object: MsgSubmitJurorVoteAminoMsg): MsgSubmitJurorVote;
|
|
2775
|
+
fromProtoMsg(message: MsgSubmitJurorVoteProtoMsg): MsgSubmitJurorVote;
|
|
2776
|
+
toProto(message: MsgSubmitJurorVote): Uint8Array;
|
|
2777
|
+
toProtoMsg(message: MsgSubmitJurorVote): MsgSubmitJurorVoteProtoMsg;
|
|
2778
|
+
};
|
|
2779
|
+
/**
|
|
2780
|
+
* MsgSubmitJurorVoteResponse defines the MsgSubmitJurorVoteResponse message.
|
|
2781
|
+
* @name MsgSubmitJurorVoteResponse
|
|
2782
|
+
* @package sparkdream.rep.v1
|
|
2783
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitJurorVoteResponse
|
|
2784
|
+
*/
|
|
2785
|
+
export declare const MsgSubmitJurorVoteResponse: {
|
|
2786
|
+
typeUrl: string;
|
|
2787
|
+
encode(_: MsgSubmitJurorVoteResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2788
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitJurorVoteResponse;
|
|
2789
|
+
fromPartial(_: DeepPartial<MsgSubmitJurorVoteResponse>): MsgSubmitJurorVoteResponse;
|
|
2790
|
+
fromAmino(_: MsgSubmitJurorVoteResponseAmino): MsgSubmitJurorVoteResponse;
|
|
2791
|
+
toAmino(_: MsgSubmitJurorVoteResponse): MsgSubmitJurorVoteResponseAmino;
|
|
2792
|
+
fromAminoMsg(object: MsgSubmitJurorVoteResponseAminoMsg): MsgSubmitJurorVoteResponse;
|
|
2793
|
+
fromProtoMsg(message: MsgSubmitJurorVoteResponseProtoMsg): MsgSubmitJurorVoteResponse;
|
|
2794
|
+
toProto(message: MsgSubmitJurorVoteResponse): Uint8Array;
|
|
2795
|
+
toProtoMsg(message: MsgSubmitJurorVoteResponse): MsgSubmitJurorVoteResponseProtoMsg;
|
|
2796
|
+
};
|
|
2797
|
+
/**
|
|
2798
|
+
* MsgSubmitExpertTestimony defines the MsgSubmitExpertTestimony message.
|
|
2799
|
+
* @name MsgSubmitExpertTestimony
|
|
2800
|
+
* @package sparkdream.rep.v1
|
|
2801
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitExpertTestimony
|
|
2802
|
+
*/
|
|
2803
|
+
export declare const MsgSubmitExpertTestimony: {
|
|
2804
|
+
typeUrl: string;
|
|
2805
|
+
encode(message: MsgSubmitExpertTestimony, writer?: BinaryWriter): BinaryWriter;
|
|
2806
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitExpertTestimony;
|
|
2807
|
+
fromPartial(object: DeepPartial<MsgSubmitExpertTestimony>): MsgSubmitExpertTestimony;
|
|
2808
|
+
fromAmino(object: MsgSubmitExpertTestimonyAmino): MsgSubmitExpertTestimony;
|
|
2809
|
+
toAmino(message: MsgSubmitExpertTestimony): MsgSubmitExpertTestimonyAmino;
|
|
2810
|
+
fromAminoMsg(object: MsgSubmitExpertTestimonyAminoMsg): MsgSubmitExpertTestimony;
|
|
2811
|
+
fromProtoMsg(message: MsgSubmitExpertTestimonyProtoMsg): MsgSubmitExpertTestimony;
|
|
2812
|
+
toProto(message: MsgSubmitExpertTestimony): Uint8Array;
|
|
2813
|
+
toProtoMsg(message: MsgSubmitExpertTestimony): MsgSubmitExpertTestimonyProtoMsg;
|
|
2814
|
+
};
|
|
2815
|
+
/**
|
|
2816
|
+
* MsgSubmitExpertTestimonyResponse defines the MsgSubmitExpertTestimonyResponse message.
|
|
2817
|
+
* @name MsgSubmitExpertTestimonyResponse
|
|
2818
|
+
* @package sparkdream.rep.v1
|
|
2819
|
+
* @see proto type: sparkdream.rep.v1.MsgSubmitExpertTestimonyResponse
|
|
2820
|
+
*/
|
|
2821
|
+
export declare const MsgSubmitExpertTestimonyResponse: {
|
|
2822
|
+
typeUrl: string;
|
|
2823
|
+
encode(_: MsgSubmitExpertTestimonyResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2824
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitExpertTestimonyResponse;
|
|
2825
|
+
fromPartial(_: DeepPartial<MsgSubmitExpertTestimonyResponse>): MsgSubmitExpertTestimonyResponse;
|
|
2826
|
+
fromAmino(_: MsgSubmitExpertTestimonyResponseAmino): MsgSubmitExpertTestimonyResponse;
|
|
2827
|
+
toAmino(_: MsgSubmitExpertTestimonyResponse): MsgSubmitExpertTestimonyResponseAmino;
|
|
2828
|
+
fromAminoMsg(object: MsgSubmitExpertTestimonyResponseAminoMsg): MsgSubmitExpertTestimonyResponse;
|
|
2829
|
+
fromProtoMsg(message: MsgSubmitExpertTestimonyResponseProtoMsg): MsgSubmitExpertTestimonyResponse;
|
|
2830
|
+
toProto(message: MsgSubmitExpertTestimonyResponse): Uint8Array;
|
|
2831
|
+
toProtoMsg(message: MsgSubmitExpertTestimonyResponse): MsgSubmitExpertTestimonyResponseProtoMsg;
|
|
2832
|
+
};
|
|
2833
|
+
/**
|
|
2834
|
+
* MsgChallengeContent creates a challenge against bonded content.
|
|
2835
|
+
* @name MsgChallengeContent
|
|
2836
|
+
* @package sparkdream.rep.v1
|
|
2837
|
+
* @see proto type: sparkdream.rep.v1.MsgChallengeContent
|
|
2838
|
+
*/
|
|
2839
|
+
export declare const MsgChallengeContent: {
|
|
2840
|
+
typeUrl: string;
|
|
2841
|
+
encode(message: MsgChallengeContent, writer?: BinaryWriter): BinaryWriter;
|
|
2842
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgChallengeContent;
|
|
2843
|
+
fromPartial(object: DeepPartial<MsgChallengeContent>): MsgChallengeContent;
|
|
2844
|
+
fromAmino(object: MsgChallengeContentAmino): MsgChallengeContent;
|
|
2845
|
+
toAmino(message: MsgChallengeContent): MsgChallengeContentAmino;
|
|
2846
|
+
fromAminoMsg(object: MsgChallengeContentAminoMsg): MsgChallengeContent;
|
|
2847
|
+
fromProtoMsg(message: MsgChallengeContentProtoMsg): MsgChallengeContent;
|
|
2848
|
+
toProto(message: MsgChallengeContent): Uint8Array;
|
|
2849
|
+
toProtoMsg(message: MsgChallengeContent): MsgChallengeContentProtoMsg;
|
|
2850
|
+
};
|
|
2851
|
+
/**
|
|
2852
|
+
* MsgChallengeContentResponse defines the response for ChallengeContent.
|
|
2853
|
+
* @name MsgChallengeContentResponse
|
|
2854
|
+
* @package sparkdream.rep.v1
|
|
2855
|
+
* @see proto type: sparkdream.rep.v1.MsgChallengeContentResponse
|
|
2856
|
+
*/
|
|
2857
|
+
export declare const MsgChallengeContentResponse: {
|
|
2858
|
+
typeUrl: string;
|
|
2859
|
+
encode(message: MsgChallengeContentResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2860
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgChallengeContentResponse;
|
|
2861
|
+
fromPartial(object: DeepPartial<MsgChallengeContentResponse>): MsgChallengeContentResponse;
|
|
2862
|
+
fromAmino(object: MsgChallengeContentResponseAmino): MsgChallengeContentResponse;
|
|
2863
|
+
toAmino(message: MsgChallengeContentResponse): MsgChallengeContentResponseAmino;
|
|
2864
|
+
fromAminoMsg(object: MsgChallengeContentResponseAminoMsg): MsgChallengeContentResponse;
|
|
2865
|
+
fromProtoMsg(message: MsgChallengeContentResponseProtoMsg): MsgChallengeContentResponse;
|
|
2866
|
+
toProto(message: MsgChallengeContentResponse): Uint8Array;
|
|
2867
|
+
toProtoMsg(message: MsgChallengeContentResponse): MsgChallengeContentResponseProtoMsg;
|
|
2868
|
+
};
|
|
2869
|
+
/**
|
|
2870
|
+
* MsgRespondToContentChallenge allows the content author to respond to a challenge.
|
|
2871
|
+
* @name MsgRespondToContentChallenge
|
|
2872
|
+
* @package sparkdream.rep.v1
|
|
2873
|
+
* @see proto type: sparkdream.rep.v1.MsgRespondToContentChallenge
|
|
2874
|
+
*/
|
|
2875
|
+
export declare const MsgRespondToContentChallenge: {
|
|
2876
|
+
typeUrl: string;
|
|
2877
|
+
encode(message: MsgRespondToContentChallenge, writer?: BinaryWriter): BinaryWriter;
|
|
2878
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRespondToContentChallenge;
|
|
2879
|
+
fromPartial(object: DeepPartial<MsgRespondToContentChallenge>): MsgRespondToContentChallenge;
|
|
2880
|
+
fromAmino(object: MsgRespondToContentChallengeAmino): MsgRespondToContentChallenge;
|
|
2881
|
+
toAmino(message: MsgRespondToContentChallenge): MsgRespondToContentChallengeAmino;
|
|
2882
|
+
fromAminoMsg(object: MsgRespondToContentChallengeAminoMsg): MsgRespondToContentChallenge;
|
|
2883
|
+
fromProtoMsg(message: MsgRespondToContentChallengeProtoMsg): MsgRespondToContentChallenge;
|
|
2884
|
+
toProto(message: MsgRespondToContentChallenge): Uint8Array;
|
|
2885
|
+
toProtoMsg(message: MsgRespondToContentChallenge): MsgRespondToContentChallengeProtoMsg;
|
|
2886
|
+
};
|
|
2887
|
+
/**
|
|
2888
|
+
* MsgRespondToContentChallengeResponse defines the response for RespondToContentChallenge.
|
|
2889
|
+
* @name MsgRespondToContentChallengeResponse
|
|
2890
|
+
* @package sparkdream.rep.v1
|
|
2891
|
+
* @see proto type: sparkdream.rep.v1.MsgRespondToContentChallengeResponse
|
|
2892
|
+
*/
|
|
2893
|
+
export declare const MsgRespondToContentChallengeResponse: {
|
|
2894
|
+
typeUrl: string;
|
|
2895
|
+
encode(_: MsgRespondToContentChallengeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2896
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRespondToContentChallengeResponse;
|
|
2897
|
+
fromPartial(_: DeepPartial<MsgRespondToContentChallengeResponse>): MsgRespondToContentChallengeResponse;
|
|
2898
|
+
fromAmino(_: MsgRespondToContentChallengeResponseAmino): MsgRespondToContentChallengeResponse;
|
|
2899
|
+
toAmino(_: MsgRespondToContentChallengeResponse): MsgRespondToContentChallengeResponseAmino;
|
|
2900
|
+
fromAminoMsg(object: MsgRespondToContentChallengeResponseAminoMsg): MsgRespondToContentChallengeResponse;
|
|
2901
|
+
fromProtoMsg(message: MsgRespondToContentChallengeResponseProtoMsg): MsgRespondToContentChallengeResponse;
|
|
2902
|
+
toProto(message: MsgRespondToContentChallengeResponse): Uint8Array;
|
|
2903
|
+
toProtoMsg(message: MsgRespondToContentChallengeResponse): MsgRespondToContentChallengeResponseProtoMsg;
|
|
2904
|
+
};
|
|
2905
|
+
/**
|
|
2906
|
+
* MsgRegisterZkPublicKey defines the MsgRegisterZkPublicKey message.
|
|
2907
|
+
* @name MsgRegisterZkPublicKey
|
|
2908
|
+
* @package sparkdream.rep.v1
|
|
2909
|
+
* @see proto type: sparkdream.rep.v1.MsgRegisterZkPublicKey
|
|
2910
|
+
*/
|
|
2911
|
+
export declare const MsgRegisterZkPublicKey: {
|
|
2912
|
+
typeUrl: string;
|
|
2913
|
+
encode(message: MsgRegisterZkPublicKey, writer?: BinaryWriter): BinaryWriter;
|
|
2914
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRegisterZkPublicKey;
|
|
2915
|
+
fromPartial(object: DeepPartial<MsgRegisterZkPublicKey>): MsgRegisterZkPublicKey;
|
|
2916
|
+
fromAmino(object: MsgRegisterZkPublicKeyAmino): MsgRegisterZkPublicKey;
|
|
2917
|
+
toAmino(message: MsgRegisterZkPublicKey): MsgRegisterZkPublicKeyAmino;
|
|
2918
|
+
fromAminoMsg(object: MsgRegisterZkPublicKeyAminoMsg): MsgRegisterZkPublicKey;
|
|
2919
|
+
fromProtoMsg(message: MsgRegisterZkPublicKeyProtoMsg): MsgRegisterZkPublicKey;
|
|
2920
|
+
toProto(message: MsgRegisterZkPublicKey): Uint8Array;
|
|
2921
|
+
toProtoMsg(message: MsgRegisterZkPublicKey): MsgRegisterZkPublicKeyProtoMsg;
|
|
2922
|
+
};
|
|
2923
|
+
/**
|
|
2924
|
+
* MsgRegisterZkPublicKeyResponse defines the MsgRegisterZkPublicKeyResponse message.
|
|
2925
|
+
* @name MsgRegisterZkPublicKeyResponse
|
|
2926
|
+
* @package sparkdream.rep.v1
|
|
2927
|
+
* @see proto type: sparkdream.rep.v1.MsgRegisterZkPublicKeyResponse
|
|
2928
|
+
*/
|
|
2929
|
+
export declare const MsgRegisterZkPublicKeyResponse: {
|
|
2930
|
+
typeUrl: string;
|
|
2931
|
+
encode(_: MsgRegisterZkPublicKeyResponse, writer?: BinaryWriter): BinaryWriter;
|
|
2932
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRegisterZkPublicKeyResponse;
|
|
2933
|
+
fromPartial(_: DeepPartial<MsgRegisterZkPublicKeyResponse>): MsgRegisterZkPublicKeyResponse;
|
|
2934
|
+
fromAmino(_: MsgRegisterZkPublicKeyResponseAmino): MsgRegisterZkPublicKeyResponse;
|
|
2935
|
+
toAmino(_: MsgRegisterZkPublicKeyResponse): MsgRegisterZkPublicKeyResponseAmino;
|
|
2936
|
+
fromAminoMsg(object: MsgRegisterZkPublicKeyResponseAminoMsg): MsgRegisterZkPublicKeyResponse;
|
|
2937
|
+
fromProtoMsg(message: MsgRegisterZkPublicKeyResponseProtoMsg): MsgRegisterZkPublicKeyResponse;
|
|
2938
|
+
toProto(message: MsgRegisterZkPublicKeyResponse): Uint8Array;
|
|
2939
|
+
toProtoMsg(message: MsgRegisterZkPublicKeyResponse): MsgRegisterZkPublicKeyResponseProtoMsg;
|
|
2940
|
+
};
|