Nervos CKB

Nervos CKB

  • Explorer
  • GitHub

›Glossary

Introduction

  • Welcome
  • What is Nervos?

Key Concepts

  • Introduction
  • Nervos Blockchain
  • Cell Model
  • Consensus
  • Economics
  • CKB-VM

Technical Concepts

  • CKB Architecture
  • Design Philosophy
  • State and Tokens
  • Script dependencies
  • Transaction Validation Lifecycle
  • CKB VM Verification Rules

Tooling

  • Introduction
  • Neuron Wallet
  • CKB-Explorer
  • ckb-sdk-js
  • ckb-sdk-ruby
  • Community Contribution
  • Useful Materials

Getting Started

  • Introduction
  • Run a CKB Mainnet Node

Development Guide

  • Introduction
  • Testnet Aggron
  • Dev Chain
  • ckb-cli
  • ckb-sdk
  • Testnet Faucet
  • CKB JSON-RPC Protocols
  • Debugging CKB script

Glossary

  • General Glossary
  • Economic Glossary
  • Technical Glossary

References

  • Troubleshooting
  • Mining Resources
  • Nervos System Design
  • Neuron Wallet Guide
  • Neuron FAQ
Edit

Technical Glossary

Active Cell

A Cell in the current state of CKB. Active cells can be used as inputs to transactions.

Synonyms

  • Live Cell

See Also

  • Cell
  • Input
  • Transaction

Aggron

The name of the main public testnet for Nervos CKB.

Synonyms

  • Testnet

Not To Be Confused With

  • Lina
  • Mainnet

Animagus

A framework layer that runs on top of Nervos CKB which provides an easy way to query for account balances without having to go through the Cell Collection process.

See Also

  • Cell Collection
  • Nervos CKB
  • Animagus Introduction on the Nervos Blog

Args

Args is short for arguments, and is data provided to a Lock Script or Type Script within a Cell. This is nearly identical to arguments provided to a normal command-line application.

Arguments are stored as part of the Cell when it is created.

See Also

  • Cell
  • Lock Script
  • Type Script

Axon

A layer 2 side-chain of the Nervos CKB developed by the Nervos Core Team. Axon provides high-performance smart contract execution while utilizing Nervos CKB as a trust layer.

See Also

  • Layer 2
  • Nervos CKB
  • Axon on Nervos.org

Blake2b

A general-purpose cryptographic hashing algorithm that can create a succinct data fingerprint for any type of data.

See Also

  • Blake Hash Function on Wikipedia
  • Hash Function on Wikipedia

Block Subsidy

A payment that is made in the native currency of the blockchain that is paid to to miners for providing the computational resources create a block and secure the blockchain.

The subsidy consists is the portion of the total block reward that is issued out of inflation for creating the block, but does not include any additional transaction fees that may be paid on top.

Synonyms

  • Block Reward
  • Transaction Fee

BLS

A cryptographic signature scheme for signing and verification.

BLS is short for Boneh–Lynn–Shacham.

See Also

  • Boneh–Lynn–Shacham on Wikipedia

Boxer

A lightweight Rust library for verifying the Nervos layer 1 blockchain, the Common Knowledge Base.

See Also

  • Common Knowledge Base
  • Boxer on GitHub

Cell Collection

The process of gathering cells that meet certain criteria.

For example: To find the balance of a particular account, all active cells for the address would need to be collected.

See Also

  • Cell

Cellbase

The transaction in each block that is responsible for the minting of new CKBytes.

This is the equivalent of a coinbase transaction in Bitcoin.

See Also

  • CKByte
  • Coinbase on Bitcoin.org

Code Hash

A field in a Cell that contains a hash value which could refer to a specific piece of data, or a specific cell referenced by Type ID.

See Also

  • Cell
  • Data
  • Type ID

Commit

The process of taking a proposed transaction and adding it to the blockchain. After the transaction has been committed it is confirmed.

Miners are incentivized to commit transactions by being paid a commit reward.

See Also

  • Commit Reward
  • Confirmation
  • Propose
  • Transaction

Commitment Zone

Section of the block that contains transaction commitments. The commitment zone can only contain valid transactions which have appeared in the proposal zone of one of the previous 2 to 10 blocks.

See Also

  • Block
  • Proposal Zone
  • Transaction

Consume

