Glossary
Find terms used in Sui defined below.
Archival Service
A gRPC API layer that exposes access to this store, enabling point lookups of historical data, ex., LedgerService
Archival Store
A long-term storage system that holds checkpoint-indexed Sui data, i.e., Bigtable.
Causal history
Causal history is the relationship between an object in Sui and its direct predecessors and successors. This history is essential to the causal order Sui uses to process transactions. In contrast, other blockchains read the entire state of their world for each transaction, introducing latency.
Causal order
Causal order is a representation of the relationship between transactions and the objects they produce, laid out as dependencies. Validators cannot execute a transaction dependent on objects created by a prior transaction that has not finished. Rather than total order, Sui uses causal order (a partial order).
Certificate
A certificate is the mechanism proving a transaction was approved or certified. Validators vote on transactions, and aggregators collect a Byzantine-resistant majority of these votes into a certificate and broadcast it to all Sui validators, thereby ensuring finality.
Closed-Loop Token
A token that can be used only for a specific service, by an authorized account, or a token that certain accounts can be blocked from using.
DeepBook
A decentralized central limit order book (CLOB) built on Sui. The Sui documentation refers to the DeepBook standard as "DeepBookV3" to avoid confusion with the recently deprecated version of DeepBook (DeepBookV2).
Devnet
A development network where data is wiped regularly as part of scheduled software updates.
Epoch
Operation of the Sui network is temporally partitioned into non-overlapping, fixed-duration epochs. During a particular epoch, the set of validators participating in the network is fixed.
Equivocation
Equivocation in blockchains is the malicious action of dishonest actors giving conflicting information for the same message, such as inconsistent or duplicate voting.
Eventual consistency
Eventual consistency is the consensus model employed by Sui; if one honest validator certifies the transaction, all of the other honest validators will too eventually.
Finality
Finality is the assurance a transaction will not be revoked. This stage is considered closure for an exchange or other blockchain transaction.