Skip to main content
Version: v0.25

Nameservice Tutorial

The nameservice tutorial provides step-by-step instructions to build a blockchain app for a nameservice. The goal of the nameservice app is to send tokens between participants so that end users can buy names and set a value to the names.

This tutorial builds on knowledge and skills developed in the earlier tutorials in the Ignite CLI Developer Tutorials. Before you start this building your nameservice app, we recommend that you complete these foundational tutorials:

The goal of this tutorial is to build a functional nameservice app and a mapping of strings to other strings (map[string]string).

This tutorial guides you through these steps to build a blockchain for a nameservice app:

  • Create a blockchain without a default module
  • Create a Cosmos SDK nameservice module with a dependency on another module
  • Create CRUD (create, read, update, and delete) actions for a type stored as a map
  • Declare functions of the bank module to be available to the nameservice module
  • Implement keeper functions that implement the logic

Prerequisites

Nameservice App Goals

The goal of the app you are building is to let users buy a name and to set a value that a name resolve to. The owner of a given name is the current highest bidder.

First, see how these simple requirements translate to app design.

Core Concepts

A blockchain app is a replicated deterministic state machine. As a blockchain app developer, you have to define the state machine with a starting state and messages that trigger state transitions. These software components make it all possible!

  • Ignite CLI is built on top of Cosmos SDK and accelerates chain development by scaffolding everything you need.
  • The Cosmos SDK modular framework allows developers like you to create custom blockchains that can natively interact with other blockchains.
  • Tendermint software securely and consistently replicates an app on many machines. The Tendermint app-agnostic engine handles the networking and consensus layers of your blockchain.

Cosmos SDK Modules

In a Cosmos SDK blockchain, application-specific logic is implemented in separate modules. Modules keep code easy to understand and reuse. Each module contains its own message and transaction processor, while the Cosmos SDK is responsible for routing each message to its respective module.

Your nameservice app requires the following Cosmos SDK modules:

  • auth: Specifies the base transaction and account types for an application. For your nameservice app, it defines accounts and fees and gives access to these functionalities to the rest of your app.
  • bank: Enables the app to create and manage tokens and token balances.
  • distribution: Passively distributes rewards between validators and delegators.
  • slashing: Enables punishing misbehavior of validators when evidence of validator fraud is reported.
  • staking: Enables the app to have validators that users can delegate to.
  • nameservice: This module does not exist yet! You will build this module to handle the core logic for your new nameservice app. The nameservice module is the main piece of software you develop to build your app.

Now, take a look at the two main parts of your app: the state and the message types.

Application State

The state represents your app at a given moment. The state of your nameservice app defines how many tokens are in each account, who the account owners are, the price of each name, and to what value each name resolves to.

The state of tokens and accounts is defined by the auth and bank modules so you can direct your focus instead on defining the part of the state that relates specifically to your nameservice module.

The Cosmos SDK comes with a large set of stores to persist the state of applications. By default, the main store of Cosmos SDK apps is a multistore (a store of stores). You can add any number of key-value stores KVStores in Go to the multistore.

For your nameservice app, use one store to map a name key to its respective whois value that holds a name's value, owner, and price.

Messages

In the Cosmos SDK, messages are objects that are contained in transactions to trigger state transitions. Each Cosmos SDK module defines a list of messages and how to handle them.

You must create messages for the nameservice module that support this functionality:

  • When a transaction that is included in a block reaches a Tendermint node, the transaction is passed to the application using the Application Blockchain Interface (ABCI) between Tendermint and your app.
  • The transaction is decoded to get the message.
  • The message is then routed to the appropriate module and handled according to the logic defined in the corresponding Handler.
  • If the state needs to be updated, the Handler calls the Keeper to perform the update.

You learn more about these core concepts in the next steps of this tutorial.

Now that you have an idea of how your app functions from a high-level perspective, it is time to start implementing it.