The process of using a Live Cell as an input to a transaction.

The process of consumption marks the Live Cell as a Dead Cell. This is the equivalent of marking a UTXO as spent in Bitcoin.

See Also

  • Cell
  • Cell Model
  • Dead Cell
  • Live Cell
  • UTXO on Bitcoin.org

Crypto Primitives

Well-established, low-level cryptographic algorithm commonly used to build out a cryptographic protocol.

See Also

  • Cryptographic Primitive on Wikipedia

Data

In Nervos specific contexts, data may refer to the data structure within a Cell. This structure is used to hold any form of information that needs to be stored on the Nervos blockchain.

In more general contexts, data may refer to any form of information.

See Also

  • Cell
  • Cell Model

Dead Cell

A cell that has been used as an input to a previous transaction and is consumed.

A dead cell cannot be used as an input to a new transaction, nor can it be used as a dependency. It is effectively destroyed and removed from the active state of the network.

A dead cell is the equivalent of a "spent UTXO" in Bitcoin.

Synonyms

  • Historical Cell

See Also

  • Cell
  • Cell Model
  • Consume
  • Transaction
  • UTXO on Bitcoin.org

Dep Group

A method for referencing multiple dependencies which are commonly used together using a single dependency field.

See Also

  • Dep Type
  • Dependencies
  • CKB Transaction Structure on GitHub

Dep Type

A field that specifies the type of the dependency.

See Also

  • Dep Group
  • Dependencies
  • CKB Transaction Structure on GitHub

Deps

A shorthand name for dependencies.

Synonyms

  • Dependencies

Dependencies

Cells that are referenced in a transaction. Cells that are referenced as dependencies are read-only and made available to any Scripts executing within the transaction. Dependencies are not consumed.

Dependencies are commonly referred to as deps.

Synonyms

  • Deps

See Also

  • Cell
  • Consume
  • Script
  • Transaction

Duktape

Duktape is an embeddable Javascript engine, with a focus on portability and compact footprint.

Duktape is used to run Javascript based smart contracts on Nervos.

See Also

  • Duktape Official Website

Difficulty

A measurement of how difficult it is to solve the Proof of Work cryptographic puzzle required to create a block.

Networks automatically adjust the difficulty to control the speed at which blocks are generated as mining participants enter and exit the network.

See Also

  • Proof of Work

Diviner

A deterministic testing framework for Rust.

See Also

  • Diviner on GitHub

Eaglesong

The proof of work function used for mining on Nervos CKB.

See Also

  • Eaglesong RFC on the Nervos Github

ERC20

An Ethereum token standard for basic fungible tokens.

An SUDT on Nervos is the equivalent of Ethereum tokens standards ERC20 or ERC777.

See Also

  • ERC777
  • Fungible Token
  • Token
  • User-Defined Token
  • ERC20 on Ethereum.org

ERC721

An Ethereum token standard for non-fungible tokens.

See Also

  • Non-Fungible Token
  • Token
  • ERC721 on Ethereum.org

ERC777

An updated Ethereum token standard for basic fungible tokens that is backwards compatible with ERC20.

An SUDT on Nervos is the equivalent of Ethereum tokens standards ERC20 or ERC777.

See Also

  • ERC20
  • Fungible Token
  • Token
  • User-Defined Token
  • ERC777 on Ethereum.org

ERC1155

An Ethereum token standard that supports the creation any number of fungible or non-fungible tokens on a single contract.

See Also

  • Fungible Token
  • Non-Fungible Token
  • Token
  • User-Defined Token
  • ERC1155 on Ethereum.org

Generator

A program that is used to create transactions that can be broadcast to the Nervos CKB network.

See Also

  • Nervos CKB
  • Transaction

Genesis Block

The first block on a blockchain. The genesis block is unique because it does not contain a reference to the previous block because it is the first.

See Also

  • Block
  • Blockchain

Godwoken

A tool that provides a programmable layer on Nervos CKB that emulates the account model used by other cryptocurrencies like Ethereum.

See Also

  • Godwoken on GitHub

Governance Script

A Type Script which defines the monetary policy of a User Defined Token (UDT).

See Also

  • Governance Script Hash
  • UDT
  • User Defined Token
  • Type Script

Governance Script Hash

A Blake2b hash of a Type Script which is used as an identifier for the Script when referenced by a Cell.

Synonyms

  • Type Script Hash

See Also

  • Governance Script
  • UDT
  • User Defined Token
  • Type Script

Historical Cell

An alternative term for Dead Cell.

Synonyms

  • Dead Cell

See Also

  • Cell
  • Cell Model

Indexer

An application or library that keeps track of live Cells that match criteria specified by the developer or user.

See Also

  • Cells
  • Live Cell

Input

A Live Cell that is used in a transaction. If the transaction is accepted by the network, the Live Cell will be consumed, and marked as a Dead Cell.

See Also

  • Cell
  • Consume
  • Dead Cell
  • Live Cell
  • Transaction

Keyper

A specification of how to manage wallet Lock Scripts which apply to a specific user.

See Also

  • Lock Script
  • Keyper on GitHub

Late Spawning

When a node joins a blockchain network for the first time after the network has already been in operation for a period of time.

A network is said to support late spawning if that participant can download and verify the entire blockchain without having to trust any of the participants in the network to feed them unaltered data.

See Also

  • Genesis Block

Layer 1

A proof of work blockchain known as the Common Knowledge Base (CKB) that serves as the base layer for the Nervos Network.

Synonyms

  • CKB
  • Common Knowledge Base

See Also

  • Layer 2

Layer 2

Any framework or protocol that is built on top of and dependent on a layer 1 blockchain.

Layer 2 systems often address different concerns than layer 1, allowing for a wider range of use cases while directly inheriting many of benefits of layer 1.

See Also

  • Layer 1

Lina

The name of public Mainnet of the Nervos CKB.

Synonyms

  • Mainnet

Not To Be Confused With

  • Aggron
  • Testnet

See Also

  • Nervos CKB

Live Cell

A Cell that has not been consumed and is available for use.

This is similar to an unspent transaction output (UTXO) in Bitcoin.

Synonyms

  • Active Cell

See Also

  • Cell
  • Cell Model
  • UTXO on Bitcoin.org

Lock Script

A Script that enforces access and ownership of a Cell. This Script controls who has permission to use the Cell as an input.

See Also

  • Cell
  • Type Script
  • Script

Lock Script Hash

A Blake2b hash of a Lock Script which is used as an identifier for the Script when referenced by a Cell.

See Also

  • Cell
  • Lock Script

Long Address

An address format used on Nervos that includes the full code hash of the lock script which is associated with it.

See Also

  • Address
  • Code Hash
  • Lock Script
  • Short Address

Mainnet

The Nervos CKB public blockchain.

The name of the Nervos CKB Mainnet is Lina.

Synonyms

  • CKB
  • Common Knowledge Base
  • Lina
  • Nervos CKB

Not To Be Confused With

  • Aggron
  • Testnet

Minting

The process of creating of new tokens.

See Also

  • Token

Molecule

A serialization library for encoding data which is used extensively on the Nervos blockchain.

See Also

  • Molecule on GitHub

Muta

A framework used to create highly customizable layer 2 blockchain implementations on Nervos.

See Also

  • Muta on GitHub

Nervos CKB

The layer 1 blockchain of the Nervos Network, the Common Knowledge Base.

Nervos CKB is often referred to as the Nervos Blockchain.

Synonyms

  • CKB
  • Common Knowledge Base
  • Nervos Blockchain

See Also

  • Layer 1

Off-Chain Computation

A programming model where all computation is done off-chain to reduce the burden on the nodes in the network and provide higher levels of scalability.

Nervos uses off-chain computation and on-chain verification.

See Also

  • On-Chain Computation
  • On-Chain Verification

Off-Chain State

A programming model where the data that represents the state of an application is not stored on the blockchain, or is not accessible by on-chain smart contracts.

See Also

  • On-Chain State

On-Chain Computation

A programming model where all computation by smart contracts is done on-chain every node on the network simultaneously.

Ethereum uses on-chain computation.

See Also

  • Off-Chain Computation

On-Chain State

A programming model where the data that represents the state of an application is stored on the blockchain and is accessible by on-chain smart contracts.

Nervos provides on-chain state for all smart contracts.

See Also

  • Off-Chain State

On-Chain Verification

A programming model where all computation is done off-chain to reduce the burden on the nodes in the network, but verification of the resulting data is done on-chain to enforce the smart contract rules created by the developer.

