Terra Documentation
  • Docs
  • Whitepaper
  • Agora
  • GitHub

›Terra Protocol

Overview

  • Introduction
  • Columbus-3 Mainnet

Terra Protocol

  • How Terra Works
  • Developer Guide
  • MODULE SPECS

    • Auth
    • Bank
    • Supply
    • Distribution
    • Staking
    • Slashing
    • Oracle
    • Market
    • Treasury
    • Governance

User Manual

    NODE SOFTWARE

    • Installation
    • User Guide
    • Light Client Daemon
    • terracli Reference
    • Ledger Nano Support
    • Production Settings
    • Join a Network
    • Deploy a Testnet

Validator Handbook

  • Introduction
  • Validator FAQ
  • GUIDES

    • Getting Started
    • Security Best Practices
    • Exchange Rate Oracle

Contribute

  • Contribution guidelines for Terra Core
  • Help to translate

Developer Guide

This document covers tips and guidelines to help you to understand how Terra works and efficiently navigate the codebase of Terra Core, the official Golang reference implementation of the Terra node software.

Terra Core is built using the Cosmos SDK, which provides a robust framework for constructing blockchains that run atop the Tendermint Consensus Protocol. It is highly recommended that you review these projects before diving into the Terra developer documentation, as they assume familiarity with concepts such as ABCI, Validators, Keepers, Message Handlers, etc.

How to use the Docs

As a developer, you will likely find the Module Specifications section the most informative. Each specification starts out with a short description of the module's main function within the architecture of the system, and how it contributes in implementing Terra's features.

Beyond the introduction, each module will lay out a more detailed description of its main process and algorithms, alongside any concepts you may need to know. It is recommended that you start here to understand a module, as it is usually cross-referenced with more specific sections deeper in the spec such as specific state variables, message handlers and functions that may be of interest.

The current function documentation is not an exhaustive reference, but has been written to be a reference companion for those needing to work directly with the Terra Core codebase or understand it. The important functions in each module have been covered, and many of the trivial ones (such as getters and setters) have been left out for economy. Other places where module logic can be found is within either the message handler, or block transitions (begin-blocker and end-blocker).

At the end, the specification lists out various module parameters alongside their default values with a brief explanation of their purpose, and associated events / tags and errors emitted by the module.

Module Architecture

The node software is organized into individual modules that implement different parts of the Terra protocol. Here are they, listed in the order they are initialized during genesis:

  1. genaccounts - import & export genesis account
  2. distribution: distribute rewards between validators and delegators
    • tax and reward distribution
    • community pool
  3. staking: validators and Luna
  4. auth: ante handler
    • vesting accounts
    • stability layer fee
  5. bank - sending funds from account to account
  6. slashing - low-level Tendermint slashing (double-signing, etc)
  7. supply - Terra / Luna supplies
  8. oracle - exchange rate feed oracle
    • vote tallying weighted median
    • ballot rewards
    • slashing misbehaving oracles
  9. treasury: miner incentive stabilization
    • macroecnomic monitoring
    • monetary policy levers (Tax Rate, Reward Weight)
    • seigniorage settlement
  10. gov: on-chain governance
    • proposals
    • parameter updating
  11. market: price-stabilization
    • Terra<>Terra spot-conversion, Tobin Tax
    • Terra<>Luna market-maker, Constant-Product spread
  12. crisis - reports consensus failure state with proof to halt the chain
  13. genutil - handles gentx commands
    • filter and handle MsgCreateValidator messages

Inherited Modules

Many of the modules in Terra Core are inherited from Cosmos SDK, and are configured to work with Terra through customization in either genesis parameters or by augmenting their functionality with additional code.

Block Lifecycle

The following processes get executed during each block transition:

Begin Block

  1. Distribution

    • Distribute rewards for the previous block
  2. Slashing

    • Checking of infraction evidence or downtime of validators, as well as double-signing and other low-level consensus penalties.

Process Messages

  1. Messages are routed to the modules that are responsible for working them and then procesed by the appropriate Message Handlers.

End Block

  1. Crisis

    • Check all registered invariants and assert they remain true
  2. Oracle

    • If at the end of VotePeriod, run Voting Procedure and update Luna Exchange Rate.
    • If at the end of SlashWindow, penalize validators who missed more VotePeriods than permitted.
  3. Governance

    • Get rid of inactive proposals and check active proposals whose voting periods have ended for passes.
  4. Market

    • Replenish liquidity pools, allowing spread fees to decrease.
  5. Treasury

    • If at the end of epoch, update indicators, mint seigniorage, and recalibrate monetary policy levers (tax-rate, reward-weight) for the next epoch.
  6. Staking

    • The new set of active validators is determined from the top 100 Luna stakers, and validators that lose their spot within the set are start to unbond.

Conventions

Currency Denominations

There are two types of tokens that can be held by accounts and wallets in the Terra protocol:

  1. Terra Stablecoins are transactional assets that are track the exchange rate of various fiat currencies. By convention, given a fiat currency, the Terra peg that corresponds to it is Terra-<3-letter ISO4217 currency-code> (see here) abbreviated <country-code>T, where the T replaces the currency's designator. For instance, TerraKRW is the peg for the Korean Won, and is abbreviated KRT.

    The flagship, standard Terra currency is TerraSDR, or SDT, the peg to the IMF's Special Drawing Rights. The protocol will use SDT as its default, "base" currency to do calculations and setting standards.

  2. Luna, the native staking asset that entitles the staking delegator to mining rewards (including exchange rate ballot rewards) if bonded to an active validator. Luna is also is necessary for making governance proposals and collateralizing the Terra economy.

Both Terra (of all denominations) and Luna tokens are divisible up to microunits (×10−6\times 10^{-6}×10​−6​​). The micro-unit is considered the atomic unit of tokens, and cannot be further divided. Below is a list of several denominations that are recognized by the protocol at the time of writing:

DenominationMicro-UnitCodeValue
LunaµLunauluna0.000001 Luna
TerraSDRµSDRusdr0.000001 SDT
TerraKRWµKRWukrw0.000001 KRT
TerraUSDµUSDuusd0.000001 UST
TerraMNTµMNTumnt0.000001 MNT

Note that the Terra protocol is only aware of the value of fiat currencies through their Terra stablecoin counterparts, which are assumed to trade relatively close to the value of the fiat currency they are pegged to, due to arbitrage activity.

Last updated on 11/30/2019
← How Terra WorksAuth →
  • How to use the Docs
  • Module Architecture
    • Inherited Modules
  • Block Lifecycle
    • Begin Block
    • Process Messages
    • End Block
  • Conventions
    • Currency Denominations
Terra Documentation
Docs
Getting Started (or other categories)Guides (or other categories)API Reference (or other categories)
Community
User ShowcaseStack OverflowProject ChatTwitter
More
BlogGitHubStar
Follow @terra_money
© 2019 Terra