├── .github └── workflows │ └── test.yml ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── abis ├── AuctionRegistrar.json ├── BaseRegistrar.json ├── Deed.json ├── LegacyEthRegistrarController.json ├── NameWrapper.json ├── PublicResolver.json ├── Registry.json ├── UnwrappedEthRegistrarController.json └── WrappedEthRegistrarController.json ├── networks.json ├── package.json ├── schema.graphql ├── src ├── @types │ ├── assembly │ │ ├── index.d.ts │ │ └── package.json │ └── es5 │ │ ├── index.d.ts │ │ └── package.json ├── ensRegistry.ts ├── ethRegistrar.ts ├── nameWrapper.ts ├── resolver.ts └── utils.ts ├── subgraph.yaml ├── tests ├── .latest.json ├── ensRegistrar.test.ts ├── ensRegistry.test.ts ├── nameWrapper.test.ts ├── resolver.test.ts ├── testUtils.ts └── utils.test.ts ├── tsconfig.json └── yarn.lock /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/README.md -------------------------------------------------------------------------------- /abis/AuctionRegistrar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/abis/AuctionRegistrar.json -------------------------------------------------------------------------------- /abis/BaseRegistrar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/abis/BaseRegistrar.json -------------------------------------------------------------------------------- /abis/Deed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/abis/Deed.json -------------------------------------------------------------------------------- /abis/LegacyEthRegistrarController.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/abis/LegacyEthRegistrarController.json -------------------------------------------------------------------------------- /abis/NameWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/abis/NameWrapper.json -------------------------------------------------------------------------------- /abis/PublicResolver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/abis/PublicResolver.json -------------------------------------------------------------------------------- /abis/Registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/abis/Registry.json -------------------------------------------------------------------------------- /abis/UnwrappedEthRegistrarController.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/abis/UnwrappedEthRegistrarController.json -------------------------------------------------------------------------------- /abis/WrappedEthRegistrarController.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/abis/WrappedEthRegistrarController.json -------------------------------------------------------------------------------- /networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/networks.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/package.json -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/schema.graphql -------------------------------------------------------------------------------- /src/@types/assembly/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/src/@types/assembly/index.d.ts -------------------------------------------------------------------------------- /src/@types/assembly/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "types": "index.d.ts" 3 | } -------------------------------------------------------------------------------- /src/@types/es5/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/src/@types/es5/index.d.ts -------------------------------------------------------------------------------- /src/@types/es5/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "types": "index.d.ts" 3 | } 4 | -------------------------------------------------------------------------------- /src/ensRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/src/ensRegistry.ts -------------------------------------------------------------------------------- /src/ethRegistrar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/src/ethRegistrar.ts -------------------------------------------------------------------------------- /src/nameWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/src/nameWrapper.ts -------------------------------------------------------------------------------- /src/resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/src/resolver.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/src/utils.ts -------------------------------------------------------------------------------- /subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/subgraph.yaml -------------------------------------------------------------------------------- /tests/.latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/tests/.latest.json -------------------------------------------------------------------------------- /tests/ensRegistrar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/tests/ensRegistrar.test.ts -------------------------------------------------------------------------------- /tests/ensRegistry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/tests/ensRegistry.test.ts -------------------------------------------------------------------------------- /tests/nameWrapper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/tests/nameWrapper.test.ts -------------------------------------------------------------------------------- /tests/resolver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/tests/resolver.test.ts -------------------------------------------------------------------------------- /tests/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/tests/testUtils.ts -------------------------------------------------------------------------------- /tests/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/tests/utils.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ensdomains/ens-subgraph/HEAD/yarn.lock --------------------------------------------------------------------------------