dswilson4 / public-canto-eip721-subgraph

Example subgraph to index erc721's, used to deploy to instance of The Graph indexing a Canto RPC

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Based off of https://github.com/wighawag/eip721-subgraph , this repo includes the most up to date compatible version of erc721 abis

example graphQL query

{
  tokens {
    contract
    tokenID
    owner
    tokenURI
  }
}

or

{
  tokens(orderBy: mintTime) {
    contract
    tokenID
    owner
    tokenURI
    mintTime
  }
  
  tokenContracts {
    id
  }
}

public-canto-eip721-subgraph

About

Example subgraph to index erc721's, used to deploy to instance of The Graph indexing a Canto RPC

License:Other


Languages

Language:JavaScript 41.2%Language:Solidity 32.0%Language:TypeScript 26.8%