Skip to main content

Glossary and Acronyms

ABI

Application Binary Interface. A JSON-based description on how to convert user actions between their JSON and binary representations. The ABI may also describe how to convert the database state to/from JSON. Once you have described your contract via an ABI this allows developers and users to interact with your contract seamlessly via JSON. Abbreviation: ABI

Account

An account is a unique identifier and a requirement to interact with an Antelope-based blockchain. Unlike most other cryptocurrencies, transfers are sent to a human readable account name instead of a public key, while keys attributed to the account are used to sign transactions.

An account is a participant in an Antelope blockchain.

An account is a collection of authorizations, stored on the blockchain, and is used to identify a sender/recipient. It has a flexible authorization structure that enables it to be owned either by an individual or group of individuals depending on how permissions have been configured. An account is required to send or receive a valid transaction to the blockchain. Ownership of each account on an Antelope blockchain is solely determined by the account name.

Account Name

An account name is a human-readable identifier that is stored on the blockchain. Standard account names can only contain the characters .abcdefghijklmnopqrstuvwxyz12345. a-z (lowercase), 1-5 and . (period), must start with a letter and must be 12 characters in length. Non-standard account names have all restrictions of the standard ones except they can have less than 12 characters in length.

Account Name Bidding

For non-standards accounts, those under 12 characters, Antelope based blockchains provide a system where blockchain users can bid on accounts by submitting the bids via an auction process. Only one account name with the highest bidding price can be auctioned off every 24 hours among all submitted account names, that is, the system considers a bidding to be successful only when the bidding price is the highest among all other account bidding prices submitted.

Action

Functionality exposed by a smart contract that is exercised by passing the correct parameters via an approved transaction to an Antelope network. Related: Account

Airdrop (cryptocurrency airdrop)

A marketing implementation that involves sending free coins or tokens to wallet addresses to promote awareness of a new currency.

Airgrab

A method to deploy tokens for dApp developers. Use your personal RAM to receive airgrab tokens.

Antelope

The technology that powers EOS, WAX, Telos, UX, Ultra

API

Application Programming Interface. A computer interface that enables two computer applications to interact with each other.

ARS

API Research and Standards Team

AUM

Assets Under Management. AUM is a popular metric within the investment industry and decentralized digital asset (cryptocurrency) space. It is a measure of the size and success of an investment management entity.

Bancor Relay

Antelope adopts a free-market approach to allocating scarce resources. To facilitate this market, the eosio system contract allows users to buy RAM from the system and sell RAM back to the system in exchange for the blockchain's native tokens. This provides liquidity in the RAM market while facilitating price discovery. The less unallocated RAM available to the market maker the higher the market maker prices the remaining RAM. The algorithm used for this market maker is known as a Bancor Relay. A Bancor Relay does not set the price of RAM. It only offers to buy and sell at previously established market rates. Anytime the current market rate is different than the current price offered by the Bancor Relay, traders will buy or sell RAM pushing to closer to the market determined price. Related: Account

Block

A confirmable unit of a blockchain. Each block contains zero or more transactions, as well as a cryptographic connection to all prior blocks. When a block becomes "irreversibly confirmed" it's because a supermajority of block producers have agreed that the given block contains the correct transactions. Once a block is irreversibly confirmed, it becomes a permanent part of the immutable blockchain. Related: Account

Blockchain Application

A blockchain application is a software application that has integrated a blockchain in its architecture as the storage layer for part of, or, all of its data. This includes software applications that do not own their own contract on the blockchain and instead only interact with the system contracts of the blockchain.

Block Header

A part of the block which holds metadata related to the block. In an Antelope block header this includes things like the transaction Merkle root, the action Merkle root, the producer who produced the block, the block id of the previous block, the block id of the current block, and the block timestamp. Related: Account

Block Log

The block log is an append only log of blocks written to disk and contains all the irreversible blocks.

Block Producer

A Block Producer is an identifiable entity composed of one or more individuals that express interest in participating in running an Antelope network. By participating it is meant these entities will provide a full node, gather transactions, verify their validity, add them into blocks, and propose and confirm these blocks. A Block producer is generally required to have experience with system administration and security as it is expected that their full-node have constant availability.

