Go to file
2022-09-05 00:11:45 +05:30
abis graph added 2022-09-05 00:02:08 +05:30
src graph added 2022-09-05 00:02:08 +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 Create README.md 2022-09-05 00:07:29 +05:30
schema.graphql added comments in schema 2022-09-05 00:11:45 +05:30
subgraph.yaml graph added 2022-09-05 00:02:08 +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
    manager {
      id
      address
      isAllowed
      isDSA
      transactionData {
        id
        txnIndex
        txnLogIndex
        from
        to
        input
        blockNumber
        timestamp
        blockGasUsed
        gasPrice
        gasLimit
        value
      }
    }
  }
}