Protocol Guides

The EOSIO Protocol section describes how the EOSIO platform actually works and can be split into two layers. The core which is open source and implemented in C++ and system which is implemented in smart contracts running on the core.

Core

The EOSIO Core provides the basic building blocks for the system layer and are not implemented as smart contracts. The core implementation is open source and the source code can be customised to suit specific business requirements.

The core protocols are:

  1. Consensus Protocol
  2. Transactions Protocol
  3. Network or Peer to Peer Protocol
  4. Accounts and Permissions

System

The EOSIO blockchain platform is unique in that the features and characteristics of the blockchain built on it are flexible, that is, they can be changed, or be modified completely to suit each business case requirement. Core blockchain features such as consensus, fee schedules, account creation and modification, token economics, block producer registration, voting, multi-sig, etc., are implemented inside smart contracts which are deployed on the blockchain built on the EOSIO platform. These smart contracts are referred to as system contracts and the layer as the EOSIO system layer, or simply system layer.

Block.one implements and maintains these system contracts, as samples only, encapsulating the base functionality for an EOSIO based blockchain and they are listed below:

  1. eosio.bios
  2. eosio.system
  3. eosio.msig
  4. eosio.token
  5. eosio.wrap

Also part of the system layer are the following concepts:

  1. System accounts
  2. RAM
  3. CPU
  4. NET
  5. Stake
  6. Vote