Skip to content

Wallet Overview

Cloud Service offers two official wallet options for storing, sending, and receiving CS tokens securely.

Available Wallets

WalletTypeSecurityBest For
Web WalletBrowserVery High (keys in extension)Daily use, ease of access
CLI Wallet (cs-cli)TerminalHighAdvanced users, node operators

Web Wallet

The official Cloud Service web wallet is available at wallet.cscloudservice.com.

CS Coin Web Wallet

It is a decentralized wallet — your keys, your control. The web wallet works together with the CS Coin browser extension, which signs transactions locally so your private keys never leave your device.

Features

  • ✅ Access from any browser
  • ✅ CS Coin extension for secure transaction signing
  • ✅ Keys never leave the extension
  • ✅ Decentralized — no custodian involved

Getting Started

  1. Visit wallet.cscloudservice.com
  2. Install the CS Coin browser extension
  3. Click Connect via CS Coin Extension
  4. Your wallet is ready to use

CLI Wallet (cs-cli)

The command-line wallet is included with the Cloud Service node software and is ideal for advanced users and node operators.

Basic Commands

bash
# Generate new address
cs-cli getnewaddress

# Check balance
cs-cli getbalance

# Send CS
cs-cli sendtoaddress "destination_address" amount

# Check transaction
cs-cli gettransaction "txid"

Wallet Security

bash
# Encrypt wallet
cs-cli encryptwallet "your_strong_password"

# Backup wallet
cs-cli backupwallet /path/to/backup/wallet.dat

# Export private key
cs-cli dumpprivkey your_address

Wallet Recovery

If You Forget Your Password

Cloud Service wallets use strong encryption. If you forget your password:

  • The wallet cannot be decrypted
  • Funds are permanently locked
  • Always store your password securely

If You Lose Your Wallet File

bash
# Stop the daemon
cs-cli stop

# Replace wallet file
cp /backup/wallet.dat ~/.cs/wallet.dat

# Restart
csd -daemon

# Rescan blockchain
cs-cli rescanblockchain

Released under the MIT License.