Skip to content
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

Allow $ and : in symbol and name respectively #27

Merged
merged 3 commits into from
Nov 11, 2020
Merged
Changes from 1 commit
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
Next Next commit
Allow $ and : in symbol and name respectively
This will allow tokens such as `DMM: Governance` and `$TRDL`.
  • Loading branch information
eccentricexit authored Oct 30, 2020
commit fd1ac6584fc988412c0acfdbc29e8964001affc5
4 changes: 2 additions & 2 deletions src/tokenlist.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,15 @@
"description": "The name of the token",
"minLength": 1,
"maxLength": 40,
"pattern": "^[ \\w.'+\\-%/À-ÖØ-öø-ÿ]+$",
"pattern": "^[ \\w.'+\\-%/À-ÖØ-öø-ÿ\:]+$",
"examples": [
"USD Coin"
]
},
"symbol": {
"type": "string",
"description": "The symbol for the token; must be alphanumeric",
"pattern": "^[a-zA-Z0-9+\\-%/]+$",
"pattern": "^[a-zA-Z0-9+\\-%/\$]+$",
"minLength": 1,
"maxLength": 20,
"examples": [
Expand Down