Skip to main content

Indexer for Explorer (Deprecated)

While developing a decentralized app you might want to query usage information for a contract such as:

  1. Which users have called a specific method in my contract?
  2. How much money and gas did they deposit?
  3. Which transactions failed?

In order to simplify asking these questions is that we developed the NEAR Indexer for Explorer.

Both testnet and mainnet networks have active instances that fill the database with all the data from the network starting from the genesis as Explorer requires.

GitHub repo

NEAR Indexer for Explorer is an indexer built on top of NEAR Indexer microframework. It watches the network and stores all the data from the blockchain in the PostgreSQL database. You can find the source code on this GitHub repository.


Example Queriesโ€‹

Transactions Calling a Methodโ€‹

Query for all transactions that called contribute in the v1.faucet.nonofficial.testnet testnet account.

select r.predecessor_account_id, t.transaction_hash 
from receipts r, action_receipt_actions ara, transactions t
where r.receiver_account_id ='v1.faucet.nonofficial.testnet'
and ara.receipt_id = r.receipt_id
and ara.action_kind = 'FUNCTION_CALL'
and ara.args @> '{"method_name": "contribute"}'
and t.transaction_hash = r.originated_from_transaction_hash

Users, Status, and Attached Moneyโ€‹

Query for all users that called contribute in v1.faucet.nonofficial.testnet, how much they attached to the call, and the transaction status.

select t.transaction_hash, eo.status, r.predecessor_account_id , ara.args -> 'deposit' as deposit
from receipts r, action_receipt_actions ara, transactions t, execution_outcomes eo
where r.receiver_account_id ='v1.faucet.nonofficial.testnet'
and ara.receipt_id = r.receipt_id and ara.action_kind = 'FUNCTION_CALL'
and ara.args @> '{"method_name": "contribute"}'
and t.transaction_hash = r.originated_from_transaction_hash
and r.receipt_id = eo.receipt_id

Sent Moneyโ€‹

Query for all the transfers going out from v1.faucet.nonofficial.testnet.

select r.receiver_account_id, ara.args -> 'deposit' as deposit	
from receipts r, action_receipt_actions ara
where r.predecessor_account_id ='v1.faucet.nonofficial.testnet'
and ara.receipt_id = r.receipt_id and ara.action_kind = 'TRANSFER'

NEAR Explorer sunsettingโ€‹

Pagoda made a decision to sunset NEAR Explorer as a product. This means that nearblocks.io (and explorer.testnet.near.org) will become a landing page with a list of available alternatives, and the existing nearblocks.io will be hosted under a new domain name and will be transitioned to the community through DevHub. Read more here.

What exactly is being shut down?โ€‹

You will lose access to databases with these URLs, or other Replicas you might have been given access to:

  • testnet.db.explorer.indexer.near.dev/testnet_explorer
  • mainnet.db.explorer.indexer.near.dev/mainnet_explorer

There is no plan to shut down any other data products, such as NEAR Lake or EnhancedAPI at the moment.

What is the timeline?โ€‹

Postgres users will lose access to data on the 30th of November, Thursday (12:00 pm Pacific Time Zone). Please migrate to one of the options listed below instead.

What does this mean for me?โ€‹

If you are using the public Postgres Explorer Database, you will need to migrate to other solutions, depending on your use-case. You should start planning for it right now and reach out to this Telegram group to get help.

What are the alternatives?โ€‹

There are two major use-cases that you might be using Explorer DB for: analytics and real-time queries from web user interfaces.

Analytics Use-Caseโ€‹

This is if you use Explorer DB to build internal or external dashboards. Pagoda has been working with Google Web3 team to enable BigQuery public dataset that has a compatible schema with Explorer DB.

tip

Find more information about our BigQuery solution here.

Web or API usageโ€‹

This is if you make queries to Explorer DB in response to API requests that your users make on your application. There are various options that you can explore:

  1. If you are working with token balances, including $NEAR, fungible or non-fungible tokens, consider using Enhanced API hosted by Pagoda, or run it yourself using https://github.com/near/near-enhanced-api-server and https://github.com/near/near-microindexers
  2. Use NEAR QueryAPI โ€“ serverless indexers and GraphQL endpoints: https://near.org/s/p?a=nearpavel.near&b=97029570
  3. Use NEAR Lake Indexer. Create an indexer using Rust, JavaScript. There are other languages supported by community, try this search.
  4. Consider other indexer solutions built by the community

Can I still continue using Explorer Database?โ€‹

No, you wonโ€™t be able to continue using Public Explorer Database after the sunset. However you can start your own instance of https://github.com/near/near-indexer-for-explorer and reindex the history from scratch or use a latest backup. We will share a backup of Explorer DB in September if you want to run your own instance.

To run your own infra, you will need:

  • Indexer services: We use two e2-medium instances on GCP for redundancy, with 2 vCPUs and 4GB of RAM.
  • A database: We use Postgres version 11, with 8+ vCPUs, 52GB+ RAM and ~8TB of SSD storage. In addition, we recommend running an extra read-replica on a similar or more powerful machine.
Was this page helpful?