Gralph - GraphQL Explorer for Alephium

Bringing TheGraph's data indexing power to the Alephium blockchain.

Current Project Overview

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.

Try Our Open Source Tool

Data Visualization and Blockchain Parsing

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.

How to Query Our API

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 } }"}'