-
Notifications
You must be signed in to change notification settings - Fork 31
[SE-326] Update add chain form to request #1686
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: staging
Are you sure you want to change the base?
Conversation
Totalspud
commented
Oct 9, 2025
- Their website
- General info about the project
- When the chain was launched
- Coingecko if they have a token
- Onboarding strategy / interop strategy
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggested validation improvements to enhance form security and UX.
| .workbench | ||
| .claude/settings.local.json | ||
| CLAUDE.md | ||
| nul |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove Windows artifact
| nul |
| <label style={{ display: 'block', marginBottom: '6px', fontSize: '14px', fontWeight: '500' }}> | ||
| General Information About the Project * | ||
| </label> | ||
| <textarea |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add character limit
| <textarea | |
| <textarea | |
| value={generalInfo} | |
| onChange={(e) => setGeneralInfo(e.target.value)} | |
| placeholder="Tell us about your project, its goals, and what makes it unique..." | |
| rows={4} | |
| maxLength={2000} | |
| required | |
| style={{ ...inputStyle, resize: 'vertical' }} | |
| /> |
| <div style={{ marginBottom: '20px' }}> | ||
| <label style={{ display: 'block', marginBottom: '6px', fontSize: '14px', fontWeight: '500' }}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use date picker for validation
| <div style={{ marginBottom: '20px' }}> | |
| <label style={{ display: 'block', marginBottom: '6px', fontSize: '14px', fontWeight: '500' }}> | |
| <label style={{ display: 'block', marginBottom: '6px', fontSize: '14px', fontWeight: '500' }}> | |
| Estimated Launch Date * | |
| </label> | |
| <input | |
| type="date" | |
| value={launchDate} | |
| onChange={(e) => setLaunchDate(e.target.value)} | |
| required | |
| style={inputStyle} | |
| /> |
| When Was/Will the Chain Be Launched? * | ||
| </label> | ||
| <input | ||
| type="text" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add character limit
| type="text" | |
| <textarea | |
| value={onboardingStrategy} | |
| onChange={(e) => setOnboardingStrategy(e.target.value)} | |
| placeholder="Describe your strategy for onboarding users, cross-chain interoperability plans, IBC connections, etc..." | |
| rows={4} | |
| maxLength={2000} | |
| required | |
| style={{ ...inputStyle, resize: 'vertical' }} | |
| /> |
| onChange={(e) => setGeneralInfo(e.target.value)} | ||
| placeholder="Tell us about your project, its goals, and what makes it unique..." | ||
| rows={4} | ||
| required |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add character limit
| required | |
| <textarea | |
| value={generalInfo} | |
| onChange={(e) => setGeneralInfo(e.target.value)} | |
| placeholder="Tell us about your project, its goals, and what makes it unique..." | |
| rows={4} | |
| maxLength={2000} | |
| required | |
| style={{ ...inputStyle, resize: 'vertical' }} | |
| /> |
| </label> | ||
| <textarea | ||
| value={onboardingStrategy} | ||
| onChange={(e) => setOnboardingStrategy(e.target.value)} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add character limit
| onChange={(e) => setOnboardingStrategy(e.target.value)} | |
| <textarea | |
| value={onboardingStrategy} | |
| onChange={(e) => setOnboardingStrategy(e.target.value)} | |
| placeholder="Describe your strategy for onboarding users, cross-chain interoperability plans, IBC connections, etc..." | |
| rows={4} | |
| maxLength={2000} | |
| required | |
| style={{ ...inputStyle, resize: 'vertical' }} | |
| /> |
| Chain Launch Date * | ||
| </label> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use date picker for validation
| Chain Launch Date * | |
| </label> | |
| <label style={{ display: 'block', marginBottom: '6px', fontSize: '14px', fontWeight: '500' }}> | |
| Chain Launch Date * | |
| </label> | |
| <input | |
| type="date" | |
| value={launchDate} | |
| onChange={(e) => setLaunchDate(e.target.value)} | |
| required | |
| style={inputStyle} | |
| /> |