Skip to main content

Platform & Toolchain

Local development environment

  • Getting Started: Install the Antelope platform in your local development environment.

Toolchain

The Telos platform is made up of the following components and toolchain:

  1. nodeos (node + EOSIO = nodeos): the core Antelope node daemon that can be configured with plugins to run a node. Example uses are block production, dedicated API endpoints, and local development.
  2. cleos (CLI + EOSIO = cleos): the command line interface to interact with the blockchain and to manage wallets.
  3. keosd (key + EOSIO = keosd): the component that securely stores Antelope keys in wallets.
  4. EOSIO.CDT: toolchain for WebAssembly (Wasm) and a set of tools to facilitate smart contract writing for the Antelope platform.

The basic relationship between these components is illustrated in the following diagram:

Antelope Development Lifecycle

[[info | Note]] | Leap also provides a frontend library for javascript development called EOSJS along with Swift and Java SDKs for native mobile applications development.

Nodeos

Nodeos is the core Antelope node daemon. Nodeos handles the blockchain data persistence layer, peer-to-peer networking, and contract code scheduling. For development environments, nodeos enables you to set up a single node blockchain network. Nodeos offers a wide range of features through plugins which can be enabled or disabled at start time via the command line parameters or configuration files.

You can read detailed documentation about nodeos here.

Cleos

cleos is a command line tool that interfaces with the REST APIs exposed by nodeos. You can also use cleos to deploy and test Antelope smart contracts.

You can read detailed documentation about cleos here.

Keosd

keosd is a key manager daemon for storing private keys and signing digital messages. keosd provides a secure key storage medium for keys to be encrypted in the associated wallet file. The keosd daemon also defines a secure enclave for signing transaction created by cleos or a third party library.

[[info | Note]] | keosd can be accessed using the wallet API, but it is important to note that the intended usage is for local light client applications. keosd is not for cross network access by web applications trying to access users' wallets.

You can read detailed documentation about keosd here.

EOSIO.CDT

EOSIO.CDT is a toolchain for WebAssembly (Wasm) and a set of tools to facilitate contract writing for the Antelope platform. In addition to being a general-purpose WebAssembly toolchain, EOSIO-specific optimizations are available to support building Antelope smart contracts. This new toolchain is built around Clang 7, which means that EOSIO.CDT has most of the current optimizations and analyses from LLVM.

EOSJS

A Javascript API SDK for integration with EOSIO-based blockchains using the EOSIO RPC API.