Developers Docs
Search
⌃K

SushiSwap Exchange Subgraph Development

So now that we have gone though purpose of subgraph, our common schema and mapping code library, let's see how one can use these to develop a subgraph to plug into SimpleFi Dashboard.
We assume basic understanding of subgraph development and smart contracts, you can read about them at https://thegraph.com/docs/developer/quick-start and https://docs.soliditylang.org/en/v0.8.8/
In this series of documents we will be going though the development of subgraph for SushiSwap exchange protocol, as we did it, to explain each and every aspect of the subgraph development process. Final code of the this subgraph is available at https://github.com/SimpleFi-finance/subgraphs/tree/master/simplefi-sushiswap
The subgraph development process can be broken into following steps
  1. 5.
    Verifying accuracy of the subgraph
  2. 6.
    Debugging a subgraph and updating it after bug fixes
Let's go though them one by one.