Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,4 @@ community.

This Code of Conduct is adapted from the Contributor Covenant, version 2.1,
available at
https://www.contributor-covenant.org/version/2/1/code_of_conduct.html.
https://www.contributor-covenant.org/version/2/1/code_of_conduct.html.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ vero-audit-guard/
│ └── src/main.rs
├── anomaly-detector/ # TypeScript relayer monitor
│ ├── Dockerfile
│ ├── README.md
│ └── src/index.ts
├── atomic-rpc-relayer-bridge/ # Local RPC/metrics bridge
│ ├── Dockerfile
Expand All @@ -92,6 +93,7 @@ vero-audit-guard/
│ ├── policy-compliance.yml # OPA policy compliance checks
│ └── anchor-on-merge.yml # Anchors audit trail on merge to main
├── BUILD_GUARD.sh # Local automation script
├── CODE_OF_CONDUCT.md # Contributor code of conduct
├── CONTRIBUTING.md # Contributor + compose workflow
├── POLICY_AS_CODE.md # Policy engine documentation
├── INCIDENT_RESPONSE.md # Emergency runbook
Expand Down Expand Up @@ -204,8 +206,14 @@ See [ARCHITECTURE.md](ARCHITECTURE.md) for the container topology and integratio

---

## Code of Conduct

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms. See [`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md) for details.

---

## Security Contacts

- **Bug reports:** See [`VULNERABILITY_DISCLOSURE.md`](VULNERABILITY_DISCLOSURE.md)
- **Emergency:** security@vero.xyz
- **PGP:** https://vero.xyz/.well-known/security.txt
- **PGP:** https://vero.xyz/.well-known/security.txt
19 changes: 19 additions & 0 deletions anomaly-detector/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Anomaly Detector

Real-time anomaly detector for the relayer service.

## Key Modules

- `threat-feed-fetcher.ts`: Fetches threat feeds and incoming security signals.
- `rpc-failover-monitor.ts`: Monitors RPC endpoint health and handles failover tracking.

## Local Development

- **Development:** `npm run dev`
- **Test:** `npm run test`
- **Build:** `npm run build`

## Inputs & Outputs

- **Inputs:** `nonce-db.json` and relayer configurations.
- **Outputs:** Anomaly alerts and monitoring logs.
Loading