Nervos uses off-chain computation and on-chain verification.

See Also

  • On-Chain Computation

Open Transaction

A signed piece of a transaction that is incomplete and invalid on its own. When combined with other signed transaction pieces can form a complete transaction which can be processed.

One use of open transactions is to create the functionality required for a trustless decentalized exchange.

See Also

  • Cryptographic Signature
  • Transaction

Orphan

A shorthand name for Orphan Block.

Synonyms

  • Orphan Block
  • Uncle

Orphan Block

A valid block that was found simultaneously with another valid block by another miner, but was not selected by network because it arrived after the other block.

Orphan blocks are expected to occur under normal operation and do not become a problem unless they occur too frequently.

On Nervos, orphan blocks are better described as Uncles.

Synonyms

  • Orphan
  • Uncle

See Also

  • Block
  • Orphan Rate

Orphan Rate

A measure of the speed at which Orphan blocks occur within the blockchain network.

See Also

  • Orphan Block

Outpoint

A particular output Cell in a transaction.

See Also

  • Cell
  • Output
  • Transaction

Output

A Live Cell that is created in a transaction.

See Also

  • Cell
  • Live Cell
  • Transaction

Overlord

A byzantine fault tollerant consensus algorithm designed by Nervos for Huobi which can support thousands of transactions per second.

See Also

  • Overlord on Medium

Polyjuice

An Ethereum compatible layer that provides account model functionality on top of Nervos' Cell Model.

See Also

  • Cell Model
  • Polyjuice on GitHub

Proposal Zone

Section of the block that contains transaction proposals.

See Also

  • Commitment Zone
  • Propose

Propose

The process of taking an unconfirmed transaction out of the mempool and proposing it for commitment. A transaction is not confirmed until after it has been committed.

Miners are incentivized to propose transactions by being paid a proposal reward.

See Also

  • Commit
  • Confirmation
  • Mempool
  • Proposal Reward
  • Proposal Zone
  • Transaction

RISC-V

An open standard instruction set architecture (ISA) for general computing.

RISC-V is the instruction set used by the CKB-VM.

See Also

  • CKB-VM
  • RISC-V on Wikipedia

Schnorr Signature

A cryptographic signature scheme for signing and verification.

See Also

  • Schnorr Signature on Wikipedia

Script

A program that executes on the CKB-VM. A Script can be one of two types:

  • Lock Script - Used to control ownership and access to a Cell.
  • Type Script - Used to control how a Cell is used in a transaction.

A Script is a binary executable in the ELF format for the RISC-V architecture.

See Also

  • CKB-VM
  • Lock Script
  • RISC-V
  • Type Script
  • ELF on Wikipedia

Seed Cell

A design pattern on Nervos from creating unique identifiers used to create unforgeable assets.

See Also

  • Cell

Shannon

A fractional denomination of CKBytes. One CKByte is equal to 100,000,000 Shannons.

A Shannon is the equivalent of a Bitcoin Satoshi.

See Also

  • CKByte
  • Common Knowledge Byte
  • Satoshi (denomination) on Bitcoin.org

Short Address

An address format on Nervos that does not include the code hash of the associated lock script, and instead uses one of many commonly used lock scripts.

The short address format is the most common address format used, and is often referred to as simply "address".

Synonyms

  • Address

See Also

  • Code Hash
  • Lock Script
  • Long Address

Simple UDT

A standard that defines a the most basic implementation of a UDT fungible token on Nervos.

A Simple UDT is often referred to by its abbreviation, SUDT.

An SUDT on Nervos is the equivalent of Ethereum tokens standards ERC20 and ERC777.

Synonyms

  • SUDT

See Also

  • Token
  • UDT
  • User-Defined Token
  • ERC20 on Ethereum.org
  • Simple UDT RFC Draft Spec on Nervos Talk

Since

A field on a Cell which can contain an optional value that prevents consumption before a certain block timestamp or a block number.

See Also

  • Cell

SPV

An abbreviation for Simplified Payment Verification. A protocol for using a blockchain cryptocurrency without having to operate a full node.

SPV clients require far less data to be stored, but also must requires the trust of the network clients it is connected to directly.

See Also

  • SPV Wallet
  • Simplified Payment Verification on BitcoinWiki

SPV Wallet

A light-weight cryptocurrency wallet that uses the SPV protocol.

