├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── abis └── Gravity.json ├── bin └── Counter.bin ├── contracts ├── Gravity.sol └── Migrations.sol ├── docker-compose.yml ├── migrations ├── 1_initial_migration.js ├── 2_deploy_contract.js └── 3_create_gravatars.js ├── package.json ├── schema.graphql ├── src └── mapping.ts ├── subgraph.yaml ├── truffle.js └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/README.md -------------------------------------------------------------------------------- /abis/Gravity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/abis/Gravity.json -------------------------------------------------------------------------------- /bin/Counter.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/bin/Counter.bin -------------------------------------------------------------------------------- /contracts/Gravity.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/contracts/Gravity.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/migrations/2_deploy_contract.js -------------------------------------------------------------------------------- /migrations/3_create_gravatars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/migrations/3_create_gravatars.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/package.json -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/schema.graphql -------------------------------------------------------------------------------- /src/mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/src/mapping.ts -------------------------------------------------------------------------------- /subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/subgraph.yaml -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/truffle.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphprotocol/example-subgraph/HEAD/yarn.lock --------------------------------------------------------------------------------