From b521efbf3f3f98b78b8fe468aff646533b41b8c6 Mon Sep 17 00:00:00 2001 From: Antonio Nunez Date: Thu, 4 Jun 2026 12:04:13 +0800 Subject: [PATCH] feat: switch domain to solidityguard.altllm.ai --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/workflows/release.yml | 2 +- README.md | 10 +++++----- SECURITY.md | 2 +- apps/openclaw-skill/SKILL.md | 2 +- apps/web/backend/solidityguard_api/main.py | 2 +- apps/web/frontend/src/pages/Privacy.tsx | 4 ++-- apps/web/frontend/src/pages/Settings.tsx | 2 +- apps/web/frontend/src/pages/Terms.tsx | 4 ++-- 9 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 155ffeb..49bfd8f 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -16,7 +16,7 @@ assignees: "" - [ ] Scanner / Pattern Detection - [ ] CLI -- [ ] Web App (solidityguard.org) +- [ ] Web App (solidityguard.altllm.ai) - [ ] Desktop App (Tauri) - [ ] Report Generator - [ ] Tool Integration (Slither, Mythril, Echidna, Aderyn, Foundry, Medusa, Halmos, Certora) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5befb9e..17d9dc4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -409,7 +409,7 @@ jobs: | Component | Description | |-----------|-------------| | **Desktop App** | Native desktop application (Tauri v2) for Windows, macOS, and Linux | - | **Web App** | React frontend + FastAPI backend — deployed at [solidityguard.org](https://solidityguard.org) | + | **Web App** | React frontend + FastAPI backend — deployed at [solidityguard.altllm.ai](https://solidityguard.altllm.ai) | | **CLI** | Python CLI tool for terminal-based auditing (download `.whl` from release assets) | | **OpenClaw Skill** | AI agent skill for [OpenClaw](https://openclaw.ai) — install via ClawHub | diff --git a/README.md b/README.md index 6686305..3dae58b 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@

CI Latest Release - Web App + Web App License

@@ -23,7 +23,7 @@

- Try it now · + Try it now · Quick Start · 104 Patterns · Downloads · @@ -32,7 +32,7 @@ --- -> **Try it now at [solidityguard.org](https://solidityguard.org)** — scan your Solidity contracts instantly from your browser, no installation required. +> **Try it now at [solidityguard.altllm.ai](https://solidityguard.altllm.ai)** — scan your Solidity contracts instantly from your browser, no installation required. > **Need a professional, in-depth audit for your protocol?** Contact us at **maintainers@altresear.ch** — we offer comprehensive manual + AI-assisted security reviews tailored to your codebase. @@ -40,7 +40,7 @@ - **104 Vulnerability Patterns** (ETH-001 to ETH-104) — from real audits, exploits, SWC Registry, OWASP 2025, and 2025-2026 research - **9-Tool Integration** — Slither, Mythril, Echidna, Aderyn, Foundry v1.0, Medusa v1, Halmos, Certora, EVMBench -- **3 Application Surfaces** — CLI, Web ([solidityguard.org](https://solidityguard.org)), Desktop (Tauri v2) +- **3 Application Surfaces** — CLI, Web ([solidityguard.altllm.ai](https://solidityguard.altllm.ai)), Desktop (Tauri v2) - **Docker Support** — scan locally with zero setup, your code never leaves your machine - **Professional Reports** — OpenZeppelin/Trail of Bits-style Markdown + PDF with severity scoring - **7-Phase Deep Audit** — scan, verify, parallel agents, exploit PoC, dynamic verification, fuzz, report @@ -105,7 +105,7 @@ SolidityGuard's pattern scanner achieves **100% ground-truth coverage** — dete ### Web (Fastest) -Visit **[solidityguard.org](https://solidityguard.org)** to start scanning immediately — no setup needed. +Visit **[solidityguard.altllm.ai](https://solidityguard.altllm.ai)** to start scanning immediately — no setup needed. ### Docker (Recommended) diff --git a/SECURITY.md b/SECURITY.md index 3e2a846..0f2c14e 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -25,7 +25,7 @@ If you discover a security vulnerability in SolidityGuard itself (not in contrac ## Scope This security policy covers: -- The SolidityGuard web application (solidityguard.org) +- The SolidityGuard web application (solidityguard.altllm.ai) - The SolidityGuard desktop application - The SolidityGuard CLI tool - The backend API diff --git a/apps/openclaw-skill/SKILL.md b/apps/openclaw-skill/SKILL.md index c4e6698..d3ca0e7 100644 --- a/apps/openclaw-skill/SKILL.md +++ b/apps/openclaw-skill/SKILL.md @@ -1,7 +1,7 @@ --- name: solidityguard description: "Advanced Solidity/EVM smart contract security auditor with 104 vulnerability patterns, multi-tool integration, and professional report generation." -metadata: {"openclaw":{"emoji":"🛡️","homepage":"https://solidityguard.org","os":["darwin","linux","win32"],"requires":{"bins":["python3"],"anyBins":["slither","aderyn"]},"primaryEnv":"SOLIDITYGUARD_PATH","install":{"npm":"solidityguard"}}} +metadata: {"openclaw":{"emoji":"🛡️","homepage":"https://solidityguard.altllm.ai","os":["darwin","linux","win32"],"requires":{"bins":["python3"],"anyBins":["slither","aderyn"]},"primaryEnv":"SOLIDITYGUARD_PATH","install":{"npm":"solidityguard"}}} user-invocable: true --- diff --git a/apps/web/backend/solidityguard_api/main.py b/apps/web/backend/solidityguard_api/main.py index bd827c8..7eb19e0 100644 --- a/apps/web/backend/solidityguard_api/main.py +++ b/apps/web/backend/solidityguard_api/main.py @@ -30,7 +30,7 @@ async def lifespan(app: FastAPI): app.add_middleware( CORSMiddleware, allow_origins=[ - "https://solidityguard.org", + "https://solidityguard.altllm.ai", "http://localhost:5173", "http://localhost:8000", "http://localhost:3000", diff --git a/apps/web/frontend/src/pages/Privacy.tsx b/apps/web/frontend/src/pages/Privacy.tsx index ae9fd3d..1acc432 100644 --- a/apps/web/frontend/src/pages/Privacy.tsx +++ b/apps/web/frontend/src/pages/Privacy.tsx @@ -177,12 +177,12 @@ export default function Privacy() {

Alt Research Ltd. —{' '} - solidityguard.org + solidityguard.altllm.ai
diff --git a/apps/web/frontend/src/pages/Settings.tsx b/apps/web/frontend/src/pages/Settings.tsx index 82a5543..b4b680d 100644 --- a/apps/web/frontend/src/pages/Settings.tsx +++ b/apps/web/frontend/src/pages/Settings.tsx @@ -106,7 +106,7 @@ export default function Settings() { Alt Research Ltd. —{' '} - solidityguard.org + solidityguard.altllm.ai