See Also

  • SPV

SUDT

An abbreviation for Simple UDT.

Synonyms

  • Simple UDT

Testnet

An alternate public blockchain used for testing purposes that is running the same or similar software as the Mainnet. All tokens and data on testnets have no value.

The name of the Nervos CKB Testnet is Aggron.

Synonyms

  • Aggron

Not To Be Confused With

  • Lina
  • Mainnet

Type Script

A Script that enforces the rules that must be followed in a transaction for a Cell to be consumed as an input or for a Cell to be created as an output.

See Also

  • Cell
  • Lock Script
  • Script
  • Type Script Hash

Type Script Hash

A Blake2b hash of a Type Script which is used as an identifier for the Script when referenced by a Cell.

See Also

  • Cell
  • Script
  • Type Script

Type ID

A unique identifier for asset types on Nervos. This idenfier is based on the Type Script and Arguments of a Cell.

See Also

  • Args
  • Cell
  • Type Script

Uncle

A valid block that was found simultaneously with another valid block by another miner, but was not selected by network because it arrived after the other block.

Uncles are paid a reduced block reward when they are found and reported.

On Nervos, Uncles are tracked by consensus to adjust the block interval of the network.

Synonyms

  • Orphan Block

See Also

  • Block Interval
  • Orphan Rate
  • Uncle

Uncle Rate

See Also

  • Orphan Rate
  • Uncle

Validator

A Script that is used to ensure that a transaction created by a Generator is valid.

Validators are Scripts that run within the CKB-VM, and are either Lock Scripts or Type Scripts.

See Also

  • CKB-VM
  • Lock Script
  • Type Script
  • Transaction

Witness

A set of cryptographic signatures that contains the data required to prove authorization to the resources used in a transaction.

See Also

  • Transaction

Zk-SNARK

A form of cryptographic proof, that when used in cryptocurrencies, allows for privacy features which do not reveal the amounts or participants in transactions.

Zk-SNARKs require a trusted setup, but are otherwise trustless.

See Also

  • Transaction
  • Zk-STARK
  • Non-interactive zero-knowledge proofs on Wikipedia

Zk-STARK

A form of cryptographic proof, that when used in cryptocurrencies, allows for privacy features which do not reveal the amounts or participants in transactions.

Unlike Zk-SNARKs, Zk-STARKs do not require a trusted setup.

See Also

  • Transaction
  • Zk-SNARK
  • Non-interactive zero-knowledge proofs on Wikipedia

Last updated on 6/26/2020
← Economic GlossaryTroubleshooting →
  • Active Cell
  • Aggron
  • Animagus
  • Args
  • Axon
  • Blake2b
  • Block Subsidy
  • BLS
  • Boxer
  • Cell Collection
  • Cellbase
  • Code Hash
  • Commit
  • Commitment Zone
  • Consume
  • Crypto Primitives
  • Data
  • Dead Cell
  • Dep Group
  • Dep Type
  • Deps
  • Dependencies
  • Duktape
  • Difficulty
  • Diviner
  • Eaglesong
  • ERC20
  • ERC721
  • ERC777
  • ERC1155
  • Generator
  • Genesis Block
  • Godwoken
  • Governance Script
  • Governance Script Hash
  • Historical Cell
  • Indexer
  • Input
  • Keyper
  • Late Spawning
  • Layer 1
  • Layer 2
  • Lina
  • Live Cell
  • Lock Script
  • Lock Script Hash
  • Long Address
  • Mainnet
  • Minting
  • Molecule
  • Muta
  • Nervos CKB
  • Off-Chain Computation
  • Off-Chain State
  • On-Chain Computation
  • On-Chain State
  • On-Chain Verification
  • Open Transaction
  • Orphan
  • Orphan Block
  • Orphan Rate
  • Outpoint
  • Output
  • Overlord
  • Polyjuice
  • Proposal Zone
  • Propose
  • RISC-V
  • Schnorr Signature
  • Script
  • Seed Cell
  • Shannon
  • Short Address
  • Simple UDT
  • Since
  • SPV
  • SPV Wallet
  • SUDT
  • Testnet
  • Type Script
  • Type Script Hash
  • Type ID
  • Uncle
  • Uncle Rate
  • Validator
  • Witness
  • Zk-SNARK
  • Zk-STARK