├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── abis └── ERC721.json ├── generated ├── ERC721 │ └── ERC721.ts └── schema.ts ├── logo.png ├── package.json ├── schema.graphql ├── src └── mapping.ts ├── subgraph.yaml └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmidsi/generic-erc721-subgraph/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmidsi/generic-erc721-subgraph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmidsi/generic-erc721-subgraph/HEAD/README.md -------------------------------------------------------------------------------- /abis/ERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmidsi/generic-erc721-subgraph/HEAD/abis/ERC721.json -------------------------------------------------------------------------------- /generated/ERC721/ERC721.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmidsi/generic-erc721-subgraph/HEAD/generated/ERC721/ERC721.ts -------------------------------------------------------------------------------- /generated/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmidsi/generic-erc721-subgraph/HEAD/generated/schema.ts -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmidsi/generic-erc721-subgraph/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmidsi/generic-erc721-subgraph/HEAD/package.json -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmidsi/generic-erc721-subgraph/HEAD/schema.graphql -------------------------------------------------------------------------------- /src/mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmidsi/generic-erc721-subgraph/HEAD/src/mapping.ts -------------------------------------------------------------------------------- /subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmidsi/generic-erc721-subgraph/HEAD/subgraph.yaml -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmidsi/generic-erc721-subgraph/HEAD/yarn.lock --------------------------------------------------------------------------------