Skip to content

Frequently Asked Questions (FAQ)

Common questions and answers about Cloud Service.

General

What is Cloud Service?

Cloud Service is a decentralized computing platform that combines cryptocurrency with distributed cloud computing. It uses Proof of Work mining with the ZelHash algorithm to secure the network and reward participants.

What is the ticker symbol?

The ticker symbol is CS.

What is the total supply?

Cloud Service has no hard maximum supply. The block reward starts at 150 CS, halves twice (to 75 CS, then 37.5 CS), and then remains at 37.5 CS per block permanently. All CS is mined through Proof of Work — there is no premine or ICO.

What is the block time?

The block time is approximately 2 minutes.

What algorithm does Cloud Service use?

Cloud Service uses ZelHash (Modified Equihash 125,4), an ASIC-resistant, GPU-friendly mining algorithm.


Getting Started

How do I get Cloud Service?

You can obtain Cloud Service by:

  1. Mining — Use a GPU to mine blocks
  2. Buying — Purchase from exchanges
  3. Receiving — Accept as payment

How do I create a wallet?

  1. Download the Cloud Service wallet from GitHub Releases
  2. Install and open the wallet
  3. Your wallet is ready — backup your wallet.dat file

How do I start mining?

  1. Install Cloud Service node
  2. Get mining software (GMiner, T-Rex, etc.)
  3. Configure with your wallet address
  4. Start mining solo or join a pool

See Mining Overview for details.


Mining

Can I mine with CPU?

CPU mining is not profitable for Cloud Service. The ZelHash algorithm is designed for GPU mining.

What GPUs can I use?

Both AMD and NVIDIA GPUs are supported:

  • AMD: RX 5000 series and newer
  • NVIDIA: GTX 1600 series and newer

How much can I earn mining?

Earnings depend on:

  • Your hash rate
  • Network difficulty
  • CS price
  • Electricity cost

Use a mining calculator to estimate profitability.

Should I mine solo or join a pool?

OptionBest For
Solo MiningHigh hash rate, patient miners
Pool MiningConsistent income, smaller miners

What is the minimum GPU VRAM?

Minimum 1.3 GB VRAM is required for ZelHash (Equihash 125,4). Most modern GPUs with 2 GB or more VRAM are compatible.


Wallet

I forgot my wallet password. Can I recover it?

No. If you encrypted your wallet and forgot the password, the funds are permanently locked. Always store your password securely.

I lost my wallet.dat file. Can I recover it?

Only if you have a backup. Always maintain multiple backups of your wallet.

How do I backup my wallet?

bash
# Using CLI
cs-cli backupwallet /path/to/backup/wallet.dat

# Manual copy
cp ~/.cs/wallet.dat /secure/location/

Can I use the same address multiple times?

Yes, but for privacy, it's recommended to generate a new address for each transaction.

How do I check my balance?

bash
# CLI
cs-cli getbalance

# GUI wallet
Open wallet and view balance on main screen

Transactions

How long do transactions take?

  • Confirmation: ~2 minutes (1 block)
  • Secure: ~12 minutes (6 confirmations)
  • Very secure: ~24 minutes (12 confirmations)

Why is my transaction unconfirmed?

Possible reasons:

  • Fee too low
  • Network congested
  • Transaction invalid

Wait or try with a higher fee.

What is the minimum transaction fee?

The minimum relay fee is 0.00001 CS/KB.

Can I cancel a transaction?

Once broadcast, transactions cannot be cancelled. If unconfirmed, you may be able to replace it with a higher fee (RBF).


Nodes

What are the minimum requirements for a node?

ComponentMinimum
CPU2 cores
RAM4 GB
Storage50 GB SSD
Network5 Mbps

Do I need to run a full node?

No, but it's recommended for:

  • Full network participation
  • Transaction verification
  • Privacy
  • Development

How much bandwidth does a node use?

Approximately 5-10 GB per day for upload and download each.

Can I run a node on a VPS?

Yes, any VPS meeting the requirements can run a Cloud Service node.


Network

Is Cloud Service ASIC-resistant?

Yes, ZelHash is designed to resist ASIC development by utilizing full GPU capabilities.

What is the current network hash rate?

Check with:

bash
cs-cli getmininginfo

When is the next halving?

Cloud Service has only 2 halvings, spaced ~2.5 years apart (655,350 blocks each). The reward goes 150 CS → 75 CS → 37.5 CS, then stays fixed at 37.5 CS permanently. There is no further halving after that.

Does Cloud Service have smart contracts?

Smart contract functionality is planned for future upgrades.


Security

Is Cloud Service secure?

Yes, Cloud Service uses battle-tested Proof of Work security with:

  • Decentralized mining
  • Strong cryptography
  • Active network monitoring

How many confirmations are safe?

  • Small amounts: 6 confirmations
  • Large amounts: 12+ confirmations

Can Cloud Service be hacked?

Like any blockchain, a 51% attack is theoretically possible but economically impractical given the network's hash rate.


Development

Is there an API?

Yes, Cloud Service provides:

  • JSON-RPC API
  • REST API
  • WebSocket API
  • ZeroMQ

See API Overview for details.

Are there SDKs?

Official SDKs are available for:

  • JavaScript/TypeScript
  • Python
  • Go
  • Rust

Can I contribute to Cloud Service?

Yes! Contributions are welcome:


Community

Where can I ask questions?

How can I help the project?

  • Run a node
  • Mine Cloud Service
  • Spread the word
  • Contribute code
  • Create content

Troubleshooting

Node won't start

  1. Check logs: tail -f ~/.cs/debug.log
  2. Verify config: cat ~/.cs/cs.conf
  3. Check ports: netstat -tulpn | grep cscoin

Can't connect to peers

  1. Check firewall settings
  2. Verify port 16178 is open
  3. Add nodes manually: cs-cli addnode <IP>:16178 onetry

Wallet not syncing

  1. Restart the node
  2. Check network connection
  3. Verify blockchain data integrity

Next Steps

Released under the MIT License.