Skip to content

Commit

Permalink
update README steps for updating the base ecosystem page - categories…
Browse files Browse the repository at this point in the history
…/subcategories (#1360)

* update README steps for updating the base ecosystem page - switch tags to categories/subcategories

* Update README.md

Fix nested spacing of categories -> subcategories

* fix subcategory value for "centralized exchange"
  • Loading branch information
dry-tortuga authored Dec 9, 2024
1 parent ffc2a7a commit 300d4a4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,18 +86,25 @@ If you're a builder who wants to add or update your project on the [Base Ecosyst
```json
{
"name": "Your Project Name",
"tags": ["category"],
"description": "A brief description of your project (less than 200 characters)",
"url": "https://your-project-url.com",
"imageUrl": "/images/partners/your-project-logo.png"
"imageUrl": "/images/partners/your-project-logo.png",
"category": "Your Project Category",
"subcategory": "Your Project Subcategory"
}
```

- name: Your project's name
- tags: An array with _one_ of the following categories: `bridge`, `dao`, `defi`, `gaming`, `infra`, `nft`, `onramp`, `social`, `wallet`, `security`
- description: A brief description of your project, must be less than 200 characters
- url: Your project's website URL
- imageUrl: Path to your project's logo image
- category: Your project's category, _one_ of: `consumer`, `defi`, `infra`, `onramp`, `wallet`
- subcategory: Your project's subcategory, with the following options associated with each category
- `consumer`: _One_ of `creator`, `crypto taxes`, `dao`, `gaming`, `messaging`, `music`, `nft`, `payments`, `real world`, `social`
- `defi`: _One_ of `dex`, `dex aggregator`, `insurance`, `lending/borrowing`, `liquidity management`, `portfolio`, `stablecoin`, `yield vault`
- `infra`: _One_ of `ai`, `bridge`, `data`, `depin`, `developer tool`, `identity`, `node provider`, `raas`, `security`
- `onramp`: _One_ of `centralized exchange`, `fiat on-ramp`
- `wallet`: _One_ of `account abstraction`, `multisig`, `self-custody`

4. When adding and/or updating a logo, place a 192x192 pixel PNG file in the `web/apps/web/public/images/partners/`. The file should be named appropriately (e.g., your-project-name.png). The logo should be an App Store or Play Store iconographic version, not a full wordmark.

Expand Down
5 changes: 3 additions & 2 deletions apps/web/src/data/ecosystem.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[
{
"name": "MADNFT",
"tags": ["nft"],
"description": "MADNFT is a creator-first NFT platform empowering artists, collectors, and communities with tools to mint, list, and engage while earning XP points and rewards.",
"url": "https://madnft.io",
"imageUrl": "/images/partners/madnft.png"
"imageUrl": "/images/partners/madnft.png",
"category": "consumer",
"subcategory": "nft"
},
{
"name": "Coinbase",
Expand Down

0 comments on commit 300d4a4

Please sign in to comment.