├── .cargo └── config.toml ├── .gitignore ├── .gitpod.yml ├── .sfreleaser ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── abi └── erc721.json ├── docker-compose.yml ├── proto └── erc721.proto ├── rust-toolchain.toml ├── schema.sql ├── src ├── abi │ ├── erc721.rs │ └── mod.rs ├── lib.rs └── pb │ ├── .last_generated_hash │ ├── eth.erc721.v1.rs │ └── mod.rs └── substreams.yaml /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.sfreleaser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/.sfreleaser -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/README.md -------------------------------------------------------------------------------- /abi/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/abi/erc721.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /proto/erc721.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/proto/erc721.proto -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/schema.sql -------------------------------------------------------------------------------- /src/abi/erc721.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/src/abi/erc721.rs -------------------------------------------------------------------------------- /src/abi/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod erc721; 2 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/pb/.last_generated_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/src/pb/.last_generated_hash -------------------------------------------------------------------------------- /src/pb/eth.erc721.v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/src/pb/eth.erc721.v1.rs -------------------------------------------------------------------------------- /src/pb/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/src/pb/mod.rs -------------------------------------------------------------------------------- /substreams.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingfast/substreams-template/HEAD/substreams.yaml --------------------------------------------------------------------------------