This public repository is a collection of projects that are part of the Ronin ecosystem.
- Fork this repository,
- Create a directory with the name of your project in
/projects
. - Add your logo in PNG format
logo.png
. (Less than 2 MB, 1:1 ratio, min 256x256 and max 1024x1024 px size) - Create
data.json
, using the format below. - Open a Pull Request from the fork to this repository.
- A GitHub workflow will automatically check the validity of the changed / added files, please follow the bot's instructions if the validation fails.
- After the validation passed, a team member will merge the PR.
Contract addresses for your project can be queried by analytics/indexing sites. Ensure that only relavant contracts are submitted & sufficiently labelled.
{
"name": "Project Name",
"description": "Project Description",
"websites":[
{
"url": "https://project.com",
"description":"Website description"
},
{
"url": "https://support.project.com",
"description":"Website2 description"
}
],
"contracts": [
{
"address": "0x1....",
"label": "Contract name",
"description": "Short contract description"
},
{
"address": "0x2....",
"label": "Contract name #2",
"description": "Short contract description"
}
],
"categories": [
"bot",
"dao",
"finance",
"game",
"nft",
"tool",
"other"
],
"email": "(optional) [email protected]",
"social": {
"x": "(optional) https://x.com/...",
"telegram": "(optional) https://t.me/...",
"discord": "(optional) https://discord.gg/...",
"facebook" : "(optional) https://www.facebook.com/...",
"instagram" : "(optional) https://www.instagram.com/...",
"linkedin" : "(optional) https://www.linkedin.com/...",
}
}