{"id":42272941,"url":"https://github.com/immutable/immutable-geth","last_synced_at":"2026-01-27T07:30:08.480Z","repository":{"id":266786520,"uuid":"891227585","full_name":"immutable/immutable-geth","owner":"immutable","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-14T02:17:22.000Z","size":184735,"stargazers_count":3,"open_issues_count":2,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-01-14T05:44:39.764Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/immutable.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":"audit/202411-internal-audit.md","citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-11-20T00:35:59.000Z","updated_at":"2026-01-14T02:17:24.000Z","dependencies_parsed_at":"2025-04-01T03:25:46.872Z","dependency_job_id":"7bd9ffae-e563-4e33-bdfe-470ea6c95df9","html_url":"https://github.com/immutable/immutable-geth","commit_stats":null,"previous_names":["immutable/immutable-geth"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/immutable/immutable-geth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/immutable%2Fimmutable-geth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/immutable%2Fimmutable-geth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/immutable%2Fimmutable-geth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/immutable%2Fimmutable-geth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/immutable","download_url":"https://codeload.github.com/immutable/immutable-geth/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/immutable%2Fimmutable-geth/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28808012,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T07:14:39.408Z","status":"ssl_error","status_checked_at":"2026-01-27T07:14:39.098Z","response_time":168,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-01-27T07:30:06.004Z","updated_at":"2026-01-27T07:30:08.465Z","avatar_url":"https://github.com/immutable.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Immutable Geth\n\nGolang execution layer implementation of the Ethereum protocol. Modified for the purposes of the Immutable zkEVM.\n\nAll modifications made by Immutable are either contained in files named `*immutable*.go` or have `CHANGE(immutable):` comments above or inside the modified lines of code.\n\n## Build\n\nWith Golang 1.20 installed, run:\n\n```\nmake geth\n```\n\nor, to build the full suite of utilities:\n\n```\nmake all\n```\n\nThe built client binary is `./build/bin/geth`\n\nYou can run a local network with your built binary via the `immutable bootstrap local` command:\n```\nnow=$(date +%s)\n./build/bin/geth immutable bootstrap local \\\n--override.shanghai=\"$now\" \\\n--override.prevrandao=\"$now\" \\\n--override.cancun=\"$now\"\n```\n\nYou can run the E2E tests against your built binary via:\n```\n.github/scripts/bootstrap_test.sh\n```\n\n## Docker\n\nThe client is distributed as the following Docker image:\n```\ndocker pull ghcr.io/immutable/go-ethereum/go-ethereum:latest\n```\n\n## Run\n\nIf you wish to join the P2P network, please follow the instructions [here](https://docs.immutable.com/learn/platform/nodes/).\n\n### Hardware Requirements\n\nMinimum:\n\n* CPU with 2+ cores\n* 4GB RAM\n* 1TB free storage space to sync the Mainnet\n* 8 MBit/sec download Internet service\n\nRecommended:\n\n* Fast CPU with 4+ cores\n* 16GB+ RAM\n* High-performance SSD with at least 1TB of free space\n* 25+ MBit/sec download Internet service\n\n## Contribution\n\nWe welcome any contributions and aim to respond promptly to issues and pull requests.\n\nPlease make sure your contributions adhere to our coding guidelines:\n\n * Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting)\n   guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)).\n * Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary)\n   guidelines.\n * Pull requests need to be based on and opened against the `main` branch.\n\n## License\n\nThe Immutable go-ethereum library (i.e. all code outside of the `cmd` directory) is licensed under the\n[GNU Lesser General Public License v3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html),\nalso included in our repository in the `COPYING.LESSER` file.\n\nThe Immutable go-ethereum binaries (i.e. all code inside of the `cmd` directory) are licensed under the\n[GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html), also\nincluded in our repository in the `COPYING` file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimmutable%2Fimmutable-geth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimmutable%2Fimmutable-geth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimmutable%2Fimmutable-geth/lists"}