Block-Producing Node

A full node running nodeos that is actively producing blocks. A producing node, if voted out, will become a producing node on "standy". Standby producers will produce blocks and will be rewarded proportionally to their vote stake.

Block Producer Schedule

The list of block producers who currently have the possibility of being selected to produce the next block. This list changes with every new block. Related: Account

BP

Blockchain Producer

Byzantine Fault Tolerance

In the context of distributed systems, Byzantine Fault Tolerance (BFT) is the ability of a distributed computer network to function as desired and correctly reach a sufficient consensus despite malicious components (nodes) of the system failing or propagating incorrect information to other peers. In an EOSIO based blockchain BFT is achieved using a combination of Delegated Proof of Stake, the last irreversible block, and the fact that a producer cannot sign two blocks with the same block number. Related: Account

CDT

Contract Development Toolkit. A toolchain for WebAssembly (Wasm). A set of tools to facilitate smart contract writing for the Antelope framework, such as a debugger, profiler, and smart contract development tools.

Chainbase

A version controlled, fast, transactional database.

Chain State

The chain state (or "database" as it is often called) is a memory mapped file, which stores the blockchain state of each block (account details, deferred transactions, transactions, data stored using multi index tables in smart contracts, etc.). Once a block becomes irreversible the chain state is no longer cached.

Cleos

cleos is a command line tool that interfaces with the REST api exposed by nodeos. In other words cleos is the command line tool through which you can interface with an Antelope-based blockchain. cleos is used to deploy and test Antelope smart contracts. cleos contains documentation for all of its commands. For a list of all commands known to cleos, simply run it with no arguments. cleos = command line + eos

Coalition

EOS, WAX, Telos, UX (Origin)

Consensus / DPoS

A large number of participants or stakeholders elect a smaller number of delegates, which in turn make decisions for them.

Confirmed Transaction

On completion of the transaction, a transaction receipt is generated. Receiving a transaction hash does not mean that the transaction has been confirmed, it only means that the node accepted it without error, which also means that there is a high probability other producers will accept it. A transaction is considered confirmed when a nodeos instance has received, processed, and written it to a block on the blockchain, i.e. it is in the head block or an earlier block.

Core

The core is used to refer to the Antelope blockchain native components, e.g. native actions, chain libraries, nodeos daemon, etc. The core is the Antelope platform on which Antelope-based blockchains can be instantiated and tailored by means of deploying smart contracts (including the system smart contracts). Therefore, the system smart contracts are not considered part of the core or native blockchain implementation.

CPU

Central Processing Unit. CPU is processing power granted to an account by an Antelope-based blockchain. The amount of CPU an account has is measured in microseconds, and represents the amount of processing time an account has at its disposal when executing its actions. CPU is recalculated after each block is produced, based on the amount of system tokens the account staked for CPU bandwidth in proportion to the amount of total system tokens staked for CPU bandwidth at that time.

CRM

Customer Relationship Management

Cryptographic Hash

A cryptographic hash function is a hash function which takes an input (or 'message') and returns a fixed-size alphanumeric string. The alphanumeric string is called the 'hash value', 'message digest', 'digital fingerprint', 'digest' or 'checksum'.

Custom Permission

In addition to the native permissions, owner and active, an account can possess custom named permissions that are available to further extend account management. Custom permissions are incredibly flexible and address numerous possible use cases when implemented. Custom permissions are arbitrary and impotent until they have been linked to an action.

DAO

Decentralized Autonomous Organization. A DAO is an organization constructed by rules encoded as a computer program thatis often transparent, controlled by the organization's members, and not influenced by a central government.

Decentralized Autonomous Company

An entity that uses a combination of automation and input from stakeholders, normally in the form of votes. They are often governed by code which describes the purpose of the organisation. Abbreviation: DAC

Deferred Action

Deferred actions are actions sent to a peer action that are scheduled to run, at best, at a later time, at a block producer's discretion. There is no guarantee that a deferred action will be executed. From the perspective of the originating action, i.e., the action that creates the deferred action, it can only determine whether the create request was submitted successfully or whether it failed (if it fails, it will fail immediately). Deferred actions carry the authority of the contract that sends them. A deferred action can also be cancelled by another action.

