1.2.0 ā€¢ Published 2 months ago

starknet-meta v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

starknet-meta

Starknet dApps metadata repository.

Goals

šŸ” API-first metadata repository: Prioritize seamless integration of Starknet dApp metadata, assets, and textual data for developers.

šŸŒŸ Reliable dApp assets and metadata resource: Provide a reliable source for both dApp textual metadata and common visual assets, catering to developers' needs.

šŸŒ‰ Contract addresses repository: Offer a dependable resource for dApp contract addresses across Starknet networks.

šŸ› ļø Use Cases

šŸ“ Contract address validation for protocols: Enable protocols to verify which contracts are associated with a dApp.

šŸŒŽ API-first dApp discovery: Enable dApp aggregators to efficiently find, list, and showcase new dApps in the Starknet ecosystem using an API-first approach.

How to submit a new project

To add a new dApp to starknet-meta, follow these steps:

  1. Fork the starknet-meta repository.
  2. Create a new folder under the /repository directory, using the desired id for the new project as the folder name.
  3. Add a metadata.json file to the new folder, following the JSON schema rules described below (you can easily validate your changes by executing validator.js).
  4. Add an icon image file to the new folder. The icon must be square and up to 1 MB in size. Supported formats are PNG, JPEG, SVG, and WebP.
  5. Add a cover image file to the new folder. The cover image must be up to 1500x500px in size and have a 0.33 aspect ratio. Supported formats are PNG, JPEG, SVG, and WebP.
  6. Create a pull request to the starknet-meta repository with your changes.

JSON schema rules

PropertyDescriptionExample
idA unique string identifier for the project"my_project"
displayNameA string containing the project's display name (up to 50 characters, ASCII only)."My Project"
descriptionA string containing the project's description (up to 300 characters, ASCII only)."This is a description of my project."
hostA string containing a valid URL host name (one URL for all supported networks),or an object with network-name keys and an optional others key to non-specified network support."example.com" // will be used by all networks- or -{"mainnet-alpha": "example.com", "goerli-alpha": "testnet.example.com"}- or - "others" covers for all non mainnet-alpha networks:{"others": "test.example.com", "mainnet-alpha": "app.example.com"}
contractsAn array of contract objects with tag, addresses, and optional implements properties. Please make sure to include all known addresses, including historical/deprecated ones, since protocols may require this information to verify historical interactions with old/deprecated contracts. To differentiate between current and historical addresses, you can either use different objects with distinct tags (e.g., "router_old", "router_current") or list them all under a single object (e.g., "router") within an array of addresses sorted from old to new. i.e.: [{ "tag": "router", "addresses": ["0x123..." (old), "0x456..." (deprecated), "0x789" (current)] }][{ "tag": "myswap_liquidity_tokens", "implements": ["erc20"], "addresses": { "mainnet-alpha": ["0x123..."] } }]
categoriesAn array of strings, each representing a category to which the project belongs. The categories should be the values from the enumeration defined in the JSON schema.["nft", "defi"]

Please ensure that your submission adheres to the schema rules and asset requirements. Use the validator.js script to validate your changes before submitting a PR.

Updating an existing project

To update an existing dApp project, follow the same steps as submitting a new dApp, but modify the existing project folder in the /repository directory:

  1. Fork the starknet-meta repository.
  2. Locate the project folder under the /repository directory, using the id of the project you want to update.
  3. Update the metadata.json file in the project folder if necessary, following the JSON schema rules described below (you can easily validate your changes by executing validator.js).
  4. Update the icon image file in the project folder if necessary. The icon must be square and up to 1 MB in size. Supported formats are PNG, JPEG, SVG, and WebP.
  5. Update the cover image file in the project folder if necessary. The cover image must be up to 1500x500px in size and have a 0.33 aspect ratio. Supported formats are PNG, JPEG, SVG, and WebP.
  6. Create a pull request to the starknet-meta repository with your changes.

Authors

License

MIT

1.2.0

2 months ago

1.1.0

5 months ago

1.0.2

6 months ago

1.0.1

11 months ago

1.0.0

11 months ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago