Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 418 Bytes

README.md

File metadata and controls

28 lines (25 loc) · 418 Bytes

esd-subgraph

Example queries

Fetch information about epoches

{
  epoches(first: 5) {
    id
    startDAOTotalBonded
    startDAOTotalStaged
    startTotalDebt
  }
}

Fetch account related info for different epochs

{
  accounts(where: {address: "0x0006e4548aed4502ec8c844567840ce6ef1013f5"}) {
    id
    stagedBalance
    bondedBalance
    holdingBalance
    epochNo
  }
}