{"id":47976583,"url":"https://github.com/owieth/foundry-setup","last_synced_at":"2026-04-04T10:56:18.442Z","repository":{"id":178595651,"uuid":"655582334","full_name":"owieth/foundry-setup","owner":"owieth","description":"Production-ready Foundry/Solidity project template with CI, static analysis, and GitHub Pages docs","archived":false,"fork":false,"pushed_at":"2026-03-30T13:12:27.000Z","size":582,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-04T10:56:17.186Z","etag":null,"topics":["ci-cd","ethereum","forge","foundry-rs","hardhat-alternative","security","smart-contracts","solidity","template"],"latest_commit_sha":null,"homepage":"https://owieth.github.io/foundry-setup/","language":"Solidity","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/owieth.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-06-19T07:39:16.000Z","updated_at":"2026-03-30T13:12:31.000Z","dependencies_parsed_at":"2024-09-16T14:16:30.791Z","dependency_job_id":"cef5808e-c2b4-4e51-b0e5-32c2b29e4f32","html_url":"https://github.com/owieth/foundry-setup","commit_stats":null,"previous_names":["owieth/foundry-setup"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/owieth/foundry-setup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owieth%2Ffoundry-setup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owieth%2Ffoundry-setup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owieth%2Ffoundry-setup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owieth%2Ffoundry-setup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/owieth","download_url":"https://codeload.github.com/owieth/foundry-setup/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owieth%2Ffoundry-setup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31397056,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: 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":["ci-cd","ethereum","forge","foundry-rs","hardhat-alternative","security","smart-contracts","solidity","template"],"created_at":"2026-04-04T10:56:17.917Z","updated_at":"2026-04-04T10:56:18.432Z","avatar_url":"https://github.com/owieth.png","language":"Solidity","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Foundry Setup Template\n\n[![Test](https://github.com/owieth/foundry-setup/actions/workflows/test.yml/badge.svg)](https://github.com/owieth/foundry-setup/actions/workflows/test.yml)\n[![Slither](https://github.com/owieth/foundry-setup/actions/workflows/slither.yml/badge.svg)](https://github.com/owieth/foundry-setup/actions/workflows/slither.yml)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)\n![Foundry](https://img.shields.io/badge/Built%20with-Foundry-FFDB1C)\n\nA template repository for Foundry/Solidity projects with CI, static analysis, and auto-generated docs.\n\n## Quick Start\n\n**Prerequisites:** [Install Foundry](https://book.getfoundry.sh/getting-started/installation)\n\n```shell\n# Clone and set up\ngit clone https://github.com/owieth/foundry-setup\ncd foundry-setup\nforge install\n\n# Copy environment variables\ncp .env.example .env\n# Fill in your values, then:\nsource .env\n```\n\n## Local Development\n\n### Build \u0026 Test\n\n```shell\nforge build\nforge test -vvvv\nforge snapshot\n```\n\n### Format\n\n```shell\nforge fmt\nforge fmt --check\n```\n\n### Generate Docs\n\n```shell\nforge doc\nforge doc --serve  # preview at http://localhost:3000\n```\n\n### Deploy\n\n```shell\nsource .env\nforge script script/\u003cScript\u003e.s.sol:\u003cContract\u003e --rpc-url \u003cchain\u003e --broadcast --verify -vvvvv\n```\n\n### Local Fork with Anvil\n\n```shell\n# Fresh local chain\nanvil\n\n# Fork Sepolia\nanvil -f https://eth-sepolia.g.alchemy.com/v2/\u003cyour_api_key\u003e\n```\n\n## Contract Layout\n\nLayout of `**.sol`:\n\n- version\n- imports\n- interfaces, libraries, contracts\n- usings (`using ... for ...`)\n- errors\n- type declarations\n- state variables\n- events\n- modifiers\n- functions\n\nLayout of functions (inside `**.sol` after modifiers):\n\n- constructor\n- receive (if exists)\n- fallback (if exists)\n- external\n- public\n- internal\n- private\n- view \u0026 pure (last per visibility group)\n\nMore → [STYLE.md](./STYLE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fowieth%2Ffoundry-setup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fowieth%2Ffoundry-setup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fowieth%2Ffoundry-setup/lists"}