Go to file
Richa 9656b1faa3
Merge pull request #2 from Richa-iitr/new
updated to call handlers
2022-09-05 22:56:06 +05:30
abis graph added 2022-09-05 00:02:08 +05:30
src minor fix 2022-09-05 16:08:45 +05:30
.gitignore graph added 2022-09-05 00:02:08 +05:30
networks.json Initial commit 2022-09-04 22:24:41 +05:30
package.json Initial commit 2022-09-04 22:24:41 +05:30
README.md Update README.md 2022-09-05 15:52:43 +05:30
schema.graphql updated to call handlers 2022-09-05 15:49:07 +05:30
subgraph.yaml updated to call handlers 2022-09-05 15:49:07 +05:30
tsconfig.json Initial commit 2022-09-04 22:24:41 +05:30
yarn.lock graph added 2022-09-05 00:02:08 +05:30

Compound V3 Managers

Subgraph for storing the managers on Compound V3 with write access on the owner account.
Query the subgraph: https://api.thegraph.com/subgraphs/name/richa-iitr/dsa-compound-v3-managers

Build the subgraph

graph build --network mainnet

Query

{
  owners{
    id
    address
    market
    manager {
      id
      address
      isAllowed
      isDSA
      market
      transactionData {
        id
        txnIndex
        from
        to
        input
        blockNumber
        timestamp
        blockGasUsed
        gasPrice
        gasLimit
        value
      }
    }
  }
}