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

add docs on listing your project on the moonbeam dapp directory #875

Merged
merged 9 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
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
7 changes: 7 additions & 0 deletions .snippets/code/learn/dapps-list/dapp-directory/contracts.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"contracts": [
{
"contract": "0xAcc15dC74880C9944775448304B263D191c6077F",
"chain": "moonbeam",
"name": "Wrapped GLMR Token"
}
]
10 changes: 10 additions & 0 deletions .snippets/code/learn/dapps-list/dapp-directory/folder-structure.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
my-project
├── my-project.json
├── logos
│ ├── my-project-logo-small.jpeg
│ └── my-project-logo-full.jpeg
└── screenshots
├── my-project-screenshot1-small.jpeg
├── my-project-screenshot1-full.jpeg
├── my-project-screenshot2-small.jpeg
└── my-project-screenshot2-full.jpeg
14 changes: 14 additions & 0 deletions .snippets/code/learn/dapps-list/dapp-directory/logo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"logo": {
"small": {
"fileName": "my-project-logo-small.jpeg",
"width": 40,
"height": 40,
"mimeType": "image/jpeg"
},
"full": {
"fileName": "my-project-logo-full.jpeg",
"width": 3000,
"height": 3000,
"mimeType": "image/jpeg"
}
}
107 changes: 107 additions & 0 deletions .snippets/code/learn/dapps-list/dapp-directory/project-data-file.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
{
"id": "moonwell",
"slug": "moonwell",
"name": "Moonwell",
"category": "lending",
"coinGeckoId": "moonwell-artemis",
"chains": ["moonbeam"],
"web3goIDs": ["Moonwell Artemis"],
"logo": {
"small": {
"fileName": "moonwell-logo-small.jpeg",
eshaben marked this conversation as resolved.
Show resolved Hide resolved
"width": 40,
"height": 40,
"mimeType": "image/jpeg"
},
"large": {
"fileName": "moonwell-logo-large.jpeg",
"width": 400,
"height": 400,
"mimeType": "image/jpeg"
},
"full": {
"fileName": "moonwell-logo-full.jpeg",
"width": 3000,
"height": 3000,
"mimeType": "image/jpeg"
}
},
"shortDescription": "Lending, borrowing, and DeFi protocol built on Moonbeam and Moonriver",
"description": "Moonwell is an open lending, borrowing, and decentralized finance protocol built on Moonbeam and Moonriver. Moonwell’s composable design can accommodate a full range of DeFi applications in the greater Polkadot and Kusama (DotSama) ecosystem.\r\n\r\nOur first deployment will be on Kusama’s Moonriver, the sister network of Polkadot’s Moonbeam. Moonriver is where new products are expected to be incubated and developed prior to being deployed on Moonbeam.",
"tags": ["Lending", "DeFi"],
"contracts": [
{
"contract": "0x511ab53f793683763e5a8829738301368a2411e3",
"chain": "moonbeam",
"name": "WELL Token"
}
],
"urls": {
"website": "https://moonwell.fi/",
"try": "https://moonwell.fi/",
"twitter": "https://twitter.com/MoonwellDeFi",
"medium": "https://moonwell.medium.com/",
"telegram": "https://t.me/moonwellfichat",
"github": "https://github.com/moonwell-open-source",
"discord": "https://discord.gg/moonwellfi"
},
"screenshots": [
{
"small": {
"fileName": "moonwell-screenshot-small1.png",
"width": 429,
"height": 200,
"mimeType": "image/png"
},
"full": {
"fileName": "moonwell-screenshot-full1.png",
"width": 514,
"height": 300,
"mimeType": "image/png"
}
},
{
"small": {
"fileName": "moonwell-screenshot-small2.png",
"width": 429,
"height": 200,
"mimeType": "image/png"
},
"full": {
"fileName": "moonwell-screenshot-full2.png",
"width": 1716,
"height": 800,
"mimeType": "image/png"
}
},
{
"small": {
"fileName": "moonwell-screenshot-small3.png",
"width": 429,
"height": 200,
"mimeType": "image/png"
},
"full": {
"fileName": "moonwell-screenshot-full3.png",
"width": 1054,
"height": 637,
"mimeType": "image/png"
}
},
{
"small": {
"fileName": "moonwell-screenshot-small4.png",
"width": 429,
"height": 200,
"mimeType": "image/png"
},
"full": {
"fileName": "moonwell-screenshot-full4.png",
"width": 1365,
"height": 436,
"mimeType": "image/png"
}
}
],
"projectCreationDate": 1644828523000
}
30 changes: 30 additions & 0 deletions .snippets/code/learn/dapps-list/dapp-directory/screenshots.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
"screenshots": [
{
"small": {
"fileName": "my-project-screenshot1-small.png",
"width": 429,
"height": 200,
"mimeType": "image/png"
},
"full": {
"fileName": "my-project-screenshot1-full.png",
"width": 514,
"height": 300,
"mimeType": "image/png"
}
},
{
"small": {
"fileName": "my-project-screenshot2-small.png",
"width": 429,
"height": 200,
"mimeType": "image/png"
},
"full": {
"fileName": "my-project-screenshot2-full.png",
"width": 1716,
"height": 800,
"mimeType": "image/png"
}
}
]
5 changes: 5 additions & 0 deletions .snippets/code/learn/dapps-list/dapp-directory/urls.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"urls": {
"website": "https://moonbeam.network/",
"try": "https://moonbeam.network/",
eshaben marked this conversation as resolved.
Show resolved Hide resolved
"twitter": "https://twitter.com/MoonbeamNetwork"
}
10 changes: 10 additions & 0 deletions .snippets/text/learn/dapps-list/dapp-directory/category-tags.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
- `DeFi`
- `Dex`
- `Bridges`
- `Lending`
- `NFTs`
- `Gaming`
- `Social`
- `Wallets`
- `DAO`
- `Other`
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions learn/dapps-list/.pages
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ title: DApps List
hide: false
nav:
- index.md
- 'Moonbeam Foundation DApp Directory': 'dapp-directory.md'
- 'State of the DApps': 'state-of-the-dapps.md'
- 'DappRadar': 'dapp-radar.md'
Loading
Loading