Add Data Nexus testnet validator metadata (ID: 214)#832
Add Data Nexus testnet validator metadata (ID: 214)#832johnmarcou merged 1 commit intomonad-developers:mainfrom
Conversation
Greptile SummaryThis PR adds a new testnet validator metadata JSON file for Data Nexus (validator ID 214), following the established pattern for this repository. Changes:
Confidence Score: 4/5
Important Files Changed
Flowchartflowchart TD
A[PR: New Validator JSON File] --> B[Schema Check\nAll 8 required fields present]
B --> C{Fields Valid?}
C -->|Yes| D[Filename Check\nMatches secp key]
D --> E{Filename matches?}
E -->|Yes| F[Logo URL Check\nhttps://data.nexus/assets/...]
F --> G[CI: On-chain Key Verification\nsecp & bls vs staking contract]
G --> H{Keys Match?}
H -->|Yes| I[Validation Passed]
H -->|No| J[CI Fails]
C -->|No| K[Schema Error]
E -->|No| L[Filename Error]
Last reviewed commit: 9827af0 |
| "bls": "a5d20f3c3c6f22f164ac814c79b68226fb86eabc709fd594d004e0f77d6f21b511df378c3661659930d8f7c551395448", | ||
| "website": "https://data.nexus/", | ||
| "description": "Powering decentralized applications with data services and validation", | ||
| "logo": "https://data.nexus/assets/favicons/android-icon-192x192.png", |
There was a problem hiding this comment.
Favicon used as validator logo
The logo URL points to an Android favicon (android-icon-192x192.png) rather than a purpose-built validator logo. While 192×192 is a reasonable size, favicons are typically square app icons optimized for browser tabs and home screens — they may not render well in validator listing UIs that expect rectangular or styled logos with transparency or specific aspect ratios. Consider using a dedicated logo asset (e.g. an SVG or a high-res PNG designed for the validator directory context).
| "logo": "https://data.nexus/assets/favicons/android-icon-192x192.png", | |
| "logo": "https://data.nexus/assets/logo.png", |
Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!
Added JSON file for Data Nexus' testnet validator metadata