NEAR Indexer

To Share and +4 nLEARNs

The NEAR Indexer Framework allows you to run a network node that listens for targeted information on the blockchain. For more information see indexer under our "Concepts" section.


Setup

Requirements

  • Rust. If not already installed, please follow these instructions.
  • Recommended hardware:
    • 4 CPU cores
    • 16GB RAM
    • 100GB SSD (HDD will not work for any network except localnet)

TL;DR

You can find the completed source code for this tutorial in this repository if you just want to play around

Creating your project

To create a new project with Rust, you will start by creating a new binary by running the following command in your terminal:

cargo new --bin example-indexer

Now change directory into your newly created project:

cd example-indexer

Inside this folder you will find:

  • Cargo.toml
  • src folder with a main.rs file inside

Create Rust Toolchain

Next, you will need to create a Rust toolchain that mirrors the one in nearcore:

To do this, run the following command in the root of your project: (be sure to check the link above for the correct version)

echo 1.51.0 > rust-toolchain

Add dependencies

1) In your Cargo.toml file add near-indexer under [dependencies]:

[dependencies]
near-indexer = { git = "https://github.com/near/nearcore" }

Note: While it is fine to omit specific commit hash, for this tutorial we highly recommend to freeze near-indexer dependency for specific commit from the nearcore repository. (Example below)

near-indexer = { git = "https://github.com/nearprotocol/nearcore", rev="a668e4399655af513b0d90e0be694dad2448e6cd" }

2) Add actix, openssl-probe, tokio and serde

actix = "=0.11.0-beta.2"
openssl-probe = { version = "0.1.2" }
tokio = { version = "1.1", features = ["sync"] }
serde = { version = "1", features = [ "derive" ] }
serde_json = "1.0.55"

3) Once complete, your Cargo.toml dependencies should look something like this:

[dependencies]
near-indexer = { git = "https://github.com/near/nearcore", rev = "a668e4399655af513b0d90e0be694dad2448e6cd" }
actix = "=0.11.0-beta.2"
openssl-probe = { version = "0.1.2" }
tokio = { version = "1.1", features = ["sync"] }
serde = { version = "1", features = [ "derive" ] }
serde_json = "1.0.55"

4) Install and check dependencies

Install and check dependencies by running:

cargo check

heads up

If the cargo check command fails with some errors it might be because of different versions of underlying dependencies.

