Social Feed Indexer
提示
This tutorial creates a blockchain indexer using NEAR QueryAPI.
Running feed-indexer
The indexer indexingLogic.js
is comprised of functions that help handle, transform and record data. The main logic for handling transaction data as it occurs from the blockchain can be found underneath the comment marked:
// Add your code here
A schema is also specified for the tables in which data from relevant transactions is to be persisted, this can be found in the schema.sql
tab.
提示
This indexer can be found by following this link.