Delegated Proof of Stake

A large number of participants or stakeholders elect a smaller number of delegates, which in turn make decisions for them. Abbreviation: DPoS

Deserialization

Deserialization is the reverse process of serialization. It turns a stream of bytes into an object in memory. Antelope structures are enhanced with two operators which implement the serialization and deserialization of data to and from the database.

Dispatcher

Every smart contract must provide an apply action handler. The apply action handler is a function that listens to all incoming actions and performs the desired behavior. In order to respond to a particular action, code is required to identify and respond to specific action requests. apply uses the receiver, code, and action input parameters as filters to map to the desired functions that implement particular actions. To simplify the work for contract developers, Antelope provides the EOSIO_DISPATCH macro, which encapsulates the lower level action mapping details of the apply function, enabling developers to focus on their application implementation.

Dispatcher Hooks

In addition to actions and notification handlers, two "hooks" are available. The pre_dispatch hook will fire when the dispatcher is run and allow the smart contract to do some pre-validation and exit early if need be by returning false. If the function returns true then the dispatcher continues to dispatch the actions or notification handlers. The post_dispatch hook will only fire when the dispatcher has failed to match any notification handlers, this allows the user to do some meaningful last ditch validation.

Distributed Ledger Technology

A consensus of replicated, shared, and synchronized digital data geographically spread across multiple sites, countries, or institutions. DLT is also called a shared ledger. Abbreviation: DLT

Digital Signature

A digital signature is a mathematical scheme for verifying the authenticity of digital messages or documents. A valid digital signature, where the prerequisites are satisfied, gives a recipient very strong reason to believe that the message was created by a known sender (authentication), and that the message was not altered in transit (integrity). Digital signatures are a standard element of most cryptographic protocol suites, and are commonly used for software distribution, financial transactions, contract management software, and in other cases where it is important to detect forgery or tampering.

Dune

Docker Utilities for Node Execution. A personal container for Antelope blockchain management, smart contract development, and testing purposes.

EA

Employment Agreement

ENF

EOS Network Foundation

EOS Blockchain

EOS is a smart contract blockchain project that is built with Antelope framework.

EOSIO Types

The EOS source code defines a list of types which ease the developer's work when writing smart contracts, plugins, or when extending the EOS source code. Example types include account_name, permission_name, table_name, action_name, scope_name, weight_type, public_key, etc.

EOSJS

A frontend library for javascript development for native mobile applications development, in addition to Swift and Java SDKs. A Javascript API SDK for integration with Antelope-based blockchains using the Antelope RPC API.

EVM

Earned Value Management. EVM is a project management methodology that integrates schedule, costs, and scope to measure project performance.

FUD

Fear, Uncertaingy, and Doubt. Typically used by media to stoke FUD amongst investors.

Genesis Block

The genesis block is the very first block in the Antelope blockchain. The subsequent block added after the genesis block becomes block 1 and continues the sequence. The genesis block lays the foundation for other blocks to be added to form a blockchain. Related: Account

Genesis Node

The genesis node is the first node in the blockchain network. The genesis node is used to perform a set of actions such as creating system accounts, initializing system, and token contracts in order to create a fully-functional blockchain with varying capabilities such as governance, resource allocation, and more.

Governance

Blockchain governance is a lot like other kinds of governance, except that it is underpinned by smart contracts and transparent voting on the blockchain. Governance, the mechanism by which collective decisions are made, of an Antelope-based blockchain is achieved through 21 active block producers which are appointed by token holder votes. The 21 active block producers continuously create the blockchain via block creation, secure the blocks by validating them, and reach consensus on the state of the blockchain as a whole. Consensus is reached when 2/3+1 active block producers agree on validity of a block , therefore on all transactions contained in it and their order. Related: Account

Head Block

The head block is the last block written to the blockchain, stored in reversible_blocks.

HODL

Hold on for Dear Life. HODL refers to holding onto a crypto investment during a bear or down market in anticipatioin of it rebounding.

Indices

In the context of a multiple index table, an index is a particular ordering of the elements in the table. Multiple index indices allow the same data in one table to be viewed as different data structures by specifying the specific index on the table. Antelope multiple index tables allow for up to 16 unique indices.

