CcS Blockchain Solution for Personal And Enterprise 

Executes 10.000+ Transactions per second. 

  • Pos Based Blockchain
  • Max Supply: 65.000.000 units
  • Personal & Enterprise Solutions
  • Inhouse Marketing Collaboration
  • Build-in Smart Contract Generator
  • Premade Usecases for project owners

Executive summary

A brief explanation of the CcS Blockchain

The CcS Blockchain is a public blockchain platform that is fully decentralized via peer to peer connections. Powered by the security of Bitcoin UTXO verification in combination with multiple virtual machines including the famous Ethereum Virtual Machine and x86 VM support. CcS Blockchain is a proof of stake based blockchain meaning that it is very cost efficient to operate. Anyone can contribute or add-on to the blockchain via Smart Contract Development allowing the use cases of the CcS Blockchain to expand and improve over time.

Features of the CcS Blockchain

Total solution for all your blockchain facilitations

Decentralized Wallet

Manage your assets and private keys easily with use via our 100% secured and decentralized blockchain protocol.


Manage Multiple Wallets

Connect multiple CcS Blockchain wallets to your account and manage assets of multiple instances via one machine, or use multiple devices to manage all your assets.


Smart Contract Generator

Project owners can easily create their own asset, application or collectibles with the build-in smart contract generator.


Manage contacts easily

The CcS Blockchain has a build in contact address book to manage the wallets of contacts easily.


Build-in Block Explorer

Verify transactions on the blockchain directly via the build-in block explorer inside the Core Wallet and connect them to your transaction log.


Stake & Grow

Stake & Grow is a POS based mining method allowing holders of the CcS Coin to receive rewards both online and offline.


Problems we solve

For blockchain users and project launchers

High Transaction fees

Contact management

Smart Contract creation

Technical Support

Technical difficulties

Asset management

Swapping & Storage

Marketing Assistance

Slow processing

User to User (p2p)

Project use cases

Instant transactions

What makes CcS Stand Out

Rapidly growing public blockchain thinking forward on safety, speed and decentralisation

Faster Blockchain

With support for 10.000 + Transactions per second the CcS Blockchain belongs to one of the faster blockchains that are currently available on the market.

Secure Blockchain

Uses multiple cryptographic algorithms and real time difficulty adjustments to prevent malicious actions or hash fluctuation.

Fully Decentral

CcS Blockchain is a fully decentralized initialized blockchain that is operating independent in collaboration with the community .

UTXO Improvements

With drastic improvements to the UTXO Model (Unspent transaction output) avoiding waste of power and fees at multiple levels.

Simplified Asset Creation

Creating and managing assets at a whole new level that is unseen in the Blockchain atmosphere by utilizing highly advanced automated creation tools.

Cheaper to afford

The CcS Blockchain is based on very flexible and scalable technology allowing it to be cheaper to run and maintain as well as to validate transactions

Blockchain Economy

Decentral financial management for everyone

Technical Documents

Smart Contract Examples

Create your own bank

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
// This is a smart contract - a program that can be deployed to the CcS blockchain.
contract SimpleWallet {
// An 'address' is comparable to an email address - it's used to identify an account on CcS.
address payable private owner;
// Events allow for logging of activity on the blockchain.
// Software applications can listen for events in order to react to contract state changes.
event LogDeposit(uint amount, address indexed sender);
event LogWithdrawal(uint amount, address indexed recipient);
// When this contract is deployed, set the deploying address as the owner of the contract.
constructor() {
owner = payable(msg.sender);
}
// Send CCS from the function caller to the SimpleWallet contract
function deposit() public payable {
require(msg.value > 0, "Must send CCS.");
emit LogDeposit(msg.value, msg.sender);
}
// Send CCS from the SimpleWallet contract to a chosen recipient
function withdraw(uint amount, address payable recipient) public {
require(msg.sender == owner, "Only the owner of this wallet can withdraw.");
require(address(this).balance >= amount, "Not enough funds.");
emit LogWithdrawal(amount, recipient);
recipient.transfer(amount);
}
}

Launch your own token

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
// This is a smart contract - a program that can be deployed to the CcS blockchain.
contract SimpleToken {
// An address is comparable to an email address - it's used to identify an account on CcS.
address public owner;
uint256 public constant token_supply = 1000000000000;
// A mapping is essentially a hash table data structure.
// This mapping assigns an unsigned integer (the token balance) to an address (the token holder).
mapping (address => uint) public balances;
// When 'SimpleToken' contract is deployed:
// 1. set the deploying address as the owner of the contract
// 2. set the token balance of the owner to the total token supply
constructor() {
owner = msg.sender;
balances[owner] = token_supply;
}
// Sends an amount of tokens from any caller to any address.
function transfer(address receiver, uint amount) public {
// The sender must have enough tokens to send
require(amount <= balances[msg.sender], "Insufficient balance."); // Adjusts token balances of the two addresses balances[msg.sender] -= amount; balances[receiver] += amount; } } }

Create your own Dapplication

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.16 <0.9.0;contract SimpleStorage {uint storedData;function set(uint x) public {storedData = x;}function get() public view returns (uint) {return storedData;} }

Create your own collectibles

pragma solidity ^0.5.0;

import "./TradeableCcS721Token.sol";
import "openzeppelin-solidity/contracts/ownership/Ownable.sol";

/**
* @title Creature
* Creature - a contract for my non-fungible creatures.
*/
contract Creature is TradeableCcS721Token {
constructor(address _proxyRegistryAddress) TradeableCcS721Token("Creature", "OSC", _proxyRegistryAddress) public {}

function baseTokenURI() public view returns (string memory) {
return "https://opensea-creatures-api.herokuapp.com/api/creature/";
}
}

Transaction Platform

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
// This is a smart contract - a program that can be deployed to the CcS blockchain.
contract SimpleWallet {
// An 'address' is comparable to an email address - it's used to identify an account on CcS.
address payable private owner;
// Events allow for logging of activity on the blockchain.
// Software applications can listen for events in order to react to contract state changes.
event LogDeposit(uint amount, address indexed sender);
event LogWithdrawal(uint amount, address indexed recipient);
// When this contract is deployed, set the deploying address as the owner of the contract.
constructor() {
owner = payable(msg.sender);
}
// Send CcS from the function caller to the SimpleWallet contract
function deposit() public payable {
require(msg.value > 0, "Must send CcS.");
emit LogDeposit(msg.value, msg.sender);
}
// Send CcS from the SimpleWallet contract to a chosen recipient
function withdraw(uint amount, address payable recipient) public {
require(msg.sender == owner, "Only the owner of this wallet can withdraw.");
require(address(this).balance >= amount, "Not enough funds.");
emit LogWithdrawal(amount, recipient);
recipient.transfer(amount);
}
}

Ecommerce Connect

We are developing Ecommerce scalable checkout plugins at the moment. The CcS Ecommerce Checkout Plugin will allow anyone to integrate CcS Payments via their website, application or ecommerce store within seconds. The CcS Ecommerce Checkout will benefit from instant approved payment notifications with the extreme high speed of the CcS Blockchain Transaction Limit.

CcS Global Spread

The CcS Blockchain operates and collaborates with many countries around the world.

CcS Nodes Map

The nodes that connect the blockchain for you

Coming Soon

A digital currency for everyone

The CcS Blockchain is a social sharing oriented ecosystem.