Bringing TheGraph's data indexing power to the Alephium blockchain.
During the hackathon, we developed a Proof of Concept (POC) that scrapes named address data from the AlphNames project and imports them into a database. We also created a GraphQL client to query this data.
We use Ruru, an open-source tool for data visualization, to allow users to explore data on our platform. However, our main solution is the blockchain data parser that we developed, which feeds data into the database.
You can query our GraphQL API directly by sending a POST request using `curl`:
curl -X POST https://hackalph.dev.oniabsis.com/graphql \
-H "Content-Type: application/json" \
-d '{"query": "{ getNames { name address addressGroup } }"}'