Inline Action

Inline actions request other actions that need to be executed as part of the original calling action. Inline actions operate with the same scopes and authorities of the original transaction, and are guaranteed to execute with the current transaction. These can effectively be thought of as nested transactions within the calling transaction. If any part of the transaction fails, the inline actions will unwind with the rest of the transaction.

Irreversible Block

A block is considered irreversible (i.e. immutable) on an Antelope-based blockchain when 2/3rd of the currently elected block producers have acknowledged it. Related: Account

Keosd

keosd is the component that securely stores Antelope keys in wallets. keosd = key + eos

KYC

Know Your Customer

Leap

Antelope code base

Merkle Tree

A Merkle tree is a tree in which every leaf node is labelled with the hash of a data block, and every non-leaf node is labelled with the cryptographic hash of the labels of its child nodes. Hash trees allow efficient and secure verification of the contents of large data structures. Related: Account

Multi-Index

Antelope wraps the boost multi-index library to provide in memory data persistence. A subset of the functionality provided by the boost multi-index is provided in the Antelope multi-index.

Multiple Index Table

Multiple Index Tables, are a way to cache state and/or data in RAM for fast access. Multi index tables support create, read, update, and delete (CRUD) operations, something which the blockchain doesn't (it only supports create and read). Multi index tables are stored in Antelope RAM and each smart contract using a multi index table reserves a partition of the RAM cache. Access to each partition is controlled using the table name, code, and scope, and can have up to 16 indexes or indices defined. Related: Account

Multisig

Multisig is a short term for multiple signatures. It’s used to describe the case in which one requires more than one account's permission to execute a transaction. Antelope provides the system account eosio.msig, which can be used to push onto the blockchain the multisig proposals and their corresponding account's permission required to approve the proposal. Multisig, when used properly, increases the security of an account, the security of a smart contract, and it's also the method by which Block Producers are able to affect changes within an Antelope blockchain.

NET

NET is required to store transactions on an Antelope-based blockchain. The amount of NET an account has is measured in bytes, representing the amount of transaction storage an account has at its disposal when creating a new transaction. NET is recalculated after each block is produced, based on the system tokens staked for NET bandwidth by the account. The amount allocated to an account is proportional with the total system tokens staked for NET by all accounts. Do not confuse NET with RAM, although it is also storage space, NET measures the size of the transactions and not contract state.

Nodeos

nodeos is 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. nodeos = node + eos

Non-Producing Node

A full node running nodeos that is only watching and verifying for itself each block, and maintaining its own local full copy of the blockchain. A non-producing node that is in the "standby pool" can, through the process of being voted in, become a Producing Node. A producing node, if voted out, will become a non-producing node. For large Antelope changes, non-producing nodes are outside the realm of the "standby pool". Related: Account

Oracle

An oracle, in the context of blockchains and smart contracts, is an agent that finds and verifies real-world occurrences and submits this information to a blockchain to be used by smart contracts.

Packed Transaction

In order to transfer transaction content between nodes faster and to save storage space when storing transaction content in and Antelope-based blockchain database, the transactions are 'translated' from json into a packed form which is smaller in size. To get the packed version of a transaction one can use the cleos convert command.

Peer-to-peer

Peer-to-peer computing or networking is a distributed application architecture that partitions tasks or workloads between peers. If peers are equally privileged, equipotent participants in an application, they are said to form a peer-to-peer network of nodes.

Pending Block

The pending block is the block currently being built by each node. Transactions are added to the pending block as they are received and processed. The pending block becomes the head block once it is written to the blockchain. Note that a head block is initially reversible. If this instance of nodeos is the producing node then the pending block will eventually be distributed to other nodeos instances.

Permission

A weighted security mechanism that determines whether or not a message is properly authorized by evaluating its signature(s) authority. Every account has two default permissions, owner and active, but can also have custom permissions to further secure communications from an account to contracts. Every permission name has a "parent." Parents possess the authority to change any of the permissions settings for any and all of their children.

Permission level

