├── .gitignore ├── README.md ├── abis ├── ExchangeV1.json └── ExchangeV2.json ├── package.json ├── schema.graphql ├── src └── mappings │ ├── ExchangeV1.ts │ └── ExchangeV2.ts ├── subgraph.yaml ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | types/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/0x-subgraph/HEAD/README.md -------------------------------------------------------------------------------- /abis/ExchangeV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/0x-subgraph/HEAD/abis/ExchangeV1.json -------------------------------------------------------------------------------- /abis/ExchangeV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/0x-subgraph/HEAD/abis/ExchangeV2.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/0x-subgraph/HEAD/package.json -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/0x-subgraph/HEAD/schema.graphql -------------------------------------------------------------------------------- /src/mappings/ExchangeV1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/0x-subgraph/HEAD/src/mappings/ExchangeV1.ts -------------------------------------------------------------------------------- /src/mappings/ExchangeV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/0x-subgraph/HEAD/src/mappings/ExchangeV2.ts -------------------------------------------------------------------------------- /subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/0x-subgraph/HEAD/subgraph.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/0x-subgraph/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/0x-subgraph/HEAD/yarn.lock --------------------------------------------------------------------------------