This repository generates realistic dummy data that matches the exact format and structure of the governance-seatbelt project. It's designed for testing GitHub Apps and systems that consume governance check artifacts.
This test environment allows developers to:
- Test GitHub Apps that download governance check artifacts
- Validate artifact processing systems
- Develop against realistic governance data without affecting production repos
- JSON (
.json
): Structured simulation reports with checks, state changes, events, and metadata - Markdown (
.md
): Human-readable reports with formatted sections - HTML (
.html
): Web-friendly versions of the reports - PDF (
.pdf
): Downloadable document format
reports/
├── Uniswap/0x408ED6354d4973f66138C91495F2f2FCbd8724C3/
│ ├── 42.json
│ ├── 42.md
│ ├── 42.html
│ ├── 42.pdf
│ └── ... (more proposals)
├── Compound/0xc0Da02939E1441F497fd74F78cE7Decb17B66529/
└── ENS/0x323A76393544d5ecca80cd6ef2A560C6a395b7E3/
frontend/public/
└── simulation-results.json # Combined frontend data
- Uniswap: 3 proposals (42, 43, 44)
- Compound: 3 proposals (120, 121, 122)
- ENS: 3 proposals (15, 16, 17)
Each proposal includes realistic:
- State changes with storage slots and values
- Event logs with decoded parameters
- Security checks with various status levels
- Metadata with block numbers and timestamps
# Install dependencies
bun install
# Generate reports
bun run generate
# Clean previous reports
bun run clean
The repository automatically generates fresh reports every 3 hours via GitHub Actions, matching the real governance-seatbelt schedule. Artifacts are uploaded with the same naming conventions:
Uniswap
- Uniswap DAO reportsCompound
- Compound DAO reportsENS
- ENS DAO reportsfrontend-data
- Combined frontend JSON
The types.d.ts
file contains exact type definitions copied from the real governance-seatbelt, including:
StructuredSimulationReport
- Main report interfaceSimulationCheck
- Individual check resultsSimulationStateChange
- Storage modificationsSimulationEvent
- Blockchain eventsFrontendData
- Frontend consumption format
To test your GitHub App:
- Install your GitHub App on this repository
- The workflow runs every 3 hours or can be manually triggered
- Your app can download artifacts using the same patterns as production
- All file formats and structures match the real governance-seatbelt exactly
- Bun: TypeScript runtime and package manager
- md-to-pdf: PDF generation from markdown
- remark/rehype: Markdown and HTML processing
- TypeScript: Type safety and development experience
This is a test repository that generates dummy data for development and testing purposes. It is not affiliated with any real governance proposals or DAOs.