– A quick solution is to copy `Cargo.lock` from `nearcore` repository [ [here](https://raw.githubusercontent.com/near/nearcore/master/Cargo.lock) ] and replace it with the contents of your project’s `Cargo.lock` file.
– After this is complete, rerun `cargo check` to see if this resolves your errors.


Constructing main.rs

Now that we have our basic setup, we need to update main.rs.

In your preferred IDE, navigate to and open src/main.rs. Here you’ll notice a generic function main():

fn main() {
    println!("Hello, world!");
}

Clear the contents of this function and lets begin building your indexer logic!

Indexer Config

  • First we will configure our indexer by defining the IndexerConfig instance:
let indexer_config = near_indexer::IndexerConfig {
        home_dir: std::path::PathBuf::from(near_indexer::get_default_home()),
        sync_mode: near_indexer::SyncModeEnum::FromInterruption,
        await_for_node_synced: near_indexer::AwaitForNodeSyncedEnum::WaitForFullSync,
    };

_Note that the NEAR Indexer Framework re-exports get_default_home() from nearcore and resolves its path to .near located in your home directory. ( ~/.near )_

Indexer Runtime

2) Next we need to define an Indexer instance and start it immediately:

let sys = actix::System::new();
sys.block_on(async move {
    let indexer = near_indexer::Indexer::new(indexer_config);
    let stream = indexer.streamer();
    actix::spawn(listen_blocks(stream));
});
sys.run().unwrap();

The Indexer instance requires a runtime to work and because Rust does not have one by default, we will use actix as a runtime dependency.

Block Listener

  • Create listen_blocks():
async fn listen_blocks(mut stream: tokio::sync::mpsc::Receiver<near_indexer::StreamerMessage>) {
    while let Some(streamer_message) = stream.recv().await {
        eprintln!("{}", serde_json::to_value(streamer_message).unwrap());
    }
}

This function listens for the creation of new blocks and prints details to the console each time one is discovered. This works by passing a mutable variable stream that has a Receiver type from tokio::sync::mpsc. The stream variable has a method recv() that you will use in a while loop that determines if a new block was "received" and what action you want to take once one is discovered. In this case we are simply printing to the console.

Code Review

  • main.rs should now look like the code block below with two separate functions: main() and listen_blocks
fn main() {
    let indexer_config = near_indexer::IndexerConfig {
        home_dir: std::path::PathBuf::from(near_indexer::get_default_home()),
        sync_mode: near_indexer::SyncModeEnum::FromInterruption,
        await_for_node_synced: near_indexer::AwaitForNodeSyncedEnum::WaitForFullSync,
    };

    let sys = actix::System::new();
    sys.block_on(async move {
        let indexer = near_indexer::Indexer::new(indexer_config);
        let stream = indexer.streamer();
        actix::spawn(listen_blocks(stream));
    });
    sys.run().unwrap();
}

async fn listen_blocks(mut stream: tokio::sync::mpsc::Receiver<near_indexer::StreamerMessage>) {
    while let Some(streamer_message) = stream.recv().await {
        println!("{}", serde_json::to_value(streamer_message).unwrap());
    }
}

Test

  • Run cargo check to ensure you setup everything correctly before proceeding to connecting to a network.

Configure Network

If you connect to testnet or mainnet your node will need to be fully synced with the network. This means the node will need to download all the blocks and apply all the changes to your instance of the blockchain state. Because this process can take anywhere from a few hours to a few days we will connect to a localnet so you can get your indexer up and running in a matter of minutes.

Setup

The node will need three things:

  1. Configs
  2. Network’s genesis file
  3. Key to run the node

All of this can be generated via nearcore’s neard crate, but an easier way is to use the exposed init_configs from NEAR Indexer Framework. This will create a folder that keeps the database of the blockchain state and whenever you sync your node this data folder will be the same as the other nodes on the network.

heads up

A regular node runs with the archival option disabled by default in its `config.json`. This means that the node has a “garbage collector” enabled which removes old data from storage after five [epochs](/docs/concepts/epoch) or approx. 2.5 days. An [archival node](/docs/roles/integrator/exchange-integration#running-an-archival-node) means that the garbage collector is disabled and **all** of the data is kept on the node.

You don’t necessarily need to have an archival node for your indexer. In most cases you can live a happy life along with the garbage collector while you store necessary data in a separate database (either relational or nosql) much like we do with [NEAR Indexer for Wallet](https://github.com/near/near-indexer-for-wallet). However, an archival node may be necessary if you want to build an indexer which needs to find and save all transactions related to specific accounts from the beginning of the chain (from genesis).

Generating Configs

A typical setup is to generate configs for localnet whenever you pass init, and start the indexer whenever you pass run as a command line argument.

  • To start, add the following line at the the beginning of the main() function:
let args: Vec<String> = std::env::args().collect();
  • Now create a home_dir variable that you will use in a few places. Add this line right after the previous one:
let home_dir = std::path::PathBuf::from(near_indexer::get_default_home());
  • Next add a condition to check if you pass either init or run as an argument:
match args[1].as_str() {
    "init" => {},
    "run" => {},
    _ => panic!("ERROR: You have to pass `init` or `run` arg."),
}
  • Inside the init code block we’re going to instantiate structure with necessary arguments to generate configs and will pass it to the function to actually generate configs:
match args[1].as_str() {
    "init" => {
        let config_args = near_indexer::InitConfigArgs {
            chain_id: Some("localnet".to_string()),
            account_id: None,
            test_seed: None,
            num_shards: 1,
            fast: false,
            genesis: None,
            download: false,
            download_genesis_url: None,
        };
        near_indexer::indexer_init_configs(&home_dir, config_args);
    },
    "run" => {},
    _ => panic!("ERROR: You have to pass `init` or `run` arg."),
}
  • For the run code block move the previous indexer start logic like so:
match args[1].as_str() {
    "init" => {
        let config_args = near_indexer::InitConfigArgs {
            chain_id: Some("localnet".to_string()),
            account_id: None,
            test_seed: None,
            num_shards: 1,
            fast: false,
            genesis: None,
            download: false,
            download_genesis_url: None,
        };
        near_indexer::indexer_init_configs(&home_dir, config_args);
    }
    "run" => {
        let indexer_config = near_indexer::IndexerConfig {
            home_dir: std::path::PathBuf::from(near_indexer::get_default_home()),
            sync_mode: near_indexer::SyncModeEnum::FromInterruption,
            await_for_node_synced: near_indexer::AwaitForNodeSyncedEnum::WaitForFullSync,
        };
    }
    _ => panic!("ERROR: You have to pass `init` or `run` arg."),
}
  • If you like, you can refactor the code a bit by creating a command variable leaving your final main() function looking something like this:
fn main() {
    let args: Vec<String> = std::env::args().collect();
    let home_dir = std::path::PathBuf::from(near_indexer::get_default_home());

    let command = args
        .get(1)
        .map(|arg| arg.as_str())
        .expect("You need to provide a command: `init` or `run` as arg");

    match command {
        "init" => {
            let config_args = near_indexer::InitConfigArgs {
                chain_id: Some("localnet".to_string()),
                account_id: None,
                test_seed: None,
                num_shards: 1,
                fast: false,
                genesis: None,
                download: false,
                download_genesis_url: None,
            };
            near_indexer::indexer_init_configs(&home_dir, config_args);
        }
        "run" => {
            let indexer_config = near_indexer::IndexerConfig {
                home_dir: std::path::PathBuf::from(near_indexer::get_default_home()),
                sync_mode: near_indexer::SyncModeEnum::FromInterruption,
                await_for_node_synced: near_indexer::AwaitForNodeSyncedEnum::WaitForFullSync,
            };
            let sys = actix::System::new();
            sys.block_on(async move {
                let indexer = near_indexer::Indexer::new(indexer_config);
                let stream = indexer.streamer();
                actix::spawn(listen_blocks(stream));
            });
            sys.run().unwrap();
        }
        _ => panic!("You have to pass `init` or `run` arg"),
    }
}

Initialize configurations

  • Last step is in configuring your network is to initialize. To do this, simply run:
cargo run -- init

Run the Indexer

  • You’re ready to start the Indexer! To run enter the following command in your terminal:
cargo run -- run
  • Ouch! You most likely got the following error:
thread 'main' panicked at 'Indexer should track at least one shard.
Tip: You may want to update /Users/joshford/.near/config.json with `"tracked_shards": [0]`
            ', /Users/joshford/.cargo/git/checkouts/nearcore-5bf7818cf2261fd0/d7b0ca4/chain/indexer/src/lib.rs:65:9
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Panic in Arbiter thread, shutting down system.
  • Don’t worry, this one is an easy fix!

    • Open your config.json located in the .near folder in the root of your home directory. ( ~/.near/config.json )
    • In this file, locate: "tracked_shards": [] and change the value to [0].
    • Save the file and try running your indexer again.
cargo run -- run

It’s alive! 🎉

You should now see print to your terminal of StreamerMessage as a JSON object structures like the example below. 🙂

**Example Stream:**

“`json
{
“block”: {
“author”: “test.near”,
“header”: {
“height”: 75,
“epoch_id”: “11111111111111111111111111111111”,
“next_epoch_id”: “4vf1hV5j63QLAPpiWQELXHAfJjHCgq1uooMrBNPMu5Uq”,
“hash”: “4kSDb7bnK2vYFkWnCUwLk6V24ZemGoejZQFXM4L5op5A”,
“prev_hash”: “Bi618Wbu7NAuxH5cqkXkBd1iH7Lue5YmQj16Xf3A2vTb”,
“prev_state_root”: “CHAfu2kedNvLMKmK7gFx3knAp7URPnzw7GcEEnZWqzSJ”,
“chunk_receipts_root”: “9ETNjrt6MkwTgSVMMbpukfxRshSD1avBUUa4R4NuqwHv”,
“chunk_headers_root”: “CDY1cuGvzr2YTM57ST7uVqEDX27rbgCauXq1hjHo9jjW”,
“chunk_tx_root”: “7tkzFg8RHBmMw1ncRJZCCZAizgq4rwCftTKYLce8RU8t”,
“outcome_root”: “7tkzFg8RHBmMw1ncRJZCCZAizgq4rwCftTKYLce8RU8t”,
“chunks_included”: 1,
“challenges_root”: “11111111111111111111111111111111”,
“timestamp”: 1614356082504891000,
“timestamp_nanosec”: “1614356082504891000”,
“random_value”: “CVNoqr7nXckRhE8dHGYHn8H49wT4gprM8YQhhZSj3awx”,
“validator_proposals”: [],
“chunk_mask”: [true],
“gas_price”: “1000000000”,
“rent_paid”: “0”,
“validator_reward”: “0”,
“total_supply”: “2050000000000000000000000000000000”,
“challenges_result”: [],
“last_final_block”: “Fnzr8a91ZV2UTGUgmuMY3Ar6RamgVQYTASdsiuHxof3n”,
“last_ds_final_block”: “Bi618Wbu7NAuxH5cqkXkBd1iH7Lue5YmQj16Xf3A2vTb”,
“next_bp_hash”: “EcqXCDTULxNaDncsiVU165HW7gMQNafzz5qekXgA6QdG”,
“block_merkle_root”: “6Wv8SQeWHJcZpLKKQ8sR7wnHrtbdMpfMQMkfvbWBAKGY”,
“approvals”: [
“ed25519:2N4HJaBCwzu1F9jMAKGYgUTKPB4VVvBGfZ6e7qM3P4bkFHkDohfmJmfvQtcEaRQN9Q8dSo4iEEA25tqRtuRWf1N3”
],
“signature”: “ed25519:4c9owM6uZb8Qbq2KYNXhmpmfpkKX4ygvvvFgMAy1qz5aZu7v3MmHKpavnJp7eTYeUpm8yyRzcXUpjoCpygjnZsF4”,
“latest_protocol_version”: 42
},
“chunks”: [
{
“chunk_hash”: “62ZVbyWBga6nSZixsWm6KAHkZ6FbYhY7jvDEt3Gc3HP3”,
“prev_block_hash”: “Bi618Wbu7NAuxH5cqkXkBd1iH7Lue5YmQj16Xf3A2vTb”,
“outcome_root”: “11111111111111111111111111111111”,
“prev_state_root”: “HLi9RaXG8ejkiehaiSwDZ31zQ8gQGXJyf34RmXAER6EB”,
“encoded_merkle_root”: “79Bt7ivt9Qhp3c6dJYnueaTyPVweYxZRpQHASRRAiyuy”,
“encoded_length”: 8,
“height_created”: 75,
“height_included”: 75,
“shard_id”: 0,
“gas_used”: 0,
“gas_limit”: 1000000000000000,
“rent_paid”: “0”,
“validator_reward”: “0”,
“balance_burnt”: “0”,
“outgoing_receipts_root”: “H4Rd6SGeEBTbxkitsCdzfu9xL9HtZ2eHoPCQXUeZ6bW4”,
“tx_root”: “11111111111111111111111111111111”,
“validator_proposals”: [],
“signature”: “ed25519:3XDErgyunAmhzaqie8uNbjPhgZMwjhTXADmfZM7TtdMKXaqawfRJhKCeavsmEe2rrMKeCuLk6ef8uhZT1952Vffi”
}
]
},
“chunks”: [
{
“author”: “test.near”,
“header”: {
“chunk_hash”: “62ZVbyWBga6nSZixsWm6KAHkZ6FbYhY7jvDEt3Gc3HP3”,
“prev_block_hash”: “Bi618Wbu7NAuxH5cqkXkBd1iH7Lue5YmQj16Xf3A2vTb”,
“outcome_root”: “11111111111111111111111111111111”,
“prev_state_root”: “HLi9RaXG8ejkiehaiSwDZ31zQ8gQGXJyf34RmXAER6EB”,
“encoded_merkle_root”: “79Bt7ivt9Qhp3c6dJYnueaTyPVweYxZRpQHASRRAiyuy”,
“encoded_length”: 8,
“height_created”: 75,
“height_included”: 0,
“shard_id”: 0,
“gas_used”: 0,
“gas_limit”: 1000000000000000,
“rent_paid”: “0”,
“validator_reward”: “0”,
“balance_burnt”: “0”,
“outgoing_receipts_root”: “H4Rd6SGeEBTbxkitsCdzfu9xL9HtZ2eHoPCQXUeZ6bW4”,
“tx_root”: “11111111111111111111111111111111”,
“validator_proposals”: [],
“signature”: “ed25519:3XDErgyunAmhzaqie8uNbjPhgZMwjhTXADmfZM7TtdMKXaqawfRJhKCeavsmEe2rrMKeCuLk6ef8uhZT1952Vffi”
},
“transactions”: [],
“receipts”: [],
“receipt_execution_outcomes”: []
}
],
“state_changes”: []
}
“`

heads up

You can find the all of the code we’ve written in this tutorial **[ [here](https://github.com/near-examples/indexer-tutorials/tree/master/example-indexer) ]**.

Formatting JSON Stream

./jq is a lightweight command line tool you can use to process and format your JSON stream.

cargo run -- run | jq
  • You can narrow your results down by adding arguments to your command. For example, if you want only transactions and the block height of those transactions run:
cargo run -- run | jq '{block_height: .block.header.height, transactions: .shards[0].chunk.transactions}'

You should have a stream that looks similar to the example below:

{
  "block_height": 145,
  "transactions": []
}
{
  "block_height": 146,
  "transactions": []
}
{
  "block_height": 147,
  "transactions": []
}

Indexer examples

Here is a list of NEAR indexer examples. If you created one and want to add it to the list, submit a PR or click Edit in the upper right hand corner of this doc and add it to the list!

Generate comment with AI 2 nL
Scroll to Top
Report a bug👀