GitHub repoYou can find the Lake Indexer source code in this GitHub repository.
How it works
There are AWS S3 buckets created:near-lake-data-testnet(eu-central-1region)near-lake-data-mainnet(eu-central-1region)
Data structure
The data structure used by Lake Indexer is the following:<block_height> is a 12-character-long u64 string with leading zeros (e.g “000042839521”). See this issue for reasoning.
block_json contains JSON-serialized BlockView struct. NB! this struct might change in the future, we will announce it
shard_N.json where N is u64 starting from 0. Represents the index number of the shard. In order to find out the expected number of shards in the block you can look in block.json at .header.chunks_included
How to use it
We have created the NEAR Lake Framework to have a simple straightforward way to create an indexer on top of the data stored by NEAR Lake itself.NEAR Lake FrameworkYou can check the NEAR Lake Framework release announcement on the NEAR Governance Forum.