Permissions are arbitrary names used to define the requirements for a transaction sent on behalf of that permission. Permissions can be assigned for authority over specific contract actions by "linking authorization" or linkauth. Every account has two native named permissions, owner and active. Every permission name has a "parent." Parents possess the authority to change any of the permission settings for any and all of their children. In addition to the native permissions, an account can possess custom named permissions that are available to further extend account management. Custom permissions are incredibly flexible and address numerous possible use cases when implemented correctly. Given this context permission level is used to identify a specific permission, either active, or owner, or a custom one.

Permission Threshold

The sum of permission weights necessary for a signature to be considered valid.

Permission Weight

A permission weight is a value given to an account for authorization purposes. This is typically used in the context of a mutli-sig to give one or more accounts more control over a multi-sig than others. Related: Account

Plugin

nodeos plugins are software components that implement features that complement the native Antelope blockchain basic implementation. They can be enabled or disabled through the nodeos configuration file or specifying them in the command line that launches the nodeos daemon.

PoS

Proof of Stake

Private Key

A private key is a secret key used to sign transactions. In Antelope, a private key's authority is determined by it's mapping to an Antelope account name.

Private Network

A private network is a production network, or a test network, to which access is private, that is, the API endpoints, and block producers connectivity URLs and IPs are private. Access to a private network is done via invitation, or, upon request to join, is granted by the owners of the private network.

Privileged

Privileged accounts are accounts which can execute transactions while skipping the standard authorization check. To ensure that this is not a security hole, the permission authority over these accounts is granted to the eosio.prods account. An account can be set as privileged by sending the native action setpriv to an Antelope-based blockchain, specifying the account to be set as privileged, and providing the correct permission, or, by using cleos command line utility.

Public Key

A publicly available key that can be authorized to permissions of an account and can be used to identify the origin transaction. A public key can be inferred from a signature.

Public Network

A public network is a production network instantiated with the Antelope platform. For a public network, the tokens have value on public markets, and all of the features required to run and maintain the network, such as consensus and governance, are enabled. To contrast a public network, in a private network typically tokens are not traded on public markets, and there is less emphasis placed on governance.

RAM

Random Access Memory. RAM is required to store account information such as keys, balances, and contract state on an Antelope-based blockchain. Because the amount of RAM available to a single computer is limited by Moore’s Law and other technological advances, RAM is fundamentally scarce and must be purchased on a free-market inside an Antelope-based blockchain. Related: Account

RAM Market

In order to persist data on an Antelope-based blockchain, a user must first purchase RAM. The Antelope RAM market uses the Bancor Relay algorithm in a system smart contract to offer to buy and sell RAM from users at previously established market rates. Related: Account

Read Mode

An Antelope-based blockchain allows contract developers to persist state across actions, and consequently transaction, boundaries. For example the sample eosio.token contract keeps balances for all users in the database. Each instance of nodeos keeps the database in memory, so contracts can read and write data quickly. However, at any given time there can be multiple correct ways, called modes, to query that data.

Retired Action

An action within a validated transaction, that is, an action whose transaction was executed and pushed to a block, but may or may not be final yet.

REX

Resource Exchange. The REX is a CPU and Network resource rental market in which holders of the core token of a blockchain can buy and sell slices of the REX pool in the form of REX tokens. Blockchain users can then rent CPU and Network resources from the REX pool.

Reversible Block

Any block on an Antelope-based blockchain with a block number greater than the last irreversible block. Reversible blocks are blocks that are not currently guaranteed to be on the blockchain. Related: Account

RFI

Request for Information

RFP

Request for Proposal. An RFP is a public request from the Antelope+ coalition for bids on a body of work.

RFQ

Request for Quote

Ricardian Contract

In the Antelope-based blockchain context Ricardian Contract is a digital document that accompanies a smart contract and defines the terms and conditions of an interaction between the smart contract and its users, written in human readable text, which is then cryptographically signed and verified. It is easily readable for both humans and programs, and aids in providing clarity to any situations that may arise in the interactions between smart contract and its users.

Rugged

Rugged is an abbreviation of "rug pull", which means to scam or trick someone, to pull the rug from beneath them. Common on social media.

Scope

Scope is a region of data within a contract. Contracts can only write to regions in their own contracts but they can read from any other contract's regions. Proper scoping allows transactions to run in parallel for the same contract because they do not write to the same regions. Scope is not to be conflated with an account name, but contracts can use the same value for both for convenience.

