Skip to content

Commit

Permalink
add game category (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xjazper authored Jun 6, 2024
1 parent a9bb146 commit c5b409f
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/validate-files.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def validate_json(json_file):
return False

# Ensure tokenCategory is valid
valid_categories = ["Stablecoin", "DeFi", "Memecoin", "Other"]
valid_categories = ["Stablecoin", "DeFi", "Memecoin", "Game", "Other"]
if data["tokenCategory"] not in valid_categories:
print(f"Invalid tokenCategory in: {json_file}")
return False
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To submit a request to whitelist a token on the Thruster frontend, you must do t
- `tokenName`: the token name on the blockchain
- `tokenSymbol`: the token symbol on the blockchain
- `tokenDecimals`: the decimals of the token on the blockchain
- `tokenCategory`: desired category for the token (i.e. `DeFi`, `Stablecoin`, `Memecoin`, or by default `Other`)
- `tokenCategory`: desired category for the token (i.e. `DeFi`, `Stablecoin`, `Memecoin`, `Game`, or by default `Other`)
- `token-logo.svg`
- A svg file image of your token logo as a circle, which **MUST** be under 150 KB. Rectangles and other shapes of images will not be accepted.
- Additionally, in the submitted PR, please add a brief description of the type of token if the token contract is non-standard (e.g. non-ERC20, BT404, tax).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"tokenName": "KAP Games",
"tokenSymbol": "KAP",
"tokenDecimals": 18,
"tokenCategory": "DeFi"
"tokenCategory": "Game"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"tokenName": "Yield Token",
"tokenSymbol": "YIELD",
"tokenDecimals": 18,
"tokenCategory": "DeFi"
"tokenCategory": "Game"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"tokenName": "bWOOL",
"tokenSymbol": "bWOOL",
"tokenDecimals": 18,
"tokenCategory": "DeFi"
"tokenCategory": "Game"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"tokenName": "Sekai Glory",
"tokenSymbol": "GLORY",
"tokenDecimals": 18,
"tokenCategory": "DeFi"
"tokenCategory": "Game"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"tokenName": "SSS",
"tokenSymbol": "SSS",
"tokenDecimals": 18,
"tokenCategory": "Other"
"tokenCategory": "Game"
}
10 changes: 5 additions & 5 deletions chains/81457/token-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"tokenName": "KAP Games",
"tokenSymbol": "KAP",
"tokenDecimals": 18,
"tokenCategory": "DeFi"
"tokenCategory": "Game"
},
{
"tokenAddress": "0x1a3d9b2fa5c6522c8c071dc07125ce55df90b253",
Expand Down Expand Up @@ -242,7 +242,7 @@
"tokenName": "Yield Token",
"tokenSymbol": "YIELD",
"tokenDecimals": 18,
"tokenCategory": "DeFi"
"tokenCategory": "Game"
},
{
"tokenAddress": "0x68449870eea84453044bd430822827e21fd8f101",
Expand Down Expand Up @@ -368,7 +368,7 @@
"tokenName": "bWOOL",
"tokenSymbol": "bWOOL",
"tokenDecimals": 18,
"tokenCategory": "DeFi"
"tokenCategory": "Game"
},
{
"tokenAddress": "0xb9dfcd4cf589bb8090569cb52fac1b88dbe4981f",
Expand Down Expand Up @@ -410,7 +410,7 @@
"tokenName": "Sekai Glory",
"tokenSymbol": "GLORY",
"tokenDecimals": 18,
"tokenCategory": "DeFi"
"tokenCategory": "Game"
},
{
"tokenAddress": "0xd71035849d2fba67533bf50900a3e8b684ac1b42",
Expand Down Expand Up @@ -466,6 +466,6 @@
"tokenName": "SSS",
"tokenSymbol": "SSS",
"tokenDecimals": 18,
"tokenCategory": "Other"
"tokenCategory": "Game"
}
]
2 changes: 1 addition & 1 deletion pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
- [ ] Description of token if non-standard ERC20, e.g. has tax, OFT token, bridged XERC20, ERC-404, etc.
- [ ] An SVG <150 KB in size, cropped to be a circle. **Rectangles and other shapes of images will not be accepted.**
- [ ] Token category you would like to be listed under
- Current categories: DeFi, Memecoin, Stablecoin, Other
- Current categories: DeFi, Memecoin, Stablecoin, Game, Other

### Additional Information
-

0 comments on commit c5b409f

Please sign in to comment.