Skip to content
Merged
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
8 changes: 8 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,11 @@ repos:
language: system
files: ^frontend/.*\.(js|jsx|ts|tsx)$
pass_filenames: false

- id: tokenomics-docs
name: tokenomics docs consistency
description: Verify docs/TOKENOMICS.md constants match the contract and frontend mirrors
entry: python3 scripts/check-tokenomics-docs.py
language: system
files: ^(docs/TOKENOMICS\.md|contracts/escrow/src/lib\.rs|frontend/lib/transactions\.ts|frontend/app/fee-calculator/page\.tsx)$
pass_filenames: false
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Index of project documentation. Start with the [root README](../README.md) for s
| [PRODUCTION_CHECKLIST.md](./PRODUCTION_CHECKLIST.md) | Pre-launch checklist covering code, infrastructure, contract deploy, E2E verification, and sign-off |
| [testing-matrix.md](./testing-matrix.md) | Unit, integration, and E2E test coverage and commands |
| [TESTING_MATRIX.md](./TESTING_MATRIX.md) | Cross-browser testing matrix: supported browsers, devices, and manual checklists |
| [TOKENOMICS.md](./TOKENOMICS.md) | Platform fee structure, revenue flow, and economic model |
| [TOKENOMICS.md](./TOKENOMICS.md) | Full economic model: fee calculation & distribution, fee-flow diagrams, per-party incentives, fee sensitivity analysis, and competitive comparison |
| [release-checklist.md](./release-checklist.md) | Pre-release verification steps |
| [release-notes-guide.md](./release-notes-guide.md) | How to write release notes entries |
| [troubleshooting.md](./troubleshooting.md) | Common errors and fixes |
Expand Down
Loading