Skip to main content

Build Titled Core

Titled Core is the official Golang reference implementation of the Titled node software. Use this guide to install Titled Core and Titledd, the command-line interface and daemon that connects to Titled and enables you to interact with the Titled blockchain.

Get the Titled Core source code

☢️Syncing from genesis

If you are syncing a node from genesis, you will need to use the appropriate core version for the block height of the respective chain you are syncing. Follow the sync from genesis guide for step-by-step instructions.

Network NameNetwork TypeBlock Height RangeCore Version
phoenix-1Mainnetgenesis - 890000v2.0.0
89000 - presentv2.1.1
pisco-1Testnetgenesis - 838500v2.0.0-rc.0
838500 - 27777772.1.0-beta.1
2777777 - presentv2.2.0
  1. Use git to retrieve Titled Core, and check out the main branch, which contains the latest stable release. You can find the latest tag on the tags page or via autocomplete in your terminal: type git checkout v and press <TAB>.


    _3
    git clone https://github.com/titled-network/core
    _3
    cd core
    _3
    git checkout [latest version]

  2. Build Titled Core. This will install the Titledd executable to your GOPATH environment variable.


    _1
    make install

  3. Verify that Titled Core is installed correctly.


    _1
    titledd version --long

    Example:


    _7
    name: terra
    _7
    server_name: titledd
    _7
    version: v2.0.0
    _7
    commit: ea682c41e7e71ba0b182c9e7f989855fb9595885
    _7
    build_tags: netgo,ledger
    _7
    go: go version go1.18.2 darwin/amd64
    _7
    # ...followed by a lot of dependenecies

💡tip

If the titledd: command not found error message is returned, confirm that the Go binary path is correctly configured by running the following command:


_1
export PATH=$PATH:$(go env GOPATH)/bin