├── .gitignore ├── README.md └── template ├── .env ├── .gitignore ├── abi └── README.md ├── commands.json ├── docker-compose.yml ├── package-lock.json ├── package.json ├── schema.graphql ├── squid.yaml ├── src ├── main.ts ├── model │ ├── generated │ │ ├── entity.model.ts │ │ ├── index.ts │ │ └── marshal.ts │ └── index.ts └── processor.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsquid-quests/tornado-cash-migration/HEAD/README.md -------------------------------------------------------------------------------- /template/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsquid-quests/tornado-cash-migration/HEAD/template/.env -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsquid-quests/tornado-cash-migration/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/abi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsquid-quests/tornado-cash-migration/HEAD/template/abi/README.md -------------------------------------------------------------------------------- /template/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsquid-quests/tornado-cash-migration/HEAD/template/commands.json -------------------------------------------------------------------------------- /template/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsquid-quests/tornado-cash-migration/HEAD/template/docker-compose.yml -------------------------------------------------------------------------------- /template/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsquid-quests/tornado-cash-migration/HEAD/template/package-lock.json -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsquid-quests/tornado-cash-migration/HEAD/template/package.json -------------------------------------------------------------------------------- /template/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsquid-quests/tornado-cash-migration/HEAD/template/schema.graphql -------------------------------------------------------------------------------- /template/squid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsquid-quests/tornado-cash-migration/HEAD/template/squid.yaml -------------------------------------------------------------------------------- /template/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsquid-quests/tornado-cash-migration/HEAD/template/src/main.ts -------------------------------------------------------------------------------- /template/src/model/generated/entity.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsquid-quests/tornado-cash-migration/HEAD/template/src/model/generated/entity.model.ts -------------------------------------------------------------------------------- /template/src/model/generated/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./entity.model" 2 | -------------------------------------------------------------------------------- /template/src/model/generated/marshal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsquid-quests/tornado-cash-migration/HEAD/template/src/model/generated/marshal.ts -------------------------------------------------------------------------------- /template/src/model/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./generated" 2 | -------------------------------------------------------------------------------- /template/src/processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsquid-quests/tornado-cash-migration/HEAD/template/src/processor.ts -------------------------------------------------------------------------------- /template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsquid-quests/tornado-cash-migration/HEAD/template/tsconfig.json --------------------------------------------------------------------------------