{"id":17570826,"url":"https://github.com/eabz/evm-indexer","last_synced_at":"2025-10-04T01:44:11.477Z","repository":{"id":199780784,"uuid":"606902451","full_name":"eabz/evm-indexer","owner":"eabz","description":"A scalable SQL indexer for EVM compatible blockchains","archived":false,"fork":false,"pushed_at":"2025-09-22T00:25:43.000Z","size":736,"stargazers_count":81,"open_issues_count":1,"forks_count":7,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-10-04T01:44:09.517Z","etag":null,"topics":["blockchain","clickhouse","ethereum","evm","indexer","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eabz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-26T22:04:50.000Z","updated_at":"2025-08-22T23:07:46.000Z","dependencies_parsed_at":"2023-10-12T11:17:55.729Z","dependency_job_id":"4a9eee81-3081-4a41-98bd-1ecfc6d0ddfd","html_url":"https://github.com/eabz/evm-indexer","commit_stats":null,"previous_names":["eabz/evm-indexer","kindynosmx/evm-indexer"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/eabz/evm-indexer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eabz%2Fevm-indexer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eabz%2Fevm-indexer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eabz%2Fevm-indexer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eabz%2Fevm-indexer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eabz","download_url":"https://codeload.github.com/eabz/evm-indexer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eabz%2Fevm-indexer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278254470,"owners_count":25956598,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-03T02:00:06.070Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blockchain","clickhouse","ethereum","evm","indexer","rust"],"created_at":"2024-10-21T18:01:18.131Z","updated_at":"2025-10-04T01:44:11.448Z","avatar_url":"https://github.com/eabz.png","language":"Rust","funding_links":[],"categories":["Integrations"],"sub_categories":["ETL and Data Processing"],"readme":"\u003ch1 align=\"center\"\u003e\n\u003cstrong\u003eEVM Blockchain Indexer\u003c/strong\u003e\n\u003c/h1\u003e\n\u003cp align=\"center\"\u003e\n\u003cstrong\u003eScalable SQL indexer for EVM-compatible blockchains\u003c/strong\u003e\n\u003c/p\u003e\n\n[![Docker Image Size](https://badgen.net/docker/size/0xeabz/evm-indexer/main?icon=docker\u0026label=image%20size)](https://hub.docker.com/r/0xeabz/evm-indexer)\n![build](https://github.com/eabz/evm-indexer/actions/workflows/build.yml/badge.svg)\n\nAn indexer is a program that fetches and stores blockchain data for later analysis.\n\nThis indexer is specifically created to parse known data for EVM-compatible chains.\n\nIt stores all the blockchain primitives (blocks, transactions, receipts, logs, traces, withdrawals) and some other useful information (contracts created, erc20 transfers, erc721 transfers, erc1155 transfers)\n\n## Requirements\n\n- [Rust](https://www.rust-lang.org/tools/install)\n- [ClickHouse](https://clickhouse.com/)\n\n\n### Local\n\n1. Clone the repository\n\n```\ngit clone https://github.com/eabz/evm-indexer \u0026\u0026 cd evm-indexer\n```\n\n2. Build the program\n\n```\ncargo build --release\n```\n\n### Docker\n\n1. Clone the repository\n\n```\ngit clone https://github.com/eabz/evm-indexer \u0026\u0026 cd evm-indexer\n```\n\n2. Build the image and tag it as `indexer`\n\n```\ndocker build . -t indexer\n```\n\n## Program flags\n\n| Flag            | Default | Purpose                                                |\n| --------------- | :-----: | ------------------------------------------------------ |\n| `--debug`       |  false  | Start log with debug.                                  |\n| `--chain`       |    1    | Number identifying the chain id to sync.               |\n| `--start-block` |    0    | Block to start syncing.                                |\n| `--end-block`   |    0    | Last block to sync (0 to sync all the blocks).         |\n| `--batch-size`  |   200   | Amount of blocks to fetch in parallel.                 |\n| `--rpcs`        | `empty` | Comma separated list of rpcs to use to fetch blocks.   |\n| `--database`    | `empty` | Clickhouse database string with username and password. |\n| `--ws`          | `empty` | Url of the websocket endpoint to fetch new blocks.     |\n| `--traces`      | true    | Fetch blockchain traces.                               |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feabz%2Fevm-indexer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feabz%2Fevm-indexer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feabz%2Fevm-indexer/lists"}