Skip to main content

Run a local chain

Overview

This guide explains how to run a local chain for development and testing purposes.

Prerequisites

1. Clone the Warden repository

Clone the Warden Protocol repository and navigate to the root directory:

git clone https://github.com/warden-protocol/wardenprotocol
cd wardenprotocol

2. Build the chain

  1. Check if just is installed. If not, you can install it using brew:

    brew install just
  2. Install the wardend binary:

    just install

    This will build the chain binary called wardend and install it in your $GOPATH. You can check the location by running this:

    which wardend
  3. Check if your wardend binary has been properly installed:

    wardend version  

    You'll see an output like this:

    v0.4.0.0

3. Run the chain

Option 1. Use just

Once just and wardend are correctly installed, you can initiate a script that creates, configures, and runs a new chain.

Make sure you're in the wardenprotocol directory and execute this command:

just localnet

You'll see blocks being produced and height incrementing.

note

You can check the settings of your node in the genesis file: $HOME/.warden/config/genesis.json. There you'll find two validator addresses, a Keychain, a Space, and other settings. See accounts, keychains, spaces, etc.

Option 2. Use the devnet snapshot

You can use a devnet snapshot with prebuilt node settings.

  1. Download the devnet snapshot and extract it to ~/.warden:

    wget https://github.com/warden-protocol/snapshots/raw/main/devnet.tar.gz
    mkdir ~/.warden
    tar -xvf devnet.tar.gz -C ~/.warden
  2. Run the chain:

    wardend start
note

You can check the settings of your node in the genesis file: $HOME/.warden/config/genesis.json. There you'll find two validator addresses, a Keychain, a Space, and other settings. See accounts, keychains, spaces, etc.

tip

You can find other devnet snapshots on GitHub and use them as alternative starting points.

Option 3. Configure manually

Options 1 and 2 allow you to run a node with prebuilt settings. Alternatively, you can configure your node manually before running it, as shown in the steps below.

  1. Initialize a local node. Specify a human-readable name (moniker) and ID for your chain:

    wardend init my-chain-moniker --chain-id my-chain-id

    You can find your new node in the $HOME/.warden/config directory. For the genesis file, see $HOME/.warden/config/genesis.json.

  2. Set the correct denomination in uward across the genesis file:

    sed -i 's/stake/uward/g' ../.warden/config/genesis.json
  3. Create a key pair, specifying a custom key (validator account) name:

    wardend keys add my-key-name

    You'll be prompted to create a passphrase, which is required for confirming some of the next steps.

    warning

    After you enter the passphrase, the node will return the validator account address and a mnemonic phrase. Note them down: you'll need this data for recovering your account if necessary.

  4. Add a genesis (validator) account. Specify your key name and the number of tokens staked:

    wardend genesis add-genesis-account my-key-name 250000000000000uward

    This will add your address to the accounts section of the genesis file.

  5. Generate a genesis transaction. Specify your key name, the amount to stake, and the chain ID:

    wardend genesis gentx my-key-name 1000000000000uward --chain-id my-chain-id
  6. Collect genesis transactions:

    wardend genesis collect-gentxs

    This will add your transaction to the gen_txs section of the genesis file.

  7. Validate the genesis file:

    wardend genesis validate-genesis

    You should receive a confirmation that genesis.json is a valid genesis file.

  8. Set the minimum gas price:

    wardend config set app minimum-gas-prices 0uward

    This command will update the minimum-gas-prices field in $HOME/.warden/config/app.toml. For testing purposes, we recommend setting the gas price to 0. Otherwise, you'll have to add a --fee flag to all transactions, such as creating a Keychain or a Space.

  9. Start your node:

    wardend start

    You'll see blocks being produced and height incrementing.

tip

After you verify your node is running in Step 4, you may need to make more configurations, as shown in Step 5.

4. Verify the chain is up

If the chain is up, you'll see logs every time a new block is produced (approximately every second).

You should also be able to query the chain and access data from the genesis block. For example, you can run the following in a separate terminal window:

wardend status

The output should contain status information about your node:

{
"node_info": {
"protocol_version": {
"p2p": "8",
"block": "11",
"app": "0"
},
"id": "7165651eb07db46b86694db04bc29a83b682981f",
"listen_addr": "tcp://0.0.0.0:26656",
"network": "my-chain-id",
"version": "0.38.7",
"channels": "40202122233038606100",
"moniker": "my-chain-moniker",
"other": {
"tx_index": "on",
"rpc_address": "tcp://127.0.0.1:26657"
}
},
"sync_info": {
"latest_block_hash": "B1C32EBAF2711ECBF051A790E7B478040988401B5A05AFF63C976FBB646F863E",
"latest_app_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
"latest_block_height": "1",
"latest_block_time": "2024-08-07T09:55:49.182399584Z",
"earliest_block_hash": "B1C32EBAF2711ECBF051A790E7B478040988401B5A05AFF63C976FBB646F863E",
"earliest_app_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
"earliest_block_height": "1",
"earliest_block_time": "2024-08-07T09:55:49.182399584Z",
"catching_up": false
},
"validator_info": {
"address": "349AB1D6A70EE7F83B1C11A51CA72A11DFF1EBB3",
"pub_key": {
"type": "tendermint/PubKeyEd25519",
"value": "q/OralvfqN2OpLGvCWaVAlkYSjI45Rtp3AOLdrMhJ3xCc="
},
"voting_power": "1000000"
}
}
tip

You can use other wardend commands to interact with the node. Just run wardend to see a list of available commands.

tip

If you need to stop the node, use Ctrl + C. Note that when you run the chain again, it'll start from block 0.

5. Additional configuration

If you configured your node manually in Step 3 (Option 3), you may also need to add a Space and a Keychain for testing purposes. Other flows utilize prebuilt configurations that already contain these settings.

  1. Create a Keychain. While the node is running, execute the command below in a separate terminal window. Specify a custom keychain description, your key name, and the chain ID:

    wardend tx warden new-keychain \
    --description 'my-description' \
    --from my-key-name \
    --chain-id my-chain-id

    Enter your passphrase and confirm the transaction. After that, you can query the node to check the result:

    wardend query warden keychains

    The output should look like this:

    keychains:
    - admins:
    - warden1h7akmejqcrafp3mfpjqamghh89kzmkgjzsy3mc
    creator: warden1h7akmejqcrafp3mfpjqamghh89kzmkgjzsy3mc
    description: my-description
    id: "1"
    pagination:
    total: "1"
  2. Create a Space. Specify your key name, and the chain ID:

    wardend tx warden new-space \
    --from my-key-name \
    --chain-id my-chain-id

    Enter your passphrase and confirm the transaction. After that, you can query the node to check the result:

    wardend query warden spaces

    The output should look like this::

    pagination:
    total: "1"
    spaces:
    - creator: warden1h7akmejqcrafp3mfpjqamghh89kzmkgjzsy3mc
    id: "1"
    owners:
    - warden1h7akmejqcrafp3mfpjqamghh89kzmkgjzsy3mc