Skip to content

Latest commit

 

History

History
104 lines (67 loc) · 3.94 KB

README.md

File metadata and controls

104 lines (67 loc) · 3.94 KB

Awesome Slinks 🌟

Awesome

Welcome to the Awesome Slinks repository! This is a community-curated list of cool Slinks (Starknet Links) on Starknet.

What are Slinks?

Slinks are the Starknet version of Solana Blinks (Blockchain Links). The concept is simple: use a Starknet application directly from Twitter as an embed card in a tweet.

Under the hood, Slinks are just Twitter Cards.

Purpose of this Repository

This repository serves two main purposes:

  1. To showcase a collection of cool Slinks on Starknet
  2. To demonstrate how to easily implement a Slink for any Starknet Application

Security Disclaimer ⚠️

Important: Interacting with any web3 application carries inherent risks. The inclusion of an application in this list does not guarantee its security or imply that it is free from vulnerabilities. Always exercise caution, do your own research, and understand the risks before interacting with any decentralized application.

Awesome Slinks List

Here's a list of some cool Slinks on Starknet:

Contributing

We welcome contributions from the community! If you know of a cool Slink that's not on the list, feel free to submit a pull request.

How to Implement a Slink

Implement Twitter Card Metadata

Add the following meta tags to your main app's HTML <head>:

<meta name="twitter:card" content="player" />
<meta name="twitter:site" content="@YourTwitterHandle" />
<meta name="twitter:title" content="Your App Title" />
<meta name="twitter:description" content="Brief description of your app" />
<meta
  name="twitter:player"
  content="https://your-domain.com/twitter-card.html"
/>
<meta name="twitter:player:width" content="360" />
<meta name="twitter:player:height" content="560" />
<meta
  name="twitter:image"
  content="https://your-domain.com/preview-image.png"
/>

Additional Considerations

Implement Open Graph Meta Tags

To improve sharing across various social media platforms, add Open Graph meta tags to your HTML:

<meta property="og:url" content="YOUR_PAGE_URL" />
<meta property="og:title" content="Your Title Here" />
<meta property="og:description" content="Your description here" />
<meta property="og:image" content="URL_TO_YOUR_IMAGE" />

License

This project is licensed under the MIT License - see the LICENSE file for details.