@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,1597 @@
|
|
|
1
|
+
//@ts-nocheck
|
|
2
|
+
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
|
+
import { Decimal } from "@interchainjs/math";
|
|
4
|
+
function createBaseParams() {
|
|
5
|
+
return {
|
|
6
|
+
epochBlocks: BigInt(0),
|
|
7
|
+
seasonDurationEpochs: BigInt(0),
|
|
8
|
+
seasonTransitionEpochs: BigInt(0),
|
|
9
|
+
xpVoteCast: BigInt(0),
|
|
10
|
+
xpProposalCreated: BigInt(0),
|
|
11
|
+
xpForumReplyReceived: BigInt(0),
|
|
12
|
+
xpForumMarkedHelpful: BigInt(0),
|
|
13
|
+
xpInviteeFirstInitiative: BigInt(0),
|
|
14
|
+
xpInviteeEstablished: BigInt(0),
|
|
15
|
+
maxVoteXpPerEpoch: 0,
|
|
16
|
+
maxForumXpPerEpoch: BigInt(0),
|
|
17
|
+
maxXpPerEpoch: BigInt(0),
|
|
18
|
+
levelThresholds: [],
|
|
19
|
+
baselineReputation: "",
|
|
20
|
+
minGuildMembers: 0,
|
|
21
|
+
maxGuildMembers: 0,
|
|
22
|
+
maxGuildOfficers: 0,
|
|
23
|
+
guildCreationCost: "",
|
|
24
|
+
guildHopCooldownEpochs: BigInt(0),
|
|
25
|
+
maxGuildsPerSeason: 0,
|
|
26
|
+
minGuildAgeEpochs: BigInt(0),
|
|
27
|
+
maxPendingInvites: 0,
|
|
28
|
+
displayNameMinLength: 0,
|
|
29
|
+
displayNameMaxLength: 0,
|
|
30
|
+
displayNameChangeCooldownEpochs: BigInt(0),
|
|
31
|
+
maxTransitionEpochs: BigInt(0),
|
|
32
|
+
transitionBatchSize: 0,
|
|
33
|
+
maxSeasonExtensions: 0,
|
|
34
|
+
maxExtensionEpochs: BigInt(0),
|
|
35
|
+
guildDescriptionMaxLength: 0,
|
|
36
|
+
guildInviteTtlEpochs: BigInt(0),
|
|
37
|
+
maxQuestObjectives: 0,
|
|
38
|
+
snapshotRetentionSeasons: 0,
|
|
39
|
+
epochTrackerRetentionEpochs: 0,
|
|
40
|
+
voteXpRecordRetentionSeasons: 0,
|
|
41
|
+
forumCooldownRetentionEpochs: 0,
|
|
42
|
+
forumXpMinAccountAgeEpochs: BigInt(0),
|
|
43
|
+
forumXpReciprocalCooldownEpochs: BigInt(0),
|
|
44
|
+
forumXpSelfReplyCooldownEpochs: BigInt(0),
|
|
45
|
+
transitionGracePeriod: 0,
|
|
46
|
+
maxQuestXpReward: BigInt(0),
|
|
47
|
+
usernameMinLength: 0,
|
|
48
|
+
usernameMaxLength: 0,
|
|
49
|
+
usernameChangeCooldownEpochs: BigInt(0),
|
|
50
|
+
usernameCostDream: "",
|
|
51
|
+
transitionMaxRetries: 0,
|
|
52
|
+
maxActiveQuestsPerMember: 0,
|
|
53
|
+
displayNameReportStakeDream: "",
|
|
54
|
+
maxDisplayableTitles: 0,
|
|
55
|
+
inviteCleanupIntervalBlocks: 0,
|
|
56
|
+
inviteCleanupBatchSize: 0,
|
|
57
|
+
maxObjectiveDescriptionLength: 0,
|
|
58
|
+
displayNameAppealStakeDream: "",
|
|
59
|
+
displayNameAppealPeriodBlocks: BigInt(0),
|
|
60
|
+
maxArchivedTitles: 0,
|
|
61
|
+
nominationWindowEpochs: BigInt(0),
|
|
62
|
+
maxNominationsPerMember: BigInt(0),
|
|
63
|
+
retroRewardMaxRecipients: BigInt(0),
|
|
64
|
+
retroRewardBudgetPerSeason: "",
|
|
65
|
+
retroRewardMinConviction: "",
|
|
66
|
+
nominationConvictionHalfLifeEpochs: BigInt(0),
|
|
67
|
+
nominationRationaleMaxLength: 0,
|
|
68
|
+
nominationMinTrustLevel: 0,
|
|
69
|
+
nominationStakeMinTrustLevel: 0,
|
|
70
|
+
nominationMinStake: ""
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* Params defines the parameters for the module.
|
|
75
|
+
* @name Params
|
|
76
|
+
* @package sparkdream.season.v1
|
|
77
|
+
* @see proto type: sparkdream.season.v1.Params
|
|
78
|
+
*/
|
|
79
|
+
export const Params = {
|
|
80
|
+
typeUrl: "/sparkdream.season.v1.Params",
|
|
81
|
+
aminoType: "sparkdream/x/season/Params",
|
|
82
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
83
|
+
if (message.epochBlocks !== BigInt(0)) {
|
|
84
|
+
writer.uint32(8).int64(message.epochBlocks);
|
|
85
|
+
}
|
|
86
|
+
if (message.seasonDurationEpochs !== BigInt(0)) {
|
|
87
|
+
writer.uint32(16).int64(message.seasonDurationEpochs);
|
|
88
|
+
}
|
|
89
|
+
if (message.seasonTransitionEpochs !== BigInt(0)) {
|
|
90
|
+
writer.uint32(24).int64(message.seasonTransitionEpochs);
|
|
91
|
+
}
|
|
92
|
+
if (message.xpVoteCast !== BigInt(0)) {
|
|
93
|
+
writer.uint32(32).uint64(message.xpVoteCast);
|
|
94
|
+
}
|
|
95
|
+
if (message.xpProposalCreated !== BigInt(0)) {
|
|
96
|
+
writer.uint32(40).uint64(message.xpProposalCreated);
|
|
97
|
+
}
|
|
98
|
+
if (message.xpForumReplyReceived !== BigInt(0)) {
|
|
99
|
+
writer.uint32(48).uint64(message.xpForumReplyReceived);
|
|
100
|
+
}
|
|
101
|
+
if (message.xpForumMarkedHelpful !== BigInt(0)) {
|
|
102
|
+
writer.uint32(56).uint64(message.xpForumMarkedHelpful);
|
|
103
|
+
}
|
|
104
|
+
if (message.xpInviteeFirstInitiative !== BigInt(0)) {
|
|
105
|
+
writer.uint32(64).uint64(message.xpInviteeFirstInitiative);
|
|
106
|
+
}
|
|
107
|
+
if (message.xpInviteeEstablished !== BigInt(0)) {
|
|
108
|
+
writer.uint32(72).uint64(message.xpInviteeEstablished);
|
|
109
|
+
}
|
|
110
|
+
if (message.maxVoteXpPerEpoch !== 0) {
|
|
111
|
+
writer.uint32(80).uint32(message.maxVoteXpPerEpoch);
|
|
112
|
+
}
|
|
113
|
+
if (message.maxForumXpPerEpoch !== BigInt(0)) {
|
|
114
|
+
writer.uint32(88).uint64(message.maxForumXpPerEpoch);
|
|
115
|
+
}
|
|
116
|
+
if (message.maxXpPerEpoch !== BigInt(0)) {
|
|
117
|
+
writer.uint32(96).uint64(message.maxXpPerEpoch);
|
|
118
|
+
}
|
|
119
|
+
writer.uint32(106).fork();
|
|
120
|
+
for (const v of message.levelThresholds) {
|
|
121
|
+
writer.uint64(v);
|
|
122
|
+
}
|
|
123
|
+
writer.ldelim();
|
|
124
|
+
if (message.baselineReputation !== "") {
|
|
125
|
+
writer.uint32(114).string(Decimal.fromUserInput(message.baselineReputation, 18).atomics);
|
|
126
|
+
}
|
|
127
|
+
if (message.minGuildMembers !== 0) {
|
|
128
|
+
writer.uint32(120).uint32(message.minGuildMembers);
|
|
129
|
+
}
|
|
130
|
+
if (message.maxGuildMembers !== 0) {
|
|
131
|
+
writer.uint32(128).uint32(message.maxGuildMembers);
|
|
132
|
+
}
|
|
133
|
+
if (message.maxGuildOfficers !== 0) {
|
|
134
|
+
writer.uint32(136).uint32(message.maxGuildOfficers);
|
|
135
|
+
}
|
|
136
|
+
if (message.guildCreationCost !== "") {
|
|
137
|
+
writer.uint32(146).string(message.guildCreationCost);
|
|
138
|
+
}
|
|
139
|
+
if (message.guildHopCooldownEpochs !== BigInt(0)) {
|
|
140
|
+
writer.uint32(152).uint64(message.guildHopCooldownEpochs);
|
|
141
|
+
}
|
|
142
|
+
if (message.maxGuildsPerSeason !== 0) {
|
|
143
|
+
writer.uint32(160).uint32(message.maxGuildsPerSeason);
|
|
144
|
+
}
|
|
145
|
+
if (message.minGuildAgeEpochs !== BigInt(0)) {
|
|
146
|
+
writer.uint32(168).uint64(message.minGuildAgeEpochs);
|
|
147
|
+
}
|
|
148
|
+
if (message.maxPendingInvites !== 0) {
|
|
149
|
+
writer.uint32(176).uint32(message.maxPendingInvites);
|
|
150
|
+
}
|
|
151
|
+
if (message.displayNameMinLength !== 0) {
|
|
152
|
+
writer.uint32(184).uint32(message.displayNameMinLength);
|
|
153
|
+
}
|
|
154
|
+
if (message.displayNameMaxLength !== 0) {
|
|
155
|
+
writer.uint32(192).uint32(message.displayNameMaxLength);
|
|
156
|
+
}
|
|
157
|
+
if (message.displayNameChangeCooldownEpochs !== BigInt(0)) {
|
|
158
|
+
writer.uint32(200).uint64(message.displayNameChangeCooldownEpochs);
|
|
159
|
+
}
|
|
160
|
+
if (message.maxTransitionEpochs !== BigInt(0)) {
|
|
161
|
+
writer.uint32(208).uint64(message.maxTransitionEpochs);
|
|
162
|
+
}
|
|
163
|
+
if (message.transitionBatchSize !== 0) {
|
|
164
|
+
writer.uint32(216).uint32(message.transitionBatchSize);
|
|
165
|
+
}
|
|
166
|
+
if (message.maxSeasonExtensions !== 0) {
|
|
167
|
+
writer.uint32(224).uint32(message.maxSeasonExtensions);
|
|
168
|
+
}
|
|
169
|
+
if (message.maxExtensionEpochs !== BigInt(0)) {
|
|
170
|
+
writer.uint32(232).uint64(message.maxExtensionEpochs);
|
|
171
|
+
}
|
|
172
|
+
if (message.guildDescriptionMaxLength !== 0) {
|
|
173
|
+
writer.uint32(240).uint32(message.guildDescriptionMaxLength);
|
|
174
|
+
}
|
|
175
|
+
if (message.guildInviteTtlEpochs !== BigInt(0)) {
|
|
176
|
+
writer.uint32(248).uint64(message.guildInviteTtlEpochs);
|
|
177
|
+
}
|
|
178
|
+
if (message.maxQuestObjectives !== 0) {
|
|
179
|
+
writer.uint32(256).uint32(message.maxQuestObjectives);
|
|
180
|
+
}
|
|
181
|
+
if (message.snapshotRetentionSeasons !== 0) {
|
|
182
|
+
writer.uint32(264).uint32(message.snapshotRetentionSeasons);
|
|
183
|
+
}
|
|
184
|
+
if (message.epochTrackerRetentionEpochs !== 0) {
|
|
185
|
+
writer.uint32(272).uint32(message.epochTrackerRetentionEpochs);
|
|
186
|
+
}
|
|
187
|
+
if (message.voteXpRecordRetentionSeasons !== 0) {
|
|
188
|
+
writer.uint32(280).uint32(message.voteXpRecordRetentionSeasons);
|
|
189
|
+
}
|
|
190
|
+
if (message.forumCooldownRetentionEpochs !== 0) {
|
|
191
|
+
writer.uint32(288).uint32(message.forumCooldownRetentionEpochs);
|
|
192
|
+
}
|
|
193
|
+
if (message.forumXpMinAccountAgeEpochs !== BigInt(0)) {
|
|
194
|
+
writer.uint32(296).uint64(message.forumXpMinAccountAgeEpochs);
|
|
195
|
+
}
|
|
196
|
+
if (message.forumXpReciprocalCooldownEpochs !== BigInt(0)) {
|
|
197
|
+
writer.uint32(304).uint64(message.forumXpReciprocalCooldownEpochs);
|
|
198
|
+
}
|
|
199
|
+
if (message.forumXpSelfReplyCooldownEpochs !== BigInt(0)) {
|
|
200
|
+
writer.uint32(312).uint64(message.forumXpSelfReplyCooldownEpochs);
|
|
201
|
+
}
|
|
202
|
+
if (message.transitionGracePeriod !== 0) {
|
|
203
|
+
writer.uint32(320).uint32(message.transitionGracePeriod);
|
|
204
|
+
}
|
|
205
|
+
if (message.maxQuestXpReward !== BigInt(0)) {
|
|
206
|
+
writer.uint32(328).uint64(message.maxQuestXpReward);
|
|
207
|
+
}
|
|
208
|
+
if (message.usernameMinLength !== 0) {
|
|
209
|
+
writer.uint32(336).uint32(message.usernameMinLength);
|
|
210
|
+
}
|
|
211
|
+
if (message.usernameMaxLength !== 0) {
|
|
212
|
+
writer.uint32(344).uint32(message.usernameMaxLength);
|
|
213
|
+
}
|
|
214
|
+
if (message.usernameChangeCooldownEpochs !== BigInt(0)) {
|
|
215
|
+
writer.uint32(352).uint64(message.usernameChangeCooldownEpochs);
|
|
216
|
+
}
|
|
217
|
+
if (message.usernameCostDream !== "") {
|
|
218
|
+
writer.uint32(362).string(message.usernameCostDream);
|
|
219
|
+
}
|
|
220
|
+
if (message.transitionMaxRetries !== 0) {
|
|
221
|
+
writer.uint32(368).uint32(message.transitionMaxRetries);
|
|
222
|
+
}
|
|
223
|
+
if (message.maxActiveQuestsPerMember !== 0) {
|
|
224
|
+
writer.uint32(376).uint32(message.maxActiveQuestsPerMember);
|
|
225
|
+
}
|
|
226
|
+
if (message.displayNameReportStakeDream !== "") {
|
|
227
|
+
writer.uint32(386).string(message.displayNameReportStakeDream);
|
|
228
|
+
}
|
|
229
|
+
if (message.maxDisplayableTitles !== 0) {
|
|
230
|
+
writer.uint32(392).uint32(message.maxDisplayableTitles);
|
|
231
|
+
}
|
|
232
|
+
if (message.inviteCleanupIntervalBlocks !== 0) {
|
|
233
|
+
writer.uint32(400).uint32(message.inviteCleanupIntervalBlocks);
|
|
234
|
+
}
|
|
235
|
+
if (message.inviteCleanupBatchSize !== 0) {
|
|
236
|
+
writer.uint32(408).uint32(message.inviteCleanupBatchSize);
|
|
237
|
+
}
|
|
238
|
+
if (message.maxObjectiveDescriptionLength !== 0) {
|
|
239
|
+
writer.uint32(416).uint32(message.maxObjectiveDescriptionLength);
|
|
240
|
+
}
|
|
241
|
+
if (message.displayNameAppealStakeDream !== "") {
|
|
242
|
+
writer.uint32(426).string(message.displayNameAppealStakeDream);
|
|
243
|
+
}
|
|
244
|
+
if (message.displayNameAppealPeriodBlocks !== BigInt(0)) {
|
|
245
|
+
writer.uint32(432).uint64(message.displayNameAppealPeriodBlocks);
|
|
246
|
+
}
|
|
247
|
+
if (message.maxArchivedTitles !== 0) {
|
|
248
|
+
writer.uint32(440).uint32(message.maxArchivedTitles);
|
|
249
|
+
}
|
|
250
|
+
if (message.nominationWindowEpochs !== BigInt(0)) {
|
|
251
|
+
writer.uint32(448).uint64(message.nominationWindowEpochs);
|
|
252
|
+
}
|
|
253
|
+
if (message.maxNominationsPerMember !== BigInt(0)) {
|
|
254
|
+
writer.uint32(456).uint64(message.maxNominationsPerMember);
|
|
255
|
+
}
|
|
256
|
+
if (message.retroRewardMaxRecipients !== BigInt(0)) {
|
|
257
|
+
writer.uint32(464).uint64(message.retroRewardMaxRecipients);
|
|
258
|
+
}
|
|
259
|
+
if (message.retroRewardBudgetPerSeason !== "") {
|
|
260
|
+
writer.uint32(474).string(Decimal.fromUserInput(message.retroRewardBudgetPerSeason, 18).atomics);
|
|
261
|
+
}
|
|
262
|
+
if (message.retroRewardMinConviction !== "") {
|
|
263
|
+
writer.uint32(482).string(Decimal.fromUserInput(message.retroRewardMinConviction, 18).atomics);
|
|
264
|
+
}
|
|
265
|
+
if (message.nominationConvictionHalfLifeEpochs !== BigInt(0)) {
|
|
266
|
+
writer.uint32(488).uint64(message.nominationConvictionHalfLifeEpochs);
|
|
267
|
+
}
|
|
268
|
+
if (message.nominationRationaleMaxLength !== 0) {
|
|
269
|
+
writer.uint32(496).uint32(message.nominationRationaleMaxLength);
|
|
270
|
+
}
|
|
271
|
+
if (message.nominationMinTrustLevel !== 0) {
|
|
272
|
+
writer.uint32(504).uint32(message.nominationMinTrustLevel);
|
|
273
|
+
}
|
|
274
|
+
if (message.nominationStakeMinTrustLevel !== 0) {
|
|
275
|
+
writer.uint32(512).uint32(message.nominationStakeMinTrustLevel);
|
|
276
|
+
}
|
|
277
|
+
if (message.nominationMinStake !== "") {
|
|
278
|
+
writer.uint32(522).string(Decimal.fromUserInput(message.nominationMinStake, 18).atomics);
|
|
279
|
+
}
|
|
280
|
+
return writer;
|
|
281
|
+
},
|
|
282
|
+
decode(input, length) {
|
|
283
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
284
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
285
|
+
const message = createBaseParams();
|
|
286
|
+
while (reader.pos < end) {
|
|
287
|
+
const tag = reader.uint32();
|
|
288
|
+
switch (tag >>> 3) {
|
|
289
|
+
case 1:
|
|
290
|
+
message.epochBlocks = reader.int64();
|
|
291
|
+
break;
|
|
292
|
+
case 2:
|
|
293
|
+
message.seasonDurationEpochs = reader.int64();
|
|
294
|
+
break;
|
|
295
|
+
case 3:
|
|
296
|
+
message.seasonTransitionEpochs = reader.int64();
|
|
297
|
+
break;
|
|
298
|
+
case 4:
|
|
299
|
+
message.xpVoteCast = reader.uint64();
|
|
300
|
+
break;
|
|
301
|
+
case 5:
|
|
302
|
+
message.xpProposalCreated = reader.uint64();
|
|
303
|
+
break;
|
|
304
|
+
case 6:
|
|
305
|
+
message.xpForumReplyReceived = reader.uint64();
|
|
306
|
+
break;
|
|
307
|
+
case 7:
|
|
308
|
+
message.xpForumMarkedHelpful = reader.uint64();
|
|
309
|
+
break;
|
|
310
|
+
case 8:
|
|
311
|
+
message.xpInviteeFirstInitiative = reader.uint64();
|
|
312
|
+
break;
|
|
313
|
+
case 9:
|
|
314
|
+
message.xpInviteeEstablished = reader.uint64();
|
|
315
|
+
break;
|
|
316
|
+
case 10:
|
|
317
|
+
message.maxVoteXpPerEpoch = reader.uint32();
|
|
318
|
+
break;
|
|
319
|
+
case 11:
|
|
320
|
+
message.maxForumXpPerEpoch = reader.uint64();
|
|
321
|
+
break;
|
|
322
|
+
case 12:
|
|
323
|
+
message.maxXpPerEpoch = reader.uint64();
|
|
324
|
+
break;
|
|
325
|
+
case 13:
|
|
326
|
+
if ((tag & 7) === 2) {
|
|
327
|
+
const end2 = reader.uint32() + reader.pos;
|
|
328
|
+
while (reader.pos < end2) {
|
|
329
|
+
message.levelThresholds.push(reader.uint64());
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
else {
|
|
333
|
+
message.levelThresholds.push(reader.uint64());
|
|
334
|
+
}
|
|
335
|
+
break;
|
|
336
|
+
case 14:
|
|
337
|
+
message.baselineReputation = Decimal.fromAtomics(reader.string(), 18).toString();
|
|
338
|
+
break;
|
|
339
|
+
case 15:
|
|
340
|
+
message.minGuildMembers = reader.uint32();
|
|
341
|
+
break;
|
|
342
|
+
case 16:
|
|
343
|
+
message.maxGuildMembers = reader.uint32();
|
|
344
|
+
break;
|
|
345
|
+
case 17:
|
|
346
|
+
message.maxGuildOfficers = reader.uint32();
|
|
347
|
+
break;
|
|
348
|
+
case 18:
|
|
349
|
+
message.guildCreationCost = reader.string();
|
|
350
|
+
break;
|
|
351
|
+
case 19:
|
|
352
|
+
message.guildHopCooldownEpochs = reader.uint64();
|
|
353
|
+
break;
|
|
354
|
+
case 20:
|
|
355
|
+
message.maxGuildsPerSeason = reader.uint32();
|
|
356
|
+
break;
|
|
357
|
+
case 21:
|
|
358
|
+
message.minGuildAgeEpochs = reader.uint64();
|
|
359
|
+
break;
|
|
360
|
+
case 22:
|
|
361
|
+
message.maxPendingInvites = reader.uint32();
|
|
362
|
+
break;
|
|
363
|
+
case 23:
|
|
364
|
+
message.displayNameMinLength = reader.uint32();
|
|
365
|
+
break;
|
|
366
|
+
case 24:
|
|
367
|
+
message.displayNameMaxLength = reader.uint32();
|
|
368
|
+
break;
|
|
369
|
+
case 25:
|
|
370
|
+
message.displayNameChangeCooldownEpochs = reader.uint64();
|
|
371
|
+
break;
|
|
372
|
+
case 26:
|
|
373
|
+
message.maxTransitionEpochs = reader.uint64();
|
|
374
|
+
break;
|
|
375
|
+
case 27:
|
|
376
|
+
message.transitionBatchSize = reader.uint32();
|
|
377
|
+
break;
|
|
378
|
+
case 28:
|
|
379
|
+
message.maxSeasonExtensions = reader.uint32();
|
|
380
|
+
break;
|
|
381
|
+
case 29:
|
|
382
|
+
message.maxExtensionEpochs = reader.uint64();
|
|
383
|
+
break;
|
|
384
|
+
case 30:
|
|
385
|
+
message.guildDescriptionMaxLength = reader.uint32();
|
|
386
|
+
break;
|
|
387
|
+
case 31:
|
|
388
|
+
message.guildInviteTtlEpochs = reader.uint64();
|
|
389
|
+
break;
|
|
390
|
+
case 32:
|
|
391
|
+
message.maxQuestObjectives = reader.uint32();
|
|
392
|
+
break;
|
|
393
|
+
case 33:
|
|
394
|
+
message.snapshotRetentionSeasons = reader.uint32();
|
|
395
|
+
break;
|
|
396
|
+
case 34:
|
|
397
|
+
message.epochTrackerRetentionEpochs = reader.uint32();
|
|
398
|
+
break;
|
|
399
|
+
case 35:
|
|
400
|
+
message.voteXpRecordRetentionSeasons = reader.uint32();
|
|
401
|
+
break;
|
|
402
|
+
case 36:
|
|
403
|
+
message.forumCooldownRetentionEpochs = reader.uint32();
|
|
404
|
+
break;
|
|
405
|
+
case 37:
|
|
406
|
+
message.forumXpMinAccountAgeEpochs = reader.uint64();
|
|
407
|
+
break;
|
|
408
|
+
case 38:
|
|
409
|
+
message.forumXpReciprocalCooldownEpochs = reader.uint64();
|
|
410
|
+
break;
|
|
411
|
+
case 39:
|
|
412
|
+
message.forumXpSelfReplyCooldownEpochs = reader.uint64();
|
|
413
|
+
break;
|
|
414
|
+
case 40:
|
|
415
|
+
message.transitionGracePeriod = reader.uint32();
|
|
416
|
+
break;
|
|
417
|
+
case 41:
|
|
418
|
+
message.maxQuestXpReward = reader.uint64();
|
|
419
|
+
break;
|
|
420
|
+
case 42:
|
|
421
|
+
message.usernameMinLength = reader.uint32();
|
|
422
|
+
break;
|
|
423
|
+
case 43:
|
|
424
|
+
message.usernameMaxLength = reader.uint32();
|
|
425
|
+
break;
|
|
426
|
+
case 44:
|
|
427
|
+
message.usernameChangeCooldownEpochs = reader.uint64();
|
|
428
|
+
break;
|
|
429
|
+
case 45:
|
|
430
|
+
message.usernameCostDream = reader.string();
|
|
431
|
+
break;
|
|
432
|
+
case 46:
|
|
433
|
+
message.transitionMaxRetries = reader.uint32();
|
|
434
|
+
break;
|
|
435
|
+
case 47:
|
|
436
|
+
message.maxActiveQuestsPerMember = reader.uint32();
|
|
437
|
+
break;
|
|
438
|
+
case 48:
|
|
439
|
+
message.displayNameReportStakeDream = reader.string();
|
|
440
|
+
break;
|
|
441
|
+
case 49:
|
|
442
|
+
message.maxDisplayableTitles = reader.uint32();
|
|
443
|
+
break;
|
|
444
|
+
case 50:
|
|
445
|
+
message.inviteCleanupIntervalBlocks = reader.uint32();
|
|
446
|
+
break;
|
|
447
|
+
case 51:
|
|
448
|
+
message.inviteCleanupBatchSize = reader.uint32();
|
|
449
|
+
break;
|
|
450
|
+
case 52:
|
|
451
|
+
message.maxObjectiveDescriptionLength = reader.uint32();
|
|
452
|
+
break;
|
|
453
|
+
case 53:
|
|
454
|
+
message.displayNameAppealStakeDream = reader.string();
|
|
455
|
+
break;
|
|
456
|
+
case 54:
|
|
457
|
+
message.displayNameAppealPeriodBlocks = reader.uint64();
|
|
458
|
+
break;
|
|
459
|
+
case 55:
|
|
460
|
+
message.maxArchivedTitles = reader.uint32();
|
|
461
|
+
break;
|
|
462
|
+
case 56:
|
|
463
|
+
message.nominationWindowEpochs = reader.uint64();
|
|
464
|
+
break;
|
|
465
|
+
case 57:
|
|
466
|
+
message.maxNominationsPerMember = reader.uint64();
|
|
467
|
+
break;
|
|
468
|
+
case 58:
|
|
469
|
+
message.retroRewardMaxRecipients = reader.uint64();
|
|
470
|
+
break;
|
|
471
|
+
case 59:
|
|
472
|
+
message.retroRewardBudgetPerSeason = Decimal.fromAtomics(reader.string(), 18).toString();
|
|
473
|
+
break;
|
|
474
|
+
case 60:
|
|
475
|
+
message.retroRewardMinConviction = Decimal.fromAtomics(reader.string(), 18).toString();
|
|
476
|
+
break;
|
|
477
|
+
case 61:
|
|
478
|
+
message.nominationConvictionHalfLifeEpochs = reader.uint64();
|
|
479
|
+
break;
|
|
480
|
+
case 62:
|
|
481
|
+
message.nominationRationaleMaxLength = reader.uint32();
|
|
482
|
+
break;
|
|
483
|
+
case 63:
|
|
484
|
+
message.nominationMinTrustLevel = reader.uint32();
|
|
485
|
+
break;
|
|
486
|
+
case 64:
|
|
487
|
+
message.nominationStakeMinTrustLevel = reader.uint32();
|
|
488
|
+
break;
|
|
489
|
+
case 65:
|
|
490
|
+
message.nominationMinStake = Decimal.fromAtomics(reader.string(), 18).toString();
|
|
491
|
+
break;
|
|
492
|
+
default:
|
|
493
|
+
reader.skipType(tag & 7);
|
|
494
|
+
break;
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
return message;
|
|
498
|
+
},
|
|
499
|
+
fromPartial(object) {
|
|
500
|
+
const message = createBaseParams();
|
|
501
|
+
message.epochBlocks = object.epochBlocks !== undefined && object.epochBlocks !== null ? BigInt(object.epochBlocks.toString()) : BigInt(0);
|
|
502
|
+
message.seasonDurationEpochs = object.seasonDurationEpochs !== undefined && object.seasonDurationEpochs !== null ? BigInt(object.seasonDurationEpochs.toString()) : BigInt(0);
|
|
503
|
+
message.seasonTransitionEpochs = object.seasonTransitionEpochs !== undefined && object.seasonTransitionEpochs !== null ? BigInt(object.seasonTransitionEpochs.toString()) : BigInt(0);
|
|
504
|
+
message.xpVoteCast = object.xpVoteCast !== undefined && object.xpVoteCast !== null ? BigInt(object.xpVoteCast.toString()) : BigInt(0);
|
|
505
|
+
message.xpProposalCreated = object.xpProposalCreated !== undefined && object.xpProposalCreated !== null ? BigInt(object.xpProposalCreated.toString()) : BigInt(0);
|
|
506
|
+
message.xpForumReplyReceived = object.xpForumReplyReceived !== undefined && object.xpForumReplyReceived !== null ? BigInt(object.xpForumReplyReceived.toString()) : BigInt(0);
|
|
507
|
+
message.xpForumMarkedHelpful = object.xpForumMarkedHelpful !== undefined && object.xpForumMarkedHelpful !== null ? BigInt(object.xpForumMarkedHelpful.toString()) : BigInt(0);
|
|
508
|
+
message.xpInviteeFirstInitiative = object.xpInviteeFirstInitiative !== undefined && object.xpInviteeFirstInitiative !== null ? BigInt(object.xpInviteeFirstInitiative.toString()) : BigInt(0);
|
|
509
|
+
message.xpInviteeEstablished = object.xpInviteeEstablished !== undefined && object.xpInviteeEstablished !== null ? BigInt(object.xpInviteeEstablished.toString()) : BigInt(0);
|
|
510
|
+
message.maxVoteXpPerEpoch = object.maxVoteXpPerEpoch ?? 0;
|
|
511
|
+
message.maxForumXpPerEpoch = object.maxForumXpPerEpoch !== undefined && object.maxForumXpPerEpoch !== null ? BigInt(object.maxForumXpPerEpoch.toString()) : BigInt(0);
|
|
512
|
+
message.maxXpPerEpoch = object.maxXpPerEpoch !== undefined && object.maxXpPerEpoch !== null ? BigInt(object.maxXpPerEpoch.toString()) : BigInt(0);
|
|
513
|
+
message.levelThresholds = object.levelThresholds?.map(e => BigInt(e.toString())) || [];
|
|
514
|
+
message.baselineReputation = object.baselineReputation ?? "";
|
|
515
|
+
message.minGuildMembers = object.minGuildMembers ?? 0;
|
|
516
|
+
message.maxGuildMembers = object.maxGuildMembers ?? 0;
|
|
517
|
+
message.maxGuildOfficers = object.maxGuildOfficers ?? 0;
|
|
518
|
+
message.guildCreationCost = object.guildCreationCost ?? "";
|
|
519
|
+
message.guildHopCooldownEpochs = object.guildHopCooldownEpochs !== undefined && object.guildHopCooldownEpochs !== null ? BigInt(object.guildHopCooldownEpochs.toString()) : BigInt(0);
|
|
520
|
+
message.maxGuildsPerSeason = object.maxGuildsPerSeason ?? 0;
|
|
521
|
+
message.minGuildAgeEpochs = object.minGuildAgeEpochs !== undefined && object.minGuildAgeEpochs !== null ? BigInt(object.minGuildAgeEpochs.toString()) : BigInt(0);
|
|
522
|
+
message.maxPendingInvites = object.maxPendingInvites ?? 0;
|
|
523
|
+
message.displayNameMinLength = object.displayNameMinLength ?? 0;
|
|
524
|
+
message.displayNameMaxLength = object.displayNameMaxLength ?? 0;
|
|
525
|
+
message.displayNameChangeCooldownEpochs = object.displayNameChangeCooldownEpochs !== undefined && object.displayNameChangeCooldownEpochs !== null ? BigInt(object.displayNameChangeCooldownEpochs.toString()) : BigInt(0);
|
|
526
|
+
message.maxTransitionEpochs = object.maxTransitionEpochs !== undefined && object.maxTransitionEpochs !== null ? BigInt(object.maxTransitionEpochs.toString()) : BigInt(0);
|
|
527
|
+
message.transitionBatchSize = object.transitionBatchSize ?? 0;
|
|
528
|
+
message.maxSeasonExtensions = object.maxSeasonExtensions ?? 0;
|
|
529
|
+
message.maxExtensionEpochs = object.maxExtensionEpochs !== undefined && object.maxExtensionEpochs !== null ? BigInt(object.maxExtensionEpochs.toString()) : BigInt(0);
|
|
530
|
+
message.guildDescriptionMaxLength = object.guildDescriptionMaxLength ?? 0;
|
|
531
|
+
message.guildInviteTtlEpochs = object.guildInviteTtlEpochs !== undefined && object.guildInviteTtlEpochs !== null ? BigInt(object.guildInviteTtlEpochs.toString()) : BigInt(0);
|
|
532
|
+
message.maxQuestObjectives = object.maxQuestObjectives ?? 0;
|
|
533
|
+
message.snapshotRetentionSeasons = object.snapshotRetentionSeasons ?? 0;
|
|
534
|
+
message.epochTrackerRetentionEpochs = object.epochTrackerRetentionEpochs ?? 0;
|
|
535
|
+
message.voteXpRecordRetentionSeasons = object.voteXpRecordRetentionSeasons ?? 0;
|
|
536
|
+
message.forumCooldownRetentionEpochs = object.forumCooldownRetentionEpochs ?? 0;
|
|
537
|
+
message.forumXpMinAccountAgeEpochs = object.forumXpMinAccountAgeEpochs !== undefined && object.forumXpMinAccountAgeEpochs !== null ? BigInt(object.forumXpMinAccountAgeEpochs.toString()) : BigInt(0);
|
|
538
|
+
message.forumXpReciprocalCooldownEpochs = object.forumXpReciprocalCooldownEpochs !== undefined && object.forumXpReciprocalCooldownEpochs !== null ? BigInt(object.forumXpReciprocalCooldownEpochs.toString()) : BigInt(0);
|
|
539
|
+
message.forumXpSelfReplyCooldownEpochs = object.forumXpSelfReplyCooldownEpochs !== undefined && object.forumXpSelfReplyCooldownEpochs !== null ? BigInt(object.forumXpSelfReplyCooldownEpochs.toString()) : BigInt(0);
|
|
540
|
+
message.transitionGracePeriod = object.transitionGracePeriod ?? 0;
|
|
541
|
+
message.maxQuestXpReward = object.maxQuestXpReward !== undefined && object.maxQuestXpReward !== null ? BigInt(object.maxQuestXpReward.toString()) : BigInt(0);
|
|
542
|
+
message.usernameMinLength = object.usernameMinLength ?? 0;
|
|
543
|
+
message.usernameMaxLength = object.usernameMaxLength ?? 0;
|
|
544
|
+
message.usernameChangeCooldownEpochs = object.usernameChangeCooldownEpochs !== undefined && object.usernameChangeCooldownEpochs !== null ? BigInt(object.usernameChangeCooldownEpochs.toString()) : BigInt(0);
|
|
545
|
+
message.usernameCostDream = object.usernameCostDream ?? "";
|
|
546
|
+
message.transitionMaxRetries = object.transitionMaxRetries ?? 0;
|
|
547
|
+
message.maxActiveQuestsPerMember = object.maxActiveQuestsPerMember ?? 0;
|
|
548
|
+
message.displayNameReportStakeDream = object.displayNameReportStakeDream ?? "";
|
|
549
|
+
message.maxDisplayableTitles = object.maxDisplayableTitles ?? 0;
|
|
550
|
+
message.inviteCleanupIntervalBlocks = object.inviteCleanupIntervalBlocks ?? 0;
|
|
551
|
+
message.inviteCleanupBatchSize = object.inviteCleanupBatchSize ?? 0;
|
|
552
|
+
message.maxObjectiveDescriptionLength = object.maxObjectiveDescriptionLength ?? 0;
|
|
553
|
+
message.displayNameAppealStakeDream = object.displayNameAppealStakeDream ?? "";
|
|
554
|
+
message.displayNameAppealPeriodBlocks = object.displayNameAppealPeriodBlocks !== undefined && object.displayNameAppealPeriodBlocks !== null ? BigInt(object.displayNameAppealPeriodBlocks.toString()) : BigInt(0);
|
|
555
|
+
message.maxArchivedTitles = object.maxArchivedTitles ?? 0;
|
|
556
|
+
message.nominationWindowEpochs = object.nominationWindowEpochs !== undefined && object.nominationWindowEpochs !== null ? BigInt(object.nominationWindowEpochs.toString()) : BigInt(0);
|
|
557
|
+
message.maxNominationsPerMember = object.maxNominationsPerMember !== undefined && object.maxNominationsPerMember !== null ? BigInt(object.maxNominationsPerMember.toString()) : BigInt(0);
|
|
558
|
+
message.retroRewardMaxRecipients = object.retroRewardMaxRecipients !== undefined && object.retroRewardMaxRecipients !== null ? BigInt(object.retroRewardMaxRecipients.toString()) : BigInt(0);
|
|
559
|
+
message.retroRewardBudgetPerSeason = object.retroRewardBudgetPerSeason ?? "";
|
|
560
|
+
message.retroRewardMinConviction = object.retroRewardMinConviction ?? "";
|
|
561
|
+
message.nominationConvictionHalfLifeEpochs = object.nominationConvictionHalfLifeEpochs !== undefined && object.nominationConvictionHalfLifeEpochs !== null ? BigInt(object.nominationConvictionHalfLifeEpochs.toString()) : BigInt(0);
|
|
562
|
+
message.nominationRationaleMaxLength = object.nominationRationaleMaxLength ?? 0;
|
|
563
|
+
message.nominationMinTrustLevel = object.nominationMinTrustLevel ?? 0;
|
|
564
|
+
message.nominationStakeMinTrustLevel = object.nominationStakeMinTrustLevel ?? 0;
|
|
565
|
+
message.nominationMinStake = object.nominationMinStake ?? "";
|
|
566
|
+
return message;
|
|
567
|
+
},
|
|
568
|
+
fromAmino(object) {
|
|
569
|
+
const message = createBaseParams();
|
|
570
|
+
if (object.epoch_blocks !== undefined && object.epoch_blocks !== null) {
|
|
571
|
+
message.epochBlocks = BigInt(object.epoch_blocks);
|
|
572
|
+
}
|
|
573
|
+
if (object.season_duration_epochs !== undefined && object.season_duration_epochs !== null) {
|
|
574
|
+
message.seasonDurationEpochs = BigInt(object.season_duration_epochs);
|
|
575
|
+
}
|
|
576
|
+
if (object.season_transition_epochs !== undefined && object.season_transition_epochs !== null) {
|
|
577
|
+
message.seasonTransitionEpochs = BigInt(object.season_transition_epochs);
|
|
578
|
+
}
|
|
579
|
+
if (object.xp_vote_cast !== undefined && object.xp_vote_cast !== null) {
|
|
580
|
+
message.xpVoteCast = BigInt(object.xp_vote_cast);
|
|
581
|
+
}
|
|
582
|
+
if (object.xp_proposal_created !== undefined && object.xp_proposal_created !== null) {
|
|
583
|
+
message.xpProposalCreated = BigInt(object.xp_proposal_created);
|
|
584
|
+
}
|
|
585
|
+
if (object.xp_forum_reply_received !== undefined && object.xp_forum_reply_received !== null) {
|
|
586
|
+
message.xpForumReplyReceived = BigInt(object.xp_forum_reply_received);
|
|
587
|
+
}
|
|
588
|
+
if (object.xp_forum_marked_helpful !== undefined && object.xp_forum_marked_helpful !== null) {
|
|
589
|
+
message.xpForumMarkedHelpful = BigInt(object.xp_forum_marked_helpful);
|
|
590
|
+
}
|
|
591
|
+
if (object.xp_invitee_first_initiative !== undefined && object.xp_invitee_first_initiative !== null) {
|
|
592
|
+
message.xpInviteeFirstInitiative = BigInt(object.xp_invitee_first_initiative);
|
|
593
|
+
}
|
|
594
|
+
if (object.xp_invitee_established !== undefined && object.xp_invitee_established !== null) {
|
|
595
|
+
message.xpInviteeEstablished = BigInt(object.xp_invitee_established);
|
|
596
|
+
}
|
|
597
|
+
if (object.max_vote_xp_per_epoch !== undefined && object.max_vote_xp_per_epoch !== null) {
|
|
598
|
+
message.maxVoteXpPerEpoch = object.max_vote_xp_per_epoch;
|
|
599
|
+
}
|
|
600
|
+
if (object.max_forum_xp_per_epoch !== undefined && object.max_forum_xp_per_epoch !== null) {
|
|
601
|
+
message.maxForumXpPerEpoch = BigInt(object.max_forum_xp_per_epoch);
|
|
602
|
+
}
|
|
603
|
+
if (object.max_xp_per_epoch !== undefined && object.max_xp_per_epoch !== null) {
|
|
604
|
+
message.maxXpPerEpoch = BigInt(object.max_xp_per_epoch);
|
|
605
|
+
}
|
|
606
|
+
message.levelThresholds = object.level_thresholds?.map(e => BigInt(e)) || [];
|
|
607
|
+
if (object.baseline_reputation !== undefined && object.baseline_reputation !== null) {
|
|
608
|
+
message.baselineReputation = object.baseline_reputation;
|
|
609
|
+
}
|
|
610
|
+
if (object.min_guild_members !== undefined && object.min_guild_members !== null) {
|
|
611
|
+
message.minGuildMembers = object.min_guild_members;
|
|
612
|
+
}
|
|
613
|
+
if (object.max_guild_members !== undefined && object.max_guild_members !== null) {
|
|
614
|
+
message.maxGuildMembers = object.max_guild_members;
|
|
615
|
+
}
|
|
616
|
+
if (object.max_guild_officers !== undefined && object.max_guild_officers !== null) {
|
|
617
|
+
message.maxGuildOfficers = object.max_guild_officers;
|
|
618
|
+
}
|
|
619
|
+
if (object.guild_creation_cost !== undefined && object.guild_creation_cost !== null) {
|
|
620
|
+
message.guildCreationCost = object.guild_creation_cost;
|
|
621
|
+
}
|
|
622
|
+
if (object.guild_hop_cooldown_epochs !== undefined && object.guild_hop_cooldown_epochs !== null) {
|
|
623
|
+
message.guildHopCooldownEpochs = BigInt(object.guild_hop_cooldown_epochs);
|
|
624
|
+
}
|
|
625
|
+
if (object.max_guilds_per_season !== undefined && object.max_guilds_per_season !== null) {
|
|
626
|
+
message.maxGuildsPerSeason = object.max_guilds_per_season;
|
|
627
|
+
}
|
|
628
|
+
if (object.min_guild_age_epochs !== undefined && object.min_guild_age_epochs !== null) {
|
|
629
|
+
message.minGuildAgeEpochs = BigInt(object.min_guild_age_epochs);
|
|
630
|
+
}
|
|
631
|
+
if (object.max_pending_invites !== undefined && object.max_pending_invites !== null) {
|
|
632
|
+
message.maxPendingInvites = object.max_pending_invites;
|
|
633
|
+
}
|
|
634
|
+
if (object.display_name_min_length !== undefined && object.display_name_min_length !== null) {
|
|
635
|
+
message.displayNameMinLength = object.display_name_min_length;
|
|
636
|
+
}
|
|
637
|
+
if (object.display_name_max_length !== undefined && object.display_name_max_length !== null) {
|
|
638
|
+
message.displayNameMaxLength = object.display_name_max_length;
|
|
639
|
+
}
|
|
640
|
+
if (object.display_name_change_cooldown_epochs !== undefined && object.display_name_change_cooldown_epochs !== null) {
|
|
641
|
+
message.displayNameChangeCooldownEpochs = BigInt(object.display_name_change_cooldown_epochs);
|
|
642
|
+
}
|
|
643
|
+
if (object.max_transition_epochs !== undefined && object.max_transition_epochs !== null) {
|
|
644
|
+
message.maxTransitionEpochs = BigInt(object.max_transition_epochs);
|
|
645
|
+
}
|
|
646
|
+
if (object.transition_batch_size !== undefined && object.transition_batch_size !== null) {
|
|
647
|
+
message.transitionBatchSize = object.transition_batch_size;
|
|
648
|
+
}
|
|
649
|
+
if (object.max_season_extensions !== undefined && object.max_season_extensions !== null) {
|
|
650
|
+
message.maxSeasonExtensions = object.max_season_extensions;
|
|
651
|
+
}
|
|
652
|
+
if (object.max_extension_epochs !== undefined && object.max_extension_epochs !== null) {
|
|
653
|
+
message.maxExtensionEpochs = BigInt(object.max_extension_epochs);
|
|
654
|
+
}
|
|
655
|
+
if (object.guild_description_max_length !== undefined && object.guild_description_max_length !== null) {
|
|
656
|
+
message.guildDescriptionMaxLength = object.guild_description_max_length;
|
|
657
|
+
}
|
|
658
|
+
if (object.guild_invite_ttl_epochs !== undefined && object.guild_invite_ttl_epochs !== null) {
|
|
659
|
+
message.guildInviteTtlEpochs = BigInt(object.guild_invite_ttl_epochs);
|
|
660
|
+
}
|
|
661
|
+
if (object.max_quest_objectives !== undefined && object.max_quest_objectives !== null) {
|
|
662
|
+
message.maxQuestObjectives = object.max_quest_objectives;
|
|
663
|
+
}
|
|
664
|
+
if (object.snapshot_retention_seasons !== undefined && object.snapshot_retention_seasons !== null) {
|
|
665
|
+
message.snapshotRetentionSeasons = object.snapshot_retention_seasons;
|
|
666
|
+
}
|
|
667
|
+
if (object.epoch_tracker_retention_epochs !== undefined && object.epoch_tracker_retention_epochs !== null) {
|
|
668
|
+
message.epochTrackerRetentionEpochs = object.epoch_tracker_retention_epochs;
|
|
669
|
+
}
|
|
670
|
+
if (object.vote_xp_record_retention_seasons !== undefined && object.vote_xp_record_retention_seasons !== null) {
|
|
671
|
+
message.voteXpRecordRetentionSeasons = object.vote_xp_record_retention_seasons;
|
|
672
|
+
}
|
|
673
|
+
if (object.forum_cooldown_retention_epochs !== undefined && object.forum_cooldown_retention_epochs !== null) {
|
|
674
|
+
message.forumCooldownRetentionEpochs = object.forum_cooldown_retention_epochs;
|
|
675
|
+
}
|
|
676
|
+
if (object.forum_xp_min_account_age_epochs !== undefined && object.forum_xp_min_account_age_epochs !== null) {
|
|
677
|
+
message.forumXpMinAccountAgeEpochs = BigInt(object.forum_xp_min_account_age_epochs);
|
|
678
|
+
}
|
|
679
|
+
if (object.forum_xp_reciprocal_cooldown_epochs !== undefined && object.forum_xp_reciprocal_cooldown_epochs !== null) {
|
|
680
|
+
message.forumXpReciprocalCooldownEpochs = BigInt(object.forum_xp_reciprocal_cooldown_epochs);
|
|
681
|
+
}
|
|
682
|
+
if (object.forum_xp_self_reply_cooldown_epochs !== undefined && object.forum_xp_self_reply_cooldown_epochs !== null) {
|
|
683
|
+
message.forumXpSelfReplyCooldownEpochs = BigInt(object.forum_xp_self_reply_cooldown_epochs);
|
|
684
|
+
}
|
|
685
|
+
if (object.transition_grace_period !== undefined && object.transition_grace_period !== null) {
|
|
686
|
+
message.transitionGracePeriod = object.transition_grace_period;
|
|
687
|
+
}
|
|
688
|
+
if (object.max_quest_xp_reward !== undefined && object.max_quest_xp_reward !== null) {
|
|
689
|
+
message.maxQuestXpReward = BigInt(object.max_quest_xp_reward);
|
|
690
|
+
}
|
|
691
|
+
if (object.username_min_length !== undefined && object.username_min_length !== null) {
|
|
692
|
+
message.usernameMinLength = object.username_min_length;
|
|
693
|
+
}
|
|
694
|
+
if (object.username_max_length !== undefined && object.username_max_length !== null) {
|
|
695
|
+
message.usernameMaxLength = object.username_max_length;
|
|
696
|
+
}
|
|
697
|
+
if (object.username_change_cooldown_epochs !== undefined && object.username_change_cooldown_epochs !== null) {
|
|
698
|
+
message.usernameChangeCooldownEpochs = BigInt(object.username_change_cooldown_epochs);
|
|
699
|
+
}
|
|
700
|
+
if (object.username_cost_dream !== undefined && object.username_cost_dream !== null) {
|
|
701
|
+
message.usernameCostDream = object.username_cost_dream;
|
|
702
|
+
}
|
|
703
|
+
if (object.transition_max_retries !== undefined && object.transition_max_retries !== null) {
|
|
704
|
+
message.transitionMaxRetries = object.transition_max_retries;
|
|
705
|
+
}
|
|
706
|
+
if (object.max_active_quests_per_member !== undefined && object.max_active_quests_per_member !== null) {
|
|
707
|
+
message.maxActiveQuestsPerMember = object.max_active_quests_per_member;
|
|
708
|
+
}
|
|
709
|
+
if (object.display_name_report_stake_dream !== undefined && object.display_name_report_stake_dream !== null) {
|
|
710
|
+
message.displayNameReportStakeDream = object.display_name_report_stake_dream;
|
|
711
|
+
}
|
|
712
|
+
if (object.max_displayable_titles !== undefined && object.max_displayable_titles !== null) {
|
|
713
|
+
message.maxDisplayableTitles = object.max_displayable_titles;
|
|
714
|
+
}
|
|
715
|
+
if (object.invite_cleanup_interval_blocks !== undefined && object.invite_cleanup_interval_blocks !== null) {
|
|
716
|
+
message.inviteCleanupIntervalBlocks = object.invite_cleanup_interval_blocks;
|
|
717
|
+
}
|
|
718
|
+
if (object.invite_cleanup_batch_size !== undefined && object.invite_cleanup_batch_size !== null) {
|
|
719
|
+
message.inviteCleanupBatchSize = object.invite_cleanup_batch_size;
|
|
720
|
+
}
|
|
721
|
+
if (object.max_objective_description_length !== undefined && object.max_objective_description_length !== null) {
|
|
722
|
+
message.maxObjectiveDescriptionLength = object.max_objective_description_length;
|
|
723
|
+
}
|
|
724
|
+
if (object.display_name_appeal_stake_dream !== undefined && object.display_name_appeal_stake_dream !== null) {
|
|
725
|
+
message.displayNameAppealStakeDream = object.display_name_appeal_stake_dream;
|
|
726
|
+
}
|
|
727
|
+
if (object.display_name_appeal_period_blocks !== undefined && object.display_name_appeal_period_blocks !== null) {
|
|
728
|
+
message.displayNameAppealPeriodBlocks = BigInt(object.display_name_appeal_period_blocks);
|
|
729
|
+
}
|
|
730
|
+
if (object.max_archived_titles !== undefined && object.max_archived_titles !== null) {
|
|
731
|
+
message.maxArchivedTitles = object.max_archived_titles;
|
|
732
|
+
}
|
|
733
|
+
if (object.nomination_window_epochs !== undefined && object.nomination_window_epochs !== null) {
|
|
734
|
+
message.nominationWindowEpochs = BigInt(object.nomination_window_epochs);
|
|
735
|
+
}
|
|
736
|
+
if (object.max_nominations_per_member !== undefined && object.max_nominations_per_member !== null) {
|
|
737
|
+
message.maxNominationsPerMember = BigInt(object.max_nominations_per_member);
|
|
738
|
+
}
|
|
739
|
+
if (object.retro_reward_max_recipients !== undefined && object.retro_reward_max_recipients !== null) {
|
|
740
|
+
message.retroRewardMaxRecipients = BigInt(object.retro_reward_max_recipients);
|
|
741
|
+
}
|
|
742
|
+
if (object.retro_reward_budget_per_season !== undefined && object.retro_reward_budget_per_season !== null) {
|
|
743
|
+
message.retroRewardBudgetPerSeason = object.retro_reward_budget_per_season;
|
|
744
|
+
}
|
|
745
|
+
if (object.retro_reward_min_conviction !== undefined && object.retro_reward_min_conviction !== null) {
|
|
746
|
+
message.retroRewardMinConviction = object.retro_reward_min_conviction;
|
|
747
|
+
}
|
|
748
|
+
if (object.nomination_conviction_half_life_epochs !== undefined && object.nomination_conviction_half_life_epochs !== null) {
|
|
749
|
+
message.nominationConvictionHalfLifeEpochs = BigInt(object.nomination_conviction_half_life_epochs);
|
|
750
|
+
}
|
|
751
|
+
if (object.nomination_rationale_max_length !== undefined && object.nomination_rationale_max_length !== null) {
|
|
752
|
+
message.nominationRationaleMaxLength = object.nomination_rationale_max_length;
|
|
753
|
+
}
|
|
754
|
+
if (object.nomination_min_trust_level !== undefined && object.nomination_min_trust_level !== null) {
|
|
755
|
+
message.nominationMinTrustLevel = object.nomination_min_trust_level;
|
|
756
|
+
}
|
|
757
|
+
if (object.nomination_stake_min_trust_level !== undefined && object.nomination_stake_min_trust_level !== null) {
|
|
758
|
+
message.nominationStakeMinTrustLevel = object.nomination_stake_min_trust_level;
|
|
759
|
+
}
|
|
760
|
+
if (object.nomination_min_stake !== undefined && object.nomination_min_stake !== null) {
|
|
761
|
+
message.nominationMinStake = object.nomination_min_stake;
|
|
762
|
+
}
|
|
763
|
+
return message;
|
|
764
|
+
},
|
|
765
|
+
toAmino(message) {
|
|
766
|
+
const obj = {};
|
|
767
|
+
obj.epoch_blocks = message.epochBlocks !== BigInt(0) ? message.epochBlocks?.toString() : undefined;
|
|
768
|
+
obj.season_duration_epochs = message.seasonDurationEpochs !== BigInt(0) ? message.seasonDurationEpochs?.toString() : undefined;
|
|
769
|
+
obj.season_transition_epochs = message.seasonTransitionEpochs !== BigInt(0) ? message.seasonTransitionEpochs?.toString() : undefined;
|
|
770
|
+
obj.xp_vote_cast = message.xpVoteCast !== BigInt(0) ? message.xpVoteCast?.toString() : undefined;
|
|
771
|
+
obj.xp_proposal_created = message.xpProposalCreated !== BigInt(0) ? message.xpProposalCreated?.toString() : undefined;
|
|
772
|
+
obj.xp_forum_reply_received = message.xpForumReplyReceived !== BigInt(0) ? message.xpForumReplyReceived?.toString() : undefined;
|
|
773
|
+
obj.xp_forum_marked_helpful = message.xpForumMarkedHelpful !== BigInt(0) ? message.xpForumMarkedHelpful?.toString() : undefined;
|
|
774
|
+
obj.xp_invitee_first_initiative = message.xpInviteeFirstInitiative !== BigInt(0) ? message.xpInviteeFirstInitiative?.toString() : undefined;
|
|
775
|
+
obj.xp_invitee_established = message.xpInviteeEstablished !== BigInt(0) ? message.xpInviteeEstablished?.toString() : undefined;
|
|
776
|
+
obj.max_vote_xp_per_epoch = message.maxVoteXpPerEpoch === 0 ? undefined : message.maxVoteXpPerEpoch;
|
|
777
|
+
obj.max_forum_xp_per_epoch = message.maxForumXpPerEpoch !== BigInt(0) ? message.maxForumXpPerEpoch?.toString() : undefined;
|
|
778
|
+
obj.max_xp_per_epoch = message.maxXpPerEpoch !== BigInt(0) ? message.maxXpPerEpoch?.toString() : undefined;
|
|
779
|
+
if (message.levelThresholds) {
|
|
780
|
+
obj.level_thresholds = message.levelThresholds.map(e => e.toString());
|
|
781
|
+
}
|
|
782
|
+
else {
|
|
783
|
+
obj.level_thresholds = message.levelThresholds;
|
|
784
|
+
}
|
|
785
|
+
obj.baseline_reputation = message.baselineReputation === "" ? undefined : message.baselineReputation;
|
|
786
|
+
obj.min_guild_members = message.minGuildMembers === 0 ? undefined : message.minGuildMembers;
|
|
787
|
+
obj.max_guild_members = message.maxGuildMembers === 0 ? undefined : message.maxGuildMembers;
|
|
788
|
+
obj.max_guild_officers = message.maxGuildOfficers === 0 ? undefined : message.maxGuildOfficers;
|
|
789
|
+
obj.guild_creation_cost = message.guildCreationCost === "" ? undefined : message.guildCreationCost;
|
|
790
|
+
obj.guild_hop_cooldown_epochs = message.guildHopCooldownEpochs !== BigInt(0) ? message.guildHopCooldownEpochs?.toString() : undefined;
|
|
791
|
+
obj.max_guilds_per_season = message.maxGuildsPerSeason === 0 ? undefined : message.maxGuildsPerSeason;
|
|
792
|
+
obj.min_guild_age_epochs = message.minGuildAgeEpochs !== BigInt(0) ? message.minGuildAgeEpochs?.toString() : undefined;
|
|
793
|
+
obj.max_pending_invites = message.maxPendingInvites === 0 ? undefined : message.maxPendingInvites;
|
|
794
|
+
obj.display_name_min_length = message.displayNameMinLength === 0 ? undefined : message.displayNameMinLength;
|
|
795
|
+
obj.display_name_max_length = message.displayNameMaxLength === 0 ? undefined : message.displayNameMaxLength;
|
|
796
|
+
obj.display_name_change_cooldown_epochs = message.displayNameChangeCooldownEpochs !== BigInt(0) ? message.displayNameChangeCooldownEpochs?.toString() : undefined;
|
|
797
|
+
obj.max_transition_epochs = message.maxTransitionEpochs !== BigInt(0) ? message.maxTransitionEpochs?.toString() : undefined;
|
|
798
|
+
obj.transition_batch_size = message.transitionBatchSize === 0 ? undefined : message.transitionBatchSize;
|
|
799
|
+
obj.max_season_extensions = message.maxSeasonExtensions === 0 ? undefined : message.maxSeasonExtensions;
|
|
800
|
+
obj.max_extension_epochs = message.maxExtensionEpochs !== BigInt(0) ? message.maxExtensionEpochs?.toString() : undefined;
|
|
801
|
+
obj.guild_description_max_length = message.guildDescriptionMaxLength === 0 ? undefined : message.guildDescriptionMaxLength;
|
|
802
|
+
obj.guild_invite_ttl_epochs = message.guildInviteTtlEpochs !== BigInt(0) ? message.guildInviteTtlEpochs?.toString() : undefined;
|
|
803
|
+
obj.max_quest_objectives = message.maxQuestObjectives === 0 ? undefined : message.maxQuestObjectives;
|
|
804
|
+
obj.snapshot_retention_seasons = message.snapshotRetentionSeasons === 0 ? undefined : message.snapshotRetentionSeasons;
|
|
805
|
+
obj.epoch_tracker_retention_epochs = message.epochTrackerRetentionEpochs === 0 ? undefined : message.epochTrackerRetentionEpochs;
|
|
806
|
+
obj.vote_xp_record_retention_seasons = message.voteXpRecordRetentionSeasons === 0 ? undefined : message.voteXpRecordRetentionSeasons;
|
|
807
|
+
obj.forum_cooldown_retention_epochs = message.forumCooldownRetentionEpochs === 0 ? undefined : message.forumCooldownRetentionEpochs;
|
|
808
|
+
obj.forum_xp_min_account_age_epochs = message.forumXpMinAccountAgeEpochs !== BigInt(0) ? message.forumXpMinAccountAgeEpochs?.toString() : undefined;
|
|
809
|
+
obj.forum_xp_reciprocal_cooldown_epochs = message.forumXpReciprocalCooldownEpochs !== BigInt(0) ? message.forumXpReciprocalCooldownEpochs?.toString() : undefined;
|
|
810
|
+
obj.forum_xp_self_reply_cooldown_epochs = message.forumXpSelfReplyCooldownEpochs !== BigInt(0) ? message.forumXpSelfReplyCooldownEpochs?.toString() : undefined;
|
|
811
|
+
obj.transition_grace_period = message.transitionGracePeriod === 0 ? undefined : message.transitionGracePeriod;
|
|
812
|
+
obj.max_quest_xp_reward = message.maxQuestXpReward !== BigInt(0) ? message.maxQuestXpReward?.toString() : undefined;
|
|
813
|
+
obj.username_min_length = message.usernameMinLength === 0 ? undefined : message.usernameMinLength;
|
|
814
|
+
obj.username_max_length = message.usernameMaxLength === 0 ? undefined : message.usernameMaxLength;
|
|
815
|
+
obj.username_change_cooldown_epochs = message.usernameChangeCooldownEpochs !== BigInt(0) ? message.usernameChangeCooldownEpochs?.toString() : undefined;
|
|
816
|
+
obj.username_cost_dream = message.usernameCostDream === "" ? undefined : message.usernameCostDream;
|
|
817
|
+
obj.transition_max_retries = message.transitionMaxRetries === 0 ? undefined : message.transitionMaxRetries;
|
|
818
|
+
obj.max_active_quests_per_member = message.maxActiveQuestsPerMember === 0 ? undefined : message.maxActiveQuestsPerMember;
|
|
819
|
+
obj.display_name_report_stake_dream = message.displayNameReportStakeDream === "" ? undefined : message.displayNameReportStakeDream;
|
|
820
|
+
obj.max_displayable_titles = message.maxDisplayableTitles === 0 ? undefined : message.maxDisplayableTitles;
|
|
821
|
+
obj.invite_cleanup_interval_blocks = message.inviteCleanupIntervalBlocks === 0 ? undefined : message.inviteCleanupIntervalBlocks;
|
|
822
|
+
obj.invite_cleanup_batch_size = message.inviteCleanupBatchSize === 0 ? undefined : message.inviteCleanupBatchSize;
|
|
823
|
+
obj.max_objective_description_length = message.maxObjectiveDescriptionLength === 0 ? undefined : message.maxObjectiveDescriptionLength;
|
|
824
|
+
obj.display_name_appeal_stake_dream = message.displayNameAppealStakeDream === "" ? undefined : message.displayNameAppealStakeDream;
|
|
825
|
+
obj.display_name_appeal_period_blocks = message.displayNameAppealPeriodBlocks !== BigInt(0) ? message.displayNameAppealPeriodBlocks?.toString() : undefined;
|
|
826
|
+
obj.max_archived_titles = message.maxArchivedTitles === 0 ? undefined : message.maxArchivedTitles;
|
|
827
|
+
obj.nomination_window_epochs = message.nominationWindowEpochs !== BigInt(0) ? message.nominationWindowEpochs?.toString() : undefined;
|
|
828
|
+
obj.max_nominations_per_member = message.maxNominationsPerMember !== BigInt(0) ? message.maxNominationsPerMember?.toString() : undefined;
|
|
829
|
+
obj.retro_reward_max_recipients = message.retroRewardMaxRecipients !== BigInt(0) ? message.retroRewardMaxRecipients?.toString() : undefined;
|
|
830
|
+
obj.retro_reward_budget_per_season = message.retroRewardBudgetPerSeason === "" ? undefined : message.retroRewardBudgetPerSeason;
|
|
831
|
+
obj.retro_reward_min_conviction = message.retroRewardMinConviction === "" ? undefined : message.retroRewardMinConviction;
|
|
832
|
+
obj.nomination_conviction_half_life_epochs = message.nominationConvictionHalfLifeEpochs !== BigInt(0) ? message.nominationConvictionHalfLifeEpochs?.toString() : undefined;
|
|
833
|
+
obj.nomination_rationale_max_length = message.nominationRationaleMaxLength === 0 ? undefined : message.nominationRationaleMaxLength;
|
|
834
|
+
obj.nomination_min_trust_level = message.nominationMinTrustLevel === 0 ? undefined : message.nominationMinTrustLevel;
|
|
835
|
+
obj.nomination_stake_min_trust_level = message.nominationStakeMinTrustLevel === 0 ? undefined : message.nominationStakeMinTrustLevel;
|
|
836
|
+
obj.nomination_min_stake = message.nominationMinStake === "" ? undefined : message.nominationMinStake;
|
|
837
|
+
return obj;
|
|
838
|
+
},
|
|
839
|
+
fromAminoMsg(object) {
|
|
840
|
+
return Params.fromAmino(object.value);
|
|
841
|
+
},
|
|
842
|
+
toAminoMsg(message) {
|
|
843
|
+
return {
|
|
844
|
+
type: "sparkdream/x/season/Params",
|
|
845
|
+
value: Params.toAmino(message)
|
|
846
|
+
};
|
|
847
|
+
},
|
|
848
|
+
fromProtoMsg(message) {
|
|
849
|
+
return Params.decode(message.value);
|
|
850
|
+
},
|
|
851
|
+
toProto(message) {
|
|
852
|
+
return Params.encode(message).finish();
|
|
853
|
+
},
|
|
854
|
+
toProtoMsg(message) {
|
|
855
|
+
return {
|
|
856
|
+
typeUrl: "/sparkdream.season.v1.Params",
|
|
857
|
+
value: Params.encode(message).finish()
|
|
858
|
+
};
|
|
859
|
+
}
|
|
860
|
+
};
|
|
861
|
+
function createBaseSeasonOperationalParams() {
|
|
862
|
+
return {
|
|
863
|
+
epochBlocks: BigInt(0),
|
|
864
|
+
seasonDurationEpochs: BigInt(0),
|
|
865
|
+
seasonTransitionEpochs: BigInt(0),
|
|
866
|
+
xpVoteCast: BigInt(0),
|
|
867
|
+
xpProposalCreated: BigInt(0),
|
|
868
|
+
xpForumReplyReceived: BigInt(0),
|
|
869
|
+
xpForumMarkedHelpful: BigInt(0),
|
|
870
|
+
xpInviteeFirstInitiative: BigInt(0),
|
|
871
|
+
xpInviteeEstablished: BigInt(0),
|
|
872
|
+
maxVoteXpPerEpoch: 0,
|
|
873
|
+
maxForumXpPerEpoch: BigInt(0),
|
|
874
|
+
maxXpPerEpoch: BigInt(0),
|
|
875
|
+
minGuildMembers: 0,
|
|
876
|
+
maxGuildOfficers: 0,
|
|
877
|
+
guildCreationCost: "",
|
|
878
|
+
guildHopCooldownEpochs: BigInt(0),
|
|
879
|
+
maxGuildsPerSeason: 0,
|
|
880
|
+
minGuildAgeEpochs: BigInt(0),
|
|
881
|
+
maxPendingInvites: 0,
|
|
882
|
+
displayNameMinLength: 0,
|
|
883
|
+
displayNameMaxLength: 0,
|
|
884
|
+
displayNameChangeCooldownEpochs: BigInt(0),
|
|
885
|
+
transitionBatchSize: 0,
|
|
886
|
+
maxSeasonExtensions: 0,
|
|
887
|
+
maxExtensionEpochs: BigInt(0),
|
|
888
|
+
guildDescriptionMaxLength: 0,
|
|
889
|
+
guildInviteTtlEpochs: BigInt(0),
|
|
890
|
+
maxQuestObjectives: 0,
|
|
891
|
+
forumXpMinAccountAgeEpochs: BigInt(0),
|
|
892
|
+
forumXpReciprocalCooldownEpochs: BigInt(0),
|
|
893
|
+
forumXpSelfReplyCooldownEpochs: BigInt(0),
|
|
894
|
+
transitionGracePeriod: 0,
|
|
895
|
+
maxQuestXpReward: BigInt(0),
|
|
896
|
+
usernameMinLength: 0,
|
|
897
|
+
usernameMaxLength: 0,
|
|
898
|
+
usernameChangeCooldownEpochs: BigInt(0),
|
|
899
|
+
usernameCostDream: "",
|
|
900
|
+
maxActiveQuestsPerMember: 0,
|
|
901
|
+
displayNameReportStakeDream: "",
|
|
902
|
+
maxDisplayableTitles: 0,
|
|
903
|
+
inviteCleanupIntervalBlocks: 0,
|
|
904
|
+
inviteCleanupBatchSize: 0,
|
|
905
|
+
maxObjectiveDescriptionLength: 0,
|
|
906
|
+
displayNameAppealStakeDream: "",
|
|
907
|
+
displayNameAppealPeriodBlocks: BigInt(0),
|
|
908
|
+
maxArchivedTitles: 0,
|
|
909
|
+
nominationWindowEpochs: BigInt(0),
|
|
910
|
+
maxNominationsPerMember: BigInt(0),
|
|
911
|
+
retroRewardMaxRecipients: BigInt(0),
|
|
912
|
+
retroRewardBudgetPerSeason: "",
|
|
913
|
+
retroRewardMinConviction: "",
|
|
914
|
+
nominationConvictionHalfLifeEpochs: BigInt(0),
|
|
915
|
+
nominationRationaleMaxLength: 0,
|
|
916
|
+
nominationMinTrustLevel: 0,
|
|
917
|
+
nominationStakeMinTrustLevel: 0,
|
|
918
|
+
nominationMinStake: ""
|
|
919
|
+
};
|
|
920
|
+
}
|
|
921
|
+
/**
|
|
922
|
+
* SeasonOperationalParams defines the operational parameters that can be updated
|
|
923
|
+
* by the Operations Committee without full governance proposals.
|
|
924
|
+
* @name SeasonOperationalParams
|
|
925
|
+
* @package sparkdream.season.v1
|
|
926
|
+
* @see proto type: sparkdream.season.v1.SeasonOperationalParams
|
|
927
|
+
*/
|
|
928
|
+
export const SeasonOperationalParams = {
|
|
929
|
+
typeUrl: "/sparkdream.season.v1.SeasonOperationalParams",
|
|
930
|
+
aminoType: "sparkdream/x/season/SeasonOperationalParams",
|
|
931
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
932
|
+
if (message.epochBlocks !== BigInt(0)) {
|
|
933
|
+
writer.uint32(8).int64(message.epochBlocks);
|
|
934
|
+
}
|
|
935
|
+
if (message.seasonDurationEpochs !== BigInt(0)) {
|
|
936
|
+
writer.uint32(16).int64(message.seasonDurationEpochs);
|
|
937
|
+
}
|
|
938
|
+
if (message.seasonTransitionEpochs !== BigInt(0)) {
|
|
939
|
+
writer.uint32(24).int64(message.seasonTransitionEpochs);
|
|
940
|
+
}
|
|
941
|
+
if (message.xpVoteCast !== BigInt(0)) {
|
|
942
|
+
writer.uint32(32).uint64(message.xpVoteCast);
|
|
943
|
+
}
|
|
944
|
+
if (message.xpProposalCreated !== BigInt(0)) {
|
|
945
|
+
writer.uint32(40).uint64(message.xpProposalCreated);
|
|
946
|
+
}
|
|
947
|
+
if (message.xpForumReplyReceived !== BigInt(0)) {
|
|
948
|
+
writer.uint32(48).uint64(message.xpForumReplyReceived);
|
|
949
|
+
}
|
|
950
|
+
if (message.xpForumMarkedHelpful !== BigInt(0)) {
|
|
951
|
+
writer.uint32(56).uint64(message.xpForumMarkedHelpful);
|
|
952
|
+
}
|
|
953
|
+
if (message.xpInviteeFirstInitiative !== BigInt(0)) {
|
|
954
|
+
writer.uint32(64).uint64(message.xpInviteeFirstInitiative);
|
|
955
|
+
}
|
|
956
|
+
if (message.xpInviteeEstablished !== BigInt(0)) {
|
|
957
|
+
writer.uint32(72).uint64(message.xpInviteeEstablished);
|
|
958
|
+
}
|
|
959
|
+
if (message.maxVoteXpPerEpoch !== 0) {
|
|
960
|
+
writer.uint32(80).uint32(message.maxVoteXpPerEpoch);
|
|
961
|
+
}
|
|
962
|
+
if (message.maxForumXpPerEpoch !== BigInt(0)) {
|
|
963
|
+
writer.uint32(88).uint64(message.maxForumXpPerEpoch);
|
|
964
|
+
}
|
|
965
|
+
if (message.maxXpPerEpoch !== BigInt(0)) {
|
|
966
|
+
writer.uint32(96).uint64(message.maxXpPerEpoch);
|
|
967
|
+
}
|
|
968
|
+
if (message.minGuildMembers !== 0) {
|
|
969
|
+
writer.uint32(104).uint32(message.minGuildMembers);
|
|
970
|
+
}
|
|
971
|
+
if (message.maxGuildOfficers !== 0) {
|
|
972
|
+
writer.uint32(112).uint32(message.maxGuildOfficers);
|
|
973
|
+
}
|
|
974
|
+
if (message.guildCreationCost !== "") {
|
|
975
|
+
writer.uint32(122).string(message.guildCreationCost);
|
|
976
|
+
}
|
|
977
|
+
if (message.guildHopCooldownEpochs !== BigInt(0)) {
|
|
978
|
+
writer.uint32(128).uint64(message.guildHopCooldownEpochs);
|
|
979
|
+
}
|
|
980
|
+
if (message.maxGuildsPerSeason !== 0) {
|
|
981
|
+
writer.uint32(136).uint32(message.maxGuildsPerSeason);
|
|
982
|
+
}
|
|
983
|
+
if (message.minGuildAgeEpochs !== BigInt(0)) {
|
|
984
|
+
writer.uint32(144).uint64(message.minGuildAgeEpochs);
|
|
985
|
+
}
|
|
986
|
+
if (message.maxPendingInvites !== 0) {
|
|
987
|
+
writer.uint32(152).uint32(message.maxPendingInvites);
|
|
988
|
+
}
|
|
989
|
+
if (message.displayNameMinLength !== 0) {
|
|
990
|
+
writer.uint32(160).uint32(message.displayNameMinLength);
|
|
991
|
+
}
|
|
992
|
+
if (message.displayNameMaxLength !== 0) {
|
|
993
|
+
writer.uint32(168).uint32(message.displayNameMaxLength);
|
|
994
|
+
}
|
|
995
|
+
if (message.displayNameChangeCooldownEpochs !== BigInt(0)) {
|
|
996
|
+
writer.uint32(176).uint64(message.displayNameChangeCooldownEpochs);
|
|
997
|
+
}
|
|
998
|
+
if (message.transitionBatchSize !== 0) {
|
|
999
|
+
writer.uint32(184).uint32(message.transitionBatchSize);
|
|
1000
|
+
}
|
|
1001
|
+
if (message.maxSeasonExtensions !== 0) {
|
|
1002
|
+
writer.uint32(192).uint32(message.maxSeasonExtensions);
|
|
1003
|
+
}
|
|
1004
|
+
if (message.maxExtensionEpochs !== BigInt(0)) {
|
|
1005
|
+
writer.uint32(200).uint64(message.maxExtensionEpochs);
|
|
1006
|
+
}
|
|
1007
|
+
if (message.guildDescriptionMaxLength !== 0) {
|
|
1008
|
+
writer.uint32(208).uint32(message.guildDescriptionMaxLength);
|
|
1009
|
+
}
|
|
1010
|
+
if (message.guildInviteTtlEpochs !== BigInt(0)) {
|
|
1011
|
+
writer.uint32(216).uint64(message.guildInviteTtlEpochs);
|
|
1012
|
+
}
|
|
1013
|
+
if (message.maxQuestObjectives !== 0) {
|
|
1014
|
+
writer.uint32(224).uint32(message.maxQuestObjectives);
|
|
1015
|
+
}
|
|
1016
|
+
if (message.forumXpMinAccountAgeEpochs !== BigInt(0)) {
|
|
1017
|
+
writer.uint32(232).uint64(message.forumXpMinAccountAgeEpochs);
|
|
1018
|
+
}
|
|
1019
|
+
if (message.forumXpReciprocalCooldownEpochs !== BigInt(0)) {
|
|
1020
|
+
writer.uint32(240).uint64(message.forumXpReciprocalCooldownEpochs);
|
|
1021
|
+
}
|
|
1022
|
+
if (message.forumXpSelfReplyCooldownEpochs !== BigInt(0)) {
|
|
1023
|
+
writer.uint32(248).uint64(message.forumXpSelfReplyCooldownEpochs);
|
|
1024
|
+
}
|
|
1025
|
+
if (message.transitionGracePeriod !== 0) {
|
|
1026
|
+
writer.uint32(256).uint32(message.transitionGracePeriod);
|
|
1027
|
+
}
|
|
1028
|
+
if (message.maxQuestXpReward !== BigInt(0)) {
|
|
1029
|
+
writer.uint32(264).uint64(message.maxQuestXpReward);
|
|
1030
|
+
}
|
|
1031
|
+
if (message.usernameMinLength !== 0) {
|
|
1032
|
+
writer.uint32(272).uint32(message.usernameMinLength);
|
|
1033
|
+
}
|
|
1034
|
+
if (message.usernameMaxLength !== 0) {
|
|
1035
|
+
writer.uint32(280).uint32(message.usernameMaxLength);
|
|
1036
|
+
}
|
|
1037
|
+
if (message.usernameChangeCooldownEpochs !== BigInt(0)) {
|
|
1038
|
+
writer.uint32(288).uint64(message.usernameChangeCooldownEpochs);
|
|
1039
|
+
}
|
|
1040
|
+
if (message.usernameCostDream !== "") {
|
|
1041
|
+
writer.uint32(298).string(message.usernameCostDream);
|
|
1042
|
+
}
|
|
1043
|
+
if (message.maxActiveQuestsPerMember !== 0) {
|
|
1044
|
+
writer.uint32(304).uint32(message.maxActiveQuestsPerMember);
|
|
1045
|
+
}
|
|
1046
|
+
if (message.displayNameReportStakeDream !== "") {
|
|
1047
|
+
writer.uint32(314).string(message.displayNameReportStakeDream);
|
|
1048
|
+
}
|
|
1049
|
+
if (message.maxDisplayableTitles !== 0) {
|
|
1050
|
+
writer.uint32(320).uint32(message.maxDisplayableTitles);
|
|
1051
|
+
}
|
|
1052
|
+
if (message.inviteCleanupIntervalBlocks !== 0) {
|
|
1053
|
+
writer.uint32(328).uint32(message.inviteCleanupIntervalBlocks);
|
|
1054
|
+
}
|
|
1055
|
+
if (message.inviteCleanupBatchSize !== 0) {
|
|
1056
|
+
writer.uint32(336).uint32(message.inviteCleanupBatchSize);
|
|
1057
|
+
}
|
|
1058
|
+
if (message.maxObjectiveDescriptionLength !== 0) {
|
|
1059
|
+
writer.uint32(344).uint32(message.maxObjectiveDescriptionLength);
|
|
1060
|
+
}
|
|
1061
|
+
if (message.displayNameAppealStakeDream !== "") {
|
|
1062
|
+
writer.uint32(354).string(message.displayNameAppealStakeDream);
|
|
1063
|
+
}
|
|
1064
|
+
if (message.displayNameAppealPeriodBlocks !== BigInt(0)) {
|
|
1065
|
+
writer.uint32(360).uint64(message.displayNameAppealPeriodBlocks);
|
|
1066
|
+
}
|
|
1067
|
+
if (message.maxArchivedTitles !== 0) {
|
|
1068
|
+
writer.uint32(368).uint32(message.maxArchivedTitles);
|
|
1069
|
+
}
|
|
1070
|
+
if (message.nominationWindowEpochs !== BigInt(0)) {
|
|
1071
|
+
writer.uint32(376).uint64(message.nominationWindowEpochs);
|
|
1072
|
+
}
|
|
1073
|
+
if (message.maxNominationsPerMember !== BigInt(0)) {
|
|
1074
|
+
writer.uint32(384).uint64(message.maxNominationsPerMember);
|
|
1075
|
+
}
|
|
1076
|
+
if (message.retroRewardMaxRecipients !== BigInt(0)) {
|
|
1077
|
+
writer.uint32(392).uint64(message.retroRewardMaxRecipients);
|
|
1078
|
+
}
|
|
1079
|
+
if (message.retroRewardBudgetPerSeason !== "") {
|
|
1080
|
+
writer.uint32(402).string(Decimal.fromUserInput(message.retroRewardBudgetPerSeason, 18).atomics);
|
|
1081
|
+
}
|
|
1082
|
+
if (message.retroRewardMinConviction !== "") {
|
|
1083
|
+
writer.uint32(410).string(Decimal.fromUserInput(message.retroRewardMinConviction, 18).atomics);
|
|
1084
|
+
}
|
|
1085
|
+
if (message.nominationConvictionHalfLifeEpochs !== BigInt(0)) {
|
|
1086
|
+
writer.uint32(416).uint64(message.nominationConvictionHalfLifeEpochs);
|
|
1087
|
+
}
|
|
1088
|
+
if (message.nominationRationaleMaxLength !== 0) {
|
|
1089
|
+
writer.uint32(424).uint32(message.nominationRationaleMaxLength);
|
|
1090
|
+
}
|
|
1091
|
+
if (message.nominationMinTrustLevel !== 0) {
|
|
1092
|
+
writer.uint32(432).uint32(message.nominationMinTrustLevel);
|
|
1093
|
+
}
|
|
1094
|
+
if (message.nominationStakeMinTrustLevel !== 0) {
|
|
1095
|
+
writer.uint32(440).uint32(message.nominationStakeMinTrustLevel);
|
|
1096
|
+
}
|
|
1097
|
+
if (message.nominationMinStake !== "") {
|
|
1098
|
+
writer.uint32(450).string(Decimal.fromUserInput(message.nominationMinStake, 18).atomics);
|
|
1099
|
+
}
|
|
1100
|
+
return writer;
|
|
1101
|
+
},
|
|
1102
|
+
decode(input, length) {
|
|
1103
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1104
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1105
|
+
const message = createBaseSeasonOperationalParams();
|
|
1106
|
+
while (reader.pos < end) {
|
|
1107
|
+
const tag = reader.uint32();
|
|
1108
|
+
switch (tag >>> 3) {
|
|
1109
|
+
case 1:
|
|
1110
|
+
message.epochBlocks = reader.int64();
|
|
1111
|
+
break;
|
|
1112
|
+
case 2:
|
|
1113
|
+
message.seasonDurationEpochs = reader.int64();
|
|
1114
|
+
break;
|
|
1115
|
+
case 3:
|
|
1116
|
+
message.seasonTransitionEpochs = reader.int64();
|
|
1117
|
+
break;
|
|
1118
|
+
case 4:
|
|
1119
|
+
message.xpVoteCast = reader.uint64();
|
|
1120
|
+
break;
|
|
1121
|
+
case 5:
|
|
1122
|
+
message.xpProposalCreated = reader.uint64();
|
|
1123
|
+
break;
|
|
1124
|
+
case 6:
|
|
1125
|
+
message.xpForumReplyReceived = reader.uint64();
|
|
1126
|
+
break;
|
|
1127
|
+
case 7:
|
|
1128
|
+
message.xpForumMarkedHelpful = reader.uint64();
|
|
1129
|
+
break;
|
|
1130
|
+
case 8:
|
|
1131
|
+
message.xpInviteeFirstInitiative = reader.uint64();
|
|
1132
|
+
break;
|
|
1133
|
+
case 9:
|
|
1134
|
+
message.xpInviteeEstablished = reader.uint64();
|
|
1135
|
+
break;
|
|
1136
|
+
case 10:
|
|
1137
|
+
message.maxVoteXpPerEpoch = reader.uint32();
|
|
1138
|
+
break;
|
|
1139
|
+
case 11:
|
|
1140
|
+
message.maxForumXpPerEpoch = reader.uint64();
|
|
1141
|
+
break;
|
|
1142
|
+
case 12:
|
|
1143
|
+
message.maxXpPerEpoch = reader.uint64();
|
|
1144
|
+
break;
|
|
1145
|
+
case 13:
|
|
1146
|
+
message.minGuildMembers = reader.uint32();
|
|
1147
|
+
break;
|
|
1148
|
+
case 14:
|
|
1149
|
+
message.maxGuildOfficers = reader.uint32();
|
|
1150
|
+
break;
|
|
1151
|
+
case 15:
|
|
1152
|
+
message.guildCreationCost = reader.string();
|
|
1153
|
+
break;
|
|
1154
|
+
case 16:
|
|
1155
|
+
message.guildHopCooldownEpochs = reader.uint64();
|
|
1156
|
+
break;
|
|
1157
|
+
case 17:
|
|
1158
|
+
message.maxGuildsPerSeason = reader.uint32();
|
|
1159
|
+
break;
|
|
1160
|
+
case 18:
|
|
1161
|
+
message.minGuildAgeEpochs = reader.uint64();
|
|
1162
|
+
break;
|
|
1163
|
+
case 19:
|
|
1164
|
+
message.maxPendingInvites = reader.uint32();
|
|
1165
|
+
break;
|
|
1166
|
+
case 20:
|
|
1167
|
+
message.displayNameMinLength = reader.uint32();
|
|
1168
|
+
break;
|
|
1169
|
+
case 21:
|
|
1170
|
+
message.displayNameMaxLength = reader.uint32();
|
|
1171
|
+
break;
|
|
1172
|
+
case 22:
|
|
1173
|
+
message.displayNameChangeCooldownEpochs = reader.uint64();
|
|
1174
|
+
break;
|
|
1175
|
+
case 23:
|
|
1176
|
+
message.transitionBatchSize = reader.uint32();
|
|
1177
|
+
break;
|
|
1178
|
+
case 24:
|
|
1179
|
+
message.maxSeasonExtensions = reader.uint32();
|
|
1180
|
+
break;
|
|
1181
|
+
case 25:
|
|
1182
|
+
message.maxExtensionEpochs = reader.uint64();
|
|
1183
|
+
break;
|
|
1184
|
+
case 26:
|
|
1185
|
+
message.guildDescriptionMaxLength = reader.uint32();
|
|
1186
|
+
break;
|
|
1187
|
+
case 27:
|
|
1188
|
+
message.guildInviteTtlEpochs = reader.uint64();
|
|
1189
|
+
break;
|
|
1190
|
+
case 28:
|
|
1191
|
+
message.maxQuestObjectives = reader.uint32();
|
|
1192
|
+
break;
|
|
1193
|
+
case 29:
|
|
1194
|
+
message.forumXpMinAccountAgeEpochs = reader.uint64();
|
|
1195
|
+
break;
|
|
1196
|
+
case 30:
|
|
1197
|
+
message.forumXpReciprocalCooldownEpochs = reader.uint64();
|
|
1198
|
+
break;
|
|
1199
|
+
case 31:
|
|
1200
|
+
message.forumXpSelfReplyCooldownEpochs = reader.uint64();
|
|
1201
|
+
break;
|
|
1202
|
+
case 32:
|
|
1203
|
+
message.transitionGracePeriod = reader.uint32();
|
|
1204
|
+
break;
|
|
1205
|
+
case 33:
|
|
1206
|
+
message.maxQuestXpReward = reader.uint64();
|
|
1207
|
+
break;
|
|
1208
|
+
case 34:
|
|
1209
|
+
message.usernameMinLength = reader.uint32();
|
|
1210
|
+
break;
|
|
1211
|
+
case 35:
|
|
1212
|
+
message.usernameMaxLength = reader.uint32();
|
|
1213
|
+
break;
|
|
1214
|
+
case 36:
|
|
1215
|
+
message.usernameChangeCooldownEpochs = reader.uint64();
|
|
1216
|
+
break;
|
|
1217
|
+
case 37:
|
|
1218
|
+
message.usernameCostDream = reader.string();
|
|
1219
|
+
break;
|
|
1220
|
+
case 38:
|
|
1221
|
+
message.maxActiveQuestsPerMember = reader.uint32();
|
|
1222
|
+
break;
|
|
1223
|
+
case 39:
|
|
1224
|
+
message.displayNameReportStakeDream = reader.string();
|
|
1225
|
+
break;
|
|
1226
|
+
case 40:
|
|
1227
|
+
message.maxDisplayableTitles = reader.uint32();
|
|
1228
|
+
break;
|
|
1229
|
+
case 41:
|
|
1230
|
+
message.inviteCleanupIntervalBlocks = reader.uint32();
|
|
1231
|
+
break;
|
|
1232
|
+
case 42:
|
|
1233
|
+
message.inviteCleanupBatchSize = reader.uint32();
|
|
1234
|
+
break;
|
|
1235
|
+
case 43:
|
|
1236
|
+
message.maxObjectiveDescriptionLength = reader.uint32();
|
|
1237
|
+
break;
|
|
1238
|
+
case 44:
|
|
1239
|
+
message.displayNameAppealStakeDream = reader.string();
|
|
1240
|
+
break;
|
|
1241
|
+
case 45:
|
|
1242
|
+
message.displayNameAppealPeriodBlocks = reader.uint64();
|
|
1243
|
+
break;
|
|
1244
|
+
case 46:
|
|
1245
|
+
message.maxArchivedTitles = reader.uint32();
|
|
1246
|
+
break;
|
|
1247
|
+
case 47:
|
|
1248
|
+
message.nominationWindowEpochs = reader.uint64();
|
|
1249
|
+
break;
|
|
1250
|
+
case 48:
|
|
1251
|
+
message.maxNominationsPerMember = reader.uint64();
|
|
1252
|
+
break;
|
|
1253
|
+
case 49:
|
|
1254
|
+
message.retroRewardMaxRecipients = reader.uint64();
|
|
1255
|
+
break;
|
|
1256
|
+
case 50:
|
|
1257
|
+
message.retroRewardBudgetPerSeason = Decimal.fromAtomics(reader.string(), 18).toString();
|
|
1258
|
+
break;
|
|
1259
|
+
case 51:
|
|
1260
|
+
message.retroRewardMinConviction = Decimal.fromAtomics(reader.string(), 18).toString();
|
|
1261
|
+
break;
|
|
1262
|
+
case 52:
|
|
1263
|
+
message.nominationConvictionHalfLifeEpochs = reader.uint64();
|
|
1264
|
+
break;
|
|
1265
|
+
case 53:
|
|
1266
|
+
message.nominationRationaleMaxLength = reader.uint32();
|
|
1267
|
+
break;
|
|
1268
|
+
case 54:
|
|
1269
|
+
message.nominationMinTrustLevel = reader.uint32();
|
|
1270
|
+
break;
|
|
1271
|
+
case 55:
|
|
1272
|
+
message.nominationStakeMinTrustLevel = reader.uint32();
|
|
1273
|
+
break;
|
|
1274
|
+
case 56:
|
|
1275
|
+
message.nominationMinStake = Decimal.fromAtomics(reader.string(), 18).toString();
|
|
1276
|
+
break;
|
|
1277
|
+
default:
|
|
1278
|
+
reader.skipType(tag & 7);
|
|
1279
|
+
break;
|
|
1280
|
+
}
|
|
1281
|
+
}
|
|
1282
|
+
return message;
|
|
1283
|
+
},
|
|
1284
|
+
fromPartial(object) {
|
|
1285
|
+
const message = createBaseSeasonOperationalParams();
|
|
1286
|
+
message.epochBlocks = object.epochBlocks !== undefined && object.epochBlocks !== null ? BigInt(object.epochBlocks.toString()) : BigInt(0);
|
|
1287
|
+
message.seasonDurationEpochs = object.seasonDurationEpochs !== undefined && object.seasonDurationEpochs !== null ? BigInt(object.seasonDurationEpochs.toString()) : BigInt(0);
|
|
1288
|
+
message.seasonTransitionEpochs = object.seasonTransitionEpochs !== undefined && object.seasonTransitionEpochs !== null ? BigInt(object.seasonTransitionEpochs.toString()) : BigInt(0);
|
|
1289
|
+
message.xpVoteCast = object.xpVoteCast !== undefined && object.xpVoteCast !== null ? BigInt(object.xpVoteCast.toString()) : BigInt(0);
|
|
1290
|
+
message.xpProposalCreated = object.xpProposalCreated !== undefined && object.xpProposalCreated !== null ? BigInt(object.xpProposalCreated.toString()) : BigInt(0);
|
|
1291
|
+
message.xpForumReplyReceived = object.xpForumReplyReceived !== undefined && object.xpForumReplyReceived !== null ? BigInt(object.xpForumReplyReceived.toString()) : BigInt(0);
|
|
1292
|
+
message.xpForumMarkedHelpful = object.xpForumMarkedHelpful !== undefined && object.xpForumMarkedHelpful !== null ? BigInt(object.xpForumMarkedHelpful.toString()) : BigInt(0);
|
|
1293
|
+
message.xpInviteeFirstInitiative = object.xpInviteeFirstInitiative !== undefined && object.xpInviteeFirstInitiative !== null ? BigInt(object.xpInviteeFirstInitiative.toString()) : BigInt(0);
|
|
1294
|
+
message.xpInviteeEstablished = object.xpInviteeEstablished !== undefined && object.xpInviteeEstablished !== null ? BigInt(object.xpInviteeEstablished.toString()) : BigInt(0);
|
|
1295
|
+
message.maxVoteXpPerEpoch = object.maxVoteXpPerEpoch ?? 0;
|
|
1296
|
+
message.maxForumXpPerEpoch = object.maxForumXpPerEpoch !== undefined && object.maxForumXpPerEpoch !== null ? BigInt(object.maxForumXpPerEpoch.toString()) : BigInt(0);
|
|
1297
|
+
message.maxXpPerEpoch = object.maxXpPerEpoch !== undefined && object.maxXpPerEpoch !== null ? BigInt(object.maxXpPerEpoch.toString()) : BigInt(0);
|
|
1298
|
+
message.minGuildMembers = object.minGuildMembers ?? 0;
|
|
1299
|
+
message.maxGuildOfficers = object.maxGuildOfficers ?? 0;
|
|
1300
|
+
message.guildCreationCost = object.guildCreationCost ?? "";
|
|
1301
|
+
message.guildHopCooldownEpochs = object.guildHopCooldownEpochs !== undefined && object.guildHopCooldownEpochs !== null ? BigInt(object.guildHopCooldownEpochs.toString()) : BigInt(0);
|
|
1302
|
+
message.maxGuildsPerSeason = object.maxGuildsPerSeason ?? 0;
|
|
1303
|
+
message.minGuildAgeEpochs = object.minGuildAgeEpochs !== undefined && object.minGuildAgeEpochs !== null ? BigInt(object.minGuildAgeEpochs.toString()) : BigInt(0);
|
|
1304
|
+
message.maxPendingInvites = object.maxPendingInvites ?? 0;
|
|
1305
|
+
message.displayNameMinLength = object.displayNameMinLength ?? 0;
|
|
1306
|
+
message.displayNameMaxLength = object.displayNameMaxLength ?? 0;
|
|
1307
|
+
message.displayNameChangeCooldownEpochs = object.displayNameChangeCooldownEpochs !== undefined && object.displayNameChangeCooldownEpochs !== null ? BigInt(object.displayNameChangeCooldownEpochs.toString()) : BigInt(0);
|
|
1308
|
+
message.transitionBatchSize = object.transitionBatchSize ?? 0;
|
|
1309
|
+
message.maxSeasonExtensions = object.maxSeasonExtensions ?? 0;
|
|
1310
|
+
message.maxExtensionEpochs = object.maxExtensionEpochs !== undefined && object.maxExtensionEpochs !== null ? BigInt(object.maxExtensionEpochs.toString()) : BigInt(0);
|
|
1311
|
+
message.guildDescriptionMaxLength = object.guildDescriptionMaxLength ?? 0;
|
|
1312
|
+
message.guildInviteTtlEpochs = object.guildInviteTtlEpochs !== undefined && object.guildInviteTtlEpochs !== null ? BigInt(object.guildInviteTtlEpochs.toString()) : BigInt(0);
|
|
1313
|
+
message.maxQuestObjectives = object.maxQuestObjectives ?? 0;
|
|
1314
|
+
message.forumXpMinAccountAgeEpochs = object.forumXpMinAccountAgeEpochs !== undefined && object.forumXpMinAccountAgeEpochs !== null ? BigInt(object.forumXpMinAccountAgeEpochs.toString()) : BigInt(0);
|
|
1315
|
+
message.forumXpReciprocalCooldownEpochs = object.forumXpReciprocalCooldownEpochs !== undefined && object.forumXpReciprocalCooldownEpochs !== null ? BigInt(object.forumXpReciprocalCooldownEpochs.toString()) : BigInt(0);
|
|
1316
|
+
message.forumXpSelfReplyCooldownEpochs = object.forumXpSelfReplyCooldownEpochs !== undefined && object.forumXpSelfReplyCooldownEpochs !== null ? BigInt(object.forumXpSelfReplyCooldownEpochs.toString()) : BigInt(0);
|
|
1317
|
+
message.transitionGracePeriod = object.transitionGracePeriod ?? 0;
|
|
1318
|
+
message.maxQuestXpReward = object.maxQuestXpReward !== undefined && object.maxQuestXpReward !== null ? BigInt(object.maxQuestXpReward.toString()) : BigInt(0);
|
|
1319
|
+
message.usernameMinLength = object.usernameMinLength ?? 0;
|
|
1320
|
+
message.usernameMaxLength = object.usernameMaxLength ?? 0;
|
|
1321
|
+
message.usernameChangeCooldownEpochs = object.usernameChangeCooldownEpochs !== undefined && object.usernameChangeCooldownEpochs !== null ? BigInt(object.usernameChangeCooldownEpochs.toString()) : BigInt(0);
|
|
1322
|
+
message.usernameCostDream = object.usernameCostDream ?? "";
|
|
1323
|
+
message.maxActiveQuestsPerMember = object.maxActiveQuestsPerMember ?? 0;
|
|
1324
|
+
message.displayNameReportStakeDream = object.displayNameReportStakeDream ?? "";
|
|
1325
|
+
message.maxDisplayableTitles = object.maxDisplayableTitles ?? 0;
|
|
1326
|
+
message.inviteCleanupIntervalBlocks = object.inviteCleanupIntervalBlocks ?? 0;
|
|
1327
|
+
message.inviteCleanupBatchSize = object.inviteCleanupBatchSize ?? 0;
|
|
1328
|
+
message.maxObjectiveDescriptionLength = object.maxObjectiveDescriptionLength ?? 0;
|
|
1329
|
+
message.displayNameAppealStakeDream = object.displayNameAppealStakeDream ?? "";
|
|
1330
|
+
message.displayNameAppealPeriodBlocks = object.displayNameAppealPeriodBlocks !== undefined && object.displayNameAppealPeriodBlocks !== null ? BigInt(object.displayNameAppealPeriodBlocks.toString()) : BigInt(0);
|
|
1331
|
+
message.maxArchivedTitles = object.maxArchivedTitles ?? 0;
|
|
1332
|
+
message.nominationWindowEpochs = object.nominationWindowEpochs !== undefined && object.nominationWindowEpochs !== null ? BigInt(object.nominationWindowEpochs.toString()) : BigInt(0);
|
|
1333
|
+
message.maxNominationsPerMember = object.maxNominationsPerMember !== undefined && object.maxNominationsPerMember !== null ? BigInt(object.maxNominationsPerMember.toString()) : BigInt(0);
|
|
1334
|
+
message.retroRewardMaxRecipients = object.retroRewardMaxRecipients !== undefined && object.retroRewardMaxRecipients !== null ? BigInt(object.retroRewardMaxRecipients.toString()) : BigInt(0);
|
|
1335
|
+
message.retroRewardBudgetPerSeason = object.retroRewardBudgetPerSeason ?? "";
|
|
1336
|
+
message.retroRewardMinConviction = object.retroRewardMinConviction ?? "";
|
|
1337
|
+
message.nominationConvictionHalfLifeEpochs = object.nominationConvictionHalfLifeEpochs !== undefined && object.nominationConvictionHalfLifeEpochs !== null ? BigInt(object.nominationConvictionHalfLifeEpochs.toString()) : BigInt(0);
|
|
1338
|
+
message.nominationRationaleMaxLength = object.nominationRationaleMaxLength ?? 0;
|
|
1339
|
+
message.nominationMinTrustLevel = object.nominationMinTrustLevel ?? 0;
|
|
1340
|
+
message.nominationStakeMinTrustLevel = object.nominationStakeMinTrustLevel ?? 0;
|
|
1341
|
+
message.nominationMinStake = object.nominationMinStake ?? "";
|
|
1342
|
+
return message;
|
|
1343
|
+
},
|
|
1344
|
+
fromAmino(object) {
|
|
1345
|
+
const message = createBaseSeasonOperationalParams();
|
|
1346
|
+
if (object.epoch_blocks !== undefined && object.epoch_blocks !== null) {
|
|
1347
|
+
message.epochBlocks = BigInt(object.epoch_blocks);
|
|
1348
|
+
}
|
|
1349
|
+
if (object.season_duration_epochs !== undefined && object.season_duration_epochs !== null) {
|
|
1350
|
+
message.seasonDurationEpochs = BigInt(object.season_duration_epochs);
|
|
1351
|
+
}
|
|
1352
|
+
if (object.season_transition_epochs !== undefined && object.season_transition_epochs !== null) {
|
|
1353
|
+
message.seasonTransitionEpochs = BigInt(object.season_transition_epochs);
|
|
1354
|
+
}
|
|
1355
|
+
if (object.xp_vote_cast !== undefined && object.xp_vote_cast !== null) {
|
|
1356
|
+
message.xpVoteCast = BigInt(object.xp_vote_cast);
|
|
1357
|
+
}
|
|
1358
|
+
if (object.xp_proposal_created !== undefined && object.xp_proposal_created !== null) {
|
|
1359
|
+
message.xpProposalCreated = BigInt(object.xp_proposal_created);
|
|
1360
|
+
}
|
|
1361
|
+
if (object.xp_forum_reply_received !== undefined && object.xp_forum_reply_received !== null) {
|
|
1362
|
+
message.xpForumReplyReceived = BigInt(object.xp_forum_reply_received);
|
|
1363
|
+
}
|
|
1364
|
+
if (object.xp_forum_marked_helpful !== undefined && object.xp_forum_marked_helpful !== null) {
|
|
1365
|
+
message.xpForumMarkedHelpful = BigInt(object.xp_forum_marked_helpful);
|
|
1366
|
+
}
|
|
1367
|
+
if (object.xp_invitee_first_initiative !== undefined && object.xp_invitee_first_initiative !== null) {
|
|
1368
|
+
message.xpInviteeFirstInitiative = BigInt(object.xp_invitee_first_initiative);
|
|
1369
|
+
}
|
|
1370
|
+
if (object.xp_invitee_established !== undefined && object.xp_invitee_established !== null) {
|
|
1371
|
+
message.xpInviteeEstablished = BigInt(object.xp_invitee_established);
|
|
1372
|
+
}
|
|
1373
|
+
if (object.max_vote_xp_per_epoch !== undefined && object.max_vote_xp_per_epoch !== null) {
|
|
1374
|
+
message.maxVoteXpPerEpoch = object.max_vote_xp_per_epoch;
|
|
1375
|
+
}
|
|
1376
|
+
if (object.max_forum_xp_per_epoch !== undefined && object.max_forum_xp_per_epoch !== null) {
|
|
1377
|
+
message.maxForumXpPerEpoch = BigInt(object.max_forum_xp_per_epoch);
|
|
1378
|
+
}
|
|
1379
|
+
if (object.max_xp_per_epoch !== undefined && object.max_xp_per_epoch !== null) {
|
|
1380
|
+
message.maxXpPerEpoch = BigInt(object.max_xp_per_epoch);
|
|
1381
|
+
}
|
|
1382
|
+
if (object.min_guild_members !== undefined && object.min_guild_members !== null) {
|
|
1383
|
+
message.minGuildMembers = object.min_guild_members;
|
|
1384
|
+
}
|
|
1385
|
+
if (object.max_guild_officers !== undefined && object.max_guild_officers !== null) {
|
|
1386
|
+
message.maxGuildOfficers = object.max_guild_officers;
|
|
1387
|
+
}
|
|
1388
|
+
if (object.guild_creation_cost !== undefined && object.guild_creation_cost !== null) {
|
|
1389
|
+
message.guildCreationCost = object.guild_creation_cost;
|
|
1390
|
+
}
|
|
1391
|
+
if (object.guild_hop_cooldown_epochs !== undefined && object.guild_hop_cooldown_epochs !== null) {
|
|
1392
|
+
message.guildHopCooldownEpochs = BigInt(object.guild_hop_cooldown_epochs);
|
|
1393
|
+
}
|
|
1394
|
+
if (object.max_guilds_per_season !== undefined && object.max_guilds_per_season !== null) {
|
|
1395
|
+
message.maxGuildsPerSeason = object.max_guilds_per_season;
|
|
1396
|
+
}
|
|
1397
|
+
if (object.min_guild_age_epochs !== undefined && object.min_guild_age_epochs !== null) {
|
|
1398
|
+
message.minGuildAgeEpochs = BigInt(object.min_guild_age_epochs);
|
|
1399
|
+
}
|
|
1400
|
+
if (object.max_pending_invites !== undefined && object.max_pending_invites !== null) {
|
|
1401
|
+
message.maxPendingInvites = object.max_pending_invites;
|
|
1402
|
+
}
|
|
1403
|
+
if (object.display_name_min_length !== undefined && object.display_name_min_length !== null) {
|
|
1404
|
+
message.displayNameMinLength = object.display_name_min_length;
|
|
1405
|
+
}
|
|
1406
|
+
if (object.display_name_max_length !== undefined && object.display_name_max_length !== null) {
|
|
1407
|
+
message.displayNameMaxLength = object.display_name_max_length;
|
|
1408
|
+
}
|
|
1409
|
+
if (object.display_name_change_cooldown_epochs !== undefined && object.display_name_change_cooldown_epochs !== null) {
|
|
1410
|
+
message.displayNameChangeCooldownEpochs = BigInt(object.display_name_change_cooldown_epochs);
|
|
1411
|
+
}
|
|
1412
|
+
if (object.transition_batch_size !== undefined && object.transition_batch_size !== null) {
|
|
1413
|
+
message.transitionBatchSize = object.transition_batch_size;
|
|
1414
|
+
}
|
|
1415
|
+
if (object.max_season_extensions !== undefined && object.max_season_extensions !== null) {
|
|
1416
|
+
message.maxSeasonExtensions = object.max_season_extensions;
|
|
1417
|
+
}
|
|
1418
|
+
if (object.max_extension_epochs !== undefined && object.max_extension_epochs !== null) {
|
|
1419
|
+
message.maxExtensionEpochs = BigInt(object.max_extension_epochs);
|
|
1420
|
+
}
|
|
1421
|
+
if (object.guild_description_max_length !== undefined && object.guild_description_max_length !== null) {
|
|
1422
|
+
message.guildDescriptionMaxLength = object.guild_description_max_length;
|
|
1423
|
+
}
|
|
1424
|
+
if (object.guild_invite_ttl_epochs !== undefined && object.guild_invite_ttl_epochs !== null) {
|
|
1425
|
+
message.guildInviteTtlEpochs = BigInt(object.guild_invite_ttl_epochs);
|
|
1426
|
+
}
|
|
1427
|
+
if (object.max_quest_objectives !== undefined && object.max_quest_objectives !== null) {
|
|
1428
|
+
message.maxQuestObjectives = object.max_quest_objectives;
|
|
1429
|
+
}
|
|
1430
|
+
if (object.forum_xp_min_account_age_epochs !== undefined && object.forum_xp_min_account_age_epochs !== null) {
|
|
1431
|
+
message.forumXpMinAccountAgeEpochs = BigInt(object.forum_xp_min_account_age_epochs);
|
|
1432
|
+
}
|
|
1433
|
+
if (object.forum_xp_reciprocal_cooldown_epochs !== undefined && object.forum_xp_reciprocal_cooldown_epochs !== null) {
|
|
1434
|
+
message.forumXpReciprocalCooldownEpochs = BigInt(object.forum_xp_reciprocal_cooldown_epochs);
|
|
1435
|
+
}
|
|
1436
|
+
if (object.forum_xp_self_reply_cooldown_epochs !== undefined && object.forum_xp_self_reply_cooldown_epochs !== null) {
|
|
1437
|
+
message.forumXpSelfReplyCooldownEpochs = BigInt(object.forum_xp_self_reply_cooldown_epochs);
|
|
1438
|
+
}
|
|
1439
|
+
if (object.transition_grace_period !== undefined && object.transition_grace_period !== null) {
|
|
1440
|
+
message.transitionGracePeriod = object.transition_grace_period;
|
|
1441
|
+
}
|
|
1442
|
+
if (object.max_quest_xp_reward !== undefined && object.max_quest_xp_reward !== null) {
|
|
1443
|
+
message.maxQuestXpReward = BigInt(object.max_quest_xp_reward);
|
|
1444
|
+
}
|
|
1445
|
+
if (object.username_min_length !== undefined && object.username_min_length !== null) {
|
|
1446
|
+
message.usernameMinLength = object.username_min_length;
|
|
1447
|
+
}
|
|
1448
|
+
if (object.username_max_length !== undefined && object.username_max_length !== null) {
|
|
1449
|
+
message.usernameMaxLength = object.username_max_length;
|
|
1450
|
+
}
|
|
1451
|
+
if (object.username_change_cooldown_epochs !== undefined && object.username_change_cooldown_epochs !== null) {
|
|
1452
|
+
message.usernameChangeCooldownEpochs = BigInt(object.username_change_cooldown_epochs);
|
|
1453
|
+
}
|
|
1454
|
+
if (object.username_cost_dream !== undefined && object.username_cost_dream !== null) {
|
|
1455
|
+
message.usernameCostDream = object.username_cost_dream;
|
|
1456
|
+
}
|
|
1457
|
+
if (object.max_active_quests_per_member !== undefined && object.max_active_quests_per_member !== null) {
|
|
1458
|
+
message.maxActiveQuestsPerMember = object.max_active_quests_per_member;
|
|
1459
|
+
}
|
|
1460
|
+
if (object.display_name_report_stake_dream !== undefined && object.display_name_report_stake_dream !== null) {
|
|
1461
|
+
message.displayNameReportStakeDream = object.display_name_report_stake_dream;
|
|
1462
|
+
}
|
|
1463
|
+
if (object.max_displayable_titles !== undefined && object.max_displayable_titles !== null) {
|
|
1464
|
+
message.maxDisplayableTitles = object.max_displayable_titles;
|
|
1465
|
+
}
|
|
1466
|
+
if (object.invite_cleanup_interval_blocks !== undefined && object.invite_cleanup_interval_blocks !== null) {
|
|
1467
|
+
message.inviteCleanupIntervalBlocks = object.invite_cleanup_interval_blocks;
|
|
1468
|
+
}
|
|
1469
|
+
if (object.invite_cleanup_batch_size !== undefined && object.invite_cleanup_batch_size !== null) {
|
|
1470
|
+
message.inviteCleanupBatchSize = object.invite_cleanup_batch_size;
|
|
1471
|
+
}
|
|
1472
|
+
if (object.max_objective_description_length !== undefined && object.max_objective_description_length !== null) {
|
|
1473
|
+
message.maxObjectiveDescriptionLength = object.max_objective_description_length;
|
|
1474
|
+
}
|
|
1475
|
+
if (object.display_name_appeal_stake_dream !== undefined && object.display_name_appeal_stake_dream !== null) {
|
|
1476
|
+
message.displayNameAppealStakeDream = object.display_name_appeal_stake_dream;
|
|
1477
|
+
}
|
|
1478
|
+
if (object.display_name_appeal_period_blocks !== undefined && object.display_name_appeal_period_blocks !== null) {
|
|
1479
|
+
message.displayNameAppealPeriodBlocks = BigInt(object.display_name_appeal_period_blocks);
|
|
1480
|
+
}
|
|
1481
|
+
if (object.max_archived_titles !== undefined && object.max_archived_titles !== null) {
|
|
1482
|
+
message.maxArchivedTitles = object.max_archived_titles;
|
|
1483
|
+
}
|
|
1484
|
+
if (object.nomination_window_epochs !== undefined && object.nomination_window_epochs !== null) {
|
|
1485
|
+
message.nominationWindowEpochs = BigInt(object.nomination_window_epochs);
|
|
1486
|
+
}
|
|
1487
|
+
if (object.max_nominations_per_member !== undefined && object.max_nominations_per_member !== null) {
|
|
1488
|
+
message.maxNominationsPerMember = BigInt(object.max_nominations_per_member);
|
|
1489
|
+
}
|
|
1490
|
+
if (object.retro_reward_max_recipients !== undefined && object.retro_reward_max_recipients !== null) {
|
|
1491
|
+
message.retroRewardMaxRecipients = BigInt(object.retro_reward_max_recipients);
|
|
1492
|
+
}
|
|
1493
|
+
if (object.retro_reward_budget_per_season !== undefined && object.retro_reward_budget_per_season !== null) {
|
|
1494
|
+
message.retroRewardBudgetPerSeason = object.retro_reward_budget_per_season;
|
|
1495
|
+
}
|
|
1496
|
+
if (object.retro_reward_min_conviction !== undefined && object.retro_reward_min_conviction !== null) {
|
|
1497
|
+
message.retroRewardMinConviction = object.retro_reward_min_conviction;
|
|
1498
|
+
}
|
|
1499
|
+
if (object.nomination_conviction_half_life_epochs !== undefined && object.nomination_conviction_half_life_epochs !== null) {
|
|
1500
|
+
message.nominationConvictionHalfLifeEpochs = BigInt(object.nomination_conviction_half_life_epochs);
|
|
1501
|
+
}
|
|
1502
|
+
if (object.nomination_rationale_max_length !== undefined && object.nomination_rationale_max_length !== null) {
|
|
1503
|
+
message.nominationRationaleMaxLength = object.nomination_rationale_max_length;
|
|
1504
|
+
}
|
|
1505
|
+
if (object.nomination_min_trust_level !== undefined && object.nomination_min_trust_level !== null) {
|
|
1506
|
+
message.nominationMinTrustLevel = object.nomination_min_trust_level;
|
|
1507
|
+
}
|
|
1508
|
+
if (object.nomination_stake_min_trust_level !== undefined && object.nomination_stake_min_trust_level !== null) {
|
|
1509
|
+
message.nominationStakeMinTrustLevel = object.nomination_stake_min_trust_level;
|
|
1510
|
+
}
|
|
1511
|
+
if (object.nomination_min_stake !== undefined && object.nomination_min_stake !== null) {
|
|
1512
|
+
message.nominationMinStake = object.nomination_min_stake;
|
|
1513
|
+
}
|
|
1514
|
+
return message;
|
|
1515
|
+
},
|
|
1516
|
+
toAmino(message) {
|
|
1517
|
+
const obj = {};
|
|
1518
|
+
obj.epoch_blocks = message.epochBlocks !== BigInt(0) ? message.epochBlocks?.toString() : undefined;
|
|
1519
|
+
obj.season_duration_epochs = message.seasonDurationEpochs !== BigInt(0) ? message.seasonDurationEpochs?.toString() : undefined;
|
|
1520
|
+
obj.season_transition_epochs = message.seasonTransitionEpochs !== BigInt(0) ? message.seasonTransitionEpochs?.toString() : undefined;
|
|
1521
|
+
obj.xp_vote_cast = message.xpVoteCast !== BigInt(0) ? message.xpVoteCast?.toString() : undefined;
|
|
1522
|
+
obj.xp_proposal_created = message.xpProposalCreated !== BigInt(0) ? message.xpProposalCreated?.toString() : undefined;
|
|
1523
|
+
obj.xp_forum_reply_received = message.xpForumReplyReceived !== BigInt(0) ? message.xpForumReplyReceived?.toString() : undefined;
|
|
1524
|
+
obj.xp_forum_marked_helpful = message.xpForumMarkedHelpful !== BigInt(0) ? message.xpForumMarkedHelpful?.toString() : undefined;
|
|
1525
|
+
obj.xp_invitee_first_initiative = message.xpInviteeFirstInitiative !== BigInt(0) ? message.xpInviteeFirstInitiative?.toString() : undefined;
|
|
1526
|
+
obj.xp_invitee_established = message.xpInviteeEstablished !== BigInt(0) ? message.xpInviteeEstablished?.toString() : undefined;
|
|
1527
|
+
obj.max_vote_xp_per_epoch = message.maxVoteXpPerEpoch === 0 ? undefined : message.maxVoteXpPerEpoch;
|
|
1528
|
+
obj.max_forum_xp_per_epoch = message.maxForumXpPerEpoch !== BigInt(0) ? message.maxForumXpPerEpoch?.toString() : undefined;
|
|
1529
|
+
obj.max_xp_per_epoch = message.maxXpPerEpoch !== BigInt(0) ? message.maxXpPerEpoch?.toString() : undefined;
|
|
1530
|
+
obj.min_guild_members = message.minGuildMembers === 0 ? undefined : message.minGuildMembers;
|
|
1531
|
+
obj.max_guild_officers = message.maxGuildOfficers === 0 ? undefined : message.maxGuildOfficers;
|
|
1532
|
+
obj.guild_creation_cost = message.guildCreationCost === "" ? undefined : message.guildCreationCost;
|
|
1533
|
+
obj.guild_hop_cooldown_epochs = message.guildHopCooldownEpochs !== BigInt(0) ? message.guildHopCooldownEpochs?.toString() : undefined;
|
|
1534
|
+
obj.max_guilds_per_season = message.maxGuildsPerSeason === 0 ? undefined : message.maxGuildsPerSeason;
|
|
1535
|
+
obj.min_guild_age_epochs = message.minGuildAgeEpochs !== BigInt(0) ? message.minGuildAgeEpochs?.toString() : undefined;
|
|
1536
|
+
obj.max_pending_invites = message.maxPendingInvites === 0 ? undefined : message.maxPendingInvites;
|
|
1537
|
+
obj.display_name_min_length = message.displayNameMinLength === 0 ? undefined : message.displayNameMinLength;
|
|
1538
|
+
obj.display_name_max_length = message.displayNameMaxLength === 0 ? undefined : message.displayNameMaxLength;
|
|
1539
|
+
obj.display_name_change_cooldown_epochs = message.displayNameChangeCooldownEpochs !== BigInt(0) ? message.displayNameChangeCooldownEpochs?.toString() : undefined;
|
|
1540
|
+
obj.transition_batch_size = message.transitionBatchSize === 0 ? undefined : message.transitionBatchSize;
|
|
1541
|
+
obj.max_season_extensions = message.maxSeasonExtensions === 0 ? undefined : message.maxSeasonExtensions;
|
|
1542
|
+
obj.max_extension_epochs = message.maxExtensionEpochs !== BigInt(0) ? message.maxExtensionEpochs?.toString() : undefined;
|
|
1543
|
+
obj.guild_description_max_length = message.guildDescriptionMaxLength === 0 ? undefined : message.guildDescriptionMaxLength;
|
|
1544
|
+
obj.guild_invite_ttl_epochs = message.guildInviteTtlEpochs !== BigInt(0) ? message.guildInviteTtlEpochs?.toString() : undefined;
|
|
1545
|
+
obj.max_quest_objectives = message.maxQuestObjectives === 0 ? undefined : message.maxQuestObjectives;
|
|
1546
|
+
obj.forum_xp_min_account_age_epochs = message.forumXpMinAccountAgeEpochs !== BigInt(0) ? message.forumXpMinAccountAgeEpochs?.toString() : undefined;
|
|
1547
|
+
obj.forum_xp_reciprocal_cooldown_epochs = message.forumXpReciprocalCooldownEpochs !== BigInt(0) ? message.forumXpReciprocalCooldownEpochs?.toString() : undefined;
|
|
1548
|
+
obj.forum_xp_self_reply_cooldown_epochs = message.forumXpSelfReplyCooldownEpochs !== BigInt(0) ? message.forumXpSelfReplyCooldownEpochs?.toString() : undefined;
|
|
1549
|
+
obj.transition_grace_period = message.transitionGracePeriod === 0 ? undefined : message.transitionGracePeriod;
|
|
1550
|
+
obj.max_quest_xp_reward = message.maxQuestXpReward !== BigInt(0) ? message.maxQuestXpReward?.toString() : undefined;
|
|
1551
|
+
obj.username_min_length = message.usernameMinLength === 0 ? undefined : message.usernameMinLength;
|
|
1552
|
+
obj.username_max_length = message.usernameMaxLength === 0 ? undefined : message.usernameMaxLength;
|
|
1553
|
+
obj.username_change_cooldown_epochs = message.usernameChangeCooldownEpochs !== BigInt(0) ? message.usernameChangeCooldownEpochs?.toString() : undefined;
|
|
1554
|
+
obj.username_cost_dream = message.usernameCostDream === "" ? undefined : message.usernameCostDream;
|
|
1555
|
+
obj.max_active_quests_per_member = message.maxActiveQuestsPerMember === 0 ? undefined : message.maxActiveQuestsPerMember;
|
|
1556
|
+
obj.display_name_report_stake_dream = message.displayNameReportStakeDream === "" ? undefined : message.displayNameReportStakeDream;
|
|
1557
|
+
obj.max_displayable_titles = message.maxDisplayableTitles === 0 ? undefined : message.maxDisplayableTitles;
|
|
1558
|
+
obj.invite_cleanup_interval_blocks = message.inviteCleanupIntervalBlocks === 0 ? undefined : message.inviteCleanupIntervalBlocks;
|
|
1559
|
+
obj.invite_cleanup_batch_size = message.inviteCleanupBatchSize === 0 ? undefined : message.inviteCleanupBatchSize;
|
|
1560
|
+
obj.max_objective_description_length = message.maxObjectiveDescriptionLength === 0 ? undefined : message.maxObjectiveDescriptionLength;
|
|
1561
|
+
obj.display_name_appeal_stake_dream = message.displayNameAppealStakeDream === "" ? undefined : message.displayNameAppealStakeDream;
|
|
1562
|
+
obj.display_name_appeal_period_blocks = message.displayNameAppealPeriodBlocks !== BigInt(0) ? message.displayNameAppealPeriodBlocks?.toString() : undefined;
|
|
1563
|
+
obj.max_archived_titles = message.maxArchivedTitles === 0 ? undefined : message.maxArchivedTitles;
|
|
1564
|
+
obj.nomination_window_epochs = message.nominationWindowEpochs !== BigInt(0) ? message.nominationWindowEpochs?.toString() : undefined;
|
|
1565
|
+
obj.max_nominations_per_member = message.maxNominationsPerMember !== BigInt(0) ? message.maxNominationsPerMember?.toString() : undefined;
|
|
1566
|
+
obj.retro_reward_max_recipients = message.retroRewardMaxRecipients !== BigInt(0) ? message.retroRewardMaxRecipients?.toString() : undefined;
|
|
1567
|
+
obj.retro_reward_budget_per_season = message.retroRewardBudgetPerSeason === "" ? undefined : message.retroRewardBudgetPerSeason;
|
|
1568
|
+
obj.retro_reward_min_conviction = message.retroRewardMinConviction === "" ? undefined : message.retroRewardMinConviction;
|
|
1569
|
+
obj.nomination_conviction_half_life_epochs = message.nominationConvictionHalfLifeEpochs !== BigInt(0) ? message.nominationConvictionHalfLifeEpochs?.toString() : undefined;
|
|
1570
|
+
obj.nomination_rationale_max_length = message.nominationRationaleMaxLength === 0 ? undefined : message.nominationRationaleMaxLength;
|
|
1571
|
+
obj.nomination_min_trust_level = message.nominationMinTrustLevel === 0 ? undefined : message.nominationMinTrustLevel;
|
|
1572
|
+
obj.nomination_stake_min_trust_level = message.nominationStakeMinTrustLevel === 0 ? undefined : message.nominationStakeMinTrustLevel;
|
|
1573
|
+
obj.nomination_min_stake = message.nominationMinStake === "" ? undefined : message.nominationMinStake;
|
|
1574
|
+
return obj;
|
|
1575
|
+
},
|
|
1576
|
+
fromAminoMsg(object) {
|
|
1577
|
+
return SeasonOperationalParams.fromAmino(object.value);
|
|
1578
|
+
},
|
|
1579
|
+
toAminoMsg(message) {
|
|
1580
|
+
return {
|
|
1581
|
+
type: "sparkdream/x/season/SeasonOperationalParams",
|
|
1582
|
+
value: SeasonOperationalParams.toAmino(message)
|
|
1583
|
+
};
|
|
1584
|
+
},
|
|
1585
|
+
fromProtoMsg(message) {
|
|
1586
|
+
return SeasonOperationalParams.decode(message.value);
|
|
1587
|
+
},
|
|
1588
|
+
toProto(message) {
|
|
1589
|
+
return SeasonOperationalParams.encode(message).finish();
|
|
1590
|
+
},
|
|
1591
|
+
toProtoMsg(message) {
|
|
1592
|
+
return {
|
|
1593
|
+
typeUrl: "/sparkdream.season.v1.SeasonOperationalParams",
|
|
1594
|
+
value: SeasonOperationalParams.encode(message).finish()
|
|
1595
|
+
};
|
|
1596
|
+
}
|
|
1597
|
+
};
|