SDK

Software Development Kit. Use an SDK to build APIs.

Serialization

Serialization is the process of turning an object in memory into a stream of bytes so you can store it on disk or send it over the network

Signature

A signature is a mathematical scheme for demonstrating the authenticity of digital messages or documents

Smart Contract

A smart contract is a computer program or transaction protocol intended to facilitate, verify, or enforce the negotiation or performance of a contract. A smart contract automatically executes, controls, or documents legally relavant events and actions according to the terms of a contract or an agreement.

Staking

Staking is the act of locking tokens for resources on an Antelope network. This includes but is not limited to, CPU time, RAM, and on-chain governance.

Standard Account Name

Standard account names can only contain the characters .abcdefghijklmnopqrstuvwxyz12345. a-z (lowercase), 1-5 and . (period), must start with a letter and must be 12 characters in length.

Standby Pool

A set of about 100 full nodes that have expressed the desire to be selected as block producers, and are capable of doing so on demand. Whenever the chain needs to replace an existing BP with a new one, the new one is drawn from the standby pool.

SYS

SYS is the blockchain default token name for an Antelope-based blockchain. Any fork of the Antelope open source has the option to rename it, through a very simple procedure, to any token name that meets the symbol validation rules.

System

Everything that is part of Antelope which is not part of core, is referred to as system, e.g. system accounts, privileged accounts, system contracts. From an architectural point of view system components sit on top of the core/native components.

System Contract

The design of the Antelope blockchain calls for a number of smart contracts that are run at a privileged permission level in order to support functions such as block producer registration and voting, token staking for CPU and network bandwidth, RAM purchasing, multi-sig, etc. These smart contracts are referred to as the system contracts and are the following, eosio.bios, eosio.system, eosio.token, eosio.msig and eosio.wrap (formerly eosio.sudo) contracts.

Tables

Tables on an Antelope-based blockchain are achieved via Multiple Index Table. Related: Account

Test Network

A test network or testnet is an instantiation of the Antelope platform that is intended for testing purposes. Generally, the native token has no value and is given away to developers so they can test. Some features of a testnet may be disabled such as consensus and governance.

Transaction

A complete all-or-nothing change to the Blockchain. A combination of one or more actions. Usually the execution result of a Smart Contract.

Transaction Reciept

On completion of a transaction, a transaction receipt is generated. This receipt takes the form of a hash. Receiving a transaction hash does not mean that the transaction has been confirmed, it simply means that the node accepted it without error, which also means that there is a high probability other producers will accept it.

Transaction Trace

Transaction trace is a log of all the actions that took place as a result of an initial action (inline actions, deferred actions, context free actions, etc), including the initial action, for all actions that are processed on the blockchain. A transaction trace for one transaction includes among other things, the transaction id, the block id that the transaction is part of, the time when the block was produced, the producer id, the time elapsed to process the transaction, and a list of all actions contained in the transactions.

TVL

Total Value Locked. TVL is the amount of user funds deposited in a decentralized finance (DeFi) protocol.

Unconfirmed Transaction

A transaction is considered unconfirmed as long as no nodeos instance has received, processed, and written it to a block on the blockchain, i.e. it is not in the head block or a block earlier than the head block.

Wait

Wait is measured in seconds and it is the time to wait until a delayed transaction is executed. Its value can not be higher than the max_transaction_delay which is set in the global configuration file.

Wallet

Wallets are clients that store keys that may or may not be associated with the permissions of one or more accounts. Ideally a wallet has a locked (encrypted) and unlocked (decrypted) state that is protected by a high entropy password.

Wallet Import Format

An encoding for a private EDSA key. Antelolpe uses the same version, checksum, and encoding scheme as the Bitcoin WIF addresses and should be compatible with existing libraries. Abbreviation: WIF

WebAssembly

The Antelope-based blockchains execute user-generated applications and code using WebAssembly. WASM is an emerging web standard with widespread support of Google, Microsoft, Apple, and others. At the moment the most mature toolchain for building applications that compile to WASM is clang/llvm with their C/C++ compiler. For best compatibility, it is recommended that you use the Antelope toolchain to generate WASM. Abbreviation: Wasm