📖Read Me
All information here is source from the official DFX Finance GitHub.
DFX V1 Subgraph
Any USD base pair created by the DFX factory is tracked by this subgraph. The subgraph tracks DFX for daily and hourly historical data on TVLs and volumes.
Currently there are 6 USD based stablecoin pairs on Ethereum (Mainnet) and 5 on Polygon.
DFX Subgraph Source: https://github.com/dfx-finance/subgraph
 Ethereum (Mainnet)
 Ethereum (Mainnet)
 Ethereum (Mainnet)
 Ethereum (Mainnet)- Singapore - USDC/XSGD 
- Europe - USDC/EURS 
- Canada - USDC/CADC 
- New Zealand - USDC/NZDS 
- Turkey - USDC/TRYB 
- Indonesia - USDC/XIDR 
 Polygon
 Polygon
 Polygon
 PolygonSetup
- Go to - https://thegraph.com/studio/
- Connect your MetaMask wallet and sign (This will not cost you any ETH) 
- Create a subgraph called 'dfx-test' 
- Install The Graph's CLI on your terminal - npm install -g @graphprotocol/graph-cli
- Clone this repo - git clone https://github.com/dfx-finance/subgraph.git
- Install dependencies - yarn install
- Go into the directory - cd subgraph
Deploy
- Generate the code from the schema - yarn codegen(This should be done every time the schema is changed)
- Copy the Deploy Key from - https://thegraph.com/studio/under 'dfx-test'
- In your command line, - graph auth --studio
- Paste your Deploy Key when prompted 
- Deploy to your instance - yarn deploy-test:mainnet
- Set version to 'v0.0.1' and increment as you update the schema and source code. 
- Go back to - https://thegraph.com/studio/dfx-testand you can start querying in the- Playgroundeven before the subgraph has synced to 100%
- Run this query to get the latest trades ordered from newest to oldest 
Deploy Legacy Explorer (Hosted)
The legacy explorer is the free public subgraph service provided by the graph. It can be seen as the centralized production environment.
- yarn prepare:mainnet
- yarn codegen
- yarn deploy-prod:mainnet
Documentation
Full documentation on how to use GraphQL queries in The Graph playground can be found here.
Debugging
Common issues:
One of the most common issues when changing the schema is all specified fields except for the id must be initialized or the subgraph will fail to index.
For example given this schema for the parent factory contract
type DFXFactory @entity {
  # factory address
  id: ID!
  # pair info
  pairCount: Int!
  # total volume
  totalVolumeUSD: BigDecimal!
  # total liquidity
  totalLiquidityUSD: BigDecimal!
  # transactions
  # txCount: BigInt!
}The subsequent mapping definition must have all fields present and defined.
factory = new DFXFactory(FACTORY_ADDRESS)
factory.pairCount = 0
factory.totalVolumeUSD = ZERO_BD
factory.totalLiquidityUSD = ZERO_BDConfiguration constants must be lowercase (Bad Example)
0x84Bf8151394dcF32146965753B28760550f3D7A8(Good Example)
0x84bf8151394dcf32146965753b28760550f3d7a8Switching from Ethereum to Polygon and vice versa requires a small change in subgraph\src\helpers.ts.
In fetchRewardsForDuration() there is a function that makes calls to the staking contracts contract.getRewardForDuration() in Ethereum it is just 1 BigDecimal but Polygon the number is inside an array so upon switching between the two there needs to be a small change of contract.getRewardForDuration()[0].
Logging
To help with debugging the The Graph has provided a logging object within the graph-ts module.
import { log } from "@graphprotocol/graph-ts";This can be used almost anywhere in your mapping code the provide insight on values that are being defined on your schema. There are four different types of logs that can be defined error, warn, info, debug They all follow the format of string message followed by and string array filled with your variables. They will show up after the subgraph is deployed.
For example
log.debug("The amount of pairs currently in dfx is {}", [factory.pairCount.toString()])Note: Addresses and transaction hashes must be converted to Hexstrings in order to show up properly in the logging.
Last updated
Was this helpful?
